summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem.moulin@chalmers.se>2010-09-23 00:48:02 +0200
committerGuilhem Moulin <guilhem.moulin@chalmers.se>2010-09-23 00:48:02 +0200
commit33541b6d8e5b4da255be740f1f40944e8dc07d52 (patch)
tree171b2b8b747f16511cd204a31255ebd53d6cc15c
parent4eab173014a1d0a6029e55acb7ad672ea201e622 (diff)
Splitted version, removing ssh & bullshits
TODO: can't seek input oO
-rwxr-xr-xpdftool.pl195
1 files changed, 133 insertions, 62 deletions
diff --git a/pdftool.pl b/pdftool.pl
index f10ecec..eb291a6 100755
--- a/pdftool.pl
+++ b/pdftool.pl
@@ -1,29 +1,22 @@
#! /usr/bin/perl
use Getopt::Long;
+use IPC::Open2;
use warnings;
use strict;
Getopt::Long::Configure ("bundling");
-my $remote = 'graal';
-
my $pdf2ps = 'pdftops';
my $pscrop = 'psnup2.pl -s1 -l1';
my $psresize = 'psresize';
my $psnup = 'psnup';
my $psbook = 'psbook';
my $ps2pdf = 'ps2pdf';
-my ($zip,$zcat) = ('bzip2','bzcat');
-my $pdfviewer = 'xpdf';
-open(PAPERSIZE, "/etc/papersize")
- or die "Can't open `/etc/papersize'";
-my $papersize = <PAPERSIZE>;
-chomp $papersize
- or die "Can't read `/etc/papersize/";
-close PAPERSIZE;
+my $tmpdir = '/tmp';
+my $papersize;
my $nup = 1;
my $margin = 1;
@@ -31,37 +24,58 @@ my $margin = 1;
my $crop;
my $book;
-GetOptions( "nup|n=i" => \$nup,
- "1" => sub { $nup = 1 },
- "2" => sub { $nup = 2 },
- "4" => sub { $nup = 4 },
- "8" => sub { $nup = 8 },
- "crop|c" => \$crop,
- "book|b" => \$book,
- "paper|p=s" => \$papersize,
- "margin|m=s" => \$margin );
+GetOptions( "nup|n=i" => \$nup,
+ "1" => sub { $nup = 1 },
+ "2" => sub { $nup = 2 },
+ "4" => sub { $nup = 4 },
+ "8" => sub { $nup = 8 },
+ "crop|c" => \$crop,
+ "book|b" => \$book,
+ "papersize|p=s" => \$papersize,
+ "margin|m=s" => \$margin );
die "I can handle only one file at the same time :P"
if $#ARGV > 0;
+die "How should I put a non-positive number of pages per sheet?"
+ if $nup <= 0;
-my $filename = $ARGV[0];
-$filename = "-" unless defined $filename;
-my $filename2 = $filename;
-$filename2 = "(stdin)" if $filename eq "-";
+unless (defined $papersize) {
+ $papersize = `paperconf` or die "Can't guess papersize";
+ chomp $papersize;
+}
for (my $n = $nup; $n > 1; $n /= 2) {
die "nup should be a power of two"
unless $n % 2 == 0;
}
-#Note: $margin is ignored if $crop is unset
-$margin = 0 unless defined $crop;
-$margin /= 2;
+my $filename = $ARGV[0];
+$filename = "-" unless defined $filename;
+my $filename2 = $filename;
+$filename2 = "(stdin)" if $filename eq "-";
-$remote = "localhost"
- if $remote eq `hostname` || $remote eq "127.0.0.1";
+my ($mresize, $mcrop, $mnup) = (0,0,0);
+
+if (defined $crop) {
+ $mresize = 0;
+ if (not defined $book && $nup > 1) {
+ $mcrop = $margin/2;
+ $mnup = $mcrop;
+ } else {
+ $mcrop = $margin;
+ $mnup = 0;
+ }
+} else {
+ if (not defined $book && $nup > 1) {
+ $mresize = $margin/2;
+ $mnup = $mresize;
+ } else {
+ $mresize = $margin;
+ $mnup = 0;
+ }
+}
@@ -70,60 +84,117 @@ open(FILE, $filename)
or die "Can't read `$filename'";
my $filetype;
-my $line = <FILE>;
-if (defined $line && $line =~ /%!PS.*/) {
+my $fstline = <FILE>;
+if (defined $fstline && $fstline =~ /%!PS.*/) {
$filetype = "PS";
-} elsif (defined $line && $line =~ /%PDF.*/) {
+} elsif (defined $fstline && $fstline =~ /%PDF.*/) {
$filetype = "PDF";
} else {
die "Can't recognize the type of `$filename2'";
}
-close(FILE);
-
-my $command = "";
-
-
-#TODO: better do forget stdin, I guess
-if ($filename eq "-" && $filetype eq "PDF") {
- $command.="cat - > /tmp/pouf.pdf";
- system $command;
+# auxiliary files, to remove
+my @auxfiles;
+
+# auxiliary file descriptors, to close
+my @auxfds;
+
+
+if ($filename eq "-") {
+ # Need to copy the whole input to an auxiliary file, since
+ # conversion from pdf to ps requires random access to the data
+
+ $filename = "$tmpdir/pdftool-stdin-" . int(rand 2**16) . lc ".$filetype";
+ open(AUXFD, '>', "$filename")
+ or die "Can't read write into `$filename'";
+ push @auxfiles, "$filename";
+
+ # cat > $filename
+ print AUXFD $fstline;
+ while (<FILE>) {
+ print AUXFD $_;
+ }
+ close(AUXFD);
}
+close(FILE);
+
+# Convert to ps, or read the input file
if ($filetype eq "PDF") {
- $command .= "$pdf2ps $filename - | ";
+ open(PSFILE, '|-', "$pdf2ps $filename -")
+ or die "Error with `$pdf2ps $filename -'";
} else {
- $command .= "cat $filename | ";
+ open(PSFILE, '<', "$filename")
+ or die "Can't open `$filename'";
}
+push @auxfds, fileno PSFILE;
-if ($remote eq "localhost") {
- $command .= "cat > /tmp/paf.ps; ";
-} else {
- $command .= "$zip | ssh $remote \"$zcat - > /tmp/paf.ps; ";
-}
+# Resize file to our papersize
+open2(*PSRESIZE, "<&PSFILE", "psresize -p$papersize")
+ or die "Error with `psresize -p$papersize'";
+#push @auxfds, fileno \*PSRESIZE;
-#$command .= "$psresize -p$papersize /tmp/paf.ps | ";
-# useless, since the argument of $pscrop has to be seekable
+open("<&PSRESIZE", "cat");
+exit 0;
-if (defined $crop) {
- $command .= "$pscrop -m$margin /tmp/paf.ps | ";
-} else {
- $command .= "cat /tmp/paf.ps | ";
-}
+# pscrop
+*PSCROP = *PSRESIZE;
-$command .= "$psnup -p$papersize -m${margin}cm -$nup | ";
+# psbook
+*PSBOOK = *PSCROP;
-$command .= "$psbook | " if defined $book;
+# psnup
+# TODO: sometimes unecessary
+open2(*PSNUP, "<&PSBOOK", "psnup -p$papersize -m$mnup -$nup")
+ or die "Error with `psnup -p$papersize -m$mnup -$nup'";
-$command .= "$ps2pdf -sPAPERSIZE=$papersize - - ";
+# TODO: not always stdout
+open2(">&STDOUT", "<&PSBOOK", "ps2pdf -sPAPERSIZE=$papersize - -")
+ or die "Error with `ps2pdf -sPAPERSIZE=$papersize - -'";
-$command .= "| $zip\" | $zcat " if ($remote ne "localhost");
-$command .= "> /tmp/pouf.pdf";
-print "$command", "\n";
-system $command;
-system ($pdfviewer, "/tmp/pouf.pdf");
+# close auxiliary filehandles
+map {close $_} @auxfds;
+
+# delete auxiliary files
+unlink @auxfiles;
+
+#TODO: better do forget stdin, I guess
+#if ($filename eq "-" && $filetype eq "PDF") {
+#}
+
+#if ($filetype eq "PDF") {
+# $command .= "$pdf2ps $filename - | ";
+#} else {
+# $command .= "cat $filename | ";
+#}
+#
+#
+##$command .= "$psresize -p$papersize /tmp/paf.ps | ";
+## useless, since the argument of $pscrop has to be seekable
+#
+#if (defined $crop) {
+# $command .= "$pscrop -m$margin /tmp/paf.ps | ";
+#} else {
+# $command .= "cat /tmp/paf.ps | ";
+#}
+#
+#$command .= "$psnup -p$papersize -m${margin}cm -$nup | ";
+#
+#$command .= "$psbook | " if defined $book;
+#
+#$command .= "$ps2pdf -sPAPERSIZE=$papersize - - ";
+#
+#
+#$command .= "> /tmp/pouf.pdf";
+#
+#print "$command", "\n";
+
+#system $command;
+
+
+#system ($pdfviewer, "/tmp/pouf.pdf");