summaryrefslogtreecommitdiff
path: root/scripts/context/perl/mptopdf.pl
blob: 767d2d260ae6887216ca595f4f7df83f99a6de94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q'
        if 0;

# MikTeX users can set environment variable TEXSYSTEM to "miktex".

#D \module
#D   [       file=mptopdf.pl,
#D        version=2000.05.29,
#D          title=converting MP to PDF,
#D       subtitle=\MPTOPDF,
#D         author=Hans Hagen,
#D           date=\currentdate,
#D            url=www.pragma-ade.nl,
#D      copyright={PRAGMA ADE / Hans Hagen \& Ton Otten}]
#C
#C This module is part of the \CONTEXT\ macro||package and is
#C therefore copyrighted by \PRAGMA. See licen-en.pdf for
#C details.

# use File::Copy ; # not in every perl

use Config ;
use Getopt::Long ;
use strict ;
use File::Basename ;

$Getopt::Long::passthrough = 1 ; # no error message
$Getopt::Long::autoabbrev  = 1 ; # partial switch accepted

my $Help = my $Latex = my $RawMP = my $MetaFun = 0 ;
my $PassOn = '' ;

&GetOptions
  ( "help"    => \$Help  ,
    "rawmp"   => \$RawMP,
    "metafun" => \$MetaFun,
    "passon"  => \$PassOn,
    "latex"   => \$Latex ) ;

my $program = "MPtoPDF 1.3" ;
my $pattern = "@ARGV" ; # was $ARGV[0]
my $done    = 0 ;
my $report  = '' ;
my $texlatexswitch = " --tex=latex --format=latex " ;
my $mplatexswitch = " --tex=latex " ;

my $dosish      = ($Config{'osname'} =~/^(ms)?dos|^os\/2|^mswin/i) ;
my $miktex      = ($ENV{"TEXSYSTEM"} =~ /miktex/io);
my $escapeshell = ( ($ENV{'SHELL'}) && ($ENV{'SHELL'} =~ m/sh/i ));

my @files ;
my $command = my $mpbin = ''  ;

sub CopyFile # agressive copy, works for open files like in gs
  { my ($From,$To) = @_ ;
    return unless open(INP,"<$From") ; binmode INP ;
    return unless open(OUT,">$To") ; binmode OUT ;
    while (<INP>) { print OUT $_ }
    close (INP) ;
    close (OUT) }

if (($pattern eq '')||($Help))
  { print "\n$program : provide MP output file (or pattern)\n" ;
    exit }
elsif ($pattern =~ /\.mp$/io)
  { shift @ARGV ; my $rest = join(" ", @ARGV) ;
    if (open(INP,$pattern))
      { while (<INP>)
          { if (/(documentstyle|documentclass|begin\{document\})/io)
              { $Latex = 1 ; last } }
        close (INP) }
    if ($RawMP)
      { if ($Latex)
          { $rest .= " $mplatexswitch" }
        if ($MetaFun) {
            $mpbin = 'mpost --progname=mpost --mem=metafun' ;
        } else {
            $mpbin = 'mpost --mem=mpost' ;
        }
    }
    else
      { if ($Latex)
          { $rest .= " $texlatexswitch" }
        $mpbin = 'texexec --mptex $PassOn' }
    my $error =  system ("$mpbin $rest $pattern") ;
    if ($error)
      { print "\n$program : error while processing mp file\n" ; exit }
    else
      { $pattern =~ s/\.mp$//io ;
        @files = glob "$pattern.*" } }
elsif (-e $pattern)
  { @files = ($pattern) }
elsif ($pattern =~ /.\../o)
  { @files = glob "$pattern" }
else
  { $pattern .= '.*' ;
    @files = glob "$pattern" }

foreach my $file (@files)
  { $_ = $file ;
    if (s/\.(\d+|mps)$// && -e $file)
      { if ($miktex)
           { $command = "pdfetex -undump=mptopdf" }
        else
           { $command = "pdfetex  -fmt=mptopdf -progname=context" }
        if ($dosish)
           { $command = "$command \\relax $file" }
        else
           { $command = "$command \\\\relax $file" }
        system($command) ;
        # rename ("$_.pdf", "$_-$1.pdf") ;
        # if (-e "$_.pdf") { CopyFile ("$_.pdf", "$_-$1.pdf") }
        my $pdfsrc = basename($_).".pdf";
        rename ($pdfsrc, "$_-$1.pdf") ;
        if (-e $pdfsrc) { CopyFile ($pdfsrc, "$_-$1.pdf") }
        # end of patch
        if ($done) { $report .= " +" }
        $report .= " $_-$1.pdf" ;
        ++$done } }

if ($report eq '')
  { $report = '*' }

if ($done)
  { print "\n$program : $pattern is converted to$report\n" }
else
  { print "\n$program : no filename matches $pattern\n" }