2 * Option marking routines for CUPS.
4 * Copyright 2007-2017 by Apple Inc.
5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
7 * These coded instructions, statements, and computer programs are the
8 * property of Apple Inc. and are protected by Federal copyright
9 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 * which should have been included with this file. If this file is
11 * missing or damaged, see the license at "http://www.cups.org/".
13 * PostScript is a trademark of Adobe Systems, Inc.
15 * This file is subject to the Apple OS-Developed Software exception.
19 * Include necessary headers...
22 #include "cups-private.h"
23 #include "ppd-private.h"
31 static void ppd_debug_marked(ppd_file_t
*ppd
, const char *title
);
33 # define ppd_debug_marked(ppd,title)
35 static void ppd_defaults(ppd_file_t
*ppd
, ppd_group_t
*g
);
36 static void ppd_mark_choices(ppd_file_t
*ppd
, const char *s
);
37 static void ppd_mark_option(ppd_file_t
*ppd
, const char *option
,
42 * 'cupsMarkOptions()' - Mark command-line options in a PPD file.
44 * This function maps the IPP "finishings", "media", "mirror",
45 * "multiple-document-handling", "output-bin", "print-color-mode",
46 * "print-quality", "printer-resolution", and "sides" attributes to their
47 * corresponding PPD options and choices.
50 int /* O - 1 if conflicts exist, 0 otherwise */
52 ppd_file_t
*ppd
, /* I - PPD file */
53 int num_options
, /* I - Number of options */
54 cups_option_t
*options
) /* I - Options */
56 int i
, j
; /* Looping vars */
57 char *ptr
, /* Pointer into string */
58 s
[255]; /* Temporary string */
59 const char *val
, /* Pointer into value */
60 *media
, /* media option */
61 *output_bin
, /* output-bin option */
62 *page_size
, /* PageSize option */
63 *ppd_keyword
, /* PPD keyword */
64 *print_color_mode
, /* print-color-mode option */
65 *print_quality
, /* print-quality option */
66 *sides
; /* sides option */
67 cups_option_t
*optptr
; /* Current option */
68 ppd_attr_t
*attr
; /* PPD attribute */
69 _ppd_cache_t
*cache
; /* PPD cache and mapping data */
76 if (!ppd
|| num_options
<= 0 || !options
)
79 ppd_debug_marked(ppd
, "Before...");
82 * Do special handling for finishings, media, output-bin, output-mode,
83 * print-color-mode, print-quality, and PageSize...
86 media
= cupsGetOption("media", num_options
, options
);
87 output_bin
= cupsGetOption("output-bin", num_options
, options
);
88 page_size
= cupsGetOption("PageSize", num_options
, options
);
89 print_quality
= cupsGetOption("print-quality", num_options
, options
);
90 sides
= cupsGetOption("sides", num_options
, options
);
92 if ((print_color_mode
= cupsGetOption("print-color-mode", num_options
,
94 print_color_mode
= cupsGetOption("output-mode", num_options
, options
);
96 if ((media
|| output_bin
|| print_color_mode
|| print_quality
|| sides
) &&
100 * Load PPD cache and mapping data as needed...
103 ppd
->cache
= _ppdCacheCreateWithPPD(ppd
);
111 * Loop through the option string, separating it at commas and marking each
112 * individual option as long as the corresponding PPD option (PageSize,
113 * InputSlot, etc.) is not also set.
115 * For PageSize, we also check for an empty option value since some versions
116 * of macOS use it to specify auto-selection of the media based solely on
120 for (val
= media
; *val
;)
123 * Extract the sub-option from the string...
126 for (ptr
= s
; *val
&& *val
!= ',' && (size_t)(ptr
- s
) < (sizeof(s
) - 1);)
137 if (!page_size
|| !page_size
[0])
139 if (!_cups_strncasecmp(s
, "Custom.", 7) || ppdPageSize(ppd
, s
))
140 ppd_mark_option(ppd
, "PageSize", s
);
141 else if ((ppd_keyword
= _ppdCacheGetPageSize(cache
, NULL
, s
, NULL
)) != NULL
)
142 ppd_mark_option(ppd
, "PageSize", ppd_keyword
);
145 if (cache
&& cache
->source_option
&&
146 !cupsGetOption(cache
->source_option
, num_options
, options
) &&
147 (ppd_keyword
= _ppdCacheGetInputSlot(cache
, NULL
, s
)) != NULL
)
148 ppd_mark_option(ppd
, cache
->source_option
, ppd_keyword
);
150 if (!cupsGetOption("MediaType", num_options
, options
) &&
151 (ppd_keyword
= _ppdCacheGetMediaType(cache
, NULL
, s
)) != NULL
)
152 ppd_mark_option(ppd
, "MediaType", ppd_keyword
);
158 if (!cupsGetOption("com.apple.print.DocumentTicket.PMSpoolFormat",
159 num_options
, options
) &&
160 !cupsGetOption("APPrinterPreset", num_options
, options
) &&
161 (print_color_mode
|| print_quality
))
164 * Map output-mode and print-quality to a preset...
167 _pwg_print_color_mode_t pwg_pcm
;/* print-color-mode index */
168 _pwg_print_quality_t pwg_pq
; /* print-quality index */
169 cups_option_t
*preset
;/* Current preset option */
171 if (print_color_mode
&& !strcmp(print_color_mode
, "monochrome"))
172 pwg_pcm
= _PWG_PRINT_COLOR_MODE_MONOCHROME
;
174 pwg_pcm
= _PWG_PRINT_COLOR_MODE_COLOR
;
178 pwg_pq
= (_pwg_print_quality_t
)(atoi(print_quality
) - IPP_QUALITY_DRAFT
);
179 if (pwg_pq
< _PWG_PRINT_QUALITY_DRAFT
)
180 pwg_pq
= _PWG_PRINT_QUALITY_DRAFT
;
181 else if (pwg_pq
> _PWG_PRINT_QUALITY_HIGH
)
182 pwg_pq
= _PWG_PRINT_QUALITY_HIGH
;
185 pwg_pq
= _PWG_PRINT_QUALITY_NORMAL
;
187 if (cache
->num_presets
[pwg_pcm
][pwg_pq
] == 0)
190 * Try to find a preset that works so that we maximize the chances of us
191 * getting a good print using IPP attributes.
194 if (cache
->num_presets
[pwg_pcm
][_PWG_PRINT_QUALITY_NORMAL
] > 0)
195 pwg_pq
= _PWG_PRINT_QUALITY_NORMAL
;
196 else if (cache
->num_presets
[_PWG_PRINT_COLOR_MODE_COLOR
][pwg_pq
] > 0)
197 pwg_pcm
= _PWG_PRINT_COLOR_MODE_COLOR
;
200 pwg_pq
= _PWG_PRINT_QUALITY_NORMAL
;
201 pwg_pcm
= _PWG_PRINT_COLOR_MODE_COLOR
;
205 if (cache
->num_presets
[pwg_pcm
][pwg_pq
] > 0)
208 * Copy the preset options as long as the corresponding names are not
209 * already defined in the IPP request...
212 for (i
= cache
->num_presets
[pwg_pcm
][pwg_pq
],
213 preset
= cache
->presets
[pwg_pcm
][pwg_pq
];
217 if (!cupsGetOption(preset
->name
, num_options
, options
))
218 ppd_mark_option(ppd
, preset
->name
, preset
->value
);
223 if (output_bin
&& !cupsGetOption("OutputBin", num_options
, options
) &&
224 (ppd_keyword
= _ppdCacheGetOutputBin(cache
, output_bin
)) != NULL
)
227 * Map output-bin to OutputBin...
230 ppd_mark_option(ppd
, "OutputBin", ppd_keyword
);
233 if (sides
&& cache
->sides_option
&&
234 !cupsGetOption(cache
->sides_option
, num_options
, options
))
237 * Map sides to duplex option...
240 if (!strcmp(sides
, "one-sided") && cache
->sides_1sided
)
241 ppd_mark_option(ppd
, cache
->sides_option
, cache
->sides_1sided
);
242 else if (!strcmp(sides
, "two-sided-long-edge") &&
243 cache
->sides_2sided_long
)
244 ppd_mark_option(ppd
, cache
->sides_option
, cache
->sides_2sided_long
);
245 else if (!strcmp(sides
, "two-sided-short-edge") &&
246 cache
->sides_2sided_short
)
247 ppd_mark_option(ppd
, cache
->sides_option
, cache
->sides_2sided_short
);
252 * Mark other options...
255 for (i
= num_options
, optptr
= options
; i
> 0; i
--, optptr
++)
257 if (!_cups_strcasecmp(optptr
->name
, "media") ||
258 !_cups_strcasecmp(optptr
->name
, "output-bin") ||
259 !_cups_strcasecmp(optptr
->name
, "output-mode") ||
260 !_cups_strcasecmp(optptr
->name
, "print-quality") ||
261 !_cups_strcasecmp(optptr
->name
, "sides"))
263 else if (!_cups_strcasecmp(optptr
->name
, "resolution") ||
264 !_cups_strcasecmp(optptr
->name
, "printer-resolution"))
266 ppd_mark_option(ppd
, "Resolution", optptr
->value
);
267 ppd_mark_option(ppd
, "SetResolution", optptr
->value
);
268 /* Calcomp, Linotype, QMS, Summagraphics, Tektronix, Varityper */
269 ppd_mark_option(ppd
, "JCLResolution", optptr
->value
);
271 ppd_mark_option(ppd
, "CNRes_PGP", optptr
->value
);
274 else if (!_cups_strcasecmp(optptr
->name
, "multiple-document-handling"))
276 if (!cupsGetOption("Collate", num_options
, options
) &&
277 ppdFindOption(ppd
, "Collate"))
279 if (_cups_strcasecmp(optptr
->value
, "separate-documents-uncollated-copies"))
280 ppd_mark_option(ppd
, "Collate", "True");
282 ppd_mark_option(ppd
, "Collate", "False");
285 else if (!_cups_strcasecmp(optptr
->name
, "finishings"))
288 * Lookup cupsIPPFinishings attributes for each value...
291 for (ptr
= optptr
->value
; *ptr
;)
294 * Get the next finishings number...
297 if (!isdigit(*ptr
& 255))
300 if ((j
= (int)strtol(ptr
, &ptr
, 10)) < 3)
304 * Skip separator as needed...
311 * Look it up in the PPD file...
316 if ((attr
= ppdFindAttr(ppd
, "cupsIPPFinishings", s
)) == NULL
)
320 * Apply "*Option Choice" settings from the attribute value...
323 ppd_mark_choices(ppd
, attr
->value
);
326 else if (!_cups_strcasecmp(optptr
->name
, "APPrinterPreset"))
329 * Lookup APPrinterPreset value...
332 if ((attr
= ppdFindAttr(ppd
, "APPrinterPreset", optptr
->value
)) != NULL
)
335 * Apply "*Option Choice" settings from the attribute value...
338 ppd_mark_choices(ppd
, attr
->value
);
341 else if (!_cups_strcasecmp(optptr
->name
, "mirror"))
342 ppd_mark_option(ppd
, "MirrorPrint", optptr
->value
);
344 ppd_mark_option(ppd
, optptr
->name
, optptr
->value
);
349 int pq
= atoi(print_quality
); /* print-quaity value */
351 if (pq
== IPP_QUALITY_DRAFT
)
352 ppd_mark_option(ppd
, "cupsPrintQuality", "Draft");
353 else if (pq
== IPP_QUALITY_HIGH
)
354 ppd_mark_option(ppd
, "cupsPrintQuality", "High");
356 ppd_mark_option(ppd
, "cupsPrintQuality", "Normal");
359 ppd_debug_marked(ppd
, "After...");
361 return (ppdConflicts(ppd
) > 0);
366 * 'ppdFindChoice()' - Return a pointer to an option choice.
369 ppd_choice_t
* /* O - Choice pointer or @code NULL@ */
370 ppdFindChoice(ppd_option_t
*o
, /* I - Pointer to option */
371 const char *choice
) /* I - Name of choice */
373 int i
; /* Looping var */
374 ppd_choice_t
*c
; /* Current choice */
380 if (choice
[0] == '{' || !_cups_strncasecmp(choice
, "Custom.", 7))
383 for (i
= o
->num_choices
, c
= o
->choices
; i
> 0; i
--, c
++)
384 if (!_cups_strcasecmp(c
->choice
, choice
))
392 * 'ppdFindMarkedChoice()' - Return the marked choice for the specified option.
395 ppd_choice_t
* /* O - Pointer to choice or @code NULL@ */
396 ppdFindMarkedChoice(ppd_file_t
*ppd
, /* I - PPD file */
397 const char *option
) /* I - Keyword/option name */
399 ppd_choice_t key
, /* Search key for choice */
400 *marked
; /* Marked choice */
403 DEBUG_printf(("2ppdFindMarkedChoice(ppd=%p, option=\"%s\")", ppd
, option
));
405 if ((key
.option
= ppdFindOption(ppd
, option
)) == NULL
)
407 DEBUG_puts("3ppdFindMarkedChoice: Option not found, returning NULL");
411 marked
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
);
413 DEBUG_printf(("3ppdFindMarkedChoice: Returning %p(%s)...", marked
,
414 marked
? marked
->choice
: "NULL"));
421 * 'ppdFindOption()' - Return a pointer to the specified option.
424 ppd_option_t
* /* O - Pointer to option or @code NULL@ */
425 ppdFindOption(ppd_file_t
*ppd
, /* I - PPD file data */
426 const char *option
) /* I - Option/Keyword name */
429 * Range check input...
438 * Search in the array...
441 ppd_option_t key
; /* Option search key */
444 strlcpy(key
.keyword
, option
, sizeof(key
.keyword
));
446 return ((ppd_option_t
*)cupsArrayFind(ppd
->options
, &key
));
451 * Search in each group...
454 int i
, j
; /* Looping vars */
455 ppd_group_t
*group
; /* Current group */
456 ppd_option_t
*optptr
; /* Current option */
459 for (i
= ppd
->num_groups
, group
= ppd
->groups
; i
> 0; i
--, group
++)
460 for (j
= group
->num_options
, optptr
= group
->options
;
463 if (!_cups_strcasecmp(optptr
->keyword
, option
))
472 * 'ppdIsMarked()' - Check to see if an option is marked.
475 int /* O - Non-zero if option is marked */
476 ppdIsMarked(ppd_file_t
*ppd
, /* I - PPD file data */
477 const char *option
, /* I - Option/Keyword name */
478 const char *choice
) /* I - Choice name */
480 ppd_choice_t key
, /* Search key */
481 *c
; /* Choice pointer */
487 if ((key
.option
= ppdFindOption(ppd
, option
)) == NULL
)
490 if ((c
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
)) == NULL
)
493 return (!strcmp(c
->choice
, choice
));
498 * 'ppdMarkDefaults()' - Mark all default options in the PPD file.
502 ppdMarkDefaults(ppd_file_t
*ppd
) /* I - PPD file record */
504 int i
; /* Looping variables */
505 ppd_group_t
*g
; /* Current group */
506 ppd_choice_t
*c
; /* Current choice */
513 * Clean out the marked array...
516 for (c
= (ppd_choice_t
*)cupsArrayFirst(ppd
->marked
);
518 c
= (ppd_choice_t
*)cupsArrayNext(ppd
->marked
))
520 cupsArrayRemove(ppd
->marked
, c
);
525 * Then repopulate it with the defaults...
528 for (i
= ppd
->num_groups
, g
= ppd
->groups
; i
> 0; i
--, g
++)
529 ppd_defaults(ppd
, g
);
532 * Finally, tag any conflicts (API compatibility) once at the end.
540 * 'ppdMarkOption()' - Mark an option in a PPD file and return the number of
544 int /* O - Number of conflicts */
545 ppdMarkOption(ppd_file_t
*ppd
, /* I - PPD file record */
546 const char *option
, /* I - Keyword */
547 const char *choice
) /* I - Option name */
549 DEBUG_printf(("ppdMarkOption(ppd=%p, option=\"%s\", choice=\"%s\")",
550 ppd
, option
, choice
));
553 * Range check input...
556 if (!ppd
|| !option
|| !choice
)
563 ppd_mark_option(ppd
, option
, choice
);
566 * Return the number of conflicts...
569 return (ppdConflicts(ppd
));
574 * 'ppdFirstOption()' - Return the first option in the PPD file.
576 * Options are returned from all groups in ascending alphanumeric order.
578 * @since CUPS 1.2/macOS 10.5@
581 ppd_option_t
* /* O - First option or @code NULL@ */
582 ppdFirstOption(ppd_file_t
*ppd
) /* I - PPD file */
587 return ((ppd_option_t
*)cupsArrayFirst(ppd
->options
));
592 * 'ppdNextOption()' - Return the next option in the PPD file.
594 * Options are returned from all groups in ascending alphanumeric order.
596 * @since CUPS 1.2/macOS 10.5@
599 ppd_option_t
* /* O - Next option or @code NULL@ */
600 ppdNextOption(ppd_file_t
*ppd
) /* I - PPD file */
605 return ((ppd_option_t
*)cupsArrayNext(ppd
->options
));
610 * '_ppdParseOptions()' - Parse options from a PPD file.
612 * This function looks for strings of the form:
614 * *option choice ... *optionN choiceN
615 * property value ... propertyN valueN
617 * It stops when it finds a string that doesn't match this format.
620 int /* O - Number of options */
622 const char *s
, /* I - String to parse */
623 int num_options
, /* I - Number of options */
624 cups_option_t
**options
, /* IO - Options */
625 _ppd_parse_t which
) /* I - What to parse */
627 char option
[PPD_MAX_NAME
* 2 + 1], /* Current option/property */
628 choice
[PPD_MAX_NAME
], /* Current choice/value */
629 *ptr
; /* Pointer into option or choice */
633 return (num_options
);
636 * Read all of the "*Option Choice" and "property value" pairs from the
637 * string, add them to an options array as we go...
643 * Skip leading whitespace...
646 while (_cups_isspace(*s
))
650 * Get the option/property name...
654 while (*s
&& !_cups_isspace(*s
) && ptr
< (option
+ sizeof(option
) - 1))
657 if (ptr
== s
|| !_cups_isspace(*s
))
666 while (_cups_isspace(*s
))
673 while (*s
&& !_cups_isspace(*s
) && ptr
< (choice
+ sizeof(choice
) - 1))
676 if (*s
&& !_cups_isspace(*s
))
682 * Add it to the options array...
685 if (option
[0] == '*' && which
!= _PPD_PARSE_PROPERTIES
)
686 num_options
= cupsAddOption(option
+ 1, choice
, num_options
, options
);
687 else if (option
[0] != '*' && which
!= _PPD_PARSE_OPTIONS
)
688 num_options
= cupsAddOption(option
, choice
, num_options
, options
);
691 return (num_options
);
697 * 'ppd_debug_marked()' - Output the marked array to stdout...
701 ppd_debug_marked(ppd_file_t
*ppd
, /* I - PPD file data */
702 const char *title
) /* I - Title for list */
704 ppd_choice_t
*c
; /* Current choice */
707 DEBUG_printf(("2cupsMarkOptions: %s", title
));
709 for (c
= (ppd_choice_t
*)cupsArrayFirst(ppd
->marked
);
711 c
= (ppd_choice_t
*)cupsArrayNext(ppd
->marked
))
712 DEBUG_printf(("2cupsMarkOptions: %s=%s", c
->option
->keyword
, c
->choice
));
718 * 'ppd_defaults()' - Set the defaults for this group and all sub-groups.
722 ppd_defaults(ppd_file_t
*ppd
, /* I - PPD file */
723 ppd_group_t
*g
) /* I - Group to default */
725 int i
; /* Looping var */
726 ppd_option_t
*o
; /* Current option */
727 ppd_group_t
*sg
; /* Current sub-group */
730 for (i
= g
->num_options
, o
= g
->options
; i
> 0; i
--, o
++)
731 if (_cups_strcasecmp(o
->keyword
, "PageRegion") != 0)
732 ppd_mark_option(ppd
, o
->keyword
, o
->defchoice
);
734 for (i
= g
->num_subgroups
, sg
= g
->subgroups
; i
> 0; i
--, sg
++)
735 ppd_defaults(ppd
, sg
);
740 * 'ppd_mark_choices()' - Mark one or more option choices from a string.
744 ppd_mark_choices(ppd_file_t
*ppd
, /* I - PPD file */
745 const char *s
) /* I - "*Option Choice ..." string */
747 int i
, /* Looping var */
748 num_options
; /* Number of options */
749 cups_option_t
*options
, /* Options */
750 *option
; /* Current option */
757 num_options
= _ppdParseOptions(s
, 0, &options
, 0);
759 for (i
= num_options
, option
= options
; i
> 0; i
--, option
++)
760 ppd_mark_option(ppd
, option
->name
, option
->value
);
762 cupsFreeOptions(num_options
, options
);
767 * 'ppd_mark_option()' - Quick mark an option without checking for conflicts.
771 ppd_mark_option(ppd_file_t
*ppd
, /* I - PPD file */
772 const char *option
, /* I - Option name */
773 const char *choice
) /* I - Choice name */
775 int i
, j
; /* Looping vars */
776 ppd_option_t
*o
; /* Option pointer */
777 ppd_choice_t
*c
, /* Choice pointer */
778 *oldc
, /* Old choice pointer */
779 key
; /* Search key for choice */
780 struct lconv
*loc
; /* Locale data */
783 DEBUG_printf(("7ppd_mark_option(ppd=%p, option=\"%s\", choice=\"%s\")",
784 ppd
, option
, choice
));
787 * AP_D_InputSlot is the "default input slot" on macOS, and setting
788 * it clears the regular InputSlot choices...
791 if (!_cups_strcasecmp(option
, "AP_D_InputSlot"))
793 cupsArraySave(ppd
->options
);
795 if ((o
= ppdFindOption(ppd
, "InputSlot")) != NULL
)
798 if ((oldc
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
)) != NULL
)
801 cupsArrayRemove(ppd
->marked
, oldc
);
805 cupsArrayRestore(ppd
->options
);
809 * Check for custom options...
812 cupsArraySave(ppd
->options
);
814 o
= ppdFindOption(ppd
, option
);
816 cupsArrayRestore(ppd
->options
);
823 if (!_cups_strncasecmp(choice
, "Custom.", 7))
826 * Handle a custom option...
829 if ((c
= ppdFindChoice(o
, "Custom")) == NULL
)
832 if (!_cups_strcasecmp(option
, "PageSize"))
835 * Handle custom page sizes...
838 ppdPageSize(ppd
, choice
);
843 * Handle other custom options...
846 ppd_coption_t
*coption
; /* Custom option */
847 ppd_cparam_t
*cparam
; /* Custom parameter */
848 char *units
; /* Custom points units */
851 if ((coption
= ppdFindCustomOption(ppd
, option
)) != NULL
)
853 if ((cparam
= (ppd_cparam_t
*)cupsArrayFirst(coption
->params
)) == NULL
)
856 switch (cparam
->type
)
858 case PPD_CUSTOM_CURVE
:
859 case PPD_CUSTOM_INVCURVE
:
860 case PPD_CUSTOM_REAL
:
861 cparam
->current
.custom_real
= (float)_cupsStrScand(choice
+ 7,
865 case PPD_CUSTOM_POINTS
:
866 cparam
->current
.custom_points
= (float)_cupsStrScand(choice
+ 7,
872 if (!_cups_strcasecmp(units
, "cm"))
873 cparam
->current
.custom_points
*= 72.0f
/ 2.54f
;
874 else if (!_cups_strcasecmp(units
, "mm"))
875 cparam
->current
.custom_points
*= 72.0f
/ 25.4f
;
876 else if (!_cups_strcasecmp(units
, "m"))
877 cparam
->current
.custom_points
*= 72.0f
/ 0.0254f
;
878 else if (!_cups_strcasecmp(units
, "in"))
879 cparam
->current
.custom_points
*= 72.0f
;
880 else if (!_cups_strcasecmp(units
, "ft"))
881 cparam
->current
.custom_points
*= 12.0f
* 72.0f
;
885 case PPD_CUSTOM_INT
:
886 cparam
->current
.custom_int
= atoi(choice
+ 7);
889 case PPD_CUSTOM_PASSCODE
:
890 case PPD_CUSTOM_PASSWORD
:
891 case PPD_CUSTOM_STRING
:
892 if (cparam
->current
.custom_string
)
893 _cupsStrFree(cparam
->current
.custom_string
);
895 cparam
->current
.custom_string
= _cupsStrAlloc(choice
+ 7);
902 * Make sure that we keep the option marked below...
907 else if (choice
[0] == '{')
910 * Handle multi-value custom options...
913 ppd_coption_t
*coption
; /* Custom option */
914 ppd_cparam_t
*cparam
; /* Custom parameter */
915 char *units
; /* Custom points units */
916 int num_vals
; /* Number of values */
917 cups_option_t
*vals
, /* Values */
921 if ((c
= ppdFindChoice(o
, "Custom")) == NULL
)
924 if ((coption
= ppdFindCustomOption(ppd
, option
)) != NULL
)
926 num_vals
= cupsParseOptions(choice
, 0, &vals
);
928 for (i
= 0, val
= vals
; i
< num_vals
; i
++, val
++)
930 if ((cparam
= ppdFindCustomParam(coption
, val
->name
)) == NULL
)
933 switch (cparam
->type
)
935 case PPD_CUSTOM_CURVE
:
936 case PPD_CUSTOM_INVCURVE
:
937 case PPD_CUSTOM_REAL
:
938 cparam
->current
.custom_real
= (float)_cupsStrScand(val
->value
,
942 case PPD_CUSTOM_POINTS
:
943 cparam
->current
.custom_points
= (float)_cupsStrScand(val
->value
,
949 if (!_cups_strcasecmp(units
, "cm"))
950 cparam
->current
.custom_points
*= 72.0f
/ 2.54f
;
951 else if (!_cups_strcasecmp(units
, "mm"))
952 cparam
->current
.custom_points
*= 72.0f
/ 25.4f
;
953 else if (!_cups_strcasecmp(units
, "m"))
954 cparam
->current
.custom_points
*= 72.0f
/ 0.0254f
;
955 else if (!_cups_strcasecmp(units
, "in"))
956 cparam
->current
.custom_points
*= 72.0f
;
957 else if (!_cups_strcasecmp(units
, "ft"))
958 cparam
->current
.custom_points
*= 12.0f
* 72.0f
;
962 case PPD_CUSTOM_INT
:
963 cparam
->current
.custom_int
= atoi(val
->value
);
966 case PPD_CUSTOM_PASSCODE
:
967 case PPD_CUSTOM_PASSWORD
:
968 case PPD_CUSTOM_STRING
:
969 if (cparam
->current
.custom_string
)
970 _cupsStrFree(cparam
->current
.custom_string
);
972 cparam
->current
.custom_string
= _cupsStrRetain(val
->value
);
977 cupsFreeOptions(num_vals
, vals
);
982 for (i
= o
->num_choices
, c
= o
->choices
; i
> 0; i
--, c
++)
983 if (!_cups_strcasecmp(c
->choice
, choice
))
991 * Option found; mark it and then handle unmarking any other options.
994 if (o
->ui
!= PPD_UI_PICKMANY
)
997 * Unmark all other choices...
1000 if ((oldc
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, c
)) != NULL
)
1003 cupsArrayRemove(ppd
->marked
, oldc
);
1006 if (!_cups_strcasecmp(option
, "PageSize") || !_cups_strcasecmp(option
, "PageRegion"))
1009 * Mark current page size...
1012 for (j
= 0; j
< ppd
->num_sizes
; j
++)
1013 ppd
->sizes
[j
].marked
= !_cups_strcasecmp(ppd
->sizes
[j
].name
,
1017 * Unmark the current PageSize or PageRegion setting, as
1021 cupsArraySave(ppd
->options
);
1023 if (!_cups_strcasecmp(option
, "PageSize"))
1025 if ((o
= ppdFindOption(ppd
, "PageRegion")) != NULL
)
1028 if ((oldc
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
)) != NULL
)
1031 cupsArrayRemove(ppd
->marked
, oldc
);
1037 if ((o
= ppdFindOption(ppd
, "PageSize")) != NULL
)
1040 if ((oldc
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
)) != NULL
)
1043 cupsArrayRemove(ppd
->marked
, oldc
);
1048 cupsArrayRestore(ppd
->options
);
1050 else if (!_cups_strcasecmp(option
, "InputSlot"))
1053 * Unmark ManualFeed option...
1056 cupsArraySave(ppd
->options
);
1058 if ((o
= ppdFindOption(ppd
, "ManualFeed")) != NULL
)
1061 if ((oldc
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
)) != NULL
)
1064 cupsArrayRemove(ppd
->marked
, oldc
);
1068 cupsArrayRestore(ppd
->options
);
1070 else if (!_cups_strcasecmp(option
, "ManualFeed") &&
1071 !_cups_strcasecmp(choice
, "True"))
1074 * Unmark InputSlot option...
1077 cupsArraySave(ppd
->options
);
1079 if ((o
= ppdFindOption(ppd
, "InputSlot")) != NULL
)
1082 if ((oldc
= (ppd_choice_t
*)cupsArrayFind(ppd
->marked
, &key
)) != NULL
)
1085 cupsArrayRemove(ppd
->marked
, oldc
);
1089 cupsArrayRestore(ppd
->options
);
1095 cupsArrayAdd(ppd
->marked
, c
);