]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/ppd-cache.c
83446d9dfde26e6f81a524a31efd18f7fd960418
[thirdparty/cups.git] / cups / ppd-cache.c
1 /*
2 * PPD cache implementation for CUPS.
3 *
4 * Copyright 2010-2016 by Apple Inc.
5 *
6 * These coded instructions, statements, and computer programs are the
7 * property of Apple Inc. and are protected by Federal copyright
8 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
9 * which should have been included with this file. If this file is
10 * file is missing or damaged, see the license at "http://www.cups.org/".
11 *
12 * This file is subject to the Apple OS-Developed Software exception.
13 */
14
15 /*
16 * Include necessary headers...
17 */
18
19 #include "cups-private.h"
20 #include "ppd-private.h"
21 #include <math.h>
22
23
24 /*
25 * Macro to test for two almost-equal PWG measurements.
26 */
27
28 #define _PWG_EQUIVALENT(x, y) (abs((x)-(y)) < 2)
29
30
31 /*
32 * Local functions...
33 */
34
35 static int pwg_compare_finishings(_pwg_finishings_t *a,
36 _pwg_finishings_t *b);
37 static void pwg_free_finishings(_pwg_finishings_t *f);
38 static void pwg_free_material(_pwg_material_t *m);
39 static void pwg_ppdize_name(const char *ipp, char *name, size_t namesize);
40 static void pwg_ppdize_resolution(ipp_attribute_t *attr, int element, int *xres, int *yres, char *name, size_t namesize);
41 static void pwg_unppdize_name(const char *ppd, char *name, size_t namesize,
42 const char *dashchars);
43
44
45 /*
46 * '_cupsConvertOptions()' - Convert printer options to standard IPP attributes.
47 *
48 * This functions converts PPD and CUPS-specific options to their standard IPP
49 * attributes and values and adds them to the specified IPP request.
50 */
51
52 int /* O - New number of copies */
53 _cupsConvertOptions(ipp_t *request, /* I - IPP request */
54 ppd_file_t *ppd, /* I - PPD file */
55 _ppd_cache_t *pc, /* I - PPD cache info */
56 ipp_attribute_t *media_col_sup,
57 /* I - media-col-supported values */
58 ipp_attribute_t *doc_handling_sup,
59 /* I - multiple-document-handling-supported values */
60 ipp_attribute_t *print_color_mode_sup,
61 /* I - Printer supports print-color-mode */
62 const char *user, /* I - User info */
63 const char *format, /* I - document-format value */
64 int copies, /* I - Number of copies */
65 int num_options, /* I - Number of options */
66 cups_option_t *options) /* I - Options */
67 {
68 int i; /* Looping var */
69 const char *keyword, /* PWG keyword */
70 *password; /* Password string */
71 pwg_size_t *size; /* PWG media size */
72 ipp_t *media_col, /* media-col value */
73 *media_size; /* media-size value */
74 const char *media_source, /* media-source value */
75 *media_type, /* media-type value */
76 *collate_str, /* multiple-document-handling value */
77 *color_attr_name, /* Supported color attribute */
78 *mandatory; /* Mandatory attributes */
79 int num_finishings = 0, /* Number of finishing values */
80 finishings[10]; /* Finishing enum values */
81 ppd_choice_t *choice; /* Marked choice */
82
83
84 /*
85 * Send standard IPP attributes...
86 */
87
88 if (pc->password && (password = cupsGetOption("job-password", num_options, options)) != NULL && ippGetOperation(request) != IPP_OP_VALIDATE_JOB)
89 {
90 ipp_attribute_t *attr = NULL; /* job-password attribute */
91
92 if ((keyword = cupsGetOption("job-password-encryption", num_options, options)) == NULL)
93 keyword = "none";
94
95 if (!strcmp(keyword, "none"))
96 {
97 /*
98 * Add plain-text job-password...
99 */
100
101 attr = ippAddOctetString(request, IPP_TAG_OPERATION, "job-password", password, (int)strlen(password));
102 }
103 else
104 {
105 /*
106 * Add hashed job-password...
107 */
108
109 unsigned char hash[64]; /* Hash of password */
110 ssize_t hashlen; /* Length of hash */
111
112 if ((hashlen = cupsHashData(keyword, password, strlen(password), hash, sizeof(hash))) > 0)
113 attr = ippAddOctetString(request, IPP_TAG_OPERATION, "job-password", hash, (int)hashlen);
114 }
115
116 if (attr)
117 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD, "job-password-encryption", NULL, keyword);
118 }
119
120 if (pc->account_id)
121 {
122 if ((keyword = cupsGetOption("job-account-id", num_options, options)) == NULL)
123 keyword = cupsGetOption("job-billing", num_options, options);
124
125 if (keyword)
126 ippAddString(request, IPP_TAG_JOB, IPP_TAG_NAME, "job-account-id", NULL, keyword);
127 }
128
129 if (pc->accounting_user_id)
130 {
131 if ((keyword = cupsGetOption("job-accounting-user-id", num_options, options)) == NULL)
132 keyword = user;
133
134 if (keyword)
135 ippAddString(request, IPP_TAG_JOB, IPP_TAG_NAME, "job-accounting-user-id", NULL, keyword);
136 }
137
138 for (mandatory = (const char *)cupsArrayFirst(pc->mandatory); mandatory; mandatory = (const char *)cupsArrayNext(pc->mandatory))
139 {
140 if (strcmp(mandatory, "copies") &&
141 strcmp(mandatory, "destination-uris") &&
142 strcmp(mandatory, "finishings") &&
143 strcmp(mandatory, "job-account-id") &&
144 strcmp(mandatory, "job-accounting-user-id") &&
145 strcmp(mandatory, "job-password") &&
146 strcmp(mandatory, "job-password-encryption") &&
147 strcmp(mandatory, "media") &&
148 strncmp(mandatory, "media-col", 9) &&
149 strcmp(mandatory, "multiple-document-handling") &&
150 strcmp(mandatory, "output-bin") &&
151 strcmp(mandatory, "print-color-mode") &&
152 strcmp(mandatory, "print-quality") &&
153 strcmp(mandatory, "sides") &&
154 (keyword = cupsGetOption(mandatory, num_options, options)) != NULL)
155 {
156 _ipp_option_t *opt = _ippFindOption(mandatory);
157 /* Option type */
158 ipp_tag_t value_tag = opt ? opt->value_tag : IPP_TAG_NAME;
159 /* Value type */
160
161 switch (value_tag)
162 {
163 case IPP_TAG_INTEGER :
164 case IPP_TAG_ENUM :
165 ippAddInteger(request, IPP_TAG_JOB, value_tag, mandatory, atoi(keyword));
166 break;
167 case IPP_TAG_BOOLEAN :
168 ippAddBoolean(request, IPP_TAG_JOB, mandatory, !_cups_strcasecmp(keyword, "true"));
169 break;
170 case IPP_TAG_RANGE :
171 {
172 int lower, upper; /* Range */
173
174 if (sscanf(keyword, "%d-%d", &lower, &upper) != 2)
175 lower = upper = atoi(keyword);
176
177 ippAddRange(request, IPP_TAG_JOB, mandatory, lower, upper);
178 }
179 break;
180 case IPP_TAG_STRING :
181 ippAddOctetString(request, IPP_TAG_JOB, mandatory, keyword, (int)strlen(keyword));
182 break;
183 default :
184 if (!strcmp(mandatory, "print-color-mode") && !strcmp(keyword, "monochrome"))
185 {
186 if (ippContainsString(print_color_mode_sup, "auto-monochrome"))
187 keyword = "auto-monochrome";
188 else if (ippContainsString(print_color_mode_sup, "process-monochrome") && !ippContainsString(print_color_mode_sup, "monochrome"))
189 keyword = "process-monochrome";
190 }
191
192 ippAddString(request, IPP_TAG_JOB, value_tag, mandatory, NULL, keyword);
193 break;
194 }
195 }
196 }
197
198 if ((keyword = cupsGetOption("PageSize", num_options, options)) == NULL)
199 keyword = cupsGetOption("media", num_options, options);
200
201 if ((size = _ppdCacheGetSize(pc, keyword)) != NULL)
202 {
203 /*
204 * Add a media-col value...
205 */
206
207 media_size = ippNew();
208 ippAddInteger(media_size, IPP_TAG_ZERO, IPP_TAG_INTEGER,
209 "x-dimension", size->width);
210 ippAddInteger(media_size, IPP_TAG_ZERO, IPP_TAG_INTEGER,
211 "y-dimension", size->length);
212
213 media_col = ippNew();
214 ippAddCollection(media_col, IPP_TAG_ZERO, "media-size", media_size);
215
216 media_source = _ppdCacheGetSource(pc, cupsGetOption("InputSlot",
217 num_options,
218 options));
219 media_type = _ppdCacheGetType(pc, cupsGetOption("MediaType",
220 num_options,
221 options));
222
223 for (i = 0; i < media_col_sup->num_values; i ++)
224 {
225 if (!strcmp(media_col_sup->values[i].string.text, "media-left-margin"))
226 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER, "media-left-margin", size->left);
227 else if (!strcmp(media_col_sup->values[i].string.text, "media-bottom-margin"))
228 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER, "media-bottom-margin", size->bottom);
229 else if (!strcmp(media_col_sup->values[i].string.text, "media-right-margin"))
230 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER, "media-right-margin", size->right);
231 else if (!strcmp(media_col_sup->values[i].string.text, "media-top-margin"))
232 ippAddInteger(media_col, IPP_TAG_ZERO, IPP_TAG_INTEGER, "media-top-margin", size->top);
233 else if (!strcmp(media_col_sup->values[i].string.text, "media-source") && media_source)
234 ippAddString(media_col, IPP_TAG_ZERO, IPP_TAG_KEYWORD, "media-source", NULL, media_source);
235 else if (!strcmp(media_col_sup->values[i].string.text, "media-type") && media_type)
236 ippAddString(media_col, IPP_TAG_ZERO, IPP_TAG_KEYWORD, "media-type", NULL, media_type);
237 }
238
239 ippAddCollection(request, IPP_TAG_JOB, "media-col", media_col);
240 }
241
242 if ((keyword = cupsGetOption("output-bin", num_options, options)) == NULL)
243 {
244 if ((choice = ppdFindMarkedChoice(ppd, "OutputBin")) != NULL)
245 keyword = _ppdCacheGetBin(pc, choice->choice);
246 }
247
248 if (keyword)
249 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "output-bin", NULL, keyword);
250
251 color_attr_name = print_color_mode_sup ? "print-color-mode" : "output-mode";
252
253 if ((keyword = cupsGetOption("print-color-mode", num_options, options)) == NULL)
254 {
255 if ((choice = ppdFindMarkedChoice(ppd, "ColorModel")) != NULL)
256 {
257 if (!_cups_strcasecmp(choice->choice, "Gray"))
258 keyword = "monochrome";
259 else
260 keyword = "color";
261 }
262 }
263
264 if (keyword && !strcmp(keyword, "monochrome"))
265 {
266 if (ippContainsString(print_color_mode_sup, "auto-monochrome"))
267 keyword = "auto-monochrome";
268 else if (ippContainsString(print_color_mode_sup, "process-monochrome") && !ippContainsString(print_color_mode_sup, "monochrome"))
269 keyword = "process-monochrome";
270 }
271
272 if (keyword)
273 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, color_attr_name, NULL, keyword);
274
275 if ((keyword = cupsGetOption("print-quality", num_options, options)) != NULL)
276 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality", atoi(keyword));
277 else if ((choice = ppdFindMarkedChoice(ppd, "cupsPrintQuality")) != NULL)
278 {
279 if (!_cups_strcasecmp(choice->choice, "draft"))
280 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality", IPP_QUALITY_DRAFT);
281 else if (!_cups_strcasecmp(choice->choice, "normal"))
282 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality", IPP_QUALITY_NORMAL);
283 else if (!_cups_strcasecmp(choice->choice, "high"))
284 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_ENUM, "print-quality", IPP_QUALITY_HIGH);
285 }
286
287 if ((keyword = cupsGetOption("sides", num_options, options)) != NULL)
288 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides", NULL, keyword);
289 else if (pc->sides_option && (choice = ppdFindMarkedChoice(ppd, pc->sides_option)) != NULL)
290 {
291 if (!_cups_strcasecmp(choice->choice, pc->sides_1sided))
292 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides", NULL, "one-sided");
293 else if (!_cups_strcasecmp(choice->choice, pc->sides_2sided_long))
294 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides", NULL, "two-sided-long-edge");
295 if (!_cups_strcasecmp(choice->choice, pc->sides_2sided_short))
296 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "sides", NULL, "two-sided-short-edge");
297 }
298
299 /*
300 * Copies...
301 */
302
303 if ((keyword = cupsGetOption("multiple-document-handling", num_options, options)) != NULL)
304 {
305 if (strstr(keyword, "uncollated"))
306 keyword = "false";
307 else
308 keyword = "true";
309 }
310 else if ((keyword = cupsGetOption("collate", num_options, options)) == NULL)
311 keyword = "true";
312
313 if (format)
314 {
315 if (!_cups_strcasecmp(format, "image/gif") ||
316 !_cups_strcasecmp(format, "image/jp2") ||
317 !_cups_strcasecmp(format, "image/jpeg") ||
318 !_cups_strcasecmp(format, "image/png") ||
319 !_cups_strcasecmp(format, "image/tiff") ||
320 !_cups_strncasecmp(format, "image/x-", 8))
321 {
322 /*
323 * Collation makes no sense for single page image formats...
324 */
325
326 keyword = "false";
327 }
328 else if (!_cups_strncasecmp(format, "image/", 6) ||
329 !_cups_strcasecmp(format, "application/vnd.cups-raster"))
330 {
331 /*
332 * Multi-page image formats will have copies applied by the upstream
333 * filters...
334 */
335
336 copies = 1;
337 }
338 }
339
340 if (doc_handling_sup)
341 {
342 if (!_cups_strcasecmp(keyword, "true"))
343 collate_str = "separate-documents-collated-copies";
344 else
345 collate_str = "separate-documents-uncollated-copies";
346
347 for (i = 0; i < doc_handling_sup->num_values; i ++)
348 {
349 if (!strcmp(doc_handling_sup->values[i].string.text, collate_str))
350 {
351 ippAddString(request, IPP_TAG_JOB, IPP_TAG_KEYWORD, "multiple-document-handling", NULL, collate_str);
352 break;
353 }
354 }
355
356 if (i >= doc_handling_sup->num_values)
357 copies = 1;
358 }
359
360 /*
361 * Map finishing options...
362 */
363
364 num_finishings = _ppdCacheGetFinishingValues(pc, num_options, options, (int)(sizeof(finishings) / sizeof(finishings[0])), finishings);
365 if (num_finishings > 0)
366 {
367 ippAddIntegers(request, IPP_TAG_JOB, IPP_TAG_ENUM, "finishings", num_finishings, finishings);
368
369 if (copies > 1 && (keyword = cupsGetOption("job-impressions", num_options, options)) != NULL)
370 {
371 /*
372 * Send job-pages-per-set attribute to apply finishings correctly...
373 */
374
375 ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_INTEGER, "job-pages-per-set", atoi(keyword) / copies);
376 }
377 }
378
379 return (copies);
380 }
381
382
383 /*
384 * '_ppdCacheCreateWithFile()' - Create PPD cache and mapping data from a
385 * written file.
386 *
387 * Use the @link _ppdCacheWriteFile@ function to write PWG mapping data to a
388 * file.
389 */
390
391 _ppd_cache_t * /* O - PPD cache and mapping data */
392 _ppdCacheCreateWithFile(
393 const char *filename, /* I - File to read */
394 ipp_t **attrs) /* IO - IPP attributes, if any */
395 {
396 cups_file_t *fp; /* File */
397 _ppd_cache_t *pc; /* PWG mapping data */
398 pwg_size_t *size; /* Current size */
399 pwg_map_t *map; /* Current map */
400 _pwg_finishings_t *finishings; /* Current finishings option */
401 int linenum, /* Current line number */
402 num_bins, /* Number of bins in file */
403 num_sizes, /* Number of sizes in file */
404 num_sources, /* Number of sources in file */
405 num_types; /* Number of types in file */
406 char line[2048], /* Current line */
407 *value, /* Pointer to value in line */
408 *valueptr, /* Pointer into value */
409 pwg_keyword[128], /* PWG keyword */
410 ppd_keyword[PPD_MAX_NAME];
411 /* PPD keyword */
412 _pwg_print_color_mode_t print_color_mode;
413 /* Print color mode for preset */
414 _pwg_print_quality_t print_quality; /* Print quality for preset */
415
416
417 DEBUG_printf(("_ppdCacheCreateWithFile(filename=\"%s\")", filename));
418
419 /*
420 * Range check input...
421 */
422
423 if (attrs)
424 *attrs = NULL;
425
426 if (!filename)
427 {
428 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
429 return (NULL);
430 }
431
432 /*
433 * Open the file...
434 */
435
436 if ((fp = cupsFileOpen(filename, "r")) == NULL)
437 {
438 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
439 return (NULL);
440 }
441
442 /*
443 * Read the first line and make sure it has "#CUPS-PPD-CACHE-version" in it...
444 */
445
446 if (!cupsFileGets(fp, line, sizeof(line)))
447 {
448 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
449 DEBUG_puts("_ppdCacheCreateWithFile: Unable to read first line.");
450 cupsFileClose(fp);
451 return (NULL);
452 }
453
454 if (strncmp(line, "#CUPS-PPD-CACHE-", 16))
455 {
456 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
457 DEBUG_printf(("_ppdCacheCreateWithFile: Wrong first line \"%s\".", line));
458 cupsFileClose(fp);
459 return (NULL);
460 }
461
462 if (atoi(line + 16) != _PPD_CACHE_VERSION)
463 {
464 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Out of date PPD cache file."), 1);
465 DEBUG_printf(("_ppdCacheCreateWithFile: Cache file has version %s, "
466 "expected %d.", line + 16, _PPD_CACHE_VERSION));
467 cupsFileClose(fp);
468 return (NULL);
469 }
470
471 /*
472 * Allocate the mapping data structure...
473 */
474
475 if ((pc = calloc(1, sizeof(_ppd_cache_t))) == NULL)
476 {
477 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
478 DEBUG_puts("_ppdCacheCreateWithFile: Unable to allocate _ppd_cache_t.");
479 goto create_error;
480 }
481
482 pc->max_copies = 9999;
483
484 /*
485 * Read the file...
486 */
487
488 linenum = 0;
489 num_bins = 0;
490 num_sizes = 0;
491 num_sources = 0;
492 num_types = 0;
493
494 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
495 {
496 DEBUG_printf(("_ppdCacheCreateWithFile: line=\"%s\", value=\"%s\", "
497 "linenum=%d", line, value, linenum));
498
499 if (!value)
500 {
501 DEBUG_printf(("_ppdCacheCreateWithFile: Missing value on line %d.",
502 linenum));
503 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
504 goto create_error;
505 }
506 else if (!_cups_strcasecmp(line, "3D"))
507 {
508 pc->cups_3d = _cupsStrAlloc(value);
509 }
510 else if (!_cups_strcasecmp(line, "LayerOrder"))
511 {
512 pc->cups_layer_order = _cupsStrAlloc(value);
513 }
514 else if (!_cups_strcasecmp(line, "Accuracy"))
515 {
516 sscanf(value, "%d%d%d", pc->cups_accuracy + 0, pc->cups_accuracy + 1, pc->cups_accuracy + 2);
517 }
518 else if (!_cups_strcasecmp(line, "Volume"))
519 {
520 sscanf(value, "%d%d%d", pc->cups_volume + 0, pc->cups_volume + 1, pc->cups_volume + 2);
521 }
522 else if (!_cups_strcasecmp(line, "Material"))
523 {
524 /*
525 * Material key "name" name=value ... name=value
526 */
527
528 if ((valueptr = strchr(value, ' ')) != NULL)
529 {
530 _pwg_material_t *material = (_pwg_material_t *)calloc(1, sizeof(_pwg_material_t));
531
532 *valueptr++ = '\0';
533
534 material->key = _cupsStrAlloc(value);
535
536 if (*valueptr == '\"')
537 {
538 value = valueptr + 1;
539 if ((valueptr = strchr(value, '\"')) != NULL)
540 {
541 *valueptr++ = '\0';
542 material->name = _cupsStrAlloc(value);
543 material->num_props = cupsParseOptions(valueptr, 0, &material->props);
544 }
545 }
546
547 if (!pc->materials)
548 pc->materials = cupsArrayNew3(NULL, NULL, NULL, 0, NULL, (cups_afree_func_t)pwg_free_material);
549
550 cupsArrayAdd(pc->materials, material);
551 }
552 }
553 else if (!_cups_strcasecmp(line, "Filter"))
554 {
555 if (!pc->filters)
556 pc->filters = cupsArrayNew3(NULL, NULL, NULL, 0,
557 (cups_acopy_func_t)_cupsStrAlloc,
558 (cups_afree_func_t)_cupsStrFree);
559
560 cupsArrayAdd(pc->filters, value);
561 }
562 else if (!_cups_strcasecmp(line, "PreFilter"))
563 {
564 if (!pc->prefilters)
565 pc->prefilters = cupsArrayNew3(NULL, NULL, NULL, 0,
566 (cups_acopy_func_t)_cupsStrAlloc,
567 (cups_afree_func_t)_cupsStrFree);
568
569 cupsArrayAdd(pc->prefilters, value);
570 }
571 else if (!_cups_strcasecmp(line, "Product"))
572 {
573 pc->product = _cupsStrAlloc(value);
574 }
575 else if (!_cups_strcasecmp(line, "SingleFile"))
576 {
577 pc->single_file = !_cups_strcasecmp(value, "true");
578 }
579 else if (!_cups_strcasecmp(line, "IPP"))
580 {
581 off_t pos = cupsFileTell(fp), /* Position in file */
582 length = strtol(value, NULL, 10);
583 /* Length of IPP attributes */
584
585 if (attrs && *attrs)
586 {
587 DEBUG_puts("_ppdCacheCreateWithFile: IPP listed multiple times.");
588 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
589 goto create_error;
590 }
591 else if (length <= 0)
592 {
593 DEBUG_puts("_ppdCacheCreateWithFile: Bad IPP length.");
594 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
595 goto create_error;
596 }
597
598 if (attrs)
599 {
600 /*
601 * Read IPP attributes into the provided variable...
602 */
603
604 *attrs = ippNew();
605
606 if (ippReadIO(fp, (ipp_iocb_t)cupsFileRead, 1, NULL,
607 *attrs) != IPP_STATE_DATA)
608 {
609 DEBUG_puts("_ppdCacheCreateWithFile: Bad IPP data.");
610 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
611 goto create_error;
612 }
613 }
614 else
615 {
616 /*
617 * Skip the IPP data entirely...
618 */
619
620 cupsFileSeek(fp, pos + length);
621 }
622
623 if (cupsFileTell(fp) != (pos + length))
624 {
625 DEBUG_puts("_ppdCacheCreateWithFile: Bad IPP data.");
626 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
627 goto create_error;
628 }
629 }
630 else if (!_cups_strcasecmp(line, "NumBins"))
631 {
632 if (num_bins > 0)
633 {
634 DEBUG_puts("_ppdCacheCreateWithFile: NumBins listed multiple times.");
635 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
636 goto create_error;
637 }
638
639 if ((num_bins = atoi(value)) <= 0 || num_bins > 65536)
640 {
641 DEBUG_printf(("_ppdCacheCreateWithFile: Bad NumBins value %d on line "
642 "%d.", num_sizes, linenum));
643 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
644 goto create_error;
645 }
646
647 if ((pc->bins = calloc((size_t)num_bins, sizeof(pwg_map_t))) == NULL)
648 {
649 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d bins.",
650 num_sizes));
651 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
652 goto create_error;
653 }
654 }
655 else if (!_cups_strcasecmp(line, "Bin"))
656 {
657 if (sscanf(value, "%127s%40s", pwg_keyword, ppd_keyword) != 2)
658 {
659 DEBUG_printf(("_ppdCacheCreateWithFile: Bad Bin on line %d.", linenum));
660 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
661 goto create_error;
662 }
663
664 if (pc->num_bins >= num_bins)
665 {
666 DEBUG_printf(("_ppdCacheCreateWithFile: Too many Bin's on line %d.",
667 linenum));
668 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
669 goto create_error;
670 }
671
672 map = pc->bins + pc->num_bins;
673 map->pwg = _cupsStrAlloc(pwg_keyword);
674 map->ppd = _cupsStrAlloc(ppd_keyword);
675
676 pc->num_bins ++;
677 }
678 else if (!_cups_strcasecmp(line, "NumSizes"))
679 {
680 if (num_sizes > 0)
681 {
682 DEBUG_puts("_ppdCacheCreateWithFile: NumSizes listed multiple times.");
683 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
684 goto create_error;
685 }
686
687 if ((num_sizes = atoi(value)) < 0 || num_sizes > 65536)
688 {
689 DEBUG_printf(("_ppdCacheCreateWithFile: Bad NumSizes value %d on line "
690 "%d.", num_sizes, linenum));
691 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
692 goto create_error;
693 }
694
695 if (num_sizes > 0)
696 {
697 if ((pc->sizes = calloc((size_t)num_sizes, sizeof(pwg_size_t))) == NULL)
698 {
699 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d sizes.",
700 num_sizes));
701 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
702 goto create_error;
703 }
704 }
705 }
706 else if (!_cups_strcasecmp(line, "Size"))
707 {
708 if (pc->num_sizes >= num_sizes)
709 {
710 DEBUG_printf(("_ppdCacheCreateWithFile: Too many Size's on line %d.",
711 linenum));
712 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
713 goto create_error;
714 }
715
716 size = pc->sizes + pc->num_sizes;
717
718 if (sscanf(value, "%127s%40s%d%d%d%d%d%d", pwg_keyword, ppd_keyword,
719 &(size->width), &(size->length), &(size->left),
720 &(size->bottom), &(size->right), &(size->top)) != 8)
721 {
722 DEBUG_printf(("_ppdCacheCreateWithFile: Bad Size on line %d.",
723 linenum));
724 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
725 goto create_error;
726 }
727
728 size->map.pwg = _cupsStrAlloc(pwg_keyword);
729 size->map.ppd = _cupsStrAlloc(ppd_keyword);
730
731 pc->num_sizes ++;
732 }
733 else if (!_cups_strcasecmp(line, "CustomSize"))
734 {
735 if (pc->custom_max_width > 0)
736 {
737 DEBUG_printf(("_ppdCacheCreateWithFile: Too many CustomSize's on line "
738 "%d.", linenum));
739 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
740 goto create_error;
741 }
742
743 if (sscanf(value, "%d%d%d%d%d%d%d%d", &(pc->custom_max_width),
744 &(pc->custom_max_length), &(pc->custom_min_width),
745 &(pc->custom_min_length), &(pc->custom_size.left),
746 &(pc->custom_size.bottom), &(pc->custom_size.right),
747 &(pc->custom_size.top)) != 8)
748 {
749 DEBUG_printf(("_ppdCacheCreateWithFile: Bad CustomSize on line %d.",
750 linenum));
751 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
752 goto create_error;
753 }
754
755 pwgFormatSizeName(pwg_keyword, sizeof(pwg_keyword), "custom", "max",
756 pc->custom_max_width, pc->custom_max_length, NULL);
757 pc->custom_max_keyword = _cupsStrAlloc(pwg_keyword);
758
759 pwgFormatSizeName(pwg_keyword, sizeof(pwg_keyword), "custom", "min",
760 pc->custom_min_width, pc->custom_min_length, NULL);
761 pc->custom_min_keyword = _cupsStrAlloc(pwg_keyword);
762 }
763 else if (!_cups_strcasecmp(line, "SourceOption"))
764 {
765 pc->source_option = _cupsStrAlloc(value);
766 }
767 else if (!_cups_strcasecmp(line, "NumSources"))
768 {
769 if (num_sources > 0)
770 {
771 DEBUG_puts("_ppdCacheCreateWithFile: NumSources listed multiple "
772 "times.");
773 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
774 goto create_error;
775 }
776
777 if ((num_sources = atoi(value)) <= 0 || num_sources > 65536)
778 {
779 DEBUG_printf(("_ppdCacheCreateWithFile: Bad NumSources value %d on "
780 "line %d.", num_sources, linenum));
781 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
782 goto create_error;
783 }
784
785 if ((pc->sources = calloc((size_t)num_sources, sizeof(pwg_map_t))) == NULL)
786 {
787 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d sources.",
788 num_sources));
789 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
790 goto create_error;
791 }
792 }
793 else if (!_cups_strcasecmp(line, "Source"))
794 {
795 if (sscanf(value, "%127s%40s", pwg_keyword, ppd_keyword) != 2)
796 {
797 DEBUG_printf(("_ppdCacheCreateWithFile: Bad Source on line %d.",
798 linenum));
799 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
800 goto create_error;
801 }
802
803 if (pc->num_sources >= num_sources)
804 {
805 DEBUG_printf(("_ppdCacheCreateWithFile: Too many Source's on line %d.",
806 linenum));
807 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
808 goto create_error;
809 }
810
811 map = pc->sources + pc->num_sources;
812 map->pwg = _cupsStrAlloc(pwg_keyword);
813 map->ppd = _cupsStrAlloc(ppd_keyword);
814
815 pc->num_sources ++;
816 }
817 else if (!_cups_strcasecmp(line, "NumTypes"))
818 {
819 if (num_types > 0)
820 {
821 DEBUG_puts("_ppdCacheCreateWithFile: NumTypes listed multiple times.");
822 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
823 goto create_error;
824 }
825
826 if ((num_types = atoi(value)) <= 0 || num_types > 65536)
827 {
828 DEBUG_printf(("_ppdCacheCreateWithFile: Bad NumTypes value %d on "
829 "line %d.", num_types, linenum));
830 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
831 goto create_error;
832 }
833
834 if ((pc->types = calloc((size_t)num_types, sizeof(pwg_map_t))) == NULL)
835 {
836 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d types.",
837 num_types));
838 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
839 goto create_error;
840 }
841 }
842 else if (!_cups_strcasecmp(line, "Type"))
843 {
844 if (sscanf(value, "%127s%40s", pwg_keyword, ppd_keyword) != 2)
845 {
846 DEBUG_printf(("_ppdCacheCreateWithFile: Bad Type on line %d.",
847 linenum));
848 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
849 goto create_error;
850 }
851
852 if (pc->num_types >= num_types)
853 {
854 DEBUG_printf(("_ppdCacheCreateWithFile: Too many Type's on line %d.",
855 linenum));
856 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
857 goto create_error;
858 }
859
860 map = pc->types + pc->num_types;
861 map->pwg = _cupsStrAlloc(pwg_keyword);
862 map->ppd = _cupsStrAlloc(ppd_keyword);
863
864 pc->num_types ++;
865 }
866 else if (!_cups_strcasecmp(line, "Preset"))
867 {
868 /*
869 * Preset output-mode print-quality name=value ...
870 */
871
872 print_color_mode = (_pwg_print_color_mode_t)strtol(value, &valueptr, 10);
873 print_quality = (_pwg_print_quality_t)strtol(valueptr, &valueptr, 10);
874
875 if (print_color_mode < _PWG_PRINT_COLOR_MODE_MONOCHROME ||
876 print_color_mode >= _PWG_PRINT_COLOR_MODE_MAX ||
877 print_quality < _PWG_PRINT_QUALITY_DRAFT ||
878 print_quality >= _PWG_PRINT_QUALITY_MAX ||
879 valueptr == value || !*valueptr)
880 {
881 DEBUG_printf(("_ppdCacheCreateWithFile: Bad Preset on line %d.",
882 linenum));
883 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
884 goto create_error;
885 }
886
887 pc->num_presets[print_color_mode][print_quality] =
888 cupsParseOptions(valueptr, 0,
889 pc->presets[print_color_mode] + print_quality);
890 }
891 else if (!_cups_strcasecmp(line, "SidesOption"))
892 pc->sides_option = _cupsStrAlloc(value);
893 else if (!_cups_strcasecmp(line, "Sides1Sided"))
894 pc->sides_1sided = _cupsStrAlloc(value);
895 else if (!_cups_strcasecmp(line, "Sides2SidedLong"))
896 pc->sides_2sided_long = _cupsStrAlloc(value);
897 else if (!_cups_strcasecmp(line, "Sides2SidedShort"))
898 pc->sides_2sided_short = _cupsStrAlloc(value);
899 else if (!_cups_strcasecmp(line, "Finishings"))
900 {
901 if (!pc->finishings)
902 pc->finishings =
903 cupsArrayNew3((cups_array_func_t)pwg_compare_finishings,
904 NULL, NULL, 0, NULL,
905 (cups_afree_func_t)pwg_free_finishings);
906
907 if ((finishings = calloc(1, sizeof(_pwg_finishings_t))) == NULL)
908 goto create_error;
909
910 finishings->value = (ipp_finishings_t)strtol(value, &valueptr, 10);
911 finishings->num_options = cupsParseOptions(valueptr, 0,
912 &(finishings->options));
913
914 cupsArrayAdd(pc->finishings, finishings);
915 }
916 else if (!_cups_strcasecmp(line, "MaxCopies"))
917 pc->max_copies = atoi(value);
918 else if (!_cups_strcasecmp(line, "ChargeInfoURI"))
919 pc->charge_info_uri = _cupsStrAlloc(value);
920 else if (!_cups_strcasecmp(line, "JobAccountId"))
921 pc->account_id = !_cups_strcasecmp(value, "true");
922 else if (!_cups_strcasecmp(line, "JobAccountingUserId"))
923 pc->accounting_user_id = !_cups_strcasecmp(value, "true");
924 else if (!_cups_strcasecmp(line, "JobPassword"))
925 pc->password = _cupsStrAlloc(value);
926 else if (!_cups_strcasecmp(line, "Mandatory"))
927 {
928 if (pc->mandatory)
929 _cupsArrayAddStrings(pc->mandatory, value, ' ');
930 else
931 pc->mandatory = _cupsArrayNewStrings(value, ' ');
932 }
933 else if (!_cups_strcasecmp(line, "SupportFile"))
934 {
935 if (!pc->support_files)
936 pc->support_files = cupsArrayNew3(NULL, NULL, NULL, 0,
937 (cups_acopy_func_t)_cupsStrAlloc,
938 (cups_afree_func_t)_cupsStrFree);
939
940 cupsArrayAdd(pc->support_files, value);
941 }
942 else
943 {
944 DEBUG_printf(("_ppdCacheCreateWithFile: Unknown %s on line %d.", line,
945 linenum));
946 }
947 }
948
949 if (pc->num_sizes < num_sizes)
950 {
951 DEBUG_printf(("_ppdCacheCreateWithFile: Not enough sizes (%d < %d).",
952 pc->num_sizes, num_sizes));
953 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
954 goto create_error;
955 }
956
957 if (pc->num_sources < num_sources)
958 {
959 DEBUG_printf(("_ppdCacheCreateWithFile: Not enough sources (%d < %d).",
960 pc->num_sources, num_sources));
961 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
962 goto create_error;
963 }
964
965 if (pc->num_types < num_types)
966 {
967 DEBUG_printf(("_ppdCacheCreateWithFile: Not enough types (%d < %d).",
968 pc->num_types, num_types));
969 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Bad PPD cache file."), 1);
970 goto create_error;
971 }
972
973 cupsFileClose(fp);
974
975 return (pc);
976
977 /*
978 * If we get here the file was bad - free any data and return...
979 */
980
981 create_error:
982
983 cupsFileClose(fp);
984 _ppdCacheDestroy(pc);
985
986 if (attrs)
987 {
988 ippDelete(*attrs);
989 *attrs = NULL;
990 }
991
992 return (NULL);
993 }
994
995
996 /*
997 * '_ppdCacheCreateWithPPD()' - Create PWG mapping data from a PPD file.
998 */
999
1000 _ppd_cache_t * /* O - PPD cache and mapping data */
1001 _ppdCacheCreateWithPPD(ppd_file_t *ppd) /* I - PPD file */
1002 {
1003 int i, j, k; /* Looping vars */
1004 _ppd_cache_t *pc; /* PWG mapping data */
1005 ppd_option_t *input_slot, /* InputSlot option */
1006 *media_type, /* MediaType option */
1007 *output_bin, /* OutputBin option */
1008 *color_model, /* ColorModel option */
1009 *duplex; /* Duplex option */
1010 ppd_choice_t *choice; /* Current InputSlot/MediaType */
1011 pwg_map_t *map; /* Current source/type map */
1012 ppd_attr_t *ppd_attr; /* Current PPD preset attribute */
1013 int num_options; /* Number of preset options and props */
1014 cups_option_t *options; /* Preset options and properties */
1015 ppd_size_t *ppd_size; /* Current PPD size */
1016 pwg_size_t *pwg_size; /* Current PWG size */
1017 char pwg_keyword[3 + PPD_MAX_NAME + 1 + 12 + 1 + 12 + 3],
1018 /* PWG keyword string */
1019 ppd_name[PPD_MAX_NAME];
1020 /* Normalized PPD name */
1021 const char *pwg_name; /* Standard PWG media name */
1022 pwg_media_t *pwg_media; /* PWG media data */
1023 _pwg_print_color_mode_t pwg_print_color_mode;
1024 /* print-color-mode index */
1025 _pwg_print_quality_t pwg_print_quality;
1026 /* print-quality index */
1027 int similar; /* Are the old and new size similar? */
1028 pwg_size_t *old_size; /* Current old size */
1029 int old_imageable, /* Old imageable length in 2540ths */
1030 old_borderless, /* Old borderless state */
1031 old_known_pwg; /* Old PWG name is well-known */
1032 int new_width, /* New width in 2540ths */
1033 new_length, /* New length in 2540ths */
1034 new_left, /* New left margin in 2540ths */
1035 new_bottom, /* New bottom margin in 2540ths */
1036 new_right, /* New right margin in 2540ths */
1037 new_top, /* New top margin in 2540ths */
1038 new_imageable, /* New imageable length in 2540ths */
1039 new_borderless, /* New borderless state */
1040 new_known_pwg; /* New PWG name is well-known */
1041 pwg_size_t *new_size; /* New size to add, if any */
1042 const char *filter; /* Current filter */
1043 _pwg_finishings_t *finishings; /* Current finishings value */
1044
1045
1046 DEBUG_printf(("_ppdCacheCreateWithPPD(ppd=%p)", ppd));
1047
1048 /*
1049 * Range check input...
1050 */
1051
1052 if (!ppd)
1053 return (NULL);
1054
1055 /*
1056 * Allocate memory...
1057 */
1058
1059 if ((pc = calloc(1, sizeof(_ppd_cache_t))) == NULL)
1060 {
1061 DEBUG_puts("_ppdCacheCreateWithPPD: Unable to allocate _ppd_cache_t.");
1062 goto create_error;
1063 }
1064
1065 /*
1066 * Copy and convert size data...
1067 */
1068
1069 if (ppd->num_sizes > 0)
1070 {
1071 if ((pc->sizes = calloc((size_t)ppd->num_sizes, sizeof(pwg_size_t))) == NULL)
1072 {
1073 DEBUG_printf(("_ppdCacheCreateWithPPD: Unable to allocate %d "
1074 "pwg_size_t's.", ppd->num_sizes));
1075 goto create_error;
1076 }
1077
1078 for (i = ppd->num_sizes, pwg_size = pc->sizes, ppd_size = ppd->sizes;
1079 i > 0;
1080 i --, ppd_size ++)
1081 {
1082 /*
1083 * Don't copy over custom size...
1084 */
1085
1086 if (!_cups_strcasecmp(ppd_size->name, "Custom"))
1087 continue;
1088
1089 /*
1090 * Convert the PPD size name to the corresponding PWG keyword name.
1091 */
1092
1093 if ((pwg_media = pwgMediaForPPD(ppd_size->name)) != NULL)
1094 {
1095 /*
1096 * Standard name, do we have conflicts?
1097 */
1098
1099 for (j = 0; j < pc->num_sizes; j ++)
1100 if (!strcmp(pc->sizes[j].map.pwg, pwg_media->pwg))
1101 {
1102 pwg_media = NULL;
1103 break;
1104 }
1105 }
1106
1107 if (pwg_media)
1108 {
1109 /*
1110 * Standard name and no conflicts, use it!
1111 */
1112
1113 pwg_name = pwg_media->pwg;
1114 new_known_pwg = 1;
1115 }
1116 else
1117 {
1118 /*
1119 * Not a standard name; convert it to a PWG vendor name of the form:
1120 *
1121 * pp_lowerppd_WIDTHxHEIGHTuu
1122 */
1123
1124 pwg_name = pwg_keyword;
1125 new_known_pwg = 0;
1126
1127 pwg_unppdize_name(ppd_size->name, ppd_name, sizeof(ppd_name), "_.");
1128 pwgFormatSizeName(pwg_keyword, sizeof(pwg_keyword), NULL, ppd_name,
1129 PWG_FROM_POINTS(ppd_size->width),
1130 PWG_FROM_POINTS(ppd_size->length), NULL);
1131 }
1132
1133 /*
1134 * If we have a similar paper with non-zero margins then we only want to
1135 * keep it if it has a larger imageable area length. The NULL check is for
1136 * dimensions that are <= 0...
1137 */
1138
1139 if ((pwg_media = _pwgMediaNearSize(PWG_FROM_POINTS(ppd_size->width),
1140 PWG_FROM_POINTS(ppd_size->length),
1141 0)) == NULL)
1142 continue;
1143
1144 new_width = pwg_media->width;
1145 new_length = pwg_media->length;
1146 new_left = PWG_FROM_POINTS(ppd_size->left);
1147 new_bottom = PWG_FROM_POINTS(ppd_size->bottom);
1148 new_right = PWG_FROM_POINTS(ppd_size->width - ppd_size->right);
1149 new_top = PWG_FROM_POINTS(ppd_size->length - ppd_size->top);
1150 new_imageable = new_length - new_top - new_bottom;
1151 new_borderless = new_bottom == 0 && new_top == 0 &&
1152 new_left == 0 && new_right == 0;
1153
1154 for (k = pc->num_sizes, similar = 0, old_size = pc->sizes, new_size = NULL;
1155 k > 0 && !similar;
1156 k --, old_size ++)
1157 {
1158 old_imageable = old_size->length - old_size->top - old_size->bottom;
1159 old_borderless = old_size->left == 0 && old_size->bottom == 0 &&
1160 old_size->right == 0 && old_size->top == 0;
1161 old_known_pwg = strncmp(old_size->map.pwg, "oe_", 3) &&
1162 strncmp(old_size->map.pwg, "om_", 3);
1163
1164 similar = old_borderless == new_borderless &&
1165 _PWG_EQUIVALENT(old_size->width, new_width) &&
1166 _PWG_EQUIVALENT(old_size->length, new_length);
1167
1168 if (similar &&
1169 (new_known_pwg || (!old_known_pwg && new_imageable > old_imageable)))
1170 {
1171 /*
1172 * The new paper has a larger imageable area so it could replace
1173 * the older paper. Regardless of the imageable area, we always
1174 * prefer the size with a well-known PWG name.
1175 */
1176
1177 new_size = old_size;
1178 _cupsStrFree(old_size->map.ppd);
1179 _cupsStrFree(old_size->map.pwg);
1180 }
1181 }
1182
1183 if (!similar)
1184 {
1185 /*
1186 * The paper was unique enough to deserve its own entry so add it to the
1187 * end.
1188 */
1189
1190 new_size = pwg_size ++;
1191 pc->num_sizes ++;
1192 }
1193
1194 if (new_size)
1195 {
1196 /*
1197 * Save this size...
1198 */
1199
1200 new_size->map.ppd = _cupsStrAlloc(ppd_size->name);
1201 new_size->map.pwg = _cupsStrAlloc(pwg_name);
1202 new_size->width = new_width;
1203 new_size->length = new_length;
1204 new_size->left = new_left;
1205 new_size->bottom = new_bottom;
1206 new_size->right = new_right;
1207 new_size->top = new_top;
1208 }
1209 }
1210 }
1211
1212 if (ppd->variable_sizes)
1213 {
1214 /*
1215 * Generate custom size data...
1216 */
1217
1218 pwgFormatSizeName(pwg_keyword, sizeof(pwg_keyword), "custom", "max",
1219 PWG_FROM_POINTS(ppd->custom_max[0]),
1220 PWG_FROM_POINTS(ppd->custom_max[1]), NULL);
1221 pc->custom_max_keyword = _cupsStrAlloc(pwg_keyword);
1222 pc->custom_max_width = PWG_FROM_POINTS(ppd->custom_max[0]);
1223 pc->custom_max_length = PWG_FROM_POINTS(ppd->custom_max[1]);
1224
1225 pwgFormatSizeName(pwg_keyword, sizeof(pwg_keyword), "custom", "min",
1226 PWG_FROM_POINTS(ppd->custom_min[0]),
1227 PWG_FROM_POINTS(ppd->custom_min[1]), NULL);
1228 pc->custom_min_keyword = _cupsStrAlloc(pwg_keyword);
1229 pc->custom_min_width = PWG_FROM_POINTS(ppd->custom_min[0]);
1230 pc->custom_min_length = PWG_FROM_POINTS(ppd->custom_min[1]);
1231
1232 pc->custom_size.left = PWG_FROM_POINTS(ppd->custom_margins[0]);
1233 pc->custom_size.bottom = PWG_FROM_POINTS(ppd->custom_margins[1]);
1234 pc->custom_size.right = PWG_FROM_POINTS(ppd->custom_margins[2]);
1235 pc->custom_size.top = PWG_FROM_POINTS(ppd->custom_margins[3]);
1236 }
1237
1238 /*
1239 * Copy and convert InputSlot data...
1240 */
1241
1242 if ((input_slot = ppdFindOption(ppd, "InputSlot")) == NULL)
1243 input_slot = ppdFindOption(ppd, "HPPaperSource");
1244
1245 if (input_slot)
1246 {
1247 pc->source_option = _cupsStrAlloc(input_slot->keyword);
1248
1249 if ((pc->sources = calloc((size_t)input_slot->num_choices, sizeof(pwg_map_t))) == NULL)
1250 {
1251 DEBUG_printf(("_ppdCacheCreateWithPPD: Unable to allocate %d "
1252 "pwg_map_t's for InputSlot.", input_slot->num_choices));
1253 goto create_error;
1254 }
1255
1256 pc->num_sources = input_slot->num_choices;
1257
1258 for (i = input_slot->num_choices, choice = input_slot->choices,
1259 map = pc->sources;
1260 i > 0;
1261 i --, choice ++, map ++)
1262 {
1263 if (!_cups_strncasecmp(choice->choice, "Auto", 4) ||
1264 !_cups_strcasecmp(choice->choice, "Default"))
1265 pwg_name = "auto";
1266 else if (!_cups_strcasecmp(choice->choice, "Cassette"))
1267 pwg_name = "main";
1268 else if (!_cups_strcasecmp(choice->choice, "PhotoTray"))
1269 pwg_name = "photo";
1270 else if (!_cups_strcasecmp(choice->choice, "CDTray"))
1271 pwg_name = "disc";
1272 else if (!_cups_strncasecmp(choice->choice, "Multipurpose", 12) ||
1273 !_cups_strcasecmp(choice->choice, "MP") ||
1274 !_cups_strcasecmp(choice->choice, "MPTray"))
1275 pwg_name = "by-pass-tray";
1276 else if (!_cups_strcasecmp(choice->choice, "LargeCapacity"))
1277 pwg_name = "large-capacity";
1278 else if (!_cups_strncasecmp(choice->choice, "Lower", 5))
1279 pwg_name = "bottom";
1280 else if (!_cups_strncasecmp(choice->choice, "Middle", 6))
1281 pwg_name = "middle";
1282 else if (!_cups_strncasecmp(choice->choice, "Upper", 5))
1283 pwg_name = "top";
1284 else if (!_cups_strncasecmp(choice->choice, "Side", 4))
1285 pwg_name = "side";
1286 else if (!_cups_strcasecmp(choice->choice, "Roll"))
1287 pwg_name = "main-roll";
1288 else
1289 {
1290 /*
1291 * Convert PPD name to lowercase...
1292 */
1293
1294 pwg_name = pwg_keyword;
1295 pwg_unppdize_name(choice->choice, pwg_keyword, sizeof(pwg_keyword),
1296 "_");
1297 }
1298
1299 map->pwg = _cupsStrAlloc(pwg_name);
1300 map->ppd = _cupsStrAlloc(choice->choice);
1301 }
1302 }
1303
1304 /*
1305 * Copy and convert MediaType data...
1306 */
1307
1308 if ((media_type = ppdFindOption(ppd, "MediaType")) != NULL)
1309 {
1310 if ((pc->types = calloc((size_t)media_type->num_choices, sizeof(pwg_map_t))) == NULL)
1311 {
1312 DEBUG_printf(("_ppdCacheCreateWithPPD: Unable to allocate %d "
1313 "pwg_map_t's for MediaType.", media_type->num_choices));
1314 goto create_error;
1315 }
1316
1317 pc->num_types = media_type->num_choices;
1318
1319 for (i = media_type->num_choices, choice = media_type->choices,
1320 map = pc->types;
1321 i > 0;
1322 i --, choice ++, map ++)
1323 {
1324 if (!_cups_strncasecmp(choice->choice, "Auto", 4) ||
1325 !_cups_strcasecmp(choice->choice, "Any") ||
1326 !_cups_strcasecmp(choice->choice, "Default"))
1327 pwg_name = "auto";
1328 else if (!_cups_strncasecmp(choice->choice, "Card", 4))
1329 pwg_name = "cardstock";
1330 else if (!_cups_strncasecmp(choice->choice, "Env", 3))
1331 pwg_name = "envelope";
1332 else if (!_cups_strncasecmp(choice->choice, "Gloss", 5))
1333 pwg_name = "photographic-glossy";
1334 else if (!_cups_strcasecmp(choice->choice, "HighGloss"))
1335 pwg_name = "photographic-high-gloss";
1336 else if (!_cups_strcasecmp(choice->choice, "Matte"))
1337 pwg_name = "photographic-matte";
1338 else if (!_cups_strncasecmp(choice->choice, "Plain", 5))
1339 pwg_name = "stationery";
1340 else if (!_cups_strncasecmp(choice->choice, "Coated", 6))
1341 pwg_name = "stationery-coated";
1342 else if (!_cups_strcasecmp(choice->choice, "Inkjet"))
1343 pwg_name = "stationery-inkjet";
1344 else if (!_cups_strcasecmp(choice->choice, "Letterhead"))
1345 pwg_name = "stationery-letterhead";
1346 else if (!_cups_strncasecmp(choice->choice, "Preprint", 8))
1347 pwg_name = "stationery-preprinted";
1348 else if (!_cups_strcasecmp(choice->choice, "Recycled"))
1349 pwg_name = "stationery-recycled";
1350 else if (!_cups_strncasecmp(choice->choice, "Transparen", 10))
1351 pwg_name = "transparency";
1352 else
1353 {
1354 /*
1355 * Convert PPD name to lowercase...
1356 */
1357
1358 pwg_name = pwg_keyword;
1359 pwg_unppdize_name(choice->choice, pwg_keyword, sizeof(pwg_keyword),
1360 "_");
1361 }
1362
1363 map->pwg = _cupsStrAlloc(pwg_name);
1364 map->ppd = _cupsStrAlloc(choice->choice);
1365 }
1366 }
1367
1368 /*
1369 * Copy and convert OutputBin data...
1370 */
1371
1372 if ((output_bin = ppdFindOption(ppd, "OutputBin")) != NULL)
1373 {
1374 if ((pc->bins = calloc((size_t)output_bin->num_choices, sizeof(pwg_map_t))) == NULL)
1375 {
1376 DEBUG_printf(("_ppdCacheCreateWithPPD: Unable to allocate %d "
1377 "pwg_map_t's for OutputBin.", output_bin->num_choices));
1378 goto create_error;
1379 }
1380
1381 pc->num_bins = output_bin->num_choices;
1382
1383 for (i = output_bin->num_choices, choice = output_bin->choices,
1384 map = pc->bins;
1385 i > 0;
1386 i --, choice ++, map ++)
1387 {
1388 pwg_unppdize_name(choice->choice, pwg_keyword, sizeof(pwg_keyword), "_");
1389
1390 map->pwg = _cupsStrAlloc(pwg_keyword);
1391 map->ppd = _cupsStrAlloc(choice->choice);
1392 }
1393 }
1394
1395 if ((ppd_attr = ppdFindAttr(ppd, "APPrinterPreset", NULL)) != NULL)
1396 {
1397 /*
1398 * Copy and convert APPrinterPreset (output-mode + print-quality) data...
1399 */
1400
1401 const char *quality, /* com.apple.print.preset.quality value */
1402 *output_mode, /* com.apple.print.preset.output-mode value */
1403 *color_model_val, /* ColorModel choice */
1404 *graphicsType, /* com.apple.print.preset.graphicsType value */
1405 *media_front_coating; /* com.apple.print.preset.media-front-coating value */
1406
1407 do
1408 {
1409 num_options = _ppdParseOptions(ppd_attr->value, 0, &options,
1410 _PPD_PARSE_ALL);
1411
1412 if ((quality = cupsGetOption("com.apple.print.preset.quality",
1413 num_options, options)) != NULL)
1414 {
1415 /*
1416 * Get the print-quality for this preset...
1417 */
1418
1419 if (!strcmp(quality, "low"))
1420 pwg_print_quality = _PWG_PRINT_QUALITY_DRAFT;
1421 else if (!strcmp(quality, "high"))
1422 pwg_print_quality = _PWG_PRINT_QUALITY_HIGH;
1423 else
1424 pwg_print_quality = _PWG_PRINT_QUALITY_NORMAL;
1425
1426 /*
1427 * Ignore graphicsType "Photo" presets that are not high quality.
1428 */
1429
1430 graphicsType = cupsGetOption("com.apple.print.preset.graphicsType",
1431 num_options, options);
1432
1433 if (pwg_print_quality != _PWG_PRINT_QUALITY_HIGH && graphicsType &&
1434 !strcmp(graphicsType, "Photo"))
1435 continue;
1436
1437 /*
1438 * Ignore presets for normal and draft quality where the coating
1439 * isn't "none" or "autodetect".
1440 */
1441
1442 media_front_coating = cupsGetOption(
1443 "com.apple.print.preset.media-front-coating",
1444 num_options, options);
1445
1446 if (pwg_print_quality != _PWG_PRINT_QUALITY_HIGH &&
1447 media_front_coating &&
1448 strcmp(media_front_coating, "none") &&
1449 strcmp(media_front_coating, "autodetect"))
1450 continue;
1451
1452 /*
1453 * Get the output mode for this preset...
1454 */
1455
1456 output_mode = cupsGetOption("com.apple.print.preset.output-mode",
1457 num_options, options);
1458 color_model_val = cupsGetOption("ColorModel", num_options, options);
1459
1460 if (output_mode)
1461 {
1462 if (!strcmp(output_mode, "monochrome"))
1463 pwg_print_color_mode = _PWG_PRINT_COLOR_MODE_MONOCHROME;
1464 else
1465 pwg_print_color_mode = _PWG_PRINT_COLOR_MODE_COLOR;
1466 }
1467 else if (color_model_val)
1468 {
1469 if (!_cups_strcasecmp(color_model_val, "Gray"))
1470 pwg_print_color_mode = _PWG_PRINT_COLOR_MODE_MONOCHROME;
1471 else
1472 pwg_print_color_mode = _PWG_PRINT_COLOR_MODE_COLOR;
1473 }
1474 else
1475 pwg_print_color_mode = _PWG_PRINT_COLOR_MODE_COLOR;
1476
1477 /*
1478 * Save the options for this combination as needed...
1479 */
1480
1481 if (!pc->num_presets[pwg_print_color_mode][pwg_print_quality])
1482 pc->num_presets[pwg_print_color_mode][pwg_print_quality] =
1483 _ppdParseOptions(ppd_attr->value, 0,
1484 pc->presets[pwg_print_color_mode] +
1485 pwg_print_quality, _PPD_PARSE_OPTIONS);
1486 }
1487
1488 cupsFreeOptions(num_options, options);
1489 }
1490 while ((ppd_attr = ppdFindNextAttr(ppd, "APPrinterPreset", NULL)) != NULL);
1491 }
1492
1493 if (!pc->num_presets[_PWG_PRINT_COLOR_MODE_MONOCHROME][_PWG_PRINT_QUALITY_DRAFT] &&
1494 !pc->num_presets[_PWG_PRINT_COLOR_MODE_MONOCHROME][_PWG_PRINT_QUALITY_NORMAL] &&
1495 !pc->num_presets[_PWG_PRINT_COLOR_MODE_MONOCHROME][_PWG_PRINT_QUALITY_HIGH])
1496 {
1497 /*
1498 * Try adding some common color options to create grayscale presets. These
1499 * are listed in order of popularity...
1500 */
1501
1502 const char *color_option = NULL, /* Color control option */
1503 *gray_choice = NULL; /* Choice to select grayscale */
1504
1505 if ((color_model = ppdFindOption(ppd, "ColorModel")) != NULL &&
1506 ppdFindChoice(color_model, "Gray"))
1507 {
1508 color_option = "ColorModel";
1509 gray_choice = "Gray";
1510 }
1511 else if ((color_model = ppdFindOption(ppd, "HPColorMode")) != NULL &&
1512 ppdFindChoice(color_model, "grayscale"))
1513 {
1514 color_option = "HPColorMode";
1515 gray_choice = "grayscale";
1516 }
1517 else if ((color_model = ppdFindOption(ppd, "BRMonoColor")) != NULL &&
1518 ppdFindChoice(color_model, "Mono"))
1519 {
1520 color_option = "BRMonoColor";
1521 gray_choice = "Mono";
1522 }
1523 else if ((color_model = ppdFindOption(ppd, "CNIJSGrayScale")) != NULL &&
1524 ppdFindChoice(color_model, "1"))
1525 {
1526 color_option = "CNIJSGrayScale";
1527 gray_choice = "1";
1528 }
1529 else if ((color_model = ppdFindOption(ppd, "HPColorAsGray")) != NULL &&
1530 ppdFindChoice(color_model, "True"))
1531 {
1532 color_option = "HPColorAsGray";
1533 gray_choice = "True";
1534 }
1535
1536 if (color_option && gray_choice)
1537 {
1538 /*
1539 * Copy and convert ColorModel (output-mode) data...
1540 */
1541
1542 cups_option_t *coption, /* Color option */
1543 *moption; /* Monochrome option */
1544
1545 for (pwg_print_quality = _PWG_PRINT_QUALITY_DRAFT;
1546 pwg_print_quality < _PWG_PRINT_QUALITY_MAX;
1547 pwg_print_quality ++)
1548 {
1549 if (pc->num_presets[_PWG_PRINT_COLOR_MODE_COLOR][pwg_print_quality])
1550 {
1551 /*
1552 * Copy the color options...
1553 */
1554
1555 num_options = pc->num_presets[_PWG_PRINT_COLOR_MODE_COLOR]
1556 [pwg_print_quality];
1557 options = calloc(sizeof(cups_option_t), (size_t)num_options);
1558
1559 if (options)
1560 {
1561 for (i = num_options, moption = options,
1562 coption = pc->presets[_PWG_PRINT_COLOR_MODE_COLOR]
1563 [pwg_print_quality];
1564 i > 0;
1565 i --, moption ++, coption ++)
1566 {
1567 moption->name = _cupsStrRetain(coption->name);
1568 moption->value = _cupsStrRetain(coption->value);
1569 }
1570
1571 pc->num_presets[_PWG_PRINT_COLOR_MODE_MONOCHROME][pwg_print_quality] =
1572 num_options;
1573 pc->presets[_PWG_PRINT_COLOR_MODE_MONOCHROME][pwg_print_quality] =
1574 options;
1575 }
1576 }
1577 else if (pwg_print_quality != _PWG_PRINT_QUALITY_NORMAL)
1578 continue;
1579
1580 /*
1581 * Add the grayscale option to the preset...
1582 */
1583
1584 pc->num_presets[_PWG_PRINT_COLOR_MODE_MONOCHROME][pwg_print_quality] =
1585 cupsAddOption(color_option, gray_choice,
1586 pc->num_presets[_PWG_PRINT_COLOR_MODE_MONOCHROME]
1587 [pwg_print_quality],
1588 pc->presets[_PWG_PRINT_COLOR_MODE_MONOCHROME] +
1589 pwg_print_quality);
1590 }
1591 }
1592 }
1593
1594 /*
1595 * Copy and convert Duplex (sides) data...
1596 */
1597
1598 if ((duplex = ppdFindOption(ppd, "Duplex")) == NULL)
1599 if ((duplex = ppdFindOption(ppd, "JCLDuplex")) == NULL)
1600 if ((duplex = ppdFindOption(ppd, "EFDuplex")) == NULL)
1601 if ((duplex = ppdFindOption(ppd, "EFDuplexing")) == NULL)
1602 duplex = ppdFindOption(ppd, "KD03Duplex");
1603
1604 if (duplex)
1605 {
1606 pc->sides_option = _cupsStrAlloc(duplex->keyword);
1607
1608 for (i = duplex->num_choices, choice = duplex->choices;
1609 i > 0;
1610 i --, choice ++)
1611 {
1612 if ((!_cups_strcasecmp(choice->choice, "None") ||
1613 !_cups_strcasecmp(choice->choice, "False")) && !pc->sides_1sided)
1614 pc->sides_1sided = _cupsStrAlloc(choice->choice);
1615 else if ((!_cups_strcasecmp(choice->choice, "DuplexNoTumble") ||
1616 !_cups_strcasecmp(choice->choice, "LongEdge") ||
1617 !_cups_strcasecmp(choice->choice, "Top")) && !pc->sides_2sided_long)
1618 pc->sides_2sided_long = _cupsStrAlloc(choice->choice);
1619 else if ((!_cups_strcasecmp(choice->choice, "DuplexTumble") ||
1620 !_cups_strcasecmp(choice->choice, "ShortEdge") ||
1621 !_cups_strcasecmp(choice->choice, "Bottom")) &&
1622 !pc->sides_2sided_short)
1623 pc->sides_2sided_short = _cupsStrAlloc(choice->choice);
1624 }
1625 }
1626
1627 /*
1628 * Copy filters and pre-filters...
1629 */
1630
1631 pc->filters = cupsArrayNew3(NULL, NULL, NULL, 0,
1632 (cups_acopy_func_t)_cupsStrAlloc,
1633 (cups_afree_func_t)_cupsStrFree);
1634
1635 cupsArrayAdd(pc->filters,
1636 "application/vnd.cups-raw application/octet-stream 0 -");
1637
1638 if ((ppd_attr = ppdFindAttr(ppd, "cupsFilter2", NULL)) != NULL)
1639 {
1640 do
1641 {
1642 cupsArrayAdd(pc->filters, ppd_attr->value);
1643 }
1644 while ((ppd_attr = ppdFindNextAttr(ppd, "cupsFilter2", NULL)) != NULL);
1645 }
1646 else if (ppd->num_filters > 0)
1647 {
1648 for (i = 0; i < ppd->num_filters; i ++)
1649 cupsArrayAdd(pc->filters, ppd->filters[i]);
1650 }
1651 else
1652 cupsArrayAdd(pc->filters, "application/vnd.cups-postscript 0 -");
1653
1654 /*
1655 * See if we have a command filter...
1656 */
1657
1658 for (filter = (const char *)cupsArrayFirst(pc->filters);
1659 filter;
1660 filter = (const char *)cupsArrayNext(pc->filters))
1661 if (!_cups_strncasecmp(filter, "application/vnd.cups-command", 28) &&
1662 _cups_isspace(filter[28]))
1663 break;
1664
1665 if (!filter &&
1666 ((ppd_attr = ppdFindAttr(ppd, "cupsCommands", NULL)) == NULL ||
1667 _cups_strcasecmp(ppd_attr->value, "none")))
1668 {
1669 /*
1670 * No command filter and no cupsCommands keyword telling us not to use one.
1671 * See if this is a PostScript printer, and if so add a PostScript command
1672 * filter...
1673 */
1674
1675 for (filter = (const char *)cupsArrayFirst(pc->filters);
1676 filter;
1677 filter = (const char *)cupsArrayNext(pc->filters))
1678 if (!_cups_strncasecmp(filter, "application/vnd.cups-postscript", 31) &&
1679 _cups_isspace(filter[31]))
1680 break;
1681
1682 if (filter)
1683 cupsArrayAdd(pc->filters,
1684 "application/vnd.cups-command application/postscript 100 "
1685 "commandtops");
1686 }
1687
1688 if ((ppd_attr = ppdFindAttr(ppd, "cupsPreFilter", NULL)) != NULL)
1689 {
1690 pc->prefilters = cupsArrayNew3(NULL, NULL, NULL, 0,
1691 (cups_acopy_func_t)_cupsStrAlloc,
1692 (cups_afree_func_t)_cupsStrFree);
1693
1694 do
1695 {
1696 cupsArrayAdd(pc->prefilters, ppd_attr->value);
1697 }
1698 while ((ppd_attr = ppdFindNextAttr(ppd, "cupsPreFilter", NULL)) != NULL);
1699 }
1700
1701 if ((ppd_attr = ppdFindAttr(ppd, "cupsSingleFile", NULL)) != NULL)
1702 pc->single_file = !_cups_strcasecmp(ppd_attr->value, "true");
1703
1704 /*
1705 * Copy the product string, if any...
1706 */
1707
1708 if (ppd->product)
1709 pc->product = _cupsStrAlloc(ppd->product);
1710
1711 /*
1712 * Copy finishings mapping data...
1713 */
1714
1715 if ((ppd_attr = ppdFindAttr(ppd, "cupsIPPFinishings", NULL)) != NULL)
1716 {
1717 pc->finishings = cupsArrayNew3((cups_array_func_t)pwg_compare_finishings,
1718 NULL, NULL, 0, NULL,
1719 (cups_afree_func_t)pwg_free_finishings);
1720
1721 do
1722 {
1723 if ((finishings = calloc(1, sizeof(_pwg_finishings_t))) == NULL)
1724 goto create_error;
1725
1726 finishings->value = (ipp_finishings_t)atoi(ppd_attr->spec);
1727 finishings->num_options = _ppdParseOptions(ppd_attr->value, 0,
1728 &(finishings->options),
1729 _PPD_PARSE_OPTIONS);
1730
1731 cupsArrayAdd(pc->finishings, finishings);
1732 }
1733 while ((ppd_attr = ppdFindNextAttr(ppd, "cupsIPPFinishings",
1734 NULL)) != NULL);
1735 }
1736
1737 /*
1738 * Max copies...
1739 */
1740
1741 if ((ppd_attr = ppdFindAttr(ppd, "cupsMaxCopies", NULL)) != NULL)
1742 pc->max_copies = atoi(ppd_attr->value);
1743 else if (ppd->manual_copies)
1744 pc->max_copies = 1;
1745 else
1746 pc->max_copies = 9999;
1747
1748 /*
1749 * cupsChargeInfoURI, cupsJobAccountId, cupsJobAccountingUserId,
1750 * cupsJobPassword, and cupsMandatory.
1751 */
1752
1753 if ((ppd_attr = ppdFindAttr(ppd, "cupsChargeInfoURI", NULL)) != NULL)
1754 pc->charge_info_uri = _cupsStrAlloc(ppd_attr->value);
1755
1756 if ((ppd_attr = ppdFindAttr(ppd, "cupsJobAccountId", NULL)) != NULL)
1757 pc->account_id = !_cups_strcasecmp(ppd_attr->value, "true");
1758
1759 if ((ppd_attr = ppdFindAttr(ppd, "cupsJobAccountingUserId", NULL)) != NULL)
1760 pc->accounting_user_id = !_cups_strcasecmp(ppd_attr->value, "true");
1761
1762 if ((ppd_attr = ppdFindAttr(ppd, "cupsJobPassword", NULL)) != NULL)
1763 pc->password = _cupsStrAlloc(ppd_attr->value);
1764
1765 if ((ppd_attr = ppdFindAttr(ppd, "cupsMandatory", NULL)) != NULL)
1766 pc->mandatory = _cupsArrayNewStrings(ppd_attr->value, ' ');
1767
1768 /*
1769 * Support files...
1770 */
1771
1772 pc->support_files = cupsArrayNew3(NULL, NULL, NULL, 0,
1773 (cups_acopy_func_t)_cupsStrAlloc,
1774 (cups_afree_func_t)_cupsStrFree);
1775
1776 for (ppd_attr = ppdFindAttr(ppd, "cupsICCProfile", NULL);
1777 ppd_attr;
1778 ppd_attr = ppdFindNextAttr(ppd, "cupsICCProfile", NULL))
1779 cupsArrayAdd(pc->support_files, ppd_attr->value);
1780
1781 if ((ppd_attr = ppdFindAttr(ppd, "APPrinterIconPath", NULL)) != NULL)
1782 cupsArrayAdd(pc->support_files, ppd_attr->value);
1783
1784 /*
1785 * 3D stuff...
1786 */
1787
1788 if ((ppd_attr = ppdFindAttr(ppd, "cups3D", NULL)) != NULL)
1789 pc->cups_3d = _cupsStrAlloc(ppd_attr->value);
1790
1791 if ((ppd_attr = ppdFindAttr(ppd, "cupsLayerOrder", NULL)) != NULL)
1792 pc->cups_layer_order = _cupsStrAlloc(ppd_attr->value);
1793
1794 if ((ppd_attr = ppdFindAttr(ppd, "cupsAccuracy", NULL)) != NULL)
1795 sscanf(ppd_attr->value, "%d%d%d", pc->cups_accuracy + 0, pc->cups_accuracy + 1, pc->cups_accuracy + 2);
1796
1797 if ((ppd_attr = ppdFindAttr(ppd, "cupsVolume", NULL)) != NULL)
1798 sscanf(ppd_attr->value, "%d%d%d", pc->cups_volume + 0, pc->cups_volume + 1, pc->cups_volume + 2);
1799
1800 for (ppd_attr = ppdFindAttr(ppd, "cupsMaterial", NULL);
1801 ppd_attr;
1802 ppd_attr = ppdFindNextAttr(ppd, "cupsMaterial", NULL))
1803 {
1804 /*
1805 * *cupsMaterial key/name: "name=value ... name=value"
1806 */
1807
1808 _pwg_material_t *material = (_pwg_material_t *)calloc(1, sizeof(_pwg_material_t));
1809
1810 material->key = _cupsStrAlloc(ppd_attr->name);
1811 material->name = _cupsStrAlloc(ppd_attr->text);
1812 material->num_props = cupsParseOptions(ppd_attr->value, 0, &material->props);
1813
1814 if (!pc->materials)
1815 pc->materials = cupsArrayNew3(NULL, NULL, NULL, 0, NULL, (cups_afree_func_t)pwg_free_material);
1816
1817 cupsArrayAdd(pc->materials, material);
1818 }
1819
1820 /*
1821 * Return the cache data...
1822 */
1823
1824 return (pc);
1825
1826 /*
1827 * If we get here we need to destroy the PWG mapping data and return NULL...
1828 */
1829
1830 create_error:
1831
1832 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Out of memory."), 1);
1833 _ppdCacheDestroy(pc);
1834
1835 return (NULL);
1836 }
1837
1838
1839 /*
1840 * '_ppdCacheDestroy()' - Free all memory used for PWG mapping data.
1841 */
1842
1843 void
1844 _ppdCacheDestroy(_ppd_cache_t *pc) /* I - PPD cache and mapping data */
1845 {
1846 int i; /* Looping var */
1847 pwg_map_t *map; /* Current map */
1848 pwg_size_t *size; /* Current size */
1849
1850
1851 /*
1852 * Range check input...
1853 */
1854
1855 if (!pc)
1856 return;
1857
1858 /*
1859 * Free memory as needed...
1860 */
1861
1862 if (pc->bins)
1863 {
1864 for (i = pc->num_bins, map = pc->bins; i > 0; i --, map ++)
1865 {
1866 _cupsStrFree(map->pwg);
1867 _cupsStrFree(map->ppd);
1868 }
1869
1870 free(pc->bins);
1871 }
1872
1873 if (pc->sizes)
1874 {
1875 for (i = pc->num_sizes, size = pc->sizes; i > 0; i --, size ++)
1876 {
1877 _cupsStrFree(size->map.pwg);
1878 _cupsStrFree(size->map.ppd);
1879 }
1880
1881 free(pc->sizes);
1882 }
1883
1884 if (pc->source_option)
1885 _cupsStrFree(pc->source_option);
1886
1887 if (pc->sources)
1888 {
1889 for (i = pc->num_sources, map = pc->sources; i > 0; i --, map ++)
1890 {
1891 _cupsStrFree(map->pwg);
1892 _cupsStrFree(map->ppd);
1893 }
1894
1895 free(pc->sources);
1896 }
1897
1898 if (pc->types)
1899 {
1900 for (i = pc->num_types, map = pc->types; i > 0; i --, map ++)
1901 {
1902 _cupsStrFree(map->pwg);
1903 _cupsStrFree(map->ppd);
1904 }
1905
1906 free(pc->types);
1907 }
1908
1909 if (pc->custom_max_keyword)
1910 _cupsStrFree(pc->custom_max_keyword);
1911
1912 if (pc->custom_min_keyword)
1913 _cupsStrFree(pc->custom_min_keyword);
1914
1915 _cupsStrFree(pc->product);
1916 cupsArrayDelete(pc->filters);
1917 cupsArrayDelete(pc->prefilters);
1918 cupsArrayDelete(pc->finishings);
1919
1920 _cupsStrFree(pc->charge_info_uri);
1921 _cupsStrFree(pc->password);
1922
1923 cupsArrayDelete(pc->mandatory);
1924
1925 cupsArrayDelete(pc->support_files);
1926
1927 _cupsStrFree(pc->cups_3d);
1928 _cupsStrFree(pc->cups_layer_order);
1929
1930 cupsArrayDelete(pc->materials);
1931
1932 free(pc);
1933 }
1934
1935
1936 /*
1937 * '_ppdCacheGetBin()' - Get the PWG output-bin keyword associated with a PPD
1938 * OutputBin.
1939 */
1940
1941 const char * /* O - output-bin or NULL */
1942 _ppdCacheGetBin(
1943 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
1944 const char *output_bin) /* I - PPD OutputBin string */
1945 {
1946 int i; /* Looping var */
1947
1948
1949 /*
1950 * Range check input...
1951 */
1952
1953 if (!pc || !output_bin)
1954 return (NULL);
1955
1956 /*
1957 * Look up the OutputBin string...
1958 */
1959
1960
1961 for (i = 0; i < pc->num_bins; i ++)
1962 if (!_cups_strcasecmp(output_bin, pc->bins[i].ppd))
1963 return (pc->bins[i].pwg);
1964
1965 return (NULL);
1966 }
1967
1968
1969 /*
1970 * '_ppdCacheGetFinishingOptions()' - Get PPD finishing options for the given
1971 * IPP finishings value(s).
1972 */
1973
1974 int /* O - New number of options */
1975 _ppdCacheGetFinishingOptions(
1976 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
1977 ipp_t *job, /* I - Job attributes or NULL */
1978 ipp_finishings_t value, /* I - IPP finishings value of IPP_FINISHINGS_NONE */
1979 int num_options, /* I - Number of options */
1980 cups_option_t **options) /* IO - Options */
1981 {
1982 int i; /* Looping var */
1983 _pwg_finishings_t *f, /* PWG finishings options */
1984 key; /* Search key */
1985 ipp_attribute_t *attr; /* Finishings attribute */
1986 cups_option_t *option; /* Current finishings option */
1987
1988
1989 /*
1990 * Range check input...
1991 */
1992
1993 if (!pc || cupsArrayCount(pc->finishings) == 0 || !options ||
1994 (!job && value == IPP_FINISHINGS_NONE))
1995 return (num_options);
1996
1997 /*
1998 * Apply finishing options...
1999 */
2000
2001 if (job && (attr = ippFindAttribute(job, "finishings", IPP_TAG_ENUM)) != NULL)
2002 {
2003 int num_values = ippGetCount(attr); /* Number of values */
2004
2005 for (i = 0; i < num_values; i ++)
2006 {
2007 key.value = (ipp_finishings_t)ippGetInteger(attr, i);
2008
2009 if ((f = cupsArrayFind(pc->finishings, &key)) != NULL)
2010 {
2011 int j; /* Another looping var */
2012
2013 for (j = f->num_options, option = f->options; j > 0; j --, option ++)
2014 num_options = cupsAddOption(option->name, option->value,
2015 num_options, options);
2016 }
2017 }
2018 }
2019 else if (value != IPP_FINISHINGS_NONE)
2020 {
2021 key.value = value;
2022
2023 if ((f = cupsArrayFind(pc->finishings, &key)) != NULL)
2024 {
2025 int j; /* Another looping var */
2026
2027 for (j = f->num_options, option = f->options; j > 0; j --, option ++)
2028 num_options = cupsAddOption(option->name, option->value,
2029 num_options, options);
2030 }
2031 }
2032
2033 return (num_options);
2034 }
2035
2036
2037 /*
2038 * '_ppdCacheGetFinishingValues()' - Get IPP finishings value(s) from the given
2039 * PPD options.
2040 */
2041
2042 int /* O - Number of finishings values */
2043 _ppdCacheGetFinishingValues(
2044 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2045 int num_options, /* I - Number of options */
2046 cups_option_t *options, /* I - Options */
2047 int max_values, /* I - Maximum number of finishings values */
2048 int *values) /* O - Finishings values */
2049 {
2050 int i, /* Looping var */
2051 num_values = 0; /* Number of values */
2052 _pwg_finishings_t *f; /* Current finishings option */
2053 cups_option_t *option; /* Current option */
2054 const char *val; /* Value for option */
2055
2056
2057 /*
2058 * Range check input...
2059 */
2060
2061 DEBUG_printf(("_ppdCacheGetFinishingValues(pc=%p, num_options=%d, options=%p, max_values=%d, values=%p)", pc, num_options, options, max_values, values));
2062
2063 if (!pc || !pc->finishings || num_options < 1 || max_values < 1 || !values)
2064 {
2065 DEBUG_puts("_ppdCacheGetFinishingValues: Bad arguments, returning 0.");
2066 return (0);
2067 }
2068
2069 /*
2070 * Go through the finishings options and see what is set...
2071 */
2072
2073 for (f = (_pwg_finishings_t *)cupsArrayFirst(pc->finishings);
2074 f;
2075 f = (_pwg_finishings_t *)cupsArrayNext(pc->finishings))
2076 {
2077 DEBUG_printf(("_ppdCacheGetFinishingValues: Checking %d (%s)", f->value, ippEnumString("finishings", f->value)));
2078
2079 for (i = f->num_options, option = f->options; i > 0; i --, option ++)
2080 {
2081 DEBUG_printf(("_ppdCacheGetFinishingValues: %s=%s?", option->name, option->value));
2082
2083 if ((val = cupsGetOption(option->name, num_options, options)) == NULL ||
2084 _cups_strcasecmp(option->value, val))
2085 {
2086 DEBUG_puts("_ppdCacheGetFinishingValues: NO");
2087 break;
2088 }
2089 }
2090
2091 if (i == 0)
2092 {
2093 DEBUG_printf(("_ppdCacheGetFinishingValues: Adding %d.", f->value));
2094
2095 values[num_values ++] = f->value;
2096
2097 if (num_values >= max_values)
2098 break;
2099 }
2100 }
2101
2102 DEBUG_printf(("_ppdCacheGetFinishingValues: Returning %d.", num_values));
2103
2104 return (num_values);
2105 }
2106
2107
2108 /*
2109 * '_ppdCacheGetInputSlot()' - Get the PPD InputSlot associated with the job
2110 * attributes or a keyword string.
2111 */
2112
2113 const char * /* O - PPD InputSlot or NULL */
2114 _ppdCacheGetInputSlot(
2115 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2116 ipp_t *job, /* I - Job attributes or NULL */
2117 const char *keyword) /* I - Keyword string or NULL */
2118 {
2119 /*
2120 * Range check input...
2121 */
2122
2123 if (!pc || pc->num_sources == 0 || (!job && !keyword))
2124 return (NULL);
2125
2126 if (job && !keyword)
2127 {
2128 /*
2129 * Lookup the media-col attribute and any media-source found there...
2130 */
2131
2132 ipp_attribute_t *media_col, /* media-col attribute */
2133 *media_source; /* media-source attribute */
2134 pwg_size_t size; /* Dimensional size */
2135 int margins_set; /* Were the margins set? */
2136
2137 media_col = ippFindAttribute(job, "media-col", IPP_TAG_BEGIN_COLLECTION);
2138 if (media_col &&
2139 (media_source = ippFindAttribute(ippGetCollection(media_col, 0),
2140 "media-source",
2141 IPP_TAG_KEYWORD)) != NULL)
2142 {
2143 /*
2144 * Use the media-source value from media-col...
2145 */
2146
2147 keyword = ippGetString(media_source, 0, NULL);
2148 }
2149 else if (pwgInitSize(&size, job, &margins_set))
2150 {
2151 /*
2152 * For media <= 5x7, look for a photo tray...
2153 */
2154
2155 if (size.width <= (5 * 2540) && size.length <= (7 * 2540))
2156 keyword = "photo";
2157 }
2158 }
2159
2160 if (keyword)
2161 {
2162 int i; /* Looping var */
2163
2164 for (i = 0; i < pc->num_sources; i ++)
2165 if (!_cups_strcasecmp(keyword, pc->sources[i].pwg))
2166 return (pc->sources[i].ppd);
2167 }
2168
2169 return (NULL);
2170 }
2171
2172
2173 /*
2174 * '_ppdCacheGetMediaType()' - Get the PPD MediaType associated with the job
2175 * attributes or a keyword string.
2176 */
2177
2178 const char * /* O - PPD MediaType or NULL */
2179 _ppdCacheGetMediaType(
2180 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2181 ipp_t *job, /* I - Job attributes or NULL */
2182 const char *keyword) /* I - Keyword string or NULL */
2183 {
2184 /*
2185 * Range check input...
2186 */
2187
2188 if (!pc || pc->num_types == 0 || (!job && !keyword))
2189 return (NULL);
2190
2191 if (job && !keyword)
2192 {
2193 /*
2194 * Lookup the media-col attribute and any media-source found there...
2195 */
2196
2197 ipp_attribute_t *media_col, /* media-col attribute */
2198 *media_type; /* media-type attribute */
2199
2200 media_col = ippFindAttribute(job, "media-col", IPP_TAG_BEGIN_COLLECTION);
2201 if (media_col)
2202 {
2203 if ((media_type = ippFindAttribute(media_col->values[0].collection,
2204 "media-type",
2205 IPP_TAG_KEYWORD)) == NULL)
2206 media_type = ippFindAttribute(media_col->values[0].collection,
2207 "media-type", IPP_TAG_NAME);
2208
2209 if (media_type)
2210 keyword = media_type->values[0].string.text;
2211 }
2212 }
2213
2214 if (keyword)
2215 {
2216 int i; /* Looping var */
2217
2218 for (i = 0; i < pc->num_types; i ++)
2219 if (!_cups_strcasecmp(keyword, pc->types[i].pwg))
2220 return (pc->types[i].ppd);
2221 }
2222
2223 return (NULL);
2224 }
2225
2226
2227 /*
2228 * '_ppdCacheGetOutputBin()' - Get the PPD OutputBin associated with the keyword
2229 * string.
2230 */
2231
2232 const char * /* O - PPD OutputBin or NULL */
2233 _ppdCacheGetOutputBin(
2234 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2235 const char *output_bin) /* I - Keyword string */
2236 {
2237 int i; /* Looping var */
2238
2239
2240 /*
2241 * Range check input...
2242 */
2243
2244 if (!pc || !output_bin)
2245 return (NULL);
2246
2247 /*
2248 * Look up the OutputBin string...
2249 */
2250
2251
2252 for (i = 0; i < pc->num_bins; i ++)
2253 if (!_cups_strcasecmp(output_bin, pc->bins[i].pwg))
2254 return (pc->bins[i].ppd);
2255
2256 return (NULL);
2257 }
2258
2259
2260 /*
2261 * '_ppdCacheGetPageSize()' - Get the PPD PageSize associated with the job
2262 * attributes or a keyword string.
2263 */
2264
2265 const char * /* O - PPD PageSize or NULL */
2266 _ppdCacheGetPageSize(
2267 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2268 ipp_t *job, /* I - Job attributes or NULL */
2269 const char *keyword, /* I - Keyword string or NULL */
2270 int *exact) /* O - 1 if exact match, 0 otherwise */
2271 {
2272 int i; /* Looping var */
2273 pwg_size_t *size, /* Current size */
2274 *closest, /* Closest size */
2275 jobsize; /* Size data from job */
2276 int margins_set, /* Were the margins set? */
2277 dwidth, /* Difference in width */
2278 dlength, /* Difference in length */
2279 dleft, /* Difference in left margins */
2280 dright, /* Difference in right margins */
2281 dbottom, /* Difference in bottom margins */
2282 dtop, /* Difference in top margins */
2283 dmin, /* Minimum difference */
2284 dclosest; /* Closest difference */
2285 const char *ppd_name; /* PPD media name */
2286
2287
2288 DEBUG_printf(("_ppdCacheGetPageSize(pc=%p, job=%p, keyword=\"%s\", exact=%p)",
2289 pc, job, keyword, exact));
2290
2291 /*
2292 * Range check input...
2293 */
2294
2295 if (!pc || (!job && !keyword))
2296 return (NULL);
2297
2298 if (exact)
2299 *exact = 0;
2300
2301 ppd_name = keyword;
2302
2303 if (job)
2304 {
2305 /*
2306 * Try getting the PPD media name from the job attributes...
2307 */
2308
2309 ipp_attribute_t *attr; /* Job attribute */
2310
2311 if ((attr = ippFindAttribute(job, "PageSize", IPP_TAG_ZERO)) == NULL)
2312 if ((attr = ippFindAttribute(job, "PageRegion", IPP_TAG_ZERO)) == NULL)
2313 attr = ippFindAttribute(job, "media", IPP_TAG_ZERO);
2314
2315 #ifdef DEBUG
2316 if (attr)
2317 DEBUG_printf(("1_ppdCacheGetPageSize: Found attribute %s (%s)",
2318 attr->name, ippTagString(attr->value_tag)));
2319 else
2320 DEBUG_puts("1_ppdCacheGetPageSize: Did not find media attribute.");
2321 #endif /* DEBUG */
2322
2323 if (attr && (attr->value_tag == IPP_TAG_NAME ||
2324 attr->value_tag == IPP_TAG_KEYWORD))
2325 ppd_name = attr->values[0].string.text;
2326 }
2327
2328 DEBUG_printf(("1_ppdCacheGetPageSize: ppd_name=\"%s\"", ppd_name));
2329
2330 if (ppd_name)
2331 {
2332 /*
2333 * Try looking up the named PPD size first...
2334 */
2335
2336 for (i = pc->num_sizes, size = pc->sizes; i > 0; i --, size ++)
2337 {
2338 DEBUG_printf(("2_ppdCacheGetPageSize: size[%d]=[\"%s\" \"%s\"]",
2339 (int)(size - pc->sizes), size->map.pwg, size->map.ppd));
2340
2341 if (!_cups_strcasecmp(ppd_name, size->map.ppd) ||
2342 !_cups_strcasecmp(ppd_name, size->map.pwg))
2343 {
2344 if (exact)
2345 *exact = 1;
2346
2347 DEBUG_printf(("1_ppdCacheGetPageSize: Returning \"%s\"", ppd_name));
2348
2349 return (size->map.ppd);
2350 }
2351 }
2352 }
2353
2354 if (job && !keyword)
2355 {
2356 /*
2357 * Get the size using media-col or media, with the preference being
2358 * media-col.
2359 */
2360
2361 if (!pwgInitSize(&jobsize, job, &margins_set))
2362 return (NULL);
2363 }
2364 else
2365 {
2366 /*
2367 * Get the size using a media keyword...
2368 */
2369
2370 pwg_media_t *media; /* Media definition */
2371
2372
2373 if ((media = pwgMediaForPWG(keyword)) == NULL)
2374 if ((media = pwgMediaForLegacy(keyword)) == NULL)
2375 if ((media = pwgMediaForPPD(keyword)) == NULL)
2376 return (NULL);
2377
2378 jobsize.width = media->width;
2379 jobsize.length = media->length;
2380 margins_set = 0;
2381 }
2382
2383 /*
2384 * Now that we have the dimensions and possibly the margins, look at the
2385 * available sizes and find the match...
2386 */
2387
2388 closest = NULL;
2389 dclosest = 999999999;
2390
2391 if (!ppd_name || _cups_strncasecmp(ppd_name, "Custom.", 7) ||
2392 _cups_strncasecmp(ppd_name, "custom_", 7))
2393 {
2394 for (i = pc->num_sizes, size = pc->sizes; i > 0; i --, size ++)
2395 {
2396 /*
2397 * Adobe uses a size matching algorithm with an epsilon of 5 points, which
2398 * is just about 176/2540ths...
2399 */
2400
2401 dwidth = size->width - jobsize.width;
2402 dlength = size->length - jobsize.length;
2403
2404 if (dwidth <= -176 || dwidth >= 176 || dlength <= -176 || dlength >= 176)
2405 continue;
2406
2407 if (margins_set)
2408 {
2409 /*
2410 * Use a tighter epsilon of 1 point (35/2540ths) for margins...
2411 */
2412
2413 dleft = size->left - jobsize.left;
2414 dright = size->right - jobsize.right;
2415 dtop = size->top - jobsize.top;
2416 dbottom = size->bottom - jobsize.bottom;
2417
2418 if (dleft <= -35 || dleft >= 35 || dright <= -35 || dright >= 35 ||
2419 dtop <= -35 || dtop >= 35 || dbottom <= -35 || dbottom >= 35)
2420 {
2421 dleft = dleft < 0 ? -dleft : dleft;
2422 dright = dright < 0 ? -dright : dright;
2423 dbottom = dbottom < 0 ? -dbottom : dbottom;
2424 dtop = dtop < 0 ? -dtop : dtop;
2425 dmin = dleft + dright + dbottom + dtop;
2426
2427 if (dmin < dclosest)
2428 {
2429 dclosest = dmin;
2430 closest = size;
2431 }
2432
2433 continue;
2434 }
2435 }
2436
2437 if (exact)
2438 *exact = 1;
2439
2440 DEBUG_printf(("1_ppdCacheGetPageSize: Returning \"%s\"", size->map.ppd));
2441
2442 return (size->map.ppd);
2443 }
2444 }
2445
2446 if (closest)
2447 {
2448 DEBUG_printf(("1_ppdCacheGetPageSize: Returning \"%s\" (closest)",
2449 closest->map.ppd));
2450
2451 return (closest->map.ppd);
2452 }
2453
2454 /*
2455 * If we get here we need to check for custom page size support...
2456 */
2457
2458 if (jobsize.width >= pc->custom_min_width &&
2459 jobsize.width <= pc->custom_max_width &&
2460 jobsize.length >= pc->custom_min_length &&
2461 jobsize.length <= pc->custom_max_length)
2462 {
2463 /*
2464 * In range, format as Custom.WWWWxLLLL (points).
2465 */
2466
2467 snprintf(pc->custom_ppd_size, sizeof(pc->custom_ppd_size), "Custom.%dx%d",
2468 (int)PWG_TO_POINTS(jobsize.width), (int)PWG_TO_POINTS(jobsize.length));
2469
2470 if (margins_set && exact)
2471 {
2472 dleft = pc->custom_size.left - jobsize.left;
2473 dright = pc->custom_size.right - jobsize.right;
2474 dtop = pc->custom_size.top - jobsize.top;
2475 dbottom = pc->custom_size.bottom - jobsize.bottom;
2476
2477 if (dleft > -35 && dleft < 35 && dright > -35 && dright < 35 &&
2478 dtop > -35 && dtop < 35 && dbottom > -35 && dbottom < 35)
2479 *exact = 1;
2480 }
2481 else if (exact)
2482 *exact = 1;
2483
2484 DEBUG_printf(("1_ppdCacheGetPageSize: Returning \"%s\" (custom)",
2485 pc->custom_ppd_size));
2486
2487 return (pc->custom_ppd_size);
2488 }
2489
2490 /*
2491 * No custom page size support or the size is out of range - return NULL.
2492 */
2493
2494 DEBUG_puts("1_ppdCacheGetPageSize: Returning NULL");
2495
2496 return (NULL);
2497 }
2498
2499
2500 /*
2501 * '_ppdCacheGetSize()' - Get the PWG size associated with a PPD PageSize.
2502 */
2503
2504 pwg_size_t * /* O - PWG size or NULL */
2505 _ppdCacheGetSize(
2506 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2507 const char *page_size) /* I - PPD PageSize */
2508 {
2509 int i; /* Looping var */
2510 pwg_media_t *media; /* Media */
2511 pwg_size_t *size; /* Current size */
2512
2513
2514 /*
2515 * Range check input...
2516 */
2517
2518 if (!pc || !page_size)
2519 return (NULL);
2520
2521 if (!_cups_strncasecmp(page_size, "Custom.", 7))
2522 {
2523 /*
2524 * Custom size; size name can be one of the following:
2525 *
2526 * Custom.WIDTHxLENGTHin - Size in inches
2527 * Custom.WIDTHxLENGTHft - Size in feet
2528 * Custom.WIDTHxLENGTHcm - Size in centimeters
2529 * Custom.WIDTHxLENGTHmm - Size in millimeters
2530 * Custom.WIDTHxLENGTHm - Size in meters
2531 * Custom.WIDTHxLENGTH[pt] - Size in points
2532 */
2533
2534 double w, l; /* Width and length of page */
2535 char *ptr; /* Pointer into PageSize */
2536 struct lconv *loc; /* Locale data */
2537
2538 loc = localeconv();
2539 w = (float)_cupsStrScand(page_size + 7, &ptr, loc);
2540 if (!ptr || *ptr != 'x')
2541 return (NULL);
2542
2543 l = (float)_cupsStrScand(ptr + 1, &ptr, loc);
2544 if (!ptr)
2545 return (NULL);
2546
2547 if (!_cups_strcasecmp(ptr, "in"))
2548 {
2549 w *= 2540.0;
2550 l *= 2540.0;
2551 }
2552 else if (!_cups_strcasecmp(ptr, "ft"))
2553 {
2554 w *= 12.0 * 2540.0;
2555 l *= 12.0 * 2540.0;
2556 }
2557 else if (!_cups_strcasecmp(ptr, "mm"))
2558 {
2559 w *= 100.0;
2560 l *= 100.0;
2561 }
2562 else if (!_cups_strcasecmp(ptr, "cm"))
2563 {
2564 w *= 1000.0;
2565 l *= 1000.0;
2566 }
2567 else if (!_cups_strcasecmp(ptr, "m"))
2568 {
2569 w *= 100000.0;
2570 l *= 100000.0;
2571 }
2572 else
2573 {
2574 w *= 2540.0 / 72.0;
2575 l *= 2540.0 / 72.0;
2576 }
2577
2578 pc->custom_size.width = (int)w;
2579 pc->custom_size.length = (int)l;
2580
2581 return (&(pc->custom_size));
2582 }
2583
2584 /*
2585 * Not a custom size - look it up...
2586 */
2587
2588 for (i = pc->num_sizes, size = pc->sizes; i > 0; i --, size ++)
2589 if (!_cups_strcasecmp(page_size, size->map.ppd) ||
2590 !_cups_strcasecmp(page_size, size->map.pwg))
2591 return (size);
2592
2593 /*
2594 * Look up standard sizes...
2595 */
2596
2597 if ((media = pwgMediaForPPD(page_size)) == NULL)
2598 if ((media = pwgMediaForLegacy(page_size)) == NULL)
2599 media = pwgMediaForPWG(page_size);
2600
2601 if (media)
2602 {
2603 pc->custom_size.width = media->width;
2604 pc->custom_size.length = media->length;
2605
2606 return (&(pc->custom_size));
2607 }
2608
2609 return (NULL);
2610 }
2611
2612
2613 /*
2614 * '_ppdCacheGetSource()' - Get the PWG media-source associated with a PPD
2615 * InputSlot.
2616 */
2617
2618 const char * /* O - PWG media-source keyword */
2619 _ppdCacheGetSource(
2620 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2621 const char *input_slot) /* I - PPD InputSlot */
2622 {
2623 int i; /* Looping var */
2624 pwg_map_t *source; /* Current source */
2625
2626
2627 /*
2628 * Range check input...
2629 */
2630
2631 if (!pc || !input_slot)
2632 return (NULL);
2633
2634 for (i = pc->num_sources, source = pc->sources; i > 0; i --, source ++)
2635 if (!_cups_strcasecmp(input_slot, source->ppd))
2636 return (source->pwg);
2637
2638 return (NULL);
2639 }
2640
2641
2642 /*
2643 * '_ppdCacheGetType()' - Get the PWG media-type associated with a PPD
2644 * MediaType.
2645 */
2646
2647 const char * /* O - PWG media-type keyword */
2648 _ppdCacheGetType(
2649 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2650 const char *media_type) /* I - PPD MediaType */
2651 {
2652 int i; /* Looping var */
2653 pwg_map_t *type; /* Current type */
2654
2655
2656 /*
2657 * Range check input...
2658 */
2659
2660 if (!pc || !media_type)
2661 return (NULL);
2662
2663 for (i = pc->num_types, type = pc->types; i > 0; i --, type ++)
2664 if (!_cups_strcasecmp(media_type, type->ppd))
2665 return (type->pwg);
2666
2667 return (NULL);
2668 }
2669
2670
2671 /*
2672 * '_ppdCacheWriteFile()' - Write PWG mapping data to a file.
2673 */
2674
2675 int /* O - 1 on success, 0 on failure */
2676 _ppdCacheWriteFile(
2677 _ppd_cache_t *pc, /* I - PPD cache and mapping data */
2678 const char *filename, /* I - File to write */
2679 ipp_t *attrs) /* I - Attributes to write, if any */
2680 {
2681 int i, j, k; /* Looping vars */
2682 cups_file_t *fp; /* Output file */
2683 pwg_size_t *size; /* Current size */
2684 pwg_map_t *map; /* Current map */
2685 _pwg_finishings_t *f; /* Current finishing option */
2686 cups_option_t *option; /* Current option */
2687 const char *value; /* Filter/pre-filter value */
2688 char newfile[1024]; /* New filename */
2689 _pwg_material_t *m; /* Material */
2690
2691
2692 /*
2693 * Range check input...
2694 */
2695
2696 if (!pc || !filename)
2697 {
2698 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(EINVAL), 0);
2699 return (0);
2700 }
2701
2702 /*
2703 * Open the file and write with compression...
2704 */
2705
2706 snprintf(newfile, sizeof(newfile), "%s.N", filename);
2707 if ((fp = cupsFileOpen(newfile, "w9")) == NULL)
2708 {
2709 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, strerror(errno), 0);
2710 return (0);
2711 }
2712
2713 /*
2714 * Standard header...
2715 */
2716
2717 cupsFilePrintf(fp, "#CUPS-PPD-CACHE-%d\n", _PPD_CACHE_VERSION);
2718
2719 /*
2720 * Output bins...
2721 */
2722
2723 if (pc->num_bins > 0)
2724 {
2725 cupsFilePrintf(fp, "NumBins %d\n", pc->num_bins);
2726 for (i = pc->num_bins, map = pc->bins; i > 0; i --, map ++)
2727 cupsFilePrintf(fp, "Bin %s %s\n", map->pwg, map->ppd);
2728 }
2729
2730 /*
2731 * Media sizes...
2732 */
2733
2734 cupsFilePrintf(fp, "NumSizes %d\n", pc->num_sizes);
2735 for (i = pc->num_sizes, size = pc->sizes; i > 0; i --, size ++)
2736 cupsFilePrintf(fp, "Size %s %s %d %d %d %d %d %d\n", size->map.pwg,
2737 size->map.ppd, size->width, size->length, size->left,
2738 size->bottom, size->right, size->top);
2739 if (pc->custom_max_width > 0)
2740 cupsFilePrintf(fp, "CustomSize %d %d %d %d %d %d %d %d\n",
2741 pc->custom_max_width, pc->custom_max_length,
2742 pc->custom_min_width, pc->custom_min_length,
2743 pc->custom_size.left, pc->custom_size.bottom,
2744 pc->custom_size.right, pc->custom_size.top);
2745
2746 /*
2747 * Media sources...
2748 */
2749
2750 if (pc->source_option)
2751 cupsFilePrintf(fp, "SourceOption %s\n", pc->source_option);
2752
2753 if (pc->num_sources > 0)
2754 {
2755 cupsFilePrintf(fp, "NumSources %d\n", pc->num_sources);
2756 for (i = pc->num_sources, map = pc->sources; i > 0; i --, map ++)
2757 cupsFilePrintf(fp, "Source %s %s\n", map->pwg, map->ppd);
2758 }
2759
2760 /*
2761 * Media types...
2762 */
2763
2764 if (pc->num_types > 0)
2765 {
2766 cupsFilePrintf(fp, "NumTypes %d\n", pc->num_types);
2767 for (i = pc->num_types, map = pc->types; i > 0; i --, map ++)
2768 cupsFilePrintf(fp, "Type %s %s\n", map->pwg, map->ppd);
2769 }
2770
2771 /*
2772 * Presets...
2773 */
2774
2775 for (i = _PWG_PRINT_COLOR_MODE_MONOCHROME; i < _PWG_PRINT_COLOR_MODE_MAX; i ++)
2776 for (j = _PWG_PRINT_QUALITY_DRAFT; j < _PWG_PRINT_QUALITY_MAX; j ++)
2777 if (pc->num_presets[i][j])
2778 {
2779 cupsFilePrintf(fp, "Preset %d %d", i, j);
2780 for (k = pc->num_presets[i][j], option = pc->presets[i][j];
2781 k > 0;
2782 k --, option ++)
2783 cupsFilePrintf(fp, " %s=%s", option->name, option->value);
2784 cupsFilePutChar(fp, '\n');
2785 }
2786
2787 /*
2788 * Duplex/sides...
2789 */
2790
2791 if (pc->sides_option)
2792 cupsFilePrintf(fp, "SidesOption %s\n", pc->sides_option);
2793
2794 if (pc->sides_1sided)
2795 cupsFilePrintf(fp, "Sides1Sided %s\n", pc->sides_1sided);
2796
2797 if (pc->sides_2sided_long)
2798 cupsFilePrintf(fp, "Sides2SidedLong %s\n", pc->sides_2sided_long);
2799
2800 if (pc->sides_2sided_short)
2801 cupsFilePrintf(fp, "Sides2SidedShort %s\n", pc->sides_2sided_short);
2802
2803 /*
2804 * Product, cupsFilter, cupsFilter2, and cupsPreFilter...
2805 */
2806
2807 if (pc->product)
2808 cupsFilePutConf(fp, "Product", pc->product);
2809
2810 for (value = (const char *)cupsArrayFirst(pc->filters);
2811 value;
2812 value = (const char *)cupsArrayNext(pc->filters))
2813 cupsFilePutConf(fp, "Filter", value);
2814
2815 for (value = (const char *)cupsArrayFirst(pc->prefilters);
2816 value;
2817 value = (const char *)cupsArrayNext(pc->prefilters))
2818 cupsFilePutConf(fp, "PreFilter", value);
2819
2820 cupsFilePrintf(fp, "SingleFile %s\n", pc->single_file ? "true" : "false");
2821
2822 /*
2823 * Finishing options...
2824 */
2825
2826 for (f = (_pwg_finishings_t *)cupsArrayFirst(pc->finishings);
2827 f;
2828 f = (_pwg_finishings_t *)cupsArrayNext(pc->finishings))
2829 {
2830 cupsFilePrintf(fp, "Finishings %d", f->value);
2831 for (i = f->num_options, option = f->options; i > 0; i --, option ++)
2832 cupsFilePrintf(fp, " %s=%s", option->name, option->value);
2833 cupsFilePutChar(fp, '\n');
2834 }
2835
2836 /*
2837 * Max copies...
2838 */
2839
2840 cupsFilePrintf(fp, "MaxCopies %d\n", pc->max_copies);
2841
2842 /*
2843 * Accounting/quota/PIN/managed printing values...
2844 */
2845
2846 if (pc->charge_info_uri)
2847 cupsFilePutConf(fp, "ChargeInfoURI", pc->charge_info_uri);
2848
2849 cupsFilePrintf(fp, "AccountId %s\n", pc->account_id ? "true" : "false");
2850 cupsFilePrintf(fp, "AccountingUserId %s\n",
2851 pc->accounting_user_id ? "true" : "false");
2852
2853 if (pc->password)
2854 cupsFilePutConf(fp, "Password", pc->password);
2855
2856 for (value = (char *)cupsArrayFirst(pc->mandatory);
2857 value;
2858 value = (char *)cupsArrayNext(pc->mandatory))
2859 cupsFilePutConf(fp, "Mandatory", value);
2860
2861 /*
2862 * Support files...
2863 */
2864
2865 for (value = (char *)cupsArrayFirst(pc->support_files);
2866 value;
2867 value = (char *)cupsArrayNext(pc->support_files))
2868 cupsFilePutConf(fp, "SupportFile", value);
2869
2870 /*
2871 * 3D stuff...
2872 */
2873
2874 if (pc->cups_3d)
2875 cupsFilePutConf(fp, "3D", pc->cups_3d);
2876
2877 if (pc->cups_layer_order)
2878 cupsFilePutConf(fp, "LayerOrder", pc->cups_layer_order);
2879
2880 if (pc->cups_accuracy[0] || pc->cups_accuracy[0] || pc->cups_accuracy[2])
2881 cupsFilePrintf(fp, "Accuracy %d %d %d\n", pc->cups_accuracy[0], pc->cups_accuracy[1], pc->cups_accuracy[2]);
2882
2883 if (pc->cups_volume[0] || pc->cups_volume[0] || pc->cups_volume[2])
2884 cupsFilePrintf(fp, "Volume %d %d %d\n", pc->cups_volume[0], pc->cups_volume[1], pc->cups_volume[2]);
2885
2886 for (m = (_pwg_material_t *)cupsArrayFirst(pc->materials);
2887 m;
2888 m = (_pwg_material_t *)cupsArrayNext(pc->materials))
2889 {
2890 cupsFilePrintf(fp, "Material %s \"%s\"", m->key, m->name);
2891 for (i = 0; i < m->num_props; i ++)
2892 cupsFilePrintf(fp, " %s=%s", m->props[i].name, m->props[i].value);
2893 cupsFilePuts(fp, "\n");
2894 }
2895
2896 /*
2897 * IPP attributes, if any...
2898 */
2899
2900 if (attrs)
2901 {
2902 cupsFilePrintf(fp, "IPP " CUPS_LLFMT "\n", CUPS_LLCAST ippLength(attrs));
2903
2904 attrs->state = IPP_STATE_IDLE;
2905 ippWriteIO(fp, (ipp_iocb_t)cupsFileWrite, 1, NULL, attrs);
2906 }
2907
2908 /*
2909 * Close and return...
2910 */
2911
2912 if (cupsFileClose(fp))
2913 {
2914 unlink(newfile);
2915 return (0);
2916 }
2917
2918 unlink(filename);
2919 return (!rename(newfile, filename));
2920 }
2921
2922
2923 /*
2924 * '_ppdCreateFromIPP()' - Create a PPD file describing the capabilities
2925 * of an IPP printer.
2926 */
2927
2928 char * /* O - PPD filename or NULL on error */
2929 _ppdCreateFromIPP(char *buffer, /* I - Filename buffer */
2930 size_t bufsize, /* I - Size of filename buffer */
2931 ipp_t *response) /* I - Get-Printer-Attributes response */
2932 {
2933 cups_file_t *fp; /* PPD file */
2934 ipp_attribute_t *attr, /* xxx-supported */
2935 *defattr, /* xxx-default */
2936 *x_dim, *y_dim; /* Media dimensions */
2937 ipp_t *media_size; /* Media size collection */
2938 char make[256], /* Make and model */
2939 *model, /* Model name */
2940 ppdname[PPD_MAX_NAME];
2941 /* PPD keyword */
2942 int i, j, /* Looping vars */
2943 count, /* Number of values */
2944 bottom, /* Largest bottom margin */
2945 left, /* Largest left margin */
2946 right, /* Largest right margin */
2947 top; /* Largest top margin */
2948 pwg_media_t *pwg; /* PWG media size */
2949 int xres, yres; /* Resolution values */
2950 cups_lang_t *lang = cupsLangDefault();
2951 /* Localization info */
2952 struct lconv *loc = localeconv();
2953 /* Locale data */
2954 static const char * const finishings[][2] =
2955 { /* Finishings strings */
2956 { "bale", _("Bale") },
2957 { "bind", _("Bind") },
2958 { "bind-bottom", _("Bind (Reverse Landscape)") },
2959 { "bind-left", _("Bind (Portrait)") },
2960 { "bind-right", _("Bind (Reverse Portrait)") },
2961 { "bind-top", _("Bind (Landscape)") },
2962 { "booklet-maker", _("Booklet Maker") },
2963 { "coat", _("Coat") },
2964 { "cover", _("Cover") },
2965 { "edge-stitch", _("Staple Edge") },
2966 { "edge-stitch-bottom", _("Staple Edge (Reverse Landscape)") },
2967 { "edge-stitch-left", _("Staple Edge (Portrait)") },
2968 { "edge-stitch-right", _("Staple Edge (Reverse Portrait)") },
2969 { "edge-stitch-top", _("Staple Edge (Landscape)") },
2970 { "fold", _("Fold") },
2971 { "fold-accordian", _("Accordian Fold") },
2972 { "fold-double-gate", _("Double Gate Fold") },
2973 { "fold-engineering-z", _("Engineering Z Fold") },
2974 { "fold-gate", _("Gate Fold") },
2975 { "fold-half", _("Half Fold") },
2976 { "fold-half-z", _("Half Z Fold") },
2977 { "fold-left-gate", _("Left Gate Fold") },
2978 { "fold-letter", _("Letter Fold") },
2979 { "fold-parallel", _("Parallel Fold") },
2980 { "fold-poster", _("Poster Fold") },
2981 { "fold-right-gate", _("Right Gate Fold") },
2982 { "fold-z", _("Z Fold") },
2983 { "jog-offset", _("Jog") },
2984 { "laminate", _("Laminate") },
2985 { "punch", _("Punch") },
2986 { "punch-bottom-left", _("Single Punch (Reverse Landscape)") },
2987 { "punch-bottom-right", _("Single Punch (Reverse Portrait)") },
2988 { "punch-double-bottom", _("2-Hole Punch (Reverse Portrait)") },
2989 { "punch-double-left", _("2-Hole Punch (Reverse Landscape)") },
2990 { "punch-double-right", _("2-Hole Punch (Landscape)") },
2991 { "punch-double-top", _("2-Hole Punch (Portrait)") },
2992 { "punch-quad-bottom", _("4-Hole Punch (Reverse Landscape)") },
2993 { "punch-quad-left", _("4-Hole Punch (Portrait)") },
2994 { "punch-quad-right", _("4-Hole Punch (Reverse Portrait)") },
2995 { "punch-quad-top", _("4-Hole Punch (Landscape)") },
2996 { "punch-top-left", _("Single Punch (Portrait)") },
2997 { "punch-top-right", _("Single Punch (Landscape)") },
2998 { "punch-triple-bottom", _("3-Hole Punch (Reverse Landscape)") },
2999 { "punch-triple-left", _("3-Hole Punch (Portrait)") },
3000 { "punch-triple-right", _("3-Hole Punch (Reverse Portrait)") },
3001 { "punch-triple-top", _("3-Hole Punch (Landscape)") },
3002 { "punch-multiple-bottom", _("Multi-Hole Punch (Reverse Landscape)") },
3003 { "punch-multiple-left", _("Multi-Hole Punch (Portrait)") },
3004 { "punch-multiple-right", _("Multi-Hole Punch (Reverse Portrait)") },
3005 { "punch-multiple-top", _("Multi-Hole Punch (Landscape)") },
3006 { "saddle-stitch", _("Saddle Stitch") },
3007 { "staple", _("Staple") },
3008 { "staple-bottom-left", _("Single Staple (Reverse Landscape)") },
3009 { "staple-bottom-right", _("Single Staple (Reverse Portrait)") },
3010 { "staple-dual-bottom", _("Double Staple (Reverse Landscape)") },
3011 { "staple-dual-left", _("Double Staple (Portrait)") },
3012 { "staple-dual-right", _("Double Staple (Reverse Portrait)") },
3013 { "staple-dual-top", _("Double Staple (Landscape)") },
3014 { "staple-top-left", _("Single Staple (Portrait)") },
3015 { "staple-top-right", _("Single Staple (Landscape)") },
3016 { "staple-triple-bottom", _("Triple Staple (Reverse Landscape)") },
3017 { "staple-triple-left", _("Triple Staple (Portrait)") },
3018 { "staple-triple-right", _("Triple Staple (Reverse Portrait)") },
3019 { "staple-triple-top", _("Triple Staple (Landscape)") },
3020 { "trim", _("Cut Media") }
3021 };
3022
3023
3024 /*
3025 * Range check input...
3026 */
3027
3028 if (buffer)
3029 *buffer = '\0';
3030
3031 if (!buffer || bufsize < 1 || !response)
3032 return (NULL);
3033
3034 /*
3035 * Open a temporary file for the PPD...
3036 */
3037
3038 if ((fp = cupsTempFile2(buffer, (int)bufsize)) == NULL)
3039 return (NULL);
3040
3041 /*
3042 * Standard stuff for PPD file...
3043 */
3044
3045 cupsFilePuts(fp, "*PPD-Adobe: \"4.3\"\n");
3046 cupsFilePuts(fp, "*FormatVersion: \"4.3\"\n");
3047 cupsFilePrintf(fp, "*FileVersion: \"%d.%d\"\n", CUPS_VERSION_MAJOR, CUPS_VERSION_MINOR);
3048 cupsFilePuts(fp, "*LanguageVersion: English\n");
3049 cupsFilePuts(fp, "*LanguageEncoding: ISOLatin1\n");
3050 cupsFilePuts(fp, "*PSVersion: \"(3010.000) 0\"\n");
3051 cupsFilePuts(fp, "*LanguageLevel: \"3\"\n");
3052 cupsFilePuts(fp, "*FileSystem: False\n");
3053 cupsFilePuts(fp, "*PCFileName: \"ippeve.ppd\"\n");
3054
3055 if ((attr = ippFindAttribute(response, "printer-make-and-model", IPP_TAG_TEXT)) != NULL)
3056 strlcpy(make, ippGetString(attr, 0, NULL), sizeof(make));
3057 else
3058 strlcpy(make, "Unknown Printer", sizeof(make));
3059
3060 if (!_cups_strncasecmp(make, "Hewlett Packard ", 16) ||
3061 !_cups_strncasecmp(make, "Hewlett-Packard ", 16))
3062 {
3063 model = make + 16;
3064 strlcpy(make, "HP", sizeof(make));
3065 }
3066 else if ((model = strchr(make, ' ')) != NULL)
3067 *model++ = '\0';
3068 else
3069 model = make;
3070
3071 cupsFilePrintf(fp, "*Manufacturer: \"%s\"\n", make);
3072 cupsFilePrintf(fp, "*ModelName: \"%s\"\n", model);
3073 cupsFilePrintf(fp, "*Product: \"(%s)\"\n", model);
3074 cupsFilePrintf(fp, "*NickName: \"%s\"\n", model);
3075 cupsFilePrintf(fp, "*ShortNickName: \"%s\"\n", model);
3076
3077 if ((attr = ippFindAttribute(response, "color-supported", IPP_TAG_BOOLEAN)) != NULL && ippGetBoolean(attr, 0))
3078 cupsFilePuts(fp, "*ColorDevice: True\n");
3079 else
3080 cupsFilePuts(fp, "*ColorDevice: False\n");
3081
3082 cupsFilePrintf(fp, "*cupsVersion: %d.%d\n", CUPS_VERSION_MAJOR, CUPS_VERSION_MINOR);
3083 cupsFilePuts(fp, "*cupsSNMPSupplies: False\n");
3084 cupsFilePuts(fp, "*cupsLanguages: \"en\"\n");
3085
3086 /*
3087 * Filters...
3088 */
3089
3090 if ((attr = ippFindAttribute(response, "document-format-supported", IPP_TAG_MIMETYPE)) != NULL)
3091 {
3092 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3093 {
3094 const char *format = ippGetString(attr, i, NULL);
3095 /* PDL */
3096
3097 if (!_cups_strcasecmp(format, "application/pdf"))
3098 cupsFilePuts(fp, "*cupsFilter2: \"application/vnd.cups-pdf application/pdf 10 -\"\n");
3099 else if (!_cups_strcasecmp(format, "application/postscript"))
3100 cupsFilePuts(fp, "*cupsFilter2: \"application/vnd.cups-postscript application/postscript 10 -\"\n");
3101 else if (_cups_strcasecmp(format, "application/octet-stream") && _cups_strcasecmp(format, "application/vnd.hp-pcl") && _cups_strcasecmp(format, "text/plain"))
3102 cupsFilePrintf(fp, "*cupsFilter2: \"%s %s 10 -\"\n", format, format);
3103 }
3104 }
3105
3106 /*
3107 * PageSize/PageRegion/ImageableArea/PaperDimension
3108 */
3109
3110 if ((attr = ippFindAttribute(response, "media-bottom-margin-supported", IPP_TAG_INTEGER)) != NULL)
3111 {
3112 for (i = 1, bottom = ippGetInteger(attr, 0), count = ippGetCount(attr); i < count; i ++)
3113 if (ippGetInteger(attr, i) > bottom)
3114 bottom = ippGetInteger(attr, i);
3115 }
3116 else
3117 bottom = 1270;
3118
3119 if ((attr = ippFindAttribute(response, "media-left-margin-supported", IPP_TAG_INTEGER)) != NULL)
3120 {
3121 for (i = 1, left = ippGetInteger(attr, 0), count = ippGetCount(attr); i < count; i ++)
3122 if (ippGetInteger(attr, i) > left)
3123 left = ippGetInteger(attr, i);
3124 }
3125 else
3126 left = 635;
3127
3128 if ((attr = ippFindAttribute(response, "media-right-margin-supported", IPP_TAG_INTEGER)) != NULL)
3129 {
3130 for (i = 1, right = ippGetInteger(attr, 0), count = ippGetCount(attr); i < count; i ++)
3131 if (ippGetInteger(attr, i) > right)
3132 right = ippGetInteger(attr, i);
3133 }
3134 else
3135 right = 635;
3136
3137 if ((attr = ippFindAttribute(response, "media-top-margin-supported", IPP_TAG_INTEGER)) != NULL)
3138 {
3139 for (i = 1, top = ippGetInteger(attr, 0), count = ippGetCount(attr); i < count; i ++)
3140 if (ippGetInteger(attr, i) > top)
3141 top = ippGetInteger(attr, i);
3142 }
3143 else
3144 top = 1270;
3145
3146 if ((defattr = ippFindAttribute(response, "media-col-default", IPP_TAG_BEGIN_COLLECTION)) != NULL)
3147 {
3148 if ((attr = ippFindAttribute(ippGetCollection(defattr, 0), "media-size", IPP_TAG_BEGIN_COLLECTION)) != NULL)
3149 {
3150 media_size = ippGetCollection(attr, 0);
3151 x_dim = ippFindAttribute(media_size, "x-dimension", IPP_TAG_INTEGER);
3152 y_dim = ippFindAttribute(media_size, "y-dimension", IPP_TAG_INTEGER);
3153
3154 if (x_dim && y_dim && (pwg = pwgMediaForSize(ippGetInteger(x_dim, 0), ippGetInteger(y_dim, 0))) != NULL)
3155 strlcpy(ppdname, pwg->ppd, sizeof(ppdname));
3156 else
3157 strlcpy(ppdname, "Unknown", sizeof(ppdname));
3158 }
3159 else
3160 strlcpy(ppdname, "Unknown", sizeof(ppdname));
3161 }
3162 else if ((pwg = pwgMediaForPWG(ippGetString(ippFindAttribute(response, "media-default", IPP_TAG_ZERO), 0, NULL))) != NULL)
3163 strlcpy(ppdname, pwg->ppd, sizeof(ppdname));
3164 else
3165 strlcpy(ppdname, "Unknown", sizeof(ppdname));
3166
3167 if ((attr = ippFindAttribute(response, "media-size-supported", IPP_TAG_BEGIN_COLLECTION)) == NULL)
3168 attr = ippFindAttribute(response, "media-supported", IPP_TAG_ZERO);
3169 if (attr)
3170 {
3171 cupsFilePrintf(fp, "*OpenUI *PageSize: PickOne\n"
3172 "*OrderDependency: 10 AnySetup *PageSize\n"
3173 "*DefaultPageSize: %s\n", ppdname);
3174 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3175 {
3176 if (ippGetValueTag(attr) == IPP_TAG_BEGIN_COLLECTION)
3177 {
3178 media_size = ippGetCollection(attr, i);
3179 x_dim = ippFindAttribute(media_size, "x-dimension", IPP_TAG_INTEGER);
3180 y_dim = ippFindAttribute(media_size, "y-dimension", IPP_TAG_INTEGER);
3181
3182 pwg = pwgMediaForSize(ippGetInteger(x_dim, 0), ippGetInteger(y_dim, 0));
3183 }
3184 else
3185 pwg = pwgMediaForPWG(ippGetString(attr, i, NULL));
3186
3187 if (pwg)
3188 {
3189 char twidth[256], /* Width string */
3190 tlength[256]; /* Length string */
3191
3192 _cupsStrFormatd(twidth, twidth + sizeof(twidth), pwg->width * 72.0 / 2540.0, loc);
3193 _cupsStrFormatd(tlength, tlength + sizeof(tlength), pwg->length * 72.0 / 2540.0, loc);
3194
3195 cupsFilePrintf(fp, "*PageSize %s: \"<</PageSize[%s %s]>>setpagedevice\"\n", pwg->ppd, twidth, tlength);
3196 }
3197 }
3198 cupsFilePuts(fp, "*CloseUI: *PageSize\n");
3199
3200 cupsFilePrintf(fp, "*OpenUI *PageRegion: PickOne\n"
3201 "*OrderDependency: 10 AnySetup *PageRegion\n"
3202 "*DefaultPageRegion: %s\n", ppdname);
3203 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3204 {
3205 media_size = ippGetCollection(attr, i);
3206 x_dim = ippFindAttribute(media_size, "x-dimension", IPP_TAG_INTEGER);
3207 y_dim = ippFindAttribute(media_size, "y-dimension", IPP_TAG_INTEGER);
3208
3209 if (x_dim && y_dim && (pwg = pwgMediaForSize(ippGetInteger(x_dim, 0), ippGetInteger(y_dim, 0))) != NULL)
3210 {
3211 char twidth[256], /* Width string */
3212 tlength[256]; /* Length string */
3213
3214 _cupsStrFormatd(twidth, twidth + sizeof(twidth), pwg->width * 72.0 / 2540.0, loc);
3215 _cupsStrFormatd(tlength, tlength + sizeof(tlength), pwg->length * 72.0 / 2540.0, loc);
3216
3217 cupsFilePrintf(fp, "*PageRegion %s: \"<</PageSize[%s %s]>>setpagedevice\"\n", pwg->ppd, twidth, tlength);
3218 }
3219 }
3220 cupsFilePuts(fp, "*CloseUI: *PageRegion\n");
3221
3222 cupsFilePrintf(fp, "*DefaultImageableArea: %s\n"
3223 "*DefaultPaperDimension: %s\n", ppdname, ppdname);
3224 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3225 {
3226 media_size = ippGetCollection(attr, i);
3227 x_dim = ippFindAttribute(media_size, "x-dimension", IPP_TAG_INTEGER);
3228 y_dim = ippFindAttribute(media_size, "y-dimension", IPP_TAG_INTEGER);
3229
3230 if (x_dim && y_dim && (pwg = pwgMediaForSize(ippGetInteger(x_dim, 0), ippGetInteger(y_dim, 0))) != NULL)
3231 {
3232 char tleft[256], /* Left string */
3233 tbottom[256], /* Bottom string */
3234 tright[256], /* Right string */
3235 ttop[256], /* Top string */
3236 twidth[256], /* Width string */
3237 tlength[256]; /* Length string */
3238
3239 _cupsStrFormatd(tleft, tleft + sizeof(tleft), left * 72.0 / 2540.0, loc);
3240 _cupsStrFormatd(tbottom, tbottom + sizeof(tbottom), bottom * 72.0 / 2540.0, loc);
3241 _cupsStrFormatd(tright, tright + sizeof(tright), (pwg->width - right) * 72.0 / 2540.0, loc);
3242 _cupsStrFormatd(ttop, ttop + sizeof(ttop), (pwg->length - top) * 72.0 / 2540.0, loc);
3243 _cupsStrFormatd(twidth, twidth + sizeof(twidth), pwg->width * 72.0 / 2540.0, loc);
3244 _cupsStrFormatd(tlength, tlength + sizeof(tlength), pwg->length * 72.0 / 2540.0, loc);
3245
3246 cupsFilePrintf(fp, "*ImageableArea %s: \"%s %s %s %s\"\n", pwg->ppd, tleft, tbottom, tright, ttop);
3247 cupsFilePrintf(fp, "*PaperDimension %s: \"%s %s\"\n", pwg->ppd, twidth, tlength);
3248 }
3249 }
3250 }
3251
3252 /*
3253 * InputSlot...
3254 */
3255
3256 if ((attr = ippFindAttribute(ippGetCollection(defattr, 0), "media-source", IPP_TAG_ZERO)) != NULL)
3257 pwg_ppdize_name(ippGetString(attr, 0, NULL), ppdname, sizeof(ppdname));
3258 else
3259 strlcpy(ppdname, "Unknown", sizeof(ppdname));
3260
3261 if ((attr = ippFindAttribute(response, "media-source-supported", IPP_TAG_ZERO)) != NULL && (count = ippGetCount(attr)) > 1)
3262 {
3263 static const char * const sources[][2] =
3264 { /* "media-source" strings */
3265 { "Auto", _("Automatic") },
3266 { "Main", _("Main") },
3267 { "Alternate", _("Alternate") },
3268 { "LargeCapacity", _("Large Capacity") },
3269 { "Manual", _("Manual") },
3270 { "Envelope", _("Envelope") },
3271 { "Disc", _("Disc") },
3272 { "Photo", _("Photo") },
3273 { "Hagaki", _("Hagaki") },
3274 { "MainRoll", _("Main Roll") },
3275 { "AlternateRoll", _("Alternate Roll") },
3276 { "Top", _("Top") },
3277 { "Middle", _("Middle") },
3278 { "Bottom", _("Bottom") },
3279 { "Side", _("Side") },
3280 { "Left", _("Left") },
3281 { "Right", _("Right") },
3282 { "Center", _("Center") },
3283 { "Rear", _("Rear") },
3284 { "ByPassTray", _("Multipurpose") },
3285 { "Tray1", _("Tray 1") },
3286 { "Tray2", _("Tray 2") },
3287 { "Tray3", _("Tray 3") },
3288 { "Tray4", _("Tray 4") },
3289 { "Tray5", _("Tray 5") },
3290 { "Tray6", _("Tray 6") },
3291 { "Tray7", _("Tray 7") },
3292 { "Tray8", _("Tray 8") },
3293 { "Tray9", _("Tray 9") },
3294 { "Tray10", _("Tray 10") },
3295 { "Tray11", _("Tray 11") },
3296 { "Tray12", _("Tray 12") },
3297 { "Tray13", _("Tray 13") },
3298 { "Tray14", _("Tray 14") },
3299 { "Tray15", _("Tray 15") },
3300 { "Tray16", _("Tray 16") },
3301 { "Tray17", _("Tray 17") },
3302 { "Tray18", _("Tray 18") },
3303 { "Tray19", _("Tray 19") },
3304 { "Tray20", _("Tray 20") },
3305 { "Roll1", _("Roll 1") },
3306 { "Roll2", _("Roll 2") },
3307 { "Roll3", _("Roll 3") },
3308 { "Roll4", _("Roll 4") },
3309 { "Roll5", _("Roll 5") },
3310 { "Roll6", _("Roll 6") },
3311 { "Roll7", _("Roll 7") },
3312 { "Roll8", _("Roll 8") },
3313 { "Roll9", _("Roll 9") },
3314 { "Roll10", _("Roll 10") }
3315 };
3316
3317 cupsFilePrintf(fp, "*OpenUI *InputSlot: PickOne\n"
3318 "*OrderDependency: 10 AnySetup *InputSlot\n"
3319 "*DefaultInputSlot: %s\n", ppdname);
3320 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3321 {
3322 pwg_ppdize_name(ippGetString(attr, i, NULL), ppdname, sizeof(ppdname));
3323
3324 for (j = 0; j < (int)(sizeof(sources) / sizeof(sources[0])); j ++)
3325 if (!strcmp(sources[j][0], ppdname))
3326 {
3327 cupsFilePrintf(fp, "*InputSlot %s/%s: \"<</MediaPosition %d>>setpagedevice\"\n", ppdname, _cupsLangString(lang, sources[j][1]), j);
3328 break;
3329 }
3330 }
3331 cupsFilePuts(fp, "*CloseUI: *InputSlot\n");
3332 }
3333
3334 /*
3335 * MediaType...
3336 */
3337
3338 if ((attr = ippFindAttribute(ippGetCollection(defattr, 0), "media-type", IPP_TAG_ZERO)) != NULL)
3339 pwg_ppdize_name(ippGetString(attr, 0, NULL), ppdname, sizeof(ppdname));
3340 else
3341 strlcpy(ppdname, "Unknown", sizeof(ppdname));
3342
3343 if ((attr = ippFindAttribute(response, "media-type-supported", IPP_TAG_ZERO)) != NULL && (count = ippGetCount(attr)) > 1)
3344 {
3345 static const char * const media_types[][2] =
3346 { /* "media-type" strings */
3347 { "aluminum", _("Aluminum") },
3348 { "auto", _("Automatic") },
3349 { "back-print-film", _("Back Print Film") },
3350 { "cardboard", _("Cardboard") },
3351 { "cardstock", _("Cardstock") },
3352 { "cd", _("CD") },
3353 { "continuous", _("Continuous") },
3354 { "continuous-long", _("Continuous Long") },
3355 { "continuous-short", _("Continuous Short") },
3356 { "disc", _("Optical Disc") },
3357 { "disc-glossy", _("Glossy Optical Disc") },
3358 { "disc-high-gloss", _("High Gloss Optical Disc") },
3359 { "disc-matte", _("Matte Optical Disc") },
3360 { "disc-satin", _("Satin Optical Disc") },
3361 { "disc-semi-gloss", _("Semi-Gloss Optical Disc") },
3362 { "double-wall", _("Double Wall Cardboard") },
3363 { "dry-film", _("Dry Film") },
3364 { "dvd", _("DVD") },
3365 { "embossing-foil", _("Embossing Foil") },
3366 { "end-board", _("End Board") },
3367 { "envelope", _("Envelope") },
3368 { "envelope-archival", _("Archival Envelope") },
3369 { "envelope-bond", _("Bond Envelope") },
3370 { "envelope-coated", _("Coated Envelope") },
3371 { "envelope-cotton", _("Cotton Envelope") },
3372 { "envelope-fine", _("Fine Envelope") },
3373 { "envelope-heavyweight", _("Heavyweight Envelope") },
3374 { "envelope-inkjet", _("Inkjet Envelope") },
3375 { "envelope-lightweight", _("Lightweight Envelope") },
3376 { "envelope-plain", _("Plain Envelope") },
3377 { "envelope-preprinted", _("Preprinted Envelope") },
3378 { "envelope-window", _("Windowed Envelope") },
3379 { "fabric", _("Fabric") },
3380 { "fabric-archival", _("Archival Fabric") },
3381 { "fabric-glossy", _("Glossy Fabric") },
3382 { "fabric-high-gloss", _("High Gloss Fabric") },
3383 { "fabric-matte", _("Matte Fabric") },
3384 { "fabric-semi-gloss", _("Semi-Gloss Fabric") },
3385 { "fabric-waterproof", _("Waterproof Fabric") },
3386 { "film", _("Film") },
3387 { "flexo-base", _("Flexo Base") },
3388 { "flexo-photo-polymer", _("Flexo Photo Polymer") },
3389 { "flute", _("Flute") },
3390 { "foil", _("Foil") },
3391 { "full-cut-tabs", _("Full Cut Tabs") },
3392 { "glass", _("Glass") },
3393 { "glass-colored", _("Glass Colored") },
3394 { "glass-opaque", _("Glass Opaque") },
3395 { "glass-surfaced", _("Glass Surfaced") },
3396 { "glass-textured", _("Glass Textured") },
3397 { "gravure-cylinder", _("Gravure Cylinder") },
3398 { "image-setter-paper", _("Image Setter Paper") },
3399 { "imaging-cylinder", _("Imaging Cylinder") },
3400 { "labels", _("Labels") },
3401 { "labels-colored", _("Colored Labels") },
3402 { "labels-glossy", _("Glossy Labels") },
3403 { "labels-high-gloss", _("High Gloss Labels") },
3404 { "labels-inkjet", _("Inkjet Labels") },
3405 { "labels-matte", _("Matte Labels") },
3406 { "labels-permanent", _("Permanent Labels") },
3407 { "labels-satin", _("Satin Labels") },
3408 { "labels-security", _("Security Labels") },
3409 { "labels-semi-gloss", _("Semi-Gloss Labels") },
3410 { "laminating-foil", _("Laminating Foil") },
3411 { "letterhead", _("Letterhead") },
3412 { "metal", _("Metal") },
3413 { "metal-glossy", _("Metal Glossy") },
3414 { "metal-high-gloss", _("Metal High Gloss") },
3415 { "metal-matte", _("Metal Matte") },
3416 { "metal-satin", _("Metal Satin") },
3417 { "metal-semi-gloss", _("Metal Semi Gloss") },
3418 { "mounting-tape", _("Mounting Tape") },
3419 { "multi-layer", _("Multi Layer") },
3420 { "multi-part-form", _("Multi Part Form") },
3421 { "other", _("Other") },
3422 { "paper", _("Paper") },
3423 { "photographic", _("Photo Paper") },
3424 { "photographic-archival", _("Photographic Archival") },
3425 { "photographic-film", _("Photo Film") },
3426 { "photographic-glossy", _("Glossy Photo Paper") },
3427 { "photographic-high-gloss", _("High Gloss Photo Paper") },
3428 { "photographic-matte", _("Matte Photo Paper") },
3429 { "photographic-satin", _("Satin Photo Paper") },
3430 { "photographic-semi-gloss", _("Semi-Gloss Photo Paper") },
3431 { "plastic", _("Plastic") },
3432 { "plastic-archival", _("Plastic Archival") },
3433 { "plastic-colored", _("Plastic Colored") },
3434 { "plastic-glossy", _("Plastic Glossy") },
3435 { "plastic-high-gloss", _("Plastic High Gloss") },
3436 { "plastic-matte", _("Plastic Matte") },
3437 { "plastic-satin", _("Plastic Satin") },
3438 { "plastic-semi-gloss", _("Plastic Semi Gloss") },
3439 { "plate", _("Plate") },
3440 { "polyester", _("Polyester") },
3441 { "pre-cut-tabs", _("Pre Cut Tabs") },
3442 { "roll", _("Roll") },
3443 { "screen", _("Screen") },
3444 { "screen-paged", _("Screen Paged") },
3445 { "self-adhesive", _("Self Adhesive") },
3446 { "self-adhesive-film", _("Self Adhesive Film") },
3447 { "shrink-foil", _("Shrink Foil") },
3448 { "single-face", _("Single Face") },
3449 { "single-wall", _("Single Wall Cardboard") },
3450 { "sleeve", _("Sleeve") },
3451 { "stationery", _("Stationery") },
3452 { "stationery-archival", _("Stationery Archival") },
3453 { "stationery-coated", _("Coated Paper") },
3454 { "stationery-cotton", _("Stationery Cotton") },
3455 { "stationery-fine", _("Vellum Paper") },
3456 { "stationery-heavyweight", _("Heavyweight Paper") },
3457 { "stationery-heavyweight-coated", _("Stationery Heavyweight Coated") },
3458 { "stationery-inkjet", _("Stationery Inkjet Paper") },
3459 { "stationery-letterhead", _("Letterhead") },
3460 { "stationery-lightweight", _("Lightweight Paper") },
3461 { "stationery-preprinted", _("Preprinted Paper") },
3462 { "stationery-prepunched", _("Punched Paper") },
3463 { "tab-stock", _("Tab Stock") },
3464 { "tractor", _("Tractor") },
3465 { "transfer", _("Transfer") },
3466 { "transparency", _("Transparency") },
3467 { "triple-wall", _("Triple Wall Cardboard") },
3468 { "wet-film", _("Wet Film") }
3469 };
3470
3471 cupsFilePrintf(fp, "*OpenUI *MediaType: PickOne\n"
3472 "*OrderDependency: 10 AnySetup *MediaType\n"
3473 "*DefaultMediaType: %s\n", ppdname);
3474 for (i = 0; i < (int)(sizeof(media_types) / sizeof(media_types[0])); i ++)
3475 {
3476 if (!ippContainsString(attr, media_types[i][0]))
3477 continue;
3478
3479 pwg_ppdize_name(media_types[i][0], ppdname, sizeof(ppdname));
3480
3481 cupsFilePrintf(fp, "*MediaType %s/%s: \"<</MediaType(%s)>>setpagedevice\"\n", ppdname, _cupsLangString(lang, media_types[i][1]), ppdname);
3482 }
3483 cupsFilePuts(fp, "*CloseUI: *MediaType\n");
3484 }
3485
3486 /*
3487 * ColorModel...
3488 */
3489
3490 if ((attr = ippFindAttribute(response, "pwg-raster-document-type-supported", IPP_TAG_KEYWORD)) == NULL)
3491 if ((attr = ippFindAttribute(response, "urf-supported", IPP_TAG_KEYWORD)) == NULL)
3492 if ((attr = ippFindAttribute(response, "print-color-mode-supported", IPP_TAG_KEYWORD)) == NULL)
3493 attr = ippFindAttribute(response, "output-mode-supported", IPP_TAG_KEYWORD);
3494
3495 if (attr)
3496 {
3497 const char *default_color = NULL; /* Default */
3498
3499 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3500 {
3501 const char *keyword = ippGetString(attr, i, NULL);
3502 /* Keyword for color/bit depth */
3503
3504 if (!strcmp(keyword, "black_1") || !strcmp(keyword, "bi-level") || !strcmp(keyword, "process-bi-level"))
3505 {
3506 if (!default_color)
3507 cupsFilePrintf(fp, "*OpenUI *ColorModel/%s: PickOne\n"
3508 "*OrderDependency: 10 AnySetup *ColorModel\n", _cupsLangString(lang, _("Color Mode")));
3509
3510 cupsFilePrintf(fp, "*ColorModel FastGray/%s: \"<</cupsColorSpace 3/cupsBitsPerColor 1/cupsColorOrder 0/cupsCompression 0>>setpagedevice\"\n", _cupsLangString(lang, _("Fast Grayscale")));
3511
3512 if (!default_color)
3513 default_color = "FastGray";
3514 }
3515 else if (!strcmp(keyword, "sgray_8") || !strcmp(keyword, "W8") || !strcmp(keyword, "monochrome") || !strcmp(keyword, "process-monochrome"))
3516 {
3517 if (!default_color)
3518 cupsFilePrintf(fp, "*OpenUI *ColorModel/%s: PickOne\n"
3519 "*OrderDependency: 10 AnySetup *ColorModel\n", _cupsLangString(lang, _("Color Mode")));
3520
3521 cupsFilePrintf(fp, "*ColorModel Gray/%s: \"<</cupsColorSpace 18/cupsBitsPerColor 8/cupsColorOrder 0/cupsCompression 0>>setpagedevice\"\n", _cupsLangString(lang, _("Grayscale")));
3522
3523 if (!default_color || !strcmp(default_color, "FastGray"))
3524 default_color = "Gray";
3525 }
3526 else if (!strcmp(keyword, "srgb_8") || !strcmp(keyword, "SRGB24") || !strcmp(keyword, "color"))
3527 {
3528 if (!default_color)
3529 cupsFilePrintf(fp, "*OpenUI *ColorModel/%s: PickOne\n"
3530 "*OrderDependency: 10 AnySetup *ColorModel\n", _cupsLangString(lang, _("Color Mode")));
3531
3532 cupsFilePrintf(fp, "*ColorModel RGB/%s: \"<</cupsColorSpace 19/cupsBitsPerColor 8/cupsColorOrder 0/cupsCompression 0>>setpagedevice\"\n", _cupsLangString(lang, _("Color")));
3533
3534 default_color = "RGB";
3535 }
3536 else if (!strcmp(keyword, "adobe-rgb_16") || !strcmp(keyword, "ADOBERGB48"))
3537 {
3538 if (!default_color)
3539 cupsFilePrintf(fp, "*OpenUI *ColorModel/%s: PickOne\n"
3540 "*OrderDependency: 10 AnySetup *ColorModel\n", _cupsLangString(lang, _("Color Mode")));
3541
3542 cupsFilePrintf(fp, "*ColorModel AdobeRGB/%s: \"<</cupsColorSpace 20/cupsBitsPerColor 16/cupsColorOrder 0/cupsCompression 0>>setpagedevice\"\n", _cupsLangString(lang, _("Deep Color")));
3543
3544 default_color = "AdobeRGB";
3545 }
3546 }
3547
3548 if (default_color)
3549 {
3550 cupsFilePrintf(fp, "*DefaultColorModel: %s\n", default_color);
3551 cupsFilePuts(fp, "*CloseUI: *ColorModel\n");
3552 }
3553 }
3554
3555 /*
3556 * Duplex...
3557 */
3558
3559 if ((attr = ippFindAttribute(response, "sides-supported", IPP_TAG_KEYWORD)) != NULL && ippContainsString(attr, "two-sided-long-edge"))
3560 {
3561 cupsFilePrintf(fp, "*OpenUI *Duplex/%s: PickOne\n"
3562 "*OrderDependency: 10 AnySetup *Duplex\n"
3563 "*DefaultDuplex: None\n"
3564 "*Duplex None/%s: \"<</Duplex false>>setpagedevice\"\n"
3565 "*Duplex DuplexNoTumble/%s: \"<</Duplex true/Tumble false>>setpagedevice\"\n"
3566 "*Duplex DuplexTumble/%s: \"<</Duplex true/Tumble true>>setpagedevice\"\n"
3567 "*CloseUI: *Duplex\n", _cupsLangString(lang, _("2-Sided Printing")), _cupsLangString(lang, _("Off (1-Sided)")), _cupsLangString(lang, _("Long-Edge (Portrait)")), _cupsLangString(lang, _("Short-Edge (Landscape)")));
3568
3569 if ((attr = ippFindAttribute(response, "pwg-raster-document-sheet-back", IPP_TAG_KEYWORD)) != NULL)
3570 {
3571 const char *keyword = ippGetString(attr, 0, NULL);
3572 /* Keyword value */
3573
3574 if (!strcmp(keyword, "flipped"))
3575 cupsFilePuts(fp, "*cupsBackSide: Flipped\n");
3576 else if (!strcmp(keyword, "manual-tumble"))
3577 cupsFilePuts(fp, "*cupsBackSide: ManualTumble\n");
3578 else if (!strcmp(keyword, "normal"))
3579 cupsFilePuts(fp, "*cupsBackSide: Normal\n");
3580 else
3581 cupsFilePuts(fp, "*cupsBackSide: Rotated\n");
3582 }
3583 else if ((attr = ippFindAttribute(response, "urf-supported", IPP_TAG_KEYWORD)) != NULL)
3584 {
3585 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3586 {
3587 const char *dm = ippGetString(attr, i, NULL);
3588 /* DM value */
3589
3590 if (!_cups_strcasecmp(dm, "DM1"))
3591 {
3592 cupsFilePuts(fp, "*cupsBackSide: Normal\n");
3593 break;
3594 }
3595 else if (!_cups_strcasecmp(dm, "DM2"))
3596 {
3597 cupsFilePuts(fp, "*cupsBackSide: Flipped\n");
3598 break;
3599 }
3600 else if (!_cups_strcasecmp(dm, "DM3"))
3601 {
3602 cupsFilePuts(fp, "*cupsBackSide: Rotated\n");
3603 break;
3604 }
3605 else if (!_cups_strcasecmp(dm, "DM4"))
3606 {
3607 cupsFilePuts(fp, "*cupsBackSide: ManualTumble\n");
3608 break;
3609 }
3610 }
3611 }
3612 }
3613
3614 /*
3615 * Finishing options...
3616 */
3617
3618 if ((attr = ippFindAttribute(response, "finishings-col-database", IPP_TAG_BEGIN_COLLECTION)) != NULL)
3619 {
3620 ipp_t *col; /* Collection value */
3621 ipp_attribute_t *template; /* "finishing-template" member */
3622 const char *name; /* String name */
3623 int value; /* Enum value, if any */
3624 cups_array_t *names; /* Names we've added */
3625
3626 count = ippGetCount(attr);
3627 names = cupsArrayNew3((cups_array_func_t)strcmp, NULL, NULL, 0, (cups_acopy_func_t)strdup, (cups_afree_func_t)free);
3628
3629 cupsFilePrintf(fp, "*OpenUI *cupsFinishingTemplate/%s: PickMany\n"
3630 "*OrderDependency: 10 AnySetup *cupsFinishingTemplate\n"
3631 "*DefaultcupsFinishingTemplate: none\n"
3632 "*cupsFinishingTemplate none/%s: \"\"\n"
3633 "*cupsIPPFinishings 3/none: \"*cupsFinishingTemplate none\"\n", _cupsLangString(lang, _("Finishing")), _cupsLangString(lang, _("No Finishing")));
3634
3635 for (i = 0; i < count; i ++)
3636 {
3637 col = ippGetCollection(attr, i);
3638 template = ippFindAttribute(col, "finishing-template", IPP_TAG_ZERO);
3639
3640 if ((name = ippGetString(template, 0, NULL)) == NULL || !strcmp(name, "none"))
3641 continue;
3642
3643 if (cupsArrayFind(names, (char *)name))
3644 continue; /* Already did this finishing template */
3645
3646 cupsArrayAdd(names, (char *)name);
3647
3648 for (j = 0; j < (int)(sizeof(finishings) / sizeof(finishings[0])); j ++)
3649 {
3650 if (!strcmp(finishings[j][0], name))
3651 {
3652 cupsFilePrintf(fp, "*cupsFinishingTemplate %s/%s: \"\"\n", name, _cupsLangString(lang, finishings[j][1]));
3653
3654 value = ippEnumValue("finishings", name);
3655
3656 if (value)
3657 cupsFilePrintf(fp, "*cupsIPPFinishings %d/%s: \"*cupsFinishingTemplate %s\"\n", value, name, name);
3658 break;
3659 }
3660 }
3661 }
3662
3663 cupsArrayDelete(names);
3664
3665 cupsFilePuts(fp, "*CloseUI: *cupsFinishingTemplate\n");
3666 }
3667 else if ((attr = ippFindAttribute(response, "finishings-supported", IPP_TAG_ENUM)) != NULL && (count = ippGetCount(attr)) > 1 )
3668 {
3669 const char *name; /* String name */
3670 int value; /* Enum value, if any */
3671
3672 count = ippGetCount(attr);
3673
3674 cupsFilePrintf(fp, "*OpenUI *cupsFinishingTemplate/%s: PickMany\n"
3675 "*OrderDependency: 10 AnySetup *cupsFinishingTemplate\n"
3676 "*DefaultcupsFinishingTemplate: none\n"
3677 "*cupsFinishingTemplate none/%s: \"\"\n"
3678 "*cupsIPPFinishings 3/none: \"*cupsFinishingTemplate none\"\n", _cupsLangString(lang, _("Finishing")), _cupsLangString(lang, _("No Finishing")));
3679
3680 for (i = 0; i < count; i ++)
3681 {
3682 if ((value = ippGetInteger(attr, i)) == 3)
3683 continue;
3684
3685 name = ippEnumString("finishings", value);
3686 for (j = 0; j < (int)(sizeof(finishings) / sizeof(finishings[0])); j ++)
3687 {
3688 if (!strcmp(finishings[j][0], name))
3689 {
3690 cupsFilePrintf(fp, "*cupsFinishingTemplate %s/%s: \"\"\n", name, _cupsLangString(lang, finishings[j][1]));
3691 cupsFilePrintf(fp, "*cupsIPPFinishings %d/%s: \"*cupsFinishingTemplate %s\"\n", value, name, name);
3692 break;
3693 }
3694 }
3695 }
3696
3697 cupsFilePuts(fp, "*CloseUI: *cupsFinishingTemplate\n");
3698 }
3699
3700 /*
3701 * cupsPrintQuality and DefaultResolution...
3702 */
3703
3704 if ((attr = ippFindAttribute(response, "pwg-raster-document-resolution-supported", IPP_TAG_RESOLUTION)) != NULL)
3705 {
3706 count = ippGetCount(attr);
3707
3708 pwg_ppdize_resolution(attr, count / 2, &xres, &yres, ppdname, sizeof(ppdname));
3709 cupsFilePrintf(fp, "*DefaultResolution: %s\n", ppdname);
3710
3711 cupsFilePrintf(fp, "*OpenUI *cupsPrintQuality/%s: PickOne\n"
3712 "*OrderDependency: 10 AnySetup *cupsPrintQuality\n"
3713 "*DefaultcupsPrintQuality: Normal\n", _cupsLangString(lang, _("Print Quality")));
3714 if (count > 2)
3715 {
3716 pwg_ppdize_resolution(attr, 0, &xres, &yres, NULL, 0);
3717 cupsFilePrintf(fp, "*cupsPrintQuality Draft/%s: \"<</HWResolution[%d %d]>>setpagedevice\"\n", _cupsLangString(lang, _("Draft")), xres, yres);
3718 }
3719 pwg_ppdize_resolution(attr, count / 2, &xres, &yres, NULL, 0);
3720 cupsFilePrintf(fp, "*cupsPrintQuality Normal/%s: \"<</HWResolution[%d %d]>>setpagedevice\"\n", _cupsLangString(lang, _("Normal")), xres, yres);
3721 if (count > 1)
3722 {
3723 pwg_ppdize_resolution(attr, count - 1, &xres, &yres, NULL, 0);
3724 cupsFilePrintf(fp, "*cupsPrintQuality High/%s: \"<</HWResolution[%d %d]>>setpagedevice\"\n", _cupsLangString(lang, _("High")), xres, yres);
3725 }
3726
3727 cupsFilePuts(fp, "*CloseUI: *cupsPrintQuality\n");
3728 }
3729 else if ((attr = ippFindAttribute(response, "urf-supported", IPP_TAG_KEYWORD)) != NULL)
3730 {
3731 int lowdpi = 0, hidpi = 0; /* Lower and higher resolution */
3732
3733 for (i = 0, count = ippGetCount(attr); i < count; i ++)
3734 {
3735 const char *rs = ippGetString(attr, i, NULL);
3736 /* RS value */
3737
3738 if (_cups_strncasecmp(rs, "RS", 2))
3739 continue;
3740
3741 lowdpi = atoi(rs + 2);
3742 if ((rs = strrchr(rs, '-')) != NULL)
3743 hidpi = atoi(rs + 1);
3744 else
3745 hidpi = lowdpi;
3746 break;
3747 }
3748
3749 if (lowdpi == 0)
3750 {
3751 /*
3752 * Invalid "urf-supported" value...
3753 */
3754
3755 cupsFilePuts(fp, "*DefaultResolution: 300dpi\n");
3756 }
3757 else
3758 {
3759 /*
3760 * Generate print qualities based on low and high DPIs...
3761 */
3762
3763 cupsFilePrintf(fp, "*DefaultResolution: %ddpi\n", lowdpi);
3764
3765 cupsFilePrintf(fp, "*OpenUI *cupsPrintQuality/%s: PickOne\n"
3766 "*OrderDependency: 10 AnySetup *cupsPrintQuality\n"
3767 "*DefaultcupsPrintQuality: Normal\n", _cupsLangString(lang, _("Print Quality")));
3768 if ((lowdpi & 1) == 0)
3769 cupsFilePrintf(fp, "*cupsPrintQuality Draft/%s: \"<</HWResolution[%d %d]>>setpagedevice\"\n", _cupsLangString(lang, _("Draft")), lowdpi, lowdpi / 2);
3770 cupsFilePrintf(fp, "*cupsPrintQuality Normal/%s: \"<</HWResolution[%d %d]>>setpagedevice\"\n", _cupsLangString(lang, _("Normal")), lowdpi, lowdpi);
3771 if (hidpi > lowdpi)
3772 cupsFilePrintf(fp, "*cupsPrintQuality High/%s: \"<</HWResolution[%d %d]>>setpagedevice\"\n", _cupsLangString(lang, _("High")), hidpi, hidpi);
3773 cupsFilePuts(fp, "*CloseUI: *cupsPrintQuality\n");
3774 }
3775 }
3776 else if ((attr = ippFindAttribute(response, "printer-resolution-default", IPP_TAG_RESOLUTION)) != NULL)
3777 {
3778 pwg_ppdize_resolution(attr, 0, &xres, &yres, ppdname, sizeof(ppdname));
3779 cupsFilePrintf(fp, "*DefaultResolution: %s\n", ppdname);
3780 }
3781 else
3782 cupsFilePuts(fp, "*DefaultResolution: 300dpi\n");
3783
3784 /*
3785 * Close up and return...
3786 */
3787
3788 cupsFileClose(fp);
3789
3790 return (buffer);
3791 }
3792
3793
3794 /*
3795 * '_pwgInputSlotForSource()' - Get the InputSlot name for the given PWG
3796 * media-source.
3797 */
3798
3799 const char * /* O - InputSlot name */
3800 _pwgInputSlotForSource(
3801 const char *media_source, /* I - PWG media-source */
3802 char *name, /* I - Name buffer */
3803 size_t namesize) /* I - Size of name buffer */
3804 {
3805 /*
3806 * Range check input...
3807 */
3808
3809 if (!media_source || !name || namesize < PPD_MAX_NAME)
3810 return (NULL);
3811
3812 if (_cups_strcasecmp(media_source, "main"))
3813 strlcpy(name, "Cassette", namesize);
3814 else if (_cups_strcasecmp(media_source, "alternate"))
3815 strlcpy(name, "Multipurpose", namesize);
3816 else if (_cups_strcasecmp(media_source, "large-capacity"))
3817 strlcpy(name, "LargeCapacity", namesize);
3818 else if (_cups_strcasecmp(media_source, "bottom"))
3819 strlcpy(name, "Lower", namesize);
3820 else if (_cups_strcasecmp(media_source, "middle"))
3821 strlcpy(name, "Middle", namesize);
3822 else if (_cups_strcasecmp(media_source, "top"))
3823 strlcpy(name, "Upper", namesize);
3824 else if (_cups_strcasecmp(media_source, "rear"))
3825 strlcpy(name, "Rear", namesize);
3826 else if (_cups_strcasecmp(media_source, "side"))
3827 strlcpy(name, "Side", namesize);
3828 else if (_cups_strcasecmp(media_source, "envelope"))
3829 strlcpy(name, "Envelope", namesize);
3830 else if (_cups_strcasecmp(media_source, "main-roll"))
3831 strlcpy(name, "Roll", namesize);
3832 else if (_cups_strcasecmp(media_source, "alternate-roll"))
3833 strlcpy(name, "Roll2", namesize);
3834 else
3835 pwg_ppdize_name(media_source, name, namesize);
3836
3837 return (name);
3838 }
3839
3840
3841 /*
3842 * '_pwgMediaTypeForType()' - Get the MediaType name for the given PWG
3843 * media-type.
3844 */
3845
3846 const char * /* O - MediaType name */
3847 _pwgMediaTypeForType(
3848 const char *media_type, /* I - PWG media-type */
3849 char *name, /* I - Name buffer */
3850 size_t namesize) /* I - Size of name buffer */
3851 {
3852 /*
3853 * Range check input...
3854 */
3855
3856 if (!media_type || !name || namesize < PPD_MAX_NAME)
3857 return (NULL);
3858
3859 if (_cups_strcasecmp(media_type, "auto"))
3860 strlcpy(name, "Auto", namesize);
3861 else if (_cups_strcasecmp(media_type, "cardstock"))
3862 strlcpy(name, "Cardstock", namesize);
3863 else if (_cups_strcasecmp(media_type, "envelope"))
3864 strlcpy(name, "Envelope", namesize);
3865 else if (_cups_strcasecmp(media_type, "photographic-glossy"))
3866 strlcpy(name, "Glossy", namesize);
3867 else if (_cups_strcasecmp(media_type, "photographic-high-gloss"))
3868 strlcpy(name, "HighGloss", namesize);
3869 else if (_cups_strcasecmp(media_type, "photographic-matte"))
3870 strlcpy(name, "Matte", namesize);
3871 else if (_cups_strcasecmp(media_type, "stationery"))
3872 strlcpy(name, "Plain", namesize);
3873 else if (_cups_strcasecmp(media_type, "stationery-coated"))
3874 strlcpy(name, "Coated", namesize);
3875 else if (_cups_strcasecmp(media_type, "stationery-inkjet"))
3876 strlcpy(name, "Inkjet", namesize);
3877 else if (_cups_strcasecmp(media_type, "stationery-letterhead"))
3878 strlcpy(name, "Letterhead", namesize);
3879 else if (_cups_strcasecmp(media_type, "stationery-preprinted"))
3880 strlcpy(name, "Preprinted", namesize);
3881 else if (_cups_strcasecmp(media_type, "transparency"))
3882 strlcpy(name, "Transparency", namesize);
3883 else
3884 pwg_ppdize_name(media_type, name, namesize);
3885
3886 return (name);
3887 }
3888
3889
3890 /*
3891 * '_pwgPageSizeForMedia()' - Get the PageSize name for the given media.
3892 */
3893
3894 const char * /* O - PageSize name */
3895 _pwgPageSizeForMedia(
3896 pwg_media_t *media, /* I - Media */
3897 char *name, /* I - PageSize name buffer */
3898 size_t namesize) /* I - Size of name buffer */
3899 {
3900 const char *sizeptr, /* Pointer to size in PWG name */
3901 *dimptr; /* Pointer to dimensions in PWG name */
3902
3903
3904 /*
3905 * Range check input...
3906 */
3907
3908 if (!media || !name || namesize < PPD_MAX_NAME)
3909 return (NULL);
3910
3911 /*
3912 * Copy or generate a PageSize name...
3913 */
3914
3915 if (media->ppd)
3916 {
3917 /*
3918 * Use a standard Adobe name...
3919 */
3920
3921 strlcpy(name, media->ppd, namesize);
3922 }
3923 else if (!media->pwg || !strncmp(media->pwg, "custom_", 7) ||
3924 (sizeptr = strchr(media->pwg, '_')) == NULL ||
3925 (dimptr = strchr(sizeptr + 1, '_')) == NULL ||
3926 (size_t)(dimptr - sizeptr) > namesize)
3927 {
3928 /*
3929 * Use a name of the form "wNNNhNNN"...
3930 */
3931
3932 snprintf(name, namesize, "w%dh%d", (int)PWG_TO_POINTS(media->width),
3933 (int)PWG_TO_POINTS(media->length));
3934 }
3935 else
3936 {
3937 /*
3938 * Copy the size name from class_sizename_dimensions...
3939 */
3940
3941 memcpy(name, sizeptr + 1, (size_t)(dimptr - sizeptr - 1));
3942 name[dimptr - sizeptr - 1] = '\0';
3943 }
3944
3945 return (name);
3946 }
3947
3948
3949 /*
3950 * 'pwg_compare_finishings()' - Compare two finishings values.
3951 */
3952
3953 static int /* O- Result of comparison */
3954 pwg_compare_finishings(
3955 _pwg_finishings_t *a, /* I - First finishings value */
3956 _pwg_finishings_t *b) /* I - Second finishings value */
3957 {
3958 return ((int)b->value - (int)a->value);
3959 }
3960
3961
3962 /*
3963 * 'pwg_free_finishings()' - Free a finishings value.
3964 */
3965
3966 static void
3967 pwg_free_finishings(
3968 _pwg_finishings_t *f) /* I - Finishings value */
3969 {
3970 cupsFreeOptions(f->num_options, f->options);
3971 free(f);
3972 }
3973
3974
3975 /*
3976 * 'pwg_free_material()' - Free a material value.
3977 */
3978
3979 static void
3980 pwg_free_material(_pwg_material_t *m) /* I - Material value */
3981 {
3982 _cupsStrFree(m->key);
3983 _cupsStrFree(m->name);
3984
3985 cupsFreeOptions(m->num_props, m->props);
3986
3987 free(m);
3988 }
3989
3990
3991 /*
3992 * 'pwg_ppdize_name()' - Convert an IPP keyword to a PPD keyword.
3993 */
3994
3995 static void
3996 pwg_ppdize_name(const char *ipp, /* I - IPP keyword */
3997 char *name, /* I - Name buffer */
3998 size_t namesize) /* I - Size of name buffer */
3999 {
4000 char *ptr, /* Pointer into name buffer */
4001 *end; /* End of name buffer */
4002
4003
4004 if (!ipp)
4005 {
4006 *name = '\0';
4007 return;
4008 }
4009
4010 *name = (char)toupper(*ipp++);
4011
4012 for (ptr = name + 1, end = name + namesize - 1; *ipp && ptr < end;)
4013 {
4014 if (*ipp == '-' && _cups_isalnum(ipp[1]))
4015 {
4016 ipp ++;
4017 *ptr++ = (char)toupper(*ipp++ & 255);
4018 }
4019 else
4020 *ptr++ = *ipp++;
4021 }
4022
4023 *ptr = '\0';
4024 }
4025
4026
4027 /*
4028 * 'pwg_ppdize_resolution()' - Convert PWG resolution values to PPD values.
4029 */
4030
4031 static void
4032 pwg_ppdize_resolution(
4033 ipp_attribute_t *attr, /* I - Attribute to convert */
4034 int element, /* I - Element to convert */
4035 int *xres, /* O - X resolution in DPI */
4036 int *yres, /* O - Y resolution in DPI */
4037 char *name, /* I - Name buffer */
4038 size_t namesize) /* I - Size of name buffer */
4039 {
4040 ipp_res_t units; /* Units for resolution */
4041
4042
4043 *xres = ippGetResolution(attr, element, yres, &units);
4044
4045 if (units == IPP_RES_PER_CM)
4046 {
4047 *xres = (int)(*xres * 2.54);
4048 *yres = (int)(*yres * 2.54);
4049 }
4050
4051 if (name && namesize > 4)
4052 {
4053 if (*xres == *yres)
4054 snprintf(name, namesize, "%ddpi", *xres);
4055 else
4056 snprintf(name, namesize, "%dx%ddpi", *xres, *yres);
4057 }
4058 }
4059
4060
4061 /*
4062 * 'pwg_unppdize_name()' - Convert a PPD keyword to a lowercase IPP keyword.
4063 */
4064
4065 static void
4066 pwg_unppdize_name(const char *ppd, /* I - PPD keyword */
4067 char *name, /* I - Name buffer */
4068 size_t namesize, /* I - Size of name buffer */
4069 const char *dashchars)/* I - Characters to be replaced by dashes */
4070 {
4071 char *ptr, /* Pointer into name buffer */
4072 *end; /* End of name buffer */
4073
4074
4075 if (_cups_islower(*ppd))
4076 {
4077 /*
4078 * Already lowercase name, use as-is?
4079 */
4080
4081 const char *ppdptr; /* Pointer into PPD keyword */
4082
4083 for (ppdptr = ppd + 1; *ppdptr; ppdptr ++)
4084 if (_cups_isupper(*ppdptr) || strchr(dashchars, *ppdptr))
4085 break;
4086
4087 if (!*ppdptr)
4088 {
4089 strlcpy(name, ppd, namesize);
4090 return;
4091 }
4092 }
4093
4094 for (ptr = name, end = name + namesize - 1; *ppd && ptr < end; ppd ++)
4095 {
4096 if (_cups_isalnum(*ppd) || *ppd == '-')
4097 *ptr++ = (char)tolower(*ppd & 255);
4098 else if (strchr(dashchars, *ppd))
4099 *ptr++ = '-';
4100 else
4101 *ptr++ = *ppd;
4102
4103 if (!_cups_isupper(*ppd) && _cups_isalnum(*ppd) &&
4104 _cups_isupper(ppd[1]) && ptr < end)
4105 *ptr++ = '-';
4106 else if (!isdigit(*ppd & 255) && isdigit(ppd[1] & 255))
4107 *ptr++ = '-';
4108 }
4109
4110 *ptr = '\0';
4111 }