table: Make table cells have exactly one piece of content again.
[pspp] / src / output / cairo.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include "output/cairo.h"
20
21 #include "libpspp/assertion.h"
22 #include "libpspp/cast.h"
23 #include "libpspp/message.h"
24 #include "libpspp/pool.h"
25 #include "libpspp/start-date.h"
26 #include "libpspp/str.h"
27 #include "libpspp/string-map.h"
28 #include "libpspp/version.h"
29 #include "data/file-handle-def.h"
30 #include "output/cairo-chart.h"
31 #include "output/chart-item-provider.h"
32 #include "output/charts/boxplot.h"
33 #include "output/charts/np-plot.h"
34 #include "output/charts/piechart.h"
35 #include "output/charts/barchart.h"
36 #include "output/charts/plot-hist.h"
37 #include "output/charts/roc-chart.h"
38 #include "output/charts/spreadlevel-plot.h"
39 #include "output/charts/scree.h"
40 #include "output/charts/scatterplot.h"
41 #include "output/driver-provider.h"
42 #include "output/group-item.h"
43 #include "output/message-item.h"
44 #include "output/options.h"
45 #include "output/page-setup-item.h"
46 #include "output/render.h"
47 #include "output/tab.h"
48 #include "output/table-item.h"
49 #include "output/table.h"
50 #include "output/text-item.h"
51
52 #include <cairo/cairo-pdf.h>
53 #include <cairo/cairo-ps.h>
54 #include <cairo/cairo-svg.h>
55 #include <cairo/cairo.h>
56 #include <math.h>
57 #include <pango/pango-font.h>
58 #include <pango/pango-layout.h>
59 #include <pango/pango.h>
60 #include <pango/pangocairo.h>
61 #include <stdlib.h>
62
63 #include "gl/c-ctype.h"
64 #include "gl/c-strcase.h"
65 #include "gl/intprops.h"
66 #include "gl/minmax.h"
67 #include "gl/xalloc.h"
68
69 #include "gettext.h"
70 #define _(msgid) gettext (msgid)
71
72 /* This file uses TABLE_HORZ and TABLE_VERT enough to warrant abbreviating. */
73 #define H TABLE_HORZ
74 #define V TABLE_VERT
75
76 /* The unit used for internal measurements is inch/(72 * XR_POINT).
77    (Thus, XR_POINT units represent one point.) */
78 #define XR_POINT PANGO_SCALE
79
80 /* Conversions to and from points. */
81 static double
82 xr_to_pt (int x)
83 {
84   return x / (double) XR_POINT;
85 }
86
87 /* Conversion from 1/96" units ("pixels") to Cairo/Pango units. */
88 static int
89 px_to_xr (int x)
90 {
91   return x * (PANGO_SCALE * 72 / 96);
92 }
93
94 /* Dimensions for drawing lines in tables. */
95 #define XR_LINE_WIDTH (XR_POINT / 2) /* Width of an ordinary line. */
96 #define XR_LINE_SPACE XR_POINT       /* Space between double lines. */
97
98 /* Output types. */
99 enum xr_output_type
100   {
101     XR_PDF,
102     XR_PS,
103     XR_SVG
104   };
105
106 /* Cairo fonts. */
107 enum xr_font_type
108   {
109     XR_FONT_PROPORTIONAL,
110     XR_FONT_EMPHASIS,
111     XR_FONT_FIXED,
112     XR_N_FONTS
113   };
114
115 /* A font for use with Cairo. */
116 struct xr_font
117   {
118     PangoFontDescription *desc;
119     PangoLayout *layout;
120   };
121
122 /* An output item whose rendering is in progress. */
123 struct xr_render_fsm
124   {
125     /* Renders as much of itself as it can on the current page.  Returns true
126        if rendering is complete, false if the output item needs another
127        page. */
128     bool (*render) (struct xr_render_fsm *, struct xr_driver *);
129
130     /* Destroys the output item. */
131     void (*destroy) (struct xr_render_fsm *);
132   };
133
134 /* Cairo output driver. */
135 struct xr_driver
136   {
137     struct output_driver driver;
138
139     /* User parameters. */
140     struct xr_font fonts[XR_N_FONTS];
141
142     int width;                  /* Page width minus margins. */
143     int length;                 /* Page length minus margins and header. */
144
145     int left_margin;            /* Left margin in inch/(72 * XR_POINT). */
146     int right_margin;           /* Right margin in inch/(72 * XR_POINT). */
147     int top_margin;             /* Top margin in inch/(72 * XR_POINT). */
148     int bottom_margin;          /* Bottom margin in inch/(72 * XR_POINT). */
149
150     int line_space;             /* Space between lines. */
151     int line_width;             /* Width of lines. */
152
153     int min_break[TABLE_N_AXES]; /* Min cell size to break across pages. */
154     int object_spacing;         /* Space between output objects. */
155
156     struct xr_color bg;    /* Background color */
157     struct xr_color fg;    /* Foreground color */
158
159     int initial_page_number;
160
161     struct page_heading headings[2]; /* Top and bottom headings. */
162     int headings_height[2];
163
164     /* Internal state. */
165     struct render_params *params;
166     int char_width, char_height;
167     char *command_name;
168     char *title;
169     char *subtitle;
170     cairo_t *cairo;
171     cairo_surface_t *surface;
172     int page_number;            /* Current page number. */
173     int x, y;
174     struct xr_render_fsm *fsm;
175     int nest;
176     struct string_map heading_vars;
177   };
178
179 static const struct output_driver_class cairo_driver_class;
180
181 static void xr_driver_destroy_fsm (struct xr_driver *);
182 static void xr_driver_run_fsm (struct xr_driver *);
183
184 static void xr_draw_line (void *, int bb[TABLE_N_AXES][2],
185                           enum render_line_style styles[TABLE_N_AXES][2],
186                           struct cell_color colors[TABLE_N_AXES][2]);
187 static void xr_measure_cell_width (void *, const struct table_cell *,
188                                    int *min, int *max);
189 static int xr_measure_cell_height (void *, const struct table_cell *,
190                                    int width);
191 static void xr_draw_cell (void *, const struct table_cell *, int color_idx,
192                           int bb[TABLE_N_AXES][2],
193                           int spill[TABLE_N_AXES][2],
194                           int clip[TABLE_N_AXES][2]);
195 static int xr_adjust_break (void *, const struct table_cell *,
196                             int width, int height);
197
198 static struct xr_render_fsm *xr_render_output_item (
199   struct xr_driver *, const struct output_item *);
200 \f
201 /* Output driver basics. */
202
203 static struct xr_driver *
204 xr_driver_cast (struct output_driver *driver)
205 {
206   assert (driver->class == &cairo_driver_class);
207   return UP_CAST (driver, struct xr_driver, driver);
208 }
209
210 static struct driver_option *
211 opt (struct output_driver *d, struct string_map *options, const char *key,
212      const char *default_value)
213 {
214   return driver_option_get (d, options, key, default_value);
215 }
216
217 /* Parse color information specified by KEY into {RED,GREEN,BLUE}.
218    Currently, the input string must be of the form "#RRRRGGGGBBBB"
219    Future implementations might allow things like "yellow" and
220    "sky-blue-ultra-brown"
221 */
222 void
223 parse_color (struct output_driver *d, struct string_map *options,
224              const char *key, const char *default_value,
225              struct xr_color *color)
226 {
227   int red, green, blue;
228   char *string = parse_string (opt (d, options, key, default_value));
229
230   if (3 != sscanf (string, "#%04x%04x%04x", &red, &green, &blue))
231     {
232       /* If the parsed option string fails, then try the default value */
233       if ( 3 != sscanf (default_value, "#%04x%04x%04x", &red, &green, &blue))
234         {
235           /* ... and if that fails set everything to zero */
236           red = green = blue = 0;
237         }
238     }
239
240   free (string);
241
242   /* Convert 16 bit ints to float */
243   color->red = red / (double) 0xFFFF;
244   color->green = green / (double) 0xFFFF;
245   color->blue = blue / (double) 0xFFFF;
246 }
247
248 static PangoFontDescription *
249 parse_font (const char *font, int default_size, bool bold, bool italic)
250 {
251   if (!c_strcasecmp (font, "Monospaced"))
252     font = "Monospace";
253
254   PangoFontDescription *desc = pango_font_description_from_string (font);
255   if (desc == NULL)
256     return NULL;
257
258   /* If the font description didn't include an explicit font size, then set it
259      to DEFAULT_SIZE, which is in inch/72000 units. */
260   if (!(pango_font_description_get_set_fields (desc) & PANGO_FONT_MASK_SIZE))
261     pango_font_description_set_size (desc,
262                                      (default_size / 1000.0) * PANGO_SCALE);
263
264   pango_font_description_set_weight (desc, (bold
265                                             ? PANGO_WEIGHT_BOLD
266                                             : PANGO_WEIGHT_NORMAL));
267   pango_font_description_set_style (desc, (italic
268                                            ? PANGO_STYLE_ITALIC
269                                            : PANGO_STYLE_NORMAL));
270
271   return desc;
272 }
273
274 static PangoFontDescription *
275 parse_font_option (struct output_driver *d, struct string_map *options,
276                    const char *key, const char *default_value,
277                    int default_size, bool bold, bool italic)
278 {
279   char *string = parse_string (opt (d, options, key, default_value));
280   PangoFontDescription *desc = parse_font (string, default_size, bold, italic);
281   if (!desc)
282     {
283       msg (MW, _("`%s': bad font specification"), string);
284
285       /* Fall back to DEFAULT_VALUE, which had better be a valid font
286          description. */
287       desc = parse_font (default_value, default_size, bold, italic);
288       assert (desc != NULL);
289     }
290   free (string);
291
292   return desc;
293 }
294
295 static void
296 apply_options (struct xr_driver *xr, struct string_map *o)
297 {
298   struct output_driver *d = &xr->driver;
299
300   /* In inch/72000 units used by parse_paper_size() and parse_dimension(). */
301   int left_margin, right_margin;
302   int top_margin, bottom_margin;
303   int paper_width, paper_length;
304   int font_size;
305   int min_break[TABLE_N_AXES];
306
307   /* Scale factor from inch/72000 to inch/(72 * XR_POINT). */
308   const double scale = XR_POINT / 1000.;
309
310   int i;
311
312   for (i = 0; i < XR_N_FONTS; i++)
313     {
314       struct xr_font *font = &xr->fonts[i];
315
316       if (font->desc != NULL)
317         pango_font_description_free (font->desc);
318     }
319
320   font_size = parse_int (opt (d, o, "font-size", "10000"), 1000, 1000000);
321   xr->fonts[XR_FONT_FIXED].desc = parse_font_option
322     (d, o, "fixed-font", "monospace", font_size, false, false);
323   xr->fonts[XR_FONT_PROPORTIONAL].desc = parse_font_option (
324     d, o, "prop-font", "sans serif", font_size, false, false);
325   xr->fonts[XR_FONT_EMPHASIS].desc = parse_font_option (
326     d, o, "emph-font", "sans serif", font_size, false, true);
327
328   parse_color (d, o, "background-color", "#FFFFFFFFFFFF", &xr->bg);
329   parse_color (d, o, "foreground-color", "#000000000000", &xr->fg);
330
331   /* Get dimensions.  */
332   parse_paper_size (opt (d, o, "paper-size", ""), &paper_width, &paper_length);
333   left_margin = parse_dimension (opt (d, o, "left-margin", ".5in"));
334   right_margin = parse_dimension (opt (d, o, "right-margin", ".5in"));
335   top_margin = parse_dimension (opt (d, o, "top-margin", ".5in"));
336   bottom_margin = parse_dimension (opt (d, o, "bottom-margin", ".5in"));
337
338   min_break[H] = parse_dimension (opt (d, o, "min-hbreak", NULL)) * scale;
339   min_break[V] = parse_dimension (opt (d, o, "min-vbreak", NULL)) * scale;
340
341   int object_spacing = (parse_dimension (opt (d, o, "object-spacing", NULL))
342                         * scale);
343
344   /* Convert to inch/(XR_POINT * 72). */
345   xr->left_margin = left_margin * scale;
346   xr->right_margin = right_margin * scale;
347   xr->top_margin = top_margin * scale;
348   xr->bottom_margin = bottom_margin * scale;
349   xr->width = (paper_width - left_margin - right_margin) * scale;
350   xr->length = (paper_length - top_margin - bottom_margin) * scale;
351   xr->min_break[H] = min_break[H] >= 0 ? min_break[H] : xr->width / 2;
352   xr->min_break[V] = min_break[V] >= 0 ? min_break[V] : xr->length / 2;
353   xr->object_spacing = object_spacing >= 0 ? object_spacing : XR_POINT * 12;
354
355   /* There are no headings so headings_height can stay 0. */
356 }
357
358 static struct xr_driver *
359 xr_allocate (const char *name, int device_type, struct string_map *o)
360 {
361   struct xr_driver *xr = xzalloc (sizeof *xr);
362   struct output_driver *d = &xr->driver;
363
364   output_driver_init (d, &cairo_driver_class, name, device_type);
365
366   string_map_init (&xr->heading_vars);
367
368   apply_options (xr, o);
369
370   return xr;
371 }
372
373 static int
374 pango_to_xr (int pango)
375 {
376   return (XR_POINT != PANGO_SCALE
377           ? ceil (pango * (1. * XR_POINT / PANGO_SCALE))
378           : pango);
379 }
380
381 static int
382 xr_to_pango (int xr)
383 {
384   return (XR_POINT != PANGO_SCALE
385           ? ceil (xr * (1. / XR_POINT * PANGO_SCALE))
386           : xr);
387 }
388
389 static void
390 xr_measure_fonts (cairo_t *cairo, const struct xr_font fonts[XR_N_FONTS],
391                   int *char_width, int *char_height)
392 {
393   *char_width = 0;
394   *char_height = 0;
395   for (int i = 0; i < XR_N_FONTS; i++)
396     {
397       PangoLayout *layout = pango_cairo_create_layout (cairo);
398       pango_layout_set_font_description (layout, fonts[i].desc);
399
400       pango_layout_set_text (layout, "0", 1);
401
402       int cw, ch;
403       pango_layout_get_size (layout, &cw, &ch);
404       *char_width = MAX (*char_width, pango_to_xr (cw));
405       *char_height = MAX (*char_height, pango_to_xr (ch));
406
407       g_object_unref (G_OBJECT (layout));
408     }
409 }
410
411 static int
412 xr_render_page_heading (cairo_t *cairo, const PangoFontDescription *font,
413                         const struct page_heading *ph, int page_number,
414                         int width, bool draw, int base_y)
415 {
416   PangoLayout *layout = pango_cairo_create_layout (cairo);
417   pango_layout_set_font_description (layout, font);
418
419   int y = 0;
420   for (size_t i = 0; i < ph->n; i++)
421     {
422       const struct page_paragraph *pp = &ph->paragraphs[i];
423
424       char *markup = output_driver_substitute_heading_vars (pp->markup,
425                                                             page_number);
426       pango_layout_set_markup (layout, markup, -1);
427       free (markup);
428
429       pango_layout_set_alignment (layout,
430                                   (pp->halign == TAB_RIGHT ? PANGO_ALIGN_RIGHT
431                                    : pp->halign == TAB_LEFT ? PANGO_ALIGN_LEFT
432                                    : PANGO_ALIGN_CENTER));
433       pango_layout_set_width (layout, xr_to_pango (width));
434       if (draw)
435         {
436           cairo_save (cairo);
437           cairo_translate (cairo, 0, xr_to_pt (y + base_y));
438           pango_cairo_show_layout (cairo, layout);
439           cairo_restore (cairo);
440         }
441
442       int w, h;
443       pango_layout_get_size (layout, &w, &h);
444       y += pango_to_xr (h);
445     }
446
447   g_object_unref (G_OBJECT (layout));
448
449   return y;
450 }
451
452 static int
453 xr_measure_headings (cairo_surface_t *surface,
454                      const PangoFontDescription *font,
455                      const struct page_heading headings[2],
456                      int width, int object_spacing, int height[2])
457 {
458   cairo_t *cairo = cairo_create (surface);
459   int total = 0;
460   for (int i = 0; i < 2; i++)
461     {
462       int h = xr_render_page_heading (cairo, font, &headings[i], -1,
463                                       width, false, 0);
464
465       /* If the top heading is nonempty, add some space below it. */
466       if (h && i == 0)
467         h += object_spacing;
468
469       if (height)
470         height[i] = h;
471       total += h;
472     }
473   cairo_destroy (cairo);
474   return total;
475 }
476
477 static bool
478 xr_check_fonts (cairo_surface_t *surface,
479                 const struct xr_font fonts[XR_N_FONTS],
480                 int usable_width, int usable_length)
481 {
482   cairo_t *cairo = cairo_create (surface);
483   int char_width, char_height;
484   xr_measure_fonts (cairo, fonts, &char_width, &char_height);
485   cairo_destroy (cairo);
486
487   bool ok = true;
488   enum { MIN_WIDTH = 3, MIN_LENGTH = 3 };
489   if (usable_width / char_width < MIN_WIDTH)
490     {
491       msg (ME, _("The defined page is not wide enough to hold at least %d "
492                  "characters in the default font.  In fact, there's only "
493                  "room for %d characters."),
494            MIN_WIDTH, usable_width / char_width);
495       ok = false;
496     }
497   if (usable_length / char_height < MIN_LENGTH)
498     {
499       msg (ME, _("The defined page is not long enough to hold at least %d "
500                  "lines in the default font.  In fact, there's only "
501                  "room for %d lines."),
502            MIN_LENGTH, usable_length / char_height);
503       ok = false;
504     }
505   return ok;
506 }
507
508 static void
509 xr_set_cairo (struct xr_driver *xr, cairo_t *cairo)
510 {
511   xr->cairo = cairo;
512
513   cairo_set_line_width (xr->cairo, xr_to_pt (XR_LINE_WIDTH));
514
515   xr_measure_fonts (xr->cairo, xr->fonts, &xr->char_width, &xr->char_height);
516
517   for (int i = 0; i < XR_N_FONTS; i++)
518     {
519       struct xr_font *font = &xr->fonts[i];
520       font->layout = pango_cairo_create_layout (cairo);
521       pango_layout_set_font_description (font->layout, font->desc);
522     }
523
524   if (xr->params == NULL)
525     {
526       xr->params = xmalloc (sizeof *xr->params);
527       xr->params->draw_line = xr_draw_line;
528       xr->params->measure_cell_width = xr_measure_cell_width;
529       xr->params->measure_cell_height = xr_measure_cell_height;
530       xr->params->adjust_break = xr_adjust_break;
531       xr->params->draw_cell = xr_draw_cell;
532       xr->params->aux = xr;
533       xr->params->size[H] = xr->width;
534       xr->params->size[V] = xr->length;
535       xr->params->font_size[H] = xr->char_width;
536       xr->params->font_size[V] = xr->char_height;
537
538       int lw = XR_LINE_WIDTH;
539       int ls = XR_LINE_SPACE;
540       for (int i = 0; i < TABLE_N_AXES; i++)
541         {
542           xr->params->line_widths[i][RENDER_LINE_NONE] = 0;
543           xr->params->line_widths[i][RENDER_LINE_SINGLE] = lw;
544           xr->params->line_widths[i][RENDER_LINE_DASHED] = lw;
545           xr->params->line_widths[i][RENDER_LINE_THICK] = lw * 2;
546           xr->params->line_widths[i][RENDER_LINE_THIN] = lw / 2;
547           xr->params->line_widths[i][RENDER_LINE_DOUBLE] = 2 * lw + ls;
548         }
549
550       for (int i = 0; i < TABLE_N_AXES; i++)
551         xr->params->min_break[i] = xr->min_break[i];
552       xr->params->supports_margins = true;
553       xr->params->rtl = render_direction_rtl ();
554     }
555
556   cairo_set_source_rgb (xr->cairo, xr->fg.red, xr->fg.green, xr->fg.blue);
557 }
558
559 static struct output_driver *
560 xr_create (const char *file_name, enum settings_output_devices device_type,
561            struct string_map *o, enum xr_output_type file_type)
562 {
563   struct xr_driver *xr;
564   cairo_status_t status;
565   double width_pt, length_pt;
566
567   xr = xr_allocate (file_name, device_type, o);
568
569   width_pt = xr_to_pt (xr->width + xr->left_margin + xr->right_margin);
570   length_pt = xr_to_pt (xr->length + xr->top_margin + xr->bottom_margin);
571   if (file_type == XR_PDF)
572     xr->surface = cairo_pdf_surface_create (file_name, width_pt, length_pt);
573   else if (file_type == XR_PS)
574     xr->surface = cairo_ps_surface_create (file_name, width_pt, length_pt);
575   else if (file_type == XR_SVG)
576     xr->surface = cairo_svg_surface_create (file_name, width_pt, length_pt);
577   else
578     NOT_REACHED ();
579
580   status = cairo_surface_status (xr->surface);
581   if (status != CAIRO_STATUS_SUCCESS)
582     {
583       msg (ME, _("error opening output file `%s': %s"),
584              file_name, cairo_status_to_string (status));
585       goto error;
586     }
587
588   if (!xr_check_fonts (xr->surface, xr->fonts, xr->width, xr->length))
589     goto error;
590
591   return &xr->driver;
592
593  error:
594   output_driver_destroy (&xr->driver);
595   return NULL;
596 }
597
598 static struct output_driver *
599 xr_pdf_create (struct  file_handle *fh, enum settings_output_devices device_type,
600                struct string_map *o)
601 {
602   struct output_driver *od = xr_create (fh_get_file_name (fh), device_type, o, XR_PDF);
603   fh_unref (fh);
604   return od ;
605 }
606
607 static struct output_driver *
608 xr_ps_create (struct  file_handle *fh, enum settings_output_devices device_type,
609                struct string_map *o)
610 {
611   struct output_driver *od =  xr_create (fh_get_file_name (fh), device_type, o, XR_PS);
612   fh_unref (fh);
613   return od ;
614 }
615
616 static struct output_driver *
617 xr_svg_create (struct file_handle *fh, enum settings_output_devices device_type,
618                struct string_map *o)
619 {
620   struct output_driver *od = xr_create (fh_get_file_name (fh), device_type, o, XR_SVG);
621   fh_unref (fh);
622   return od ;
623 }
624
625 static void
626 xr_destroy (struct output_driver *driver)
627 {
628   struct xr_driver *xr = xr_driver_cast (driver);
629   size_t i;
630
631   xr_driver_destroy_fsm (xr);
632
633   if (xr->cairo != NULL)
634     {
635       cairo_surface_finish (xr->surface);
636       cairo_status_t status = cairo_status (xr->cairo);
637       if (status != CAIRO_STATUS_SUCCESS)
638         msg (ME, _("error drawing output for %s driver: %s"),
639                output_driver_get_name (driver),
640                cairo_status_to_string (status));
641       cairo_surface_destroy (xr->surface);
642
643       cairo_destroy (xr->cairo);
644     }
645
646   for (i = 0; i < XR_N_FONTS; i++)
647     {
648       struct xr_font *font = &xr->fonts[i];
649
650       if (font->desc != NULL)
651         pango_font_description_free (font->desc);
652       if (font->layout != NULL)
653         g_object_unref (font->layout);
654     }
655
656   free (xr->params);
657   free (xr);
658 }
659
660 static void
661 xr_flush (struct output_driver *driver)
662 {
663   struct xr_driver *xr = xr_driver_cast (driver);
664
665   cairo_surface_flush (cairo_get_target (xr->cairo));
666 }
667
668 static void
669 xr_update_page_setup (struct output_driver *driver,
670                       const struct page_setup *ps)
671 {
672   struct xr_driver *xr = xr_driver_cast (driver);
673
674   xr->initial_page_number = ps->initial_page_number;
675   xr->object_spacing = ps->object_spacing * 72 * XR_POINT;
676
677   if (xr->cairo)
678     return;
679
680   int usable[TABLE_N_AXES];
681   for (int i = 0; i < 2; i++)
682     usable[i] = (ps->paper[i]
683                  - (ps->margins[i][0] + ps->margins[i][1])) * 72 * XR_POINT;
684
685   int headings_height[2];
686   usable[V] -= xr_measure_headings (
687     xr->surface, xr->fonts[XR_FONT_PROPORTIONAL].desc, ps->headings,
688     usable[H], xr->object_spacing, headings_height);
689
690   enum table_axis h = ps->orientation == PAGE_LANDSCAPE;
691   enum table_axis v = !h;
692   if (!xr_check_fonts (xr->surface, xr->fonts, usable[h], usable[v]))
693     return;
694
695   for (int i = 0; i < 2; i++)
696     {
697       page_heading_uninit (&xr->headings[i]);
698       page_heading_copy (&xr->headings[i], &ps->headings[i]);
699       xr->headings_height[i] = headings_height[i];
700     }
701   xr->width = usable[h];
702   xr->length = usable[v];
703   xr->left_margin = ps->margins[h][0] * 72 * XR_POINT;
704   xr->right_margin = ps->margins[h][1] * 72 * XR_POINT;
705   xr->top_margin = ps->margins[v][0] * 72 * XR_POINT;
706   xr->bottom_margin = ps->margins[v][1] * 72 * XR_POINT;
707   cairo_pdf_surface_set_size (xr->surface,
708                               ps->paper[h] * 72.0, ps->paper[v] * 72.0);
709 }
710
711 static void
712 xr_submit (struct output_driver *driver, const struct output_item *output_item)
713 {
714   struct xr_driver *xr = xr_driver_cast (driver);
715
716   if (is_page_setup_item (output_item))
717     {
718       xr_update_page_setup (driver,
719                             to_page_setup_item (output_item)->page_setup);
720       return;
721     }
722
723   if (!xr->cairo)
724     {
725       xr->page_number = xr->initial_page_number - 1;
726       xr_set_cairo (xr, cairo_create (xr->surface));
727       cairo_save (xr->cairo);
728       xr_driver_next_page (xr, xr->cairo);
729     }
730
731   xr_driver_output_item (xr, output_item);
732   while (xr_driver_need_new_page (xr))
733     {
734       cairo_restore (xr->cairo);
735       cairo_show_page (xr->cairo);
736       cairo_save (xr->cairo);
737       xr_driver_next_page (xr, xr->cairo);
738     }
739 }
740 \f
741 /* Functions for rendering a series of output items to a series of Cairo
742    contexts, with pagination.
743
744    Used by PSPPIRE for printing, and by the basic Cairo output driver above as
745    its underlying implementation.
746
747    See the big comment in cairo.h for intended usage. */
748
749 /* Gives new page CAIRO to XR for output. */
750 void
751 xr_driver_next_page (struct xr_driver *xr, cairo_t *cairo)
752 {
753   cairo_save (cairo);
754   cairo_set_source_rgb (cairo, xr->bg.red, xr->bg.green, xr->bg.blue);
755   cairo_rectangle (cairo, 0, 0, xr->width, xr->length);
756   cairo_fill (cairo);
757   cairo_restore (cairo);
758
759   cairo_translate (cairo,
760                    xr_to_pt (xr->left_margin),
761                    xr_to_pt (xr->top_margin + xr->headings_height[0]));
762
763   xr->page_number++;
764   xr->cairo = cairo;
765   xr->x = xr->y = 0;
766
767   xr_render_page_heading (xr->cairo, xr->fonts[XR_FONT_PROPORTIONAL].desc,
768                           &xr->headings[0], xr->page_number, xr->width, true,
769                           -xr->headings_height[0]);
770   xr_render_page_heading (xr->cairo, xr->fonts[XR_FONT_PROPORTIONAL].desc,
771                           &xr->headings[1], xr->page_number, xr->width, true,
772                           xr->length);
773
774   xr_driver_run_fsm (xr);
775 }
776
777 /* Start rendering OUTPUT_ITEM to XR.  Only valid if XR is not in the middle of
778    rendering a previous output item, that is, only if xr_driver_need_new_page()
779    returns false. */
780 void
781 xr_driver_output_item (struct xr_driver *xr,
782                        const struct output_item *output_item)
783 {
784   assert (xr->fsm == NULL);
785   xr->fsm = xr_render_output_item (xr, output_item);
786   xr_driver_run_fsm (xr);
787 }
788
789 /* Returns true if XR is in the middle of rendering an output item and needs a
790    new page to be appended using xr_driver_next_page() to make progress,
791    otherwise false. */
792 bool
793 xr_driver_need_new_page (const struct xr_driver *xr)
794 {
795   return xr->fsm != NULL;
796 }
797
798 /* Returns true if the current page doesn't have any content yet. */
799 bool
800 xr_driver_is_page_blank (const struct xr_driver *xr)
801 {
802   return xr->y == 0;
803 }
804
805 static void
806 xr_driver_destroy_fsm (struct xr_driver *xr)
807 {
808   if (xr->fsm != NULL)
809     {
810       xr->fsm->destroy (xr->fsm);
811       xr->fsm = NULL;
812     }
813 }
814
815 static void
816 xr_driver_run_fsm (struct xr_driver *xr)
817 {
818   if (xr->fsm != NULL && !xr->fsm->render (xr->fsm, xr))
819     xr_driver_destroy_fsm (xr);
820 }
821 \f
822 static void
823 xr_layout_cell (struct xr_driver *, const struct table_cell *,
824                 int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
825                 int *width, int *height, int *brk);
826
827 static void
828 dump_line (struct xr_driver *xr, int x0, int y0, int x1, int y1, int style,
829            const struct cell_color *color)
830 {
831   cairo_new_path (xr->cairo);
832   cairo_set_source_rgb (xr->cairo,
833                         color->r / 255.0, color->g / 255.0, color->b / 255.0);
834   cairo_set_line_width (
835     xr->cairo,
836     xr_to_pt (style == RENDER_LINE_THICK ? XR_LINE_WIDTH * 2
837               : style == RENDER_LINE_THIN ? XR_LINE_WIDTH / 2
838               : XR_LINE_WIDTH));
839   cairo_move_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y));
840   cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y1 + xr->y));
841   cairo_stroke (xr->cairo);
842 }
843
844 static void UNUSED
845 dump_rectangle (struct xr_driver *xr, int x0, int y0, int x1, int y1)
846 {
847   cairo_new_path (xr->cairo);
848   cairo_set_line_width (xr->cairo, xr_to_pt (XR_LINE_WIDTH));
849   cairo_move_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y));
850   cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y0 + xr->y));
851   cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y1 + xr->y));
852   cairo_line_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y1 + xr->y));
853   cairo_close_path (xr->cairo);
854   cairo_stroke (xr->cairo);
855 }
856
857 static void
858 fill_rectangle (struct xr_driver *xr, int x0, int y0, int x1, int y1)
859 {
860   cairo_new_path (xr->cairo);
861   cairo_set_line_width (xr->cairo, xr_to_pt (XR_LINE_WIDTH));
862   cairo_rectangle (xr->cairo,
863                    xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y),
864                    xr_to_pt (x1 - x0), xr_to_pt (y1 - y0));
865   cairo_fill (xr->cairo);
866 }
867
868 /* Draws a horizontal line X0...X2 at Y if LEFT says so,
869    shortening it to X0...X1 if SHORTEN is true.
870    Draws a horizontal line X1...X3 at Y if RIGHT says so,
871    shortening it to X2...X3 if SHORTEN is true. */
872 static void
873 horz_line (struct xr_driver *xr, int x0, int x1, int x2, int x3, int y,
874            enum render_line_style left, enum render_line_style right,
875            const struct cell_color *left_color,
876            const struct cell_color *right_color,
877            bool shorten)
878 {
879   if (left != RENDER_LINE_NONE && right != RENDER_LINE_NONE && !shorten
880       && cell_color_equal (left_color, right_color))
881     dump_line (xr, x0, y, x3, y, left, left_color);
882   else
883     {
884       if (left != RENDER_LINE_NONE)
885         dump_line (xr, x0, y, shorten ? x1 : x2, y, left, left_color);
886       if (right != RENDER_LINE_NONE)
887         dump_line (xr, shorten ? x2 : x1, y, x3, y, right, right_color);
888     }
889 }
890
891 /* Draws a vertical line Y0...Y2 at X if TOP says so,
892    shortening it to Y0...Y1 if SHORTEN is true.
893    Draws a vertical line Y1...Y3 at X if BOTTOM says so,
894    shortening it to Y2...Y3 if SHORTEN is true. */
895 static void
896 vert_line (struct xr_driver *xr, int y0, int y1, int y2, int y3, int x,
897            enum render_line_style top, enum render_line_style bottom,
898            const struct cell_color *top_color,
899            const struct cell_color *bottom_color,
900            bool shorten)
901 {
902   if (top != RENDER_LINE_NONE && bottom != RENDER_LINE_NONE && !shorten
903       && cell_color_equal (top_color, bottom_color))
904     dump_line (xr, x, y0, x, y3, top, top_color);
905   else
906     {
907       if (top != RENDER_LINE_NONE)
908         dump_line (xr, x, y0, x, shorten ? y1 : y2, top, top_color);
909       if (bottom != RENDER_LINE_NONE)
910         dump_line (xr, x, shorten ? y2 : y1, x, y3, bottom, bottom_color);
911     }
912 }
913
914 static void
915 xr_draw_line (void *xr_, int bb[TABLE_N_AXES][2],
916               enum render_line_style styles[TABLE_N_AXES][2],
917               struct cell_color colors[TABLE_N_AXES][2])
918 {
919   const int x0 = bb[H][0];
920   const int y0 = bb[V][0];
921   const int x3 = bb[H][1];
922   const int y3 = bb[V][1];
923   const int top = styles[H][0];
924   const int bottom = styles[H][1];
925
926   int start_side = render_direction_rtl();
927   int end_side = !start_side;
928   const int start_of_line = styles[V][start_side];
929   const int end_of_line   = styles[V][end_side];
930   const struct cell_color *top_color = &colors[H][0];
931   const struct cell_color *bottom_color = &colors[H][1];
932   const struct cell_color *start_color = &colors[V][start_side];
933   const struct cell_color *end_color = &colors[V][end_side];
934
935   /* The algorithm here is somewhat subtle, to allow it to handle
936      all the kinds of intersections that we need.
937
938      Three additional ordinates are assigned along the x axis.  The
939      first is xc, midway between x0 and x3.  The others are x1 and
940      x2; for a single vertical line these are equal to xc, and for
941      a double vertical line they are the ordinates of the left and
942      right half of the double line.
943
944      yc, y1, and y2 are assigned similarly along the y axis.
945
946      The following diagram shows the coordinate system and output
947      for double top and bottom lines, single left line, and no
948      right line:
949
950                  x0       x1 xc  x2      x3
951                y0 ________________________
952                   |        #     #       |
953                   |        #     #       |
954                   |        #     #       |
955                   |        #     #       |
956                   |        #     #       |
957      y1 = y2 = yc |#########     #       |
958                   |        #     #       |
959                   |        #     #       |
960                   |        #     #       |
961                   |        #     #       |
962                y3 |________#_____#_______|
963   */
964   struct xr_driver *xr = xr_;
965
966   /* Offset from center of each line in a pair of double lines. */
967   int double_line_ofs = (XR_LINE_SPACE + XR_LINE_WIDTH) / 2;
968
969   /* Are the lines along each axis single or double?
970      (It doesn't make sense to have different kinds of line on the
971      same axis, so we don't try to gracefully handle that case.) */
972   bool double_vert = top == RENDER_LINE_DOUBLE || bottom == RENDER_LINE_DOUBLE;
973   bool double_horz = start_of_line == RENDER_LINE_DOUBLE || end_of_line == RENDER_LINE_DOUBLE;
974
975   /* When horizontal lines are doubled,
976      the left-side line along y1 normally runs from x0 to x2,
977      and the right-side line along y1 from x3 to x1.
978      If the top-side line is also doubled, we shorten the y1 lines,
979      so that the left-side line runs only to x1,
980      and the right-side line only to x2.
981      Otherwise, the horizontal line at y = y1 below would cut off
982      the intersection, which looks ugly:
983                x0       x1     x2      x3
984              y0 ________________________
985                 |        #     #       |
986                 |        #     #       |
987                 |        #     #       |
988                 |        #     #       |
989              y1 |#########     ########|
990                 |                      |
991                 |                      |
992              y2 |######################|
993                 |                      |
994                 |                      |
995              y3 |______________________|
996      It is more of a judgment call when the horizontal line is
997      single.  We actually choose to cut off the line anyhow, as
998      shown in the first diagram above.
999   */
1000   bool shorten_y1_lines = top == RENDER_LINE_DOUBLE;
1001   bool shorten_y2_lines = bottom == RENDER_LINE_DOUBLE;
1002   bool shorten_yc_line = shorten_y1_lines && shorten_y2_lines;
1003   int horz_line_ofs = double_vert ? double_line_ofs : 0;
1004   int xc = (x0 + x3) / 2;
1005   int x1 = xc - horz_line_ofs;
1006   int x2 = xc + horz_line_ofs;
1007
1008   bool shorten_x1_lines = start_of_line == RENDER_LINE_DOUBLE;
1009   bool shorten_x2_lines = end_of_line == RENDER_LINE_DOUBLE;
1010   bool shorten_xc_line = shorten_x1_lines && shorten_x2_lines;
1011   int vert_line_ofs = double_horz ? double_line_ofs : 0;
1012   int yc = (y0 + y3) / 2;
1013   int y1 = yc - vert_line_ofs;
1014   int y2 = yc + vert_line_ofs;
1015
1016   if (!double_horz)
1017     horz_line (xr, x0, x1, x2, x3, yc, start_of_line, end_of_line,
1018                start_color, end_color, shorten_yc_line);
1019   else
1020     {
1021       horz_line (xr, x0, x1, x2, x3, y1, start_of_line, end_of_line,
1022                  start_color, end_color, shorten_y1_lines);
1023       horz_line (xr, x0, x1, x2, x3, y2, start_of_line, end_of_line,
1024                  start_color, end_color, shorten_y2_lines);
1025     }
1026
1027   if (!double_vert)
1028     vert_line (xr, y0, y1, y2, y3, xc, top, bottom, top_color, bottom_color,
1029                shorten_xc_line);
1030   else
1031     {
1032       vert_line (xr, y0, y1, y2, y3, x1, top, bottom, top_color, bottom_color,
1033                  shorten_x1_lines);
1034       vert_line (xr, y0, y1, y2, y3, x2, top, bottom, top_color, bottom_color,
1035                  shorten_x2_lines);
1036     }
1037 }
1038
1039 static void
1040 xr_measure_cell_width (void *xr_, const struct table_cell *cell,
1041                        int *min_width, int *max_width)
1042 {
1043   struct xr_driver *xr = xr_;
1044   int bb[TABLE_N_AXES][2];
1045   int clip[TABLE_N_AXES][2];
1046   int h;
1047
1048   bb[H][0] = 0;
1049   bb[H][1] = INT_MAX;
1050   bb[V][0] = 0;
1051   bb[V][1] = INT_MAX;
1052   clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
1053   xr_layout_cell (xr, cell, bb, clip, max_width, &h, NULL);
1054
1055   bb[H][1] = 1;
1056   xr_layout_cell (xr, cell, bb, clip, min_width, &h, NULL);
1057
1058   if (*min_width > 0)
1059     *min_width += px_to_xr (cell->style->margin[H][0]
1060                             + cell->style->margin[H][1]);
1061   if (*max_width > 0)
1062     *max_width += px_to_xr (cell->style->margin[H][0]
1063                             + cell->style->margin[H][1]);
1064 }
1065
1066 static int
1067 xr_measure_cell_height (void *xr_, const struct table_cell *cell, int width)
1068 {
1069   struct xr_driver *xr = xr_;
1070   int bb[TABLE_N_AXES][2];
1071   int clip[TABLE_N_AXES][2];
1072   int w, h;
1073
1074   bb[H][0] = 0;
1075   bb[H][1] = width - px_to_xr (cell->style->margin[H][0]
1076                                + cell->style->margin[H][1]);
1077   bb[V][0] = 0;
1078   bb[V][1] = INT_MAX;
1079   clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
1080   xr_layout_cell (xr, cell, bb, clip, &w, &h, NULL);
1081   h += px_to_xr (cell->style->margin[V][0] + cell->style->margin[V][1]);
1082   return h;
1083 }
1084
1085 static void xr_clip (struct xr_driver *, int clip[TABLE_N_AXES][2]);
1086
1087 static void
1088 xr_draw_cell (void *xr_, const struct table_cell *cell, int color_idx,
1089               int bb[TABLE_N_AXES][2],
1090               int spill[TABLE_N_AXES][2],
1091               int clip[TABLE_N_AXES][2])
1092 {
1093   struct xr_driver *xr = xr_;
1094   int w, h, brk;
1095
1096   cairo_save (xr->cairo);
1097   int bg_clip[TABLE_N_AXES][2];
1098   for (int axis = 0; axis < TABLE_N_AXES; axis++)
1099     {
1100       bg_clip[axis][0] = clip[axis][0];
1101       if (bb[axis][0] == clip[axis][0])
1102         bg_clip[axis][0] -= spill[axis][0];
1103
1104       bg_clip[axis][1] = clip[axis][1];
1105       if (bb[axis][1] == clip[axis][1])
1106         bg_clip[axis][1] += spill[axis][1];
1107     }
1108   xr_clip (xr, bg_clip);
1109   cairo_set_source_rgb (xr->cairo,
1110                         cell->style->bg[color_idx].r / 255.,
1111                         cell->style->bg[color_idx].g / 255.,
1112                         cell->style->bg[color_idx].b / 255.);
1113   fill_rectangle (xr,
1114                   bb[H][0] - spill[H][0],
1115                   bb[V][0] - spill[V][0],
1116                   bb[H][1] + spill[H][1],
1117                   bb[V][1] + spill[V][1]);
1118   cairo_restore (xr->cairo);
1119
1120   cairo_save (xr->cairo);
1121   cairo_set_source_rgb (xr->cairo,
1122                         cell->style->fg[color_idx].r / 255.,
1123                         cell->style->fg[color_idx].g / 255.,
1124                         cell->style->fg[color_idx].b / 255.);
1125
1126   for (int axis = 0; axis < TABLE_N_AXES; axis++)
1127     {
1128       bb[axis][0] += px_to_xr (cell->style->margin[axis][0]);
1129       bb[axis][1] -= px_to_xr (cell->style->margin[axis][1]);
1130     }
1131   if (bb[H][0] < bb[H][1] && bb[V][0] < bb[V][1])
1132     xr_layout_cell (xr, cell, bb, clip, &w, &h, &brk);
1133   cairo_restore (xr->cairo);
1134 }
1135
1136 static int
1137 xr_adjust_break (void *xr_, const struct table_cell *cell,
1138                  int width, int height)
1139 {
1140   struct xr_driver *xr = xr_;
1141   int bb[TABLE_N_AXES][2];
1142   int clip[TABLE_N_AXES][2];
1143   int w, h, brk;
1144
1145   if (xr_measure_cell_height (xr_, cell, width) < height)
1146     return -1;
1147
1148   bb[H][0] = 0;
1149   bb[H][1] = width - px_to_xr (cell->style->margin[H][0]
1150                                + cell->style->margin[H][1]);
1151   if (bb[H][1] <= 0)
1152     return 0;
1153   bb[V][0] = 0;
1154   bb[V][1] = height - px_to_xr (cell->style->margin[V][0]
1155                                 + cell->style->margin[V][1]);
1156   clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
1157   xr_layout_cell (xr, cell, bb, clip, &w, &h, &brk);
1158   return brk;
1159 }
1160 \f
1161 static void
1162 xr_clip (struct xr_driver *xr, int clip[TABLE_N_AXES][2])
1163 {
1164   if (clip[H][1] != INT_MAX || clip[V][1] != INT_MAX)
1165     {
1166       double x0 = xr_to_pt (clip[H][0] + xr->x);
1167       double y0 = xr_to_pt (clip[V][0] + xr->y);
1168       double x1 = xr_to_pt (clip[H][1] + xr->x);
1169       double y1 = xr_to_pt (clip[V][1] + xr->y);
1170
1171       cairo_rectangle (xr->cairo, x0, y0, x1 - x0, y1 - y0);
1172       cairo_clip (xr->cairo);
1173     }
1174 }
1175
1176 static void
1177 add_attr_with_start (PangoAttrList *list, PangoAttribute *attr, guint start_index)
1178 {
1179   attr->start_index = start_index;
1180   pango_attr_list_insert (list, attr);
1181 }
1182
1183 static void
1184 markup_escape (const char *in, struct string *out)
1185 {
1186   for (int c = *in++; c; c = *in++)
1187     switch (c)
1188       {
1189       case '&':
1190         ds_put_cstr (out, "&amp;");
1191         break;
1192       case '<':
1193         ds_put_cstr (out, "&lt;");
1194         break;
1195       case '>':
1196         ds_put_cstr (out, "&gt;");
1197         break;
1198       default:
1199         ds_put_byte (out, c);
1200         break;
1201       }
1202 }
1203
1204 static int
1205 xr_layout_cell_text (struct xr_driver *xr, const struct table_cell *cell,
1206                      int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
1207                      int *widthp, int *brk)
1208 {
1209   const struct cell_style *style = cell->style;
1210   unsigned int options = cell->options;
1211   int w, h;
1212
1213   struct xr_font *font = (options & TAB_FIX ? &xr->fonts[XR_FONT_FIXED]
1214                           : options & TAB_EMPH ? &xr->fonts[XR_FONT_EMPHASIS]
1215                           : &xr->fonts[XR_FONT_PROPORTIONAL]);
1216   struct xr_font local_font;
1217   if (cell->style->font)
1218     {
1219       PangoFontDescription *desc = parse_font (
1220         style->font,
1221         style->font_size ? style->font_size * 1000 * 72 / 128 : 10000,
1222         style->bold, style->italic);
1223       if (desc)
1224         {
1225           PangoLayout *layout = pango_cairo_create_layout (xr->cairo);
1226           pango_layout_set_font_description (layout, desc);
1227
1228           local_font.desc = desc;
1229           local_font.layout = layout;
1230           font = &local_font;
1231         }
1232     }
1233
1234   int footnote_adjustment;
1235   if (cell->n_footnotes == 0)
1236     footnote_adjustment = 0;
1237   else if (cell->n_footnotes == 1 && (options & TAB_HALIGN) == TAB_RIGHT)
1238     {
1239       PangoAttrList *attrs;
1240
1241       const char *marker = cell->footnotes[0]->marker;
1242       pango_layout_set_text (font->layout, marker, strlen (marker));
1243
1244       attrs = pango_attr_list_new ();
1245       pango_attr_list_insert (attrs, pango_attr_rise_new (7000));
1246       pango_layout_set_attributes (font->layout, attrs);
1247       pango_attr_list_unref (attrs);
1248
1249       pango_layout_get_size (font->layout, &w, &h);
1250       footnote_adjustment = MIN (w, px_to_xr (style->margin[H][1]));
1251     }
1252   else
1253     footnote_adjustment = px_to_xr (style->margin[H][1]);
1254
1255   struct string tmp = DS_EMPTY_INITIALIZER;
1256   const char *text = cell->text;
1257
1258   /* Deal with an oddity of the Unicode line-breaking algorithm (or perhaps in
1259      Pango's implementation of it): it will break after a period or a comma
1260      that precedes a digit, e.g. in ".000" it will break after the period.
1261      This code looks for such a situation and inserts a U+2060 WORD JOINER
1262      to prevent the break.
1263
1264      This isn't necessary when the decimal point is between two digits
1265      (e.g. "0.000" won't be broken) or when the display width is not limited so
1266      that word wrapping won't happen.
1267
1268      It isn't necessary to look for more than one period or comma, as would
1269      happen with grouping like 1,234,567.89 or 1.234.567,89 because if groups
1270      are present then there will always be a digit on both sides of every
1271      period and comma. */
1272   if (bb[H][1] != INT_MAX)
1273     {
1274       const char *decimal = text + strcspn (text, ".,");
1275       if (decimal[0]
1276           && c_isdigit (decimal[1])
1277           && (decimal == text || !c_isdigit (decimal[-1])))
1278         {
1279           ds_extend (&tmp, strlen (text) + 16);
1280           ds_put_substring (&tmp, ss_buffer (text, decimal - text + 1));
1281           ds_put_unichar (&tmp, 0x2060 /* U+2060 WORD JOINER */);
1282           ds_put_cstr (&tmp, decimal + 1);
1283         }
1284     }
1285
1286   if (footnote_adjustment)
1287     {
1288       bb[H][1] += footnote_adjustment;
1289
1290       if (ds_is_empty (&tmp))
1291         {
1292           ds_extend (&tmp, strlen (text) + 16);
1293           ds_put_cstr (&tmp, text);
1294         }
1295       size_t initial_length = ds_length (&tmp);
1296
1297       for (size_t i = 0; i < cell->n_footnotes; i++)
1298         {
1299           if (i)
1300             ds_put_byte (&tmp, ',');
1301
1302           const char *marker = cell->footnotes[i]->marker;
1303           if (options & TAB_MARKUP)
1304             markup_escape (marker, &tmp);
1305           else
1306             ds_put_cstr (&tmp, marker);
1307         }
1308
1309       if (options & TAB_MARKUP)
1310         pango_layout_set_markup (font->layout,
1311                                  ds_cstr (&tmp), ds_length (&tmp));
1312       else
1313         pango_layout_set_text (font->layout, ds_cstr (&tmp), ds_length (&tmp));
1314
1315       PangoAttrList *attrs = pango_attr_list_new ();
1316       if (style->underline)
1317         pango_attr_list_insert (attrs, pango_attr_underline_new (
1318                                PANGO_UNDERLINE_SINGLE));
1319       add_attr_with_start (attrs, pango_attr_rise_new (7000), initial_length);
1320       add_attr_with_start (
1321         attrs, pango_attr_font_desc_new (font->desc), initial_length);
1322       pango_layout_set_attributes (font->layout, attrs);
1323       pango_attr_list_unref (attrs);
1324     }
1325   else
1326     {
1327       const char *content = ds_is_empty (&tmp) ? text : ds_cstr (&tmp);
1328       if (options & TAB_MARKUP)
1329         pango_layout_set_markup (font->layout, content, -1);
1330       else
1331         pango_layout_set_text (font->layout, content, -1);
1332
1333       if (style->underline)
1334         {
1335           PangoAttrList *attrs = pango_attr_list_new ();
1336           pango_attr_list_insert (attrs, pango_attr_underline_new (
1337                                     PANGO_UNDERLINE_SINGLE));
1338           pango_layout_set_attributes (font->layout, attrs);
1339           pango_attr_list_unref (attrs);
1340         }
1341     }
1342   ds_destroy (&tmp);
1343
1344   pango_layout_set_alignment (
1345     font->layout,
1346     ((options & TAB_HALIGN) == TAB_RIGHT ? PANGO_ALIGN_RIGHT
1347      : (options & TAB_HALIGN) == TAB_LEFT ? PANGO_ALIGN_LEFT
1348      : PANGO_ALIGN_CENTER));
1349   pango_layout_set_width (
1350     font->layout,
1351     bb[H][1] == INT_MAX ? -1 : xr_to_pango (bb[H][1] - bb[H][0]));
1352   pango_layout_set_wrap (font->layout, PANGO_WRAP_WORD);
1353
1354   if (clip[H][0] != clip[H][1])
1355     {
1356       cairo_save (xr->cairo);
1357       xr_clip (xr, clip);
1358       cairo_translate (xr->cairo,
1359                        xr_to_pt (bb[H][0] + xr->x),
1360                        xr_to_pt (bb[V][0] + xr->y));
1361       pango_cairo_show_layout (xr->cairo, font->layout);
1362
1363       /* If enabled, this draws a blue rectangle around the extents of each
1364          line of text, which can be rather useful for debugging layout
1365          issues. */
1366       if (0)
1367         {
1368           PangoLayoutIter *iter;
1369           iter = pango_layout_get_iter (font->layout);
1370           do
1371             {
1372               PangoRectangle extents;
1373
1374               pango_layout_iter_get_line_extents (iter, &extents, NULL);
1375               cairo_save (xr->cairo);
1376               cairo_set_source_rgb (xr->cairo, 1, 0, 0);
1377               dump_rectangle (xr,
1378                               pango_to_xr (extents.x) - xr->x,
1379                               pango_to_xr (extents.y) - xr->y,
1380                               pango_to_xr (extents.x + extents.width) - xr->x,
1381                               pango_to_xr (extents.y + extents.height) - xr->y);
1382               cairo_restore (xr->cairo);
1383             }
1384           while (pango_layout_iter_next_line (iter));
1385           pango_layout_iter_free (iter);
1386         }
1387
1388       cairo_restore (xr->cairo);
1389     }
1390
1391   pango_layout_get_size (font->layout, &w, &h);
1392   w = pango_to_xr (w);
1393   h = pango_to_xr (h);
1394   if (w > *widthp)
1395     *widthp = w;
1396   if (bb[V][0] + h >= bb[V][1])
1397     {
1398       PangoLayoutIter *iter;
1399       int best UNUSED = 0;
1400
1401       /* Choose a breakpoint between lines instead of in the middle of one. */
1402       iter = pango_layout_get_iter (font->layout);
1403       do
1404         {
1405           PangoRectangle extents;
1406           int y0, y1;
1407           int bottom;
1408
1409           pango_layout_iter_get_line_extents (iter, NULL, &extents);
1410           pango_layout_iter_get_line_yrange (iter, &y0, &y1);
1411           extents.x = pango_to_xr (extents.x);
1412           extents.y = pango_to_xr (y0);
1413           extents.width = pango_to_xr (extents.width);
1414           extents.height = pango_to_xr (y1 - y0);
1415           bottom = bb[V][0] + extents.y + extents.height;
1416           if (bottom < bb[V][1])
1417             {
1418               if (brk && clip[H][0] != clip[H][1])
1419                 best = bottom;
1420               if (brk)
1421                 *brk = bottom;
1422             }
1423           else
1424             break;
1425         }
1426       while (pango_layout_iter_next_line (iter));
1427       pango_layout_iter_free (iter);
1428
1429       /* If enabled, draws a green line across the chosen breakpoint, which can
1430          be useful for debugging issues with breaking.  */
1431       if (0)
1432         {
1433           if (best && !xr->nest)
1434             dump_line (xr, -xr->left_margin, best,
1435                        xr->width + xr->right_margin, best,
1436                        RENDER_LINE_SINGLE,
1437                        &(struct cell_color) CELL_COLOR (0, 255, 0));
1438         }
1439     }
1440
1441   pango_layout_set_attributes (font->layout, NULL);
1442
1443   if (font == &local_font)
1444     {
1445       g_object_unref (G_OBJECT (font->layout));
1446       pango_font_description_free (font->desc);
1447     }
1448
1449   return h;
1450 }
1451
1452 static void
1453 xr_layout_cell (struct xr_driver *xr, const struct table_cell *cell,
1454                 int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
1455                 int *width, int *height, int *brk)
1456 {
1457   *width = 0;
1458   *height = 0;
1459
1460   /* If enabled, draws a blue rectangle around the cell extents, which can be
1461      useful for debugging layout. */
1462   if (0)
1463     {
1464       if (clip[H][0] != clip[H][1])
1465         {
1466           int offset = (xr->nest) * XR_POINT;
1467
1468           cairo_save (xr->cairo);
1469           cairo_set_source_rgb (xr->cairo, 0, 0, 1);
1470           dump_rectangle (xr,
1471                           bb[H][0] + offset, bb[V][0] + offset,
1472                           bb[H][1] - offset, bb[V][1] - offset);
1473           cairo_restore (xr->cairo);
1474         }
1475     }
1476
1477   if (brk)
1478     *brk = bb[V][0];
1479   *height = xr_layout_cell_text (xr, cell, bb, clip, width, brk);
1480 }
1481 \f
1482 struct output_driver_factory pdf_driver_factory =
1483   { "pdf", "pspp.pdf", xr_pdf_create };
1484 struct output_driver_factory ps_driver_factory =
1485   { "ps", "pspp.ps", xr_ps_create };
1486 struct output_driver_factory svg_driver_factory =
1487   { "svg", "pspp.svg", xr_svg_create };
1488
1489 static const struct output_driver_class cairo_driver_class =
1490 {
1491   "cairo",
1492   xr_destroy,
1493   xr_submit,
1494   xr_flush,
1495 };
1496 \f
1497 /* GUI rendering helpers. */
1498
1499 struct xr_rendering
1500   {
1501     struct output_item *item;
1502
1503     /* Table items. */
1504     struct render_pager *p;
1505     struct xr_driver *xr;
1506   };
1507
1508 #define CHART_WIDTH 500
1509 #define CHART_HEIGHT 375
1510
1511
1512
1513 struct xr_driver *
1514 xr_driver_create (cairo_t *cairo, struct string_map *options)
1515 {
1516   struct xr_driver *xr = xr_allocate ("cairo", 0, options);
1517   xr_set_cairo (xr, cairo);
1518   return xr;
1519 }
1520
1521 /* Destroy XR, which should have been created with xr_driver_create().  Any
1522    cairo_t added to XR is not destroyed, because it is owned by the client. */
1523 void
1524 xr_driver_destroy (struct xr_driver *xr)
1525 {
1526   if (xr != NULL)
1527     {
1528       xr->cairo = NULL;
1529       output_driver_destroy (&xr->driver);
1530     }
1531 }
1532
1533 static struct xr_rendering *
1534 xr_rendering_create_text (struct xr_driver *xr, const char *text, cairo_t *cr)
1535 {
1536   struct table_item *table_item;
1537   struct xr_rendering *r;
1538
1539   table_item = table_item_create (table_from_string (TAB_LEFT, text),
1540                                   NULL, NULL);
1541   r = xr_rendering_create (xr, &table_item->output_item, cr);
1542   table_item_unref (table_item);
1543
1544   return r;
1545 }
1546
1547 void
1548 xr_rendering_apply_options (struct xr_rendering *xr, struct string_map *o)
1549 {
1550   if (is_table_item (xr->item))
1551     apply_options (xr->xr, o);
1552 }
1553
1554 struct xr_rendering *
1555 xr_rendering_create (struct xr_driver *xr, const struct output_item *item,
1556                      cairo_t *cr)
1557 {
1558   struct xr_rendering *r = NULL;
1559
1560   if (is_text_item (item))
1561     r = xr_rendering_create_text (xr, text_item_get_text (to_text_item (item)),
1562                                   cr);
1563   else if (is_message_item (item))
1564     {
1565       const struct message_item *message_item = to_message_item (item);
1566       char *s = msg_to_string (message_item_get_msg (message_item));
1567       r = xr_rendering_create_text (xr, s, cr);
1568       free (s);
1569     }
1570   else if (is_table_item (item))
1571     {
1572       r = xzalloc (sizeof *r);
1573       r->item = output_item_ref (item);
1574       r->xr = xr;
1575       xr_set_cairo (xr, cr);
1576       r->p = render_pager_create (xr->params, to_table_item (item));
1577     }
1578   else if (is_chart_item (item))
1579     {
1580       r = xzalloc (sizeof *r);
1581       r->item = output_item_ref (item);
1582     }
1583   else if (is_group_open_item (item))
1584     r = xr_rendering_create_text (xr, to_group_open_item (item)->command_name,
1585                                   cr);
1586
1587   return r;
1588 }
1589
1590 void
1591 xr_rendering_destroy (struct xr_rendering *r)
1592 {
1593   if (r)
1594     {
1595       output_item_unref (r->item);
1596       render_pager_destroy (r->p);
1597       free (r);
1598     }
1599 }
1600
1601 void
1602 xr_rendering_measure (struct xr_rendering *r, int *w, int *h)
1603 {
1604   if (is_table_item (r->item))
1605     {
1606       *w = render_pager_get_size (r->p, H) / XR_POINT;
1607       *h = render_pager_get_size (r->p, V) / XR_POINT;
1608     }
1609   else
1610     {
1611       *w = CHART_WIDTH;
1612       *h = CHART_HEIGHT;
1613     }
1614 }
1615
1616 static void xr_draw_chart (const struct chart_item *, cairo_t *,
1617                     double x, double y, double width, double height);
1618
1619 /* Draws onto CR */
1620 void
1621 xr_rendering_draw (struct xr_rendering *r, cairo_t *cr,
1622                    int x0, int y0, int x1, int y1)
1623 {
1624   if (is_table_item (r->item))
1625     {
1626       struct xr_driver *xr = r->xr;
1627
1628       xr_set_cairo (xr, cr);
1629
1630       render_pager_draw_region (r->p, x0 * XR_POINT, y0 * XR_POINT,
1631                                 (x1 - x0) * XR_POINT, (y1 - y0) * XR_POINT);
1632     }
1633   else
1634     xr_draw_chart (to_chart_item (r->item), cr,
1635                    0, 0, CHART_WIDTH, CHART_HEIGHT);
1636 }
1637
1638 static void
1639 xr_draw_chart (const struct chart_item *chart_item, cairo_t *cr,
1640                double x, double y, double width, double height)
1641 {
1642   struct xrchart_geometry geom;
1643
1644   cairo_save (cr);
1645   cairo_translate (cr, x, y + height);
1646   cairo_scale (cr, 1.0, -1.0);
1647   xrchart_geometry_init (cr, &geom, width, height);
1648   if (is_boxplot (chart_item))
1649     xrchart_draw_boxplot (chart_item, cr, &geom);
1650   else if (is_histogram_chart (chart_item))
1651     xrchart_draw_histogram (chart_item, cr, &geom);
1652   else if (is_np_plot_chart (chart_item))
1653     xrchart_draw_np_plot (chart_item, cr, &geom);
1654   else if (is_piechart (chart_item))
1655     xrchart_draw_piechart (chart_item, cr, &geom);
1656   else if (is_barchart (chart_item))
1657     xrchart_draw_barchart (chart_item, cr, &geom);
1658   else if (is_roc_chart (chart_item))
1659     xrchart_draw_roc (chart_item, cr, &geom);
1660   else if (is_scree (chart_item))
1661     xrchart_draw_scree (chart_item, cr, &geom);
1662   else if (is_spreadlevel_plot_chart (chart_item))
1663     xrchart_draw_spreadlevel (chart_item, cr, &geom);
1664   else if (is_scatterplot_chart (chart_item))
1665     xrchart_draw_scatterplot (chart_item, cr, &geom);
1666   else
1667     NOT_REACHED ();
1668   xrchart_geometry_free (cr, &geom);
1669
1670   cairo_restore (cr);
1671 }
1672
1673 char *
1674 xr_draw_png_chart (const struct chart_item *item,
1675                    const char *file_name_template, int number,
1676                    const struct xr_color *fg,
1677                    const struct xr_color *bg
1678                    )
1679 {
1680   const int width = 640;
1681   const int length = 480;
1682
1683   cairo_surface_t *surface;
1684   cairo_status_t status;
1685   const char *number_pos;
1686   char *file_name;
1687   cairo_t *cr;
1688
1689   number_pos = strchr (file_name_template, '#');
1690   if (number_pos != NULL)
1691     file_name = xasprintf ("%.*s%d%s", (int) (number_pos - file_name_template),
1692                            file_name_template, number, number_pos + 1);
1693   else
1694     file_name = xstrdup (file_name_template);
1695
1696   surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, length);
1697   cr = cairo_create (surface);
1698
1699   cairo_set_source_rgb (cr, bg->red, bg->green, bg->blue);
1700   cairo_paint (cr);
1701
1702   cairo_set_source_rgb (cr, fg->red, fg->green, fg->blue);
1703
1704   xr_draw_chart (item, cr, 0.0, 0.0, width, length);
1705
1706   status = cairo_surface_write_to_png (surface, file_name);
1707   if (status != CAIRO_STATUS_SUCCESS)
1708     msg (ME, _("error writing output file `%s': %s"),
1709            file_name, cairo_status_to_string (status));
1710
1711   cairo_destroy (cr);
1712   cairo_surface_destroy (surface);
1713
1714   return file_name;
1715 }
1716 \f
1717 struct xr_table_state
1718   {
1719     struct xr_render_fsm fsm;
1720     struct render_pager *p;
1721   };
1722
1723 static bool
1724 xr_table_render (struct xr_render_fsm *fsm, struct xr_driver *xr)
1725 {
1726   struct xr_table_state *ts = UP_CAST (fsm, struct xr_table_state, fsm);
1727
1728   while (render_pager_has_next (ts->p))
1729     {
1730       int used;
1731
1732       used = render_pager_draw_next (ts->p, xr->length - xr->y);
1733       if (!used)
1734         {
1735           assert (xr->y > 0);
1736           return true;
1737         }
1738       else
1739         xr->y += used;
1740     }
1741   return false;
1742 }
1743
1744 static void
1745 xr_table_destroy (struct xr_render_fsm *fsm)
1746 {
1747   struct xr_table_state *ts = UP_CAST (fsm, struct xr_table_state, fsm);
1748
1749   render_pager_destroy (ts->p);
1750   free (ts);
1751 }
1752
1753 static struct xr_render_fsm *
1754 xr_render_table (struct xr_driver *xr, struct table_item *table_item)
1755 {
1756   struct xr_table_state *ts;
1757
1758   ts = xmalloc (sizeof *ts);
1759   ts->fsm.render = xr_table_render;
1760   ts->fsm.destroy = xr_table_destroy;
1761
1762   if (xr->y > 0)
1763     xr->y += xr->char_height;
1764
1765   ts->p = render_pager_create (xr->params, table_item);
1766   table_item_unref (table_item);
1767
1768   return &ts->fsm;
1769 }
1770 \f
1771 struct xr_chart_state
1772   {
1773     struct xr_render_fsm fsm;
1774     struct chart_item *chart_item;
1775   };
1776
1777 static bool
1778 xr_chart_render (struct xr_render_fsm *fsm, struct xr_driver *xr)
1779 {
1780   struct xr_chart_state *cs = UP_CAST (fsm, struct xr_chart_state, fsm);
1781
1782   const int chart_height = 0.8 * (xr->length < xr->width ? xr->length : xr->width);
1783
1784   if (xr->y > xr->length - chart_height)
1785     return true;
1786
1787   if (xr->cairo != NULL)
1788     {
1789       xr_draw_chart (cs->chart_item, xr->cairo,
1790                      0.0,
1791                      xr_to_pt (xr->y),
1792                      xr_to_pt (xr->width),
1793                      xr_to_pt (chart_height));
1794     }
1795   xr->y += chart_height;
1796
1797   return false;
1798 }
1799
1800 static void
1801 xr_chart_destroy (struct xr_render_fsm *fsm)
1802 {
1803   struct xr_chart_state *cs = UP_CAST (fsm, struct xr_chart_state, fsm);
1804
1805   chart_item_unref (cs->chart_item);
1806   free (cs);
1807 }
1808
1809 static struct xr_render_fsm *
1810 xr_render_chart (const struct chart_item *chart_item)
1811 {
1812   struct xr_chart_state *cs;
1813
1814   cs = xmalloc (sizeof *cs);
1815   cs->fsm.render = xr_chart_render;
1816   cs->fsm.destroy = xr_chart_destroy;
1817   cs->chart_item = chart_item_ref (chart_item);
1818
1819   return &cs->fsm;
1820 }
1821 \f
1822 static bool
1823 xr_eject_render (struct xr_render_fsm *fsm UNUSED, struct xr_driver *xr)
1824 {
1825   return xr->y > 0;
1826 }
1827
1828 static void
1829 xr_eject_destroy (struct xr_render_fsm *fsm UNUSED)
1830 {
1831   /* Nothing to do. */
1832 }
1833
1834 static struct xr_render_fsm *
1835 xr_render_eject (void)
1836 {
1837   static struct xr_render_fsm eject_renderer =
1838     {
1839       xr_eject_render,
1840       xr_eject_destroy
1841     };
1842
1843   return &eject_renderer;
1844 }
1845 \f
1846 static struct xr_render_fsm *
1847 xr_render_text (struct xr_driver *xr, const struct text_item *text_item)
1848 {
1849   enum text_item_type type = text_item_get_type (text_item);
1850   const char *text = text_item_get_text (text_item);
1851
1852   switch (type)
1853     {
1854     case TEXT_ITEM_PAGE_TITLE:
1855       string_map_replace (&xr->heading_vars, "PageTitle", text);
1856       break;
1857
1858     case TEXT_ITEM_BLANK_LINE:
1859       if (xr->y > 0)
1860         xr->y += xr->char_height;
1861       break;
1862
1863     case TEXT_ITEM_EJECT_PAGE:
1864       if (xr->y > 0)
1865         return xr_render_eject ();
1866       break;
1867
1868     default:
1869       return xr_render_table (
1870         xr, text_item_to_table_item (text_item_ref (text_item)));
1871     }
1872
1873   return NULL;
1874 }
1875
1876 static struct xr_render_fsm *
1877 xr_render_message (struct xr_driver *xr,
1878                    const struct message_item *message_item)
1879 {
1880   char *s = msg_to_string (message_item_get_msg (message_item));
1881   struct text_item *item = text_item_create (TEXT_ITEM_PARAGRAPH, s);
1882   free (s);
1883   return xr_render_table (xr, text_item_to_table_item (item));
1884 }
1885
1886 static struct xr_render_fsm *
1887 xr_render_output_item (struct xr_driver *xr,
1888                        const struct output_item *output_item)
1889 {
1890   if (is_table_item (output_item))
1891     return xr_render_table (xr, table_item_ref (to_table_item (output_item)));
1892   else if (is_chart_item (output_item))
1893     return xr_render_chart (to_chart_item (output_item));
1894   else if (is_text_item (output_item))
1895     return xr_render_text (xr, to_text_item (output_item));
1896   else if (is_message_item (output_item))
1897     return xr_render_message (xr, to_message_item (output_item));
1898   else
1899     return NULL;
1900 }