blob: aaa20102c8deaa67ac3d9f4d2aadb13604039056 [file] [log] [blame]
Bram Moolenaar81366db2005-07-24 21:16:51 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * hardcopy.c: printing to paper
12 */
13
14#include "vim.h"
15#include "version.h"
16
17#if defined(FEAT_PRINTER) || defined(PROTO)
18/*
19 * To implement printing on a platform, the following functions must be
20 * defined:
21 *
22 * int mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
23 * Called once. Code should display printer dialogue (if appropriate) and
24 * determine printer font and margin settings. Reset has_color if the printer
25 * doesn't support colors at all.
26 * Returns FAIL to abort.
27 *
28 * int mch_print_begin(prt_settings_T *settings)
29 * Called to start the print job.
30 * Return FALSE to abort.
31 *
32 * int mch_print_begin_page(char_u *msg)
33 * Called at the start of each page.
34 * "msg" indicates the progress of the print job, can be NULL.
35 * Return FALSE to abort.
36 *
37 * int mch_print_end_page()
38 * Called at the end of each page.
39 * Return FALSE to abort.
40 *
41 * int mch_print_blank_page()
42 * Called to generate a blank page for collated, duplex, multiple copy
43 * document. Return FALSE to abort.
44 *
45 * void mch_print_end(prt_settings_T *psettings)
46 * Called at normal end of print job.
47 *
48 * void mch_print_cleanup()
49 * Called if print job ends normally or is abandoned. Free any memory, close
50 * devices and handles. Also called when mch_print_begin() fails, but not
51 * when mch_print_init() fails.
52 *
53 * void mch_print_set_font(int Bold, int Italic, int Underline);
54 * Called whenever the font style changes.
55 *
Bram Moolenaar551dbcc2006-04-25 22:13:59 +000056 * void mch_print_set_bg(long_u bgcol);
Bram Moolenaar81366db2005-07-24 21:16:51 +000057 * Called to set the background color for the following text. Parameter is an
58 * RGB value.
59 *
Bram Moolenaar551dbcc2006-04-25 22:13:59 +000060 * void mch_print_set_fg(long_u fgcol);
Bram Moolenaar81366db2005-07-24 21:16:51 +000061 * Called to set the foreground color for the following text. Parameter is an
62 * RGB value.
63 *
64 * mch_print_start_line(int margin, int page_line)
65 * Sets the current position at the start of line "page_line".
66 * If margin is TRUE start in the left margin (for header and line number).
67 *
68 * int mch_print_text_out(char_u *p, int len);
69 * Output one character of text p[len] at the current position.
70 * Return TRUE if there is no room for another character in the same line.
71 *
72 * Note that the generic code has no idea of margins. The machine code should
73 * simply make the page look smaller! The header and the line numbers are
74 * printed in the margin.
75 */
76
77#ifdef FEAT_SYN_HL
78static const long_u cterm_color_8[8] =
79{
80 (long_u)0x000000L, (long_u)0xff0000L, (long_u)0x00ff00L, (long_u)0xffff00L,
81 (long_u)0x0000ffL, (long_u)0xff00ffL, (long_u)0x00ffffL, (long_u)0xffffffL
82};
83
84static const long_u cterm_color_16[16] =
85{
86 (long_u)0x000000L, (long_u)0x0000c0L, (long_u)0x008000L, (long_u)0x004080L,
87 (long_u)0xc00000L, (long_u)0xc000c0L, (long_u)0x808000L, (long_u)0xc0c0c0L,
88 (long_u)0x808080L, (long_u)0x6060ffL, (long_u)0x00ff00L, (long_u)0x00ffffL,
89 (long_u)0xff8080L, (long_u)0xff40ffL, (long_u)0xffff00L, (long_u)0xffffffL
90};
91
92static int current_syn_id;
93#endif
94
95#define PRCOLOR_BLACK (long_u)0
96#define PRCOLOR_WHITE (long_u)0xFFFFFFL
97
98static int curr_italic;
99static int curr_bold;
100static int curr_underline;
101static long_u curr_bg;
102static long_u curr_fg;
103static int page_count;
104
105#if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
106# define OPT_MBFONT_USECOURIER 0
107# define OPT_MBFONT_ASCII 1
108# define OPT_MBFONT_REGULAR 2
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000109# define OPT_MBFONT_BOLD 3
Bram Moolenaar81366db2005-07-24 21:16:51 +0000110# define OPT_MBFONT_OBLIQUE 4
111# define OPT_MBFONT_BOLDOBLIQUE 5
112# define OPT_MBFONT_NUM_OPTIONS 6
113
114static option_table_T mbfont_opts[OPT_MBFONT_NUM_OPTIONS] =
115{
116 {"c", FALSE, 0, NULL, 0, FALSE},
117 {"a", FALSE, 0, NULL, 0, FALSE},
118 {"r", FALSE, 0, NULL, 0, FALSE},
119 {"b", FALSE, 0, NULL, 0, FALSE},
120 {"i", FALSE, 0, NULL, 0, FALSE},
121 {"o", FALSE, 0, NULL, 0, FALSE},
122};
123#endif
124
125/*
126 * These values determine the print position on a page.
127 */
128typedef struct
129{
130 int lead_spaces; /* remaining spaces for a TAB */
131 int print_pos; /* virtual column for computing TABs */
132 colnr_T column; /* byte column */
133 linenr_T file_line; /* line nr in the buffer */
134 long_u bytes_printed; /* bytes printed so far */
135 int ff; /* seen form feed character */
136} prt_pos_T;
137
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100138static char_u *parse_list_options(char_u *option_str, option_table_T *table, int table_size);
Bram Moolenaar81366db2005-07-24 21:16:51 +0000139
140#ifdef FEAT_SYN_HL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100141static long_u darken_rgb(long_u rgb);
142static long_u prt_get_term_color(int colorindex);
Bram Moolenaar81366db2005-07-24 21:16:51 +0000143#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100144static void prt_set_fg(long_u fg);
145static void prt_set_bg(long_u bg);
146static void prt_set_font(int bold, int italic, int underline);
147static void prt_line_number(prt_settings_T *psettings, int page_line, linenr_T lnum);
148static void prt_header(prt_settings_T *psettings, int pagenum, linenr_T lnum);
149static void prt_message(char_u *s);
150static colnr_T hardcopy_line(prt_settings_T *psettings, int page_line, prt_pos_T *ppos);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000151#ifdef FEAT_SYN_HL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100152static void prt_get_attr(int hl_id, prt_text_attr_T* pattr, int modec);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000153#endif
Bram Moolenaar81366db2005-07-24 21:16:51 +0000154
155/*
156 * Parse 'printoptions' and set the flags in "printer_opts".
157 * Returns an error message or NULL;
158 */
159 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100160parse_printoptions(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000161{
162 return parse_list_options(p_popt, printer_opts, OPT_PRINT_NUM_OPTIONS);
163}
164
165#if (defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)) || defined(PROTO)
166/*
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200167 * Parse 'printmbfont' and set the flags in "mbfont_opts".
Bram Moolenaar81366db2005-07-24 21:16:51 +0000168 * Returns an error message or NULL;
169 */
170 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100171parse_printmbfont(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000172{
173 return parse_list_options(p_pmfn, mbfont_opts, OPT_MBFONT_NUM_OPTIONS);
174}
175#endif
176
177/*
178 * Parse a list of options in the form
179 * option:value,option:value,option:value
180 *
181 * "value" can start with a number which is parsed out, e.g. margin:12mm
182 *
183 * Returns an error message for an illegal option, NULL otherwise.
184 * Only used for the printer at the moment...
185 */
186 static char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100187parse_list_options(
188 char_u *option_str,
189 option_table_T *table,
190 int table_size)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000191{
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200192 option_table_T *old_opts;
193 char_u *ret = NULL;
Bram Moolenaar81366db2005-07-24 21:16:51 +0000194 char_u *stringp;
195 char_u *colonp;
196 char_u *commap;
197 char_u *p;
198 int idx = 0; /* init for GCC */
199 int len;
200
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200201 /* Save the old values, so that they can be restored in case of an error. */
202 old_opts = (option_table_T *)alloc(sizeof(option_table_T) * table_size);
203 if (old_opts == NULL)
204 return NULL;
205
Bram Moolenaar81366db2005-07-24 21:16:51 +0000206 for (idx = 0; idx < table_size; ++idx)
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200207 {
208 old_opts[idx] = table[idx];
Bram Moolenaar81366db2005-07-24 21:16:51 +0000209 table[idx].present = FALSE;
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200210 }
Bram Moolenaar81366db2005-07-24 21:16:51 +0000211
212 /*
213 * Repeat for all comma separated parts.
214 */
215 stringp = option_str;
216 while (*stringp)
217 {
218 colonp = vim_strchr(stringp, ':');
219 if (colonp == NULL)
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200220 {
221 ret = (char_u *)N_("E550: Missing colon");
222 break;
223 }
Bram Moolenaar81366db2005-07-24 21:16:51 +0000224 commap = vim_strchr(stringp, ',');
225 if (commap == NULL)
226 commap = option_str + STRLEN(option_str);
227
228 len = (int)(colonp - stringp);
229
230 for (idx = 0; idx < table_size; ++idx)
231 if (STRNICMP(stringp, table[idx].name, len) == 0)
232 break;
233
234 if (idx == table_size)
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200235 {
236 ret = (char_u *)N_("E551: Illegal component");
237 break;
238 }
Bram Moolenaar81366db2005-07-24 21:16:51 +0000239 p = colonp + 1;
240 table[idx].present = TRUE;
241
242 if (table[idx].hasnum)
243 {
244 if (!VIM_ISDIGIT(*p))
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200245 {
246 ret = (char_u *)N_("E552: digit expected");
247 break;
248 }
Bram Moolenaar81366db2005-07-24 21:16:51 +0000249
250 table[idx].number = getdigits(&p); /*advances p*/
251 }
252
253 table[idx].string = p;
254 table[idx].strlen = (int)(commap - p);
255
256 stringp = commap;
257 if (*stringp == ',')
258 ++stringp;
259 }
260
Bram Moolenaar4afc7c52016-04-03 14:56:52 +0200261 if (ret != NULL)
262 {
263 /* Restore old options in case of error */
264 for (idx = 0; idx < table_size; ++idx)
265 table[idx] = old_opts[idx];
266 }
267 vim_free(old_opts);
268 return ret;
Bram Moolenaar81366db2005-07-24 21:16:51 +0000269}
270
271
272#ifdef FEAT_SYN_HL
273/*
274 * If using a dark background, the colors will probably be too bright to show
275 * up well on white paper, so reduce their brightness.
276 */
277 static long_u
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100278darken_rgb(long_u rgb)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000279{
280 return ((rgb >> 17) << 16)
281 + (((rgb & 0xff00) >> 9) << 8)
282 + ((rgb & 0xff) >> 1);
283}
284
285 static long_u
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100286prt_get_term_color(int colorindex)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000287{
288 /* TODO: Should check for xterm with 88 or 256 colors. */
289 if (t_colors > 8)
290 return cterm_color_16[colorindex % 16];
291 return cterm_color_8[colorindex % 8];
292}
293
294 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100295prt_get_attr(
296 int hl_id,
297 prt_text_attr_T *pattr,
298 int modec)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000299{
300 int colorindex;
301 long_u fg_color;
302 long_u bg_color;
303 char *color;
304
305 pattr->bold = (highlight_has_attr(hl_id, HL_BOLD, modec) != NULL);
306 pattr->italic = (highlight_has_attr(hl_id, HL_ITALIC, modec) != NULL);
307 pattr->underline = (highlight_has_attr(hl_id, HL_UNDERLINE, modec) != NULL);
308 pattr->undercurl = (highlight_has_attr(hl_id, HL_UNDERCURL, modec) != NULL);
309
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200310# if defined(FEAT_GUI) || defined(FEAT_TERMTRUECOLOR)
311 if (USE_24BIT)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000312 {
313 bg_color = highlight_gui_color_rgb(hl_id, FALSE);
314 if (bg_color == PRCOLOR_BLACK)
315 bg_color = PRCOLOR_WHITE;
316
317 fg_color = highlight_gui_color_rgb(hl_id, TRUE);
318 }
319 else
320# endif
321 {
322 bg_color = PRCOLOR_WHITE;
323
324 color = (char *)highlight_color(hl_id, (char_u *)"fg", modec);
325 if (color == NULL)
326 colorindex = 0;
327 else
328 colorindex = atoi(color);
329
330 if (colorindex >= 0 && colorindex < t_colors)
331 fg_color = prt_get_term_color(colorindex);
332 else
333 fg_color = PRCOLOR_BLACK;
334 }
335
336 if (fg_color == PRCOLOR_WHITE)
337 fg_color = PRCOLOR_BLACK;
338 else if (*p_bg == 'd')
339 fg_color = darken_rgb(fg_color);
340
341 pattr->fg_color = fg_color;
342 pattr->bg_color = bg_color;
343}
344#endif /* FEAT_SYN_HL */
345
346 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100347prt_set_fg(long_u fg)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000348{
349 if (fg != curr_fg)
350 {
351 curr_fg = fg;
352 mch_print_set_fg(fg);
353 }
354}
355
356 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100357prt_set_bg(long_u bg)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000358{
359 if (bg != curr_bg)
360 {
361 curr_bg = bg;
362 mch_print_set_bg(bg);
363 }
364}
365
366 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100367prt_set_font(int bold, int italic, int underline)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000368{
369 if (curr_bold != bold
370 || curr_italic != italic
371 || curr_underline != underline)
372 {
373 curr_underline = underline;
374 curr_italic = italic;
375 curr_bold = bold;
376 mch_print_set_font(bold, italic, underline);
377 }
378}
379
380/*
381 * Print the line number in the left margin.
382 */
383 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100384prt_line_number(
385 prt_settings_T *psettings,
386 int page_line,
387 linenr_T lnum)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000388{
389 int i;
390 char_u tbuf[20];
391
392 prt_set_fg(psettings->number.fg_color);
393 prt_set_bg(psettings->number.bg_color);
394 prt_set_font(psettings->number.bold, psettings->number.italic, psettings->number.underline);
395 mch_print_start_line(TRUE, page_line);
396
397 /* Leave two spaces between the number and the text; depends on
398 * PRINT_NUMBER_WIDTH. */
399 sprintf((char *)tbuf, "%6ld", (long)lnum);
400 for (i = 0; i < 6; i++)
401 (void)mch_print_text_out(&tbuf[i], 1);
402
403#ifdef FEAT_SYN_HL
404 if (psettings->do_syntax)
405 /* Set colors for next character. */
406 current_syn_id = -1;
407 else
408#endif
409 {
410 /* Set colors and font back to normal. */
411 prt_set_fg(PRCOLOR_BLACK);
412 prt_set_bg(PRCOLOR_WHITE);
413 prt_set_font(FALSE, FALSE, FALSE);
414 }
415}
416
Bram Moolenaar81366db2005-07-24 21:16:51 +0000417/*
418 * Get the currently effective header height.
419 */
420 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100421prt_header_height(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000422{
423 if (printer_opts[OPT_PRINT_HEADERHEIGHT].present)
424 return printer_opts[OPT_PRINT_HEADERHEIGHT].number;
425 return 2;
426}
427
428/*
429 * Return TRUE if using a line number for printing.
430 */
431 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100432prt_use_number(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000433{
434 return (printer_opts[OPT_PRINT_NUMBER].present
435 && TOLOWER_ASC(printer_opts[OPT_PRINT_NUMBER].string[0]) == 'y');
436}
437
438/*
439 * Return the unit used in a margin item in 'printoptions'.
440 * Returns PRT_UNIT_NONE if not recognized.
441 */
442 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100443prt_get_unit(int idx)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000444{
445 int u = PRT_UNIT_NONE;
446 int i;
447 static char *(units[4]) = PRT_UNIT_NAMES;
448
449 if (printer_opts[idx].present)
450 for (i = 0; i < 4; ++i)
451 if (STRNICMP(printer_opts[idx].string, units[i], 2) == 0)
452 {
453 u = i;
454 break;
455 }
456 return u;
457}
458
459/*
460 * Print the page header.
461 */
Bram Moolenaar81366db2005-07-24 21:16:51 +0000462 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100463prt_header(
464 prt_settings_T *psettings,
465 int pagenum,
466 linenr_T lnum UNUSED)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000467{
468 int width = psettings->chars_per_line;
469 int page_line;
470 char_u *tbuf;
471 char_u *p;
472#ifdef FEAT_MBYTE
473 int l;
474#endif
475
476 /* Also use the space for the line number. */
477 if (prt_use_number())
478 width += PRINT_NUMBER_WIDTH;
479
480 tbuf = alloc(width + IOSIZE);
481 if (tbuf == NULL)
482 return;
483
484#ifdef FEAT_STL_OPT
485 if (*p_header != NUL)
486 {
487 linenr_T tmp_lnum, tmp_topline, tmp_botline;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000488 int use_sandbox = FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +0000489
490 /*
491 * Need to (temporarily) set current line number and first/last line
492 * number on the 'window'. Since we don't know how long the page is,
493 * set the first and current line number to the top line, and guess
494 * that the page length is 64.
495 */
496 tmp_lnum = curwin->w_cursor.lnum;
497 tmp_topline = curwin->w_topline;
498 tmp_botline = curwin->w_botline;
499 curwin->w_cursor.lnum = lnum;
500 curwin->w_topline = lnum;
501 curwin->w_botline = lnum + 63;
502 printer_page_num = pagenum;
503
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000504# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000505 use_sandbox = was_set_insecurely((char_u *)"printheader", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000506# endif
Bram Moolenaar81366db2005-07-24 21:16:51 +0000507 build_stl_str_hl(curwin, tbuf, (size_t)(width + IOSIZE),
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000508 p_header, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000509 ' ', width, NULL, NULL);
Bram Moolenaar81366db2005-07-24 21:16:51 +0000510
511 /* Reset line numbers */
512 curwin->w_cursor.lnum = tmp_lnum;
513 curwin->w_topline = tmp_topline;
514 curwin->w_botline = tmp_botline;
515 }
516 else
517#endif
518 sprintf((char *)tbuf, _("Page %d"), pagenum);
519
520 prt_set_fg(PRCOLOR_BLACK);
521 prt_set_bg(PRCOLOR_WHITE);
522 prt_set_font(TRUE, FALSE, FALSE);
523
524 /* Use a negative line number to indicate printing in the top margin. */
525 page_line = 0 - prt_header_height();
526 mch_print_start_line(TRUE, page_line);
527 for (p = tbuf; *p != NUL; )
528 {
529 if (mch_print_text_out(p,
530#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000531 (l = (*mb_ptr2len)(p))
Bram Moolenaar81366db2005-07-24 21:16:51 +0000532#else
533 1
534#endif
535 ))
536 {
537 ++page_line;
538 if (page_line >= 0) /* out of room in header */
539 break;
540 mch_print_start_line(TRUE, page_line);
541 }
542#ifdef FEAT_MBYTE
543 p += l;
544#else
545 p++;
546#endif
547 }
548
549 vim_free(tbuf);
550
551#ifdef FEAT_SYN_HL
552 if (psettings->do_syntax)
553 /* Set colors for next character. */
554 current_syn_id = -1;
555 else
556#endif
557 {
558 /* Set colors and font back to normal. */
559 prt_set_fg(PRCOLOR_BLACK);
560 prt_set_bg(PRCOLOR_WHITE);
561 prt_set_font(FALSE, FALSE, FALSE);
562 }
563}
564
565/*
566 * Display a print status message.
567 */
568 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100569prt_message(char_u *s)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000570{
571 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
572 screen_puts(s, (int)Rows - 1, 0, hl_attr(HLF_R));
573 out_flush();
574}
575
576 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100577ex_hardcopy(exarg_T *eap)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000578{
579 linenr_T lnum;
580 int collated_copies, uncollated_copies;
581 prt_settings_T settings;
582 long_u bytes_to_print = 0;
583 int page_line;
584 int jobsplit;
Bram Moolenaar81366db2005-07-24 21:16:51 +0000585
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200586 vim_memset(&settings, 0, sizeof(prt_settings_T));
Bram Moolenaar81366db2005-07-24 21:16:51 +0000587 settings.has_color = TRUE;
588
589# ifdef FEAT_POSTSCRIPT
590 if (*eap->arg == '>')
591 {
592 char_u *errormsg = NULL;
593
594 /* Expand things like "%.ps". */
595 if (expand_filename(eap, eap->cmdlinep, &errormsg) == FAIL)
596 {
597 if (errormsg != NULL)
598 EMSG(errormsg);
599 return;
600 }
601 settings.outfile = skipwhite(eap->arg + 1);
602 }
603 else if (*eap->arg != NUL)
604 settings.arguments = eap->arg;
605# endif
606
607 /*
608 * Initialise for printing. Ask the user for settings, unless forceit is
609 * set.
610 * The mch_print_init() code should set up margins if applicable. (It may
611 * not be a real printer - for example the engine might generate HTML or
612 * PS.)
613 */
614 if (mch_print_init(&settings,
615 curbuf->b_fname == NULL
616 ? (char_u *)buf_spname(curbuf)
617 : curbuf->b_sfname == NULL
618 ? curbuf->b_fname
619 : curbuf->b_sfname,
620 eap->forceit) == FAIL)
621 return;
622
623#ifdef FEAT_SYN_HL
624# ifdef FEAT_GUI
625 if (gui.in_use)
626 settings.modec = 'g';
627 else
628# endif
629 if (t_colors > 1)
630 settings.modec = 'c';
631 else
632 settings.modec = 't';
633
Bram Moolenaar860cae12010-06-05 23:22:07 +0200634 if (!syntax_present(curwin))
Bram Moolenaar81366db2005-07-24 21:16:51 +0000635 settings.do_syntax = FALSE;
636 else if (printer_opts[OPT_PRINT_SYNTAX].present
637 && TOLOWER_ASC(printer_opts[OPT_PRINT_SYNTAX].string[0]) != 'a')
638 settings.do_syntax =
639 (TOLOWER_ASC(printer_opts[OPT_PRINT_SYNTAX].string[0]) == 'y');
640 else
641 settings.do_syntax = settings.has_color;
642#endif
643
644 /* Set up printing attributes for line numbers */
645 settings.number.fg_color = PRCOLOR_BLACK;
646 settings.number.bg_color = PRCOLOR_WHITE;
647 settings.number.bold = FALSE;
648 settings.number.italic = TRUE;
649 settings.number.underline = FALSE;
650#ifdef FEAT_SYN_HL
651 /*
652 * Syntax highlighting of line numbers.
653 */
654 if (prt_use_number() && settings.do_syntax)
655 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000656 int id;
657
Bram Moolenaar81366db2005-07-24 21:16:51 +0000658 id = syn_name2id((char_u *)"LineNr");
659 if (id > 0)
660 id = syn_get_final_id(id);
661
662 prt_get_attr(id, &settings.number, settings.modec);
663 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000664#endif
Bram Moolenaar81366db2005-07-24 21:16:51 +0000665
666 /*
667 * Estimate the total lines to be printed
668 */
669 for (lnum = eap->line1; lnum <= eap->line2; lnum++)
670 bytes_to_print += (long_u)STRLEN(skipwhite(ml_get(lnum)));
671 if (bytes_to_print == 0)
672 {
673 MSG(_("No text to be printed"));
674 goto print_fail_no_begin;
675 }
676
677 /* Set colors and font to normal. */
678 curr_bg = (long_u)0xffffffffL;
679 curr_fg = (long_u)0xffffffffL;
680 curr_italic = MAYBE;
681 curr_bold = MAYBE;
682 curr_underline = MAYBE;
683
684 prt_set_fg(PRCOLOR_BLACK);
685 prt_set_bg(PRCOLOR_WHITE);
686 prt_set_font(FALSE, FALSE, FALSE);
687#ifdef FEAT_SYN_HL
688 current_syn_id = -1;
689#endif
690
691 jobsplit = (printer_opts[OPT_PRINT_JOBSPLIT].present
692 && TOLOWER_ASC(printer_opts[OPT_PRINT_JOBSPLIT].string[0]) == 'y');
693
694 if (!mch_print_begin(&settings))
695 goto print_fail_no_begin;
696
697 /*
698 * Loop over collated copies: 1 2 3, 1 2 3, ...
699 */
700 page_count = 0;
701 for (collated_copies = 0;
702 collated_copies < settings.n_collated_copies;
703 collated_copies++)
704 {
705 prt_pos_T prtpos; /* current print position */
706 prt_pos_T page_prtpos; /* print position at page start */
707 int side;
708
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200709 vim_memset(&page_prtpos, 0, sizeof(prt_pos_T));
Bram Moolenaar81366db2005-07-24 21:16:51 +0000710 page_prtpos.file_line = eap->line1;
711 prtpos = page_prtpos;
712
713 if (jobsplit && collated_copies > 0)
714 {
715 /* Splitting jobs: Stop a previous job and start a new one. */
716 mch_print_end(&settings);
717 if (!mch_print_begin(&settings))
718 goto print_fail_no_begin;
719 }
720
721 /*
722 * Loop over all pages in the print job: 1 2 3 ...
723 */
724 for (page_count = 0; prtpos.file_line <= eap->line2; ++page_count)
725 {
726 /*
727 * Loop over uncollated copies: 1 1 1, 2 2 2, 3 3 3, ...
728 * For duplex: 12 12 12 34 34 34, ...
729 */
730 for (uncollated_copies = 0;
731 uncollated_copies < settings.n_uncollated_copies;
732 uncollated_copies++)
733 {
734 /* Set the print position to the start of this page. */
735 prtpos = page_prtpos;
736
737 /*
738 * Do front and rear side of a page.
739 */
740 for (side = 0; side <= settings.duplex; ++side)
741 {
742 /*
743 * Print one page.
744 */
745
746 /* Check for interrupt character every page. */
747 ui_breakcheck();
748 if (got_int || settings.user_abort)
749 goto print_fail;
750
751 sprintf((char *)IObuff, _("Printing page %d (%d%%)"),
752 page_count + 1 + side,
753 prtpos.bytes_printed > 1000000
754 ? (int)(prtpos.bytes_printed /
755 (bytes_to_print / 100))
756 : (int)((prtpos.bytes_printed * 100)
757 / bytes_to_print));
758 if (!mch_print_begin_page(IObuff))
759 goto print_fail;
760
761 if (settings.n_collated_copies > 1)
762 sprintf((char *)IObuff + STRLEN(IObuff),
763 _(" Copy %d of %d"),
764 collated_copies + 1,
765 settings.n_collated_copies);
766 prt_message(IObuff);
767
768 /*
769 * Output header if required
770 */
771 if (prt_header_height() > 0)
772 prt_header(&settings, page_count + 1 + side,
773 prtpos.file_line);
774
775 for (page_line = 0; page_line < settings.lines_per_page;
776 ++page_line)
777 {
778 prtpos.column = hardcopy_line(&settings,
779 page_line, &prtpos);
780 if (prtpos.column == 0)
781 {
782 /* finished a file line */
783 prtpos.bytes_printed +=
784 STRLEN(skipwhite(ml_get(prtpos.file_line)));
785 if (++prtpos.file_line > eap->line2)
786 break; /* reached the end */
787 }
788 else if (prtpos.ff)
789 {
790 /* Line had a formfeed in it - start new page but
791 * stay on the current line */
792 break;
793 }
794 }
795
796 if (!mch_print_end_page())
797 goto print_fail;
798 if (prtpos.file_line > eap->line2)
799 break; /* reached the end */
800 }
801
802 /*
803 * Extra blank page for duplexing with odd number of pages and
804 * more copies to come.
805 */
806 if (prtpos.file_line > eap->line2 && settings.duplex
807 && side == 0
808 && uncollated_copies + 1 < settings.n_uncollated_copies)
809 {
810 if (!mch_print_blank_page())
811 goto print_fail;
812 }
813 }
814 if (settings.duplex && prtpos.file_line <= eap->line2)
815 ++page_count;
816
817 /* Remember the position where the next page starts. */
818 page_prtpos = prtpos;
819 }
820
821 vim_snprintf((char *)IObuff, IOSIZE, _("Printed: %s"),
822 settings.jobname);
823 prt_message(IObuff);
824 }
825
826print_fail:
827 if (got_int || settings.user_abort)
828 {
829 sprintf((char *)IObuff, "%s", _("Printing aborted"));
830 prt_message(IObuff);
831 }
832 mch_print_end(&settings);
833
834print_fail_no_begin:
835 mch_print_cleanup();
836}
837
838/*
839 * Print one page line.
840 * Return the next column to print, or zero if the line is finished.
841 */
842 static colnr_T
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100843hardcopy_line(
844 prt_settings_T *psettings,
845 int page_line,
846 prt_pos_T *ppos)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000847{
848 colnr_T col;
849 char_u *line;
850 int need_break = FALSE;
851 int outputlen;
852 int tab_spaces;
853 long_u print_pos;
854#ifdef FEAT_SYN_HL
855 prt_text_attr_T attr;
856 int id;
857#endif
858
859 if (ppos->column == 0 || ppos->ff)
860 {
861 print_pos = 0;
862 tab_spaces = 0;
863 if (!ppos->ff && prt_use_number())
864 prt_line_number(psettings, page_line, ppos->file_line);
865 ppos->ff = FALSE;
866 }
867 else
868 {
869 /* left over from wrap halfway a tab */
870 print_pos = ppos->print_pos;
871 tab_spaces = ppos->lead_spaces;
872 }
873
874 mch_print_start_line(0, page_line);
875 line = ml_get(ppos->file_line);
876
877 /*
878 * Loop over the columns until the end of the file line or right margin.
879 */
880 for (col = ppos->column; line[col] != NUL && !need_break; col += outputlen)
881 {
882 outputlen = 1;
883#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000884 if (has_mbyte && (outputlen = (*mb_ptr2len)(line + col)) < 1)
Bram Moolenaar81366db2005-07-24 21:16:51 +0000885 outputlen = 1;
886#endif
887#ifdef FEAT_SYN_HL
888 /*
889 * syntax highlighting stuff.
890 */
891 if (psettings->do_syntax)
892 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +0000893 id = syn_get_id(curwin, ppos->file_line, col, 1, NULL, FALSE);
Bram Moolenaar81366db2005-07-24 21:16:51 +0000894 if (id > 0)
895 id = syn_get_final_id(id);
896 else
897 id = 0;
898 /* Get the line again, a multi-line regexp may invalidate it. */
899 line = ml_get(ppos->file_line);
900
901 if (id != current_syn_id)
902 {
903 current_syn_id = id;
904 prt_get_attr(id, &attr, psettings->modec);
905 prt_set_font(attr.bold, attr.italic, attr.underline);
906 prt_set_fg(attr.fg_color);
907 prt_set_bg(attr.bg_color);
908 }
909 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000910#endif
Bram Moolenaar81366db2005-07-24 21:16:51 +0000911
912 /*
913 * Appropriately expand any tabs to spaces.
914 */
915 if (line[col] == TAB || tab_spaces != 0)
916 {
917 if (tab_spaces == 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000918 tab_spaces = (int)(curbuf->b_p_ts - (print_pos % curbuf->b_p_ts));
Bram Moolenaar81366db2005-07-24 21:16:51 +0000919
920 while (tab_spaces > 0)
921 {
922 need_break = mch_print_text_out((char_u *)" ", 1);
923 print_pos++;
924 tab_spaces--;
925 if (need_break)
926 break;
927 }
928 /* Keep the TAB if we didn't finish it. */
929 if (need_break && tab_spaces > 0)
930 break;
931 }
932 else if (line[col] == FF
933 && printer_opts[OPT_PRINT_FORMFEED].present
934 && TOLOWER_ASC(printer_opts[OPT_PRINT_FORMFEED].string[0])
935 == 'y')
936 {
937 ppos->ff = TRUE;
938 need_break = 1;
939 }
940 else
941 {
942 need_break = mch_print_text_out(line + col, outputlen);
943#ifdef FEAT_MBYTE
944 if (has_mbyte)
945 print_pos += (*mb_ptr2cells)(line + col);
946 else
947#endif
948 print_pos++;
949 }
950 }
951
952 ppos->lead_spaces = tab_spaces;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000953 ppos->print_pos = (int)print_pos;
Bram Moolenaar81366db2005-07-24 21:16:51 +0000954
955 /*
956 * Start next line of file if we clip lines, or have reached end of the
957 * line, unless we are doing a formfeed.
958 */
959 if (!ppos->ff
960 && (line[col] == NUL
961 || (printer_opts[OPT_PRINT_WRAP].present
962 && TOLOWER_ASC(printer_opts[OPT_PRINT_WRAP].string[0])
963 == 'n')))
964 return 0;
965 return col;
966}
967
968# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
969
970/*
971 * PS printer stuff.
972 *
973 * Sources of information to help maintain the PS printing code:
974 *
975 * 1. PostScript Language Reference, 3rd Edition,
976 * Addison-Wesley, 1999, ISBN 0-201-37922-8
977 * 2. PostScript Language Program Design,
978 * Addison-Wesley, 1988, ISBN 0-201-14396-8
979 * 3. PostScript Tutorial and Cookbook,
980 * Addison Wesley, 1985, ISBN 0-201-10179-3
981 * 4. PostScript Language Document Structuring Conventions Specification,
982 * version 3.0,
983 * Adobe Technote 5001, 25th September 1992
984 * 5. PostScript Printer Description File Format Specification, Version 4.3,
985 * Adobe technote 5003, 9th February 1996
986 * 6. Adobe Font Metrics File Format Specification, Version 4.1,
987 * Adobe Technote 5007, 7th October 1998
988 * 7. Adobe CMap and CIDFont Files Specification, Version 1.0,
989 * Adobe Technote 5014, 8th October 1996
990 * 8. Adobe CJKV Character Collections and CMaps for CID-Keyed Fonts,
991 * Adoboe Technote 5094, 8th September, 2001
992 * 9. CJKV Information Processing, 2nd Edition,
993 * O'Reilly, 2002, ISBN 1-56592-224-7
994 *
995 * Some of these documents can be found in PDF form on Adobe's web site -
996 * http://www.adobe.com
997 */
998
999#define NUM_ELEMENTS(arr) (sizeof(arr)/sizeof((arr)[0]))
1000
1001#define PRT_PS_DEFAULT_DPI (72) /* Default user space resolution */
1002#define PRT_PS_DEFAULT_FONTSIZE (10)
1003#define PRT_PS_DEFAULT_BUFFER_SIZE (80)
1004
1005struct prt_mediasize_S
1006{
1007 char *name;
1008 float width; /* width and height in points for portrait */
1009 float height;
1010};
1011
1012#define PRT_MEDIASIZE_LEN (sizeof(prt_mediasize) / sizeof(struct prt_mediasize_S))
1013
1014static struct prt_mediasize_S prt_mediasize[] =
1015{
1016 {"A4", 595.0, 842.0},
1017 {"letter", 612.0, 792.0},
1018 {"10x14", 720.0, 1008.0},
1019 {"A3", 842.0, 1191.0},
1020 {"A5", 420.0, 595.0},
1021 {"B4", 729.0, 1032.0},
1022 {"B5", 516.0, 729.0},
1023 {"executive", 522.0, 756.0},
1024 {"folio", 595.0, 935.0},
1025 {"ledger", 1224.0, 792.0}, /* Yes, it is wider than taller! */
1026 {"legal", 612.0, 1008.0},
1027 {"quarto", 610.0, 780.0},
1028 {"statement", 396.0, 612.0},
1029 {"tabloid", 792.0, 1224.0}
1030};
1031
1032/* PS font names, must be in Roman, Bold, Italic, Bold-Italic order */
1033struct prt_ps_font_S
1034{
1035 int wx;
1036 int uline_offset;
1037 int uline_width;
1038 int bbox_min_y;
1039 int bbox_max_y;
1040 char *(ps_fontname[4]);
1041};
1042
1043#define PRT_PS_FONT_ROMAN (0)
1044#define PRT_PS_FONT_BOLD (1)
1045#define PRT_PS_FONT_OBLIQUE (2)
1046#define PRT_PS_FONT_BOLDOBLIQUE (3)
1047
1048/* Standard font metrics for Courier family */
1049static struct prt_ps_font_S prt_ps_courier_font =
1050{
1051 600,
1052 -100, 50,
1053 -250, 805,
1054 {"Courier", "Courier-Bold", "Courier-Oblique", "Courier-BoldOblique"}
1055};
1056
1057#ifdef FEAT_MBYTE
1058/* Generic font metrics for multi-byte fonts */
1059static struct prt_ps_font_S prt_ps_mb_font =
1060{
1061 1000,
1062 -100, 50,
1063 -250, 805,
1064 {NULL, NULL, NULL, NULL}
1065};
1066#endif
1067
1068/* Pointer to current font set being used */
1069static struct prt_ps_font_S* prt_ps_font;
1070
1071/* Structures to map user named encoding and mapping to PS equivalents for
1072 * building CID font name */
1073struct prt_ps_encoding_S
1074{
1075 char *encoding;
1076 char *cmap_encoding;
1077 int needs_charset;
1078};
1079
1080struct prt_ps_charset_S
1081{
1082 char *charset;
1083 char *cmap_charset;
1084 int has_charset;
1085};
1086
1087#ifdef FEAT_MBYTE
1088
1089#define CS_JIS_C_1978 (0x01)
1090#define CS_JIS_X_1983 (0x02)
1091#define CS_JIS_X_1990 (0x04)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001092#define CS_NEC (0x08)
1093#define CS_MSWINDOWS (0x10)
1094#define CS_CP932 (0x20)
1095#define CS_KANJITALK6 (0x40)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001096#define CS_KANJITALK7 (0x80)
1097
1098/* Japanese encodings and charsets */
1099static struct prt_ps_encoding_S j_encodings[] =
1100{
1101 {"iso-2022-jp", NULL, (CS_JIS_C_1978|CS_JIS_X_1983|CS_JIS_X_1990|
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001102 CS_NEC)},
1103 {"euc-jp", "EUC", (CS_JIS_C_1978|CS_JIS_X_1983|CS_JIS_X_1990)},
1104 {"sjis", "RKSJ", (CS_JIS_C_1978|CS_JIS_X_1983|CS_MSWINDOWS|
1105 CS_KANJITALK6|CS_KANJITALK7)},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001106 {"cp932", "RKSJ", CS_JIS_X_1983},
1107 {"ucs-2", "UCS2", CS_JIS_X_1990},
1108 {"utf-8", "UTF8" , CS_JIS_X_1990}
1109};
1110static struct prt_ps_charset_S j_charsets[] =
1111{
1112 {"JIS_C_1978", "78", CS_JIS_C_1978},
1113 {"JIS_X_1983", NULL, CS_JIS_X_1983},
1114 {"JIS_X_1990", "Hojo", CS_JIS_X_1990},
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001115 {"NEC", "Ext", CS_NEC},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001116 {"MSWINDOWS", "90ms", CS_MSWINDOWS},
1117 {"CP932", "90ms", CS_JIS_X_1983},
1118 {"KANJITALK6", "83pv", CS_KANJITALK6},
1119 {"KANJITALK7", "90pv", CS_KANJITALK7}
1120};
1121
1122#define CS_GB_2312_80 (0x01)
1123#define CS_GBT_12345_90 (0x02)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001124#define CS_GBK2K (0x04)
1125#define CS_SC_MAC (0x08)
1126#define CS_GBT_90_MAC (0x10)
1127#define CS_GBK (0x20)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001128#define CS_SC_ISO10646 (0x40)
1129
1130/* Simplified Chinese encodings and charsets */
1131static struct prt_ps_encoding_S sc_encodings[] =
1132{
1133 {"iso-2022", NULL, (CS_GB_2312_80|CS_GBT_12345_90)},
1134 {"gb18030", NULL, CS_GBK2K},
1135 {"euc-cn", "EUC", (CS_GB_2312_80|CS_GBT_12345_90|CS_SC_MAC|
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001136 CS_GBT_90_MAC)},
1137 {"gbk", "EUC", CS_GBK},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001138 {"ucs-2", "UCS2", CS_SC_ISO10646},
1139 {"utf-8", "UTF8", CS_SC_ISO10646}
1140};
1141static struct prt_ps_charset_S sc_charsets[] =
1142{
1143 {"GB_2312-80", "GB", CS_GB_2312_80},
1144 {"GBT_12345-90","GBT", CS_GBT_12345_90},
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001145 {"MAC", "GBpc", CS_SC_MAC},
1146 {"GBT-90_MAC", "GBTpc", CS_GBT_90_MAC},
1147 {"GBK", "GBK", CS_GBK},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001148 {"GB18030", "GBK2K", CS_GBK2K},
1149 {"ISO10646", "UniGB", CS_SC_ISO10646}
1150};
1151
1152#define CS_CNS_PLANE_1 (0x01)
1153#define CS_CNS_PLANE_2 (0x02)
1154#define CS_CNS_PLANE_1_2 (0x04)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001155#define CS_B5 (0x08)
1156#define CS_ETEN (0x10)
1157#define CS_HK_GCCS (0x20)
1158#define CS_HK_SCS (0x40)
1159#define CS_HK_SCS_ETEN (0x80)
1160#define CS_MTHKL (0x100)
1161#define CS_MTHKS (0x200)
1162#define CS_DLHKL (0x400)
1163#define CS_DLHKS (0x800)
1164#define CS_TC_ISO10646 (0x1000)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001165
1166/* Traditional Chinese encodings and charsets */
1167static struct prt_ps_encoding_S tc_encodings[] =
1168{
1169 {"iso-2022", NULL, (CS_CNS_PLANE_1|CS_CNS_PLANE_2)},
1170 {"euc-tw", "EUC", CS_CNS_PLANE_1_2},
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001171 {"big5", "B5", (CS_B5|CS_ETEN|CS_HK_GCCS|CS_HK_SCS|
1172 CS_HK_SCS_ETEN|CS_MTHKL|CS_MTHKS|CS_DLHKL|
1173 CS_DLHKS)},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001174 {"cp950", "B5", CS_B5},
1175 {"ucs-2", "UCS2", CS_TC_ISO10646},
1176 {"utf-8", "UTF8", CS_TC_ISO10646},
1177 {"utf-16", "UTF16", CS_TC_ISO10646},
1178 {"utf-32", "UTF32", CS_TC_ISO10646}
1179};
1180static struct prt_ps_charset_S tc_charsets[] =
1181{
1182 {"CNS_1992_1", "CNS1", CS_CNS_PLANE_1},
1183 {"CNS_1992_2", "CNS2", CS_CNS_PLANE_2},
1184 {"CNS_1993", "CNS", CS_CNS_PLANE_1_2},
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001185 {"BIG5", NULL, CS_B5},
1186 {"CP950", NULL, CS_B5},
1187 {"ETEN", "ETen", CS_ETEN},
1188 {"HK_GCCS", "HKgccs", CS_HK_GCCS},
1189 {"SCS", "HKscs", CS_HK_SCS},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001190 {"SCS_ETEN", "ETHK", CS_HK_SCS_ETEN},
1191 {"MTHKL", "HKm471", CS_MTHKL},
1192 {"MTHKS", "HKm314", CS_MTHKS},
1193 {"DLHKL", "HKdla", CS_DLHKL},
1194 {"DLHKS", "HKdlb", CS_DLHKS},
1195 {"ISO10646", "UniCNS", CS_TC_ISO10646}
1196};
1197
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001198#define CS_KR_X_1992 (0x01)
1199#define CS_KR_MAC (0x02)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001200#define CS_KR_X_1992_MS (0x04)
1201#define CS_KR_ISO10646 (0x08)
1202
1203/* Korean encodings and charsets */
1204static struct prt_ps_encoding_S k_encodings[] =
1205{
1206 {"iso-2022-kr", NULL, CS_KR_X_1992},
1207 {"euc-kr", "EUC", (CS_KR_X_1992|CS_KR_MAC)},
1208 {"johab", "Johab", CS_KR_X_1992},
1209 {"cp1361", "Johab", CS_KR_X_1992},
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001210 {"uhc", "UHC", CS_KR_X_1992_MS},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001211 {"cp949", "UHC", CS_KR_X_1992_MS},
1212 {"ucs-2", "UCS2", CS_KR_ISO10646},
1213 {"utf-8", "UTF8", CS_KR_ISO10646}
1214};
1215static struct prt_ps_charset_S k_charsets[] =
1216{
1217 {"KS_X_1992", "KSC", CS_KR_X_1992},
1218 {"CP1361", "KSC", CS_KR_X_1992},
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001219 {"MAC", "KSCpc", CS_KR_MAC},
Bram Moolenaar81366db2005-07-24 21:16:51 +00001220 {"MSWINDOWS", "KSCms", CS_KR_X_1992_MS},
1221 {"CP949", "KSCms", CS_KR_X_1992_MS},
1222 {"WANSUNG", "KSCms", CS_KR_X_1992_MS},
1223 {"ISO10646", "UniKS", CS_KR_ISO10646}
1224};
1225
1226/* Collections of encodings and charsets for multi-byte printing */
1227struct prt_ps_mbfont_S
1228{
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001229 int num_encodings;
1230 struct prt_ps_encoding_S *encodings;
1231 int num_charsets;
1232 struct prt_ps_charset_S *charsets;
1233 char *ascii_enc;
1234 char *defcs;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001235};
1236
1237static struct prt_ps_mbfont_S prt_ps_mbfonts[] =
1238{
1239 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001240 NUM_ELEMENTS(j_encodings),
1241 j_encodings,
1242 NUM_ELEMENTS(j_charsets),
1243 j_charsets,
1244 "jis_roman",
1245 "JIS_X_1983"
Bram Moolenaar81366db2005-07-24 21:16:51 +00001246 },
1247 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001248 NUM_ELEMENTS(sc_encodings),
1249 sc_encodings,
1250 NUM_ELEMENTS(sc_charsets),
1251 sc_charsets,
1252 "gb_roman",
1253 "GB_2312-80"
Bram Moolenaar81366db2005-07-24 21:16:51 +00001254 },
1255 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001256 NUM_ELEMENTS(tc_encodings),
1257 tc_encodings,
1258 NUM_ELEMENTS(tc_charsets),
1259 tc_charsets,
1260 "cns_roman",
1261 "BIG5"
Bram Moolenaar81366db2005-07-24 21:16:51 +00001262 },
1263 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001264 NUM_ELEMENTS(k_encodings),
1265 k_encodings,
1266 NUM_ELEMENTS(k_charsets),
1267 k_charsets,
1268 "ks_roman",
1269 "KS_X_1992"
Bram Moolenaar81366db2005-07-24 21:16:51 +00001270 }
1271};
1272#endif /* FEAT_MBYTE */
1273
1274struct prt_ps_resource_S
1275{
1276 char_u name[64];
1277 char_u filename[MAXPATHL + 1];
1278 int type;
1279 char_u title[256];
1280 char_u version[256];
1281};
1282
1283/* Types of PS resource file currently used */
1284#define PRT_RESOURCE_TYPE_PROCSET (0)
1285#define PRT_RESOURCE_TYPE_ENCODING (1)
1286#define PRT_RESOURCE_TYPE_CMAP (2)
1287
1288/* The PS prolog file version number has to match - if the prolog file is
1289 * updated, increment the number in the file and here. Version checking was
1290 * added as of VIM 6.2.
1291 * The CID prolog file version number behaves as per PS prolog.
1292 * Table of VIM and prolog versions:
1293 *
1294 * VIM Prolog CIDProlog
1295 * 6.2 1.3
1296 * 7.0 1.4 1.0
1297 */
1298#define PRT_PROLOG_VERSION ((char_u *)"1.4")
1299#define PRT_CID_PROLOG_VERSION ((char_u *)"1.0")
1300
1301/* String versions of PS resource types - indexed by constants above so don't
1302 * re-order!
1303 */
1304static char *prt_resource_types[] =
1305{
1306 "procset",
1307 "encoding",
1308 "cmap"
1309};
1310
1311/* Strings to look for in a PS resource file */
1312#define PRT_RESOURCE_HEADER "%!PS-Adobe-"
1313#define PRT_RESOURCE_RESOURCE "Resource-"
1314#define PRT_RESOURCE_PROCSET "ProcSet"
1315#define PRT_RESOURCE_ENCODING "Encoding"
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001316#define PRT_RESOURCE_CMAP "CMap"
Bram Moolenaar81366db2005-07-24 21:16:51 +00001317
1318
1319/* Data for table based DSC comment recognition, easy to extend if VIM needs to
1320 * read more comments. */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001321#define PRT_DSC_MISC_TYPE (-1)
1322#define PRT_DSC_TITLE_TYPE (1)
1323#define PRT_DSC_VERSION_TYPE (2)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001324#define PRT_DSC_ENDCOMMENTS_TYPE (3)
1325
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001326#define PRT_DSC_TITLE "%%Title:"
1327#define PRT_DSC_VERSION "%%Version:"
1328#define PRT_DSC_ENDCOMMENTS "%%EndComments:"
Bram Moolenaar81366db2005-07-24 21:16:51 +00001329
1330struct prt_dsc_comment_S
1331{
1332 char *string;
1333 int len;
1334 int type;
1335};
1336
1337struct prt_dsc_line_S
1338{
1339 int type;
1340 char_u *string;
1341 int len;
1342};
1343
1344
1345#define SIZEOF_CSTR(s) (sizeof(s) - 1)
1346static struct prt_dsc_comment_S prt_dsc_table[] =
1347{
1348 {PRT_DSC_TITLE, SIZEOF_CSTR(PRT_DSC_TITLE), PRT_DSC_TITLE_TYPE},
1349 {PRT_DSC_VERSION, SIZEOF_CSTR(PRT_DSC_VERSION),
1350 PRT_DSC_VERSION_TYPE},
1351 {PRT_DSC_ENDCOMMENTS, SIZEOF_CSTR(PRT_DSC_ENDCOMMENTS),
1352 PRT_DSC_ENDCOMMENTS_TYPE}
1353};
1354
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001355static void prt_write_file_raw_len(char_u *buffer, int bytes);
1356static void prt_write_file(char_u *buffer);
1357static void prt_write_file_len(char_u *buffer, int bytes);
1358static void prt_write_string(char *s);
1359static void prt_write_int(int i);
1360static void prt_write_boolean(int b);
1361static void prt_def_font(char *new_name, char *encoding, int height, char *font);
1362static void prt_real_bits(double real, int precision, int *pinteger, int *pfraction);
1363static void prt_write_real(double val, int prec);
1364static void prt_def_var(char *name, double value, int prec);
1365static void prt_flush_buffer(void);
1366static void prt_resource_name(char_u *filename, void *cookie);
1367static int prt_find_resource(char *name, struct prt_ps_resource_S *resource);
1368static int prt_open_resource(struct prt_ps_resource_S *resource);
1369static int prt_check_resource(struct prt_ps_resource_S *resource, char_u *version);
1370static void prt_dsc_start(void);
1371static void prt_dsc_noarg(char *comment);
1372static void prt_dsc_textline(char *comment, char *text);
1373static void prt_dsc_text(char *comment, char *text);
1374static void prt_dsc_ints(char *comment, int count, int *ints);
1375static void prt_dsc_requirements(int duplex, int tumble, int collate, int color, int num_copies);
1376static void prt_dsc_docmedia(char *paper_name, double width, double height, double weight, char *colour, char *type);
1377static void prt_dsc_resources(char *comment, char *type, char *strings);
1378static void prt_dsc_font_resource(char *resource, struct prt_ps_font_S *ps_font);
1379static float to_device_units(int idx, double physsize, int def_number);
1380static void prt_page_margins(double width, double height, double *left, double *right, double *top, double *bottom);
1381static void prt_font_metrics(int font_scale);
1382static int prt_get_cpl(void);
1383static int prt_get_lpp(void);
1384static int prt_add_resource(struct prt_ps_resource_S *resource);
1385static int prt_resfile_next_line(void);
1386static int prt_resfile_strncmp(int offset, char *string, int len);
1387static int prt_resfile_skip_nonws(int offset);
1388static int prt_resfile_skip_ws(int offset);
1389static int prt_next_dsc(struct prt_dsc_line_S *p_dsc_line);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001390#ifdef FEAT_MBYTE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001391static int prt_build_cid_fontname(int font, char_u *name, int name_len);
1392static void prt_def_cidfont(char *new_name, int height, char *cidfont);
1393static void prt_dup_cidfont(char *original_name, char *new_name);
1394static int prt_match_encoding(char *p_encoding, struct prt_ps_mbfont_S *p_cmap, struct prt_ps_encoding_S **pp_mbenc);
1395static int prt_match_charset(char *p_charset, struct prt_ps_mbfont_S *p_cmap, struct prt_ps_charset_S **pp_mbchar);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001396#endif
1397
1398/*
1399 * Variables for the output PostScript file.
1400 */
1401static FILE *prt_ps_fd;
1402static int prt_file_error;
1403static char_u *prt_ps_file_name = NULL;
1404
1405/*
1406 * Various offsets and dimensions in default PostScript user space (points).
1407 * Used for text positioning calculations
1408 */
1409static float prt_page_width;
1410static float prt_page_height;
1411static float prt_left_margin;
1412static float prt_right_margin;
1413static float prt_top_margin;
1414static float prt_bottom_margin;
1415static float prt_line_height;
1416static float prt_first_line_height;
1417static float prt_char_width;
1418static float prt_number_width;
1419static float prt_bgcol_offset;
1420static float prt_pos_x_moveto = 0.0;
1421static float prt_pos_y_moveto = 0.0;
1422
1423/*
1424 * Various control variables used to decide when and how to change the
1425 * PostScript graphics state.
1426 */
1427static int prt_need_moveto;
1428static int prt_do_moveto;
1429static int prt_need_font;
1430static int prt_font;
1431static int prt_need_underline;
1432static int prt_underline;
1433static int prt_do_underline;
1434static int prt_need_fgcol;
1435static int prt_fgcol;
1436static int prt_need_bgcol;
1437static int prt_do_bgcol;
1438static int prt_bgcol;
1439static int prt_new_bgcol;
1440static int prt_attribute_change;
1441static float prt_text_run;
1442static int prt_page_num;
1443static int prt_bufsiz;
1444
1445/*
1446 * Variables controlling physical printing.
1447 */
1448static int prt_media;
1449static int prt_portrait;
1450static int prt_num_copies;
1451static int prt_duplex;
1452static int prt_tumble;
1453static int prt_collate;
1454
1455/*
1456 * Buffers used when generating PostScript output
1457 */
1458static char_u prt_line_buffer[257];
1459static garray_T prt_ps_buffer;
1460
1461# ifdef FEAT_MBYTE
1462static int prt_do_conv;
1463static vimconv_T prt_conv;
1464
1465static int prt_out_mbyte;
1466static int prt_custom_cmap;
1467static char prt_cmap[80];
1468static int prt_use_courier;
1469static int prt_in_ascii;
1470static int prt_half_width;
1471static char *prt_ascii_encoding;
1472static char_u prt_hexchar[] = "0123456789abcdef";
1473# endif
1474
1475 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001476prt_write_file_raw_len(char_u *buffer, int bytes)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001477{
1478 if (!prt_file_error
1479 && fwrite(buffer, sizeof(char_u), bytes, prt_ps_fd)
1480 != (size_t)bytes)
1481 {
1482 EMSG(_("E455: Error writing to PostScript output file"));
1483 prt_file_error = TRUE;
1484 }
1485}
1486
1487 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001488prt_write_file(char_u *buffer)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001489{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001490 prt_write_file_len(buffer, (int)STRLEN(buffer));
Bram Moolenaar81366db2005-07-24 21:16:51 +00001491}
1492
1493 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001494prt_write_file_len(char_u *buffer, int bytes)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001495{
1496#ifdef EBCDIC
1497 ebcdic2ascii(buffer, bytes);
1498#endif
1499 prt_write_file_raw_len(buffer, bytes);
1500}
1501
1502/*
1503 * Write a string.
1504 */
1505 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001506prt_write_string(char *s)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001507{
1508 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer), "%s", s);
1509 prt_write_file(prt_line_buffer);
1510}
1511
1512/*
1513 * Write an int and a space.
1514 */
1515 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001516prt_write_int(int i)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001517{
1518 sprintf((char *)prt_line_buffer, "%d ", i);
1519 prt_write_file(prt_line_buffer);
1520}
1521
1522/*
1523 * Write a boolean and a space.
1524 */
1525 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001526prt_write_boolean(int b)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001527{
1528 sprintf((char *)prt_line_buffer, "%s ", (b ? "T" : "F"));
1529 prt_write_file(prt_line_buffer);
1530}
1531
1532/*
1533 * Write PostScript to re-encode and define the font.
1534 */
1535 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001536prt_def_font(
1537 char *new_name,
1538 char *encoding,
1539 int height,
1540 char *font)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001541{
1542 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
1543 "/_%s /VIM-%s /%s ref\n", new_name, encoding, font);
1544 prt_write_file(prt_line_buffer);
1545#ifdef FEAT_MBYTE
1546 if (prt_out_mbyte)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001547 sprintf((char *)prt_line_buffer, "/%s %d %f /_%s sffs\n",
Bram Moolenaar81366db2005-07-24 21:16:51 +00001548 new_name, height, 500./prt_ps_courier_font.wx, new_name);
1549 else
1550#endif
1551 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
1552 "/%s %d /_%s ffs\n", new_name, height, new_name);
1553 prt_write_file(prt_line_buffer);
1554}
1555
1556#ifdef FEAT_MBYTE
1557/*
1558 * Write a line to define the CID font.
1559 */
1560 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001561prt_def_cidfont(char *new_name, int height, char *cidfont)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001562{
1563 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
1564 "/_%s /%s[/%s] vim_composefont\n", new_name, prt_cmap, cidfont);
1565 prt_write_file(prt_line_buffer);
1566 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
1567 "/%s %d /_%s ffs\n", new_name, height, new_name);
1568 prt_write_file(prt_line_buffer);
1569}
1570
1571/*
1572 * Write a line to define a duplicate of a CID font
1573 */
1574 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001575prt_dup_cidfont(char *original_name, char *new_name)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001576{
1577 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
1578 "/%s %s d\n", new_name, original_name);
1579 prt_write_file(prt_line_buffer);
1580}
1581#endif
1582
1583/*
1584 * Convert a real value into an integer and fractional part as integers, with
1585 * the fractional part being in the range [0,10^precision). The fractional part
1586 * is also rounded based on the precision + 1'th fractional digit.
1587 */
1588 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001589prt_real_bits(
1590 double real,
1591 int precision,
1592 int *pinteger,
1593 int *pfraction)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001594{
1595 int i;
1596 int integer;
1597 float fraction;
1598
1599 integer = (int)real;
1600 fraction = (float)(real - integer);
1601 if (real < (double)integer)
1602 fraction = -fraction;
1603 for (i = 0; i < precision; i++)
1604 fraction *= 10.0;
1605
1606 *pinteger = integer;
1607 *pfraction = (int)(fraction + 0.5);
1608}
1609
1610/*
1611 * Write a real and a space. Save bytes if real value has no fractional part!
1612 * We use prt_real_bits() as %f in sprintf uses the locale setting to decide
1613 * what decimal point character to use, but PS always requires a '.'.
1614 */
1615 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001616prt_write_real(double val, int prec)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001617{
1618 int integer;
1619 int fraction;
1620
1621 prt_real_bits(val, prec, &integer, &fraction);
1622 /* Emit integer part */
1623 sprintf((char *)prt_line_buffer, "%d", integer);
1624 prt_write_file(prt_line_buffer);
1625 /* Only emit fraction if necessary */
1626 if (fraction != 0)
1627 {
1628 /* Remove any trailing zeros */
1629 while ((fraction % 10) == 0)
1630 {
1631 prec--;
1632 fraction /= 10;
1633 }
1634 /* Emit fraction left padded with zeros */
1635 sprintf((char *)prt_line_buffer, ".%0*d", prec, fraction);
1636 prt_write_file(prt_line_buffer);
1637 }
1638 sprintf((char *)prt_line_buffer, " ");
1639 prt_write_file(prt_line_buffer);
1640}
1641
1642/*
1643 * Write a line to define a numeric variable.
1644 */
1645 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001646prt_def_var(char *name, double value, int prec)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001647{
1648 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
1649 "/%s ", name);
1650 prt_write_file(prt_line_buffer);
1651 prt_write_real(value, prec);
1652 sprintf((char *)prt_line_buffer, "d\n");
1653 prt_write_file(prt_line_buffer);
1654}
1655
1656/* Convert size from font space to user space at current font scale */
1657#define PRT_PS_FONT_TO_USER(scale, size) ((size) * ((scale)/1000.0))
1658
1659 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001660prt_flush_buffer(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001661{
1662 if (prt_ps_buffer.ga_len > 0)
1663 {
1664 /* Any background color must be drawn first */
1665 if (prt_do_bgcol && (prt_new_bgcol != PRCOLOR_WHITE))
1666 {
1667 int r, g, b;
1668
1669 if (prt_do_moveto)
1670 {
1671 prt_write_real(prt_pos_x_moveto, 2);
1672 prt_write_real(prt_pos_y_moveto, 2);
1673 prt_write_string("m\n");
1674 prt_do_moveto = FALSE;
1675 }
1676
1677 /* Size of rect of background color on which text is printed */
1678 prt_write_real(prt_text_run, 2);
1679 prt_write_real(prt_line_height, 2);
1680
1681 /* Lastly add the color of the background */
1682 r = ((unsigned)prt_new_bgcol & 0xff0000) >> 16;
1683 g = ((unsigned)prt_new_bgcol & 0xff00) >> 8;
1684 b = prt_new_bgcol & 0xff;
1685 prt_write_real(r / 255.0, 3);
1686 prt_write_real(g / 255.0, 3);
1687 prt_write_real(b / 255.0, 3);
1688 prt_write_string("bg\n");
1689 }
1690 /* Draw underlines before the text as it makes it slightly easier to
1691 * find the starting point.
1692 */
1693 if (prt_do_underline)
1694 {
1695 if (prt_do_moveto)
1696 {
1697 prt_write_real(prt_pos_x_moveto, 2);
1698 prt_write_real(prt_pos_y_moveto, 2);
1699 prt_write_string("m\n");
1700 prt_do_moveto = FALSE;
1701 }
1702
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001703 /* Underline length of text run */
Bram Moolenaar81366db2005-07-24 21:16:51 +00001704 prt_write_real(prt_text_run, 2);
1705 prt_write_string("ul\n");
1706 }
1707 /* Draw the text
1708 * Note: we write text out raw - EBCDIC conversion is handled in the
1709 * PostScript world via the font encoding vector. */
1710#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001711 if (prt_out_mbyte)
1712 prt_write_string("<");
1713 else
Bram Moolenaar81366db2005-07-24 21:16:51 +00001714#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001715 prt_write_string("(");
Bram Moolenaar81366db2005-07-24 21:16:51 +00001716 prt_write_file_raw_len(prt_ps_buffer.ga_data, prt_ps_buffer.ga_len);
1717#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001718 if (prt_out_mbyte)
1719 prt_write_string(">");
1720 else
Bram Moolenaar81366db2005-07-24 21:16:51 +00001721#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001722 prt_write_string(")");
Bram Moolenaar81366db2005-07-24 21:16:51 +00001723 /* Add a moveto if need be and use the appropriate show procedure */
1724 if (prt_do_moveto)
1725 {
1726 prt_write_real(prt_pos_x_moveto, 2);
1727 prt_write_real(prt_pos_y_moveto, 2);
1728 /* moveto and a show */
1729 prt_write_string("ms\n");
1730 prt_do_moveto = FALSE;
1731 }
1732 else /* Simple show */
1733 prt_write_string("s\n");
1734
1735 ga_clear(&prt_ps_buffer);
1736 ga_init2(&prt_ps_buffer, (int)sizeof(char), prt_bufsiz);
1737 }
1738}
1739
1740
1741 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001742prt_resource_name(char_u *filename, void *cookie)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001743{
1744 char_u *resource_filename = cookie;
1745
1746 if (STRLEN(filename) >= MAXPATHL)
1747 *resource_filename = NUL;
1748 else
1749 STRCPY(resource_filename, filename);
1750}
1751
1752 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001753prt_find_resource(char *name, struct prt_ps_resource_S *resource)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001754{
Bram Moolenaard9462e32011-04-11 21:35:11 +02001755 char_u *buffer;
1756 int retval;
1757
1758 buffer = alloc(MAXPATHL + 1);
1759 if (buffer == NULL)
1760 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001761
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001762 vim_strncpy(resource->name, (char_u *)name, 63);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001763 /* Look for named resource file in runtimepath */
1764 STRCPY(buffer, "print");
1765 add_pathsep(buffer);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001766 vim_strcat(buffer, (char_u *)name, MAXPATHL);
1767 vim_strcat(buffer, (char_u *)".ps", MAXPATHL);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001768 resource->filename[0] = NUL;
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01001769 retval = (do_in_runtimepath(buffer, 0, prt_resource_name,
Bram Moolenaar81366db2005-07-24 21:16:51 +00001770 resource->filename)
1771 && resource->filename[0] != NUL);
Bram Moolenaard9462e32011-04-11 21:35:11 +02001772 vim_free(buffer);
1773 return retval;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001774}
1775
1776/* PS CR and LF characters have platform independent values */
1777#define PSLF (0x0a)
1778#define PSCR (0x0d)
1779
1780/* Static buffer to read initial comments in a resource file, some can have a
1781 * couple of KB of comments! */
1782#define PRT_FILE_BUFFER_LEN (2048)
1783struct prt_resfile_buffer_S
1784{
1785 char_u buffer[PRT_FILE_BUFFER_LEN];
1786 int len;
1787 int line_start;
1788 int line_end;
1789};
1790
1791static struct prt_resfile_buffer_S prt_resfile;
1792
1793 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001794prt_resfile_next_line(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001795{
Bram Moolenaar89d40322006-08-29 15:30:07 +00001796 int idx;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001797
1798 /* Move to start of next line and then find end of line */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001799 idx = prt_resfile.line_end + 1;
1800 while (idx < prt_resfile.len)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001801 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001802 if (prt_resfile.buffer[idx] != PSLF && prt_resfile.buffer[idx] != PSCR)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001803 break;
Bram Moolenaar89d40322006-08-29 15:30:07 +00001804 idx++;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001805 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00001806 prt_resfile.line_start = idx;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001807
Bram Moolenaar89d40322006-08-29 15:30:07 +00001808 while (idx < prt_resfile.len)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001809 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001810 if (prt_resfile.buffer[idx] == PSLF || prt_resfile.buffer[idx] == PSCR)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001811 break;
Bram Moolenaar89d40322006-08-29 15:30:07 +00001812 idx++;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001813 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00001814 prt_resfile.line_end = idx;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001815
Bram Moolenaar89d40322006-08-29 15:30:07 +00001816 return (idx < prt_resfile.len);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001817}
1818
1819 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001820prt_resfile_strncmp(int offset, char *string, int len)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001821{
1822 /* Force not equal if string is longer than remainder of line */
1823 if (len > (prt_resfile.line_end - (prt_resfile.line_start + offset)))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001824 return 1;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001825
1826 return STRNCMP(&prt_resfile.buffer[prt_resfile.line_start + offset],
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001827 string, len);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001828}
1829
1830 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001831prt_resfile_skip_nonws(int offset)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001832{
Bram Moolenaar89d40322006-08-29 15:30:07 +00001833 int idx;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001834
Bram Moolenaar89d40322006-08-29 15:30:07 +00001835 idx = prt_resfile.line_start + offset;
1836 while (idx < prt_resfile.line_end)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001837 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001838 if (isspace(prt_resfile.buffer[idx]))
1839 return idx - prt_resfile.line_start;
1840 idx++;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001841 }
1842 return -1;
1843}
1844
1845 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001846prt_resfile_skip_ws(int offset)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001847{
Bram Moolenaar89d40322006-08-29 15:30:07 +00001848 int idx;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001849
Bram Moolenaar89d40322006-08-29 15:30:07 +00001850 idx = prt_resfile.line_start + offset;
1851 while (idx < prt_resfile.line_end)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001852 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001853 if (!isspace(prt_resfile.buffer[idx]))
1854 return idx - prt_resfile.line_start;
1855 idx++;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001856 }
1857 return -1;
1858}
1859
1860/* prt_next_dsc() - returns detail on next DSC comment line found. Returns true
1861 * if a DSC comment is found, else false */
1862 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001863prt_next_dsc(struct prt_dsc_line_S *p_dsc_line)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001864{
1865 int comment;
1866 int offset;
1867
1868 /* Move to start of next line */
1869 if (!prt_resfile_next_line())
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001870 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001871
1872 /* DSC comments always start %% */
1873 if (prt_resfile_strncmp(0, "%%", 2) != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001874 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001875
1876 /* Find type of DSC comment */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001877 for (comment = 0; comment < (int)NUM_ELEMENTS(prt_dsc_table); comment++)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001878 if (prt_resfile_strncmp(0, prt_dsc_table[comment].string,
1879 prt_dsc_table[comment].len) == 0)
1880 break;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001881
1882 if (comment != NUM_ELEMENTS(prt_dsc_table))
1883 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001884 /* Return type of comment */
1885 p_dsc_line->type = prt_dsc_table[comment].type;
1886 offset = prt_dsc_table[comment].len;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001887 }
1888 else
1889 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001890 /* Unrecognised DSC comment, skip to ws after comment leader */
1891 p_dsc_line->type = PRT_DSC_MISC_TYPE;
1892 offset = prt_resfile_skip_nonws(0);
1893 if (offset == -1)
1894 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001895 }
1896
1897 /* Skip ws to comment value */
1898 offset = prt_resfile_skip_ws(offset);
1899 if (offset == -1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001900 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001901
1902 p_dsc_line->string = &prt_resfile.buffer[prt_resfile.line_start + offset];
1903 p_dsc_line->len = prt_resfile.line_end - (prt_resfile.line_start + offset);
1904
1905 return TRUE;
1906}
1907
1908/* Improved hand crafted parser to get the type, title, and version number of a
1909 * PS resource file so the file details can be added to the DSC header comments.
1910 */
1911 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001912prt_open_resource(struct prt_ps_resource_S *resource)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001913{
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001914 int offset;
1915 int seen_all;
1916 int seen_title;
1917 int seen_version;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001918 FILE *fd_resource;
1919 struct prt_dsc_line_S dsc_line;
1920
1921 fd_resource = mch_fopen((char *)resource->filename, READBIN);
1922 if (fd_resource == NULL)
1923 {
1924 EMSG2(_("E624: Can't open file \"%s\""), resource->filename);
1925 return FALSE;
1926 }
1927 vim_memset(prt_resfile.buffer, NUL, PRT_FILE_BUFFER_LEN);
1928
1929 /* Parse first line to ensure valid resource file */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001930 prt_resfile.len = (int)fread((char *)prt_resfile.buffer, sizeof(char_u),
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001931 PRT_FILE_BUFFER_LEN, fd_resource);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001932 if (ferror(fd_resource))
1933 {
1934 EMSG2(_("E457: Can't read PostScript resource file \"%s\""),
1935 resource->filename);
1936 fclose(fd_resource);
1937 return FALSE;
1938 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +02001939 fclose(fd_resource);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001940
1941 prt_resfile.line_end = -1;
1942 prt_resfile.line_start = 0;
1943 if (!prt_resfile_next_line())
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001944 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001945
1946 offset = 0;
1947
1948 if (prt_resfile_strncmp(offset, PRT_RESOURCE_HEADER,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001949 (int)STRLEN(PRT_RESOURCE_HEADER)) != 0)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001950 {
1951 EMSG2(_("E618: file \"%s\" is not a PostScript resource file"),
1952 resource->filename);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001953 return FALSE;
1954 }
1955
1956 /* Skip over any version numbers and following ws */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001957 offset += (int)STRLEN(PRT_RESOURCE_HEADER);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001958 offset = prt_resfile_skip_nonws(offset);
1959 if (offset == -1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001960 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001961 offset = prt_resfile_skip_ws(offset);
1962 if (offset == -1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001963 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00001964
1965 if (prt_resfile_strncmp(offset, PRT_RESOURCE_RESOURCE,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001966 (int)STRLEN(PRT_RESOURCE_RESOURCE)) != 0)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001967 {
1968 EMSG2(_("E619: file \"%s\" is not a supported PostScript resource file"),
1969 resource->filename);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001970 return FALSE;
1971 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001972 offset += (int)STRLEN(PRT_RESOURCE_RESOURCE);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001973
1974 /* Decide type of resource in the file */
1975 if (prt_resfile_strncmp(offset, PRT_RESOURCE_PROCSET,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001976 (int)STRLEN(PRT_RESOURCE_PROCSET)) == 0)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001977 resource->type = PRT_RESOURCE_TYPE_PROCSET;
1978 else if (prt_resfile_strncmp(offset, PRT_RESOURCE_ENCODING,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001979 (int)STRLEN(PRT_RESOURCE_ENCODING)) == 0)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001980 resource->type = PRT_RESOURCE_TYPE_ENCODING;
1981 else if (prt_resfile_strncmp(offset, PRT_RESOURCE_CMAP,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001982 (int)STRLEN(PRT_RESOURCE_CMAP)) == 0)
Bram Moolenaar81366db2005-07-24 21:16:51 +00001983 resource->type = PRT_RESOURCE_TYPE_CMAP;
1984 else
1985 {
1986 EMSG2(_("E619: file \"%s\" is not a supported PostScript resource file"),
1987 resource->filename);
Bram Moolenaar81366db2005-07-24 21:16:51 +00001988 return FALSE;
1989 }
1990
1991 /* Look for title and version of resource */
1992 resource->title[0] = '\0';
1993 resource->version[0] = '\0';
1994 seen_title = FALSE;
1995 seen_version = FALSE;
1996 seen_all = FALSE;
1997 while (!seen_all && prt_next_dsc(&dsc_line))
1998 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001999 switch (dsc_line.type)
2000 {
2001 case PRT_DSC_TITLE_TYPE:
2002 vim_strncpy(resource->title, dsc_line.string, dsc_line.len);
2003 seen_title = TRUE;
2004 if (seen_version)
2005 seen_all = TRUE;
2006 break;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002007
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002008 case PRT_DSC_VERSION_TYPE:
2009 vim_strncpy(resource->version, dsc_line.string, dsc_line.len);
2010 seen_version = TRUE;
2011 if (seen_title)
2012 seen_all = TRUE;
2013 break;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002014
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002015 case PRT_DSC_ENDCOMMENTS_TYPE:
2016 /* Wont find title or resource after this comment, stop searching */
2017 seen_all = TRUE;
2018 break;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002019
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002020 case PRT_DSC_MISC_TYPE:
2021 /* Not interested in whatever comment this line had */
2022 break;
2023 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002024 }
2025
2026 if (!seen_title || !seen_version)
2027 {
2028 EMSG2(_("E619: file \"%s\" is not a supported PostScript resource file"),
2029 resource->filename);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002030 return FALSE;
2031 }
2032
Bram Moolenaar81366db2005-07-24 21:16:51 +00002033 return TRUE;
2034}
2035
2036 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002037prt_check_resource(struct prt_ps_resource_S *resource, char_u *version)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002038{
2039 /* Version number m.n should match, the revision number does not matter */
2040 if (STRNCMP(resource->version, version, STRLEN(version)))
2041 {
2042 EMSG2(_("E621: \"%s\" resource file has wrong version"),
2043 resource->name);
2044 return FALSE;
2045 }
2046
2047 /* Other checks to be added as needed */
2048 return TRUE;
2049}
2050
2051 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002052prt_dsc_start(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002053{
2054 prt_write_string("%!PS-Adobe-3.0\n");
2055}
2056
2057 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002058prt_dsc_noarg(char *comment)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002059{
2060 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2061 "%%%%%s\n", comment);
2062 prt_write_file(prt_line_buffer);
2063}
2064
2065 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002066prt_dsc_textline(char *comment, char *text)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002067{
2068 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2069 "%%%%%s: %s\n", comment, text);
2070 prt_write_file(prt_line_buffer);
2071}
2072
2073 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002074prt_dsc_text(char *comment, char *text)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002075{
2076 /* TODO - should scan 'text' for any chars needing escaping! */
2077 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2078 "%%%%%s: (%s)\n", comment, text);
2079 prt_write_file(prt_line_buffer);
2080}
2081
2082#define prt_dsc_atend(c) prt_dsc_text((c), "atend")
2083
2084 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002085prt_dsc_ints(char *comment, int count, int *ints)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002086{
2087 int i;
2088
2089 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2090 "%%%%%s:", comment);
2091 prt_write_file(prt_line_buffer);
2092
2093 for (i = 0; i < count; i++)
2094 {
2095 sprintf((char *)prt_line_buffer, " %d", ints[i]);
2096 prt_write_file(prt_line_buffer);
2097 }
2098
2099 prt_write_string("\n");
2100}
2101
2102 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002103prt_dsc_resources(
2104 char *comment, /* if NULL add to previous */
2105 char *type,
2106 char *string)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002107{
2108 if (comment != NULL)
2109 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2110 "%%%%%s: %s", comment, type);
2111 else
2112 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2113 "%%%%+ %s", type);
2114 prt_write_file(prt_line_buffer);
2115
2116 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2117 " %s\n", string);
2118 prt_write_file(prt_line_buffer);
2119}
2120
2121 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002122prt_dsc_font_resource(char *resource, struct prt_ps_font_S *ps_font)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002123{
2124 int i;
2125
2126 prt_dsc_resources(resource, "font",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002127 ps_font->ps_fontname[PRT_PS_FONT_ROMAN]);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002128 for (i = PRT_PS_FONT_BOLD ; i <= PRT_PS_FONT_BOLDOBLIQUE ; i++)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002129 if (ps_font->ps_fontname[i] != NULL)
2130 prt_dsc_resources(NULL, "font", ps_font->ps_fontname[i]);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002131}
2132
2133 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002134prt_dsc_requirements(
2135 int duplex,
2136 int tumble,
2137 int collate,
2138 int color,
2139 int num_copies)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002140{
2141 /* Only output the comment if we need to.
2142 * Note: tumble is ignored if we are not duplexing
2143 */
2144 if (!(duplex || collate || color || (num_copies > 1)))
2145 return;
2146
2147 sprintf((char *)prt_line_buffer, "%%%%Requirements:");
2148 prt_write_file(prt_line_buffer);
2149
2150 if (duplex)
2151 {
2152 prt_write_string(" duplex");
2153 if (tumble)
2154 prt_write_string("(tumble)");
2155 }
2156 if (collate)
2157 prt_write_string(" collate");
2158 if (color)
2159 prt_write_string(" color");
2160 if (num_copies > 1)
2161 {
2162 prt_write_string(" numcopies(");
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002163 /* Note: no space wanted so don't use prt_write_int() */
Bram Moolenaar81366db2005-07-24 21:16:51 +00002164 sprintf((char *)prt_line_buffer, "%d", num_copies);
2165 prt_write_file(prt_line_buffer);
2166 prt_write_string(")");
2167 }
2168 prt_write_string("\n");
2169}
2170
2171 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002172prt_dsc_docmedia(
2173 char *paper_name,
2174 double width,
2175 double height,
2176 double weight,
2177 char *colour,
2178 char *type)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002179{
2180 vim_snprintf((char *)prt_line_buffer, sizeof(prt_line_buffer),
2181 "%%%%DocumentMedia: %s ", paper_name);
2182 prt_write_file(prt_line_buffer);
2183 prt_write_real(width, 2);
2184 prt_write_real(height, 2);
2185 prt_write_real(weight, 2);
2186 if (colour == NULL)
2187 prt_write_string("()");
2188 else
2189 prt_write_string(colour);
2190 prt_write_string(" ");
2191 if (type == NULL)
2192 prt_write_string("()");
2193 else
2194 prt_write_string(type);
2195 prt_write_string("\n");
2196}
2197
2198 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002199mch_print_cleanup(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002200{
2201#ifdef FEAT_MBYTE
2202 if (prt_out_mbyte)
2203 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002204 int i;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002205
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002206 /* Free off all CID font names created, but first clear duplicate
2207 * pointers to the same string (when the same font is used for more than
2208 * one style).
2209 */
2210 for (i = PRT_PS_FONT_ROMAN; i <= PRT_PS_FONT_BOLDOBLIQUE; i++)
2211 {
2212 if (prt_ps_mb_font.ps_fontname[i] != NULL)
2213 vim_free(prt_ps_mb_font.ps_fontname[i]);
2214 prt_ps_mb_font.ps_fontname[i] = NULL;
2215 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002216 }
2217
2218 if (prt_do_conv)
2219 {
2220 convert_setup(&prt_conv, NULL, NULL);
2221 prt_do_conv = FALSE;
2222 }
2223#endif
2224 if (prt_ps_fd != NULL)
2225 {
2226 fclose(prt_ps_fd);
2227 prt_ps_fd = NULL;
2228 prt_file_error = FALSE;
2229 }
2230 if (prt_ps_file_name != NULL)
2231 {
2232 vim_free(prt_ps_file_name);
2233 prt_ps_file_name = NULL;
2234 }
2235}
2236
2237 static float
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002238to_device_units(int idx, double physsize, int def_number)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002239{
2240 float ret;
2241 int u;
2242 int nr;
2243
2244 u = prt_get_unit(idx);
2245 if (u == PRT_UNIT_NONE)
2246 {
2247 u = PRT_UNIT_PERC;
2248 nr = def_number;
2249 }
2250 else
2251 nr = printer_opts[idx].number;
2252
2253 switch (u)
2254 {
2255 case PRT_UNIT_INCH:
2256 ret = (float)(nr * PRT_PS_DEFAULT_DPI);
2257 break;
2258 case PRT_UNIT_MM:
2259 ret = (float)(nr * PRT_PS_DEFAULT_DPI) / (float)25.4;
2260 break;
2261 case PRT_UNIT_POINT:
2262 ret = (float)nr;
2263 break;
2264 case PRT_UNIT_PERC:
2265 default:
2266 ret = (float)(physsize * nr) / 100;
2267 break;
2268 }
2269
2270 return ret;
2271}
2272
2273/*
2274 * Calculate margins for given width and height from printoptions settings.
2275 */
2276 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002277prt_page_margins(
2278 double width,
2279 double height,
2280 double *left,
2281 double *right,
2282 double *top,
2283 double *bottom)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002284{
2285 *left = to_device_units(OPT_PRINT_LEFT, width, 10);
2286 *right = width - to_device_units(OPT_PRINT_RIGHT, width, 5);
2287 *top = height - to_device_units(OPT_PRINT_TOP, height, 5);
2288 *bottom = to_device_units(OPT_PRINT_BOT, height, 5);
2289}
2290
2291 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002292prt_font_metrics(int font_scale)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002293{
2294 prt_line_height = (float)font_scale;
2295 prt_char_width = (float)PRT_PS_FONT_TO_USER(font_scale, prt_ps_font->wx);
2296}
2297
2298
2299 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002300prt_get_cpl(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002301{
2302 if (prt_use_number())
2303 {
2304 prt_number_width = PRINT_NUMBER_WIDTH * prt_char_width;
2305#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002306 /* If we are outputting multi-byte characters then line numbers will be
2307 * printed with half width characters
2308 */
2309 if (prt_out_mbyte)
2310 prt_number_width /= 2;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002311#endif
2312 prt_left_margin += prt_number_width;
2313 }
2314 else
2315 prt_number_width = 0.0;
2316
2317 return (int)((prt_right_margin - prt_left_margin) / prt_char_width);
2318}
2319
2320#ifdef FEAT_MBYTE
2321 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002322prt_build_cid_fontname(int font, char_u *name, int name_len)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002323{
2324 char *fontname;
2325
2326 fontname = (char *)alloc(name_len + 1);
2327 if (fontname == NULL)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002328 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002329 vim_strncpy((char_u *)fontname, name, name_len);
2330 prt_ps_mb_font.ps_fontname[font] = fontname;
2331
2332 return TRUE;
2333}
2334#endif
2335
2336/*
2337 * Get number of lines of text that fit on a page (excluding the header).
2338 */
2339 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002340prt_get_lpp(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002341{
2342 int lpp;
2343
2344 /*
2345 * Calculate offset to lower left corner of background rect based on actual
2346 * font height (based on its bounding box) and the line height, handling the
2347 * case where the font height can exceed the line height.
2348 */
2349 prt_bgcol_offset = (float)PRT_PS_FONT_TO_USER(prt_line_height,
2350 prt_ps_font->bbox_min_y);
2351 if ((prt_ps_font->bbox_max_y - prt_ps_font->bbox_min_y) < 1000.0)
2352 {
2353 prt_bgcol_offset -= (float)PRT_PS_FONT_TO_USER(prt_line_height,
2354 (1000.0 - (prt_ps_font->bbox_max_y -
2355 prt_ps_font->bbox_min_y)) / 2);
2356 }
2357
2358 /* Get height for topmost line based on background rect offset. */
2359 prt_first_line_height = prt_line_height + prt_bgcol_offset;
2360
2361 /* Calculate lpp */
2362 lpp = (int)((prt_top_margin - prt_bottom_margin) / prt_line_height);
2363
2364 /* Adjust top margin if there is a header */
2365 prt_top_margin -= prt_line_height * prt_header_height();
2366
2367 return lpp - prt_header_height();
2368}
2369
2370#ifdef FEAT_MBYTE
2371 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002372prt_match_encoding(
2373 char *p_encoding,
2374 struct prt_ps_mbfont_S *p_cmap,
2375 struct prt_ps_encoding_S **pp_mbenc)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002376{
2377 int mbenc;
2378 int enc_len;
2379 struct prt_ps_encoding_S *p_mbenc;
2380
2381 *pp_mbenc = NULL;
2382 /* Look for recognised encoding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002383 enc_len = (int)STRLEN(p_encoding);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002384 p_mbenc = p_cmap->encodings;
2385 for (mbenc = 0; mbenc < p_cmap->num_encodings; mbenc++)
2386 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002387 if (STRNICMP(p_mbenc->encoding, p_encoding, enc_len) == 0)
2388 {
2389 *pp_mbenc = p_mbenc;
2390 return TRUE;
2391 }
2392 p_mbenc++;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002393 }
2394 return FALSE;
2395}
2396
2397 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002398prt_match_charset(
2399 char *p_charset,
2400 struct prt_ps_mbfont_S *p_cmap,
2401 struct prt_ps_charset_S **pp_mbchar)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002402{
2403 int mbchar;
2404 int char_len;
2405 struct prt_ps_charset_S *p_mbchar;
2406
2407 /* Look for recognised character set, using default if one is not given */
2408 if (*p_charset == NUL)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002409 p_charset = p_cmap->defcs;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002410 char_len = (int)STRLEN(p_charset);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002411 p_mbchar = p_cmap->charsets;
2412 for (mbchar = 0; mbchar < p_cmap->num_charsets; mbchar++)
2413 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002414 if (STRNICMP(p_mbchar->charset, p_charset, char_len) == 0)
2415 {
2416 *pp_mbchar = p_mbchar;
2417 return TRUE;
2418 }
2419 p_mbchar++;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002420 }
2421 return FALSE;
2422}
2423#endif
2424
Bram Moolenaar81366db2005-07-24 21:16:51 +00002425 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002426mch_print_init(
2427 prt_settings_T *psettings,
2428 char_u *jobname,
2429 int forceit UNUSED)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002430{
2431 int i;
2432 char *paper_name;
2433 int paper_strlen;
2434 int fontsize;
2435 char_u *p;
2436 double left;
2437 double right;
2438 double top;
2439 double bottom;
2440#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002441 int props;
2442 int cmap = 0;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002443 char_u *p_encoding;
2444 struct prt_ps_encoding_S *p_mbenc;
2445 struct prt_ps_encoding_S *p_mbenc_first;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002446 struct prt_ps_charset_S *p_mbchar = NULL;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002447#endif
2448
2449#if 0
2450 /*
2451 * TODO:
2452 * If "forceit" is false: pop up a dialog to select:
2453 * - printer name
2454 * - copies
2455 * - collated/uncollated
2456 * - duplex off/long side/short side
2457 * - paper size
2458 * - portrait/landscape
2459 * - font size
2460 *
2461 * If "forceit" is true: use the default printer and settings
2462 */
2463 if (forceit)
2464 s_pd.Flags |= PD_RETURNDEFAULT;
2465#endif
2466
2467 /*
2468 * Set up font and encoding.
2469 */
2470#ifdef FEAT_MBYTE
2471 p_encoding = enc_skip(p_penc);
2472 if (*p_encoding == NUL)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002473 p_encoding = enc_skip(p_enc);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002474
Bram Moolenaar14716812006-05-04 21:54:08 +00002475 /* Look for a multi-byte font that matches the encoding and character set.
2476 * Only look if multi-byte character set is defined, or using multi-byte
2477 * encoding other than Unicode. This is because a Unicode encoding does not
2478 * uniquely identify a CJK character set to use. */
Bram Moolenaar81366db2005-07-24 21:16:51 +00002479 p_mbenc = NULL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002480 props = enc_canon_props(p_encoding);
Bram Moolenaar14716812006-05-04 21:54:08 +00002481 if (!(props & ENC_8BIT) && ((*p_pmcs != NUL) || !(props & ENC_UNICODE)))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002482 {
Bram Moolenaarec45c4a2015-04-15 14:27:49 +02002483 int cmap_first = 0;
Bram Moolenaar7c94ce92015-04-13 14:45:27 +02002484
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002485 p_mbenc_first = NULL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00002486 for (cmap = 0; cmap < (int)NUM_ELEMENTS(prt_ps_mbfonts); cmap++)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002487 if (prt_match_encoding((char *)p_encoding, &prt_ps_mbfonts[cmap],
Bram Moolenaar81366db2005-07-24 21:16:51 +00002488 &p_mbenc))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002489 {
2490 if (p_mbenc_first == NULL)
Bram Moolenaar7c94ce92015-04-13 14:45:27 +02002491 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002492 p_mbenc_first = p_mbenc;
Bram Moolenaar7c94ce92015-04-13 14:45:27 +02002493 cmap_first = cmap;
2494 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002495 if (prt_match_charset((char *)p_pmcs, &prt_ps_mbfonts[cmap],
Bram Moolenaar81366db2005-07-24 21:16:51 +00002496 &p_mbchar))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002497 break;
2498 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002499
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002500 /* Use first encoding matched if no charset matched */
2501 if (p_mbchar == NULL && p_mbenc_first != NULL)
Bram Moolenaar7c94ce92015-04-13 14:45:27 +02002502 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002503 p_mbenc = p_mbenc_first;
Bram Moolenaar7c94ce92015-04-13 14:45:27 +02002504 cmap = cmap_first;
2505 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002506 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002507
2508 prt_out_mbyte = (p_mbenc != NULL);
2509 if (prt_out_mbyte)
2510 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002511 /* Build CMap name - will be same for all multi-byte fonts used */
2512 prt_cmap[0] = NUL;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002513
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002514 prt_custom_cmap = (p_mbchar == NULL);
2515 if (!prt_custom_cmap)
2516 {
2517 /* Check encoding and character set are compatible */
2518 if ((p_mbenc->needs_charset & p_mbchar->has_charset) == 0)
2519 {
2520 EMSG(_("E673: Incompatible multi-byte encoding and character set."));
2521 return FALSE;
2522 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002523
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002524 /* Add charset name if not empty */
2525 if (p_mbchar->cmap_charset != NULL)
2526 {
2527 vim_strncpy((char_u *)prt_cmap,
Bram Moolenaar81366db2005-07-24 21:16:51 +00002528 (char_u *)p_mbchar->cmap_charset, sizeof(prt_cmap) - 3);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002529 STRCAT(prt_cmap, "-");
2530 }
2531 }
2532 else
2533 {
2534 /* Add custom CMap character set name */
2535 if (*p_pmcs == NUL)
2536 {
2537 EMSG(_("E674: printmbcharset cannot be empty with multi-byte encoding."));
2538 return FALSE;
2539 }
2540 vim_strncpy((char_u *)prt_cmap, p_pmcs, sizeof(prt_cmap) - 3);
2541 STRCAT(prt_cmap, "-");
2542 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002543
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002544 /* CMap name ends with (optional) encoding name and -H for horizontal */
2545 if (p_mbenc->cmap_encoding != NULL && STRLEN(prt_cmap)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002546 + STRLEN(p_mbenc->cmap_encoding) + 3 < sizeof(prt_cmap))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002547 {
2548 STRCAT(prt_cmap, p_mbenc->cmap_encoding);
2549 STRCAT(prt_cmap, "-");
2550 }
2551 STRCAT(prt_cmap, "H");
Bram Moolenaar81366db2005-07-24 21:16:51 +00002552
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002553 if (!mbfont_opts[OPT_MBFONT_REGULAR].present)
2554 {
2555 EMSG(_("E675: No default font specified for multi-byte printing."));
2556 return FALSE;
2557 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002558
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002559 /* Derive CID font names with fallbacks if not defined */
2560 if (!prt_build_cid_fontname(PRT_PS_FONT_ROMAN,
2561 mbfont_opts[OPT_MBFONT_REGULAR].string,
2562 mbfont_opts[OPT_MBFONT_REGULAR].strlen))
2563 return FALSE;
2564 if (mbfont_opts[OPT_MBFONT_BOLD].present)
2565 if (!prt_build_cid_fontname(PRT_PS_FONT_BOLD,
2566 mbfont_opts[OPT_MBFONT_BOLD].string,
2567 mbfont_opts[OPT_MBFONT_BOLD].strlen))
2568 return FALSE;
2569 if (mbfont_opts[OPT_MBFONT_OBLIQUE].present)
2570 if (!prt_build_cid_fontname(PRT_PS_FONT_OBLIQUE,
2571 mbfont_opts[OPT_MBFONT_OBLIQUE].string,
2572 mbfont_opts[OPT_MBFONT_OBLIQUE].strlen))
2573 return FALSE;
2574 if (mbfont_opts[OPT_MBFONT_BOLDOBLIQUE].present)
2575 if (!prt_build_cid_fontname(PRT_PS_FONT_BOLDOBLIQUE,
Bram Moolenaar81366db2005-07-24 21:16:51 +00002576 mbfont_opts[OPT_MBFONT_BOLDOBLIQUE].string,
2577 mbfont_opts[OPT_MBFONT_BOLDOBLIQUE].strlen))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002578 return FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002579
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002580 /* Check if need to use Courier for ASCII code range, and if so pick up
2581 * the encoding to use */
2582 prt_use_courier = mbfont_opts[OPT_MBFONT_USECOURIER].present &&
2583 (TOLOWER_ASC(mbfont_opts[OPT_MBFONT_USECOURIER].string[0]) == 'y');
2584 if (prt_use_courier)
2585 {
2586 /* Use national ASCII variant unless ASCII wanted */
2587 if (mbfont_opts[OPT_MBFONT_ASCII].present &&
2588 (TOLOWER_ASC(mbfont_opts[OPT_MBFONT_ASCII].string[0]) == 'y'))
2589 prt_ascii_encoding = "ascii";
2590 else
2591 prt_ascii_encoding = prt_ps_mbfonts[cmap].ascii_enc;
2592 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00002593
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002594 prt_ps_font = &prt_ps_mb_font;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002595 }
2596 else
2597#endif
2598 {
2599#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002600 prt_use_courier = FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002601#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002602 prt_ps_font = &prt_ps_courier_font;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002603 }
2604
2605 /*
2606 * Find the size of the paper and set the margins.
2607 */
2608 prt_portrait = (!printer_opts[OPT_PRINT_PORTRAIT].present
2609 || TOLOWER_ASC(printer_opts[OPT_PRINT_PORTRAIT].string[0]) == 'y');
2610 if (printer_opts[OPT_PRINT_PAPER].present)
2611 {
2612 paper_name = (char *)printer_opts[OPT_PRINT_PAPER].string;
2613 paper_strlen = printer_opts[OPT_PRINT_PAPER].strlen;
2614 }
2615 else
2616 {
2617 paper_name = "A4";
2618 paper_strlen = 2;
2619 }
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00002620 for (i = 0; i < (int)PRT_MEDIASIZE_LEN; ++i)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002621 if (STRLEN(prt_mediasize[i].name) == (unsigned)paper_strlen
2622 && STRNICMP(prt_mediasize[i].name, paper_name,
2623 paper_strlen) == 0)
2624 break;
2625 if (i == PRT_MEDIASIZE_LEN)
2626 i = 0;
2627 prt_media = i;
2628
2629 /*
2630 * Set PS pagesize based on media dimensions and print orientation.
2631 * Note: Media and page sizes have defined meanings in PostScript and should
2632 * be kept distinct. Media is the paper (or transparency, or ...) that is
2633 * printed on, whereas the page size is the area that the PostScript
2634 * interpreter renders into.
2635 */
2636 if (prt_portrait)
2637 {
2638 prt_page_width = prt_mediasize[i].width;
2639 prt_page_height = prt_mediasize[i].height;
2640 }
2641 else
2642 {
2643 prt_page_width = prt_mediasize[i].height;
2644 prt_page_height = prt_mediasize[i].width;
2645 }
2646
2647 /*
2648 * Set PS page margins based on the PS pagesize, not the mediasize - this
2649 * needs to be done before the cpl and lpp are calculated.
2650 */
2651 prt_page_margins(prt_page_width, prt_page_height, &left, &right, &top,
2652 &bottom);
2653 prt_left_margin = (float)left;
2654 prt_right_margin = (float)right;
2655 prt_top_margin = (float)top;
2656 prt_bottom_margin = (float)bottom;
2657
2658 /*
2659 * Set up the font size.
2660 */
2661 fontsize = PRT_PS_DEFAULT_FONTSIZE;
2662 for (p = p_pfn; (p = vim_strchr(p, ':')) != NULL; ++p)
2663 if (p[1] == 'h' && VIM_ISDIGIT(p[2]))
2664 fontsize = atoi((char *)p + 2);
2665 prt_font_metrics(fontsize);
2666
2667 /*
2668 * Return the number of characters per line, and lines per page for the
2669 * generic print code.
2670 */
2671 psettings->chars_per_line = prt_get_cpl();
2672 psettings->lines_per_page = prt_get_lpp();
2673
2674 /* Catch margin settings that leave no space for output! */
2675 if (psettings->chars_per_line <= 0 || psettings->lines_per_page <= 0)
2676 return FAIL;
2677
2678 /*
2679 * Sort out the number of copies to be printed. PS by default will do
2680 * uncollated copies for you, so once we know how many uncollated copies are
2681 * wanted cache it away and lie to the generic code that we only want one
2682 * uncollated copy.
2683 */
2684 psettings->n_collated_copies = 1;
2685 psettings->n_uncollated_copies = 1;
2686 prt_num_copies = 1;
2687 prt_collate = (!printer_opts[OPT_PRINT_COLLATE].present
2688 || TOLOWER_ASC(printer_opts[OPT_PRINT_COLLATE].string[0]) == 'y');
2689 if (prt_collate)
2690 {
2691 /* TODO: Get number of collated copies wanted. */
2692 psettings->n_collated_copies = 1;
2693 }
2694 else
2695 {
2696 /* TODO: Get number of uncollated copies wanted and update the cached
2697 * count.
2698 */
2699 prt_num_copies = 1;
2700 }
2701
2702 psettings->jobname = jobname;
2703
2704 /*
2705 * Set up printer duplex and tumble based on Duplex option setting - default
2706 * is long sided duplex printing (i.e. no tumble).
2707 */
2708 prt_duplex = TRUE;
2709 prt_tumble = FALSE;
2710 psettings->duplex = 1;
2711 if (printer_opts[OPT_PRINT_DUPLEX].present)
2712 {
2713 if (STRNICMP(printer_opts[OPT_PRINT_DUPLEX].string, "off", 3) == 0)
2714 {
2715 prt_duplex = FALSE;
2716 psettings->duplex = 0;
2717 }
2718 else if (STRNICMP(printer_opts[OPT_PRINT_DUPLEX].string, "short", 5)
2719 == 0)
2720 prt_tumble = TRUE;
2721 }
2722
2723 /* For now user abort not supported */
2724 psettings->user_abort = 0;
2725
2726 /* If the user didn't specify a file name, use a temp file. */
2727 if (psettings->outfile == NULL)
2728 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002729 prt_ps_file_name = vim_tempname('p', TRUE);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002730 if (prt_ps_file_name == NULL)
2731 {
2732 EMSG(_(e_notmp));
2733 return FAIL;
2734 }
2735 prt_ps_fd = mch_fopen((char *)prt_ps_file_name, WRITEBIN);
2736 }
2737 else
2738 {
2739 p = expand_env_save(psettings->outfile);
2740 if (p != NULL)
2741 {
2742 prt_ps_fd = mch_fopen((char *)p, WRITEBIN);
2743 vim_free(p);
2744 }
2745 }
2746 if (prt_ps_fd == NULL)
2747 {
2748 EMSG(_("E324: Can't open PostScript output file"));
2749 mch_print_cleanup();
2750 return FAIL;
2751 }
2752
2753 prt_bufsiz = psettings->chars_per_line;
2754#ifdef FEAT_MBYTE
2755 if (prt_out_mbyte)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002756 prt_bufsiz *= 2;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002757#endif
2758 ga_init2(&prt_ps_buffer, (int)sizeof(char), prt_bufsiz);
2759
2760 prt_page_num = 0;
2761
2762 prt_attribute_change = FALSE;
2763 prt_need_moveto = FALSE;
2764 prt_need_font = FALSE;
2765 prt_need_fgcol = FALSE;
2766 prt_need_bgcol = FALSE;
2767 prt_need_underline = FALSE;
2768
2769 prt_file_error = FALSE;
2770
2771 return OK;
2772}
2773
2774 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002775prt_add_resource(struct prt_ps_resource_S *resource)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002776{
2777 FILE* fd_resource;
2778 char_u resource_buffer[512];
2779 size_t bytes_read;
2780
2781 fd_resource = mch_fopen((char *)resource->filename, READBIN);
2782 if (fd_resource == NULL)
2783 {
2784 EMSG2(_("E456: Can't open file \"%s\""), resource->filename);
2785 return FALSE;
2786 }
2787 prt_dsc_resources("BeginResource", prt_resource_types[resource->type],
2788 (char *)resource->title);
2789
2790 prt_dsc_textline("BeginDocument", (char *)resource->filename);
2791
2792 for (;;)
2793 {
2794 bytes_read = fread((char *)resource_buffer, sizeof(char_u),
2795 sizeof(resource_buffer), fd_resource);
2796 if (ferror(fd_resource))
2797 {
2798 EMSG2(_("E457: Can't read PostScript resource file \"%s\""),
2799 resource->filename);
2800 fclose(fd_resource);
2801 return FALSE;
2802 }
2803 if (bytes_read == 0)
2804 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002805 prt_write_file_raw_len(resource_buffer, (int)bytes_read);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002806 if (prt_file_error)
2807 {
2808 fclose(fd_resource);
2809 return FALSE;
2810 }
2811 }
2812 fclose(fd_resource);
2813
2814 prt_dsc_noarg("EndDocument");
2815
2816 prt_dsc_noarg("EndResource");
2817
2818 return TRUE;
2819}
2820
2821 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002822mch_print_begin(prt_settings_T *psettings)
Bram Moolenaar81366db2005-07-24 21:16:51 +00002823{
2824 time_t now;
2825 int bbox[4];
2826 char *p_time;
2827 double left;
2828 double right;
2829 double top;
2830 double bottom;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002831 struct prt_ps_resource_S *res_prolog;
2832 struct prt_ps_resource_S *res_encoding;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002833 char buffer[256];
2834 char_u *p_encoding;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002835 char_u *p;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002836#ifdef FEAT_MBYTE
Bram Moolenaard9462e32011-04-11 21:35:11 +02002837 struct prt_ps_resource_S *res_cidfont;
2838 struct prt_ps_resource_S *res_cmap;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002839#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02002840 int retval = FALSE;
2841
2842 res_prolog = (struct prt_ps_resource_S *)
2843 alloc(sizeof(struct prt_ps_resource_S));
2844 res_encoding = (struct prt_ps_resource_S *)
2845 alloc(sizeof(struct prt_ps_resource_S));
2846#ifdef FEAT_MBYTE
2847 res_cidfont = (struct prt_ps_resource_S *)
2848 alloc(sizeof(struct prt_ps_resource_S));
2849 res_cmap = (struct prt_ps_resource_S *)
2850 alloc(sizeof(struct prt_ps_resource_S));
2851#endif
2852 if (res_prolog == NULL || res_encoding == NULL
2853#ifdef FEAT_MBYTE
2854 || res_cidfont == NULL || res_cmap == NULL
2855#endif
2856 )
2857 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002858
2859 /*
2860 * PS DSC Header comments - no PS code!
2861 */
2862 prt_dsc_start();
2863 prt_dsc_textline("Title", (char *)psettings->jobname);
2864 if (!get_user_name((char_u *)buffer, 256))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002865 STRCPY(buffer, "Unknown");
Bram Moolenaar81366db2005-07-24 21:16:51 +00002866 prt_dsc_textline("For", buffer);
2867 prt_dsc_textline("Creator", VIM_VERSION_LONG);
2868 /* Note: to ensure Clean8bit I don't think we can use LC_TIME */
2869 now = time(NULL);
2870 p_time = ctime(&now);
2871 /* Note: ctime() adds a \n so we have to remove it :-( */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002872 p = vim_strchr((char_u *)p_time, '\n');
2873 if (p != NULL)
2874 *p = NUL;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002875 prt_dsc_textline("CreationDate", p_time);
2876 prt_dsc_textline("DocumentData", "Clean8Bit");
2877 prt_dsc_textline("Orientation", "Portrait");
2878 prt_dsc_atend("Pages");
2879 prt_dsc_textline("PageOrder", "Ascend");
2880 /* The bbox does not change with orientation - it is always in the default
2881 * user coordinate system! We have to recalculate right and bottom
2882 * coordinates based on the font metrics for the bbox to be accurate. */
2883 prt_page_margins(prt_mediasize[prt_media].width,
2884 prt_mediasize[prt_media].height,
2885 &left, &right, &top, &bottom);
2886 bbox[0] = (int)left;
2887 if (prt_portrait)
2888 {
2889 /* In portrait printing the fixed point is the top left corner so we
2890 * derive the bbox from that point. We have the expected cpl chars
2891 * across the media and lpp lines down the media.
2892 */
2893 bbox[1] = (int)(top - (psettings->lines_per_page + prt_header_height())
2894 * prt_line_height);
2895 bbox[2] = (int)(left + psettings->chars_per_line * prt_char_width
2896 + 0.5);
2897 bbox[3] = (int)(top + 0.5);
2898 }
2899 else
2900 {
2901 /* In landscape printing the fixed point is the bottom left corner so we
2902 * derive the bbox from that point. We have lpp chars across the media
2903 * and cpl lines up the media.
2904 */
2905 bbox[1] = (int)bottom;
2906 bbox[2] = (int)(left + ((psettings->lines_per_page
2907 + prt_header_height()) * prt_line_height) + 0.5);
2908 bbox[3] = (int)(bottom + psettings->chars_per_line * prt_char_width
2909 + 0.5);
2910 }
2911 prt_dsc_ints("BoundingBox", 4, bbox);
2912 /* The media width and height does not change with landscape printing! */
2913 prt_dsc_docmedia(prt_mediasize[prt_media].name,
2914 prt_mediasize[prt_media].width,
2915 prt_mediasize[prt_media].height,
2916 (double)0, NULL, NULL);
2917 /* Define fonts needed */
2918#ifdef FEAT_MBYTE
2919 if (!prt_out_mbyte || prt_use_courier)
2920#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002921 prt_dsc_font_resource("DocumentNeededResources", &prt_ps_courier_font);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002922#ifdef FEAT_MBYTE
2923 if (prt_out_mbyte)
2924 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002925 prt_dsc_font_resource((prt_use_courier ? NULL
2926 : "DocumentNeededResources"), &prt_ps_mb_font);
2927 if (!prt_custom_cmap)
2928 prt_dsc_resources(NULL, "cmap", prt_cmap);
Bram Moolenaar81366db2005-07-24 21:16:51 +00002929 }
2930#endif
2931
2932 /* Search for external resources VIM supplies */
Bram Moolenaard9462e32011-04-11 21:35:11 +02002933 if (!prt_find_resource("prolog", res_prolog))
Bram Moolenaar81366db2005-07-24 21:16:51 +00002934 {
2935 EMSG(_("E456: Can't find PostScript resource file \"prolog.ps\""));
Bram Moolenaar0a383962014-11-27 17:37:57 +01002936 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002937 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02002938 if (!prt_open_resource(res_prolog))
Bram Moolenaar0a383962014-11-27 17:37:57 +01002939 goto theend;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002940 if (!prt_check_resource(res_prolog, PRT_PROLOG_VERSION))
Bram Moolenaar0a383962014-11-27 17:37:57 +01002941 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002942#ifdef FEAT_MBYTE
2943 if (prt_out_mbyte)
2944 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002945 /* Look for required version of multi-byte printing procset */
Bram Moolenaard9462e32011-04-11 21:35:11 +02002946 if (!prt_find_resource("cidfont", res_cidfont))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002947 {
2948 EMSG(_("E456: Can't find PostScript resource file \"cidfont.ps\""));
Bram Moolenaar0a383962014-11-27 17:37:57 +01002949 goto theend;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002950 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02002951 if (!prt_open_resource(res_cidfont))
Bram Moolenaar0a383962014-11-27 17:37:57 +01002952 goto theend;
Bram Moolenaard9462e32011-04-11 21:35:11 +02002953 if (!prt_check_resource(res_cidfont, PRT_CID_PROLOG_VERSION))
Bram Moolenaar0a383962014-11-27 17:37:57 +01002954 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002955 }
2956#endif
2957
2958 /* Find an encoding to use for printing.
2959 * Check 'printencoding'. If not set or not found, then use 'encoding'. If
2960 * that cannot be found then default to "latin1".
2961 * Note: VIM specific encoding header is always skipped.
2962 */
2963#ifdef FEAT_MBYTE
2964 if (!prt_out_mbyte)
2965 {
2966#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002967 p_encoding = enc_skip(p_penc);
2968 if (*p_encoding == NUL
Bram Moolenaard9462e32011-04-11 21:35:11 +02002969 || !prt_find_resource((char *)p_encoding, res_encoding))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002970 {
2971 /* 'printencoding' not set or not supported - find alternate */
Bram Moolenaar81366db2005-07-24 21:16:51 +00002972#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002973 int props;
Bram Moolenaar81366db2005-07-24 21:16:51 +00002974
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002975 p_encoding = enc_skip(p_enc);
2976 props = enc_canon_props(p_encoding);
2977 if (!(props & ENC_8BIT)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002978 || !prt_find_resource((char *)p_encoding, res_encoding))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002979 /* 8-bit 'encoding' is not supported */
Bram Moolenaar81366db2005-07-24 21:16:51 +00002980#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002981 {
2982 /* Use latin1 as default printing encoding */
2983 p_encoding = (char_u *)"latin1";
Bram Moolenaard9462e32011-04-11 21:35:11 +02002984 if (!prt_find_resource((char *)p_encoding, res_encoding))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002985 {
2986 EMSG2(_("E456: Can't find PostScript resource file \"%s.ps\""),
2987 p_encoding);
Bram Moolenaar0a383962014-11-27 17:37:57 +01002988 goto theend;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002989 }
2990 }
2991 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02002992 if (!prt_open_resource(res_encoding))
Bram Moolenaar0a383962014-11-27 17:37:57 +01002993 goto theend;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002994 /* For the moment there are no checks on encoding resource files to
2995 * perform */
Bram Moolenaar81366db2005-07-24 21:16:51 +00002996#ifdef FEAT_MBYTE
2997 }
2998 else
2999 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003000 p_encoding = enc_skip(p_penc);
3001 if (*p_encoding == NUL)
3002 p_encoding = enc_skip(p_enc);
3003 if (prt_use_courier)
3004 {
3005 /* Include ASCII range encoding vector */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003006 if (!prt_find_resource(prt_ascii_encoding, res_encoding))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003007 {
3008 EMSG2(_("E456: Can't find PostScript resource file \"%s.ps\""),
Bram Moolenaar81366db2005-07-24 21:16:51 +00003009 prt_ascii_encoding);
Bram Moolenaar0a383962014-11-27 17:37:57 +01003010 goto theend;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003011 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02003012 if (!prt_open_resource(res_encoding))
Bram Moolenaar0a383962014-11-27 17:37:57 +01003013 goto theend;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003014 /* For the moment there are no checks on encoding resource files to
3015 * perform */
3016 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00003017 }
3018
3019 prt_conv.vc_type = CONV_NONE;
3020 if (!(enc_canon_props(p_enc) & enc_canon_props(p_encoding) & ENC_8BIT)) {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003021 /* Set up encoding conversion if required */
Bram Moolenaar81366db2005-07-24 21:16:51 +00003022 if (FAIL == convert_setup(&prt_conv, p_enc, p_encoding))
3023 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003024 EMSG2(_("E620: Unable to convert to print encoding \"%s\""),
Bram Moolenaar81366db2005-07-24 21:16:51 +00003025 p_encoding);
Bram Moolenaar0a383962014-11-27 17:37:57 +01003026 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003027 }
3028 prt_do_conv = TRUE;
3029 }
3030 prt_do_conv = prt_conv.vc_type != CONV_NONE;
3031
3032 if (prt_out_mbyte && prt_custom_cmap)
3033 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003034 /* Find user supplied CMap */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003035 if (!prt_find_resource(prt_cmap, res_cmap))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003036 {
3037 EMSG2(_("E456: Can't find PostScript resource file \"%s.ps\""),
Bram Moolenaar81366db2005-07-24 21:16:51 +00003038 prt_cmap);
Bram Moolenaar0a383962014-11-27 17:37:57 +01003039 goto theend;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003040 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02003041 if (!prt_open_resource(res_cmap))
Bram Moolenaar0a383962014-11-27 17:37:57 +01003042 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003043 }
3044#endif
3045
3046 /* List resources supplied */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003047 STRCPY(buffer, res_prolog->title);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003048 STRCAT(buffer, " ");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003049 STRCAT(buffer, res_prolog->version);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003050 prt_dsc_resources("DocumentSuppliedResources", "procset", buffer);
3051#ifdef FEAT_MBYTE
3052 if (prt_out_mbyte)
3053 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003054 STRCPY(buffer, res_cidfont->title);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003055 STRCAT(buffer, " ");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003056 STRCAT(buffer, res_cidfont->version);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003057 prt_dsc_resources(NULL, "procset", buffer);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003058
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003059 if (prt_custom_cmap)
3060 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003061 STRCPY(buffer, res_cmap->title);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003062 STRCAT(buffer, " ");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003063 STRCAT(buffer, res_cmap->version);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003064 prt_dsc_resources(NULL, "cmap", buffer);
3065 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00003066 }
3067 if (!prt_out_mbyte || prt_use_courier)
3068#endif
3069 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003070 STRCPY(buffer, res_encoding->title);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003071 STRCAT(buffer, " ");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003072 STRCAT(buffer, res_encoding->version);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003073 prt_dsc_resources(NULL, "encoding", buffer);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003074 }
3075 prt_dsc_requirements(prt_duplex, prt_tumble, prt_collate,
3076#ifdef FEAT_SYN_HL
3077 psettings->do_syntax
3078#else
3079 0
3080#endif
3081 , prt_num_copies);
3082 prt_dsc_noarg("EndComments");
3083
3084 /*
3085 * PS Document page defaults
3086 */
3087 prt_dsc_noarg("BeginDefaults");
3088
3089 /* List font resources most likely common to all pages */
3090#ifdef FEAT_MBYTE
3091 if (!prt_out_mbyte || prt_use_courier)
3092#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003093 prt_dsc_font_resource("PageResources", &prt_ps_courier_font);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003094#ifdef FEAT_MBYTE
3095 if (prt_out_mbyte)
3096 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003097 prt_dsc_font_resource((prt_use_courier ? NULL : "PageResources"),
3098 &prt_ps_mb_font);
3099 if (!prt_custom_cmap)
3100 prt_dsc_resources(NULL, "cmap", prt_cmap);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003101 }
3102#endif
3103
3104 /* Paper will be used for all pages */
3105 prt_dsc_textline("PageMedia", prt_mediasize[prt_media].name);
3106
3107 prt_dsc_noarg("EndDefaults");
3108
3109 /*
3110 * PS Document prolog inclusion - all required procsets.
3111 */
3112 prt_dsc_noarg("BeginProlog");
3113
3114 /* Add required procsets - NOTE: order is important! */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003115 if (!prt_add_resource(res_prolog))
Bram Moolenaar0a383962014-11-27 17:37:57 +01003116 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003117#ifdef FEAT_MBYTE
3118 if (prt_out_mbyte)
3119 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003120 /* Add CID font procset, and any user supplied CMap */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003121 if (!prt_add_resource(res_cidfont))
Bram Moolenaar0a383962014-11-27 17:37:57 +01003122 goto theend;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003123 if (prt_custom_cmap && !prt_add_resource(res_cmap))
Bram Moolenaar0a383962014-11-27 17:37:57 +01003124 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003125 }
3126#endif
3127
3128#ifdef FEAT_MBYTE
3129 if (!prt_out_mbyte || prt_use_courier)
3130#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003131 /* There will be only one Roman font encoding to be included in the PS
3132 * file. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003133 if (!prt_add_resource(res_encoding))
Bram Moolenaar0a383962014-11-27 17:37:57 +01003134 goto theend;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003135
3136 prt_dsc_noarg("EndProlog");
3137
3138 /*
3139 * PS Document setup - must appear after the prolog
3140 */
3141 prt_dsc_noarg("BeginSetup");
3142
3143 /* Device setup - page size and number of uncollated copies */
3144 prt_write_int((int)prt_mediasize[prt_media].width);
3145 prt_write_int((int)prt_mediasize[prt_media].height);
3146 prt_write_int(0);
3147 prt_write_string("sps\n");
3148 prt_write_int(prt_num_copies);
3149 prt_write_string("nc\n");
3150 prt_write_boolean(prt_duplex);
3151 prt_write_boolean(prt_tumble);
3152 prt_write_string("dt\n");
3153 prt_write_boolean(prt_collate);
3154 prt_write_string("c\n");
3155
3156 /* Font resource inclusion and definition */
3157#ifdef FEAT_MBYTE
3158 if (!prt_out_mbyte || prt_use_courier)
3159 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003160 /* When using Courier for ASCII range when printing multi-byte, need to
3161 * pick up ASCII encoding to use with it. */
3162 if (prt_use_courier)
3163 p_encoding = (char_u *)prt_ascii_encoding;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003164#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003165 prt_dsc_resources("IncludeResource", "font",
3166 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_ROMAN]);
3167 prt_def_font("F0", (char *)p_encoding, (int)prt_line_height,
3168 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_ROMAN]);
3169 prt_dsc_resources("IncludeResource", "font",
3170 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_BOLD]);
3171 prt_def_font("F1", (char *)p_encoding, (int)prt_line_height,
3172 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_BOLD]);
3173 prt_dsc_resources("IncludeResource", "font",
3174 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_OBLIQUE]);
3175 prt_def_font("F2", (char *)p_encoding, (int)prt_line_height,
3176 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_OBLIQUE]);
3177 prt_dsc_resources("IncludeResource", "font",
3178 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_BOLDOBLIQUE]);
3179 prt_def_font("F3", (char *)p_encoding, (int)prt_line_height,
3180 prt_ps_courier_font.ps_fontname[PRT_PS_FONT_BOLDOBLIQUE]);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003181#ifdef FEAT_MBYTE
3182 }
3183 if (prt_out_mbyte)
3184 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003185 /* Define the CID fonts to be used in the job. Typically CJKV fonts do
3186 * not have an italic form being a western style, so where no font is
3187 * defined for these faces VIM falls back to an existing face.
3188 * Note: if using Courier for the ASCII range then the printout will
3189 * have bold/italic/bolditalic regardless of the setting of printmbfont.
3190 */
3191 prt_dsc_resources("IncludeResource", "font",
3192 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_ROMAN]);
3193 if (!prt_custom_cmap)
3194 prt_dsc_resources("IncludeResource", "cmap", prt_cmap);
3195 prt_def_cidfont("CF0", (int)prt_line_height,
3196 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_ROMAN]);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003197
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003198 if (prt_ps_mb_font.ps_fontname[PRT_PS_FONT_BOLD] != NULL)
3199 {
3200 prt_dsc_resources("IncludeResource", "font",
3201 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_BOLD]);
3202 if (!prt_custom_cmap)
3203 prt_dsc_resources("IncludeResource", "cmap", prt_cmap);
3204 prt_def_cidfont("CF1", (int)prt_line_height,
3205 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_BOLD]);
3206 }
3207 else
3208 /* Use ROMAN for BOLD */
3209 prt_dup_cidfont("CF0", "CF1");
Bram Moolenaar81366db2005-07-24 21:16:51 +00003210
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003211 if (prt_ps_mb_font.ps_fontname[PRT_PS_FONT_OBLIQUE] != NULL)
3212 {
3213 prt_dsc_resources("IncludeResource", "font",
3214 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_OBLIQUE]);
3215 if (!prt_custom_cmap)
3216 prt_dsc_resources("IncludeResource", "cmap", prt_cmap);
3217 prt_def_cidfont("CF2", (int)prt_line_height,
3218 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_OBLIQUE]);
3219 }
3220 else
3221 /* Use ROMAN for OBLIQUE */
3222 prt_dup_cidfont("CF0", "CF2");
Bram Moolenaar81366db2005-07-24 21:16:51 +00003223
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003224 if (prt_ps_mb_font.ps_fontname[PRT_PS_FONT_BOLDOBLIQUE] != NULL)
3225 {
3226 prt_dsc_resources("IncludeResource", "font",
3227 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_BOLDOBLIQUE]);
3228 if (!prt_custom_cmap)
3229 prt_dsc_resources("IncludeResource", "cmap", prt_cmap);
3230 prt_def_cidfont("CF3", (int)prt_line_height,
3231 prt_ps_mb_font.ps_fontname[PRT_PS_FONT_BOLDOBLIQUE]);
3232 }
3233 else
3234 /* Use BOLD for BOLDOBLIQUE */
3235 prt_dup_cidfont("CF1", "CF3");
Bram Moolenaar81366db2005-07-24 21:16:51 +00003236 }
3237#endif
3238
3239 /* Misc constant vars used for underlining and background rects */
3240 prt_def_var("UO", PRT_PS_FONT_TO_USER(prt_line_height,
3241 prt_ps_font->uline_offset), 2);
3242 prt_def_var("UW", PRT_PS_FONT_TO_USER(prt_line_height,
3243 prt_ps_font->uline_width), 2);
3244 prt_def_var("BO", prt_bgcol_offset, 2);
3245
3246 prt_dsc_noarg("EndSetup");
3247
3248 /* Fail if any problems writing out to the PS file */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003249 retval = !prt_file_error;
3250
3251theend:
3252 vim_free(res_prolog);
3253 vim_free(res_encoding);
3254#ifdef FEAT_MBYTE
3255 vim_free(res_cidfont);
3256 vim_free(res_cmap);
3257#endif
3258
3259 return retval;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003260}
3261
3262 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003263mch_print_end(prt_settings_T *psettings)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003264{
3265 prt_dsc_noarg("Trailer");
3266
3267 /*
3268 * Output any info we don't know in toto until we finish
3269 */
3270 prt_dsc_ints("Pages", 1, &prt_page_num);
3271
3272 prt_dsc_noarg("EOF");
3273
3274 /* Write CTRL-D to close serial communication link if used.
3275 * NOTHING MUST BE WRITTEN AFTER THIS! */
3276 prt_write_file((char_u *)IF_EB("\004", "\067"));
3277
3278 if (!prt_file_error && psettings->outfile == NULL
3279 && !got_int && !psettings->user_abort)
3280 {
3281 /* Close the file first. */
3282 if (prt_ps_fd != NULL)
3283 {
3284 fclose(prt_ps_fd);
3285 prt_ps_fd = NULL;
3286 }
3287 prt_message((char_u *)_("Sending to printer..."));
3288
3289 /* Not printing to a file: use 'printexpr' to print the file. */
3290 if (eval_printexpr(prt_ps_file_name, psettings->arguments) == FAIL)
3291 EMSG(_("E365: Failed to print PostScript file"));
3292 else
3293 prt_message((char_u *)_("Print job sent."));
3294 }
3295
3296 mch_print_cleanup();
3297}
3298
3299 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003300mch_print_end_page(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003301{
3302 prt_flush_buffer();
3303
3304 prt_write_string("re sp\n");
3305
3306 prt_dsc_noarg("PageTrailer");
3307
3308 return !prt_file_error;
3309}
3310
Bram Moolenaar81366db2005-07-24 21:16:51 +00003311 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003312mch_print_begin_page(char_u *str UNUSED)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003313{
3314 int page_num[2];
3315
3316 prt_page_num++;
3317
3318 page_num[0] = page_num[1] = prt_page_num;
3319 prt_dsc_ints("Page", 2, page_num);
3320
3321 prt_dsc_noarg("BeginPageSetup");
3322
3323 prt_write_string("sv\n0 g\n");
3324#ifdef FEAT_MBYTE
3325 prt_in_ascii = !prt_out_mbyte;
3326 if (prt_out_mbyte)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003327 prt_write_string("CF0 sf\n");
Bram Moolenaar81366db2005-07-24 21:16:51 +00003328 else
3329#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003330 prt_write_string("F0 sf\n");
Bram Moolenaar81366db2005-07-24 21:16:51 +00003331 prt_fgcol = PRCOLOR_BLACK;
3332 prt_bgcol = PRCOLOR_WHITE;
3333 prt_font = PRT_PS_FONT_ROMAN;
3334
3335 /* Set up page transformation for landscape printing. */
3336 if (!prt_portrait)
3337 {
3338 prt_write_int(-((int)prt_mediasize[prt_media].width));
3339 prt_write_string("sl\n");
3340 }
3341
3342 prt_dsc_noarg("EndPageSetup");
3343
3344 /* We have reset the font attributes, force setting them again. */
3345 curr_bg = (long_u)0xffffffff;
3346 curr_fg = (long_u)0xffffffff;
3347 curr_bold = MAYBE;
3348
3349 return !prt_file_error;
3350}
3351
3352 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003353mch_print_blank_page(void)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003354{
3355 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
3356}
3357
3358static float prt_pos_x = 0;
3359static float prt_pos_y = 0;
3360
3361 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003362mch_print_start_line(int margin, int page_line)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003363{
3364 prt_pos_x = prt_left_margin;
3365 if (margin)
3366 prt_pos_x -= prt_number_width;
3367
3368 prt_pos_y = prt_top_margin - prt_first_line_height -
3369 page_line * prt_line_height;
3370
3371 prt_attribute_change = TRUE;
3372 prt_need_moveto = TRUE;
3373#ifdef FEAT_MBYTE
3374 prt_half_width = FALSE;
3375#endif
3376}
3377
Bram Moolenaar81366db2005-07-24 21:16:51 +00003378 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003379mch_print_text_out(char_u *p, int len UNUSED)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003380{
3381 int need_break;
3382 char_u ch;
3383 char_u ch_buff[8];
3384 float char_width;
3385 float next_pos;
3386#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003387 int in_ascii;
3388 int half_width;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003389#endif
3390
3391 char_width = prt_char_width;
3392
3393#ifdef FEAT_MBYTE
3394 /* Ideally VIM would create a rearranged CID font to combine a Roman and
3395 * CJKV font to do what VIM is doing here - use a Roman font for characters
Bram Moolenaarb15c8332007-05-10 18:40:02 +00003396 * in the ASCII range, and the original CID font for everything else.
Bram Moolenaar81366db2005-07-24 21:16:51 +00003397 * The problem is that GhostScript still (as of 8.13) does not support
3398 * rearranged fonts even though they have been documented by Adobe for 7
3399 * years! If they ever do, a lot of this code will disappear.
3400 */
3401 if (prt_use_courier)
3402 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003403 in_ascii = (len == 1 && *p < 0x80);
3404 if (prt_in_ascii)
3405 {
3406 if (!in_ascii)
3407 {
3408 /* No longer in ASCII range - need to switch font */
3409 prt_in_ascii = FALSE;
3410 prt_need_font = TRUE;
3411 prt_attribute_change = TRUE;
3412 }
3413 }
3414 else if (in_ascii)
3415 {
3416 /* Now in ASCII range - need to switch font */
3417 prt_in_ascii = TRUE;
3418 prt_need_font = TRUE;
3419 prt_attribute_change = TRUE;
3420 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00003421 }
3422 if (prt_out_mbyte)
3423 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003424 half_width = ((*mb_ptr2cells)(p) == 1);
3425 if (half_width)
3426 char_width /= 2;
3427 if (prt_half_width)
3428 {
3429 if (!half_width)
3430 {
3431 prt_half_width = FALSE;
3432 prt_pos_x += prt_char_width/4;
3433 prt_need_moveto = TRUE;
3434 prt_attribute_change = TRUE;
3435 }
3436 }
3437 else if (half_width)
3438 {
3439 prt_half_width = TRUE;
3440 prt_pos_x += prt_char_width/4;
3441 prt_need_moveto = TRUE;
3442 prt_attribute_change = TRUE;
3443 }
Bram Moolenaar81366db2005-07-24 21:16:51 +00003444 }
3445#endif
3446
3447 /* Output any required changes to the graphics state, after flushing any
3448 * text buffered so far.
3449 */
3450 if (prt_attribute_change)
3451 {
3452 prt_flush_buffer();
3453 /* Reset count of number of chars that will be printed */
3454 prt_text_run = 0;
3455
3456 if (prt_need_moveto)
3457 {
3458 prt_pos_x_moveto = prt_pos_x;
3459 prt_pos_y_moveto = prt_pos_y;
3460 prt_do_moveto = TRUE;
3461
3462 prt_need_moveto = FALSE;
3463 }
3464 if (prt_need_font)
3465 {
3466#ifdef FEAT_MBYTE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003467 if (!prt_in_ascii)
3468 prt_write_string("CF");
3469 else
Bram Moolenaar81366db2005-07-24 21:16:51 +00003470#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003471 prt_write_string("F");
3472 prt_write_int(prt_font);
3473 prt_write_string("sf\n");
3474 prt_need_font = FALSE;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003475 }
3476 if (prt_need_fgcol)
3477 {
3478 int r, g, b;
3479 r = ((unsigned)prt_fgcol & 0xff0000) >> 16;
3480 g = ((unsigned)prt_fgcol & 0xff00) >> 8;
3481 b = prt_fgcol & 0xff;
3482
3483 prt_write_real(r / 255.0, 3);
3484 if (r == g && g == b)
3485 prt_write_string("g\n");
3486 else
3487 {
3488 prt_write_real(g / 255.0, 3);
3489 prt_write_real(b / 255.0, 3);
3490 prt_write_string("r\n");
3491 }
3492 prt_need_fgcol = FALSE;
3493 }
3494
3495 if (prt_bgcol != PRCOLOR_WHITE)
3496 {
3497 prt_new_bgcol = prt_bgcol;
3498 if (prt_need_bgcol)
3499 prt_do_bgcol = TRUE;
3500 }
3501 else
3502 prt_do_bgcol = FALSE;
3503 prt_need_bgcol = FALSE;
3504
3505 if (prt_need_underline)
3506 prt_do_underline = prt_underline;
3507 prt_need_underline = FALSE;
3508
3509 prt_attribute_change = FALSE;
3510 }
3511
3512#ifdef FEAT_MBYTE
3513 if (prt_do_conv)
3514 {
3515 /* Convert from multi-byte to 8-bit encoding */
3516 p = string_convert(&prt_conv, p, &len);
3517 if (p == NULL)
3518 p = (char_u *)"";
3519 }
3520
3521 if (prt_out_mbyte)
3522 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003523 /* Multi-byte character strings are represented more efficiently as hex
3524 * strings when outputting clean 8 bit PS.
3525 */
3526 do
3527 {
3528 ch = prt_hexchar[(unsigned)(*p) >> 4];
3529 ga_append(&prt_ps_buffer, ch);
3530 ch = prt_hexchar[(*p) & 0xf];
3531 ga_append(&prt_ps_buffer, ch);
3532 p++;
3533 }
3534 while (--len);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003535 }
3536 else
3537#endif
3538 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003539 /* Add next character to buffer of characters to output.
3540 * Note: One printed character may require several PS characters to
3541 * represent it, but we only count them as one printed character.
3542 */
3543 ch = *p;
3544 if (ch < 32 || ch == '(' || ch == ')' || ch == '\\')
3545 {
3546 /* Convert non-printing characters to either their escape or octal
3547 * sequence, ensures PS sent over a serial line does not interfere
3548 * with the comms protocol. Note: For EBCDIC we need to write out
3549 * the escape sequences as ASCII codes!
Bram Moolenaar81366db2005-07-24 21:16:51 +00003550 * Note 2: Char codes < 32 are identical in EBCDIC and ASCII AFAIK!
3551 */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003552 ga_append(&prt_ps_buffer, IF_EB('\\', 0134));
3553 switch (ch)
3554 {
3555 case BS: ga_append(&prt_ps_buffer, IF_EB('b', 0142)); break;
3556 case TAB: ga_append(&prt_ps_buffer, IF_EB('t', 0164)); break;
3557 case NL: ga_append(&prt_ps_buffer, IF_EB('n', 0156)); break;
3558 case FF: ga_append(&prt_ps_buffer, IF_EB('f', 0146)); break;
3559 case CAR: ga_append(&prt_ps_buffer, IF_EB('r', 0162)); break;
3560 case '(': ga_append(&prt_ps_buffer, IF_EB('(', 0050)); break;
3561 case ')': ga_append(&prt_ps_buffer, IF_EB(')', 0051)); break;
3562 case '\\': ga_append(&prt_ps_buffer, IF_EB('\\', 0134)); break;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003563
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003564 default:
3565 sprintf((char *)ch_buff, "%03o", (unsigned int)ch);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003566#ifdef EBCDIC
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003567 ebcdic2ascii(ch_buff, 3);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003568#endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003569 ga_append(&prt_ps_buffer, ch_buff[0]);
3570 ga_append(&prt_ps_buffer, ch_buff[1]);
3571 ga_append(&prt_ps_buffer, ch_buff[2]);
3572 break;
3573 }
3574 }
3575 else
3576 ga_append(&prt_ps_buffer, ch);
Bram Moolenaar81366db2005-07-24 21:16:51 +00003577 }
3578
3579#ifdef FEAT_MBYTE
3580 /* Need to free any translated characters */
3581 if (prt_do_conv && (*p != NUL))
3582 vim_free(p);
3583#endif
3584
3585 prt_text_run += char_width;
3586 prt_pos_x += char_width;
3587
3588 /* The downside of fp - use relative error on right margin check */
3589 next_pos = prt_pos_x + prt_char_width;
3590 need_break = (next_pos > prt_right_margin) &&
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003591 ((next_pos - prt_right_margin) > (prt_right_margin*1e-5));
Bram Moolenaar81366db2005-07-24 21:16:51 +00003592
3593 if (need_break)
3594 prt_flush_buffer();
3595
3596 return need_break;
3597}
3598
3599 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003600mch_print_set_font(int iBold, int iItalic, int iUnderline)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003601{
3602 int font = 0;
3603
3604 if (iBold)
3605 font |= 0x01;
3606 if (iItalic)
3607 font |= 0x02;
3608
3609 if (font != prt_font)
3610 {
3611 prt_font = font;
3612 prt_attribute_change = TRUE;
3613 prt_need_font = TRUE;
3614 }
3615 if (prt_underline != iUnderline)
3616 {
3617 prt_underline = iUnderline;
3618 prt_attribute_change = TRUE;
3619 prt_need_underline = TRUE;
3620 }
3621}
3622
3623 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003624mch_print_set_bg(long_u bgcol)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003625{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003626 prt_bgcol = (int)bgcol;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003627 prt_attribute_change = TRUE;
3628 prt_need_bgcol = TRUE;
3629}
3630
3631 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003632mch_print_set_fg(long_u fgcol)
Bram Moolenaar81366db2005-07-24 21:16:51 +00003633{
3634 if (fgcol != (long_u)prt_fgcol)
3635 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003636 prt_fgcol = (int)fgcol;
Bram Moolenaar81366db2005-07-24 21:16:51 +00003637 prt_attribute_change = TRUE;
3638 prt_need_fgcol = TRUE;
3639 }
3640}
3641
3642# endif /*FEAT_POSTSCRIPT*/
3643#endif /*FEAT_PRINTER*/