Make ps_glyph_to_unicode() take a glyph index instead of a glyph name.
[sgt/halibut] / bk_pdf.c
index c4a65be..3a0ec75 100644 (file)
--- a/bk_pdf.c
+++ b/bk_pdf.c
@@ -5,8 +5,9 @@
 #include <assert.h>
 #include "halibut.h"
 #include "paper.h"
+#include "deflate.h"
 
-#define TREE_BRANCH 2                 /* max branching factor in page tree */
+#define TREE_BRANCH 8                 /* max branching factor in page tree */
 
 paragraph *pdf_config_filename(char *filename)
 {
@@ -33,12 +34,13 @@ struct objlist_Tag {
 static object *new_object(objlist *list);
 static void objtext(object *o, char const *text);
 static void objstream(object *o, char const *text);
+static void objstream_len(object *o, char const *text, size_t len);
 static void pdf_string(void (*add)(object *, char const *),
                       object *, char const *);
 static void pdf_string_len(void (*add)(object *, char const *),
                           object *, char const *, int);
 static void objref(object *o, object *dest);
-static char *pdf_outline_convert(wchar_t *s, int *len);
+static void objdest(object *o, page_data *p);
 
 static int is_std_font(char const *name);
 
@@ -112,7 +114,7 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
 
     /*
      * The catalogue just contains references to the outlines and
-     * pages objects.
+     * pages objects, and the pagelabels dictionary.
      */
     objtext(cat, "<<\n/Type /Catalog");
     if (outlines) {
@@ -121,6 +123,8 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
     }
     objtext(cat, "\n/Pages ");
     objref(cat, pages);
+    /* Halibut just numbers pages 1, 2, 3, ... */
+    objtext(cat, "\n/PageLabels<</Nums[0<</S/D>>]>>");
     if (outlines)
        objtext(cat, "\n/PageMode /UseOutlines");
     objtext(cat, "\n>>\n");
@@ -130,7 +134,7 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
      * providing all the font objects and names to call them by.
      */
     font_index = 0;
-    objtext(resources, "<<\n/Font <<\n");
+    objtext(resources, "<<\n/ProcSet [/PDF/Text]\n/Font <<\n");
     for (fe = doc->fonts->head; fe; fe = fe->next) {
        char fname[40];
        int i, prev;
@@ -155,14 +159,14 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
 
        for (i = 0; i < 256; i++) {
            char buf[20];
-           if (!fe->vector[i])
+           if (fe->vector[i] == NOGLYPH)
                continue;
            if (i != prev + 1) {
                sprintf(buf, "\n%d", i);
                objtext(font, buf);
            }
            objtext(font, i % 8 ? "/" : "\n/");
-           objtext(font, fe->vector[i]);
+           objtext(font, glyph_extern(fe->vector[i]));
            prev = i;
        }
 
@@ -186,7 +190,7 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
            font_info const *fi = fe->font->info;
            int flags;
            for (i = 0; i < 256; i++)
-               if (fe->indices[i] >= 0) {
+               if (fe->vector[i] != NOGLYPH) {
                    if (firstchar < 0) firstchar = i;
                    lastchar = i;
                }
@@ -198,10 +202,10 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
            objtext(widths, "[\n");
            for (i = firstchar; i <= lastchar; i++) {
                double width;
-               if (fe->indices[i] < 0)
+               if (fe->vector[i] == NOGLYPH)
                    width = 0.0;
                else
-                   width = fi->widths[fe->indices[i]];
+                   width = find_width(fe->font, fe->vector[i]);
                sprintf(buf, "%g\n", 1000.0 * width / FUNITS_PER_PT);
                objtext(widths, buf);
            }
@@ -234,14 +238,20 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
            objtext(fontdesc, buf);
            if (fi->fp) {
                object *fontfile = new_object(&olist);
-               char buf[513];
                size_t len;
-               rewind(fi->fp);
-               do {
-                   len = fread(buf, 1, sizeof(buf)-1, fi->fp);
-                   buf[len] = 0;
-                   objstream(fontfile, buf);
-               } while (len == sizeof(buf)-1);
+               char *ffbuf;
+
+               pf_part1((font_info *)fi, &ffbuf, &len);
+               objstream_len(fontfile, ffbuf, len);
+               sfree(ffbuf);
+               sprintf(buf, "<<\n/Length1 %lu\n", (unsigned long)len);
+               objtext(fontfile, buf);
+               pf_part2((font_info *)fi, &ffbuf, &len);
+               objstream_len(fontfile, ffbuf, len);
+               sfree(ffbuf);
+               sprintf(buf, "/Length2 %lu\n", (unsigned long)len);
+               objtext(fontfile, buf);
+               objtext(fontfile, "/Length3 0\n");
                objtext(fontdesc, "/FontFile ");
                objref(fontdesc, fontfile);
            }
@@ -432,9 +442,8 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
                objtext(opage, "]/Border[0 0 0]\n");
 
                if (xr->dest.type == PAGE) {
-                   objtext(opage, "/Dest[");
-                   objref(opage, (object *)xr->dest.page->spare);
-                   objtext(opage, "/XYZ null null null]");
+                   objtext(opage, "/Dest");
+                   objdest(opage, xr->dest.page);
                } else {
                    objtext(opage, "/A<</S/URI/URI");
                    pdf_string(objtext, opage, xr->dest.url);
@@ -470,12 +479,21 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
     for (o = olist.head; o; o = o->next) {
        rdstringc rs = {0, 0, NULL};
        char text[80];
+       deflate_compress_ctx *zcontext;
+       void *zbuf;
+       int zlen;
 
        sprintf(text, "%d 0 obj\n", o->number);
        rdaddsc(&rs, text);
 
-       if (!o->main.text && o->stream.text) {
-           sprintf(text, "<<\n/Length %d\n>>\n", o->stream.pos);
+       if (o->stream.text) {
+           zcontext = deflate_compress_new(DEFLATE_TYPE_ZLIB);
+           deflate_compress_data(zcontext, o->stream.text, o->stream.pos,
+                                 DEFLATE_END_OF_DATA, &zbuf, &zlen);
+           deflate_compress_free(zcontext);
+           if (!o->main.text)
+               rdaddsc(&o->main, "<<\n");
+           sprintf(text, "/Filter/FlateDecode\n/Length %d\n>>\n", zlen);
            rdaddsc(&o->main, text);
        }
 
@@ -487,15 +505,11 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
            rdaddc(&rs, '\n');
 
        if (o->stream.text) {
-           /*
-            * FIXME: If we ever start compressing stream data then
-            * it will have zero bytes in it, so we'll have to be
-            * more careful than this.
-            */
            rdaddsc(&rs, "stream\n");
-           rdaddsc(&rs, o->stream.text);
+           rdaddsn(&rs, zbuf, zlen);
            rdaddsc(&rs, "\nendstream\n");
            sfree(o->stream.text);
+           sfree(zbuf);
        }
 
        rdaddsc(&rs, "endobj\n");
@@ -516,9 +530,11 @@ void pdf_backend(paragraph *sourceform, keywordlist *keywords,
 
     /*
      * Header. I'm going to put the version IDs in the header as
-     * well, simply in PDF comments.
+     * well, simply in PDF comments.  The PDF Reference also suggests
+     * that binary PDF files contain four top-bit-set characters in
+     * the second line.
      */
-    fileoff = fprintf(fp, "%%PDF-1.3\n");
+    fileoff = fprintf(fp, "%%PDF-1.3\n%% L\xc3\xba\xc3\xb0""a\n");
     for (p = sourceform; p; p = p->next)
        if (p->type == para_VersionID)
            fileoff += pdf_versionid(fp, p->words);
@@ -589,6 +605,11 @@ static void objtext(object *o, char const *text)
     rdaddsc(&o->main, text);
 }
 
+static void objstream_len(object *o, char const *text, size_t len)
+{
+    rdaddsn(&o->stream, text, len);
+}
+
 static void objstream(object *o, char const *text)
 {
     rdaddsc(&o->stream, text);
@@ -601,6 +622,12 @@ static void objref(object *o, object *dest)
     rdaddsc(&o->main, buf);
 }
 
+static void objdest(object *o, page_data *p) {
+    objtext(o, "[");
+    objref(o, (object *)p->spare);
+    objtext(o, "/XYZ null null null]");
+}
+
 static char const * const stdfonts[] = {
     "Times-Roman", "Times-Bold", "Times-Italic", "Times-BoldItalic",
     "Helvetica", "Helvetica-Bold", "Helvetica-Oblique","Helvetica-BoldOblique",
@@ -711,7 +738,7 @@ static void make_pages_node(object *node, object *parent, page_data *first,
  * encodes in either PDFDocEncoding (a custom superset of
  * ISO-8859-1) or UTF-16BE.
  */
-static char *pdf_outline_convert(wchar_t *s, int *len) {
+char *pdf_outline_convert(wchar_t *s, int *len) {
     char *ret;
 
     ret = utoa_careful_dup(s, CS_PDF);
@@ -769,9 +796,9 @@ static int make_outline(object *parent, outline_element *items, int n,
        sfree(title);
        objtext(curr, "\n/Parent ");
        objref(curr, parent);
-       objtext(curr, "\n/Dest [");
-       objref(curr, (object *)items->pdata->first->page->spare);
-       objtext(curr, " /XYZ null null null]\n");
+       objtext(curr, "\n/Dest");
+       objdest(curr, items->pdata->first->page);
+       objtext(curr, "\n");
        if (prev) {
            objtext(curr, "/Prev ");
            objref(curr, prev);