1 /* PostScript Printer Description (PPD) file parser
3 * See http://www.adobe.com/supportservice/devrelations/PDFS/TN/5003.PPD_Spec_v4.3.pdf
5 * Copyright 1998 Huw D M Davies
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
33 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(psdrv
);
48 const char *ptr
, *pos
, *end
;
51 /* map of page names in ppd file to Windows paper constants */
57 {"10x11", DMPAPER_10X11
},
58 {"10x14", DMPAPER_10X14
},
59 {"11x17", DMPAPER_11X17
}, /* not in Adobe PPD file spec */
60 {"12x11", DMPAPER_12X11
},
61 {"15x11", DMPAPER_15X11
},
62 {"9x11", DMPAPER_9X11
},
65 {"A3.Transverse", DMPAPER_A3_TRANSVERSE
},
66 {"A3Extra", DMPAPER_A3_EXTRA
},
67 {"A3Extra.Transverse", DMPAPER_A3_EXTRA_TRANSVERSE
},
68 {"A3Rotated", DMPAPER_A3_ROTATED
},
70 {"A4.Transverse", DMPAPER_A4_TRANSVERSE
},
71 {"A4Extra", DMPAPER_A4_EXTRA
},
72 {"A4Plus", DMPAPER_A4_PLUS
},
73 {"A4Rotated", DMPAPER_A4_ROTATED
},
74 {"A4Small", DMPAPER_A4SMALL
},
76 {"A5.Transverse", DMPAPER_A5_TRANSVERSE
},
77 {"A5Extra", DMPAPER_A5_EXTRA
},
78 {"A5Rotated", DMPAPER_A5_ROTATED
},
80 {"A6Rotated", DMPAPER_A6_ROTATED
},
81 {"ARCHC", DMPAPER_CSHEET
},
82 {"ARCHD", DMPAPER_DSHEET
},
83 {"ARCHE", DMPAPER_ESHEET
},
85 {"B4Rotated", DMPAPER_B4_JIS_ROTATED
},
87 {"B5.Transverse", DMPAPER_B5_TRANSVERSE
},
88 {"B5Rotated", DMPAPER_B5_JIS_ROTATED
},
89 {"B6", DMPAPER_B6_JIS
},
90 {"B6Rotated", DMPAPER_B6_JIS_ROTATED
},
91 {"C4", DMPAPER_ENV_C4
}, /* use EnvC4 */
92 {"C5", DMPAPER_ENV_C5
}, /* use EnvC5 */
93 {"C6", DMPAPER_ENV_C6
}, /* use EnvC6 */
94 {"Comm10", DMPAPER_ENV_10
}, /* use Env10 */
95 {"DL", DMPAPER_ENV_DL
}, /* use EnvDL */
96 {"DoublePostcard", DMPAPER_DBL_JAPANESE_POSTCARD
},
97 {"DoublePostcardRotated", DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED
},
98 {"Env10", DMPAPER_ENV_10
},
99 {"Env11", DMPAPER_ENV_11
},
100 {"Env12", DMPAPER_ENV_12
},
101 {"Env14", DMPAPER_ENV_14
},
102 {"Env9", DMPAPER_ENV_9
},
103 {"EnvC3", DMPAPER_ENV_C3
},
104 {"EnvC4", DMPAPER_ENV_C4
},
105 {"EnvC5", DMPAPER_ENV_C5
},
106 {"EnvC6", DMPAPER_ENV_C6
},
107 {"EnvC65", DMPAPER_ENV_C65
},
108 {"EnvChou3", DMPAPER_JENV_CHOU3
},
109 {"EnvChou3Rotated", DMPAPER_JENV_CHOU3_ROTATED
},
110 {"EnvChou4", DMPAPER_JENV_CHOU4
},
111 {"EnvChou4Rotated", DMPAPER_JENV_CHOU4_ROTATED
},
112 {"EnvDL", DMPAPER_ENV_DL
},
113 {"EnvISOB4", DMPAPER_ENV_B4
},
114 {"EnvISOB5", DMPAPER_ENV_B5
},
115 {"EnvISOB6", DMPAPER_ENV_B6
},
116 {"EnvInvite", DMPAPER_ENV_INVITE
},
117 {"EnvItalian", DMPAPER_ENV_ITALY
},
118 {"EnvKaku2", DMPAPER_JENV_KAKU2
},
119 {"EnvKaku2Rotated", DMPAPER_JENV_KAKU2_ROTATED
},
120 {"EnvKaku3", DMPAPER_JENV_KAKU3
},
121 {"EnvKaku3Rotated", DMPAPER_JENV_KAKU3_ROTATED
},
122 {"EnvMonarch", DMPAPER_ENV_MONARCH
},
123 {"EnvPRC1", DMPAPER_PENV_1
},
124 {"EnvPRC10", DMPAPER_PENV_10
},
125 {"EnvPRC10Rotated", DMPAPER_PENV_10_ROTATED
},
126 {"EnvPRC1Rotated", DMPAPER_PENV_1_ROTATED
},
127 {"EnvPRC2", DMPAPER_PENV_2
},
128 {"EnvPRC2Rotated", DMPAPER_PENV_2_ROTATED
},
129 {"EnvPRC3", DMPAPER_PENV_3
},
130 {"EnvPRC3Rotated", DMPAPER_PENV_3_ROTATED
},
131 {"EnvPRC4", DMPAPER_PENV_4
},
132 {"EnvPRC4Rotated", DMPAPER_PENV_4_ROTATED
},
133 {"EnvPRC5", DMPAPER_PENV_5
},
134 {"EnvPRC5Rotated", DMPAPER_PENV_5_ROTATED
},
135 {"EnvPRC6", DMPAPER_PENV_6
},
136 {"EnvPRC6Rotated", DMPAPER_PENV_6_ROTATED
},
137 {"EnvPRC7", DMPAPER_PENV_7
},
138 {"EnvPRC7Rotated", DMPAPER_PENV_7_ROTATED
},
139 {"EnvPRC8", DMPAPER_PENV_8
},
140 {"EnvPRC8Rotated", DMPAPER_PENV_8_ROTATED
},
141 {"EnvPRC9", DMPAPER_PENV_9
},
142 {"EnvPRC9Rotated", DMPAPER_PENV_9_ROTATED
},
143 {"EnvPersonal", DMPAPER_ENV_PERSONAL
},
144 {"EnvYou4", DMPAPER_JENV_YOU4
},
145 {"EnvYou4Rotated", DMPAPER_JENV_YOU4_ROTATED
},
146 {"Executive", DMPAPER_EXECUTIVE
},
147 {"FanFoldGerman", DMPAPER_FANFOLD_STD_GERMAN
},
148 {"FanFoldGermanLegal", DMPAPER_FANFOLD_LGL_GERMAN
},
149 {"FanFoldUS", DMPAPER_FANFOLD_US
},
150 {"Folio", DMPAPER_FOLIO
},
151 {"ISOB4", DMPAPER_ISO_B4
},
152 {"ISOB5Extra", DMPAPER_B5_EXTRA
},
153 {"Ledger", DMPAPER_LEDGER
},
154 {"Legal", DMPAPER_LEGAL
},
155 {"LegalExtra", DMPAPER_LEGAL_EXTRA
},
156 {"Letter", DMPAPER_LETTER
},
157 {"Letter.Transverse", DMPAPER_LETTER_TRANSVERSE
},
158 {"LetterExtra", DMPAPER_LETTER_EXTRA
},
159 {"LetterExtra.Transverse", DMPAPER_LETTER_EXTRA_TRANSVERSE
},
160 {"LetterPlus", DMPAPER_LETTER_PLUS
},
161 {"LetterRotated", DMPAPER_LETTER_ROTATED
},
162 {"LetterSmall", DMPAPER_LETTERSMALL
},
163 {"Monarch", DMPAPER_ENV_MONARCH
}, /* use EnvMonarch */
164 {"Note", DMPAPER_NOTE
},
165 {"PRC16K", DMPAPER_P16K
},
166 {"PRC16KRotated", DMPAPER_P16K_ROTATED
},
167 {"PRC32K", DMPAPER_P32K
},
168 {"PRC32KBig", DMPAPER_P32KBIG
},
169 {"PRC32KBigRotated", DMPAPER_P32KBIG_ROTATED
},
170 {"PRC32KRotated", DMPAPER_P32K_ROTATED
},
171 {"Postcard", DMPAPER_JAPANESE_POSTCARD
},
172 {"PostcardRotated", DMPAPER_JAPANESE_POSTCARD_ROTATED
},
173 {"Quarto", DMPAPER_QUARTO
},
174 {"Statement", DMPAPER_STATEMENT
},
175 {"SuperA", DMPAPER_A_PLUS
},
176 {"SuperB", DMPAPER_B_PLUS
},
177 {"Tabloid", DMPAPER_TABLOID
},
178 {"TabloidExtra", DMPAPER_TABLOID_EXTRA
},
182 static WORD UserPageType
= DMPAPER_USER
;
183 static WORD UserBinType
= DMBIN_USER
;
185 /***********************************************************************
189 * Copies str into a newly allocated string from the process heap substituting
190 * hex strings enclosed in '<' and '>' for their byte codes.
193 static char *PSDRV_PPDDecodeHex(char *str
)
195 char *buf
, *in
, *out
;
198 buf
= HeapAlloc(PSDRV_Heap
, 0, strlen(str
) + 1);
202 for(in
= str
, out
= buf
; *in
; in
++) {
213 else if(isspace(*in
))
217 if(!isxdigit(*in
) || !isxdigit(*(in
+ 1))) {
218 ERR("Invalid hex char in hex string\n");
219 HeapFree(PSDRV_Heap
, 0, buf
);
223 for(i
= 0; i
< 2; i
++) {
224 if(isdigit(*(in
+ i
)))
225 *out
|= (*(in
+ i
) - '0') << ((1-i
) * 4);
227 *out
|= (toupper(*(in
+ i
)) - 'A' + 10) << ((1-i
) * 4);
239 /***********************************************************************
241 * PSDRV_PPDGetTransValue
244 static BOOL
PSDRV_PPDGetTransValue(const char *start
, PPDTuple
*tuple
)
249 end
= strpbrk(start
, "\r\n");
250 if(end
== start
) return FALSE
;
251 if(!end
) end
= start
+ strlen(start
);
252 buf
= HeapAlloc( PSDRV_Heap
, 0, end
- start
+ 1 );
253 memcpy(buf
, start
, end
- start
);
254 *(buf
+ (end
- start
)) = '\0';
255 tuple
->valtrans
= PSDRV_PPDDecodeHex(buf
);
256 HeapFree( PSDRV_Heap
, 0, buf
);
260 static BOOL
get_line( char *buf
, int size
, struct map_context
*ctx
)
263 if (ctx
->pos
> ctx
->end
) return FALSE
;
265 for (i
= 0; i
< size
- 1; i
++)
267 if (ctx
->pos
> ctx
->end
) break;
268 buf
[i
] = *ctx
->pos
++;
271 if (buf
[i
] == '\r' && ctx
->pos
<= ctx
->end
&& *ctx
->pos
== '\n')
277 if (buf
[i
] == '\n' || buf
[i
] == '\r')
287 /***********************************************************************
289 * PSDRV_PPDGetInvocationValue
291 * Passed string that should be surrounded by `"'s, return string alloced
294 static BOOL
PSDRV_PPDGetInvocationValue(struct map_context
*ctx
, PPDTuple
*tuple
)
297 char *buf
, line
[257];
299 assert( *ctx
->pos
== '"' );
302 for (start
= ctx
->pos
; ctx
->pos
<= ctx
->end
; ctx
->pos
++)
303 if (*ctx
->pos
== '"') break;
304 if (ctx
->pos
> ctx
->end
) return FALSE
;
307 buf
= HeapAlloc( PSDRV_Heap
, 0, ctx
->pos
- start
);
308 memcpy( buf
, start
, ctx
->pos
- start
- 1 );
309 buf
[ctx
->pos
- start
- 1] = '\0';
312 if (get_line( line
, sizeof(line
), ctx
))
314 start
= strchr( line
, '/' );
315 if (start
) return PSDRV_PPDGetTransValue( start
+ 1, tuple
);
321 /***********************************************************************
323 * PSDRV_PPDGetQuotedValue
325 * Passed string that should be surrounded by `"'s. Expand <xx> as hex
326 * return string alloced from process heap.
328 static BOOL
PSDRV_PPDGetQuotedValue(struct map_context
*ctx
, PPDTuple
*tuple
)
332 if(!PSDRV_PPDGetInvocationValue(ctx
, tuple
))
334 buf
= PSDRV_PPDDecodeHex(tuple
->value
);
335 HeapFree(PSDRV_Heap
, 0, tuple
->value
);
341 /***********************************************************************
343 * PSDRV_PPDGetStringValue
345 * Just strip leading white space.
347 static BOOL
PSDRV_PPDGetStringValue(char *str
, PPDTuple
*tuple
)
349 char *start
= str
, *end
;
351 while(*start
!= '\0' && isspace(*start
))
354 end
= strpbrk(start
, "/\r\n");
355 if(!end
) end
= start
+ strlen(start
);
356 tuple
->value
= HeapAlloc( PSDRV_Heap
, 0, (end
- start
) + 1 );
357 memcpy(tuple
->value
, start
, end
- start
);
358 *(tuple
->value
+ (end
- start
)) = '\0';
360 PSDRV_PPDGetTransValue(end
+ 1, tuple
);
365 /***********************************************************************
367 * PSDRV_PPDSymbolValue
369 * Not implemented yet.
371 static BOOL
PSDRV_PPDGetSymbolValue(char *pos
, PPDTuple
*tuple
)
378 /*********************************************************************
380 * PSDRV_PPDGetNextTuple
382 * Gets the next Keyword Option Value tuple from the file. Allocs space off
383 * the process heap which should be free()ed by the caller if not needed.
385 static BOOL
PSDRV_PPDGetNextTuple(struct map_context
*ctx
, PPDTuple
*tuple
)
387 char line
[257], *opt
, *cp
, *trans
, *endkey
;
389 struct map_context save
;
395 memset(tuple
, 0, sizeof(*tuple
));
399 if(!get_line(line
, sizeof(line
), ctx
))
401 if(line
[0] == '*' && line
[1] != '%' && strncmp(line
, "*End", 4))
405 cp
= line
+ strlen(line
) - 1;
406 if (*cp
!= '\n' && *cp
!= '\r')
408 ERR("Line too long.\n");
412 for(cp
= line
; !isspace(*cp
) && *cp
!= ':'; cp
++)
416 while (isspace(*cp
)) cp
++;
417 if (*cp
== ':') /* <key>: */
419 else /* <key> <option> */
422 tuple
->key
= HeapAlloc( PSDRV_Heap
, 0, endkey
- line
+ 1 );
423 if(!tuple
->key
) return FALSE
;
425 memcpy(tuple
->key
, line
, endkey
- line
);
426 tuple
->key
[endkey
- line
] = '\0';
428 if(gotoption
) { /* opt points to 1st non-space character of the option */
429 cp
= strpbrk(opt
, ":/");
431 ERR("Error in line '%s'?\n", line
);
432 HeapFree(GetProcessHeap(), 0, tuple
->key
);
435 tuple
->option
= HeapAlloc( PSDRV_Heap
, 0, cp
- opt
+ 1 );
436 if(!tuple
->option
) return FALSE
;
437 memcpy(tuple
->option
, opt
, cp
- opt
);
438 tuple
->option
[cp
- opt
] = '\0';
442 cp
= strchr(trans
, ':');
444 ERR("Error in line '%s'?\n", line
);
445 HeapFree(GetProcessHeap(), 0, tuple
->option
);
446 HeapFree(GetProcessHeap(), 0, tuple
->key
);
449 buf
= HeapAlloc( PSDRV_Heap
, 0, cp
- trans
+ 1 );
450 if(!buf
) return FALSE
;
451 memcpy(buf
, trans
, cp
- trans
);
452 buf
[cp
- trans
] = '\0';
453 tuple
->opttrans
= PSDRV_PPDDecodeHex(buf
);
454 HeapFree( PSDRV_Heap
, 0, buf
);
458 /* cp should point to a ':', so we increment past it */
466 /* update the context pos so that it points to the opening quote */
467 ctx
->pos
= save
.pos
+ (cp
- line
);
468 if( (!gotoption
&& strncmp(tuple
->key
, "*?", 2) ) ||
469 !strncmp(tuple
->key
, "*JCL", 4))
470 PSDRV_PPDGetQuotedValue(ctx
, tuple
);
472 PSDRV_PPDGetInvocationValue(ctx
, tuple
);
476 PSDRV_PPDGetSymbolValue(cp
, tuple
);
480 PSDRV_PPDGetStringValue(cp
, tuple
);
485 /*********************************************************************
488 * Searches ppd PageSize list to return entry matching name or optionally creates new
489 * entry which is appended to the list if name is not found.
491 static PAGESIZE
*get_pagesize( PPD
*ppd
, char *name
, BOOL create
)
495 LIST_FOR_EACH_ENTRY(page
, &ppd
->PageSizes
, PAGESIZE
, entry
)
497 if(!strcmp(page
->Name
, name
))
501 if (!create
) return NULL
;
503 page
= HeapAlloc( PSDRV_Heap
, HEAP_ZERO_MEMORY
, sizeof(*page
) );
504 list_add_tail(&ppd
->PageSizes
, &page
->entry
);
508 static DUPLEX
*get_duplex( PPD
*ppd
, const char *name
)
512 LIST_FOR_EACH_ENTRY( duplex
, &ppd
->Duplexes
, DUPLEX
, entry
)
514 if (!strcmp( duplex
->Name
, name
))
521 /**********************************************************************
525 * Returns ptr alloced from heap to first word in str. Strips leading spaces.
526 * Puts ptr to next word in next
528 static char *PSDRV_PPDGetWord(char *str
, char **next
)
530 char *start
, *end
, *ret
;
533 while(start
&& *start
&& isspace(*start
))
535 if(!start
|| !*start
) return FALSE
;
538 while(*end
&& !isspace(*end
))
541 ret
= HeapAlloc( PSDRV_Heap
, 0, end
- start
+ 1 );
542 memcpy(ret
, start
, end
- start
);
543 *(ret
+ (end
- start
)) = '\0';
545 while(*end
&& isspace(*end
))
555 /************************************************************
558 * Helper to extract x and y resolutions from a resolution entry.
559 * Returns TRUE on successful parsing, otherwise FALSE.
561 * The ppd spec says that entries can either be:
565 * in the former case return sz.cx == cx.cy == nnn.
567 * There are broken ppd files out there (notably from Samsung) that
568 * use the form "nnnmmmdpi", so we have to work harder to spot these.
569 * We use a transition from a zero to a non-zero digit as separator
570 * (and fail if we find more than one of these). We also don't bother
571 * trying to parse "dpi" in case that's missing.
573 static BOOL
parse_resolution(const char *str
, SIZE
*sz
)
580 if(sscanf(str
, "%dx%d", tmp
, tmp
+ 1) == 2)
591 for(c
= str
; isdigit(*c
); c
++)
593 if(!had_zero
|| *c
== '0')
609 if(tmp
[0] == 0) return FALSE
;
619 /*******************************************************************************
623 static BOOL
PSDRV_AddSlot(PPD
*ppd
, LPCSTR szName
, LPCSTR szFullName
,
624 LPSTR szInvocationString
, WORD wWinBin
)
626 INPUTSLOT
*slot
= HeapAlloc( PSDRV_Heap
, 0, sizeof(INPUTSLOT
) );
627 if (!slot
) return FALSE
;
630 slot
->FullName
= szFullName
;
631 slot
->InvocationString
= szInvocationString
;
632 slot
->WinBin
= wWinBin
;
634 list_add_tail( &ppd
->InputSlots
, &slot
->entry
);
638 static char *get_ppd_override( HANDLE printer
, const char *value
)
640 DWORD err
, type
, needed
;
643 err
= GetPrinterDataExA( printer
, "PPD Overrides", value
, &type
, NULL
, 0, &needed
);
644 if (err
!= ERROR_MORE_DATA
|| type
!= REG_SZ
|| needed
== 0) return NULL
;
646 data
= HeapAlloc( PSDRV_Heap
, 0, needed
);
649 GetPrinterDataExA( printer
, "PPD Overrides", value
, &type
, (BYTE
*)data
, needed
, &needed
);
650 TRACE( "got override %s: %s\n", value
, data
);
655 static BOOL
map_file( const WCHAR
*filename
, struct map_context
*c
)
657 HANDLE file
, mapping
;
660 file
= CreateFileW( filename
, GENERIC_READ
, 0, NULL
, OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
661 if (file
== INVALID_HANDLE_VALUE
) return FALSE
;
663 if (!GetFileSizeEx( file
, &size
) || size
.u
.HighPart
)
669 mapping
= CreateFileMappingW( file
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
671 if (!mapping
) return FALSE
;
673 c
->pos
= c
->ptr
= MapViewOfFile( mapping
, FILE_MAP_READ
, 0, 0, 0 );
674 c
->end
= c
->ptr
+ size
.u
.LowPart
- 1;
675 CloseHandle( mapping
);
679 static void unmap_file( struct map_context
*c
)
681 UnmapViewOfFile( c
->ptr
);
684 /***********************************************************************
690 PPD
*PSDRV_ParsePPD( const WCHAR
*fname
, HANDLE printer
)
694 char *default_pagesize
= NULL
, *default_duplex
= NULL
;
695 char *def_pagesize_override
= NULL
, *def_duplex_override
= NULL
;
696 PAGESIZE
*page
, *page_cursor2
;
697 struct map_context c
;
699 TRACE("file %s\n", debugstr_w(fname
));
701 if (!map_file( fname
, &c
))
703 WARN("Couldn't open ppd file %s\n", debugstr_w(fname
));
707 ppd
= HeapAlloc( PSDRV_Heap
, HEAP_ZERO_MEMORY
, sizeof(*ppd
));
709 ERR("Unable to allocate memory for ppd\n");
714 ppd
->ColorDevice
= CD_NotSpecified
;
716 list_init( &ppd
->Resolutions
);
717 list_init( &ppd
->InstalledFonts
);
718 list_init( &ppd
->PageSizes
);
719 list_init( &ppd
->Constraints
);
720 list_init( &ppd
->InputSlots
);
721 list_init( &ppd
->Duplexes
);
723 /* Some gimp-print ppd files don't contain a DefaultResolution line
725 ppd
->DefaultResolution
= 300;
728 * The Windows PostScript drivers create the following "virtual bin" for
729 * every PostScript printer
731 if (!PSDRV_AddSlot( ppd
, NULL
, "Automatically Select", NULL
, DMBIN_FORMSOURCE
))
733 HeapFree (PSDRV_Heap
, 0, ppd
);
738 while (PSDRV_PPDGetNextTuple( &c
, &tuple
))
740 if(!strcmp("*NickName", tuple
.key
)) {
741 ppd
->NickName
= tuple
.value
;
743 TRACE("NickName = '%s'\n", ppd
->NickName
);
746 else if(!strcmp("*LanguageLevel", tuple
.key
)) {
747 sscanf(tuple
.value
, "%d", &(ppd
->LanguageLevel
));
748 TRACE("LanguageLevel = %d\n", ppd
->LanguageLevel
);
751 else if(!strcmp("*ColorDevice", tuple
.key
)) {
752 if(!strcasecmp(tuple
.value
, "true"))
753 ppd
->ColorDevice
= CD_True
;
755 ppd
->ColorDevice
= CD_False
;
756 TRACE("ColorDevice = %s\n", ppd
->ColorDevice
== CD_True
? "True" : "False");
759 else if((!strcmp("*DefaultResolution", tuple
.key
)) ||
760 (!strcmp("*DefaultJCLResolution", tuple
.key
))) {
762 if(parse_resolution(tuple
.value
, &sz
))
764 TRACE("DefaultResolution %dx%d\n", sz
.cx
, sz
.cy
);
765 ppd
->DefaultResolution
= sz
.cx
;
768 WARN("failed to parse DefaultResolution %s\n", debugstr_a(tuple
.value
));
771 else if(!strcmp("*Resolution", tuple
.key
))
774 if (parse_resolution(tuple
.option
, &sz
))
778 TRACE("Resolution %dx%d, invocation %s\n", sz
.cx
, sz
.cy
, tuple
.value
);
780 res
= HeapAlloc( GetProcessHeap(), 0, sizeof(*res
) );
783 res
->InvocationString
= tuple
.value
;
785 list_add_tail( &ppd
->Resolutions
, &res
->entry
);
788 WARN("failed to parse Resolution %s\n", debugstr_a(tuple
.option
));
791 else if(!strcmp("*Font", tuple
.key
))
793 FONTNAME
*fn
= HeapAlloc( PSDRV_Heap
, 0, sizeof(*fn
) );
794 fn
->Name
= tuple
.option
;
796 list_add_tail( &ppd
->InstalledFonts
, &fn
->entry
);
799 else if(!strcmp("*DefaultFont", tuple
.key
)) {
800 ppd
->DefaultFont
= tuple
.value
;
804 else if(!strcmp("*JCLBegin", tuple
.key
)) {
805 ppd
->JCLBegin
= tuple
.value
;
809 else if(!strcmp("*JCLToPSInterpreter", tuple
.key
)) {
810 ppd
->JCLToPSInterpreter
= tuple
.value
;
814 else if(!strcmp("*JCLEnd", tuple
.key
)) {
815 ppd
->JCLEnd
= tuple
.value
;
819 else if(!strcmp("*PageSize", tuple
.key
))
821 page
= get_pagesize( ppd
, tuple
.option
, TRUE
);
824 page
->Name
= tuple
.option
;
827 if(!page
->FullName
) {
829 page
->FullName
= tuple
.opttrans
;
830 tuple
.opttrans
= NULL
;
833 page
->FullName
= HeapAlloc( PSDRV_Heap
, 0, strlen(page
->Name
)+1 );
834 strcpy( page
->FullName
, page
->Name
);
837 if(!page
->InvocationString
) {
838 page
->InvocationString
= tuple
.value
;
844 for (i
= 0; PageTrans
[i
].PSName
; i
++)
846 if (!strcmp( PageTrans
[i
].PSName
, page
->Name
))
848 page
->WinPage
= PageTrans
[i
].WinPage
;
854 TRACE( "Can't find Windows page type for %s - using %u\n", debugstr_a(page
->Name
), UserPageType
);
855 page
->WinPage
= UserPageType
++;
860 else if(!strcmp("*DefaultPageSize", tuple
.key
))
862 if (!default_pagesize
)
864 default_pagesize
= tuple
.value
;
869 else if(!strcmp("*ImageableArea", tuple
.key
)) {
870 page
= get_pagesize( ppd
, tuple
.option
, TRUE
);
873 page
->Name
= tuple
.option
;
876 if(!page
->FullName
) {
877 page
->FullName
= tuple
.opttrans
;
878 tuple
.opttrans
= NULL
;
881 #define PIA page->ImageableArea
883 PIA
= HeapAlloc( PSDRV_Heap
, 0, sizeof(*PIA
) );
884 push_lc_numeric("C");
885 sscanf(tuple
.value
, "%f%f%f%f", &PIA
->llx
, &PIA
->lly
,
886 &PIA
->urx
, &PIA
->ury
);
892 else if(!strcmp("*PaperDimension", tuple
.key
)) {
893 page
= get_pagesize( ppd
, tuple
.option
, TRUE
);
896 page
->Name
= tuple
.option
;
899 if(!page
->FullName
) {
900 page
->FullName
= tuple
.opttrans
;
901 tuple
.opttrans
= NULL
;
904 #define PD page->PaperDimension
906 PD
= HeapAlloc( PSDRV_Heap
, 0, sizeof(*PD
) );
907 push_lc_numeric("C");
908 sscanf(tuple
.value
, "%f%f", &PD
->x
, &PD
->y
);
914 else if(!strcmp("*LandscapeOrientation", tuple
.key
)) {
915 if(!strcmp(tuple
.value
, "Plus90"))
916 ppd
->LandscapeOrientation
= 90;
917 else if(!strcmp(tuple
.value
, "Minus90"))
918 ppd
->LandscapeOrientation
= -90;
920 /* anything else, namely 'any', leaves value at 0 */
922 TRACE("LandscapeOrientation = %d\n",
923 ppd
->LandscapeOrientation
);
926 else if(!strcmp("*UIConstraints", tuple
.key
))
929 CONSTRAINT
*con
= HeapAlloc( PSDRV_Heap
, 0, sizeof(*con
) );
932 con
->Feature1
= PSDRV_PPDGetWord(start
, &start
);
933 con
->Value1
= PSDRV_PPDGetWord(start
, &start
);
934 con
->Feature2
= PSDRV_PPDGetWord(start
, &start
);
935 con
->Value2
= PSDRV_PPDGetWord(start
, &start
);
937 list_add_tail( &ppd
->Constraints
, &con
->entry
);
940 else if (!strcmp("*InputSlot", tuple
.key
))
944 tuple
.opttrans
= tuple
.option
;
946 TRACE("Using Windows bin type %u for '%s'\n", UserBinType
,
949 /* FIXME - should check for failure */
950 PSDRV_AddSlot(ppd
, tuple
.option
, tuple
.opttrans
, tuple
.value
,
953 tuple
.option
= tuple
.opttrans
= tuple
.value
= NULL
;
957 * Windows treats "manual feed" as another paper source. Most PPD
958 * files, however, treat it as a separate option which is either on or
961 else if (!strcmp("*ManualFeed", tuple
.key
) && tuple
.option
&&
962 !strcmp ("True", tuple
.option
))
964 /* FIXME - should check for failure */
965 PSDRV_AddSlot(ppd
, "Manual Feed", "Manual Feed", tuple
.value
, DMBIN_MANUAL
);
969 else if(!strcmp("*TTRasterizer", tuple
.key
)) {
970 if(!strcasecmp("None", tuple
.value
))
971 ppd
->TTRasterizer
= RO_None
;
972 else if(!strcasecmp("Accept68K", tuple
.value
))
973 ppd
->TTRasterizer
= RO_Accept68K
;
974 else if(!strcasecmp("Type42", tuple
.value
))
975 ppd
->TTRasterizer
= RO_Type42
;
976 else if(!strcasecmp("TrueImage", tuple
.value
))
977 ppd
->TTRasterizer
= RO_TrueImage
;
979 FIXME("Unknown option %s for *TTRasterizer\n",
981 ppd
->TTRasterizer
= RO_None
;
983 TRACE("*TTRasterizer = %d\n", ppd
->TTRasterizer
);
986 else if(!strcmp("*Duplex", tuple
.key
))
988 DUPLEX
*duplex
= HeapAlloc( GetProcessHeap(), 0, sizeof(*duplex
) );
989 duplex
->Name
= tuple
.option
;
990 duplex
->FullName
= tuple
.opttrans
;
991 duplex
->InvocationString
= tuple
.value
;
992 if(!strcasecmp("None", tuple
.option
) || !strcasecmp("False", tuple
.option
)
993 || !strcasecmp("Simplex", tuple
.option
))
994 duplex
->WinDuplex
= DMDUP_SIMPLEX
;
995 else if(!strcasecmp("DuplexNoTumble", tuple
.option
))
996 duplex
->WinDuplex
= DMDUP_VERTICAL
;
997 else if(!strcasecmp("DuplexTumble", tuple
.option
))
998 duplex
->WinDuplex
= DMDUP_HORIZONTAL
;
999 else if(!strcasecmp("Notcapable", tuple
.option
))
1000 duplex
->WinDuplex
= 0;
1002 FIXME("Unknown option %s for *Duplex defaulting to simplex\n", tuple
.option
);
1003 duplex
->WinDuplex
= DMDUP_SIMPLEX
;
1005 tuple
.option
= tuple
.opttrans
= tuple
.value
= NULL
;
1006 list_add_tail( &ppd
->Duplexes
, &duplex
->entry
);
1009 else if (!strcmp("*DefaultDuplex", tuple
.key
))
1011 if (!default_duplex
)
1013 default_duplex
= tuple
.value
;
1018 HeapFree(PSDRV_Heap
, 0, tuple
.key
);
1019 HeapFree(PSDRV_Heap
, 0, tuple
.option
);
1020 HeapFree(PSDRV_Heap
, 0, tuple
.value
);
1021 HeapFree(PSDRV_Heap
, 0, tuple
.opttrans
);
1022 HeapFree(PSDRV_Heap
, 0, tuple
.valtrans
);
1026 /* Remove any partial page size entries, that is any without a PageSize or a PaperDimension (we can
1027 cope with a missing ImageableArea). */
1028 LIST_FOR_EACH_ENTRY_SAFE(page
, page_cursor2
, &ppd
->PageSizes
, PAGESIZE
, entry
)
1030 if(!page
->InvocationString
|| !page
->PaperDimension
)
1032 WARN("Removing page %s since it has a missing %s entry\n", debugstr_a(page
->FullName
),
1033 page
->InvocationString
? "PaperDimension" : "InvocationString");
1034 HeapFree(PSDRV_Heap
, 0, page
->Name
);
1035 HeapFree(PSDRV_Heap
, 0, page
->FullName
);
1036 HeapFree(PSDRV_Heap
, 0, page
->InvocationString
);
1037 HeapFree(PSDRV_Heap
, 0, page
->ImageableArea
);
1038 HeapFree(PSDRV_Heap
, 0, page
->PaperDimension
);
1039 list_remove(&page
->entry
);
1043 ppd
->DefaultPageSize
= NULL
;
1044 def_pagesize_override
= get_ppd_override( printer
, "DefaultPageSize" );
1045 if (def_pagesize_override
)
1046 ppd
->DefaultPageSize
= get_pagesize( ppd
, def_pagesize_override
, FALSE
);
1047 if (!ppd
->DefaultPageSize
&& default_pagesize
)
1048 ppd
->DefaultPageSize
= get_pagesize( ppd
, default_pagesize
, FALSE
);
1050 if (!ppd
->DefaultPageSize
)
1052 struct list
*head
= list_head( &ppd
->PageSizes
);
1053 if (head
) ppd
->DefaultPageSize
= LIST_ENTRY( head
, PAGESIZE
, entry
);
1054 TRACE("Setting DefaultPageSize to first in list\n");
1056 TRACE( "DefaultPageSize: %s\n", ppd
->DefaultPageSize
? ppd
->DefaultPageSize
->Name
: "<not set>" );
1058 HeapFree( PSDRV_Heap
, 0, def_pagesize_override
);
1059 HeapFree( PSDRV_Heap
, 0, default_pagesize
);
1061 ppd
->DefaultDuplex
= NULL
;
1062 def_duplex_override
= get_ppd_override( printer
, "DefaultDuplex" );
1063 if (def_duplex_override
)
1064 ppd
->DefaultDuplex
= get_duplex( ppd
, def_duplex_override
);
1065 if (!ppd
->DefaultDuplex
&& default_duplex
)
1066 ppd
->DefaultDuplex
= get_duplex( ppd
, default_duplex
);
1068 if (!ppd
->DefaultDuplex
)
1070 struct list
*head
= list_head( &ppd
->Duplexes
);
1071 if (head
) ppd
->DefaultDuplex
= LIST_ENTRY( head
, DUPLEX
, entry
);
1072 TRACE("Setting DefaultDuplex to first in list\n");
1074 TRACE( "DefaultDuplex: %s\n", ppd
->DefaultDuplex
? ppd
->DefaultDuplex
->Name
: "<not set>" );
1076 HeapFree( PSDRV_Heap
, 0, def_duplex_override
);
1077 HeapFree( PSDRV_Heap
, 0, default_duplex
);
1086 LIST_FOR_EACH_ENTRY( fn
, &ppd
->InstalledFonts
, FONTNAME
, entry
)
1087 TRACE("'%s'\n", fn
->Name
);
1089 LIST_FOR_EACH_ENTRY(page
, &ppd
->PageSizes
, PAGESIZE
, entry
) {
1090 TRACE("'%s' aka '%s' (%d) invoked by '%s'\n", page
->Name
,
1091 page
->FullName
, page
->WinPage
, page
->InvocationString
);
1092 if(page
->ImageableArea
)
1093 TRACE("Area = %.2f,%.2f - %.2f, %.2f\n",
1094 page
->ImageableArea
->llx
, page
->ImageableArea
->lly
,
1095 page
->ImageableArea
->urx
, page
->ImageableArea
->ury
);
1096 if(page
->PaperDimension
)
1097 TRACE("Dimension = %.2f x %.2f\n",
1098 page
->PaperDimension
->x
, page
->PaperDimension
->y
);
1101 LIST_FOR_EACH_ENTRY( con
, &ppd
->Constraints
, CONSTRAINT
, entry
)
1102 TRACE("CONSTRAINTS@ %s %s %s %s\n", con
->Feature1
,
1103 con
->Value1
, con
->Feature2
, con
->Value2
);
1105 LIST_FOR_EACH_ENTRY( slot
, &ppd
->InputSlots
, INPUTSLOT
, entry
)
1106 TRACE("INPUTSLOTS '%s' Name '%s' (%d) Invocation '%s'\n",
1107 debugstr_a(slot
->Name
), slot
->FullName
, slot
->WinBin
,
1108 debugstr_a(slot
->InvocationString
));