Duplicate fix of Kevin Lyles's bug from r7092.
[sgt/halibut] / bk_pdf.c
CommitLineData
43341922 1/*
2 * PDF backend for Halibut
3 */
4
5#include <assert.h>
6#include "halibut.h"
7#include "paper.h"
7e2417cc 8#include "deflate.h"
43341922 9
7157d7e1 10#define TREE_BRANCH 8 /* max branching factor in page tree */
43341922 11
12paragraph *pdf_config_filename(char *filename)
13{
e4ea58f8 14 return cmdline_cfg_simple("pdf-filename", filename, NULL);
43341922 15}
16
17typedef struct object_Tag object;
18typedef struct objlist_Tag objlist;
19
20struct object_Tag {
21 objlist *list;
22 object *next;
23 int number;
24 rdstringc main, stream;
25 int size, fileoff;
26 char *final;
27};
28
29struct objlist_Tag {
30 int number;
31 object *head, *tail;
32};
33
34static object *new_object(objlist *list);
35static void objtext(object *o, char const *text);
36static void objstream(object *o, char const *text);
c885c2ff 37static void objstream_len(object *o, char const *text, size_t len);
7c8c4239 38static void pdf_string(void (*add)(object *, char const *),
39 object *, char const *);
ce1b04aa 40static void pdf_string_len(void (*add)(object *, char const *),
41 object *, char const *, int);
43341922 42static void objref(object *o, object *dest);
3e7284e8 43static void objdest(object *o, page_data *p);
43341922 44
3600720b 45static int is_std_font(char const *name);
46
43341922 47static void make_pages_node(object *node, object *parent, page_data *first,
2ff8419e 48 page_data *last, object *resources,
49 object *mediabox);
f0e51ce1 50static int make_outline(object *parent, outline_element *start, int n,
51 int open);
09358aa7 52static int pdf_versionid(FILE *fp, word *words);
43341922 53
54void pdf_backend(paragraph *sourceform, keywordlist *keywords,
55 indexdata *idx, void *vdoc) {
56 document *doc = (document *)vdoc;
57 int font_index;
58 font_encoding *fe;
59 page_data *page;
60 int pageno;
61 FILE *fp;
62 char *filename;
63 paragraph *p;
64 objlist olist;
993ade7a 65 object *o, *info, *cat, *outlines, *pages, *resources, *mediabox;
43341922 66 int fileoff;
67
68 IGNORE(keywords);
69 IGNORE(idx);
70
71 filename = dupstr("output.pdf");
72 for (p = sourceform; p; p = p->next) {
7738a2fb 73 if (p->type == para_Config) {
43341922 74 if (!ustricmp(p->keyword, L"pdf-filename")) {
75 sfree(filename);
e4ea58f8 76 filename = dupstr(adv(p->origkeyword));
43341922 77 }
78 }
79 }
80
81 olist.head = olist.tail = NULL;
82 olist.number = 1;
83
993ade7a 84 {
85 char buf[256];
86
87 info = new_object(&olist);
88 objtext(info, "<<\n");
89 if (doc->n_outline_elements > 0) {
90 char *title;
91 int titlelen;
92
93 title =
94 pdf_outline_convert(doc->outline_elements->pdata->outline_title,
95 &titlelen);
96 objtext(info, "/Title ");
97 pdf_string_len(objtext, info, title, titlelen);
98 sfree(title);
99 objtext(info, "\n");
100 }
101 objtext(info, "/Producer ");
102 sprintf(buf, "Halibut, %s", version);
103 pdf_string(objtext, info, buf);
104 objtext(info, "\n>>\n");
105 }
106
43341922 107 cat = new_object(&olist);
a615a778 108 if (doc->n_outline_elements > 0)
109 outlines = new_object(&olist);
110 else
111 outlines = NULL;
43341922 112 pages = new_object(&olist);
113 resources = new_object(&olist);
114
115 /*
43341922 116 * The catalogue just contains references to the outlines and
b7d31949 117 * pages objects, and the pagelabels dictionary.
43341922 118 */
a615a778 119 objtext(cat, "<<\n/Type /Catalog");
120 if (outlines) {
121 objtext(cat, "\n/Outlines ");
122 objref(cat, outlines);
123 }
43341922 124 objtext(cat, "\n/Pages ");
125 objref(cat, pages);
b7d31949 126 /* Halibut just numbers pages 1, 2, 3, ... */
127 objtext(cat, "\n/PageLabels<</Nums[0<</S/D>>]>>");
a615a778 128 if (outlines)
129 objtext(cat, "\n/PageMode /UseOutlines");
130 objtext(cat, "\n>>\n");
43341922 131
132 /*
133 * Set up the resources dictionary, which mostly means
134 * providing all the font objects and names to call them by.
135 */
136 font_index = 0;
c2b15a94 137 objtext(resources, "<<\n/ProcSet [/PDF/Text]\n/Font <<\n");
43341922 138 for (fe = doc->fonts->head; fe; fe = fe->next) {
139 char fname[40];
b17a4ef3 140 int i, prev;
43341922 141 object *font;
142
143 sprintf(fname, "f%d", font_index++);
144 fe->name = dupstr(fname);
145
146 font = new_object(&olist);
147
148 objtext(resources, "/");
149 objtext(resources, fe->name);
150 objtext(resources, " ");
151 objref(resources, font);
152 objtext(resources, "\n");
153
154 objtext(font, "<<\n/Type /Font\n/Subtype /Type1\n/Name /");
155 objtext(font, fe->name);
156 objtext(font, "\n/BaseFont /");
ba0fe3ec 157 objtext(font, fe->font->info->name);
43341922 158 objtext(font, "\n/Encoding <<\n/Type /Encoding\n/Differences [");
159
160 for (i = 0; i < 256; i++) {
161 char buf[20];
d5bc1c48 162 if (fe->vector[i] == NOGLYPH)
43341922 163 continue;
b17a4ef3 164 if (i != prev + 1) {
165 sprintf(buf, "\n%d", i);
166 objtext(font, buf);
167 }
168 objtext(font, i % 8 ? "/" : "\n/");
d5bc1c48 169 objtext(font, glyph_extern(fe->vector[i]));
b17a4ef3 170 prev = i;
43341922 171 }
172
173 objtext(font, "\n]\n>>\n");
174
255b7ff3 175#define FF_FIXEDPITCH 0x00000001
176#define FF_SERIF 0x00000002
177#define FF_SYMBOLIC 0x00000004
178#define FF_SCRIPT 0x00000008
179#define FF_NONSYMBOLIC 0x00000020
180#define FF_ITALIC 0x00000040
181#define FF_ALLCAP 0x00010000
182#define FF_SMALLCAP 0x00020000
183#define FF_FORCEBOLD 0x00040000
184
3600720b 185 if (!is_std_font(fe->font->info->name)){
43341922 186 object *widths = new_object(&olist);
255b7ff3 187 object *fontdesc = new_object(&olist);
9fb062fc 188 int firstchar = -1, lastchar = -1;
189 char buf[80];
255b7ff3 190 font_info const *fi = fe->font->info;
191 int flags;
9fb062fc 192 for (i = 0; i < 256; i++)
d5bc1c48 193 if (fe->vector[i] != NOGLYPH) {
9fb062fc 194 if (firstchar < 0) firstchar = i;
195 lastchar = i;
196 }
197 sprintf(buf, "/FirstChar %d\n/LastChar %d\n/Widths ",
198 firstchar, lastchar);
199 objtext(font, buf);
43341922 200 objref(font, widths);
201 objtext(font, "\n");
202 objtext(widths, "[\n");
9fb062fc 203 for (i = firstchar; i <= lastchar; i++) {
43341922 204 double width;
d5bc1c48 205 if (fe->vector[i] == NOGLYPH)
43341922 206 width = 0.0;
207 else
d5bc1c48 208 width = find_width(fe->font, fe->vector[i]);
17c71b41 209 sprintf(buf, "%g\n", 1000.0 * width / FUNITS_PER_PT);
43341922 210 objtext(widths, buf);
211 }
212 objtext(widths, "]\n");
255b7ff3 213 objtext(font, "/FontDescriptor ");
214 objref(font, fontdesc);
215 objtext(fontdesc, "<<\n/Type /FontDescriptor\n/Name /");
216 objtext(fontdesc, fi->name);
217 flags = 0;
218 if (fi->italicangle) flags |= FF_ITALIC;
219 flags |= FF_NONSYMBOLIC;
220 sprintf(buf, "\n/Flags %d\n", flags);
221 objtext(fontdesc, buf);
222 sprintf(buf, "/FontBBox [%g %g %g %g]\n", fi->fontbbox[0],
223 fi->fontbbox[1], fi->fontbbox[2], fi->fontbbox[3]);
224 objtext(fontdesc, buf);
225 sprintf(buf, "/ItalicAngle %g\n", fi->italicangle);
226 objtext(fontdesc, buf);
227 sprintf(buf, "/Ascent %g\n", fi->ascent);
228 objtext(fontdesc, buf);
229 sprintf(buf, "/Descent %g\n", fi->descent);
230 objtext(fontdesc, buf);
231 sprintf(buf, "/CapHeight %g\n", fi->capheight);
232 objtext(fontdesc, buf);
233 sprintf(buf, "/XHeight %g\n", fi->xheight);
234 objtext(fontdesc, buf);
235 sprintf(buf, "/StemH %g\n", fi->stemh);
236 objtext(fontdesc, buf);
237 sprintf(buf, "/StemV %g\n", fi->stemv);
238 objtext(fontdesc, buf);
44407fea 239 if (fi->fp) {
240 object *fontfile = new_object(&olist);
44407fea 241 size_t len;
c885c2ff 242 char *ffbuf;
243
244 pf_part1((font_info *)fi, &ffbuf, &len);
245 objstream_len(fontfile, ffbuf, len);
246 sfree(ffbuf);
247 sprintf(buf, "<<\n/Length1 %lu\n", (unsigned long)len);
248 objtext(fontfile, buf);
249 pf_part2((font_info *)fi, &ffbuf, &len);
250 objstream_len(fontfile, ffbuf, len);
251 sfree(ffbuf);
252 sprintf(buf, "/Length2 %lu\n", (unsigned long)len);
253 objtext(fontfile, buf);
254 objtext(fontfile, "/Length3 0\n");
44407fea 255 objtext(fontdesc, "/FontFile ");
256 objref(fontdesc, fontfile);
257 }
258 objtext(fontdesc, "\n>>\n");
43341922 259 }
260
255b7ff3 261 objtext(font, "\n>>\n");
43341922 262 }
263 objtext(resources, ">>\n>>\n");
264
2ff8419e 265 {
266 char buf[255];
267 mediabox = new_object(&olist);
268 sprintf(buf, "[0 0 %g %g]\n",
269 doc->paper_width / FUNITS_PER_PT,
270 doc->paper_height / FUNITS_PER_PT);
271 objtext(mediabox, buf);
272 }
273
43341922 274 /*
275 * Define the page objects for each page, and get each one
276 * ready to have a `Parent' specification added to it.
277 */
278 for (page = doc->pages; page; page = page->next) {
279 object *opage;
280
281 opage = new_object(&olist);
282 page->spare = opage;
283 objtext(opage, "<<\n/Type /Page\n");
284 }
285
286 /*
287 * Recursively build the page tree.
288 */
2ff8419e 289 make_pages_node(pages, NULL, doc->pages, NULL, resources, mediabox);
43341922 290
291 /*
292 * Create and render the individual pages.
293 */
294 pageno = 0;
295 for (page = doc->pages; page; page = page->next) {
296 object *opage, *cstr;
23765aeb 297 rect *r;
7c8c4239 298 text_fragment *frag, *frag_end;
43341922 299 char buf[256];
7c8c4239 300 int x, y, lx, ly;
43341922 301
302 opage = (object *)page->spare;
303 /*
304 * At this point the page dictionary is already
305 * half-written, with /Type and /Parent already present. We
306 * continue from there.
307 */
308
309 /*
310 * The PDF spec says /Resources is required, but also says
311 * that it's inheritable and may be omitted if it's present
312 * in a Pages node. In our case it is: it's present in the
313 * topmost /Pages node because we carefully put it there.
2ff8419e 314 * So we don't need a /Resources entry here. The same applies
315 * to /MediaBox.
43341922 316 */
43341922 317
318 /*
319 * Now we're ready to define a content stream containing
320 * the actual text on the page.
321 */
322 cstr = new_object(&olist);
323 objtext(opage, "/Contents ");
324 objref(opage, cstr);
325 objtext(opage, "\n");
326
23765aeb 327 /*
328 * Render any rectangles on the page.
329 */
330 for (r = page->first_rect; r; r = r->next) {
331 char buf[512];
17c71b41 332 sprintf(buf, "%g %g %g %g re f\n",
333 r->x / FUNITS_PER_PT, r->y / FUNITS_PER_PT,
334 r->w / FUNITS_PER_PT, r->h / FUNITS_PER_PT);
23765aeb 335 objstream(cstr, buf);
336 }
337
43341922 338 objstream(cstr, "BT\n");
43341922 339
7c8c4239 340 /*
341 * PDF tracks two separate current positions: the position
342 * given in the `line matrix' and the position given in the
343 * `text matrix'. We must therefore track both as well.
344 * They start off at -1 (unset).
345 */
346 lx = ly = -1;
347 x = y = -1;
348
349 frag = page->first_text;
350 while (frag) {
351 /*
352 * For compactness, I'm going to group text fragments
353 * into subsequences that use the same font+size. So
354 * first find the end of this subsequence.
355 */
356 for (frag_end = frag;
357 (frag_end &&
358 frag_end->fe == frag->fe &&
359 frag_end->fontsize == frag->fontsize);
360 frag_end = frag_end->next);
361
362 /*
363 * Now select the text fragment, and prepare to display
364 * the text.
365 */
43341922 366 objstream(cstr, "/");
367 objstream(cstr, frag->fe->name);
7c8c4239 368 sprintf(buf, " %d Tf ", frag->fontsize);
43341922 369 objstream(cstr, buf);
370
7c8c4239 371 while (frag && frag != frag_end) {
372 /*
373 * Place the text position for the first piece of
374 * text.
375 */
376 if (lx < 0) {
377 sprintf(buf, "1 0 0 1 %g %g Tm ",
17c71b41 378 frag->x/FUNITS_PER_PT, frag->y/FUNITS_PER_PT);
7c8c4239 379 } else {
380 sprintf(buf, "%g %g Td ",
17c71b41 381 (frag->x - lx)/FUNITS_PER_PT,
382 (frag->y - ly)/FUNITS_PER_PT);
7c8c4239 383 }
43341922 384 objstream(cstr, buf);
7c8c4239 385 lx = x = frag->x;
386 ly = y = frag->y;
387
388 /*
389 * See if we're going to use Tj (show a single
390 * string) or TJ (show an array of strings with
391 * x-spacings between them). We determine this by
392 * seeing if there's more than one text fragment in
393 * sequence with the same y-coordinate.
394 */
395 if (frag->next && frag->next != frag_end &&
396 frag->next->y == y) {
397 /*
398 * The TJ strategy.
399 */
400 objstream(cstr, "[");
401 while (frag && frag != frag_end && frag->y == y) {
402 if (frag->x != x) {
403 sprintf(buf, "%g",
404 (x - frag->x) * 1000.0 /
17c71b41 405 (FUNITS_PER_PT * frag->fontsize));
7c8c4239 406 objstream(cstr, buf);
407 }
408 pdf_string(objstream, cstr, frag->text);
409 x = frag->x + frag->width;
410 frag = frag->next;
411 }
412 objstream(cstr, "]TJ\n");
413 } else
414 {
415 /*
416 * The Tj strategy.
417 */
418 pdf_string(objstream, cstr, frag->text);
419 objstream(cstr, "Tj\n");
420 frag = frag->next;
421 }
43341922 422 }
43341922 423 }
424 objstream(cstr, "ET");
425
138d7ffb 426 /*
427 * Also, we want an annotation dictionary containing the
428 * cross-references from this page.
429 */
430 if (page->first_xref) {
431 xref *xr;
432 objtext(opage, "/Annots [\n");
433
434 for (xr = page->first_xref; xr; xr = xr->next) {
138d7ffb 435 char buf[256];
436
6e4d0fd8 437 objtext(opage, "<</Subtype/Link\n/Rect[");
138d7ffb 438 sprintf(buf, "%g %g %g %g",
17c71b41 439 xr->lx / FUNITS_PER_PT, xr->by / FUNITS_PER_PT,
440 xr->rx / FUNITS_PER_PT, xr->ty / FUNITS_PER_PT);
6e4d0fd8 441 objtext(opage, buf);
442 objtext(opage, "]/Border[0 0 0]\n");
138d7ffb 443
444 if (xr->dest.type == PAGE) {
3e7284e8 445 objtext(opage, "/Dest");
446 objdest(opage, xr->dest.page);
138d7ffb 447 } else {
6e4d0fd8 448 objtext(opage, "/A<</S/URI/URI");
449 pdf_string(objtext, opage, xr->dest.url);
450 objtext(opage, ">>");
138d7ffb 451 }
452
6e4d0fd8 453 objtext(opage, ">>\n");
138d7ffb 454 }
455
456 objtext(opage, "]\n");
457 }
458
43341922 459 objtext(opage, ">>\n");
460 }
461
462 /*
f0e51ce1 463 * Set up the outlines dictionary.
464 */
a615a778 465 if (outlines) {
f0e51ce1 466 int topcount;
467 char buf[80];
468
469 objtext(outlines, "<<\n/Type /Outlines\n");
470 topcount = make_outline(outlines, doc->outline_elements,
471 doc->n_outline_elements, TRUE);
472 sprintf(buf, "/Count %d\n>>\n", topcount);
473 objtext(outlines, buf);
474 }
475
476 /*
43341922 477 * Assemble the final linear form of every object.
478 */
479 for (o = olist.head; o; o = o->next) {
480 rdstringc rs = {0, 0, NULL};
481 char text[80];
7e2417cc 482 deflate_compress_ctx *zcontext;
483 void *zbuf;
484 int zlen;
43341922 485
486 sprintf(text, "%d 0 obj\n", o->number);
487 rdaddsc(&rs, text);
488
c885c2ff 489 if (o->stream.text) {
7e2417cc 490 zcontext = deflate_compress_new(DEFLATE_TYPE_ZLIB);
491 deflate_compress_data(zcontext, o->stream.text, o->stream.pos,
492 DEFLATE_END_OF_DATA, &zbuf, &zlen);
493 deflate_compress_free(zcontext);
c885c2ff 494 if (!o->main.text)
495 rdaddsc(&o->main, "<<\n");
496 sprintf(text, "/Filter/FlateDecode\n/Length %d\n>>\n", zlen);
43341922 497 rdaddsc(&o->main, text);
498 }
499
500 assert(o->main.text);
501 rdaddsc(&rs, o->main.text);
502 sfree(o->main.text);
503
504 if (rs.text[rs.pos-1] != '\n')
505 rdaddc(&rs, '\n');
506
507 if (o->stream.text) {
43341922 508 rdaddsc(&rs, "stream\n");
7e2417cc 509 rdaddsn(&rs, zbuf, zlen);
43341922 510 rdaddsc(&rs, "\nendstream\n");
511 sfree(o->stream.text);
7e2417cc 512 sfree(zbuf);
43341922 513 }
514
515 rdaddsc(&rs, "endobj\n");
516
517 o->final = rs.text;
518 o->size = rs.pos;
519 }
520
521 /*
522 * Write out the PDF file.
523 */
524
525 fp = fopen(filename, "wb");
526 if (!fp) {
527 error(err_cantopenw, filename);
528 return;
529 }
530
531 /*
09358aa7 532 * Header. I'm going to put the version IDs in the header as
7e2417cc 533 * well, simply in PDF comments. The PDF Reference also suggests
534 * that binary PDF files contain four top-bit-set characters in
535 * the second line.
43341922 536 */
7e2417cc 537 fileoff = fprintf(fp, "%%PDF-1.3\n%% L\xc3\xba\xc3\xb0""a\n");
09358aa7 538 for (p = sourceform; p; p = p->next)
539 if (p->type == para_VersionID)
540 fileoff += pdf_versionid(fp, p->words);
43341922 541
542 /*
543 * Body
544 */
545 for (o = olist.head; o; o = o->next) {
546 o->fileoff = fileoff;
547 fwrite(o->final, 1, o->size, fp);
548 fileoff += o->size;
549 }
550
551 /*
552 * Cross-reference table
553 */
554 fprintf(fp, "xref\n");
555 assert(olist.head->number == 1);
556 fprintf(fp, "0 %d\n", olist.tail->number + 1);
557 fprintf(fp, "0000000000 65535 f \n");
558 for (o = olist.head; o; o = o->next) {
559 char entry[40];
560 sprintf(entry, "%010d 00000 n \n", o->fileoff);
561 assert(strlen(entry) == 20);
562 fputs(entry, fp);
563 }
564
565 /*
566 * Trailer
567 */
993ade7a 568 fprintf(fp, "trailer\n<<\n/Size %d\n/Root %d 0 R\n/Info %d 0 R\n>>\n",
569 olist.tail->number + 1, cat->number, info->number);
43341922 570 fprintf(fp, "startxref\n%d\n%%%%EOF\n", fileoff);
571
572 fclose(fp);
573
574 sfree(filename);
575}
576
577static object *new_object(objlist *list)
578{
f1530049 579 object *obj = snew(object);
43341922 580
581 obj->list = list;
582
583 obj->main.text = NULL;
584 obj->main.pos = obj->main.size = 0;
585 obj->stream.text = NULL;
586 obj->stream.pos = obj->stream.size = 0;
587
588 obj->number = list->number++;
589
590 obj->next = NULL;
591 if (list->tail)
592 list->tail->next = obj;
593 else
594 list->head = obj;
595 list->tail = obj;
596
597 obj->size = 0;
598 obj->final = NULL;
599
600 return obj;
601}
602
603static void objtext(object *o, char const *text)
604{
605 rdaddsc(&o->main, text);
606}
607
c885c2ff 608static void objstream_len(object *o, char const *text, size_t len)
609{
610 rdaddsn(&o->stream, text, len);
611}
612
43341922 613static void objstream(object *o, char const *text)
614{
615 rdaddsc(&o->stream, text);
616}
617
618static void objref(object *o, object *dest)
619{
620 char buf[40];
621 sprintf(buf, "%d 0 R", dest->number);
622 rdaddsc(&o->main, buf);
623}
624
3e7284e8 625static void objdest(object *o, page_data *p) {
626 objtext(o, "[");
627 objref(o, (object *)p->spare);
628 objtext(o, "/XYZ null null null]");
629}
630
3600720b 631static char const * const stdfonts[] = {
632 "Times-Roman", "Times-Bold", "Times-Italic", "Times-BoldItalic",
633 "Helvetica", "Helvetica-Bold", "Helvetica-Oblique","Helvetica-BoldOblique",
634 "Courier", "Courier-Bold", "Courier-Oblique", "Courier-BoldOblique",
635 "Symbol", "ZapfDingbats"
636};
637
638static int is_std_font(char const *name) {
639 unsigned i;
640 for (i = 0; i < lenof(stdfonts); i++)
641 if (strcmp(name, stdfonts[i]) == 0)
642 return TRUE;
643 return FALSE;
644}
645
43341922 646static void make_pages_node(object *node, object *parent, page_data *first,
2ff8419e 647 page_data *last, object *resources,
648 object *mediabox)
43341922 649{
650 int count;
651 page_data *page;
652 char buf[80];
653
654 objtext(node, "<<\n/Type /Pages\n");
655 if (parent) {
656 objtext(node, "/Parent ");
657 objref(node, parent);
658 objtext(node, "\n");
659 }
660
661 /*
662 * Count the pages in this stretch, to see if there are few
663 * enough to reference directly.
664 */
665 count = 0;
666 for (page = first; page; page = page->next) {
667 count++;
668 if (page == last)
669 break;
670 }
671
672 sprintf(buf, "/Count %d\n/Kids [\n", count);
673 objtext(node, buf);
674
675 if (count > TREE_BRANCH) {
676 int i;
677 page_data *thisfirst, *thislast;
678
679 page = first;
680
681 for (i = 0; i < TREE_BRANCH; i++) {
682 int number = (i+1) * count / TREE_BRANCH - i * count / TREE_BRANCH;
683 thisfirst = page;
684 while (number--) {
685 thislast = page;
686 page = page->next;
687 }
688
689 if (thisfirst == thislast) {
690 objref(node, (object *)thisfirst->spare);
691 objtext((object *)thisfirst->spare, "/Parent ");
692 objref((object *)thisfirst->spare, node);
693 objtext((object *)thisfirst->spare, "\n");
694 } else {
695 object *newnode = new_object(node->list);
2ff8419e 696 make_pages_node(newnode, node, thisfirst, thislast,
697 NULL, NULL);
43341922 698 objref(node, newnode);
699 }
700 objtext(node, "\n");
701 }
702
703 assert(thislast == last || page == NULL);
704
705 } else {
706 for (page = first; page; page = page->next) {
707 objref(node, (object *)page->spare);
708 objtext(node, "\n");
709 objtext((object *)page->spare, "/Parent ");
710 objref((object *)page->spare, node);
711 objtext((object *)page->spare, "\n");
712 if (page == last)
713 break;
714 }
715 }
716
717 objtext(node, "]\n");
718
719 if (resources) {
720 objtext(node, "/Resources ");
721 objref(node, resources);
722 objtext(node, "\n");
723 }
2ff8419e 724 if (mediabox) {
725 objtext(node, "/MediaBox ");
726 objref(node, mediabox);
727 objtext(node, "\n");
728 }
43341922 729
730 objtext(node, ">>\n");
731}
f0e51ce1 732
733/*
734 * In text on the page, PDF uses the PostScript font model, which
735 * means that glyphs are identified by PS strings and hence font
736 * encoding can be managed independently of the supplied encoding
737 * of the font. However, in the document outline, the PDF spec
ce1b04aa 738 * encodes in either PDFDocEncoding (a custom superset of
739 * ISO-8859-1) or UTF-16BE.
f0e51ce1 740 */
f8194b21 741char *pdf_outline_convert(wchar_t *s, int *len) {
ce1b04aa 742 char *ret;
743
744 ret = utoa_careful_dup(s, CS_PDF);
745
746 /*
747 * Very silly special case: if the returned string begins with
748 * FE FF, then the PDF reader will mistake it for a UTF-16BE
749 * string. So in this case we give up on PDFDocEncoding and
750 * encode it in UTF-16 straight away.
751 */
752 if (ret && ret[0] == '\xFE' && ret[1] == '\xFF') {
753 sfree(ret);
754 ret = NULL;
f0e51ce1 755 }
ce1b04aa 756
757 if (!ret) {
758 ret = utoa_dup_len(s, CS_UTF16BE, len);
759 } else {
760 *len = strlen(ret);
f0e51ce1 761 }
ce1b04aa 762
763 return ret;
f0e51ce1 764}
765
f0e51ce1 766static int make_outline(object *parent, outline_element *items, int n,
767 int open)
768{
769 int level, totalcount = 0;
770 outline_element *itemp;
771 object *curr, *prev = NULL, *first = NULL, *last = NULL;
f0e51ce1 772
773 assert(n > 0);
774
775 level = items->level;
776
777 while (n > 0) {
7c8c4239 778 char *title;
ce1b04aa 779 int titlelen;
f0e51ce1 780
781 /*
782 * Here we expect to be sitting on an item at the given
783 * level. So we start by constructing an outline entry for
784 * that item.
785 */
786 assert(items->level == level);
787
ce1b04aa 788 title = pdf_outline_convert(items->pdata->outline_title, &titlelen);
f0e51ce1 789
790 totalcount++;
791 curr = new_object(parent->list);
792 if (!first) first = curr;
793 last = curr;
7c8c4239 794 objtext(curr, "<<\n/Title ");
ce1b04aa 795 pdf_string_len(objtext, curr, title, titlelen);
993ade7a 796 sfree(title);
7c8c4239 797 objtext(curr, "\n/Parent ");
f0e51ce1 798 objref(curr, parent);
3e7284e8 799 objtext(curr, "\n/Dest");
800 objdest(curr, items->pdata->first->page);
801 objtext(curr, "\n");
f0e51ce1 802 if (prev) {
803 objtext(curr, "/Prev ");
804 objref(curr, prev);
805 objtext(curr, "\n");
806
807 objtext(prev, "/Next ");
808 objref(prev, curr);
809 objtext(prev, "\n>>\n");
810 }
811 prev = curr;
812
813 items++, n--;
814 for (itemp = items; itemp < items+n && itemp->level > level;
815 itemp++);
816
817 if (itemp > items) {
818 char buf[80];
819 int count = make_outline(curr, items, itemp - items, FALSE);
820 if (!open)
821 count = -count;
822 else
823 totalcount += count;
824 sprintf(buf, "/Count %d\n", count);
825 objtext(curr, buf);
826 }
827
828 n -= itemp - items;
829 items = itemp;
830 }
831 objtext(prev, ">>\n");
832
833 assert(first && last);
834 objtext(parent, "/First ");
835 objref(parent, first);
836 objtext(parent, "\n/Last ");
837 objref(parent, last);
838 objtext(parent, "\n");
839
840 return totalcount;
841}
09358aa7 842
843static int pdf_versionid(FILE *fp, word *words)
844{
845 int ret;
846
847 ret = fprintf(fp, "%% ");
848
849 for (; words; words = words->next) {
850 char *text;
851 int type;
852
853 switch (words->type) {
854 case word_HyperLink:
855 case word_HyperEnd:
856 case word_UpperXref:
857 case word_LowerXref:
858 case word_XrefEnd:
859 case word_IndexRef:
860 continue;
861 }
862
863 type = removeattr(words->type);
864
865 switch (type) {
866 case word_Normal:
e4ea58f8 867 text = utoa_dup(words->text, CS_ASCII);
09358aa7 868 break;
869 case word_WhiteSpace:
870 text = dupstr(" ");
871 break;
872 case word_Quote:
873 text = dupstr("'");
874 break;
875 }
876
877 fputs(text, fp);
878 ret += strlen(text);
879 sfree(text);
880 }
881
882 ret += fprintf(fp, "\n");
883
884 return ret;
885}
7c8c4239 886
ce1b04aa 887static void pdf_string_len(void (*add)(object *, char const *),
888 object *o, char const *str, int len)
7c8c4239 889{
890 char const *p;
891
892 add(o, "(");
ce1b04aa 893 for (p = str; len > 0; p++, len--) {
894 char c[10];
895 if (*p < ' ' || *p > '~') {
896 sprintf(c, "\\%03o", 0xFF & (int)*p);
897 } else {
898 int n = 0;
899 if (*p == '\\' || *p == '(' || *p == ')')
900 c[n++] = '\\';
901 c[n++] = *p;
902 c[n] = '\0';
903 }
7c8c4239 904 add(o, c);
905 }
906 add(o, ")");
907}
ce1b04aa 908
909static void pdf_string(void (*add)(object *, char const *),
910 object *o, char const *str)
911{
912 pdf_string_len(add, o, str, strlen(str));
913}