blob: 3b793d2fa8bae41a8aefb50d0fa35fb8fb9d206f [file] [log] [blame]
rsc61746422005-08-31 02:15:26 +00001#!/usr/local/plan9/bin/rc
2# Tries to determine what type of file you are printing and do the correct
3# thing with it.
4# It currently knows about images, troff intermediate, and ascii files.
5TMPFILE=/tmp/lp$pid
6fn sigexit { rm -f $TMPFILE; }
7if (! ~ $DEBUG '') flag x +
8if (~ $LPCLASS *nohead*) NOHEAD=1
9if (~ $LPCLASS *duplex*) DUPLEX=1
10cat >$TMPFILE
11FILETYPE=`{file $TMPFILE}
12switch ($FILETYPE(2)) {
13case troff;
14 switch ($LPCLASS) {
15 case *Latin1* *post* *opost*; switch ($FILETYPE(5)) {
16 # Latin1 is for compatibility with old research UNIX systems, doesn't work on Plan 9
17 case Latin1 post; tcs -s -f utf -t latin1 < $TMPFILE |$LPLIB/process/dpost
18
19 case UTF; $LPLIB/process/tr2post < $TMPFILE
20 }
21
22 case *; echo $FILETYPE(2) -T$FILETYPE(5) output is improper for $LPDEST >[1=2]
23 }
24case special;
25 switch ($FILETYPE(4)) {
26 case '#b'; switch ($LPCLASS) {
27 case *post*; $LPLIB/process/p9bitpost < $TMPFILE
28 }
29
30 case *; echo $FILETYPE file is improper for $LPDEST >[1=2]
31 }
32case Compressed plan old; # type is really 'Compressed image' or 'plan 9 image'
33 # or 'old plan 9 image'
34 switch ($LPCLASS) {
35 case *post*; $LPLIB/process/p9bitpost < $TMPFILE
36 }
37case jpeg;
38 switch ($LPCLASS) {
39 case *post*; $LPLIB/process/jpgpost < $TMPFILE
40 }
41
42case GIF;
43 switch ($LPCLASS) {
44 case *post*; $LPLIB/process/gifpost < $TMPFILE
45 }
46
47case ccitt-g31;
48 switch ($LPCLASS) {
49 case *post*; $LPLIB/process/g3post < $TMPFILE
50 }
51
52# bitmap for research UNIX compatibility, does not work on Plan 9.
53case bitmap;
54 switch ($LPCLASS) {
55 case *post*; $LPLIB/process/bpost < $TMPFILE
56 case *mhcc*; $LPLIB/process/bpost < $TMPFILE | $LPLIB/process/mhcc
57 case *; echo $FILETYPE(2) file is improper for $LPDEST >[1=2]
58 }
59case tex;
60 mv $TMPFILE $TMPFILE.dvi
61 TMPFILE=$TMPFILE.dvi
62 switch ($LPCLASS) {
63 case *post*; $LPLIB/process/dvipost $TMPFILE
64 case *; echo $FILETYPE(2) file is improper for $LPDEST >[1=2]
65 }
66case postscript;
67 switch ($LPCLASS) {
68 case *post*; $LPLIB/process/post < $TMPFILE
69 case *; echo $FILETYPE(2) file is improper for $LPDEST >[1=2]
70 }
71case HPJCL;
72 switch ($LPCLASS) {
73 case *HPJCL*; $LPLIB/process/noproc < $TMPFILE
74 case *; echo $FILETYPE(2) file is improper for $LPDEST >[1=2]
75 }
76case daisy;
77 switch ($LPDEST) {
78 case *; echo $FILETYPE(2) file is improper for $LPDEST >[1=2]
79 }
80case English short extended alef limbo [Aa]scii ASCII assembler c latin rc sh as mail email message/rfc822;
81 switch ($LPCLASS) {
82 case *post*; $LPLIB/process/ppost < $TMPFILE
83 case *canon*; $LPLIB/process/can $* < $TMPFILE
84 case *; echo Unrecognized class of line printer for $LPDEST >[1=2]
85 }
86
87case tiff;
88 switch ($LPCLASS) {
89 case *post*; $LPLIB/process/tiffpost $TMPFILE
90 case *; echo Unrecognized class of line printer for $LPDEST >[1=2]
91 }
92case PDF;
93 switch ($LPCLASS) {
94 case *post*; $LPLIB/process/pdfpost $TMPFILE
95 case *; echo Unrecognized class of line printer for $LPDEST >[1=2]
96 }
97case empty;
98 echo file is empty >[1=2]
99case cannot;
100 echo cannot open file >[1=2]
101case *;
102 echo $FILETYPE(2) file is improper for $LPDEST >[1=2]
103}
104wait
105rv=$status
106rm -f $TMPFILE
107#exit $status
108exit