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