063ae9366bf119697c97f9da780b85d68649c279
[pspp] / src / output / driver.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2007, 2009, 2010, 2011, 2012, 2014, 2019 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/driver.h"
20 #include "output/driver-provider.h"
21
22 #include <ctype.h>
23 #include <errno.h>
24 #include <limits.h>
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <time.h>
29
30 #include "data/file-handle-def.h"
31 #include "data/settings.h"
32 #include "libpspp/array.h"
33 #include "libpspp/assertion.h"
34 #include "libpspp/i18n.h"
35 #include "libpspp/message.h"
36 #include "libpspp/llx.h"
37 #include "libpspp/string-map.h"
38 #include "libpspp/string-set.h"
39 #include "libpspp/str.h"
40 #include "output/output-item.h"
41
42 #include "gl/error.h"
43 #include "gl/xalloc.h"
44 #include "gl/xmemdup0.h"
45 #include "gl/xvasprintf.h"
46
47 #include "gettext.h"
48 #define _(msgid) gettext (msgid)
49
50 struct output_engine
51   {
52     struct ll ll;                  /* Node for this engine. */
53     struct llx_list drivers;       /* Contains "struct output_driver"s. */
54     struct output_item *deferred_text; /* Output text being accumulated. */
55     char *command_name;            /* Name of command being processed. */
56     char *title, *subtitle;        /* Components of page title. */
57
58     /* Output grouping stack. */
59     struct output_item **groups;
60     size_t n_groups;
61     size_t allocated_groups;
62
63     struct string_map heading_vars;
64   };
65
66 static struct ll_list engine_stack = LL_INITIALIZER (engine_stack);
67
68 static const struct output_driver_factory *factories[];
69
70 static struct output_engine *
71 engine_stack_top (void)
72 {
73   struct ll *head = ll_head (&engine_stack);
74   if (ll_is_empty (&engine_stack))
75     return NULL;
76   return ll_data (head, struct output_engine, ll);
77 }
78
79 static void
80 put_strftime (const char *key, const char *format,
81               const struct tm *tm, struct string_map *vars)
82 {
83   if (!string_map_find (vars, key))
84     {
85       char value[128];
86       strftime (value, sizeof value, format, tm);
87       string_map_insert (vars, key, value);
88     }
89 }
90
91 void
92 output_engine_push (void)
93 {
94   struct output_engine *e = XZALLOC (struct output_engine);
95
96   llx_init (&e->drivers);
97
98   string_map_init (&e->heading_vars);
99
100   time_t t = time (NULL);
101   const struct tm *tm = localtime (&t);
102   put_strftime ("Date", "%x", tm, &e->heading_vars);
103   put_strftime ("Time", "%X", tm, &e->heading_vars);
104
105   ll_push_head (&engine_stack, &e->ll);
106 }
107
108 void
109 output_engine_pop (void)
110 {
111   struct ll *head = ll_pop_head (&engine_stack);
112   struct output_engine *e = ll_data (head, struct output_engine, ll);
113
114   struct output_driver *d;
115   llx_for_each_preremove (d, &e->drivers, &llx_malloc_mgr)
116     output_driver_destroy (d);
117   output_item_unref (e->deferred_text);
118   free (e->command_name);
119   free (e->title);
120   free (e->subtitle);
121   if (e->n_groups)
122     output_item_unref (e->groups[0]);
123   free (e->groups);
124   string_map_destroy (&e->heading_vars);
125   free (e);
126 }
127
128 void
129 output_get_supported_formats (struct string_set *formats)
130 {
131   const struct output_driver_factory **fp;
132
133   for (fp = factories; *fp != NULL; fp++)
134     string_set_insert (formats, (*fp)->extension);
135 }
136
137 static bool
138 output_driver_should_show (const struct output_driver *d,
139                            const struct output_item *item)
140 {
141   enum settings_output_type type = SETTINGS_OUTPUT_RESULT;
142   switch (item->type)
143     {
144     case OUTPUT_ITEM_MESSAGE:
145       type = (item->message->severity == MSG_S_NOTE
146               ? SETTINGS_OUTPUT_NOTE
147               : SETTINGS_OUTPUT_ERROR);
148       break;
149
150     case OUTPUT_ITEM_TEXT:
151       if (item->text.subtype == TEXT_ITEM_SYNTAX)
152         type = SETTINGS_OUTPUT_SYNTAX;
153       break;
154
155     case OUTPUT_ITEM_CHART:
156     case OUTPUT_ITEM_GROUP:
157     case OUTPUT_ITEM_IMAGE:
158     case OUTPUT_ITEM_PAGE_BREAK:
159     case OUTPUT_ITEM_TABLE:
160       break;
161     }
162
163   return (settings_get_output_routing (type) & d->device_type) != 0;
164 }
165
166 /* Adds to OUT the subset of IN that driver D should show, considering routing
167    and visibility of each item, and flattening groups for drivers that don't
168    handle them internally. */
169 static void
170 make_driver_output_subset (const struct output_item *in,
171                            const struct output_driver *d,
172                            struct output_item *out)
173 {
174   if (in->type == OUTPUT_ITEM_GROUP)
175     {
176       /* If we should include the group itself, then clone IN inside OUT, and
177          add any children to the clone instead to OUT directly. */
178       if (output_driver_should_show (d, in) && d->class->handles_groups)
179         {
180           struct output_item *group = group_item_clone_empty (in);
181           group_item_add_child (out, group);
182           out = group;
183         }
184
185       for (size_t i = 0; i < in->group.n_children; i++)
186         make_driver_output_subset (in->group.children[i], d, out);
187     }
188   else
189     {
190       if (output_driver_should_show (d, in)
191           && (in->show || d->class->handles_show))
192         group_item_add_child (out, output_item_ref (in));
193     }
194 }
195
196 static void
197 output_submit__ (struct output_engine *e, struct output_item *item)
198 {
199   if (e->n_groups > 0)
200     {
201       group_item_add_child (e->groups[e->n_groups - 1], item);
202       return;
203     }
204
205   struct llx *llx, *next;
206   llx_for_each_safe (llx, next, &e->drivers)
207     {
208       struct output_driver *d = llx_data (llx);
209
210       struct output_item *root = root_item_create ();
211       make_driver_output_subset (item, d, root);
212       for (size_t i = 0; i < root->group.n_children; i++)
213         d->class->submit (d, root->group.children[i]);
214       output_item_unref (root);
215     }
216
217   output_item_unref (item);
218 }
219
220 static void
221 flush_deferred_text (struct output_engine *e)
222 {
223   struct output_item *deferred_text = e->deferred_text;
224   if (deferred_text)
225     {
226       e->deferred_text = NULL;
227       output_submit__ (e, deferred_text);
228     }
229 }
230
231 static bool
232 defer_text (struct output_engine *e, struct output_item *item)
233 {
234   if (item->type != OUTPUT_ITEM_TEXT)
235     return false;
236
237   if (!e->deferred_text)
238     e->deferred_text = output_item_unshare (item);
239   else if (text_item_append (e->deferred_text, item))
240     output_item_unref (item);
241   else
242     {
243       flush_deferred_text (e);
244       e->deferred_text = output_item_unshare (item);
245     }
246   return true;
247 }
248
249 /* Submits ITEM to the configured output drivers, and transfers ownership to
250    the output subsystem. */
251 void
252 output_submit (struct output_item *item)
253 {
254   struct output_engine *e = engine_stack_top ();
255
256   if (e == NULL)
257     return;
258
259   if (item == NULL)
260     return;
261
262   if (defer_text (e, item))
263     return;
264   flush_deferred_text (e);
265
266   /* XXX heading_vars */
267
268   output_submit__ (e, item);
269 }
270
271 /* Returns the name of the command currently being parsed, or NULL if no
272    command is being parsed. */
273 const char *
274 output_get_command_name (void)
275 {
276   struct output_engine *e = engine_stack_top ();
277   if (e == NULL)
278     return NULL;
279
280   for (size_t i = e->n_groups; i-- > 0;)
281     if (e->groups[i]->command_name)
282       return e->groups[i]->command_name;
283
284   return NULL;
285 }
286
287 char *
288 output_get_uppercase_command_name (void)
289 {
290   const char *command_name = output_get_command_name ();
291   return command_name ? utf8_to_upper (command_name) : NULL;
292 }
293
294 size_t
295 output_open_group (struct output_item *item)
296 {
297   struct output_engine *e = engine_stack_top ();
298   if (e == NULL)
299     return 0;
300
301   if (e->n_groups >= e->allocated_groups)
302     e->groups = x2nrealloc (e->groups, &e->allocated_groups,
303                             sizeof *e->groups);
304   e->groups[e->n_groups++] = item;
305   if (e->n_groups > 1)
306     group_item_add_child (e->groups[e->n_groups - 2], item);
307
308   return e->n_groups - 1;
309 }
310
311 void
312 output_close_groups (size_t nesting_level)
313 {
314   struct output_engine *e = engine_stack_top ();
315   if (e == NULL)
316     return;
317
318   while (e->n_groups > nesting_level)
319     {
320       flush_deferred_text (e);
321
322       struct output_item *group = e->groups[--e->n_groups];
323       if (e->n_groups == 0)
324         output_submit__ (e, group);
325     }
326 }
327
328 /* Flushes output to screen devices, so that the user can see
329    output that doesn't fill up an entire page. */
330 void
331 output_flush (void)
332 {
333   struct output_engine *e = engine_stack_top ();
334
335   flush_deferred_text (e);
336
337   struct llx *llx;
338   llx_for_each (llx, &e->drivers)
339     {
340       struct output_driver *d = llx_data (llx);
341       if (d->device_type & SETTINGS_DEVICE_TERMINAL && d->class->flush != NULL)
342         d->class->flush (d);
343     }
344 }
345
346 static void
347 output_set_title__ (struct output_engine *e, char **dst, const char *src)
348 {
349   free (*dst);
350   *dst = xstrdup_if_nonnull (src);
351
352   char *page_title
353     = (e->title && e->subtitle ? xasprintf ("%s\n%s", e->title, e->subtitle)
354        : e->title ? xstrdup (e->title)
355        : e->subtitle ? xstrdup (e->subtitle)
356        : xzalloc (1));
357   output_item_submit (text_item_create_nocopy (TEXT_ITEM_PAGE_TITLE,
358                                                page_title, NULL));
359 }
360
361 void PRINTF_FORMAT (1, 2)
362 output_log (const char *format, ...)
363 {
364   va_list args;
365   va_start (args, format);
366   char *s = xvasprintf (format, args);
367   va_end (args);
368
369   output_submit (text_item_create_nocopy (TEXT_ITEM_LOG, s, NULL));
370 }
371
372 const char *
373 output_get_title (void)
374 {
375   return engine_stack_top ()->title;
376 }
377
378 void
379 output_set_title (const char *title)
380 {
381   struct output_engine *e = engine_stack_top ();
382
383   output_set_title__ (e, &e->title, title);
384 }
385
386 const char *
387 output_get_subtitle (void)
388 {
389   return engine_stack_top ()->subtitle;
390 }
391
392 void
393 output_set_subtitle (const char *subtitle)
394 {
395   struct output_engine *e = engine_stack_top ();
396
397   output_set_title__ (e, &e->subtitle, subtitle);
398 }
399
400 void
401 output_set_filename (const char *filename)
402 {
403   struct output_engine *e = engine_stack_top ();
404
405   string_map_replace (&e->heading_vars, "Filename", filename);
406 }
407 \f
408 void
409 output_driver_init (struct output_driver *driver,
410                     const struct output_driver_class *class,
411                     const char *name, enum settings_output_devices type)
412 {
413   driver->class = class;
414   driver->name = xstrdup (name);
415   driver->device_type = type;
416 }
417
418 void
419 output_driver_destroy (struct output_driver *driver)
420 {
421   if (driver != NULL)
422     {
423       char *name = driver->name;
424       if (output_driver_is_registered (driver))
425         output_driver_unregister (driver);
426       if (driver->class->destroy)
427         driver->class->destroy (driver);
428       free (name);
429     }
430 }
431
432 const char *
433 output_driver_get_name (const struct output_driver *driver)
434 {
435   return driver->name;
436 }
437 \f
438 static struct output_engine *
439 output_driver_get_engine (const struct output_driver *driver)
440 {
441   struct output_engine *e;
442
443   ll_for_each (e, struct output_engine, ll, &engine_stack)
444     {
445       if (llx_find (llx_head (&e->drivers), llx_null (&e->drivers), driver))
446         return e;
447     }
448
449   return NULL;
450 }
451
452 void
453 output_driver_register (struct output_driver *driver)
454 {
455   struct output_engine *e = engine_stack_top ();
456
457   assert (!output_driver_is_registered (driver));
458   llx_push_tail (&e->drivers, driver, &llx_malloc_mgr);
459 }
460
461 void
462 output_driver_unregister (struct output_driver *driver)
463 {
464   struct output_engine *e = output_driver_get_engine (driver);
465
466   assert (e != NULL);
467   llx_remove (llx_find (llx_head (&e->drivers), llx_null (&e->drivers), driver),
468               &llx_malloc_mgr);
469 }
470
471 bool
472 output_driver_is_registered (const struct output_driver *driver)
473 {
474   return output_driver_get_engine (driver) != NULL;
475 }
476
477 void
478 output_set_page_setup (const struct page_setup *ps)
479 {
480   struct output_engine *e = engine_stack_top ();
481
482   struct llx *llx;
483   llx_for_each (llx, &e->drivers)
484     {
485       struct output_driver *d = llx_data (llx);
486       if (d->class->setup)
487         d->class->setup (d, ps);
488     }
489 }
490 \f
491 extern const struct output_driver_factory csv_driver_factory;
492 extern const struct output_driver_factory html_driver_factory;
493 extern const struct output_driver_factory list_driver_factory;
494 extern const struct output_driver_factory odt_driver_factory;
495 extern const struct output_driver_factory pdf_driver_factory;
496 extern const struct output_driver_factory png_driver_factory;
497 extern const struct output_driver_factory ps_driver_factory;
498 extern const struct output_driver_factory spv_driver_factory;
499 extern const struct output_driver_factory svg_driver_factory;
500 extern const struct output_driver_factory tex_driver_factory;
501 extern const struct output_driver_factory txt_driver_factory;
502
503 static const struct output_driver_factory *factories[] =
504   {
505     &txt_driver_factory,
506     &list_driver_factory,
507     &html_driver_factory,
508     &csv_driver_factory,
509     &odt_driver_factory,
510     &spv_driver_factory,
511     &pdf_driver_factory,
512     &ps_driver_factory,
513     &svg_driver_factory,
514     &png_driver_factory,
515     &tex_driver_factory,
516     NULL
517   };
518
519 static const struct output_driver_factory *
520 find_factory (const char *format)
521 {
522   const struct output_driver_factory **fp;
523
524   for (fp = factories; *fp != NULL; fp++)
525     {
526       const struct output_driver_factory *f = *fp;
527
528       if (!strcmp (f->extension, format))
529         return f;
530     }
531   return &txt_driver_factory;
532 }
533
534 static enum settings_output_devices
535 default_device_type (const char *file_name)
536 {
537   return (!strcmp (file_name, "-")
538           ? SETTINGS_DEVICE_TERMINAL
539           : SETTINGS_DEVICE_LISTING);
540 }
541
542 struct output_driver *
543 output_driver_create (struct string_map *options)
544 {
545   enum settings_output_devices device_type;
546   const struct output_driver_factory *f;
547   struct output_driver *driver;
548   char *device_string;
549   char *file_name;
550   char *format;
551
552   format = string_map_find_and_delete (options, "format");
553   file_name = string_map_find_and_delete (options, "output-file");
554
555   if (format == NULL)
556     {
557       if (file_name != NULL)
558         {
559           const char *extension = strrchr (file_name, '.');
560           format = xstrdup (extension != NULL ? extension + 1 : "");
561         }
562       else
563         format = xstrdup ("txt");
564     }
565   f = find_factory (format);
566
567   if (file_name == NULL)
568     file_name = xstrdup (f->default_file_name);
569
570   /* XXX should use parse_enum(). */
571   device_string = string_map_find_and_delete (options, "device");
572   if (device_string == NULL || device_string[0] == '\0')
573     device_type = default_device_type (file_name);
574   else if (!strcmp (device_string, "terminal"))
575     device_type = SETTINGS_DEVICE_TERMINAL;
576   else if (!strcmp (device_string, "listing"))
577     device_type = SETTINGS_DEVICE_LISTING;
578   else
579     {
580       msg (MW, _("%s is not a valid device type (the choices are `%s' and `%s')"),
581                      device_string, "terminal", "listing");
582       device_type = default_device_type (file_name);
583     }
584
585   struct file_handle *fh = fh_create_file (NULL, file_name, NULL, fh_default_properties ());
586
587   driver = f->create (fh, device_type, options);
588   if (driver != NULL)
589     {
590       const struct string_map_node *node;
591       const char *key;
592
593       STRING_MAP_FOR_EACH_KEY (key, node, options)
594         msg (MW, _("%s: unknown option `%s'"), file_name, key);
595     }
596   string_map_clear (options);
597
598   free (file_name);
599   free (format);
600   free (device_string);
601
602   return driver;
603 }
604
605 void
606 output_driver_parse_option (const char *option, struct string_map *options)
607 {
608   const char *equals = strchr (option, '=');
609   if (equals == NULL)
610     {
611       error (0, 0, _("%s: output option missing `='"), option);
612       return;
613     }
614
615   char *key = xmemdup0 (option, equals - option);
616   if (string_map_contains (options, key))
617     {
618       error (0, 0, _("%s: output option specified more than once"), key);
619       free (key);
620       return;
621     }
622
623   char *value = xmemdup0 (equals + 1, strlen (equals + 1));
624   string_map_insert_nocopy (options, key, value);
625 }
626 \f
627 char *
628 output_driver_substitute_heading_vars (const char *src, int page_number)
629 {
630   struct output_engine *e = engine_stack_top ();
631   struct string dst = DS_EMPTY_INITIALIZER;
632   ds_extend (&dst, strlen (src));
633   for (const char *p = src; *p;)
634     {
635       if (!strncmp (p, "&amp;[", 6))
636         {
637           if (page_number != INT_MIN)
638             {
639               const char *start = p + 6;
640               const char *end = strchr (start, ']');
641               if (end)
642                 {
643                   const char *value = string_map_find__ (&e->heading_vars,
644                                                          start, end - start);
645                   if (value)
646                     ds_put_cstr (&dst, value);
647                   else if (ss_equals (ss_buffer (start, end - start),
648                                       ss_cstr ("Page")))
649                     ds_put_format (&dst, "%d", page_number);
650                   p = end + 1;
651                   continue;
652                 }
653             }
654           ds_put_cstr (&dst, "&amp;");
655           p += 5;
656         }
657       else
658         ds_put_byte (&dst, *p++);
659     }
660   return ds_steal_cstr (&dst);
661 }