1b8fe97bf7b9259f150bee1bd9c8a2561a9a8d8d
[pspp] / src / output / output.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2007, 2009 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 <ctype.h>
20 #include <errno.h>
21 #if HAVE_LC_PAPER
22 #include <langinfo.h>
23 #endif
24 #include <locale.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 #include <data/file-name.h>
29 #include <data/settings.h>
30 #include <libpspp/misc.h>
31 #include <libpspp/str.h>
32 #include <output/htmlP.h>
33 #include <output/output.h>
34
35 #include "error.h"
36 #include "intprops.h"
37 #include "xalloc.h"
38
39 #include "gettext.h"
40 #define _(msgid) gettext (msgid)
41
42 /* Where the output driver name came from. */
43 enum
44   {
45     OUTP_S_COMMAND_LINE,        /* Specified by the user. */
46     OUTP_S_INIT_FILE            /* `default' or the init file. */
47   };
48
49 /* Names the output drivers to be used. */
50 struct outp_names
51   {
52     char *name;                 /* Name of the output driver. */
53     int source;                 /* OUTP_S_* */
54     struct outp_names *next, *prev;
55   };
56
57 /* Defines an init file macro. */
58 struct outp_defn
59   {
60     char *key;
61     struct string value;
62     struct outp_defn *next, *prev;
63   };
64
65 static struct outp_defn *outp_macros;
66 static struct outp_names *outp_configure_vec;
67
68 /* A list of driver classes. */
69 struct outp_driver_class_list
70   {
71     const struct outp_class *class;
72     struct outp_driver_class_list *next;
73   };
74
75 static struct outp_driver_class_list *outp_class_list;
76 static struct ll_list outp_driver_list = LL_INITIALIZER (outp_driver_list);
77
78 char *outp_title;
79 char *outp_subtitle;
80
81 /* A set of OUTP_DEV_* bits indicating the devices that are
82    disabled. */
83 static int disabled_devices;
84
85 static void destroy_driver (struct outp_driver *);
86 static void configure_driver (const struct substring, const struct substring,
87                               const struct substring, const struct substring);
88
89 /* Add a class to the class list. */
90 static void
91 add_class (const struct outp_class *class)
92 {
93   struct outp_driver_class_list *new_list = xmalloc (sizeof *new_list);
94
95   new_list->class = class;
96
97   if (!outp_class_list)
98     {
99       outp_class_list = new_list;
100       new_list->next = NULL;
101     }
102   else
103     {
104       new_list->next = outp_class_list;
105       outp_class_list = new_list;
106     }
107 }
108
109 /* Finds the outp_names in outp_configure_vec with name between BP and
110    EP exclusive. */
111 static struct outp_names *
112 search_names (char *bp, char *ep)
113 {
114   struct outp_names *n;
115
116   for (n = outp_configure_vec; n; n = n->next)
117     if ((int) strlen (n->name) == ep - bp && !memcmp (n->name, bp, ep - bp))
118       return n;
119   return NULL;
120 }
121
122 /* Deletes outp_names NAME from outp_configure_vec. */
123 static void
124 delete_name (struct outp_names * n)
125 {
126   free (n->name);
127   if (n->prev)
128     n->prev->next = n->next;
129   if (n->next)
130     n->next->prev = n->prev;
131   if (n == outp_configure_vec)
132     outp_configure_vec = n->next;
133   free (n);
134 }
135
136 /* Adds the name between BP and EP exclusive to list
137    outp_configure_vec with source SOURCE. */
138 static void
139 add_name (char *bp, char *ep, int source)
140 {
141   struct outp_names *n = xmalloc (sizeof *n);
142   n->name = xmalloc (ep - bp + 1);
143   memcpy (n->name, bp, ep - bp);
144   n->name[ep - bp] = 0;
145   n->source = source;
146   n->next = outp_configure_vec;
147   n->prev = NULL;
148   if (outp_configure_vec)
149     outp_configure_vec->prev = n;
150   outp_configure_vec = n;
151 }
152
153 /* Checks that outp_configure_vec is empty, complains and clears
154    it if it isn't. */
155 static void
156 check_configure_vec (void)
157 {
158   struct outp_names *n;
159
160   for (n = outp_configure_vec; n; n = n->next)
161     if (n->source == OUTP_S_COMMAND_LINE)
162       error (0, 0, _("unknown output driver `%s'"), n->name);
163     else
164       error (0, 0, _("output driver `%s' referenced but never defined"),
165              n->name);
166   outp_configure_clear ();
167 }
168
169 /* Searches outp_configure_vec for the name between BP and EP
170    exclusive.  If found, it is deleted, then replaced by the names
171    given in EP+1, if any. */
172 static void
173 expand_name (char *bp, char *ep)
174 {
175   struct outp_names *n = search_names (bp, ep);
176   if (!n)
177     return;
178   delete_name (n);
179
180   bp = ep + 1;
181   for (;;)
182     {
183       while (isspace ((unsigned char) *bp))
184         bp++;
185       ep = bp;
186       while (*ep && !isspace ((unsigned char) *ep))
187         ep++;
188       if (bp == ep)
189         return;
190       if (!search_names (bp, ep))
191         add_name (bp, ep, OUTP_S_INIT_FILE);
192       bp = ep;
193     }
194 }
195
196 /* Looks for a macro with key KEY, and returns the corresponding value
197    if found, or NULL if not. */
198 static const char *
199 find_defn_value (const char *key)
200 {
201   static char buf[INT_STRLEN_BOUND (int) + 1];
202   struct outp_defn *d;
203
204   for (d = outp_macros; d; d = d->next)
205     if (!strcmp (key, d->key))
206       return ds_cstr (&d->value);
207   if (!strcmp (key, "viewwidth"))
208     {
209       sprintf (buf, "%d", settings_get_viewwidth ());
210       return buf;
211     }
212   else if (!strcmp (key, "viewlength"))
213     {
214       sprintf (buf, "%d", settings_get_viewlength ());
215       return buf;
216     }
217   else
218     return getenv (key);
219 }
220
221 /* Initializes global variables. */
222 void
223 outp_init (void)
224 {
225   char def[] = "default";
226
227   add_class (&html_class);
228   add_class (&postscript_class);
229   add_class (&ascii_class);
230 #ifdef HAVE_CAIRO
231   add_class (&cairo_class);
232 #endif
233
234   add_name (def, &def[strlen (def)], OUTP_S_INIT_FILE);
235 }
236
237 /* Deletes all the output macros. */
238 static void
239 delete_macros (void)
240 {
241   struct outp_defn *d, *next;
242
243   for (d = outp_macros; d; d = next)
244     {
245       next = d->next;
246       free (d->key);
247       ds_destroy (&d->value);
248       free (d);
249     }
250 }
251
252 static void
253 init_default_drivers (void)
254 {
255   error (0, 0, _("using default output driver configuration"));
256   configure_driver (ss_cstr ("list"),
257                     ss_cstr ("ascii"),
258                     ss_cstr ("listing"),
259                     ss_cstr ("length=66 width=79 output-file=\"pspp.list\""));
260 }
261
262 /* Reads the initialization file; initializes
263    outp_driver_list. */
264 void
265 outp_read_devices (void)
266 {
267   int result = 0;
268
269   char *init_fn;
270
271   FILE *f = NULL;
272   struct string line;
273   int line_number;
274
275   init_fn = fn_search_path (fn_getenv_default ("STAT_OUTPUT_INIT_FILE",
276                                                "devices"),
277                             fn_getenv_default ("STAT_OUTPUT_INIT_PATH",
278                                                config_path));
279
280   ds_init_empty (&line);
281
282   if (init_fn == NULL)
283     {
284       error (0, 0, _("cannot find output initialization file "
285                      "(use `-vv' to view search path)"));
286       goto exit;
287     }
288
289   f = fopen (init_fn, "r");
290   if (f == NULL)
291     {
292       error (0, errno, _("cannot open \"%s\""), init_fn);
293       goto exit;
294     }
295
296   line_number = 0;
297   for (;;)
298     {
299       char *cp;
300
301       if (!ds_read_config_line (&line, &line_number, f))
302         {
303           if (ferror (f))
304             error (0, errno, _("reading \"%s\""), init_fn);
305           break;
306         }
307       for (cp = ds_cstr (&line); isspace ((unsigned char) *cp); cp++);
308       if (!strncmp ("define", cp, 6) && isspace ((unsigned char) cp[6]))
309         outp_configure_macro (&cp[7]);
310       else if (*cp)
311         {
312           char *ep;
313           for (ep = cp; *ep && *ep != ':' && *ep != '='; ep++);
314           if (*ep == '=')
315             expand_name (cp, ep);
316           else if (*ep == ':')
317             {
318               struct outp_names *n = search_names (cp, ep);
319               if (n)
320                 {
321                   outp_configure_driver_line (ds_ss (&line));
322                   delete_name (n);
323                 }
324             }
325           else
326             error_at_line (0, 0, init_fn, line_number, _("syntax error"));
327         }
328     }
329   result = 1;
330
331   check_configure_vec ();
332
333 exit:
334   if (f && -1 == fclose (f))
335     error (0, errno, _("error closing \"%s\""), init_fn);
336   free (init_fn);
337   ds_destroy (&line);
338   delete_macros ();
339
340   if (result)
341     {
342       if (ll_is_empty (&outp_driver_list))
343         error (0, 0, _("no active output drivers"));
344     }
345   else
346     error (0, 0, _("error reading device definition file"));
347
348   if (!result || ll_is_empty (&outp_driver_list))
349     init_default_drivers ();
350 }
351
352 /* Clear the list of drivers to configure. */
353 void
354 outp_configure_clear (void)
355 {
356   struct outp_names *n, *next;
357
358   for (n = outp_configure_vec; n; n = next)
359     {
360       next = n->next;
361       free (n->name);
362       free (n);
363     }
364   outp_configure_vec = NULL;
365 }
366
367 /* Adds the name BP to the list of drivers to configure into
368    outp_driver_list. */
369 void
370 outp_configure_add (char *bp)
371 {
372   char *ep = &bp[strlen (bp)];
373   if (!search_names (bp, ep))
374     add_name (bp, ep, OUTP_S_COMMAND_LINE);
375 }
376
377 /* Defines one configuration macro based on the text in BP, which
378    should be of the form `KEY=VALUE'. */
379 void
380 outp_configure_macro (char *bp)
381 {
382   struct outp_defn *d;
383   char *ep;
384
385   while (isspace ((unsigned char) *bp))
386     bp++;
387   ep = bp;
388   while (*ep && !isspace ((unsigned char) *ep) && *ep != '=')
389     ep++;
390
391   d = xmalloc (sizeof *d);
392   d->key = xmalloc (ep - bp + 1);
393   memcpy (d->key, bp, ep - bp);
394   d->key[ep - bp] = 0;
395
396   /* Earlier definitions for a particular KEY override later ones. */
397   if (find_defn_value (d->key))
398     {
399       free (d->key);
400       free (d);
401       return;
402     }
403
404   if (*ep == '=')
405     ep++;
406   while (isspace ((unsigned char) *ep))
407     ep++;
408
409   ds_init_cstr (&d->value, ep);
410   fn_interp_vars (ds_ss (&d->value), find_defn_value, &d->value);
411   d->next = outp_macros;
412   d->prev = NULL;
413   if (outp_macros)
414     outp_macros->prev = d;
415   outp_macros = d;
416 }
417
418 /* Closes all the output drivers. */
419 void
420 outp_done (void)
421 {
422   struct outp_driver_class_list *n = outp_class_list ;
423   outp_configure_clear ();
424   while (!ll_is_empty (&outp_driver_list))
425     {
426       struct outp_driver *d = ll_data (ll_head (&outp_driver_list),
427                                        struct outp_driver, node);
428       destroy_driver (d);
429     }
430
431   while (n)
432     {
433       struct outp_driver_class_list *next = n->next;
434       free(n);
435       n = next;
436     }
437   outp_class_list = NULL;
438
439   free (outp_title);
440   outp_title = NULL;
441
442   free (outp_subtitle);
443   outp_subtitle = NULL;
444 }
445
446 /* Display on stdout a list of all registered driver classes. */
447 void
448 outp_list_classes (void)
449 {
450   int width = settings_get_viewwidth ();
451   struct outp_driver_class_list *c;
452
453   printf (_("Driver classes:\n\t"));
454   width -= 8;
455   for (c = outp_class_list; c; c = c->next)
456     {
457       if ((int) strlen (c->class->name) + 1 > width)
458         {
459           printf ("\n\t");
460           width = settings_get_viewwidth () - 8;
461         }
462       else
463         putc (' ', stdout);
464       fputs (c->class->name, stdout);
465     }
466   putc('\n', stdout);
467 }
468
469 /* Obtains a token from S and advances its position.  Errors are
470    reported against the given DRIVER_NAME.
471    The token is stored in TOKEN.  Returns true if successful,
472    false on syntax error.
473
474    Caller is responsible for skipping leading spaces. */
475 static bool
476 get_option_token (struct substring *s, const char *driver_name,
477                   struct string *token)
478 {
479   int c;
480
481   ds_clear (token);
482   c = ss_get_char (s);
483   if (c == EOF)
484     {
485       error (0, 0, _("syntax error parsing options for \"%s\" driver"),
486              driver_name);
487       return false;
488     }
489   else if (c == '\'' || c == '"')
490     {
491       int quote = c;
492
493       for (;;)
494         {
495           c = ss_get_char (s);
496           if (c == quote)
497             break;
498           else if (c == EOF)
499             {
500               error (0, 0,
501                      _("reached end of options inside quoted string "
502                        "parsing options for \"%s\" driver"),
503                      driver_name);
504               return false;
505             }
506           else if (c != '\\')
507             ds_put_char (token, c);
508           else
509             {
510               int out;
511
512               c = ss_get_char (s);
513               switch (c)
514                 {
515                 case '\'':
516                   out = '\'';
517                   break;
518                 case '"':
519                   out = '"';
520                   break;
521                 case '\\':
522                   out = '\\';
523                   break;
524                 case 'a':
525                   out = '\a';
526                   break;
527                 case 'b':
528                   out = '\b';
529                   break;
530                 case 'f':
531                   out = '\f';
532                   break;
533                 case 'n':
534                   out = '\n';
535                   break;
536                 case 'r':
537                   out = '\r';
538                   break;
539                 case 't':
540                   out = '\t';
541                   break;
542                 case 'v':
543                   out = '\v';
544                   break;
545                 case '0':
546                 case '1':
547                 case '2':
548                 case '3':
549                 case '4':
550                 case '5':
551                 case '6':
552                 case '7':
553                   out = c - '0';
554                   while (ss_first (*s) >= '0' && ss_first (*s) <= '7')
555                     out = out * 8 + (ss_get_char (s) - '0');
556                   break;
557                 case 'x':
558                 case 'X':
559                   out = 0;
560                   while (isxdigit (ss_first (*s)))
561                     {
562                       c = ss_get_char (s);
563                       out *= 16;
564                       if (isdigit (c))
565                         out += c - '0';
566                       else
567                         out += tolower (c) - 'a' + 10;
568                     }
569                   break;
570                 default:
571                   error (0, 0, _("syntax error in string constant "
572                                  "parsing options for \"%s\" driver"),
573                          driver_name);
574                   return false;
575                 }
576               ds_put_char (token, out);
577             }
578         }
579     }
580   else
581     {
582       for (;;)
583         {
584           ds_put_char (token, c);
585
586           c = ss_first (*s);
587           if (c == EOF || c == '=' || isspace (c))
588             break;
589           ss_advance (s, 1);
590         }
591     }
592
593   return 1;
594 }
595
596 bool
597 outp_parse_options (const char *driver_name, struct substring options,
598                     bool (*callback) (void *aux, const char *key,
599                                       const struct string *value), void *aux)
600 {
601   struct string key = DS_EMPTY_INITIALIZER;
602   struct string value = DS_EMPTY_INITIALIZER;
603   struct substring left = options;
604   bool ok = true;
605
606   do
607     {
608       ss_ltrim (&left, ss_cstr (CC_SPACES));
609       if (ss_is_empty (left))
610         break;
611
612       if (!get_option_token (&left, driver_name, &key))
613         break;
614
615       ss_ltrim (&left, ss_cstr (CC_SPACES));
616       if (!ss_match_char (&left, '='))
617         {
618           error (0, 0, _("syntax error expecting `=' "
619                          "parsing options for driver \"%s\""),
620                  driver_name);
621           break;
622         }
623
624       ss_ltrim (&left, ss_cstr (CC_SPACES));
625       if (!get_option_token (&left, driver_name, &value))
626         break;
627
628       ok = callback (aux, ds_cstr (&key), &value);
629     }
630   while (ok);
631
632   ds_destroy (&key);
633   ds_destroy (&value);
634
635   return ok;
636 }
637
638 /* Find the driver in outp_driver_list with name NAME. */
639 static struct outp_driver *
640 find_driver (char *name)
641 {
642   struct outp_driver *d;
643   ll_for_each (d, struct outp_driver, node, &outp_driver_list)
644     if (!strcmp (d->name, name))
645       return d;
646   return NULL;
647 }
648
649 /* Adds a driver to outp_driver_list pursuant to the
650    specification provided.  */
651 static void
652 configure_driver (struct substring driver_name, struct substring class_name,
653                   struct substring device_type, struct substring options)
654 {
655   struct outp_driver_class_list *c;
656   struct substring token;
657   size_t save_idx = 0;
658   char *name;
659   int device;
660
661   /* Find class. */
662   for (c = outp_class_list; c; c = c->next)
663     if (!ss_compare (ss_cstr (c->class->name), class_name))
664       break;
665   if (c == NULL)
666     {
667       error (0, 0, _("unknown output driver class `%.*s'"),
668              (int) ss_length (class_name), ss_data (class_name));
669       return;
670     }
671
672   /* Parse device type. */
673   device = 0;
674   while (ss_tokenize (device_type, ss_cstr (CC_SPACES), &save_idx, &token))
675     if (!ss_compare (token, ss_cstr ("listing")))
676       device |= OUTP_DEV_LISTING;
677     else if (!ss_compare (token, ss_cstr ("screen")))
678       device |= OUTP_DEV_SCREEN;
679     else if (!ss_compare (token, ss_cstr ("printer")))
680       device |= OUTP_DEV_PRINTER;
681     else
682       error (0, 0, _("unknown device type `%.*s'"),
683              (int) ss_length (token), ss_data (token));
684
685   /* Open driver. */
686   name = ss_xstrdup (driver_name);
687   if (!c->class->open_driver (name, device, options))
688     error (0, 0, _("cannot initialize output driver `%s' of class `%s'"),
689            name, c->class->name);
690   free (name);
691 }
692
693 /* Allocates and returns a new outp_driver for a device with the
694    given NAME and CLASS and the OUTP_DEV_* type(s) in TYPES
695
696    This function is intended to be used by output drivers, not
697    by their clients. */
698 struct outp_driver *
699 outp_allocate_driver (const struct outp_class *class,
700                       const char *name, int types)
701 {
702   struct outp_driver *d = xmalloc (sizeof *d);
703   d->class = class;
704   d->name = xstrdup (name);
705   d->page_open = false;
706   d->device = types;
707   d->cp_x = d->cp_y = 0;
708   d->ext = NULL;
709   return d;
710 }
711
712 /* Frees driver D and the data that it owns directly.  The
713    driver's class must already have unregistered D (if it was
714    registered) and freed data private to its class.
715
716    This function is intended to be used by output drivers, not
717    by their clients. */
718 void
719 outp_free_driver (struct outp_driver *d)
720 {
721   free (d->name);
722   free (d);
723 }
724
725 /* Adds D to the list of drivers that will be used for output. */
726 void
727 outp_register_driver (struct outp_driver *d)
728 {
729   struct outp_driver *victim;
730
731   /* Find like-named driver and delete. */
732   victim = find_driver (d->name);
733   if (victim != NULL)
734     destroy_driver (victim);
735
736   /* Add D to list. */
737   ll_push_tail (&outp_driver_list, &d->node);
738 }
739
740 /* Remove driver D from the list of drivers that will be used for
741    output. */
742 void
743 outp_unregister_driver (struct outp_driver *d)
744 {
745   ll_remove (&d->node);
746 }
747
748 /* String LINE is in format:
749    DRIVERNAME:CLASSNAME:DEVICETYPE:OPTIONS
750    Adds a driver to outp_driver_list pursuant to the specification
751    provided.  */
752 void
753 outp_configure_driver_line (struct substring line_)
754 {
755   struct string line = DS_EMPTY_INITIALIZER;
756   struct substring tokens[4];
757   size_t save_idx;
758   size_t i;
759
760   fn_interp_vars (line_, find_defn_value, &line);
761
762   save_idx = 0;
763   for (i = 0; i < 4; i++)
764     {
765       struct substring *token = &tokens[i];
766       ds_separate (&line, ss_cstr (i < 3 ? ":" : ""), &save_idx, token);
767       ss_trim (token, ss_cstr (CC_SPACES));
768     }
769
770   if (!ss_is_empty (tokens[0]) && !ss_is_empty (tokens[1]))
771     configure_driver (tokens[0], tokens[1], tokens[2], tokens[3]);
772   else
773     error (0, 0,
774            _("driver definition line missing driver name or class name"));
775
776   ds_destroy (&line);
777 }
778
779 /* Destroys output driver D. */
780 static void
781 destroy_driver (struct outp_driver *d)
782 {
783   outp_close_page (d);
784   if (d->class && d->class->close_driver)
785     d->class->close_driver (d);
786   outp_unregister_driver (d);
787   outp_free_driver (d);
788 }
789
790 /* Tries to match S as one of the keywords in TAB, with
791    corresponding information structure INFO.  Returns category
792    code and stores subcategory in *SUBCAT on success.  Returns -1
793    on failure. */
794 int
795 outp_match_keyword (const char *s, const struct outp_option *tab, int *subcat)
796 {
797   for (; tab->keyword != NULL; tab++)
798     if (!strcmp (s, tab->keyword))
799       {
800         *subcat = tab->subcat;
801         return tab->cat;
802       }
803   return -1;
804 }
805
806 /* Parses UNIT as a dimensional unit.  Returns the multiplicative
807    factor needed to change a quantity measured in that unit into
808    1/72000" units.  If UNIT is empty, it is treated as
809    millimeters.  If the unit is unrecognized, returns 0. */
810 static double
811 parse_unit (const char *unit)
812 {
813   struct unit
814     {
815       char name[3];
816       double factor;
817     };
818
819   static const struct unit units[] =
820     {
821       {"pt", 72000 / 72},
822       {"pc", 72000 / 72 * 12.0},
823       {"in", 72000},
824       {"cm", 72000 / 2.54},
825       {"mm", 72000 / 25.4},
826       {"", 72000 / 25.4},
827     };
828
829   const struct unit *p;
830
831   unit += strspn (unit, CC_SPACES);
832   for (p = units; p < units + sizeof units / sizeof *units; p++)
833     if (!strcasecmp (unit, p->name))
834       return p->factor;
835   return 0.0;
836 }
837
838 /* Determines the size of a dimensional measurement and returns
839    the size in units of 1/72000".  Units are assumed to be
840    millimeters unless otherwise specified.  Returns 0 on
841    error. */
842 int
843 outp_evaluate_dimension (const char *dimen)
844 {
845   double raw, factor;
846   char *tail;
847
848   /* Number. */
849   raw = strtod (dimen, &tail);
850   if (raw <= 0.0)
851     goto syntax_error;
852
853   /* Unit. */
854   factor = parse_unit (tail);
855   if (factor == 0.0)
856     goto syntax_error;
857
858   return raw * factor;
859
860 syntax_error:
861   error (0, 0, _("`%s' is not a valid length."), dimen);
862   return 0;
863 }
864
865 /* Stores the dimensions in 1/72000" units of paper identified by
866    SIZE, which is of form `HORZ x VERT [UNIT]' where HORZ and
867    VERT are numbers and UNIT is an optional unit of measurement,
868    into *H and *V.  Return true on success. */
869 static bool
870 parse_paper_size (const char *size, int *h, int *v)
871 {
872   double raw_h, raw_v, factor;
873   char *tail;
874
875   /* Width. */
876   raw_h = strtod (size, &tail);
877   if (raw_h <= 0.0)
878     return false;
879
880   /* Delimiter. */
881   tail += strspn (tail, CC_SPACES "x,");
882
883   /* Length. */
884   raw_v = strtod (tail, &tail);
885   if (raw_v <= 0.0)
886     return false;
887
888   /* Unit. */
889   factor = parse_unit (tail);
890   if (factor == 0.0)
891     return false;
892
893   *h = raw_h * factor + .5;
894   *v = raw_v * factor + .5;
895   return true;
896 }
897
898 static bool
899 get_standard_paper_size (struct substring name, int *h, int *v)
900 {
901   static const char *sizes[][2] =
902     {
903       {"a0", "841 x 1189 mm"},
904       {"a1", "594 x 841 mm"},
905       {"a2", "420 x 594 mm"},
906       {"a3", "297 x 420 mm"},
907       {"a4", "210 x 297 mm"},
908       {"a5", "148 x 210 mm"},
909       {"b5", "176 x 250 mm"},
910       {"a6", "105 x 148 mm"},
911       {"a7", "74 x 105 mm"},
912       {"a8", "52 x 74 mm"},
913       {"a9", "37 x 52 mm"},
914       {"a10", "26 x 37 mm"},
915       {"b0", "1000 x 1414 mm"},
916       {"b1", "707 x 1000 mm"},
917       {"b2", "500 x 707 mm"},
918       {"b3", "353 x 500 mm"},
919       {"b4", "250 x 353 mm"},
920       {"letter", "612 x 792 pt"},
921       {"legal", "612 x 1008 pt"},
922       {"executive", "522 x 756 pt"},
923       {"note", "612 x 792 pt"},
924       {"11x17", "792 x 1224 pt"},
925       {"tabloid", "792 x 1224 pt"},
926       {"statement", "396 x 612 pt"},
927       {"halfletter", "396 x 612 pt"},
928       {"halfexecutive", "378 x 522 pt"},
929       {"folio", "612 x 936 pt"},
930       {"quarto", "610 x 780 pt"},
931       {"ledger", "1224 x 792 pt"},
932       {"archA", "648 x 864 pt"},
933       {"archB", "864 x 1296 pt"},
934       {"archC", "1296 x 1728 pt"},
935       {"archD", "1728 x 2592 pt"},
936       {"archE", "2592 x 3456 pt"},
937       {"flsa", "612 x 936 pt"},
938       {"flse", "612 x 936 pt"},
939       {"csheet", "1224 x 1584 pt"},
940       {"dsheet", "1584 x 2448 pt"},
941       {"esheet", "2448 x 3168 pt"},
942     };
943
944   size_t i;
945
946   for (i = 0; i < sizeof sizes / sizeof *sizes; i++)
947     if (ss_equals_case (ss_cstr (sizes[i][0]), name))
948       {
949         bool ok = parse_paper_size (sizes[i][1], h, v);
950         assert (ok);
951         return ok;
952       }
953   error (0, 0, _("unknown paper type `%.*s'"),
954          (int) ss_length (name), ss_data (name));
955   return false;
956 }
957
958 /* Reads file FILE_NAME to find a paper size.  Stores the
959    dimensions, in 1/72000" units, into *H and *V.  Returns true
960    on success, false on failure. */
961 static bool
962 read_paper_conf (const char *file_name, int *h, int *v)
963 {
964   struct string line = DS_EMPTY_INITIALIZER;
965   int line_number = 0;
966   FILE *file;
967
968   file = fopen (file_name, "r");
969   if (file == NULL)
970     {
971       error (0, errno, _("error opening \"%s\""), file_name);
972       return false;
973     }
974
975   for (;;)
976     {
977       struct substring name;
978
979       if (!ds_read_config_line (&line, &line_number, file))
980         {
981           if (ferror (file))
982             error (0, errno, _("error reading \"%s\""), file_name);
983           break;
984         }
985
986       name = ds_ss (&line);
987       ss_trim (&name, ss_cstr (CC_SPACES));
988       if (!ss_is_empty (name))
989         {
990           bool ok = get_standard_paper_size (name, h, v);
991           fclose (file);
992           ds_destroy (&line);
993           return ok;
994         }
995     }
996
997   fclose (file);
998   ds_destroy (&line);
999   error (0, 0, _("paper size file \"%s\" does not state a paper size"),
1000          file_name);
1001   return false;
1002 }
1003
1004 /* The user didn't specify a paper size, so let's choose a
1005    default based on his environment.  Stores the
1006    dimensions, in 1/72000" units, into *H and *V.  Returns true
1007    on success, false on failure. */
1008 static bool
1009 get_default_paper_size (int *h, int *v)
1010 {
1011   /* libpaper in Debian (and other distributions?) allows the
1012      paper size to be specified in $PAPERSIZE or in a file
1013      specified in $PAPERCONF. */
1014   if (getenv ("PAPERSIZE") != NULL)
1015     return get_standard_paper_size (ss_cstr (getenv ("PAPERSIZE")), h, v);
1016   if (getenv ("PAPERCONF") != NULL)
1017     return read_paper_conf (getenv ("PAPERCONF"), h, v);
1018
1019 #if HAVE_LC_PAPER
1020   /* LC_PAPER is a non-standard glibc extension. */
1021   *h = (int) nl_langinfo(_NL_PAPER_WIDTH) * (72000 / 25.4);
1022   *v = (int) nl_langinfo(_NL_PAPER_HEIGHT) * (72000 / 25.4);
1023   if (*h > 0 && *v > 0)
1024      return true;
1025 #endif
1026
1027   /* libpaper defaults to /etc/papersize. */
1028   if (fn_exists ("/etc/papersize"))
1029     return read_paper_conf ("/etc/papersize", h, v);
1030
1031   /* Can't find a default. */
1032   return false;
1033 }
1034
1035 /* Stores the dimensions, in 1/72000" units, of paper identified
1036    by SIZE into *H and *V.  SIZE can be the name of a kind of
1037    paper ("a4", "letter", ...) or a pair of dimensions
1038    ("210x297", "8.5x11in", ...).  Returns true on success, false
1039    on failure.  On failure, *H and *V are set for A4 paper. */
1040 bool
1041 outp_get_paper_size (const char *size, int *h, int *v)
1042 {
1043   struct substring s;
1044   bool ok;
1045
1046   s = ss_cstr (size);
1047   ss_trim (&s, ss_cstr (CC_SPACES));
1048
1049   if (ss_is_empty (s))
1050     {
1051       /* Treat empty string as default paper size. */
1052       ok = get_default_paper_size (h, v);
1053     }
1054   else if (isdigit (ss_first (s)))
1055     {
1056       /* Treat string that starts with digit as explicit size. */
1057       ok = parse_paper_size (size, h, v);
1058       if (!ok)
1059         error (0, 0, _("syntax error in paper size `%s'"), size);
1060     }
1061   else
1062     {
1063       /* Check against standard paper sizes. */
1064       ok = get_standard_paper_size (s, h, v);
1065     }
1066
1067   /* Default to A4 on error. */
1068   if (!ok)
1069     {
1070       *h = 210 * (72000 / 25.4);
1071       *v = 297 * (72000 / 25.4);
1072     }
1073   return ok;
1074 }
1075
1076 /* If D is NULL, returns the first enabled driver if any, NULL if
1077    none.  Otherwise D must be the last driver returned by this
1078    function, in which case the next enabled driver is returned or NULL
1079    if that was the last. */
1080 struct outp_driver *
1081 outp_drivers (struct outp_driver *d)
1082 {
1083   do
1084     {
1085       struct ll *next;
1086
1087       next = d == NULL ? ll_head (&outp_driver_list) : ll_next (&d->node);
1088       if (next == ll_null (&outp_driver_list))
1089         return NULL;
1090
1091       d = ll_data (next, struct outp_driver, node);
1092     }
1093   while (d->device != 0 && (d->device & disabled_devices) == d->device);
1094
1095   return d;
1096 }
1097
1098 /* Enables (if ENABLE is true) or disables (if ENABLE is false) the
1099    device(s) given in mask DEVICE. */
1100 void
1101 outp_enable_device (bool enable, int device)
1102 {
1103   if (enable)
1104     disabled_devices &= ~device;
1105   else
1106     disabled_devices |= device;
1107 }
1108
1109 /* Opens a page on driver D (if one is not open). */
1110 void
1111 outp_open_page (struct outp_driver *d)
1112 {
1113   if (!d->page_open)
1114     {
1115       d->cp_x = d->cp_y = 0;
1116
1117       d->page_open = true;
1118       if (d->class->open_page != NULL)
1119         d->class->open_page (d);
1120     }
1121 }
1122
1123 /* Closes the page on driver D (if one is open). */
1124 void
1125 outp_close_page (struct outp_driver *d)
1126 {
1127   if (d->page_open)
1128     {
1129       if (d->class->close_page != NULL)
1130         d->class->close_page (d);
1131       d->page_open = false;
1132     }
1133 }
1134
1135 /* Ejects the page on device D, if a page is open and non-blank,
1136    and opens a new page.  */
1137 void
1138 outp_eject_page (struct outp_driver *d)
1139 {
1140   if (d->page_open && d->cp_y != 0)
1141     outp_close_page (d);
1142   outp_open_page (d);
1143 }
1144
1145 /* Flushes output to screen devices, so that the user can see
1146    output that doesn't fill up an entire page. */
1147 void
1148 outp_flush (struct outp_driver *d)
1149 {
1150   if (d->device & OUTP_DEV_SCREEN && d->class->flush != NULL)
1151     {
1152       outp_close_page (d);
1153       d->class->flush (d);
1154     }
1155 }
1156
1157 /* Returns the width of string S, in device units, when output on
1158    device D. */
1159 int
1160 outp_string_width (struct outp_driver *d, const char *s, enum outp_font font)
1161 {
1162   struct outp_text text;
1163   int width;
1164
1165   text.font = font;
1166   text.justification = OUTP_LEFT;
1167   text.string = ss_cstr (s);
1168   text.h = text.v = INT_MAX;
1169   d->class->text_metrics (d, &text, &width, NULL);
1170
1171   return width;
1172 }