4e47767de7212343d11434b327d5dae58deafaa1
[sgt/halibut] / bk_ps.c
1 /*
2 * PostScript backend for Halibut
3 */
4
5 #include <assert.h>
6 #include "halibut.h"
7 #include "paper.h"
8
9 static void ps_comment(FILE *fp, char const *leader, word *words);
10 static void ps_string_len(FILE *fp, char const *str, int len);
11 static void ps_string(FILE *fp, char const *str);
12
13 paragraph *ps_config_filename(char *filename)
14 {
15 return cmdline_cfg_simple("ps-filename", filename, NULL);
16 }
17
18 void ps_backend(paragraph *sourceform, keywordlist *keywords,
19 indexdata *idx, void *vdoc) {
20 document *doc = (document *)vdoc;
21 int font_index;
22 font_encoding *fe;
23 page_data *page;
24 int pageno;
25 FILE *fp;
26 char *filename;
27 paragraph *p;
28 outline_element *oe;
29 int noe;
30
31
32 IGNORE(keywords);
33 IGNORE(idx);
34
35 filename = dupstr("output.ps");
36 for (p = sourceform; p; p = p->next) {
37 if (p->type == para_Config) {
38 if (!ustricmp(p->keyword, L"ps-filename")) {
39 sfree(filename);
40 filename = dupstr(adv(p->origkeyword));
41 }
42 }
43 }
44
45 fp = fopen(filename, "w");
46 if (!fp) {
47 error(err_cantopenw, filename);
48 return;
49 }
50
51 fprintf(fp, "%%!PS-Adobe-3.0\n");
52 fprintf(fp, "%%%%Creator: Halibut, %s\n", version);
53 fprintf(fp, "%%%%DocumentData: Clean7Bit\n");
54 fprintf(fp, "%%%%LanguageLevel: 1\n");
55 for (pageno = 0, page = doc->pages; page; page = page->next)
56 pageno++;
57 fprintf(fp, "%%%%Pages: %d\n", pageno);
58 for (p = sourceform; p; p = p->next)
59 if (p->type == para_Title)
60 ps_comment(fp, "%%Title: ", p->words);
61 fprintf(fp, "%%%%DocumentNeededResources:\n");
62 for (fe = doc->fonts->head; fe; fe = fe->next)
63 /* XXX This may request the same font multiple times. */
64 if (!fe->font->info->fp)
65 fprintf(fp, "%%%%+ font %s\n", fe->font->info->name);
66 fprintf(fp, "%%%%DocumentSuppliedResources: procset Halibut 0 2\n");
67 for (fe = doc->fonts->head; fe; fe = fe->next)
68 /* XXX This may request the same font multiple times. */
69 if (fe->font->info->fp)
70 fprintf(fp, "%%%%+ font %s\n", fe->font->info->name);
71 fprintf(fp, "%%%%EndComments\n");
72
73 fprintf(fp, "%%%%BeginProlog\n");
74 fprintf(fp, "%%%%BeginResource: procset Halibut 0 2\n");
75 /*
76 * Supply a prologue function which allows a reasonably
77 * compressed representation of the text on the pages.
78 *
79 * "t" expects two arguments: a y-coordinate, and then an array.
80 * Elements of the array are processed sequentially as follows:
81 *
82 * - a number is treated as an x-coordinate
83 * - an array is treated as a (font, size) pair
84 * - a string is shown
85 *
86 * "r" takes four arguments, and behaves like "rectfill".
87 */
88 fprintf(fp,
89 "/tdict 4 dict dup begin\n"
90 " /arraytype {aload pop scalefont setfont} bind def\n"
91 " /realtype {1 index moveto} bind def\n"
92 " /integertype /realtype load def\n"
93 " /stringtype {show} bind def\n"
94 "end def\n"
95 "/t { tdict begin {dup type exec} forall end pop } bind def\n"
96 "/r { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto\n"
97 " neg 0 rlineto closepath fill } bind def\n");
98 /*
99 * pdfmark wrappers
100 *
101 * "p" generates a named destination referencing this page.
102 * "x" generates a link to a named destination.
103 * "u" generates a link to a URI.
104 *
105 * They all do nothing if pdfmark is undefined.
106 */
107 fprintf(fp,
108 "/pdfmark where { pop\n"
109 " /p { [ /Dest 3 -1 roll /View [ /XYZ null null null ]\n"
110 " /DEST pdfmark } bind def\n"
111 " /x { [ /Dest 3 -1 roll /Rect 5 -1 roll /Border [0 0 0]\n"
112 " /Subtype /Link /ANN pdfmark } bind def\n"
113 " /u { 2 dict dup /Subtype /URI put dup /URI 4 -1 roll put\n"
114 " [ /Action 3 -1 roll /Rect 5 -1 roll /Border [0 0 0]\n"
115 " /Subtype /Link /ANN pdfmark } bind def\n"
116 "} {\n"
117 " /p { pop } bind def\n"
118 " /x { pop pop } bind def\n"
119 " /u /x load def\n"
120 "} ifelse\n");
121
122 fprintf(fp, "%%%%EndResource\n");
123 fprintf(fp, "%%%%EndProlog\n");
124
125 fprintf(fp, "%%%%BeginSetup\n");
126
127 /*
128 * Assign a destination name to each page for pdfmark purposes.
129 */
130 pageno = 0;
131 for (page = doc->pages; page; page = page->next) {
132 char *buf;
133 pageno++;
134 buf = snewn(12, char);
135 sprintf(buf, "/p%d", pageno);
136 page->spare = buf;
137 }
138
139 /*
140 * This is as good a place as any to put version IDs.
141 */
142 for (p = sourceform; p; p = p->next)
143 if (p->type == para_VersionID)
144 ps_comment(fp, "% ", p->words);
145
146 /*
147 * Request the correct page size. We might want to bracket this
148 * with "%%BeginFeature: *PageSize A4" or similar, and "%%EndFeature",
149 * but that would require us to have a way of getting the name of
150 * the page size given its dimensions.
151 */
152 fprintf(fp, "/setpagedevice where {\n");
153 fprintf(fp, " pop 2 dict dup /PageSize [%g %g] put setpagedevice\n",
154 doc->paper_width / FUNITS_PER_PT,
155 doc->paper_height / FUNITS_PER_PT);
156 fprintf(fp, "} if\n");
157
158 /* Outline etc, only if pdfmark is supported */
159 fprintf(fp, "/pdfmark where { pop %% if\n");
160 fprintf(fp, " [/PageMode/UseOutlines/DOCVIEW pdfmark\n");
161 noe = doc->n_outline_elements;
162 for (oe = doc->outline_elements; noe; oe++, noe--) {
163 char *title;
164 int titlelen, count, i;
165
166 title = pdf_outline_convert(oe->pdata->outline_title, &titlelen);
167 if (oe->level == 0) {
168 fprintf(fp, " [/Title");
169 ps_string_len(fp, title, titlelen);
170 fprintf(fp, "/DOCINFO pdfmark\n");
171 }
172
173 count = 0;
174 for (i = 1; i < noe && oe[i].level > oe->level; i++)
175 if (oe[i].level == oe->level + 1)
176 count++;
177 if (oe->level > 0) count = -count;
178
179 fprintf(fp, " [/Title");
180 ps_string_len(fp, title, titlelen);
181 sfree(title);
182 fprintf(fp, "/Dest%s/Count %d/OUT pdfmark\n",
183 (char *)oe->pdata->first->page->spare, count);
184 }
185 fprintf(fp, "} if\n");
186
187 for (fe = doc->fonts->head; fe; fe = fe->next) {
188 /* XXX This may request the same font multiple times. */
189 if (fe->font->info->fp) {
190 char buf[512];
191 size_t len;
192 fprintf(fp, "%%%%BeginResource: font %s\n", fe->font->info->name);
193 rewind(fe->font->info->fp);
194 do {
195 len = fread(buf, 1, sizeof(buf), fe->font->info->fp);
196 fwrite(buf, 1, len, fp);
197 } while (len == sizeof(buf));
198 fprintf(fp, "%%%%EndResource\n");
199 } else {
200 fprintf(fp, "%%%%IncludeResource: font %s\n",
201 fe->font->info->name);
202 }
203 }
204
205 /*
206 * Re-encode the fonts.
207 */
208 font_index = 0;
209 for (fe = doc->fonts->head; fe; fe = fe->next) {
210 char fname[40];
211 int i;
212
213 sprintf(fname, "f%d", font_index++);
214 fe->name = dupstr(fname);
215
216 fprintf(fp, "/%s findfont dup length dict begin\n",
217 fe->font->info->name);
218 fprintf(fp, "{1 index /FID ne {def} {pop pop} ifelse} forall\n");
219 fprintf(fp, "/Encoding [\n");
220 for (i = 0; i < 256; i++)
221 fprintf(fp, "/%s%c", fe->vector[i] ? fe->vector[i] : ".notdef",
222 i % 4 == 3 ? '\n' : ' ');
223 fprintf(fp, "] def\n");
224 fprintf(fp, "currentdict end\n");
225 fprintf(fp, "/fontname-%s exch definefont /%s exch def\n\n",
226 fe->name, fe->name);
227 }
228 fprintf(fp, "%%%%EndSetup\n");
229
230 /*
231 * Output the text and graphics.
232 */
233 pageno = 0;
234 for (page = doc->pages; page; page = page->next) {
235 text_fragment *frag, *frag_end;
236 rect *r;
237 xref *xr;
238 font_encoding *fe;
239 int fs;
240
241 pageno++;
242 fprintf(fp, "%%%%Page: %d %d\n", pageno, pageno);
243 fprintf(fp, "save %s p\n", (char *)page->spare);
244
245 for (xr = page->first_xref; xr; xr = xr->next) {
246 fprintf(fp, "[%g %g %g %g]",
247 xr->lx/FUNITS_PER_PT, xr->by/FUNITS_PER_PT,
248 xr->rx/FUNITS_PER_PT, xr->ty/FUNITS_PER_PT);
249 if (xr->dest.type == PAGE) {
250 fprintf(fp, "%s x\n", (char *)xr->dest.page->spare);
251 } else {
252 ps_string(fp, xr->dest.url);
253 fprintf(fp, "u\n");
254 }
255 }
256
257 for (r = page->first_rect; r; r = r->next) {
258 fprintf(fp, "%g %g %g %g r\n",
259 r->x / FUNITS_PER_PT, r->y / FUNITS_PER_PT,
260 r->w / FUNITS_PER_PT, r->h / FUNITS_PER_PT);
261 }
262
263 frag = page->first_text;
264 fe = NULL;
265 fs = -1;
266 while (frag) {
267 /*
268 * Collect all the adjacent text fragments with the
269 * same y-coordinate.
270 */
271 for (frag_end = frag;
272 frag_end && frag_end->y == frag->y;
273 frag_end = frag_end->next);
274
275 fprintf(fp, "%g[", frag->y / FUNITS_PER_PT);
276
277 while (frag && frag != frag_end) {
278
279 if (frag->fe != fe || frag->fontsize != fs)
280 fprintf(fp, "[%s %d]", frag->fe->name, frag->fontsize);
281 fe = frag->fe;
282 fs = frag->fontsize;
283
284 fprintf(fp, "%g", frag->x/FUNITS_PER_PT);
285 ps_string(fp, frag->text);
286
287 frag = frag->next;
288 }
289
290 fprintf(fp, "]t\n");
291 }
292
293 fprintf(fp, "restore showpage\n");
294 }
295
296 fprintf(fp, "%%%%EOF\n");
297
298 fclose(fp);
299
300 sfree(filename);
301 }
302
303 static void ps_comment(FILE *fp, char const *leader, word *words)
304 {
305 fprintf(fp, "%s", leader);
306
307 for (; words; words = words->next) {
308 char *text;
309 int type;
310
311 switch (words->type) {
312 case word_HyperLink:
313 case word_HyperEnd:
314 case word_UpperXref:
315 case word_LowerXref:
316 case word_XrefEnd:
317 case word_IndexRef:
318 continue;
319 }
320
321 type = removeattr(words->type);
322
323 switch (type) {
324 case word_Normal:
325 text = utoa_dup(words->text, CS_ASCII);
326 break;
327 case word_WhiteSpace:
328 text = dupstr(" ");
329 break;
330 case word_Quote:
331 text = dupstr("'");
332 break;
333 }
334
335 fputs(text, fp);
336 sfree(text);
337 }
338
339 fprintf(fp, "\n");
340 }
341
342 static void ps_string_len(FILE *fp, char const *str, int len) {
343 char const *c;
344 int score = 0;
345
346 for (c = str; c < str+len; c++) {
347 if (*c < ' ' || *c > '~')
348 score += 2;
349 else if (*c == '(' || *c == ')' || *c == '\\')
350 score += 0;
351 else
352 score -= 1;
353 }
354 if (score > 0) {
355 fprintf(fp, "<");
356 for (c = str; c < str+len; c++) {
357 fprintf(fp, "%02X", 0xFF & (int)*c);
358 }
359 fprintf(fp, ">");
360 } else {
361 fprintf(fp, "(");
362 for (c = str; c < str+len; c++) {
363 if (*c < ' ' || *c > '~') {
364 fprintf(fp, "\\%03o", 0xFF & (int)*c);
365 } else {
366 if (*c == '(' || *c == ')' || *c == '\\')
367 fputc('\\', fp);
368 fputc(*c, fp);
369 }
370 }
371 fprintf(fp, ")");
372 }
373 }
374
375 static void ps_string(FILE *fp, char const *str) {
376 ps_string_len(fp, str, strlen(str));
377 }