]> git.ipfire.org Git - thirdparty/cups.git/blob - filter/pstops.c
Import CUPS 1.4svn r7023 into easysw/current.
[thirdparty/cups.git] / filter / pstops.c
1 /*
2 * "$Id: pstops.c 7006 2007-10-04 17:43:38Z mike $"
3 *
4 * PostScript filter for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 2007 by Apple Inc.
7 * Copyright 1993-2007 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 *
17 * Contents:
18 *
19 * main() - Main entry...
20 * add_page() - Add a page to the pages array...
21 * cancel_job() - Flag the job as canceled.
22 * check_range() - Check to see if the current page is selected for
23 * copy_bytes() - Copy bytes from the input file to stdout...
24 * copy_comments() - Copy all of the comments section...
25 * copy_dsc() - Copy a DSC-conforming document...
26 * copy_non_dsc() - Copy a document that does not conform to the DSC...
27 * copy_page() - Copy a page description...
28 * copy_prolog() - Copy the document prolog section...
29 * copy_setup() - Copy the document setup section...
30 * copy_trailer() - Copy the document trailer...
31 * do_prolog() - Send the necessary document prolog commands...
32 * do_setup() - Send the necessary document setup commands...
33 * doc_printf() - Send a formatted string to stdout and/or the temp
34 * file.
35 * doc_puts() - Send a nul-terminated string to stdout and/or the
36 * temp file.
37 * doc_write() - Send data to stdout and/or the temp file.
38 * end_nup() - End processing for N-up printing...
39 * include_feature() - Include a printer option/feature command.
40 * parse_text() - Parse a text value in a comment...
41 * set_pstops_options() - Set pstops options...
42 * skip_page() - Skip past a page that won't be printed...
43 * start_nup() - Start processing for N-up printing...
44 * write_labels() - Write the actual page labels.
45 */
46
47 /*
48 * Include necessary headers...
49 */
50
51 #include "common.h"
52 #include <limits.h>
53 #include <math.h>
54 #include <cups/file.h>
55 #include <cups/array.h>
56 #include <cups/i18n.h>
57 #include <signal.h>
58
59
60 /*
61 * Constants...
62 */
63
64 #define PSTOPS_BORDERNONE 0 /* No border or hairline border */
65 #define PSTOPS_BORDERTHICK 1 /* Think border */
66 #define PSTOPS_BORDERSINGLE 2 /* Single-line hairline border */
67 #define PSTOPS_BORDERSINGLE2 3 /* Single-line thick border */
68 #define PSTOPS_BORDERDOUBLE 4 /* Double-line hairline border */
69 #define PSTOPS_BORDERDOUBLE2 5 /* Double-line thick border */
70
71 #define PSTOPS_LAYOUT_LRBT 0 /* Left to right, bottom to top */
72 #define PSTOPS_LAYOUT_LRTB 1 /* Left to right, top to bottom */
73 #define PSTOPS_LAYOUT_RLBT 2 /* Right to left, bottom to top */
74 #define PSTOPS_LAYOUT_RLTB 3 /* Right to left, top to bottom */
75 #define PSTOPS_LAYOUT_BTLR 4 /* Bottom to top, left to right */
76 #define PSTOPS_LAYOUT_TBLR 5 /* Top to bottom, left to right */
77 #define PSTOPS_LAYOUT_BTRL 6 /* Bottom to top, right to left */
78 #define PSTOPS_LAYOUT_TBRL 7 /* Top to bottom, right to left */
79
80 #define PSTOPS_LAYOUT_NEGATEY 1 /* The bits for the layout */
81 #define PSTOPS_LAYOUT_NEGATEX 2 /* definitions above... */
82 #define PSTOPS_LAYOUT_VERTICAL 4
83
84
85 /*
86 * Types...
87 */
88
89 typedef struct /**** Page information ****/
90 {
91 char *label; /* Page label */
92 int bounding_box[4]; /* PageBoundingBox */
93 off_t offset; /* Offset to start of page */
94 ssize_t length; /* Number of bytes for page */
95 int num_options; /* Number of options for this page */
96 cups_option_t *options; /* Options for this page */
97 } pstops_page_t;
98
99 typedef struct /**** Document information ****/
100 {
101 int page; /* Current page */
102 int bounding_box[4]; /* BoundingBox from header */
103 int new_bounding_box[4]; /* New composite bounding box */
104 int num_options; /* Number of document-wide options */
105 cups_option_t *options; /* Document-wide options */
106 int normal_landscape, /* Normal rotation for landscape? */
107 saw_eof, /* Saw the %%EOF comment? */
108 slow_collate, /* Collate copies by hand? */
109 slow_duplex, /* Duplex pages slowly? */
110 slow_order, /* Reverse pages slowly? */
111 use_ESPshowpage; /* Use ESPshowpage? */
112 cups_array_t *pages; /* Pages in document */
113 cups_file_t *temp; /* Temporary file, if any */
114 char tempfile[1024]; /* Temporary filename */
115 int job_id; /* Job ID */
116 const char *user, /* User name */
117 *title; /* Job name */
118 int copies; /* Number of copies */
119 const char *ap_input_slot, /* AP_FIRSTPAGE_InputSlot value */
120 *ap_manual_feed; /* AP_FIRSTPAGE_ManualFeed value */
121 float brightness; /* brightness value */
122 int collate, /* Collate copies? */
123 emit_jcl, /* Emit JCL commands? */
124 fitplot; /* Fit pages to media */
125 float gamma; /* gamma value */
126 const char *input_slot, /* InputSlot value */
127 *manual_feed; /* ManualFeed value */
128 int mirror, /* doc->mirror/mirror pages */
129 number_up, /* Number of pages on each sheet */
130 number_up_layout, /* doc->number_up_layout of N-up pages */
131 output_order, /* Requested reverse output order? */
132 page_border; /* doc->page_border around pages */
133 const char *page_label, /* page-label option, if any */
134 *page_ranges, /* page-ranges option, if any */
135 *page_set; /* page-set option, if any */
136 } pstops_doc_t;
137
138
139 /*
140 * Convenience macros...
141 */
142
143 #define is_first_page(p) (doc->number_up == 1 || \
144 ((p) % doc->number_up) == 1)
145 #define is_last_page(p) (doc->number_up == 1 || \
146 ((p) % doc->number_up) == 0)
147 #define is_not_last_page(p) (doc->number_up > 1 && \
148 ((p) % doc->number_up) != 0)
149
150
151 /*
152 * Local globals...
153 */
154
155 static int JobCanceled = 0;/* Set to 1 on SIGTERM */
156
157
158 /*
159 * Local functions...
160 */
161
162 static pstops_page_t *add_page(pstops_doc_t *doc, const char *label);
163 static void cancel_job(int sig);
164 static int check_range(pstops_doc_t *doc, int page);
165 static void copy_bytes(cups_file_t *fp, off_t offset,
166 size_t length);
167 static size_t copy_comments(cups_file_t *fp, pstops_doc_t *doc,
168 ppd_file_t *ppd, char *line,
169 size_t linelen, size_t linesize);
170 static void copy_dsc(cups_file_t *fp, pstops_doc_t *doc,
171 ppd_file_t *ppd, char *line, size_t linelen,
172 size_t linesize);
173 static void copy_non_dsc(cups_file_t *fp, pstops_doc_t *doc,
174 ppd_file_t *ppd, char *line,
175 size_t linelen, size_t linesize);
176 static size_t copy_page(cups_file_t *fp, pstops_doc_t *doc,
177 ppd_file_t *ppd, int number, char *line,
178 size_t linelen, size_t linesize);
179 static size_t copy_prolog(cups_file_t *fp, pstops_doc_t *doc,
180 ppd_file_t *ppd, char *line,
181 size_t linelen, size_t linesize);
182 static size_t copy_setup(cups_file_t *fp, pstops_doc_t *doc,
183 ppd_file_t *ppd, char *line,
184 size_t linelen, size_t linesize);
185 static size_t copy_trailer(cups_file_t *fp, pstops_doc_t *doc,
186 ppd_file_t *ppd, int number, char *line,
187 size_t linelen, size_t linesize);
188 static void do_prolog(pstops_doc_t *doc, ppd_file_t *ppd);
189 static void do_setup(pstops_doc_t *doc, ppd_file_t *ppd);
190 static void doc_printf(pstops_doc_t *doc, const char *format, ...)
191 #ifdef __GNUC__
192 __attribute__ ((__format__ (__printf__, 2, 3)))
193 #endif /* __GNUC__ */
194 ;
195 static void doc_puts(pstops_doc_t *doc, const char *s);
196 static void doc_write(pstops_doc_t *doc, const char *s, size_t len);
197 static void end_nup(pstops_doc_t *doc, int number);
198 static int include_feature(ppd_file_t *ppd, const char *line,
199 int num_options,
200 cups_option_t **options);
201 static char *parse_text(const char *start, char **end, char *buffer,
202 size_t bufsize);
203 static void set_pstops_options(pstops_doc_t *doc, ppd_file_t *ppd,
204 char *argv[], int num_options,
205 cups_option_t *options);
206 static size_t skip_page(cups_file_t *fp, char *line, size_t linelen,
207 size_t linesize);
208 static void start_nup(pstops_doc_t *doc, int number,
209 int show_border, const int *bounding_box);
210 static void write_label_prolog(pstops_doc_t *doc, const char *label,
211 float bottom, float top,
212 float width);
213 static void write_labels(pstops_doc_t *doc, int orient);
214
215
216 /*
217 * 'main()' - Main entry...
218 */
219
220 int /* O - Exit status */
221 main(int argc, /* I - Number of command-line args */
222 char *argv[]) /* I - Command-line arguments */
223 {
224 pstops_doc_t doc; /* Document information */
225 cups_file_t *fp; /* Print file */
226 ppd_file_t *ppd; /* PPD file */
227 int num_options; /* Number of print options */
228 cups_option_t *options; /* Print options */
229 char line[8192]; /* Line buffer */
230 size_t len; /* Length of line buffer */
231 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
232 struct sigaction action; /* Actions for POSIX signals */
233 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
234
235
236 /*
237 * Make sure status messages are not buffered...
238 */
239
240 setbuf(stderr, NULL);
241
242 /*
243 * Check command-line...
244 */
245
246 if (argc < 6 || argc > 7)
247 {
248 fprintf(stderr, _("Usage: %s job-id user title copies options [file]\n"),
249 argv[0]);
250 return (1);
251 }
252
253 /*
254 * Register a signal handler to cleanly cancel a job.
255 */
256
257 #ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
258 sigset(SIGTERM, cancel_job);
259 #elif defined(HAVE_SIGACTION)
260 memset(&action, 0, sizeof(action));
261
262 sigemptyset(&action.sa_mask);
263 action.sa_handler = cancel_job;
264 sigaction(SIGTERM, &action, NULL);
265 #else
266 signal(SIGTERM, cancel_job);
267 #endif /* HAVE_SIGSET */
268
269 /*
270 * If we have 7 arguments, print the file named on the command-line.
271 * Otherwise, send stdin instead...
272 */
273
274 if (argc == 6)
275 fp = cupsFileStdin();
276 else
277 {
278 /*
279 * Try to open the print file...
280 */
281
282 if ((fp = cupsFileOpen(argv[6], "r")) == NULL)
283 {
284 fprintf(stderr, _("ERROR: Unable to open file \"%s\" - %s\n"),
285 argv[6], strerror(errno));
286 return (1);
287 }
288 }
289
290 /*
291 * Read the first line to see if we have DSC comments...
292 */
293
294 if ((len = cupsFileGetLine(fp, line, sizeof(line))) == 0)
295 {
296 fputs(_("ERROR: Empty print file!\n"), stderr);
297 return (1);
298 }
299
300 /*
301 * Process command-line options...
302 */
303
304 options = NULL;
305 num_options = cupsParseOptions(argv[5], 0, &options);
306 ppd = SetCommonOptions(num_options, options, 1);
307
308 set_pstops_options(&doc, ppd, argv, num_options, options);
309
310 /*
311 * Write any "exit server" options that have been selected...
312 */
313
314 ppdEmit(ppd, stdout, PPD_ORDER_EXIT);
315
316 /*
317 * Write any JCL commands that are needed to print PostScript code...
318 */
319
320 if (doc.emit_jcl)
321 ppdEmitJCL(ppd, stdout, doc.job_id, doc.user, doc.title);
322
323 /*
324 * Start with a DSC header...
325 */
326
327 puts("%!PS-Adobe-3.0");
328
329 /*
330 * Skip leading PJL in the document...
331 */
332
333 while (!strncmp(line, "\033%-12345X", 9) || !strncmp(line, "@PJL ", 5))
334 {
335 /*
336 * Yup, we have leading PJL fun, so skip it until we hit the line
337 * with "ENTER LANGUAGE"...
338 */
339
340 fputs("DEBUG: Skipping PJL header...\n", stderr);
341
342 while (strstr(line, "ENTER LANGUAGE") == NULL && strncmp(line, "%!", 2))
343 if ((len = cupsFileGetLine(fp, line, sizeof(line))) == 0)
344 break;
345
346 if (!strncmp(line, "%!", 2))
347 break;
348
349 if ((len = cupsFileGetLine(fp, line, sizeof(line))) == 0)
350 break;
351 }
352
353 /*
354 * Now see if the document conforms to the Adobe Document Structuring
355 * Conventions...
356 */
357
358 if (!strncmp(line, "%!PS-Adobe-", 11))
359 {
360 /*
361 * Yes, filter the document...
362 */
363
364 copy_dsc(fp, &doc, ppd, line, len, sizeof(line));
365 }
366 else
367 {
368 /*
369 * No, display an error message and treat the file as if it contains
370 * a single page...
371 */
372
373 copy_non_dsc(fp, &doc, ppd, line, len, sizeof(line));
374 }
375
376 /*
377 * Send %%EOF as needed...
378 */
379
380 if (!doc.saw_eof)
381 puts("%%EOF");
382
383 /*
384 * End the job with the appropriate JCL command or CTRL-D...
385 */
386
387 if (doc.emit_jcl)
388 {
389 if (ppd && ppd->jcl_end)
390 ppdEmitJCLEnd(ppd, stdout);
391 else
392 putchar(0x04);
393 }
394
395 /*
396 * Close files and remove the temporary file if needed...
397 */
398
399 if (doc.temp)
400 {
401 cupsFileClose(doc.temp);
402 unlink(doc.tempfile);
403 }
404
405 ppdClose(ppd);
406 cupsFreeOptions(num_options, options);
407
408 cupsFileClose(fp);
409
410 return (0);
411 }
412
413
414 /*
415 * 'add_page()' - Add a page to the pages array...
416 */
417
418 static pstops_page_t * /* O - New page info object */
419 add_page(pstops_doc_t *doc, /* I - Document information */
420 const char *label) /* I - Page label */
421 {
422 pstops_page_t *pageinfo; /* New page info object */
423
424
425 if (!doc->pages)
426 doc->pages = cupsArrayNew(NULL, NULL);
427
428 if (!doc->pages)
429 {
430 fprintf(stderr, _("EMERG: Unable to allocate memory for pages array: %s\n"),
431 strerror(errno));
432 exit(1);
433 }
434
435 if ((pageinfo = calloc(1, sizeof(pstops_page_t))) == NULL)
436 {
437 fprintf(stderr, _("EMERG: Unable to allocate memory for page info: %s\n"),
438 strerror(errno));
439 exit(1);
440 }
441
442 pageinfo->label = strdup(label);
443 pageinfo->offset = cupsFileTell(doc->temp);
444
445 cupsArrayAdd(doc->pages, pageinfo);
446
447 doc->page ++;
448
449 return (pageinfo);
450 }
451
452
453 /*
454 * 'cancel_job()' - Flag the job as canceled.
455 */
456
457 static void
458 cancel_job(int sig) /* I - Signal number (unused) */
459 {
460 (void)sig;
461
462 JobCanceled = 1;
463 }
464
465
466 /*
467 * 'check_range()' - Check to see if the current page is selected for
468 * printing.
469 */
470
471 static int /* O - 1 if selected, 0 otherwise */
472 check_range(pstops_doc_t *doc, /* I - Document information */
473 int page) /* I - Page number */
474 {
475 const char *range; /* Pointer into range string */
476 int lower, upper; /* Lower and upper page numbers */
477
478
479 if (doc->page_set)
480 {
481 /*
482 * See if we only print even or odd pages...
483 */
484
485 if (!strcasecmp(doc->page_set, "even") && (page & 1))
486 return (0);
487
488 if (!strcasecmp(doc->page_set, "odd") && !(page & 1))
489 return (0);
490 }
491
492 if (!doc->page_ranges)
493 return (1); /* No range, print all pages... */
494
495 for (range = doc->page_ranges; *range != '\0';)
496 {
497 if (*range == '-')
498 {
499 lower = 1;
500 range ++;
501 upper = strtol(range, (char **)&range, 10);
502 }
503 else
504 {
505 lower = strtol(range, (char **)&range, 10);
506
507 if (*range == '-')
508 {
509 range ++;
510 if (!isdigit(*range & 255))
511 upper = 65535;
512 else
513 upper = strtol(range, (char **)&range, 10);
514 }
515 else
516 upper = lower;
517 }
518
519 if (page >= lower && page <= upper)
520 return (1);
521
522 if (*range == ',')
523 range ++;
524 else
525 break;
526 }
527
528 return (0);
529 }
530
531
532 /*
533 * 'copy_bytes()' - Copy bytes from the input file to stdout...
534 */
535
536 static void
537 copy_bytes(cups_file_t *fp, /* I - File to read from */
538 off_t offset, /* I - Offset to page data */
539 size_t length) /* I - Length of page data */
540 {
541 char buffer[8192]; /* Data buffer */
542 ssize_t nbytes; /* Number of bytes read */
543 size_t nleft; /* Number of bytes left/remaining */
544
545
546 nleft = length;
547
548 if (cupsFileSeek(fp, offset) < 0)
549 {
550 fprintf(stderr,
551 #ifdef HAVE_LONG_LONG
552 _("ERROR: Unable to seek to offset %lld in file - %s\n"),
553 #else
554 _("ERROR: Unable to seek to offset %ld in file - %s\n"),
555 #endif /* HAVE_LONG_LONG */
556 CUPS_LLCAST offset, strerror(errno));
557 return;
558 }
559
560 while (nleft > 0 || length == 0)
561 {
562 if (nleft > sizeof(buffer) || length == 0)
563 nbytes = sizeof(buffer);
564 else
565 nbytes = nleft;
566
567 if ((nbytes = cupsFileRead(fp, buffer, nbytes)) < 1)
568 return;
569
570 nleft -= nbytes;
571
572 fwrite(buffer, 1, nbytes, stdout);
573 }
574 }
575
576
577 /*
578 * 'copy_comments()' - Copy all of the comments section...
579 *
580 * This function expects "line" to be filled with a comment line.
581 * On return, "line" will contain the next line in the file, if any.
582 */
583
584 static size_t /* O - Length of next line */
585 copy_comments(cups_file_t *fp, /* I - File to read from */
586 pstops_doc_t *doc, /* I - Document info */
587 ppd_file_t *ppd, /* I - PPD file */
588 char *line, /* I - Line buffer */
589 size_t linelen, /* I - Length of initial line */
590 size_t linesize) /* I - Size of line buffer */
591 {
592 int saw_bounding_box, /* Saw %%BoundingBox: comment? */
593 saw_for, /* Saw %%For: comment? */
594 saw_pages, /* Saw %%Pages: comment? */
595 saw_title; /* Saw %%Title: comment? */
596
597
598 /*
599 * Loop until we see %%EndComments or a non-comment line...
600 */
601
602 saw_bounding_box = 0;
603 saw_for = 0;
604 saw_pages = 0;
605 saw_title = 0;
606
607 while (line[0] == '%')
608 {
609 /*
610 * Strip trailing whitespace...
611 */
612
613 while (linelen > 0)
614 {
615 linelen --;
616
617 if (!isspace(line[linelen] & 255))
618 break;
619 else
620 line[linelen] = '\0';
621 }
622
623 /*
624 * Log the header...
625 */
626
627 fprintf(stderr, "DEBUG: %s\n", line);
628
629 /*
630 * Pull the headers out...
631 */
632
633 if (!strncmp(line, "%%Pages:", 8))
634 {
635 int pages; /* Number of pages */
636
637
638 if (saw_pages)
639 fputs(_("ERROR: Duplicate %%Pages: comment seen!\n"), stderr);
640
641 saw_pages = 1;
642
643 if (Duplex && (pages = atoi(line + 8)) > 0 && pages <= doc->number_up)
644 {
645 /*
646 * Since we will only be printing on a single page, disable duplexing.
647 */
648
649 Duplex = 0;
650 doc->slow_duplex = 0;
651
652 if (cupsGetOption("sides", doc->num_options, doc->options))
653 doc->num_options = cupsAddOption("sides", "one-sided",
654 doc->num_options, &(doc->options));
655
656 if (cupsGetOption("Duplex", doc->num_options, doc->options))
657 doc->num_options = cupsAddOption("Duplex", "None",
658 doc->num_options, &(doc->options));
659
660 if (cupsGetOption("EFDuplex", doc->num_options, doc->options))
661 doc->num_options = cupsAddOption("EFDuplex", "None",
662 doc->num_options, &(doc->options));
663
664 if (cupsGetOption("EFDuplexing", doc->num_options, doc->options))
665 doc->num_options = cupsAddOption("EFDuplexing", "False",
666 doc->num_options, &(doc->options));
667
668 if (cupsGetOption("KD03Duplex", doc->num_options, doc->options))
669 doc->num_options = cupsAddOption("KD03Duplex", "None",
670 doc->num_options, &(doc->options));
671
672 if (cupsGetOption("JCLDuplex", doc->num_options, doc->options))
673 doc->num_options = cupsAddOption("JCLDuplex", "None",
674 doc->num_options, &(doc->options));
675
676 ppdMarkOption(ppd, "Duplex", "None");
677 ppdMarkOption(ppd, "EFDuplex", "None");
678 ppdMarkOption(ppd, "EFDuplexing", "False");
679 ppdMarkOption(ppd, "KD03Duplex", "None");
680 ppdMarkOption(ppd, "JCLDuplex", "None");
681 }
682 }
683 else if (!strncmp(line, "%%BoundingBox:", 14))
684 {
685 if (saw_bounding_box)
686 fputs(_("ERROR: Duplicate %%BoundingBox: comment seen!\n"), stderr);
687 else if (strstr(line + 14, "(atend)"))
688 {
689 /*
690 * Do nothing for now but use the default imageable area...
691 */
692 }
693 else if (sscanf(line + 14, "%d%d%d%d", doc->bounding_box + 0,
694 doc->bounding_box + 1, doc->bounding_box + 2,
695 doc->bounding_box + 3) != 4)
696 {
697 fputs(_("ERROR: Bad %%BoundingBox: comment seen!\n"), stderr);
698
699 doc->bounding_box[0] = (int)PageLeft;
700 doc->bounding_box[1] = (int)PageBottom;
701 doc->bounding_box[2] = (int)PageRight;
702 doc->bounding_box[3] = (int)PageTop;
703 }
704
705 saw_bounding_box = 1;
706 }
707 else if (!strncmp(line, "%%For:", 6))
708 {
709 saw_for = 1;
710 doc_printf(doc, "%s\n", line);
711 }
712 else if (!strncmp(line, "%%Title:", 8))
713 {
714 saw_title = 1;
715 doc_printf(doc, "%s\n", line);
716 }
717 else if (!strncmp(line, "%cupsRotation:", 14))
718 {
719 /*
720 * Reset orientation of document?
721 */
722
723 int orient = (atoi(line + 14) / 90) & 3;
724
725 if (orient != Orientation)
726 {
727 /*
728 * Yes, update things so that the pages come out right...
729 */
730
731 Orientation = (4 - Orientation + orient) & 3;
732 UpdatePageVars();
733 Orientation = orient;
734 }
735 }
736 else if (!strcmp(line, "%%EndComments"))
737 {
738 linelen = cupsFileGetLine(fp, line, linesize);
739 break;
740 }
741 else if (strncmp(line, "%!", 2) && strncmp(line, "%cups", 5))
742 doc_printf(doc, "%s\n", line);
743
744 if ((linelen = cupsFileGetLine(fp, line, linesize)) == 0)
745 break;
746 }
747
748 if (!saw_bounding_box)
749 fputs(_("ERROR: No %%BoundingBox: comment in header!\n"), stderr);
750
751 if (!saw_pages)
752 fputs(_("ERROR: No %%Pages: comment in header!\n"), stderr);
753
754 if (!saw_for)
755 WriteTextComment("For", doc->user);
756
757 if (!saw_title)
758 WriteTextComment("Title", doc->title);
759
760 if (doc->copies != 1 && (!doc->collate || !doc->slow_collate))
761 {
762 /*
763 * Tell the document processor the copy and duplex options
764 * that are required...
765 */
766
767 doc_printf(doc, "%%%%Requirements: numcopies(%d)%s%s\n", doc->copies,
768 doc->collate ? " collate" : "",
769 Duplex ? " duplex" : "");
770
771 /*
772 * Apple uses RBI comments for various non-PPD options...
773 */
774
775 doc_printf(doc, "%%RBINumCopies: %d\n", doc->copies);
776 }
777 else
778 {
779 /*
780 * Tell the document processor the duplex option that is required...
781 */
782
783 if (Duplex)
784 doc_puts(doc, "%%Requirements: duplex\n");
785
786 /*
787 * Apple uses RBI comments for various non-PPD options...
788 */
789
790 doc_puts(doc, "%RBINumCopies: 1\n");
791 }
792
793 doc_puts(doc, "%%Pages: (atend)\n");
794 doc_puts(doc, "%%BoundingBox: (atend)\n");
795 doc_puts(doc, "%%EndComments\n");
796
797 return (linelen);
798 }
799
800
801 /*
802 * 'copy_dsc()' - Copy a DSC-conforming document...
803 *
804 * This function expects "line" to be filled with the %!PS-Adobe comment line.
805 */
806
807 static void
808 copy_dsc(cups_file_t *fp, /* I - File to read from */
809 pstops_doc_t *doc, /* I - Document info */
810 ppd_file_t *ppd, /* I - PPD file */
811 char *line, /* I - Line buffer */
812 size_t linelen, /* I - Length of initial line */
813 size_t linesize) /* I - Size of line buffer */
814 {
815 int number; /* Page number */
816 pstops_page_t *pageinfo; /* Page information */
817
818
819 /*
820 * Make sure we use ESPshowpage for EPS files...
821 */
822
823 if (strstr(line, "EPSF"))
824 {
825 doc->use_ESPshowpage = 1;
826 doc->number_up = 1;
827 }
828
829 /*
830 * Start sending the document with any commands needed...
831 */
832
833 fprintf(stderr, "DEBUG: Before copy_comments - %s", line);
834 linelen = copy_comments(fp, doc, ppd, line, linelen, linesize);
835
836 /*
837 * Now find the prolog section, if any...
838 */
839
840 fprintf(stderr, "DEBUG: Before copy_prolog - %s", line);
841 linelen = copy_prolog(fp, doc, ppd, line, linelen, linesize);
842
843 /*
844 * Then the document setup section...
845 */
846
847 fprintf(stderr, "DEBUG: Before copy_setup - %s", line);
848 linelen = copy_setup(fp, doc, ppd, line, linelen, linesize);
849
850 /*
851 * Copy until we see %%Page:...
852 */
853
854 while (strncmp(line, "%%Page:", 7) && strncmp(line, "%%Trailer", 9))
855 {
856 doc_write(doc, line, linelen);
857
858 if ((linelen = cupsFileGetLine(fp, line, linesize)) == 0)
859 break;
860 }
861
862 /*
863 * Then process pages until we have no more...
864 */
865
866 number = 0;
867
868 fprintf(stderr, "DEBUG: Before page loop - %s", line);
869 while (!strncmp(line, "%%Page:", 7))
870 {
871 if (JobCanceled)
872 break;
873
874 number ++;
875
876 if (check_range(doc, (number - 1) / doc->number_up + 1))
877 {
878 fprintf(stderr, "DEBUG: Copying page %d...\n", number);
879 linelen = copy_page(fp, doc, ppd, number, line, linelen, linesize);
880 }
881 else
882 {
883 fprintf(stderr, "DEBUG: Skipping page %d...\n", number);
884 linelen = skip_page(fp, line, linelen, linesize);
885 }
886 }
887
888 /*
889 * Finish up the last page(s)...
890 */
891
892 if (number && is_not_last_page(number) && cupsArrayLast(doc->pages))
893 {
894 pageinfo = (pstops_page_t *)cupsArrayLast(doc->pages);
895
896 start_nup(doc, doc->number_up, 0, doc->bounding_box);
897 doc_puts(doc, "showpage\n");
898 end_nup(doc, doc->number_up);
899
900 pageinfo->length = cupsFileTell(doc->temp) - pageinfo->offset;
901 }
902
903 if (doc->slow_duplex && (doc->page & 1))
904 {
905 /*
906 * Make sure we have an even number of pages...
907 */
908
909 pageinfo = add_page(doc, "(filler)");
910
911 if (!doc->slow_order)
912 {
913 if (!ppd || !ppd->num_filters)
914 fprintf(stderr, "PAGE: %d %d\n", doc->page,
915 doc->slow_collate ? 1 : doc->copies);
916
917 printf("%%%%Page: (filler) %d\n", doc->page);
918 }
919
920 start_nup(doc, doc->number_up, 0, doc->bounding_box);
921 doc_puts(doc, "showpage\n");
922 end_nup(doc, doc->number_up);
923
924 pageinfo->length = cupsFileTell(doc->temp) - pageinfo->offset;
925 }
926
927 /*
928 * Make additional copies as necessary...
929 */
930
931 number = doc->slow_order ? 0 : doc->page;
932
933 if (doc->temp && !JobCanceled)
934 {
935 int copy; /* Current copy */
936
937
938 /*
939 * Reopen the temporary file for reading...
940 */
941
942 cupsFileClose(doc->temp);
943
944 doc->temp = cupsFileOpen(doc->tempfile, "r");
945
946 /*
947 * Make the copies...
948 */
949
950 if (doc->slow_collate)
951 copy = !doc->slow_order;
952 else
953 copy = doc->copies - 1;
954
955 for (; copy < doc->copies; copy ++)
956 {
957 if (JobCanceled)
958 break;
959
960 /*
961 * Send end-of-job stuff followed by any start-of-job stuff required
962 * for the JCL options...
963 */
964
965 if (number && doc->emit_jcl && ppd && ppd->jcl_end)
966 {
967 /*
968 * Send the trailer...
969 */
970
971 puts("%%Trailer");
972 printf("%%%%Pages: %d\n", cupsArrayCount(doc->pages));
973 if (doc->number_up > 1 || doc->fitplot)
974 printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n",
975 PageLeft, PageBottom, PageRight, PageTop);
976 else
977 printf("%%%%BoundingBox: %d %d %d %d\n",
978 doc->new_bounding_box[0], doc->new_bounding_box[1],
979 doc->new_bounding_box[2], doc->new_bounding_box[3]);
980 puts("%%EOF");
981
982 /*
983 * Start a new document...
984 */
985
986 ppdEmitJCLEnd(ppd, stdout);
987 ppdEmitJCL(ppd, stdout, doc->job_id, doc->user, doc->title);
988
989 puts("%!PS-Adobe-3.0");
990
991 number = 0;
992 }
993
994 /*
995 * Copy the prolog as needed...
996 */
997
998 if (!number)
999 {
1000 pageinfo = (pstops_page_t *)cupsArrayFirst(doc->pages);
1001 copy_bytes(doc->temp, 0, pageinfo->offset);
1002 }
1003
1004 /*
1005 * Then copy all of the pages...
1006 */
1007
1008 pageinfo = doc->slow_order ? (pstops_page_t *)cupsArrayLast(doc->pages) :
1009 (pstops_page_t *)cupsArrayFirst(doc->pages);
1010
1011 while (pageinfo)
1012 {
1013 if (JobCanceled)
1014 break;
1015
1016 number ++;
1017
1018 if (!ppd || !ppd->num_filters)
1019 fprintf(stderr, "PAGE: %d %d\n", number,
1020 doc->slow_collate ? 1 : doc->copies);
1021
1022 if (doc->number_up > 1)
1023 {
1024 printf("%%%%Page: (%d) %d\n", number, number);
1025 printf("%%%%PageBoundingBox: %.0f %.0f %.0f %.0f\n",
1026 PageLeft, PageBottom, PageRight, PageTop);
1027 }
1028 else
1029 {
1030 printf("%%%%Page: %s %d\n", pageinfo->label, number);
1031 printf("%%%%PageBoundingBox: %d %d %d %d\n",
1032 pageinfo->bounding_box[0], pageinfo->bounding_box[1],
1033 pageinfo->bounding_box[2], pageinfo->bounding_box[3]);
1034 }
1035
1036 copy_bytes(doc->temp, pageinfo->offset, pageinfo->length);
1037
1038 pageinfo = doc->slow_order ? (pstops_page_t *)cupsArrayPrev(doc->pages) :
1039 (pstops_page_t *)cupsArrayNext(doc->pages);
1040 }
1041 }
1042 }
1043
1044 /*
1045 * Restore the old showpage operator as needed...
1046 */
1047
1048 if (doc->use_ESPshowpage)
1049 puts("userdict/showpage/ESPshowpage load put\n");
1050
1051 /*
1052 * Write/copy the trailer...
1053 */
1054
1055 if (!JobCanceled)
1056 linelen = copy_trailer(fp, doc, ppd, number, line, linelen, linesize);
1057 }
1058
1059
1060 /*
1061 * 'copy_non_dsc()' - Copy a document that does not conform to the DSC...
1062 *
1063 * This function expects "line" to be filled with the %! comment line.
1064 */
1065
1066 static void
1067 copy_non_dsc(cups_file_t *fp, /* I - File to read from */
1068 pstops_doc_t *doc, /* I - Document info */
1069 ppd_file_t *ppd, /* I - PPD file */
1070 char *line, /* I - Line buffer */
1071 size_t linelen, /* I - Length of initial line */
1072 size_t linesize) /* I - Size of line buffer */
1073 {
1074 int copy; /* Current copy */
1075 char buffer[8192]; /* Copy buffer */
1076 int bytes; /* Number of bytes copied */
1077
1078
1079 /*
1080 * First let the user know that they are attempting to print a file
1081 * that may not print correctly...
1082 */
1083
1084 fputs(_("WARNING: This document does not conform to the Adobe Document "
1085 "Structuring Conventions and may not print correctly!\n"), stderr);
1086
1087 /*
1088 * Then write a standard DSC comment section...
1089 */
1090
1091 printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n", PageLeft, PageBottom,
1092 PageRight, PageTop);
1093
1094 if (doc->slow_collate && doc->copies > 1)
1095 printf("%%%%Pages: %d\n", doc->copies);
1096 else
1097 puts("%%Pages: 1");
1098
1099 WriteTextComment("For", doc->user);
1100 WriteTextComment("Title", doc->title);
1101
1102 if (doc->copies != 1 && (!doc->collate || !doc->slow_collate))
1103 {
1104 /*
1105 * Tell the document processor the copy and duplex options
1106 * that are required...
1107 */
1108
1109 printf("%%%%Requirements: numcopies(%d)%s%s\n", doc->copies,
1110 doc->collate ? " collate" : "",
1111 Duplex ? " duplex" : "");
1112
1113 /*
1114 * Apple uses RBI comments for various non-PPD options...
1115 */
1116
1117 printf("%%RBINumCopies: %d\n", doc->copies);
1118 }
1119 else
1120 {
1121 /*
1122 * Tell the document processor the duplex option that is required...
1123 */
1124
1125 if (Duplex)
1126 puts("%%Requirements: duplex");
1127
1128 /*
1129 * Apple uses RBI comments for various non-PPD options...
1130 */
1131
1132 puts("%RBINumCopies: 1");
1133 }
1134
1135 puts("%%EndComments");
1136
1137 /*
1138 * Then the prolog...
1139 */
1140
1141 puts("%%BeginProlog");
1142
1143 do_prolog(doc, ppd);
1144
1145 puts("%%EndProlog");
1146
1147 /*
1148 * Then the setup section...
1149 */
1150
1151 puts("%%BeginSetup");
1152
1153 do_setup(doc, ppd);
1154
1155 puts("%%EndSetup");
1156
1157 /*
1158 * Finally, embed a copy of the file inside a %%Page...
1159 */
1160
1161 if (!ppd || !ppd->num_filters)
1162 fprintf(stderr, "PAGE: 1 %d\n", doc->temp ? 1 : doc->copies);
1163
1164 puts("%%Page: 1 1");
1165 puts("%%BeginPageSetup");
1166 ppdEmit(ppd, stdout, PPD_ORDER_PAGE);
1167 puts("%%EndPageSetup");
1168 puts("%%BeginDocument: nondsc");
1169
1170 fwrite(line, linelen, 1, stdout);
1171
1172 if (doc->temp)
1173 cupsFileWrite(doc->temp, line, linelen);
1174
1175 while ((bytes = cupsFileRead(fp, buffer, sizeof(buffer))) > 0)
1176 {
1177 fwrite(buffer, 1, bytes, stdout);
1178
1179 if (doc->temp)
1180 cupsFileWrite(doc->temp, buffer, bytes);
1181 }
1182
1183 puts("%%EndDocument");
1184
1185 if (doc->use_ESPshowpage)
1186 {
1187 WriteLabels(Orientation);
1188 puts("ESPshowpage");
1189 }
1190
1191 if (doc->temp && !JobCanceled)
1192 {
1193 /*
1194 * Reopen the temporary file for reading...
1195 */
1196
1197 cupsFileClose(doc->temp);
1198
1199 doc->temp = cupsFileOpen(doc->tempfile, "r");
1200
1201 /*
1202 * Make the additional copies as needed...
1203 */
1204
1205 for (copy = 1; copy < doc->copies; copy ++)
1206 {
1207 if (JobCanceled)
1208 break;
1209
1210 if (!ppd || !ppd->num_filters)
1211 fputs("PAGE: 1 1\n", stderr);
1212
1213 printf("%%%%Page: %d %d\n", copy + 1, copy + 1);
1214 puts("%%BeginPageSetup");
1215 ppdEmit(ppd, stdout, PPD_ORDER_PAGE);
1216 puts("%%EndPageSetup");
1217 puts("%%BeginDocument: nondsc");
1218
1219 copy_bytes(doc->temp, 0, 0);
1220
1221 puts("%%EndDocument");
1222
1223 if (doc->use_ESPshowpage)
1224 {
1225 WriteLabels(Orientation);
1226 puts("ESPshowpage");
1227 }
1228 }
1229 }
1230
1231 /*
1232 * Restore the old showpage operator as needed...
1233 */
1234
1235 if (doc->use_ESPshowpage)
1236 puts("userdict/showpage/ESPshowpage load put\n");
1237 }
1238
1239
1240 /*
1241 * 'copy_page()' - Copy a page description...
1242 *
1243 * This function expects "line" to be filled with a %%Page comment line.
1244 * On return, "line" will contain the next line in the file, if any.
1245 */
1246
1247 static size_t /* O - Length of next line */
1248 copy_page(cups_file_t *fp, /* I - File to read from */
1249 pstops_doc_t *doc, /* I - Document info */
1250 ppd_file_t *ppd, /* I - PPD file */
1251 int number, /* I - Current page number */
1252 char *line, /* I - Line buffer */
1253 size_t linelen, /* I - Length of initial line */
1254 size_t linesize) /* I - Size of line buffer */
1255 {
1256 char label[256], /* Page label string */
1257 *ptr; /* Pointer into line */
1258 int level; /* Embedded document level */
1259 pstops_page_t *pageinfo; /* Page information */
1260 int first_page; /* First page on N-up output? */
1261 int bounding_box[4]; /* PageBoundingBox */
1262
1263
1264 /*
1265 * Get the page label for this page...
1266 */
1267
1268 first_page = is_first_page(number);
1269
1270 if (!parse_text(line + 7, &ptr, label, sizeof(label)))
1271 {
1272 fputs(_("ERROR: Bad %%Page: comment in file!\n"), stderr);
1273 label[0] = '\0';
1274 number = doc->page;
1275 }
1276 else if (strtol(ptr, &ptr, 10) == LONG_MAX || !isspace(*ptr & 255))
1277 {
1278 fputs(_("ERROR: Bad %%Page: comment in file!\n"), stderr);
1279 number = doc->page;
1280 }
1281
1282 /*
1283 * Create or update the current output page...
1284 */
1285
1286 if (first_page)
1287 pageinfo = add_page(doc, label);
1288 else
1289 pageinfo = (pstops_page_t *)cupsArrayLast(doc->pages);
1290
1291 /*
1292 * Handle first page override...
1293 */
1294
1295 if (doc->ap_input_slot || doc->ap_manual_feed)
1296 {
1297 if (doc->page == 1)
1298 {
1299 /*
1300 * First page/sheet gets AP_FIRSTPAGE_* options...
1301 */
1302
1303 pageinfo->num_options = cupsAddOption("InputSlot", doc->ap_input_slot,
1304 pageinfo->num_options,
1305 &(pageinfo->options));
1306 pageinfo->num_options = cupsAddOption("ManualFeed",
1307 doc->ap_input_slot ? "False" :
1308 doc->ap_manual_feed,
1309 pageinfo->num_options,
1310 &(pageinfo->options));
1311 }
1312 else if (doc->page == (Duplex + 2))
1313 {
1314 /*
1315 * Second page/sheet gets default options...
1316 */
1317
1318 pageinfo->num_options = cupsAddOption("InputSlot", doc->input_slot,
1319 pageinfo->num_options,
1320 &(pageinfo->options));
1321 pageinfo->num_options = cupsAddOption("ManualFeed",
1322 doc->input_slot ? "False" :
1323 doc->manual_feed,
1324 pageinfo->num_options,
1325 &(pageinfo->options));
1326 }
1327 }
1328
1329 /*
1330 * Scan comments until we see something other than %%Page*: or
1331 * %%Include*...
1332 */
1333
1334 memcpy(bounding_box, doc->bounding_box, sizeof(bounding_box));
1335
1336 while ((linelen = cupsFileGetLine(fp, line, linesize)) > 0)
1337 {
1338 if (!strncmp(line, "%%PageBoundingBox:", 18))
1339 {
1340 /*
1341 * %%PageBoundingBox: llx lly urx ury
1342 */
1343
1344 if (sscanf(line + 18, "%d%d%d%d", bounding_box + 0,
1345 bounding_box + 1, bounding_box + 2,
1346 bounding_box + 3) != 4)
1347 {
1348 fputs(_("ERROR: Bad %%PageBoundingBox: comment in file!\n"), stderr);
1349 memcpy(bounding_box, doc->bounding_box,
1350 sizeof(bounding_box));
1351 }
1352 else if (doc->number_up == 1 && !doc->fitplot && Orientation)
1353 {
1354 int temp_bbox[4]; /* Temporary bounding box */
1355
1356
1357 memcpy(temp_bbox, bounding_box, sizeof(temp_bbox));
1358
1359 fprintf(stderr, "DEBUG: Orientation = %d\n", Orientation);
1360 fprintf(stderr, "DEBUG: original bounding_box = [ %d %d %d %d ]\n",
1361 bounding_box[0], bounding_box[1],
1362 bounding_box[2], bounding_box[3]);
1363 fprintf(stderr, "DEBUG: PageWidth = %.1f, PageLength = %.1f\n",
1364 PageWidth, PageLength);
1365
1366 switch (Orientation)
1367 {
1368 case 1 : /* Landscape */
1369 bounding_box[0] = PageLength - temp_bbox[3];
1370 bounding_box[1] = temp_bbox[0];
1371 bounding_box[2] = PageLength - temp_bbox[1];
1372 bounding_box[3] = temp_bbox[2];
1373 break;
1374
1375 case 2 : /* Reverse Portrait */
1376 bounding_box[0] = PageWidth - temp_bbox[2];
1377 bounding_box[1] = PageLength - temp_bbox[3];
1378 bounding_box[2] = PageWidth - temp_bbox[0];
1379 bounding_box[3] = PageLength - temp_bbox[1];
1380 break;
1381
1382 case 3 : /* Reverse Landscape */
1383 bounding_box[0] = temp_bbox[1];
1384 bounding_box[1] = PageWidth - temp_bbox[2];
1385 bounding_box[2] = temp_bbox[3];
1386 bounding_box[3] = PageWidth - temp_bbox[0];
1387 break;
1388 }
1389
1390 fprintf(stderr, "DEBUG: updated bounding_box = [ %d %d %d %d ]\n",
1391 bounding_box[0], bounding_box[1],
1392 bounding_box[2], bounding_box[3]);
1393 }
1394 }
1395 #if 0
1396 else if (!strncmp(line, "%%PageCustomColors:", 19) ||
1397 !strncmp(line, "%%PageMedia:", 12) ||
1398 !strncmp(line, "%%PageOrientation:", 18) ||
1399 !strncmp(line, "%%PageProcessColors:", 20) ||
1400 !strncmp(line, "%%PageRequirements:", 18) ||
1401 !strncmp(line, "%%PageResources:", 16))
1402 {
1403 /*
1404 * Copy literal...
1405 */
1406 }
1407 #endif /* 0 */
1408 else if (!strncmp(line, "%%PageCustomColors:", 19))
1409 {
1410 /*
1411 * %%PageCustomColors: ...
1412 */
1413 }
1414 else if (!strncmp(line, "%%PageMedia:", 12))
1415 {
1416 /*
1417 * %%PageMedia: ...
1418 */
1419 }
1420 else if (!strncmp(line, "%%PageOrientation:", 18))
1421 {
1422 /*
1423 * %%PageOrientation: ...
1424 */
1425 }
1426 else if (!strncmp(line, "%%PageProcessColors:", 20))
1427 {
1428 /*
1429 * %%PageProcessColors: ...
1430 */
1431 }
1432 else if (!strncmp(line, "%%PageRequirements:", 18))
1433 {
1434 /*
1435 * %%PageRequirements: ...
1436 */
1437 }
1438 else if (!strncmp(line, "%%PageResources:", 16))
1439 {
1440 /*
1441 * %%PageResources: ...
1442 */
1443 }
1444 else if (!strncmp(line, "%%IncludeFeature:", 17))
1445 {
1446 /*
1447 * %%IncludeFeature: *MainKeyword OptionKeyword
1448 */
1449
1450 if (doc->number_up == 1 &&!doc->fitplot)
1451 pageinfo->num_options = include_feature(ppd, line,
1452 pageinfo->num_options,
1453 &(pageinfo->options));
1454 }
1455 else if (strncmp(line, "%%Include", 9))
1456 break;
1457 }
1458
1459 if (doc->number_up == 1)
1460 {
1461 /*
1462 * Update the document's composite and page bounding box...
1463 */
1464
1465 memcpy(pageinfo->bounding_box, bounding_box,
1466 sizeof(pageinfo->bounding_box));
1467
1468 if (bounding_box[0] < doc->new_bounding_box[0])
1469 doc->new_bounding_box[0] = bounding_box[0];
1470 if (bounding_box[1] < doc->new_bounding_box[1])
1471 doc->new_bounding_box[1] = bounding_box[1];
1472 if (bounding_box[2] > doc->new_bounding_box[2])
1473 doc->new_bounding_box[2] = bounding_box[2];
1474 if (bounding_box[3] > doc->new_bounding_box[3])
1475 doc->new_bounding_box[3] = bounding_box[3];
1476 }
1477
1478 /*
1479 * Output the page header as needed...
1480 */
1481
1482 if (!doc->slow_order && first_page)
1483 {
1484 if (!ppd || !ppd->num_filters)
1485 fprintf(stderr, "PAGE: %d %d\n", doc->page,
1486 doc->slow_collate ? 1 : doc->copies);
1487
1488 if (doc->number_up > 1)
1489 {
1490 printf("%%%%Page: (%d) %d\n", doc->page, doc->page);
1491 printf("%%%%PageBoundingBox: %.0f %.0f %.0f %.0f\n",
1492 PageLeft, PageBottom, PageRight, PageTop);
1493 }
1494 else
1495 {
1496 printf("%%%%Page: %s %d\n", pageinfo->label, doc->page);
1497 printf("%%%%PageBoundingBox: %d %d %d %d\n",
1498 pageinfo->bounding_box[0], pageinfo->bounding_box[1],
1499 pageinfo->bounding_box[2], pageinfo->bounding_box[3]);
1500 }
1501 }
1502
1503 /*
1504 * Copy any page setup commands...
1505 */
1506
1507 if (first_page)
1508 {
1509 char *page_setup; /* PageSetup commands to send */
1510
1511
1512 doc_puts(doc, "%%BeginPageSetup\n");
1513
1514 if (pageinfo->num_options > 0)
1515 {
1516 int i; /* Looping var */
1517 ppd_option_t *option; /* PPD option */
1518 int min_order; /* Minimum OrderDependency value */
1519 char *doc_setup, /* DocumentSetup commands to send */
1520 *any_setup; /* AnySetup commands to send */
1521
1522
1523 /*
1524 * Yes, figure out the minimum OrderDependency value...
1525 */
1526
1527 if ((option = ppdFindOption(ppd, "PageRegion")) != NULL)
1528 min_order = option->order;
1529 else
1530 min_order = 999.0f;
1531
1532 for (i = 0; i < pageinfo->num_options; i ++)
1533 if ((option = ppdFindOption(ppd, pageinfo->options[i].name)) != NULL &&
1534 option->order < min_order)
1535 min_order = option->order;
1536
1537 /*
1538 * Mark and extract them...
1539 */
1540
1541 cupsMarkOptions(ppd, pageinfo->num_options, pageinfo->options);
1542
1543 doc_setup = ppdEmitString(ppd, PPD_ORDER_DOCUMENT, min_order);
1544 any_setup = ppdEmitString(ppd, PPD_ORDER_ANY, min_order);
1545
1546 /*
1547 * Then send them out...
1548 */
1549
1550 if (doc_setup)
1551 {
1552 doc_puts(doc, doc_setup);
1553 free(doc_setup);
1554 }
1555
1556 if (any_setup)
1557 {
1558 doc_puts(doc, any_setup);
1559 free(any_setup);
1560 }
1561 }
1562
1563 /*
1564 * Output commands for the current page...
1565 */
1566
1567 page_setup = ppdEmitString(ppd, PPD_ORDER_PAGE, 0);
1568
1569 if (page_setup)
1570 {
1571 doc_puts(doc, page_setup);
1572 free(page_setup);
1573 }
1574 }
1575
1576 /*
1577 * Prep for the start of the page description...
1578 */
1579
1580 start_nup(doc, number, 1, bounding_box);
1581
1582 /*
1583 * Copy page setup commands as needed...
1584 */
1585
1586 if (!strncmp(line, "%%BeginPageSetup", 16))
1587 {
1588 int feature = 0; /* In a Begin/EndFeature block? */
1589
1590
1591 while ((linelen = cupsFileGetLine(fp, line, linesize)) > 0)
1592 {
1593 if (!strncmp(line, "%%EndPageSetup", 14))
1594 break;
1595 else if (!strncmp(line, "%%BeginFeature:", 15))
1596 {
1597 feature = 1;
1598
1599 if (doc->number_up > 1 || doc->fitplot)
1600 continue;
1601 }
1602 else if (!strncmp(line, "%%EndFeature", 12))
1603 {
1604 feature = 0;
1605
1606 if (doc->number_up > 1 || doc->fitplot)
1607 continue;
1608 }
1609 else if (!strncmp(line, "%%Include", 9))
1610 continue;
1611
1612 if (!feature || (doc->number_up == 1 && !doc->fitplot))
1613 doc_write(doc, line, linelen);
1614 }
1615
1616 /*
1617 * Skip %%EndPageSetup...
1618 */
1619
1620 if (linelen > 0)
1621 linelen = cupsFileGetLine(fp, line, linesize);
1622 }
1623
1624 /*
1625 * Finish the PageSetup section as needed...
1626 */
1627
1628 if (first_page)
1629 doc_puts(doc, "%%EndPageSetup\n");
1630
1631 /*
1632 * Read the rest of the page description...
1633 */
1634
1635 level = 0;
1636
1637 do
1638 {
1639 if (level == 0 &&
1640 (!strncmp(line, "%%Page:", 7) ||
1641 !strncmp(line, "%%Trailer", 9) ||
1642 !strncmp(line, "%%EOF", 5)))
1643 break;
1644 else if (!strncmp(line, "%%BeginDocument", 15) ||
1645 !strncmp(line, "%ADO_BeginApplication", 21))
1646 {
1647 doc_write(doc, line, linelen);
1648
1649 level ++;
1650 }
1651 else if ((!strncmp(line, "%%EndDocument", 13) ||
1652 !strncmp(line, "%ADO_EndApplication", 19)) && level > 0)
1653 {
1654 doc_write(doc, line, linelen);
1655
1656 level --;
1657 }
1658 else if (!strncmp(line, "%%BeginBinary:", 14) ||
1659 (!strncmp(line, "%%BeginData:", 12) &&
1660 !strstr(line, "ASCII") && !strstr(line, "Hex")))
1661 {
1662 /*
1663 * Copy binary data...
1664 */
1665
1666 int bytes; /* Bytes of data */
1667
1668
1669 doc_write(doc, line, linelen);
1670
1671 bytes = atoi(strchr(line, ':') + 1);
1672
1673 while (bytes > 0)
1674 {
1675 if (bytes > linesize)
1676 linelen = cupsFileRead(fp, line, linesize);
1677 else
1678 linelen = cupsFileRead(fp, line, bytes);
1679
1680 if (linelen < 1)
1681 {
1682 line[0] = '\0';
1683 perror("ERROR: Early end-of-file while reading binary data");
1684 return (0);
1685 }
1686
1687 doc_write(doc, line, linelen);
1688
1689 bytes -= linelen;
1690 }
1691 }
1692 else
1693 doc_write(doc, line, linelen);
1694 }
1695 while ((linelen = cupsFileGetLine(fp, line, linesize)) > 0);
1696
1697 /*
1698 * Finish up this page and return...
1699 */
1700
1701 end_nup(doc, number);
1702
1703 pageinfo->length = cupsFileTell(doc->temp) - pageinfo->offset;
1704
1705 return (linelen);
1706 }
1707
1708
1709 /*
1710 * 'copy_prolog()' - Copy the document prolog section...
1711 *
1712 * This function expects "line" to be filled with a %%BeginProlog comment line.
1713 * On return, "line" will contain the next line in the file, if any.
1714 */
1715
1716 static size_t /* O - Length of next line */
1717 copy_prolog(cups_file_t *fp, /* I - File to read from */
1718 pstops_doc_t *doc, /* I - Document info */
1719 ppd_file_t *ppd, /* I - PPD file */
1720 char *line, /* I - Line buffer */
1721 size_t linelen, /* I - Length of initial line */
1722 size_t linesize) /* I - Size of line buffer */
1723 {
1724 while (strncmp(line, "%%BeginProlog", 13))
1725 {
1726 if (!strncmp(line, "%%BeginSetup", 12) || !strncmp(line, "%%Page:", 7))
1727 break;
1728
1729 doc_write(doc, line, linelen);
1730
1731 if ((linelen = cupsFileGetLine(fp, line, linesize)) == 0)
1732 break;
1733 }
1734
1735 doc_puts(doc, "%%BeginProlog\n");
1736
1737 do_prolog(doc, ppd);
1738
1739 if (!strncmp(line, "%%BeginProlog", 13))
1740 {
1741 while ((linelen = cupsFileGetLine(fp, line, linesize)) > 0)
1742 {
1743 if (!strncmp(line, "%%EndProlog", 11) ||
1744 !strncmp(line, "%%BeginSetup", 12) ||
1745 !strncmp(line, "%%Page:", 7))
1746 break;
1747
1748 doc_write(doc, line, linelen);
1749 }
1750
1751 if (!strncmp(line, "%%EndProlog", 11))
1752 linelen = cupsFileGetLine(fp, line, linesize);
1753 else
1754 fputs(_("ERROR: Missing %%EndProlog!\n"), stderr);
1755 }
1756
1757 doc_puts(doc, "%%EndProlog\n");
1758
1759 return (linelen);
1760 }
1761
1762
1763 /*
1764 * 'copy_setup()' - Copy the document setup section...
1765 *
1766 * This function expects "line" to be filled with a %%BeginSetup comment line.
1767 * On return, "line" will contain the next line in the file, if any.
1768 */
1769
1770 static size_t /* O - Length of next line */
1771 copy_setup(cups_file_t *fp, /* I - File to read from */
1772 pstops_doc_t *doc, /* I - Document info */
1773 ppd_file_t *ppd, /* I - PPD file */
1774 char *line, /* I - Line buffer */
1775 size_t linelen, /* I - Length of initial line */
1776 size_t linesize) /* I - Size of line buffer */
1777 {
1778 while (strncmp(line, "%%BeginSetup", 12))
1779 {
1780 if (!strncmp(line, "%%Page:", 7))
1781 break;
1782
1783 doc_write(doc, line, linelen);
1784
1785 if ((linelen = cupsFileGetLine(fp, line, linesize)) == 0)
1786 break;
1787 }
1788
1789 doc_puts(doc, "%%BeginSetup\n");
1790
1791 do_setup(doc, ppd);
1792
1793 if (!strncmp(line, "%%BeginSetup", 12))
1794 {
1795 while (strncmp(line, "%%EndSetup", 10))
1796 {
1797 if (!strncmp(line, "%%Page:", 7))
1798 break;
1799 else if (!strncmp(line, "%%IncludeFeature:", 17))
1800 {
1801 /*
1802 * %%IncludeFeature: *MainKeyword OptionKeyword
1803 */
1804
1805 if (doc->number_up == 1 && !doc->fitplot)
1806 doc->num_options = include_feature(ppd, line, doc->num_options,
1807 &(doc->options));
1808 }
1809 else if (strncmp(line, "%%BeginSetup", 12))
1810 doc_write(doc, line, linelen);
1811
1812 if ((linelen = cupsFileGetLine(fp, line, linesize)) == 0)
1813 break;
1814 }
1815
1816 if (!strncmp(line, "%%EndSetup", 10))
1817 linelen = cupsFileGetLine(fp, line, linesize);
1818 else
1819 fputs(_("ERROR: Missing %%EndSetup!\n"), stderr);
1820 }
1821
1822 doc_puts(doc, "%%EndSetup\n");
1823
1824 return (linelen);
1825 }
1826
1827
1828 /*
1829 * 'copy_trailer()' - Copy the document trailer...
1830 *
1831 * This function expects "line" to be filled with a %%Trailer comment line.
1832 * On return, "line" will contain the next line in the file, if any.
1833 */
1834
1835 static size_t /* O - Length of next line */
1836 copy_trailer(cups_file_t *fp, /* I - File to read from */
1837 pstops_doc_t *doc, /* I - Document info */
1838 ppd_file_t *ppd, /* I - PPD file */
1839 int number, /* I - Number of pages */
1840 char *line, /* I - Line buffer */
1841 size_t linelen, /* I - Length of initial line */
1842 size_t linesize) /* I - Size of line buffer */
1843 {
1844 /*
1845 * Write the trailer comments...
1846 */
1847
1848 puts("%%Trailer");
1849
1850 while (linelen > 0)
1851 {
1852 if (!strncmp(line, "%%EOF", 5))
1853 break;
1854 else if (strncmp(line, "%%Trailer", 9) &&
1855 strncmp(line, "%%Pages:", 8) &&
1856 strncmp(line, "%%BoundingBox:", 14))
1857 fwrite(line, 1, linelen, stdout);
1858
1859 linelen = cupsFileGetLine(fp, line, linesize);
1860 }
1861
1862 fprintf(stderr, "DEBUG: Wrote %d pages...\n", number);
1863
1864 printf("%%%%Pages: %d\n", number);
1865 if (doc->number_up > 1 || doc->fitplot)
1866 printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n",
1867 PageLeft, PageBottom, PageRight, PageTop);
1868 else
1869 printf("%%%%BoundingBox: %d %d %d %d\n",
1870 doc->new_bounding_box[0], doc->new_bounding_box[1],
1871 doc->new_bounding_box[2], doc->new_bounding_box[3]);
1872
1873 return (linelen);
1874 }
1875
1876
1877 /*
1878 * 'do_prolog()' - Send the necessary document prolog commands...
1879 */
1880
1881 static void
1882 do_prolog(pstops_doc_t *doc, /* I - Document information */
1883 ppd_file_t *ppd) /* I - PPD file */
1884 {
1885 char *ps; /* PS commands */
1886
1887
1888 /*
1889 * Send the document prolog commands...
1890 */
1891
1892 if (ppd && ppd->patches)
1893 {
1894 doc_puts(doc, "%%BeginFeature: *JobPatchFile 1\n");
1895 doc_puts(doc, ppd->patches);
1896 doc_puts(doc, "\n%%EndFeature\n");
1897 }
1898
1899 if ((ps = ppdEmitString(ppd, PPD_ORDER_PROLOG, 0.0)) != NULL)
1900 {
1901 doc_puts(doc, ps);
1902 free(ps);
1903 }
1904
1905 /*
1906 * Define ESPshowpage here so that applications that define their
1907 * own procedure to do a showpage pick it up...
1908 */
1909
1910 if (doc->use_ESPshowpage)
1911 doc_puts(doc, "userdict/ESPshowpage/showpage load put\n"
1912 "userdict/showpage{}put\n");
1913 }
1914
1915
1916 /*
1917 * 'do_setup()' - Send the necessary document setup commands...
1918 */
1919
1920 static void
1921 do_setup(pstops_doc_t *doc, /* I - Document information */
1922 ppd_file_t *ppd) /* I - PPD file */
1923 {
1924 char *ps; /* PS commands */
1925
1926
1927 /*
1928 * Disable CTRL-D so that embedded files don't cause printing
1929 * errors...
1930 */
1931
1932 doc_puts(doc, "% Disable CTRL-D as an end-of-file marker...\n");
1933 doc_puts(doc, "userdict dup(\\004)cvn{}put (\\004\\004)cvn{}put\n");
1934
1935 /*
1936 * Mark any options from %%IncludeFeature: comments...
1937 */
1938
1939 cupsMarkOptions(ppd, doc->num_options, doc->options);
1940
1941 /*
1942 * Send all the printer-specific setup commands...
1943 */
1944
1945 if ((ps = ppdEmitString(ppd, PPD_ORDER_DOCUMENT, 0.0)) != NULL)
1946 {
1947 doc_puts(doc, ps);
1948 free(ps);
1949 }
1950
1951 if ((ps = ppdEmitString(ppd, PPD_ORDER_ANY, 0.0)) != NULL)
1952 {
1953 doc_puts(doc, ps);
1954 free(ps);
1955 }
1956
1957 /*
1958 * Set the number of copies for the job...
1959 */
1960
1961 if (doc->copies != 1 && (!doc->collate || !doc->slow_collate))
1962 {
1963 doc_printf(doc, "%%RBIBeginNonPPDFeature: *NumCopies %d\n", doc->copies);
1964 doc_printf(doc,
1965 "%d/languagelevel where{pop languagelevel 2 ge}{false}ifelse\n"
1966 "{1 dict begin/NumCopies exch def currentdict end "
1967 "setpagedevice}\n"
1968 "{userdict/#copies 3 -1 roll put}ifelse\n", doc->copies);
1969 doc_puts(doc, "%RBIEndNonPPDFeature\n");
1970 }
1971
1972 /*
1973 * If we are doing N-up printing, disable setpagedevice...
1974 */
1975
1976 if (doc->number_up > 1)
1977 doc_puts(doc, "userdict/setpagedevice{pop}bind put\n");
1978
1979 /*
1980 * Changes to the transfer function must be made AFTER any
1981 * setpagedevice code...
1982 */
1983
1984 if (doc->gamma != 1.0f || doc->brightness != 1.0f)
1985 doc_printf(doc, "{ neg 1 add dup 0 lt { pop 1 } { %.3f exp neg 1 add } "
1986 "ifelse %.3f mul } bind settransfer\n",
1987 doc->gamma, doc->brightness);
1988
1989 /*
1990 * Make sure we have rectclip and rectstroke procedures of some sort...
1991 */
1992
1993 doc_puts(doc,
1994 "% x y w h ESPrc - Clip to a rectangle.\n"
1995 "userdict/ESPrc/rectclip where{pop/rectclip load}\n"
1996 "{{newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto\n"
1997 "neg 0 rlineto closepath clip newpath}bind}ifelse put\n");
1998
1999 doc_puts(doc,
2000 "% x y w h ESPrf - Fill a rectangle.\n"
2001 "userdict/ESPrf/rectfill where{pop/rectfill load}\n"
2002 "{{gsave newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto\n"
2003 "neg 0 rlineto closepath fill grestore}bind}ifelse put\n");
2004
2005 doc_puts(doc,
2006 "% x y w h ESPrs - Stroke a rectangle.\n"
2007 "userdict/ESPrs/rectstroke where{pop/rectstroke load}\n"
2008 "{{gsave newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto\n"
2009 "neg 0 rlineto closepath stroke grestore}bind}ifelse put\n");
2010
2011 /*
2012 * Write the page and label prologs...
2013 */
2014
2015 if (doc->number_up == 2 || doc->number_up == 6)
2016 {
2017 /*
2018 * For 2- and 6-up output, rotate the labels to match the orientation
2019 * of the pages...
2020 */
2021
2022 if (Orientation & 1)
2023 write_label_prolog(doc, doc->page_label, PageBottom,
2024 PageWidth - PageLength + PageTop, PageLength);
2025 else
2026 write_label_prolog(doc, doc->page_label, PageLeft, PageRight,
2027 PageLength);
2028 }
2029 else
2030 write_label_prolog(doc, doc->page_label, PageBottom, PageTop, PageWidth);
2031 }
2032
2033
2034 /*
2035 * 'doc_printf()' - Send a formatted string to stdout and/or the temp file.
2036 *
2037 * This function should be used for all page-level output that is affected
2038 * by ordering, collation, etc.
2039 */
2040
2041 static void
2042 doc_printf(pstops_doc_t *doc, /* I - Document information */
2043 const char *format, /* I - Printf-style format string */
2044 ...) /* I - Additional arguments as needed */
2045 {
2046 va_list ap; /* Pointer to arguments */
2047 char buffer[1024]; /* Output buffer */
2048 size_t bytes; /* Number of bytes to write */
2049
2050
2051 va_start(ap, format);
2052 bytes = vsnprintf(buffer, sizeof(buffer), format, ap);
2053 va_end(ap);
2054
2055 if (bytes > sizeof(buffer))
2056 {
2057 fprintf(stderr,
2058 _("ERROR: doc_printf overflow (%d bytes) detected, aborting!\n"),
2059 (int)bytes);
2060 exit(1);
2061 }
2062
2063 doc_write(doc, buffer, bytes);
2064 }
2065
2066
2067 /*
2068 * 'doc_puts()' - Send a nul-terminated string to stdout and/or the temp file.
2069 *
2070 * This function should be used for all page-level output that is affected
2071 * by ordering, collation, etc.
2072 */
2073
2074 static void
2075 doc_puts(pstops_doc_t *doc, /* I - Document information */
2076 const char *s) /* I - String to send */
2077 {
2078 doc_write(doc, s, strlen(s));
2079 }
2080
2081
2082 /*
2083 * 'doc_write()' - Send data to stdout and/or the temp file.
2084 */
2085
2086 static void
2087 doc_write(pstops_doc_t *doc, /* I - Document information */
2088 const char *s, /* I - Data to send */
2089 size_t len) /* I - Number of bytes to send */
2090 {
2091 if (!doc->slow_order)
2092 fwrite(s, 1, len, stdout);
2093
2094 if (doc->temp)
2095 cupsFileWrite(doc->temp, s, len);
2096 }
2097
2098
2099 /*
2100 * 'end_nup()' - End processing for N-up printing...
2101 */
2102
2103 static void
2104 end_nup(pstops_doc_t *doc, /* I - Document information */
2105 int number) /* I - Page number */
2106 {
2107 if (doc->number_up > 1)
2108 doc_puts(doc, "userdict/ESPsave get restore\n");
2109
2110 switch (doc->number_up)
2111 {
2112 case 1 :
2113 if (doc->use_ESPshowpage)
2114 {
2115 write_labels(doc, Orientation);
2116 doc_puts(doc, "ESPshowpage\n");
2117 }
2118 break;
2119
2120 case 2 :
2121 case 6 :
2122 if (is_last_page(number) && doc->use_ESPshowpage)
2123 {
2124 if (Orientation & 1)
2125 {
2126 /*
2127 * Rotate the labels back to portrait...
2128 */
2129
2130 write_labels(doc, Orientation - 1);
2131 }
2132 else if (Orientation == 0)
2133 {
2134 /*
2135 * Rotate the labels to landscape...
2136 */
2137
2138 write_labels(doc, doc->normal_landscape ? 1 : 3);
2139 }
2140 else
2141 {
2142 /*
2143 * Rotate the labels to landscape...
2144 */
2145
2146 write_labels(doc, doc->normal_landscape ? 3 : 1);
2147 }
2148
2149 doc_puts(doc, "ESPshowpage\n");
2150 }
2151 break;
2152
2153 default :
2154 if (is_last_page(number) && doc->use_ESPshowpage)
2155 {
2156 write_labels(doc, Orientation);
2157 doc_puts(doc, "ESPshowpage\n");
2158 }
2159 break;
2160 }
2161
2162 fflush(stdout);
2163 }
2164
2165
2166 /*
2167 * 'include_feature()' - Include a printer option/feature command.
2168 */
2169
2170 static int /* O - New number of options */
2171 include_feature(
2172 ppd_file_t *ppd, /* I - PPD file */
2173 const char *line, /* I - DSC line */
2174 int num_options, /* I - Number of options */
2175 cups_option_t **options) /* IO - Options */
2176 {
2177 char name[255], /* Option name */
2178 value[255]; /* Option value */
2179 ppd_option_t *option; /* Option in file */
2180 ppd_choice_t *choice; /* Choice */
2181
2182
2183 /*
2184 * Get the "%%IncludeFeature: *Keyword OptionKeyword" values...
2185 */
2186
2187 if (sscanf(line + 17, "%254s%254s", name, value) != 2)
2188 {
2189 fputs(_("ERROR: Bad %%IncludeFeature: comment!\n"), stderr);
2190 return (num_options);
2191 }
2192
2193 /*
2194 * Find the option and choice...
2195 */
2196
2197 if ((option = ppdFindOption(ppd, name + 1)) == NULL)
2198 {
2199 fprintf(stderr, _("WARNING: Unknown option \"%s\"!\n"), name + 1);
2200 return (num_options);
2201 }
2202
2203 if (option->section == PPD_ORDER_EXIT ||
2204 option->section == PPD_ORDER_JCL)
2205 {
2206 fprintf(stderr, _("WARNING: Option \"%s\" cannot be included via "
2207 "IncludeFeature!\n"), name + 1);
2208 return (num_options);
2209 }
2210
2211 if ((choice = ppdFindChoice(option, value)) == NULL)
2212 {
2213 fprintf(stderr, _("WARNING: Unknown choice \"%s\" for option \"%s\"!\n"),
2214 value, name + 1);
2215 return (num_options);
2216 }
2217
2218 /*
2219 * Add the option to the option array and return...
2220 */
2221
2222 return (cupsAddOption(name + 1, value, num_options, options));
2223 }
2224
2225
2226 /*
2227 * 'parse_text()' - Parse a text value in a comment...
2228 *
2229 * This function parses a DSC text value as defined on page 36 of the
2230 * DSC specification. Text values are either surrounded by parenthesis
2231 * or whitespace-delimited.
2232 *
2233 * The value returned is the literal characters for the entire text
2234 * string, including any parenthesis and escape characters.
2235 */
2236
2237 static char * /* O - Value or NULL on error */
2238 parse_text(const char *start, /* I - Start of text value */
2239 char **end, /* O - End of text value */
2240 char *buffer, /* I - Buffer */
2241 size_t bufsize) /* I - Size of buffer */
2242 {
2243 char *bufptr, /* Pointer in buffer */
2244 *bufend; /* End of buffer */
2245 int level; /* Parenthesis level */
2246
2247
2248 /*
2249 * Skip leading whitespace...
2250 */
2251
2252 while (isspace(*start & 255))
2253 start ++;
2254
2255 /*
2256 * Then copy the value...
2257 */
2258
2259 level = 0;
2260 bufptr = buffer;
2261 bufend = buffer + bufsize - 1;
2262
2263 while (bufptr < bufend)
2264 {
2265 if (isspace(*start & 255) && !level)
2266 break;
2267
2268 *bufptr++ = *start;
2269
2270 if (*start == '(')
2271 level ++;
2272 else if (*start == ')')
2273 {
2274 if (!level)
2275 {
2276 start ++;
2277 break;
2278 }
2279 else
2280 level --;
2281 }
2282 else if (*start == '\\')
2283 {
2284 /*
2285 * Copy escaped character...
2286 */
2287
2288 int i; /* Looping var */
2289
2290
2291 for (i = 1;
2292 i <= 3 && isdigit(start[i] & 255) && bufptr < bufend;
2293 *bufptr++ = start[i], i ++);
2294 }
2295
2296 start ++;
2297 }
2298
2299 *bufptr = '\0';
2300
2301 /*
2302 * Return the value and new pointer into the line...
2303 */
2304
2305 if (end)
2306 *end = (char *)start;
2307
2308 if (bufptr == bufend)
2309 return (NULL);
2310 else
2311 return (buffer);
2312 }
2313
2314
2315 /*
2316 * 'set_pstops_options()' - Set pstops options...
2317 */
2318
2319 static void
2320 set_pstops_options(
2321 pstops_doc_t *doc, /* I - Document information */
2322 ppd_file_t *ppd, /* I - PPD file */
2323 char *argv[], /* I - Command-line arguments */
2324 int num_options, /* I - Number of options */
2325 cups_option_t *options) /* I - Options */
2326 {
2327 const char *val; /* Option value */
2328 int intval; /* Integer option value */
2329 ppd_attr_t *attr; /* PPD attribute */
2330 ppd_option_t *option; /* PPD option */
2331 ppd_choice_t *choice; /* PPD choice */
2332
2333
2334 /*
2335 * Initialize document information structure...
2336 */
2337
2338 memset(doc, 0, sizeof(pstops_doc_t));
2339
2340 doc->job_id = atoi(argv[1]);
2341 doc->user = argv[2];
2342 doc->title = argv[3];
2343 doc->copies = atoi(argv[4]);
2344
2345 if (ppd && ppd->landscape > 0)
2346 doc->normal_landscape = 1;
2347
2348 doc->bounding_box[0] = (int)PageLeft;
2349 doc->bounding_box[1] = (int)PageBottom;
2350 doc->bounding_box[2] = (int)PageRight;
2351 doc->bounding_box[3] = (int)PageTop;
2352
2353 doc->new_bounding_box[0] = INT_MAX;
2354 doc->new_bounding_box[1] = INT_MAX;
2355 doc->new_bounding_box[2] = INT_MIN;
2356 doc->new_bounding_box[3] = INT_MIN;
2357
2358 /*
2359 * AP_FIRSTPAGE_InputSlot
2360 */
2361
2362 doc->ap_input_slot = cupsGetOption("AP_FIRSTPAGE_InputSlot", num_options,
2363 options);
2364
2365 /*
2366 * AP_FIRSTPAGE_ManualFeed
2367 */
2368
2369 doc->ap_manual_feed = cupsGetOption("AP_FIRSTPAGE_ManualFeed", num_options,
2370 options);
2371
2372 /*
2373 * brightness
2374 */
2375
2376 if ((val = cupsGetOption("brightness", num_options, options)) != NULL)
2377 {
2378 /*
2379 * Get brightness value from 10 to 1000.
2380 */
2381
2382 intval = atoi(val);
2383
2384 if (intval < 10 || intval > 1000)
2385 {
2386 fprintf(stderr, _("ERROR: Unsupported brightness value %s, using "
2387 "brightness=100!\n"), val);
2388 doc->brightness = 1.0f;
2389 }
2390 else
2391 doc->brightness = intval * 0.01f;
2392 }
2393 else
2394 doc->brightness = 1.0f;
2395
2396 /*
2397 * collate, multiple-document-handling
2398 */
2399
2400 if ((val = cupsGetOption("multiple-document-handling", num_options, options)) != NULL)
2401 {
2402 /*
2403 * This IPP attribute is unnecessarily complicated...
2404 *
2405 * single-document, separate-documents-collated-copies, and
2406 * single-document-new-sheet all require collated copies.
2407 *
2408 * separate-documents-uncollated-copies allows for uncollated copies.
2409 */
2410
2411 doc->collate = strcasecmp(val, "separate-documents-uncollated-copies") != 0;
2412 }
2413
2414 if ((val = cupsGetOption("Collate", num_options, options)) != NULL &&
2415 (!strcasecmp(val, "true") ||!strcasecmp(val, "on") ||
2416 !strcasecmp(val, "yes")))
2417 doc->collate = 1;
2418
2419 /*
2420 * emit-jcl
2421 */
2422
2423 if ((val = cupsGetOption("emit-jcl", num_options, options)) != NULL &&
2424 (!strcasecmp(val, "false") || !strcasecmp(val, "off") ||
2425 !strcasecmp(val, "no") || !strcmp(val, "0")))
2426 doc->emit_jcl = 0;
2427 else
2428 doc->emit_jcl = 1;
2429
2430 /*
2431 * fitplot
2432 */
2433
2434 if ((val = cupsGetOption("fitplot", num_options, options)) != NULL &&
2435 (!strcasecmp(val, "true") || !strcasecmp(val, "on") ||
2436 !strcasecmp(val, "yes")))
2437 doc->fitplot = 1;
2438
2439 /*
2440 * gamma
2441 */
2442
2443 if ((val = cupsGetOption("gamma", num_options, options)) != NULL)
2444 {
2445 /*
2446 * Get gamma value from 1 to 10000...
2447 */
2448
2449 intval = atoi(val);
2450
2451 if (intval < 1 || intval > 10000)
2452 {
2453 fprintf(stderr, _("ERROR: Unsupported gamma value %s, using "
2454 "gamma=1000!\n"), val);
2455 doc->gamma = 1.0f;
2456 }
2457 else
2458 doc->gamma = intval * 0.001f;
2459 }
2460 else
2461 doc->gamma = 1.0f;
2462
2463 /*
2464 * InputSlot
2465 */
2466
2467 if ((choice = ppdFindMarkedChoice(ppd, "InputSlot")) != NULL)
2468 doc->input_slot = choice->choice;
2469
2470 /*
2471 * ManualFeed
2472 */
2473
2474 if ((choice = ppdFindMarkedChoice(ppd, "ManualFeed")) != NULL)
2475 doc->manual_feed = choice->choice;
2476
2477 if ((choice = ppdFindMarkedChoice(ppd, "MirrorPrint")) != NULL)
2478 {
2479 val = choice->choice;
2480 choice->marked = 0;
2481 }
2482 else
2483 val = cupsGetOption("mirror", num_options, options);
2484
2485 if (val && (!strcasecmp(val, "true") || !strcasecmp(val, "on") ||
2486 !strcasecmp(val, "yes")))
2487 doc->mirror = 1;
2488
2489 /*
2490 * number-up
2491 */
2492
2493 if ((val = cupsGetOption("number-up", num_options, options)) != NULL)
2494 {
2495 switch (intval = atoi(val))
2496 {
2497 case 1 :
2498 case 2 :
2499 case 4 :
2500 case 6 :
2501 case 9 :
2502 case 16 :
2503 doc->number_up = intval;
2504 break;
2505 default :
2506 fprintf(stderr,
2507 _("ERROR: Unsupported number-up value %d, using "
2508 "number-up=1!\n"), intval);
2509 doc->number_up = 1;
2510 break;
2511 }
2512 }
2513 else
2514 doc->number_up = 1;
2515
2516 /*
2517 * number-up-layout
2518 */
2519
2520 if ((val = cupsGetOption("number-up-layout", num_options, options)) != NULL)
2521 {
2522 if (!strcasecmp(val, "lrtb"))
2523 doc->number_up_layout = PSTOPS_LAYOUT_LRTB;
2524 else if (!strcasecmp(val, "lrbt"))
2525 doc->number_up_layout = PSTOPS_LAYOUT_LRBT;
2526 else if (!strcasecmp(val, "rltb"))
2527 doc->number_up_layout = PSTOPS_LAYOUT_RLTB;
2528 else if (!strcasecmp(val, "rlbt"))
2529 doc->number_up_layout = PSTOPS_LAYOUT_RLBT;
2530 else if (!strcasecmp(val, "tblr"))
2531 doc->number_up_layout = PSTOPS_LAYOUT_TBLR;
2532 else if (!strcasecmp(val, "tbrl"))
2533 doc->number_up_layout = PSTOPS_LAYOUT_TBRL;
2534 else if (!strcasecmp(val, "btlr"))
2535 doc->number_up_layout = PSTOPS_LAYOUT_BTLR;
2536 else if (!strcasecmp(val, "btrl"))
2537 doc->number_up_layout = PSTOPS_LAYOUT_BTRL;
2538 else
2539 {
2540 fprintf(stderr, _("ERROR: Unsupported number-up-layout value %s, using "
2541 "number-up-layout=lrtb!\n"), val);
2542 doc->number_up_layout = PSTOPS_LAYOUT_LRTB;
2543 }
2544 }
2545 else
2546 doc->number_up_layout = PSTOPS_LAYOUT_LRTB;
2547
2548 /*
2549 * OutputOrder
2550 */
2551
2552 if ((val = cupsGetOption("OutputOrder", num_options, options)) != NULL)
2553 {
2554 if (!strcasecmp(val, "Reverse"))
2555 doc->output_order = 1;
2556 }
2557 else if (ppd)
2558 {
2559 /*
2560 * Figure out the right default output order from the PPD file...
2561 */
2562
2563 if ((choice = ppdFindMarkedChoice(ppd, "OutputBin")) != NULL &&
2564 (attr = ppdFindAttr(ppd, "PageStackOrder", choice->choice)) != NULL &&
2565 attr->value)
2566 doc->output_order = !strcasecmp(attr->value, "Reverse");
2567 else if ((attr = ppdFindAttr(ppd, "DefaultOutputOrder", NULL)) != NULL &&
2568 attr->value)
2569 doc->output_order = !strcasecmp(attr->value, "Reverse");
2570 }
2571
2572 /*
2573 * page-border
2574 */
2575
2576 if ((val = cupsGetOption("page-border", num_options, options)) != NULL)
2577 {
2578 if (!strcasecmp(val, "none"))
2579 doc->page_border = PSTOPS_BORDERNONE;
2580 else if (!strcasecmp(val, "single"))
2581 doc->page_border = PSTOPS_BORDERSINGLE;
2582 else if (!strcasecmp(val, "single-thick"))
2583 doc->page_border = PSTOPS_BORDERSINGLE2;
2584 else if (!strcasecmp(val, "double"))
2585 doc->page_border = PSTOPS_BORDERDOUBLE;
2586 else if (!strcasecmp(val, "double-thick"))
2587 doc->page_border = PSTOPS_BORDERDOUBLE2;
2588 else
2589 {
2590 fprintf(stderr, _("ERROR: Unsupported page-border value %s, using "
2591 "page-border=none!\n"), val);
2592 doc->page_border = PSTOPS_BORDERNONE;
2593 }
2594 }
2595 else
2596 doc->page_border = PSTOPS_BORDERNONE;
2597
2598 /*
2599 * page-label
2600 */
2601
2602 doc->page_label = cupsGetOption("page-label", num_options, options);
2603
2604 /*
2605 * page-ranges
2606 */
2607
2608 doc->page_ranges = cupsGetOption("page-ranges", num_options, options);
2609
2610 /*
2611 * page-set
2612 */
2613
2614 doc->page_set = cupsGetOption("page-set", num_options, options);
2615
2616 /*
2617 * Now figure out if we have to force collated copies, etc.
2618 */
2619
2620 if (ppd && ppd->manual_copies && Duplex && doc->copies > 1)
2621 {
2622 /*
2623 * Force collated copies when printing a duplexed document to
2624 * a non-PS printer that doesn't do hardware copy generation.
2625 * Otherwise the copies will end up on the front/back side of
2626 * each page.
2627 */
2628
2629 doc->collate = 1;
2630 }
2631
2632 /*
2633 * See if we have to filter the fast or slow way...
2634 */
2635
2636 if (doc->collate && doc->copies > 1)
2637 {
2638 /*
2639 * See if we need to manually collate the pages...
2640 */
2641
2642 doc->slow_collate = 1;
2643
2644 if ((choice = ppdFindMarkedChoice(ppd, "Collate")) != NULL &&
2645 !strcasecmp(choice->choice, "True"))
2646 {
2647 /*
2648 * Hardware collate option is selected, see if the option is
2649 * conflicting - if not, collate in hardware. Otherwise,
2650 * turn the hardware collate option off...
2651 */
2652
2653 if ((option = ppdFindOption(ppd, "Collate")) != NULL &&
2654 !option->conflicted)
2655 doc->slow_collate = 0;
2656 else
2657 ppdMarkOption(ppd, "Collate", "False");
2658 }
2659 }
2660 else
2661 doc->slow_collate = 0;
2662
2663 if (!ppdFindOption(ppd, "OutputOrder") && doc->output_order)
2664 doc->slow_order = 1;
2665 else
2666 doc->slow_order = 0;
2667
2668 if (Duplex &&
2669 (doc->slow_collate || doc->slow_order ||
2670 ((attr = ppdFindAttr(ppd, "cupsEvenDuplex", NULL)) != NULL &&
2671 attr->value && !strcasecmp(attr->value, "true"))))
2672 doc->slow_duplex = 1;
2673 else
2674 doc->slow_duplex = 0;
2675
2676 /*
2677 * Create a temporary file for page data if we need to filter slowly...
2678 */
2679
2680 if (doc->slow_order || doc->slow_collate)
2681 {
2682 if ((doc->temp = cupsTempFile2(doc->tempfile,
2683 sizeof(doc->tempfile))) == NULL)
2684 {
2685 fprintf(stderr, _("ERROR: Unable to create temporary file: %s\n"),
2686 strerror(errno));
2687 exit(1);
2688 }
2689 }
2690
2691 /*
2692 * Figure out if we should use ESPshowpage or not...
2693 */
2694
2695 if (doc->page_label || getenv("CLASSIFICATION") || doc->number_up > 1 ||
2696 doc->page_border)
2697 {
2698 /*
2699 * Yes, use ESPshowpage...
2700 */
2701
2702 doc->use_ESPshowpage = 1;
2703 }
2704
2705 fprintf(stderr, "DEBUG: slow_collate=%d, slow_duplex=%d, slow_order=%d\n",
2706 doc->slow_collate, doc->slow_duplex, doc->slow_order);
2707 }
2708
2709
2710 /*
2711 * 'skip_page()' - Skip past a page that won't be printed...
2712 */
2713
2714 static size_t /* O - Length of next line */
2715 skip_page(cups_file_t *fp, /* I - File to read from */
2716 char *line, /* I - Line buffer */
2717 size_t linelen, /* I - Length of initial line */
2718 size_t linesize) /* I - Size of line buffer */
2719 {
2720 int level; /* Embedded document level */
2721
2722
2723 level = 0;
2724
2725 while ((linelen = cupsFileGetLine(fp, line, linesize)) > 0)
2726 {
2727 if (level == 0 &&
2728 (!strncmp(line, "%%Page:", 7) || !strncmp(line, "%%Trailer", 9)))
2729 break;
2730 else if (!strncmp(line, "%%BeginDocument", 15) ||
2731 !strncmp(line, "%ADO_BeginApplication", 21))
2732 level ++;
2733 else if ((!strncmp(line, "%%EndDocument", 13) ||
2734 !strncmp(line, "%ADO_EndApplication", 19)) && level > 0)
2735 level --;
2736 else if (!strncmp(line, "%%BeginBinary:", 14) ||
2737 (!strncmp(line, "%%BeginData:", 12) &&
2738 !strstr(line, "ASCII") && !strstr(line, "Hex")))
2739 {
2740 /*
2741 * Skip binary data...
2742 */
2743
2744 int bytes; /* Bytes of data */
2745
2746
2747 bytes = atoi(strchr(line, ':') + 1);
2748
2749 while (bytes > 0)
2750 {
2751 if (bytes > linesize)
2752 linelen = cupsFileRead(fp, line, linesize);
2753 else
2754 linelen = cupsFileRead(fp, line, bytes);
2755
2756 if (linelen < 1)
2757 {
2758 line[0] = '\0';
2759 perror("ERROR: Early end-of-file while reading binary data");
2760 return (0);
2761 }
2762
2763 bytes -= linelen;
2764 }
2765 }
2766 }
2767
2768 return (linelen);
2769 }
2770
2771
2772 /*
2773 * 'start_nup()' - Start processing for N-up printing...
2774 */
2775
2776 static void
2777 start_nup(pstops_doc_t *doc, /* I - Document information */
2778 int number, /* I - Page number */
2779 int show_border, /* I - Show the border? */
2780 const int *bounding_box) /* I - BoundingBox value */
2781 {
2782 int pos; /* Position on page */
2783 int x, y; /* Relative position of subpage */
2784 float w, l, /* Width and length of subpage */
2785 tx, ty; /* Translation values for subpage */
2786 float pagew, /* Printable width of page */
2787 pagel; /* Printable height of page */
2788 int bboxw, /* BoundingBox width */
2789 bboxl; /* BoundingBox height */
2790
2791
2792 if (doc->number_up > 1)
2793 doc_puts(doc, "userdict/ESPsave save put\n");
2794
2795 if (doc->mirror)
2796 doc_printf(doc, "%.1f 0.0 translate -1 1 scale\n", PageWidth);
2797
2798 pos = (number - 1) % doc->number_up;
2799 pagew = PageRight - PageLeft;
2800 pagel = PageTop - PageBottom;
2801
2802 if (doc->fitplot)
2803 {
2804 bboxw = bounding_box[2] - bounding_box[0];
2805 bboxl = bounding_box[3] - bounding_box[1];
2806 }
2807 else
2808 {
2809 bboxw = PageWidth;
2810 bboxl = PageLength;
2811 }
2812
2813 fprintf(stderr, "DEBUG: pagew = %.1f, pagel = %.1f\n", pagew, pagel);
2814 fprintf(stderr, "DEBUG: bboxw = %d, bboxl = %d\n", bboxw, bboxl);
2815 fprintf(stderr, "DEBUG: PageLeft = %.1f, PageRight = %.1f\n",
2816 PageLeft, PageRight);
2817 fprintf(stderr, "DEBUG: PageTop = %.1f, PageBottom = %.1f\n",
2818 PageTop, PageBottom);
2819 fprintf(stderr, "DEBUG: PageWidth = %.1f, PageLength = %.1f\n",
2820 PageWidth, PageLength);
2821
2822 switch (Orientation)
2823 {
2824 case 1 : /* Landscape */
2825 doc_printf(doc, "%.1f 0.0 translate 90 rotate\n", PageLength);
2826 break;
2827 case 2 : /* Reverse Portrait */
2828 doc_printf(doc, "%.1f %.1f translate 180 rotate\n", PageWidth,
2829 PageLength);
2830 break;
2831 case 3 : /* Reverse Landscape */
2832 doc_printf(doc, "0.0 %.1f translate -90 rotate\n", PageWidth);
2833 break;
2834 }
2835
2836 if (Duplex && doc->number_up > 1 && ((number / doc->number_up) & 1))
2837 doc_printf(doc, "%.1f %.1f translate\n", PageWidth - PageRight, PageBottom);
2838 else if (doc->number_up > 1 || doc->fitplot)
2839 doc_printf(doc, "%.1f %.1f translate\n", PageLeft, PageBottom);
2840
2841 switch (doc->number_up)
2842 {
2843 default :
2844 if (doc->fitplot)
2845 {
2846 w = pagew;
2847 l = w * bboxl / bboxw;
2848
2849 if (l > pagel)
2850 {
2851 l = pagel;
2852 w = l * bboxw / bboxl;
2853 }
2854
2855 tx = 0.5 * (pagew - w);
2856 ty = 0.5 * (pagel - l);
2857
2858 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n", tx, ty,
2859 w / bboxw, l / bboxl);
2860 }
2861 else
2862 {
2863 w = PageWidth;
2864 l = PageLength;
2865 }
2866 break;
2867
2868 case 2 :
2869 if (Orientation & 1)
2870 {
2871 x = pos & 1;
2872
2873 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
2874 x = 1 - x;
2875
2876 w = pagel;
2877 l = w * bboxl / bboxw;
2878
2879 if (l > (pagew * 0.5))
2880 {
2881 l = pagew * 0.5;
2882 w = l * bboxw / bboxl;
2883 }
2884
2885 tx = 0.5 * (pagew * 0.5 - l);
2886 ty = 0.5 * (pagel - w);
2887
2888 if (doc->normal_landscape)
2889 doc_printf(doc, "0.0 %.1f translate -90 rotate\n", pagel);
2890 else
2891 doc_printf(doc, "%.1f 0.0 translate 90 rotate\n", pagew);
2892
2893 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
2894 ty, tx + pagew * 0.5 * x, w / bboxw, l / bboxl);
2895 }
2896 else
2897 {
2898 x = pos & 1;
2899
2900 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
2901 x = 1 - x;
2902
2903 l = pagew;
2904 w = l * bboxw / bboxl;
2905
2906 if (w > (pagel * 0.5))
2907 {
2908 w = pagel * 0.5;
2909 l = w * bboxl / bboxw;
2910 }
2911
2912 tx = 0.5 * (pagel * 0.5 - w);
2913 ty = 0.5 * (pagew - l);
2914
2915 if (doc->normal_landscape)
2916 doc_printf(doc, "%.1f 0.0 translate 90 rotate\n", pagew);
2917 else
2918 doc_printf(doc, "0.0 %.1f translate -90 rotate\n", pagel);
2919
2920 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
2921 tx + pagel * 0.5 * x, ty, w / bboxw, l / bboxl);
2922 }
2923 break;
2924
2925 case 4 :
2926 if (doc->number_up_layout & PSTOPS_LAYOUT_VERTICAL)
2927 {
2928 x = (pos / 2) & 1;
2929 y = pos & 1;
2930 }
2931 else
2932 {
2933 x = pos & 1;
2934 y = (pos / 2) & 1;
2935 }
2936
2937 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
2938 x = 1 - x;
2939
2940 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
2941 y = 1 - y;
2942
2943 w = pagew * 0.5;
2944 l = w * bboxl / bboxw;
2945
2946 if (l > (pagel * 0.5))
2947 {
2948 l = pagel * 0.5;
2949 w = l * bboxw / bboxl;
2950 }
2951
2952 tx = 0.5 * (pagew * 0.5 - w);
2953 ty = 0.5 * (pagel * 0.5 - l);
2954
2955 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
2956 tx + x * pagew * 0.5, ty + y * pagel * 0.5,
2957 w / bboxw, l / bboxl);
2958 break;
2959
2960 case 6 :
2961 if (Orientation & 1)
2962 {
2963 if (doc->number_up_layout & PSTOPS_LAYOUT_VERTICAL)
2964 {
2965 x = pos / 3;
2966 y = pos % 3;
2967
2968 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
2969 x = 1 - x;
2970
2971 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
2972 y = 2 - y;
2973 }
2974 else
2975 {
2976 x = pos & 1;
2977 y = pos / 2;
2978
2979 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
2980 x = 1 - x;
2981
2982 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
2983 y = 2 - y;
2984 }
2985
2986 w = pagel * 0.5;
2987 l = w * bboxl / bboxw;
2988
2989 if (l > (pagew * 0.333))
2990 {
2991 l = pagew * 0.333;
2992 w = l * bboxw / bboxl;
2993 }
2994
2995 tx = 0.5 * (pagel - 2 * w);
2996 ty = 0.5 * (pagew - 3 * l);
2997
2998 if (doc->normal_landscape)
2999 doc_printf(doc, "0 %.1f translate -90 rotate\n", pagel);
3000 else
3001 doc_printf(doc, "%.1f 0 translate 90 rotate\n", pagew);
3002
3003 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
3004 tx + x * w, ty + y * l, l / bboxl, w / bboxw);
3005 }
3006 else
3007 {
3008 if (doc->number_up_layout & PSTOPS_LAYOUT_VERTICAL)
3009 {
3010 x = pos / 2;
3011 y = pos & 1;
3012
3013 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
3014 x = 2 - x;
3015
3016 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
3017 y = 1 - y;
3018 }
3019 else
3020 {
3021 x = pos % 3;
3022 y = pos / 3;
3023
3024 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
3025 x = 2 - x;
3026
3027 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
3028 y = 1 - y;
3029 }
3030
3031 l = pagew * 0.5;
3032 w = l * bboxw / bboxl;
3033
3034 if (w > (pagel * 0.333))
3035 {
3036 w = pagel * 0.333;
3037 l = w * bboxl / bboxw;
3038 }
3039
3040 tx = 0.5 * (pagel - 3 * w);
3041 ty = 0.5 * (pagew - 2 * l);
3042
3043 if (doc->normal_landscape)
3044 doc_printf(doc, "%.1f 0 translate 90 rotate\n", pagew);
3045 else
3046 doc_printf(doc, "0 %.1f translate -90 rotate\n", pagel);
3047
3048 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
3049 tx + w * x, ty + l * y, w / bboxw, l / bboxl);
3050
3051 }
3052 break;
3053
3054 case 9 :
3055 if (doc->number_up_layout & PSTOPS_LAYOUT_VERTICAL)
3056 {
3057 x = (pos / 3) % 3;
3058 y = pos % 3;
3059 }
3060 else
3061 {
3062 x = pos % 3;
3063 y = (pos / 3) % 3;
3064 }
3065
3066 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
3067 x = 2 - x;
3068
3069 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
3070 y = 2 - y;
3071
3072 w = pagew * 0.333;
3073 l = w * bboxl / bboxw;
3074
3075 if (l > (pagel * 0.333))
3076 {
3077 l = pagel * 0.333;
3078 w = l * bboxw / bboxl;
3079 }
3080
3081 tx = 0.5 * (pagew * 0.333 - w);
3082 ty = 0.5 * (pagel * 0.333 - l);
3083
3084 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
3085 tx + x * pagew * 0.333, ty + y * pagel * 0.333,
3086 w / bboxw, l / bboxl);
3087 break;
3088
3089 case 16 :
3090 if (doc->number_up_layout & PSTOPS_LAYOUT_VERTICAL)
3091 {
3092 x = (pos / 4) & 3;
3093 y = pos & 3;
3094 }
3095 else
3096 {
3097 x = pos & 3;
3098 y = (pos / 4) & 3;
3099 }
3100
3101 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEX)
3102 x = 3 - x;
3103
3104 if (doc->number_up_layout & PSTOPS_LAYOUT_NEGATEY)
3105 y = 3 - y;
3106
3107 w = pagew * 0.25;
3108 l = w * bboxl / bboxw;
3109
3110 if (l > (pagel * 0.25))
3111 {
3112 l = pagel * 0.25;
3113 w = l * bboxw / bboxl;
3114 }
3115
3116 tx = 0.5 * (pagew * 0.25 - w);
3117 ty = 0.5 * (pagel * 0.25 - l);
3118
3119 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n",
3120 tx + x * pagew * 0.25, ty + y * pagel * 0.25,
3121 w / bboxw, l / bboxl);
3122 break;
3123 }
3124
3125 /*
3126 * Draw borders as necessary...
3127 */
3128
3129 if (doc->page_border && show_border)
3130 {
3131 int rects; /* Number of border rectangles */
3132 float fscale, /* Scaling value for points */
3133 margin; /* Current margin for borders */
3134
3135
3136 rects = (doc->page_border & PSTOPS_BORDERDOUBLE) ? 2 : 1;
3137 fscale = PageWidth / w;
3138 margin = 2.25 * fscale;
3139
3140 /*
3141 * Set the line width and color...
3142 */
3143
3144 doc_puts(doc, "gsave\n");
3145 doc_printf(doc, "%.3f setlinewidth 0 setgray newpath\n",
3146 (doc->page_border & PSTOPS_BORDERTHICK) ? 0.5 * fscale :
3147 0.24 * fscale);
3148
3149 /*
3150 * Draw border boxes...
3151 */
3152
3153 for (; rects > 0; rects --, margin += 2 * fscale)
3154 if (doc->number_up > 1)
3155 doc_printf(doc, "%.1f %.1f %.1f %.1f ESPrs\n",
3156 margin - 2.25 * fscale,
3157 margin - 2.25 * fscale,
3158 bboxw + 4.5 * fscale - 2 * margin,
3159 bboxl + 4.5 * fscale - 2 * margin);
3160 else
3161 doc_printf(doc, "%.1f %.1f %.1f %.1f ESPrs\n",
3162 PageLeft + margin,
3163 PageBottom + margin,
3164 PageRight - PageLeft - 2 * margin,
3165 PageTop - PageBottom - 2 * margin);
3166
3167 /*
3168 * Restore pen settings...
3169 */
3170
3171 doc_puts(doc, "grestore\n");
3172 }
3173
3174 if (doc->fitplot)
3175 {
3176 /*
3177 * Clip the page that follows to the bounding box of the page...
3178 */
3179
3180 doc_printf(doc, "%d %d translate\n", -bounding_box[0],
3181 -bounding_box[1]);
3182 doc_printf(doc, "%d %d %d %d ESPrc\n", bounding_box[0], bounding_box[1],
3183 bboxw, bboxl);
3184 }
3185 else if (doc->number_up > 1)
3186 {
3187 /*
3188 * Clip the page that follows to the default page size...
3189 */
3190
3191 doc_printf(doc, "0 0 %d %d ESPrc\n", bboxw, bboxl);
3192 }
3193 }
3194
3195
3196 /*
3197 * 'write_label_prolog()' - Write the prolog with the classification
3198 * and page label.
3199 */
3200
3201 static void
3202 write_label_prolog(pstops_doc_t *doc, /* I - Document info */
3203 const char *label, /* I - Page label */
3204 float bottom, /* I - Bottom position in points */
3205 float top, /* I - Top position in points */
3206 float width) /* I - Width in points */
3207 {
3208 const char *classification; /* CLASSIFICATION environment variable */
3209 const char *ptr; /* Temporary string pointer */
3210
3211
3212 /*
3213 * First get the current classification...
3214 */
3215
3216 if ((classification = getenv("CLASSIFICATION")) == NULL)
3217 classification = "";
3218 if (strcmp(classification, "none") == 0)
3219 classification = "";
3220
3221 /*
3222 * If there is nothing to show, bind an empty 'write labels' procedure
3223 * and return...
3224 */
3225
3226 if (!classification[0] && (label == NULL || !label[0]))
3227 {
3228 doc_puts(doc, "userdict/ESPwl{}bind put\n");
3229 return;
3230 }
3231
3232 /*
3233 * Set the classification + page label string...
3234 */
3235
3236 doc_puts(doc, "userdict");
3237 if (!strcmp(classification, "confidential"))
3238 doc_puts(doc, "/ESPpl(CONFIDENTIAL");
3239 else if (!strcmp(classification, "classified"))
3240 doc_puts(doc, "/ESPpl(CLASSIFIED");
3241 else if (!strcmp(classification, "secret"))
3242 doc_puts(doc, "/ESPpl(SECRET");
3243 else if (!strcmp(classification, "topsecret"))
3244 doc_puts(doc, "/ESPpl(TOP SECRET");
3245 else if (!strcmp(classification, "unclassified"))
3246 doc_puts(doc, "/ESPpl(UNCLASSIFIED");
3247 else
3248 {
3249 doc_puts(doc, "/ESPpl(");
3250
3251 for (ptr = classification; *ptr; ptr ++)
3252 {
3253 if (*ptr < 32 || *ptr > 126)
3254 doc_printf(doc, "\\%03o", *ptr);
3255 else if (*ptr == '_')
3256 doc_puts(doc, " ");
3257 else if (*ptr == '(' || *ptr == ')' || *ptr == '\\')
3258 doc_printf(doc, "\\%c", *ptr);
3259 else
3260 doc_printf(doc, "%c", *ptr);
3261 }
3262 }
3263
3264 if (label)
3265 {
3266 if (classification[0])
3267 doc_puts(doc, " - ");
3268
3269 /*
3270 * Quote the label string as needed...
3271 */
3272
3273 for (ptr = label; *ptr; ptr ++)
3274 {
3275 if (*ptr < 32 || *ptr > 126)
3276 doc_printf(doc, "\\%03o", *ptr);
3277 else if (*ptr == '(' || *ptr == ')' || *ptr == '\\')
3278 doc_printf(doc, "\\%c", *ptr);
3279 else
3280 doc_printf(doc, "%c", *ptr);
3281 }
3282 }
3283
3284 doc_puts(doc, ")put\n");
3285
3286 /*
3287 * Then get a 14 point Helvetica-Bold font...
3288 */
3289
3290 doc_puts(doc, "userdict/ESPpf /Helvetica-Bold findfont 14 scalefont put\n");
3291
3292 /*
3293 * Finally, the procedure to write the labels on the page...
3294 */
3295
3296 doc_puts(doc, "userdict/ESPwl{\n");
3297 doc_puts(doc, " ESPpf setfont\n");
3298 doc_printf(doc, " ESPpl stringwidth pop dup 12 add exch -0.5 mul %.0f add\n",
3299 width * 0.5f);
3300 doc_puts(doc, " 1 setgray\n");
3301 doc_printf(doc, " dup 6 sub %.0f 3 index 20 ESPrf\n", bottom - 2.0);
3302 doc_printf(doc, " dup 6 sub %.0f 3 index 20 ESPrf\n", top - 18.0);
3303 doc_puts(doc, " 0 setgray\n");
3304 doc_printf(doc, " dup 6 sub %.0f 3 index 20 ESPrs\n", bottom - 2.0);
3305 doc_printf(doc, " dup 6 sub %.0f 3 index 20 ESPrs\n", top - 18.0);
3306 doc_printf(doc, " dup %.0f moveto ESPpl show\n", bottom + 2.0);
3307 doc_printf(doc, " %.0f moveto ESPpl show\n", top - 14.0);
3308 doc_puts(doc, "pop\n");
3309 doc_puts(doc, "}bind put\n");
3310 }
3311
3312
3313 /*
3314 * 'write_labels()' - Write the actual page labels.
3315 *
3316 * This function is a copy of the one in common.c since we need to
3317 * use doc_puts/doc_printf instead of puts/printf...
3318 */
3319
3320 static void
3321 write_labels(pstops_doc_t *doc, /* I - Document information */
3322 int orient) /* I - Orientation of the page */
3323 {
3324 float width, /* Width of page */
3325 length; /* Length of page */
3326
3327
3328 doc_puts(doc, "gsave\n");
3329
3330 if ((orient ^ Orientation) & 1)
3331 {
3332 width = PageLength;
3333 length = PageWidth;
3334 }
3335 else
3336 {
3337 width = PageWidth;
3338 length = PageLength;
3339 }
3340
3341 switch (orient & 3)
3342 {
3343 case 1 : /* Landscape */
3344 doc_printf(doc, "%.1f 0.0 translate 90 rotate\n", length);
3345 break;
3346 case 2 : /* Reverse Portrait */
3347 doc_printf(doc, "%.1f %.1f translate 180 rotate\n", width, length);
3348 break;
3349 case 3 : /* Reverse Landscape */
3350 doc_printf(doc, "0.0 %.1f translate -90 rotate\n", width);
3351 break;
3352 }
3353
3354 doc_puts(doc, "ESPwl\n");
3355 doc_puts(doc, "grestore\n");
3356 }
3357
3358
3359 /*
3360 * End of "$Id: pstops.c 7006 2007-10-04 17:43:38Z mike $".
3361 */