22e060cf936d33bd915a235e5a563be139312f8d
[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 (render_page_create (xr->params,
569                                                   table_item_get_table (item)));
570 }
571
572 static void
573 xr_submit (struct output_driver *driver, const struct output_item *output_item)
574 {
575   struct xr_driver *xr = xr_driver_cast (driver);
576
577   output_driver_track_current_command (output_item, &xr->command_name);
578
579   xr_driver_output_item (xr, output_item);
580   while (xr_driver_need_new_page (xr))
581     {
582       cairo_restore (xr->cairo);
583       cairo_show_page (xr->cairo);
584       cairo_save (xr->cairo);
585       xr_driver_next_page (xr, xr->cairo);
586     }
587 }
588 \f
589 /* Functions for rendering a series of output items to a series of Cairo
590    contexts, with pagination.
591
592    Used by PSPPIRE for printing, and by the basic Cairo output driver above as
593    its underlying implementation.
594
595    See the big comment in cairo.h for intended usage. */
596
597 /* Gives new page CAIRO to XR for output.  CAIRO may be null to skip actually
598    rendering the page (which might be useful to find out how many pages an
599    output document has without actually rendering it). */
600 void
601 xr_driver_next_page (struct xr_driver *xr, cairo_t *cairo)
602 {
603   if (cairo != NULL)
604     {
605       cairo_save (cairo);
606       cairo_set_source_rgb (cairo, xr->bg.red, xr->bg.green, xr->bg.blue);
607       cairo_rectangle (cairo, 0, 0, xr->width, xr->length);
608       cairo_fill (cairo);
609       cairo_restore (cairo);
610
611       cairo_translate (cairo,
612                        xr_to_pt (xr->left_margin),
613                        xr_to_pt (xr->top_margin));
614     }
615
616   xr->page_number++;
617   xr->cairo = cairo;
618   xr->x = xr->y = 0;
619   xr_driver_run_fsm (xr);
620 }
621
622 /* Start rendering OUTPUT_ITEM to XR.  Only valid if XR is not in the middle of
623    rendering a previous output item, that is, only if xr_driver_need_new_page()
624    returns false. */
625 void
626 xr_driver_output_item (struct xr_driver *xr,
627                        const struct output_item *output_item)
628 {
629   assert (xr->fsm == NULL);
630   xr->fsm = xr_render_output_item (xr, output_item);
631   xr_driver_run_fsm (xr);
632 }
633
634 /* Returns true if XR is in the middle of rendering an output item and needs a
635    new page to be appended using xr_driver_next_page() to make progress,
636    otherwise false. */
637 bool
638 xr_driver_need_new_page (const struct xr_driver *xr)
639 {
640   return xr->fsm != NULL;
641 }
642
643 /* Returns true if the current page doesn't have any content yet. */
644 bool
645 xr_driver_is_page_blank (const struct xr_driver *xr)
646 {
647   return xr->y == 0;
648 }
649
650 static void
651 xr_driver_destroy_fsm (struct xr_driver *xr)
652 {
653   if (xr->fsm != NULL)
654     {
655       xr->fsm->destroy (xr->fsm);
656       xr->fsm = NULL;
657     }
658 }
659
660 static void
661 xr_driver_run_fsm (struct xr_driver *xr)
662 {
663   if (xr->fsm != NULL && !xr->fsm->render (xr->fsm, xr))
664     xr_driver_destroy_fsm (xr);
665 }
666 \f
667 static void
668 xr_layout_cell (struct xr_driver *, const struct table_cell *,
669                 int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
670                 int *width, int *height, int *brk);
671
672 static void
673 dump_line (struct xr_driver *xr, int x0, int y0, int x1, int y1)
674 {
675   cairo_new_path (xr->cairo);
676   cairo_move_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y));
677   cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y1 + xr->y));
678   cairo_stroke (xr->cairo);
679 }
680
681 static void UNUSED
682 dump_rectangle (struct xr_driver *xr, int x0, int y0, int x1, int y1)
683 {
684   cairo_new_path (xr->cairo);
685   cairo_move_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y));
686   cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y0 + xr->y));
687   cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y1 + xr->y));
688   cairo_line_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y1 + xr->y));
689   cairo_close_path (xr->cairo);
690   cairo_stroke (xr->cairo);
691 }
692
693 /* Draws a horizontal line X0...X2 at Y if LEFT says so,
694    shortening it to X0...X1 if SHORTEN is true.
695    Draws a horizontal line X1...X3 at Y if RIGHT says so,
696    shortening it to X2...X3 if SHORTEN is true. */
697 static void
698 horz_line (struct xr_driver *xr, int x0, int x1, int x2, int x3, int y,
699            enum render_line_style left, enum render_line_style right,
700            bool shorten)
701 {
702   if (left != RENDER_LINE_NONE && right != RENDER_LINE_NONE && !shorten)
703     dump_line (xr, x0, y, x3, y);
704   else
705     {
706       if (left != RENDER_LINE_NONE)
707         dump_line (xr, x0, y, shorten ? x1 : x2, y);
708       if (right != RENDER_LINE_NONE)
709         dump_line (xr, shorten ? x2 : x1, y, x3, y);
710     }
711 }
712
713 /* Draws a vertical line Y0...Y2 at X if TOP says so,
714    shortening it to Y0...Y1 if SHORTEN is true.
715    Draws a vertical line Y1...Y3 at X if BOTTOM says so,
716    shortening it to Y2...Y3 if SHORTEN is true. */
717 static void
718 vert_line (struct xr_driver *xr, int y0, int y1, int y2, int y3, int x,
719            enum render_line_style top, enum render_line_style bottom,
720            bool shorten)
721 {
722   if (top != RENDER_LINE_NONE && bottom != RENDER_LINE_NONE && !shorten)
723     dump_line (xr, x, y0, x, y3);
724   else
725     {
726       if (top != RENDER_LINE_NONE)
727         dump_line (xr, x, y0, x, shorten ? y1 : y2);
728       if (bottom != RENDER_LINE_NONE)
729         dump_line (xr, x, shorten ? y2 : y1, x, y3);
730     }
731 }
732
733 static void
734 xr_draw_line (void *xr_, int bb[TABLE_N_AXES][2],
735               enum render_line_style styles[TABLE_N_AXES][2])
736 {
737   const int x0 = bb[H][0];
738   const int y0 = bb[V][0];
739   const int x3 = bb[H][1];
740   const int y3 = bb[V][1];
741   const int top = styles[H][0];
742   const int left = styles[V][0];
743   const int bottom = styles[H][1];
744   const int right = styles[V][1];
745
746   /* The algorithm here is somewhat subtle, to allow it to handle
747      all the kinds of intersections that we need.
748
749      Three additional ordinates are assigned along the x axis.  The
750      first is xc, midway between x0 and x3.  The others are x1 and
751      x2; for a single vertical line these are equal to xc, and for
752      a double vertical line they are the ordinates of the left and
753      right half of the double line.
754
755      yc, y1, and y2 are assigned similarly along the y axis.
756
757      The following diagram shows the coordinate system and output
758      for double top and bottom lines, single left line, and no
759      right line:
760
761                  x0       x1 xc  x2      x3
762                y0 ________________________
763                   |        #     #       |
764                   |        #     #       |
765                   |        #     #       |
766                   |        #     #       |
767                   |        #     #       |
768      y1 = y2 = yc |#########     #       |
769                   |        #     #       |
770                   |        #     #       |
771                   |        #     #       |
772                   |        #     #       |
773                y3 |________#_____#_______|
774   */
775   struct xr_driver *xr = xr_;
776
777   /* Offset from center of each line in a pair of double lines. */
778   int double_line_ofs = (xr->line_space + xr->line_width) / 2;
779
780   /* Are the lines along each axis single or double?
781      (It doesn't make sense to have different kinds of line on the
782      same axis, so we don't try to gracefully handle that case.) */
783   bool double_vert = top == RENDER_LINE_DOUBLE || bottom == RENDER_LINE_DOUBLE;
784   bool double_horz = left == RENDER_LINE_DOUBLE || right == RENDER_LINE_DOUBLE;
785
786   /* When horizontal lines are doubled,
787      the left-side line along y1 normally runs from x0 to x2,
788      and the right-side line along y1 from x3 to x1.
789      If the top-side line is also doubled, we shorten the y1 lines,
790      so that the left-side line runs only to x1,
791      and the right-side line only to x2.
792      Otherwise, the horizontal line at y = y1 below would cut off
793      the intersection, which looks ugly:
794                x0       x1     x2      x3
795              y0 ________________________
796                 |        #     #       |
797                 |        #     #       |
798                 |        #     #       |
799                 |        #     #       |
800              y1 |#########     ########|
801                 |                      |
802                 |                      |
803              y2 |######################|
804                 |                      |
805                 |                      |
806              y3 |______________________|
807      It is more of a judgment call when the horizontal line is
808      single.  We actually choose to cut off the line anyhow, as
809      shown in the first diagram above.
810   */
811   bool shorten_y1_lines = top == RENDER_LINE_DOUBLE;
812   bool shorten_y2_lines = bottom == RENDER_LINE_DOUBLE;
813   bool shorten_yc_line = shorten_y1_lines && shorten_y2_lines;
814   int horz_line_ofs = double_vert ? double_line_ofs : 0;
815   int xc = (x0 + x3) / 2;
816   int x1 = xc - horz_line_ofs;
817   int x2 = xc + horz_line_ofs;
818
819   bool shorten_x1_lines = left == RENDER_LINE_DOUBLE;
820   bool shorten_x2_lines = right == RENDER_LINE_DOUBLE;
821   bool shorten_xc_line = shorten_x1_lines && shorten_x2_lines;
822   int vert_line_ofs = double_horz ? double_line_ofs : 0;
823   int yc = (y0 + y3) / 2;
824   int y1 = yc - vert_line_ofs;
825   int y2 = yc + vert_line_ofs;
826
827   if (!double_horz)
828     horz_line (xr, x0, x1, x2, x3, yc, left, right, shorten_yc_line);
829   else
830     {
831       horz_line (xr, x0, x1, x2, x3, y1, left, right, shorten_y1_lines);
832       horz_line (xr, x0, x1, x2, x3, y2, left, right, shorten_y2_lines);
833     }
834
835   if (!double_vert)
836     vert_line (xr, y0, y1, y2, y3, xc, top, bottom, shorten_xc_line);
837   else
838     {
839       vert_line (xr, y0, y1, y2, y3, x1, top, bottom, shorten_x1_lines);
840       vert_line (xr, y0, y1, y2, y3, x2, top, bottom, shorten_x2_lines);
841     }
842 }
843
844 static void
845 xr_measure_cell_width (void *xr_, const struct table_cell *cell,
846                        int *min_width, int *max_width)
847 {
848   struct xr_driver *xr = xr_;
849   int bb[TABLE_N_AXES][2];
850   int clip[TABLE_N_AXES][2];
851   int h;
852
853   bb[H][0] = 0;
854   bb[H][1] = INT_MAX;
855   bb[V][0] = 0;
856   bb[V][1] = INT_MAX;
857   clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
858   xr_layout_cell (xr, cell, bb, clip, max_width, &h, NULL);
859
860   bb[H][1] = 1;
861   xr_layout_cell (xr, cell, bb, clip, min_width, &h, NULL);
862 }
863
864 static int
865 xr_measure_cell_height (void *xr_, const struct table_cell *cell, int width)
866 {
867   struct xr_driver *xr = xr_;
868   int bb[TABLE_N_AXES][2];
869   int clip[TABLE_N_AXES][2];
870   int w, h;
871
872   bb[H][0] = 0;
873   bb[H][1] = width;
874   bb[V][0] = 0;
875   bb[V][1] = INT_MAX;
876   clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
877   xr_layout_cell (xr, cell, bb, clip, &w, &h, NULL);
878   return h;
879 }
880
881 static void
882 xr_draw_cell (void *xr_, const struct table_cell *cell,
883               int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2])
884 {
885   struct xr_driver *xr = xr_;
886   int w, h, brk;
887
888   xr_layout_cell (xr, cell, bb, clip, &w, &h, &brk);
889 }
890
891 static int
892 xr_adjust_break (void *xr_, const struct table_cell *cell,
893                  int width, int height)
894 {
895   struct xr_driver *xr = xr_;
896   int bb[TABLE_N_AXES][2];
897   int clip[TABLE_N_AXES][2];
898   int w, h, brk;
899
900   if (xr_measure_cell_height (xr_, cell, width) < height)
901     return -1;
902
903   bb[H][0] = 0;
904   bb[H][1] = width;
905   bb[V][0] = 0;
906   bb[V][1] = height;
907   clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
908   xr_layout_cell (xr, cell, bb, clip, &w, &h, &brk);
909   return brk;
910 }
911 \f
912 static void
913 xr_clip (struct xr_driver *xr, int clip[TABLE_N_AXES][2])
914 {
915   if (clip[H][1] != INT_MAX || clip[V][1] != INT_MAX)
916     {
917       double x0 = xr_to_pt (clip[H][0] + xr->x);
918       double y0 = xr_to_pt (clip[V][0] + xr->y);
919       double x1 = xr_to_pt (clip[H][1] + xr->x);
920       double y1 = xr_to_pt (clip[V][1] + xr->y);
921
922       cairo_rectangle (xr->cairo, x0, y0, x1 - x0, y1 - y0);
923       cairo_clip (xr->cairo);
924     }
925 }
926
927 static int
928 xr_layout_cell_text (struct xr_driver *xr,
929                      const struct cell_contents *contents,
930                      int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
931                      int y, int *widthp, int *brk)
932 {
933   unsigned int options = contents->options;
934   struct xr_font *font;
935   int w, h;
936
937   font = (options & TAB_FIX ? &xr->fonts[XR_FONT_FIXED]
938           : options & TAB_EMPH ? &xr->fonts[XR_FONT_EMPHASIS]
939           : &xr->fonts[XR_FONT_PROPORTIONAL]);
940
941   pango_layout_set_text (font->layout, contents->text, -1);
942
943   pango_layout_set_alignment (
944     font->layout,
945     ((options & TAB_ALIGNMENT) == TAB_RIGHT ? PANGO_ALIGN_RIGHT
946      : (options & TAB_ALIGNMENT) == TAB_LEFT ? PANGO_ALIGN_LEFT
947      : PANGO_ALIGN_CENTER));
948   pango_layout_set_width (
949     font->layout,
950     bb[H][1] == INT_MAX ? -1 : xr_to_pango (bb[H][1] - bb[H][0]));
951   pango_layout_set_wrap (font->layout, PANGO_WRAP_WORD);
952
953   if (clip[H][0] != clip[H][1])
954     {
955       cairo_save (xr->cairo);
956       xr_clip (xr, clip);
957       cairo_translate (xr->cairo,
958                        xr_to_pt (bb[H][0] + xr->x),
959                        xr_to_pt (y + xr->y));
960       pango_cairo_show_layout (xr->cairo, font->layout);
961
962       /* If enabled, this draws a blue rectangle around the extents of each
963          line of text, which can be rather useful for debugging layout
964          issues. */
965       if (0)
966         {
967           PangoLayoutIter *iter;
968           iter = pango_layout_get_iter (font->layout);
969           do
970             {
971               PangoRectangle extents;
972
973               pango_layout_iter_get_line_extents (iter, &extents, NULL);
974               cairo_save (xr->cairo);
975               cairo_set_source_rgb (xr->cairo, 1, 0, 0);
976               dump_rectangle (xr,
977                               pango_to_xr (extents.x) - xr->x,
978                               pango_to_xr (extents.y) - xr->y,
979                               pango_to_xr (extents.x + extents.width) - xr->x,
980                               pango_to_xr (extents.y + extents.height) - xr->y);
981               cairo_restore (xr->cairo);
982             }
983           while (pango_layout_iter_next_line (iter));
984           pango_layout_iter_free (iter);
985         }
986
987       cairo_restore (xr->cairo);
988     }
989
990   pango_layout_get_size (font->layout, &w, &h);
991   w = pango_to_xr (w);
992   h = pango_to_xr (h);
993   if (w > *widthp)
994     *widthp = w;
995   if (y + h >= bb[V][1])
996     {
997       PangoLayoutIter *iter;
998       int best UNUSED = 0;
999
1000       /* Choose a breakpoint between lines instead of in the middle of one. */
1001       iter = pango_layout_get_iter (font->layout);
1002       do
1003         {
1004           PangoRectangle extents;
1005           int y0, y1;
1006           int bottom;
1007
1008           pango_layout_iter_get_line_extents (iter, NULL, &extents);
1009           pango_layout_iter_get_line_yrange (iter, &y0, &y1);
1010           extents.x = pango_to_xr (extents.x);
1011           extents.y = pango_to_xr (y0);
1012           extents.width = pango_to_xr (extents.width);
1013           extents.height = pango_to_xr (y1 - y0);
1014           bottom = y + extents.y + extents.height;
1015           if (bottom < bb[V][1])
1016             {
1017               if (brk && clip[H][0] != clip[H][1])
1018                 best = bottom;
1019               *brk = bottom;
1020             }
1021           else
1022             break;
1023         }
1024       while (pango_layout_iter_next_line (iter));
1025
1026       /* If enabled, draws a green line across the chosen breakpoint, which can
1027          be useful for debugging issues with breaking.  */
1028       if (0)
1029         {
1030           if (best && !xr->nest)
1031             {
1032               cairo_save (xr->cairo);
1033               cairo_set_source_rgb (xr->cairo, 0, 1, 0);
1034               dump_line (xr, -xr->left_margin, best, xr->width + xr->right_margin, best);
1035               cairo_restore (xr->cairo);
1036             }
1037         }
1038     }
1039   return y + h;
1040 }
1041
1042 static int
1043 xr_layout_cell_subtable (struct xr_driver *xr,
1044                          const struct cell_contents *contents,
1045                          int bb[TABLE_N_AXES][2],
1046                          int clip[TABLE_N_AXES][2], int *widthp, int *brk)
1047 {
1048   const struct table *table = contents->table;
1049   int single_width, double_width;
1050   struct render_params params;
1051   struct render_pager *p;
1052   int r[TABLE_N_AXES][2];
1053   int width, height;
1054   int i;
1055
1056   params.draw_line = xr_draw_line;
1057   params.measure_cell_width = xr_measure_cell_width;
1058   params.measure_cell_height = xr_measure_cell_height;
1059   params.adjust_break = NULL;
1060   params.draw_cell = xr_draw_cell;
1061   params.aux = xr;
1062   params.size[H] = bb[H][1] - bb[H][0];
1063   params.size[V] = bb[V][1] - bb[V][0];
1064   params.font_size[H] = xr->char_width;
1065   params.font_size[V] = xr->char_height;
1066
1067   single_width = 2 * xr->line_gutter + xr->line_width;
1068   double_width = 2 * xr->line_gutter + xr->line_space + 2 * xr->line_width;
1069   for (i = 0; i < TABLE_N_AXES; i++)
1070     {
1071       params.line_widths[i][RENDER_LINE_NONE] = 0;
1072       params.line_widths[i][RENDER_LINE_SINGLE] = single_width;
1073       params.line_widths[i][RENDER_LINE_DOUBLE] = double_width;
1074     }
1075
1076   xr->nest++;
1077   p = render_pager_create (render_page_create (&params, table));
1078   width = render_pager_get_size (p, H);
1079   height = render_pager_get_size (p, V);
1080   if (bb[V][0] + height >= bb[V][1])
1081     *brk = bb[V][0] + render_pager_get_best_breakpoint (p, bb[V][1] - bb[V][0]);
1082
1083   /* r = intersect(bb, clip) - bb. */
1084   for (i = 0; i < TABLE_N_AXES; i++)
1085     {
1086       r[i][0] = MAX (bb[i][0], clip[i][0]) - bb[i][0];
1087       r[i][1] = MIN (bb[i][1], clip[i][1]) - bb[i][0];
1088     }
1089
1090   if (r[H][0] < r[H][1] && r[V][0] < r[V][1])
1091     {
1092       unsigned int alignment = contents->options & TAB_ALIGNMENT;
1093       int save_x = xr->x;
1094
1095       cairo_save (xr->cairo);
1096       xr_clip (xr, clip);
1097       xr->x += bb[H][0];
1098       if (alignment == TAB_RIGHT)
1099         xr->x += params.size[H] - width;
1100       else if (alignment == TAB_CENTER)
1101         xr->x += (params.size[H] - width) / 2;
1102       xr->y += bb[V][0];
1103       render_pager_draw_region (p, r[H][0], r[V][0],
1104                                 r[H][1] - r[H][0], r[V][1] - r[V][0]);
1105       xr->y -= bb[V][0];
1106       xr->x = save_x;
1107       cairo_restore (xr->cairo);
1108     }
1109   render_pager_destroy (p);
1110   xr->nest--;
1111
1112   if (width > *widthp)
1113     *widthp = width;
1114   return bb[V][0] + height;
1115 }
1116
1117 static void
1118 xr_layout_cell (struct xr_driver *xr, const struct table_cell *cell,
1119                 int bb_[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
1120                 int *width, int *height, int *brk)
1121 {
1122   int bb[TABLE_N_AXES][2];
1123   size_t i;
1124
1125   *width = 0;
1126   *height = 0;
1127   if (brk)
1128     *brk = 0;
1129
1130   memcpy (bb, bb_, sizeof bb);
1131
1132   /* If enabled, draws a blue rectangle around the cell extents, which can be
1133      useful for debugging layout. */
1134   if (0)
1135     {
1136       if (clip[H][0] != clip[H][1])
1137         {
1138           int offset = (xr->nest) * XR_POINT;
1139
1140           cairo_save (xr->cairo);
1141           cairo_set_source_rgb (xr->cairo, 0, 0, 1);
1142           dump_rectangle (xr,
1143                           bb[H][0] + offset, bb[V][0] + offset,
1144                           bb[H][1] - offset, bb[V][1] - offset);
1145           cairo_restore (xr->cairo);
1146         }
1147     }
1148
1149   for (i = 0; i < cell->n_contents && bb[V][0] < bb[V][1]; i++)
1150     {
1151       const struct cell_contents *contents = &cell->contents[i];
1152
1153       if (brk)
1154         *brk = bb[V][0];
1155       if (i > 0)
1156         {
1157           bb[V][0] += xr->char_height / 2;
1158           if (bb[V][0] >= bb[V][1])
1159             break;
1160           if (brk)
1161             *brk = bb[V][0];
1162         }
1163
1164       if (contents->text)
1165         bb[V][0] = xr_layout_cell_text (xr, contents, bb, clip,
1166                                         bb[V][0], width, brk);
1167       else
1168         bb[V][0] = xr_layout_cell_subtable (xr, contents, bb, clip, width, brk);
1169     }
1170   *height = bb[V][0] - bb_[V][0];
1171 }
1172
1173 static void
1174 xr_draw_title (struct xr_driver *xr, const char *title,
1175                int title_width, int title_height)
1176 {
1177   struct cell_contents contents;
1178   struct table_cell cell;
1179   int bb[TABLE_N_AXES][2];
1180
1181   xr_init_caption_cell (title, &cell, &contents);
1182   bb[H][0] = 0;
1183   bb[H][1] = title_width;
1184   bb[V][0] = 0;
1185   bb[V][1] = title_height;
1186   xr_draw_cell (xr, &cell, bb, bb);
1187 }
1188 \f
1189 struct output_driver_factory pdf_driver_factory =
1190   { "pdf", "pspp.pdf", xr_pdf_create };
1191 struct output_driver_factory ps_driver_factory =
1192   { "ps", "pspp.ps", xr_ps_create };
1193 struct output_driver_factory svg_driver_factory =
1194   { "svg", "pspp.svg", xr_svg_create };
1195
1196 static const struct output_driver_class cairo_driver_class =
1197 {
1198   "cairo",
1199   xr_destroy,
1200   xr_submit,
1201   xr_flush,
1202 };
1203 \f
1204 /* GUI rendering helpers. */
1205
1206 struct xr_rendering
1207   {
1208     struct output_item *item;
1209
1210     /* Table items. */
1211     struct render_pager *p;
1212     struct xr_driver *xr;
1213     int title_width;
1214     int title_height;
1215   };
1216
1217 #define CHART_WIDTH 500
1218 #define CHART_HEIGHT 375
1219
1220
1221
1222 struct xr_driver *
1223 xr_driver_create (cairo_t *cairo, struct string_map *options)
1224 {
1225   struct xr_driver *xr = xr_allocate ("cairo", 0, options);
1226   if (!xr_set_cairo (xr, cairo))
1227     {
1228       output_driver_destroy (&xr->driver);
1229       return NULL;
1230     }
1231   return xr;
1232 }
1233
1234 /* Destroy XR, which should have been created with xr_driver_create().  Any
1235    cairo_t added to XR is not destroyed, because it is owned by the client. */
1236 void
1237 xr_driver_destroy (struct xr_driver *xr)
1238 {
1239   if (xr != NULL)
1240     {
1241       xr->cairo = NULL;
1242       output_driver_destroy (&xr->driver);
1243     }
1244 }
1245
1246 static struct xr_rendering *
1247 xr_rendering_create_text (struct xr_driver *xr, const char *text, cairo_t *cr)
1248 {
1249   struct table_item *table_item;
1250   struct xr_rendering *r;
1251
1252   table_item = table_item_create (table_from_string (TAB_LEFT, text), NULL);
1253   r = xr_rendering_create (xr, &table_item->output_item, cr);
1254   table_item_unref (table_item);
1255
1256   return r;
1257 }
1258
1259 void 
1260 xr_rendering_apply_options (struct xr_rendering *xr, struct string_map *o)
1261 {
1262   if (is_table_item (xr->item))
1263     apply_options (xr->xr, o);
1264 }
1265
1266 struct xr_rendering *
1267 xr_rendering_create (struct xr_driver *xr, const struct output_item *item,
1268                      cairo_t *cr)
1269 {
1270   struct xr_rendering *r = NULL;
1271
1272   if (is_text_item (item))
1273     r = xr_rendering_create_text (xr, text_item_get_text (to_text_item (item)),
1274                                   cr);
1275   else if (is_message_item (item))
1276     {
1277       const struct message_item *message_item = to_message_item (item);
1278       const struct msg *msg = message_item_get_msg (message_item);
1279       char *s = msg_to_string (msg, NULL);
1280       r = xr_rendering_create_text (xr, s, cr);
1281       free (s);
1282     }
1283   else if (is_table_item (item))
1284     {
1285       r = xzalloc (sizeof *r);
1286       r->item = output_item_ref (item);
1287       r->xr = xr;
1288       xr_set_cairo (xr, cr);
1289       r->p = xr_render_table_item (xr, to_table_item (item),
1290                                    &r->title_width, &r->title_height);
1291     }
1292   else if (is_chart_item (item))
1293     {
1294       r = xzalloc (sizeof *r);
1295       r->item = output_item_ref (item);
1296     }
1297
1298   return r;
1299 }
1300
1301 void
1302 xr_rendering_destroy (struct xr_rendering *r)
1303 {
1304   if (r)
1305     {
1306       output_item_unref (r->item);
1307       render_pager_destroy (r->p);
1308       free (r);
1309     }
1310 }
1311
1312 void
1313 xr_rendering_measure (struct xr_rendering *r, int *w, int *h)
1314 {
1315   if (is_table_item (r->item))
1316     {
1317       int w0 = render_pager_get_size (r->p, H);
1318       int w1 = r->title_width;
1319       *w = MAX (w0, w1) / XR_POINT;
1320       *h = (render_pager_get_size (r->p, V) + r->title_height) / XR_POINT;
1321     }
1322   else
1323     {
1324       *w = CHART_WIDTH;
1325       *h = CHART_HEIGHT;
1326     }
1327 }
1328
1329 static void xr_draw_chart (const struct chart_item *, cairo_t *,
1330                     double x, double y, double width, double height);
1331
1332 /* Draws onto CR at least the region of R that is enclosed in (X,Y)-(X+W,Y+H),
1333    and possibly some additional parts. */
1334 void
1335 xr_rendering_draw (struct xr_rendering *r, cairo_t *cr,
1336                    int x, int y, int w, int h)
1337 {
1338   if (is_table_item (r->item))
1339     {
1340       struct xr_driver *xr = r->xr;
1341
1342       xr_set_cairo (xr, cr);
1343
1344       if (r->title_height > 0)
1345         {
1346           xr->y = 0;
1347           xr_draw_title (xr, table_item_get_caption (to_table_item (r->item)),
1348                          r->title_width, r->title_height);
1349         }
1350
1351       xr->y = r->title_height;
1352       render_pager_draw_region (r->p,
1353                                 x * XR_POINT, (y * XR_POINT) - r->title_height,
1354                                 w * XR_POINT, h * XR_POINT);
1355     }
1356   else
1357     xr_draw_chart (to_chart_item (r->item), cr,
1358                    0, 0, CHART_WIDTH, CHART_HEIGHT);
1359 }
1360
1361 static void
1362 xr_draw_chart (const struct chart_item *chart_item, cairo_t *cr,
1363                double x, double y, double width, double height)
1364 {
1365   struct xrchart_geometry geom;
1366
1367   cairo_save (cr);
1368   cairo_translate (cr, x, y + height);
1369   cairo_scale (cr, 1.0, -1.0);
1370   xrchart_geometry_init (cr, &geom, width, height);
1371   if (is_boxplot (chart_item))
1372     xrchart_draw_boxplot (chart_item, cr, &geom);
1373   else if (is_histogram_chart (chart_item))
1374     xrchart_draw_histogram (chart_item, cr, &geom);
1375   else if (is_np_plot_chart (chart_item))
1376     xrchart_draw_np_plot (chart_item, cr, &geom);
1377   else if (is_piechart (chart_item))
1378     xrchart_draw_piechart (chart_item, cr, &geom);
1379   else if (is_roc_chart (chart_item))
1380     xrchart_draw_roc (chart_item, cr, &geom);
1381   else if (is_scree (chart_item))
1382     xrchart_draw_scree (chart_item, cr, &geom);
1383   else if (is_spreadlevel_plot_chart (chart_item))
1384     xrchart_draw_spreadlevel (chart_item, cr, &geom);
1385   else
1386     NOT_REACHED ();
1387   xrchart_geometry_free (cr, &geom);
1388
1389   cairo_restore (cr);
1390 }
1391
1392 char *
1393 xr_draw_png_chart (const struct chart_item *item,
1394                    const char *file_name_template, int number,
1395                    const struct xr_color *fg,
1396                    const struct xr_color *bg
1397                    )
1398 {
1399   const int width = 640;
1400   const int length = 480;
1401
1402   cairo_surface_t *surface;
1403   cairo_status_t status;
1404   const char *number_pos;
1405   char *file_name;
1406   cairo_t *cr;
1407
1408   number_pos = strchr (file_name_template, '#');
1409   if (number_pos != NULL)
1410     file_name = xasprintf ("%.*s%d%s", (int) (number_pos - file_name_template),
1411                            file_name_template, number, number_pos + 1);
1412   else
1413     file_name = xstrdup (file_name_template);
1414
1415   surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, length);
1416   cr = cairo_create (surface);
1417
1418   cairo_set_source_rgb (cr, bg->red, bg->green, bg->blue);
1419   cairo_paint (cr);
1420
1421   cairo_set_source_rgb (cr, fg->red, fg->green, fg->blue);
1422
1423   xr_draw_chart (item, cr, 0.0, 0.0, width, length);
1424
1425   status = cairo_surface_write_to_png (surface, file_name);
1426   if (status != CAIRO_STATUS_SUCCESS)
1427     msg (ME, _("error writing output file `%s': %s"),
1428            file_name, cairo_status_to_string (status));
1429
1430   cairo_destroy (cr);
1431   cairo_surface_destroy (surface);
1432
1433   return file_name;
1434 }
1435 \f
1436 struct xr_table_state
1437   {
1438     struct xr_render_fsm fsm;
1439     struct table_item *table_item;
1440     struct render_pager *p;
1441     int caption_height;
1442   };
1443
1444 static bool
1445 xr_table_render (struct xr_render_fsm *fsm, struct xr_driver *xr)
1446 {
1447   struct xr_table_state *ts = UP_CAST (fsm, struct xr_table_state, fsm);
1448
1449   while (render_pager_has_next (ts->p))
1450     {
1451       int caption_height = ts->caption_height;
1452       int used;
1453
1454       xr->y += caption_height;
1455       used = render_pager_draw_next (ts->p, xr->length - xr->y);
1456       xr->y -= caption_height;
1457       if (!used)
1458         {
1459           assert (xr->y > 0);
1460           return true;
1461         }
1462       else
1463         {
1464           if (ts->caption_height)
1465             {
1466               if (xr->cairo)
1467                 xr_draw_title (xr, table_item_get_caption (ts->table_item),
1468                                xr->width, ts->caption_height);
1469               ts->caption_height = 0;
1470             }
1471           xr->y += caption_height + used;
1472         }
1473     }
1474   return false;
1475 }
1476
1477 static void
1478 xr_table_destroy (struct xr_render_fsm *fsm)
1479 {
1480   struct xr_table_state *ts = UP_CAST (fsm, struct xr_table_state, fsm);
1481
1482   table_item_unref (ts->table_item);
1483   render_pager_destroy (ts->p);
1484   free (ts);
1485 }
1486
1487 static struct xr_render_fsm *
1488 xr_render_table (struct xr_driver *xr, const struct table_item *table_item)
1489 {
1490   struct xr_table_state *ts;
1491   int caption_width;
1492
1493   ts = xmalloc (sizeof *ts);
1494   ts->fsm.render = xr_table_render;
1495   ts->fsm.destroy = xr_table_destroy;
1496   ts->table_item = table_item_ref (table_item);
1497
1498   if (xr->y > 0)
1499     xr->y += xr->char_height;
1500
1501   ts->p = xr_render_table_item (xr, table_item,
1502                                 &caption_width, &ts->caption_height);
1503   xr->params->size[V] = xr->length - ts->caption_height;
1504
1505   return &ts->fsm;
1506 }
1507 \f
1508 struct xr_chart_state
1509   {
1510     struct xr_render_fsm fsm;
1511     struct chart_item *chart_item;
1512   };
1513
1514 static bool
1515 xr_chart_render (struct xr_render_fsm *fsm, struct xr_driver *xr)
1516 {
1517   struct xr_chart_state *cs = UP_CAST (fsm, struct xr_chart_state, fsm);
1518
1519   if (xr->y > 0)
1520     return true;
1521
1522   if (xr->cairo != NULL)
1523     xr_draw_chart (cs->chart_item, xr->cairo, 0.0, 0.0,
1524                    xr_to_pt (xr->width), xr_to_pt (xr->length));
1525   xr->y = xr->length;
1526
1527   return false;
1528 }
1529
1530 static void
1531 xr_chart_destroy (struct xr_render_fsm *fsm)
1532 {
1533   struct xr_chart_state *cs = UP_CAST (fsm, struct xr_chart_state, fsm);
1534
1535   chart_item_unref (cs->chart_item);
1536   free (cs);
1537 }
1538
1539 static struct xr_render_fsm *
1540 xr_render_chart (const struct chart_item *chart_item)
1541 {
1542   struct xr_chart_state *cs;
1543
1544   cs = xmalloc (sizeof *cs);
1545   cs->fsm.render = xr_chart_render;
1546   cs->fsm.destroy = xr_chart_destroy;
1547   cs->chart_item = chart_item_ref (chart_item);
1548
1549   return &cs->fsm;
1550 }
1551 \f
1552 static bool
1553 xr_eject_render (struct xr_render_fsm *fsm UNUSED, struct xr_driver *xr)
1554 {
1555   return xr->y > 0;
1556 }
1557
1558 static void
1559 xr_eject_destroy (struct xr_render_fsm *fsm UNUSED)
1560 {
1561   /* Nothing to do. */
1562 }
1563
1564 static struct xr_render_fsm *
1565 xr_render_eject (void)
1566 {
1567   static struct xr_render_fsm eject_renderer =
1568     {
1569       xr_eject_render,
1570       xr_eject_destroy
1571     };
1572
1573   return &eject_renderer;
1574 }
1575 \f
1576 static struct xr_render_fsm *
1577 xr_create_text_renderer (struct xr_driver *xr, const char *text)
1578 {
1579   struct table_item *table_item;
1580   struct xr_render_fsm *fsm;
1581
1582   table_item = table_item_create (table_from_string (TAB_LEFT, text), NULL);
1583   fsm = xr_render_table (xr, table_item);
1584   table_item_unref (table_item);
1585
1586   return fsm;
1587 }
1588
1589 static struct xr_render_fsm *
1590 xr_render_text (struct xr_driver *xr, const struct text_item *text_item)
1591 {
1592   enum text_item_type type = text_item_get_type (text_item);
1593   const char *text = text_item_get_text (text_item);
1594
1595   switch (type)
1596     {
1597     case TEXT_ITEM_TITLE:
1598       free (xr->title);
1599       xr->title = xstrdup (text);
1600       break;
1601
1602     case TEXT_ITEM_SUBTITLE:
1603       free (xr->subtitle);
1604       xr->subtitle = xstrdup (text);
1605       break;
1606
1607     case TEXT_ITEM_COMMAND_CLOSE:
1608       break;
1609
1610     case TEXT_ITEM_BLANK_LINE:
1611       if (xr->y > 0)
1612         xr->y += xr->char_height;
1613       break;
1614
1615     case TEXT_ITEM_EJECT_PAGE:
1616       if (xr->y > 0)
1617         return xr_render_eject ();
1618       break;
1619
1620     default:
1621       return xr_create_text_renderer (xr, text);
1622     }
1623
1624   return NULL;
1625 }
1626
1627 static struct xr_render_fsm *
1628 xr_render_message (struct xr_driver *xr,
1629                    const struct message_item *message_item)
1630 {
1631   const struct msg *msg = message_item_get_msg (message_item);
1632   struct xr_render_fsm *fsm;
1633   char *s;
1634
1635   s = msg_to_string (msg, xr->command_name);
1636   fsm = xr_create_text_renderer (xr, s);
1637   free (s);
1638
1639   return fsm;
1640 }
1641
1642 static struct xr_render_fsm *
1643 xr_render_output_item (struct xr_driver *xr,
1644                        const struct output_item *output_item)
1645 {
1646   if (is_table_item (output_item))
1647     return xr_render_table (xr, to_table_item (output_item));
1648   else if (is_chart_item (output_item))
1649     return xr_render_chart (to_chart_item (output_item));
1650   else if (is_text_item (output_item))
1651     return xr_render_text (xr, to_text_item (output_item));
1652   else if (is_message_item (output_item))
1653     return xr_render_message (xr, to_message_item (output_item));
1654   else
1655     return NULL;
1656 }