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