Tue Dec 30 22:37:04 2003 Ben Pfaff <blp@gnu.org>
[pspp-builds.git] / src / ascii.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #include <config.h>
21 #include <assert.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <limits.h>
25 #include <stdlib.h>
26 #include "alloc.h"
27 #include "error.h"
28 #include "filename.h"
29 #include "main.h"
30 #include "misc.h"
31 #include "output.h"
32 #include "pool.h"
33 #include "version.h"
34
35 /* ASCII driver options: (defaults listed first)
36
37    output-file="pspp.list"
38    char-set=ascii|latin1
39    form-feed-string="\f"        Written as a formfeed.
40    newline-string=default|"\r\n"|"\n"   
41                                 Written as a newline.
42    paginate=on|off              Formfeeds are desired?
43    tab-width=8                  Width of a tab; 0 to not use tabs.
44    init=""                      Written at beginning of output.
45    done=""                      Written at end of output.
46    
47    headers=on|off               Put headers at top of page?
48    length=66
49    width=130
50    lpi=6                        Only used to determine font size.
51    cpi=10                       
52    squeeze=off|on               Squeeze multiple newlines into exactly one.
53
54    left-margin=0
55    right-margin=0
56    top-margin=2
57    bottom-margin=2
58
59    box[x]="strng"               Sets box character X (X in base 4: 0-3333).
60    italic-on=overstrike|"strng" Turns on italic (underline).
61    italic-off=""|"strng"        Turns off italic; ignored for overstrike.
62    bold-on=overstrike|"strng"   Turns on bold.
63    bold-off=""|"strng"          Turns off bold; ignored for overstrike.
64    bold-italic-on=overstrike|"strng" Turns on bold-italic.
65    bold-italic-off=""|"strng"   Turns off bold-italic; ignored for overstrike.
66    overstrike-style=single|line Can we print a whole line then BS over it, or
67    must we go char by char, as on a terminal?
68    carriage-return-style=bs|cr  Must we return the carriage with a sequence of
69    BSes, or will a single CR do it?
70  */
71
72 /* Disable messages by failed range checks. */
73 /*#define SUPPRESS_WARNINGS 1 */
74
75 /* Character set. */
76 enum
77   {
78     CHS_ASCII,                  /* 7-bit ASCII */
79     CHS_LATIN1                  /* Latin 1; not really supported at the moment */
80   };
81
82 /* Overstrike style. */
83 enum
84   {
85     OVS_SINGLE,                 /* Overstrike each character: "a\b_b\b_c\b_" */
86     OVS_LINE                    /* Overstrike lines: "abc\b\b\b___" (or if
87                                    newline is "\r\n", then "abc\r___").  Easier
88                                    on the printer, doesn't work on a tty. */
89   };
90
91 /* Basic output strings. */
92 enum
93   {
94     OPS_INIT,                   /* Document initialization string. */
95     OPS_DONE,                   /* Document uninit string. */
96     OPS_FORMFEED,               /* Formfeed string. */
97     OPS_NEWLINE,                /* Newline string. */
98
99     OPS_COUNT                   /* Number of output strings. */
100   };
101
102 /* Line styles bit shifts. */
103 enum
104   {
105     LNS_TOP = 0,
106     LNS_LEFT = 2,
107     LNS_BOTTOM = 4,
108     LNS_RIGHT = 6,
109
110     LNS_COUNT = 256
111   };
112
113 /* Carriage return style. */
114 enum
115   {
116     CRS_BS,                     /* Multiple backspaces. */
117     CRS_CR                      /* Single carriage return. */
118   };
119
120 /* Assembles a byte from four taystes. */
121 #define TAYSTE2BYTE(T, L, B, R)                 \
122         (((T) << LNS_TOP)                       \
123          | ((L) << LNS_LEFT)                    \
124          | ((B) << LNS_BOTTOM)                  \
125          | ((R) << LNS_RIGHT))
126
127 /* Extract tayste with shift value S from byte B. */
128 #define BYTE2TAYSTE(B, S)                       \
129         (((B) >> (S)) & 3)
130
131 /* Font style; take one of the first group |'d with one of the second group. */
132 enum
133   {
134     FSTY_ON = 000,              /* Turn font on. */
135     FSTY_OFF = 001,             /* Turn font off. */
136
137     FSTY_ITALIC = 0,            /* Italic font. */
138     FSTY_BOLD = 2,              /* Bold font. */
139     FSTY_BOLD_ITALIC = 4,       /* Bold-italic font. */
140
141     FSTY_COUNT = 6              /* Number of font styles. */
142   };
143
144 /* ASCII output driver extension record. */
145 struct ascii_driver_ext
146   {
147     /* User parameters. */
148     int char_set;               /* CHS_ASCII/CHS_LATIN1; no-op right now. */
149     int headers;                /* 1=print headers at top of page. */
150     int page_length;            /* Page length in lines. */
151     int page_width;             /* Page width in characters. */
152     int lpi;                    /* Lines per inch. */
153     int cpi;                    /* Characters per inch. */
154     int left_margin;            /* Left margin in characters. */
155     int right_margin;           /* Right margin in characters. */
156     int top_margin;             /* Top margin in lines. */
157     int bottom_margin;          /* Bottom margin in lines. */
158     int paginate;               /* 1=insert formfeeds. */
159     int tab_width;              /* Width of a tab; 0 not to use tabs. */
160     struct len_string ops[OPS_COUNT]; /* Basic output strings. */
161     struct len_string box[LNS_COUNT]; /* Line & box drawing characters. */
162     struct len_string fonts[FSTY_COUNT]; /* Font styles; NULL=overstrike. */
163     int overstrike_style;       /* OVS_SINGLE or OVS_LINE. */
164     int carriage_return_style;  /* Carriage return style. */
165     int squeeze_blank_lines;    /* 1=squeeze multiple blank lines into one. */
166
167     /* Internal state. */
168     struct file_ext file;       /* Output file. */
169     int page_number;            /* Current page number. */
170     unsigned short *page;       /* Page content. */
171     int page_size;              /* Number of bytes allocated for page, attr. */
172     int *line_len;              /* Length of each line in page, attr. */
173     int line_len_size;          /* Number of ints allocated for line_len. */
174     int w, l;                   /* Actual width & length w/o margins, etc. */
175     int n_output;               /* Number of lines output so far. */
176     int cur_font;               /* Current font by OUTP_F_*. */
177 #if GLOBAL_DEBUGGING
178     int debug;                  /* Set by som_text_draw(). */
179 #endif
180   };
181
182 static struct pool *ascii_pool;
183
184 static int postopen (struct file_ext *);
185 static int preclose (struct file_ext *);
186
187 static int
188 ascii_open_global (struct outp_class *this unused)
189 {
190   ascii_pool = pool_create ();
191   return 1;
192 }
193
194 static int
195 ascii_close_global (struct outp_class *this unused)
196 {
197   pool_destroy (ascii_pool);
198   return 1;
199 }
200
201 static int *
202 ascii_font_sizes (struct outp_class *this unused, int *n_valid_sizes)
203 {
204   static int valid_sizes[] = {12, 12, 0, 0};
205
206   assert (n_valid_sizes);
207   *n_valid_sizes = 1;
208   return valid_sizes;
209 }
210
211 static int
212 ascii_preopen_driver (struct outp_driver *this)
213 {
214   struct ascii_driver_ext *x;
215   int i;
216   
217   assert (this->driver_open == 0);
218   msg (VM (1), _("ASCII driver initializing as `%s'..."), this->name);
219   this->ext = x = xmalloc (sizeof (struct ascii_driver_ext));
220   x->char_set = CHS_ASCII;
221   x->headers = 1;
222   x->page_length = 66;
223   x->page_width = 79;
224   x->lpi = 6;
225   x->cpi = 10;
226   x->left_margin = 0;
227   x->right_margin = 0;
228   x->top_margin = 2;
229   x->bottom_margin = 2;
230   x->paginate = 1;
231   x->tab_width = 8;
232   for (i = 0; i < OPS_COUNT; i++)
233     ls_null (&x->ops[i]);
234   for (i = 0; i < LNS_COUNT; i++)
235     ls_null (&x->box[i]);
236   for (i = 0; i < FSTY_COUNT; i++)
237     ls_null (&x->fonts[i]);
238   x->overstrike_style = OVS_SINGLE;
239   x->carriage_return_style = CRS_BS;
240   x->squeeze_blank_lines = 0;
241   x->file.filename = NULL;
242   x->file.mode = "wb";
243   x->file.file = NULL;
244   x->file.sequence_no = &x->page_number;
245   x->file.param = x;
246   x->file.postopen = postopen;
247   x->file.preclose = preclose;
248   x->page_number = 0;
249   x->page = NULL;
250   x->page_size = 0;
251   x->line_len = NULL;
252   x->line_len_size = 0;
253   x->n_output = 0;
254   x->cur_font = OUTP_F_R;
255 #if GLOBAL_DEBUGGING
256   x->debug = 0;
257 #endif
258   return 1;
259 }
260
261 static int
262 ascii_postopen_driver (struct outp_driver *this)
263 {
264   struct ascii_driver_ext *x = this->ext;
265   
266   assert (this->driver_open == 0);
267   
268   if (NULL == x->file.filename)
269     x->file.filename = xstrdup ("pspp.list");
270   
271   x->w = x->page_width - x->left_margin - x->right_margin;
272   x->l = (x->page_length - (x->headers ? 3 : 0) - x->top_margin
273           - x->bottom_margin - 1);
274   if (x->w < 59 || x->l < 15)
275     {
276       msg (SE, _("ascii driver: Area of page excluding margins and headers "
277                  "must be at least 59 characters wide by 15 lines long.  Page as "
278                  "configured is only %d characters by %d lines."), x->w, x->l);
279       return 0;
280     }
281   
282   this->res = x->lpi * x->cpi;
283   this->horiz = x->lpi;
284   this->vert = x->cpi;
285   this->width = x->w * this->horiz;
286   this->length = x->l * this->vert;
287   
288   if (ls_null_p (&x->ops[OPS_FORMFEED]))
289     ls_create (ascii_pool, &x->ops[OPS_FORMFEED], "\f");
290   if (ls_null_p (&x->ops[OPS_NEWLINE])
291       || !strcmp (ls_value (&x->ops[OPS_NEWLINE]), "default"))
292     {
293       ls_create (ascii_pool, &x->ops[OPS_NEWLINE], "\n");
294       x->file.mode = "wt";
295     }
296   
297   {
298     int i;
299     
300     for (i = 0; i < LNS_COUNT; i++)
301       {
302         char c[2];
303         c[1] = 0;
304         if (!ls_null_p (&x->box[i]))
305           continue;
306         switch (i)
307           {
308           case TAYSTE2BYTE (0, 0, 0, 0):
309             c[0] = ' ';
310             break;
311
312           case TAYSTE2BYTE (0, 1, 0, 0):
313           case TAYSTE2BYTE (0, 1, 0, 1):
314           case TAYSTE2BYTE (0, 0, 0, 1):
315             c[0] = '-';
316             break;
317
318           case TAYSTE2BYTE (1, 0, 0, 0):
319           case TAYSTE2BYTE (1, 0, 1, 0):
320           case TAYSTE2BYTE (0, 0, 1, 0):
321             c[0] = '|';
322             break;
323
324           case TAYSTE2BYTE (0, 3, 0, 0):
325           case TAYSTE2BYTE (0, 3, 0, 3):
326           case TAYSTE2BYTE (0, 0, 0, 3):
327           case TAYSTE2BYTE (0, 2, 0, 0):
328           case TAYSTE2BYTE (0, 2, 0, 2):
329           case TAYSTE2BYTE (0, 0, 0, 2):
330             c[0] = '=';
331             break;
332
333           case TAYSTE2BYTE (3, 0, 0, 0):
334           case TAYSTE2BYTE (3, 0, 3, 0):
335           case TAYSTE2BYTE (0, 0, 3, 0):
336           case TAYSTE2BYTE (2, 0, 0, 0):
337           case TAYSTE2BYTE (2, 0, 2, 0):
338           case TAYSTE2BYTE (0, 0, 2, 0):
339             c[0] = '#';
340             break;
341
342           default:
343             if (BYTE2TAYSTE (i, LNS_LEFT) > 1
344                 || BYTE2TAYSTE (i, LNS_TOP) > 1
345                 || BYTE2TAYSTE (i, LNS_RIGHT) > 1
346                 || BYTE2TAYSTE (i, LNS_BOTTOM) > 1)
347               c[0] = '#';
348             else
349               c[0] = '+';
350             break;
351           }
352         ls_create (ascii_pool, &x->box[i], c);
353       }
354   }
355   
356   {
357     int i;
358     
359     this->cp_x = this->cp_y = 0;
360     this->font_height = this->vert;
361     this->prop_em_width = this->horiz;
362     this->fixed_width = this->horiz;
363
364     this->horiz_line_width[0] = 0;
365     this->vert_line_width[0] = 0;
366     
367     for (i = 1; i < OUTP_L_COUNT; i++)
368       {
369         this->horiz_line_width[i] = this->vert;
370         this->vert_line_width[i] = this->horiz;
371       }
372     
373     for (i = 0; i < (1 << OUTP_L_COUNT); i++)
374       {
375         this->horiz_line_spacing[i] = (i & ~1) ? this->vert : 0;
376         this->vert_line_spacing[i] = (i & ~1) ? this->horiz : 0;
377       }
378   }
379   
380   this->driver_open = 1;
381   msg (VM (2), _("%s: Initialization complete."), this->name);
382
383   return 1;
384 }
385
386 static int
387 ascii_close_driver (struct outp_driver *this)
388 {
389   struct ascii_driver_ext *x = this->ext;
390   
391   assert (this->driver_open == 1);
392   msg (VM (2), _("%s: Beginning closing..."), this->name);
393   
394   x = this->ext;
395   free (x->page);
396   free (x->line_len);
397   fn_close_ext (&x->file);
398   free (x->file.filename);
399   free (x);
400   
401   this->driver_open = 0;
402   msg (VM (3), _("%s: Finished closing."), this->name);
403   
404   return 1;
405 }
406
407 /* Generic option types. */
408 enum
409   {
410     pos_int_arg = -10,
411     nonneg_int_arg,
412     string_arg,
413     font_string_arg,
414     boolean_arg
415   };
416
417 static struct outp_option option_tab[] =
418   {
419     {"headers", boolean_arg, 0},
420     {"output-file", 1, 0},
421     {"char-set", 2, 0},
422     {"length", pos_int_arg, 0},
423     {"width", pos_int_arg, 1},
424     {"lpi", pos_int_arg, 2},
425     {"cpi", pos_int_arg, 3},
426     {"init", string_arg, 0},
427     {"done", string_arg, 1},
428     {"left-margin", nonneg_int_arg, 0},
429     {"right-margin", nonneg_int_arg, 1},
430     {"top-margin", nonneg_int_arg, 2},
431     {"bottom-margin", nonneg_int_arg, 3},
432     {"paginate", boolean_arg, 1},
433     {"form-feed-string", string_arg, 2},
434     {"newline-string", string_arg, 3},
435     {"italic-on", font_string_arg, 0},
436     {"italic-off", font_string_arg, 1},
437     {"bold-on", font_string_arg, 2},
438     {"bold-off", font_string_arg, 3},
439     {"bold-italic-on", font_string_arg, 4},
440     {"bold-italic-off", font_string_arg, 5},
441     {"overstrike-style", 3, 0},
442     {"tab-width", nonneg_int_arg, 4},
443     {"carriage-return-style", 4, 0},
444     {"squeeze", boolean_arg, 2},
445     {"", 0, 0},
446   };
447 static struct outp_option_info option_info;
448
449 static void
450 ascii_option (struct outp_driver *this, const char *key,
451               const struct string *val)
452 {
453   struct ascii_driver_ext *x = this->ext;
454   int cat, subcat;
455   const char *value;
456
457   value = ds_value (val);
458   if (!strncmp (key, "box[", 4))
459     {
460       char *tail;
461       int indx = strtol (&key[4], &tail, 4);
462       if (*tail != ']' || indx < 0 || indx > LNS_COUNT)
463         {
464           msg (SE, _("Bad index value for `box' key: syntax is box[INDEX], "
465                "0 <= INDEX < %d decimal, with INDEX expressed in base 4."),
466                LNS_COUNT);
467           return;
468         }
469       if (!ls_null_p (&x->box[indx]))
470         msg (SW, _("Duplicate value for key `%s'."), key);
471       ls_create (ascii_pool, &x->box[indx], value);
472       return;
473     }
474
475   cat = outp_match_keyword (key, option_tab, &option_info, &subcat);
476   switch (cat)
477     {
478     case 0:
479       msg (SE, _("Unknown configuration parameter `%s' for ascii device driver."),
480            key);
481       break;
482     case 1:
483       free (x->file.filename);
484       x->file.filename = xstrdup (value);
485       break;
486     case 2:
487       if (!strcmp (value, "ascii"))
488         x->char_set = CHS_ASCII;
489       else if (!strcmp (value, "latin1"))
490         x->char_set = CHS_LATIN1;
491       else
492         msg (SE, _("Unknown character set `%s'.  Valid character sets are "
493              "`ascii' and `latin1'."), value);
494       break;
495     case 3:
496       if (!strcmp (value, "single"))
497         x->overstrike_style = OVS_SINGLE;
498       else if (!strcmp (value, "line"))
499         x->overstrike_style = OVS_LINE;
500       else
501         msg (SE, _("Unknown overstrike style `%s'.  Valid overstrike styles "
502              "are `single' and `line'."), value);
503       break;
504     case 4:
505       if (!strcmp (value, "bs"))
506         x->carriage_return_style = CRS_BS;
507       else if (!strcmp (value, "cr"))
508         x->carriage_return_style = CRS_CR;
509       else
510         msg (SE, _("Unknown carriage return style `%s'.  Valid carriage "
511              "return styles are `cr' and `bs'."), value);
512       break;
513     case pos_int_arg:
514       {
515         char *tail;
516         int arg;
517
518         errno = 0;
519         arg = strtol (value, &tail, 0);
520         if (arg < 1 || errno == ERANGE || *tail)
521           {
522             msg (SE, _("Positive integer required as value for `%s'."), key);
523             break;
524           }
525         switch (subcat)
526           {
527           case 0:
528             x->page_length = arg;
529             break;
530           case 1:
531             x->page_width = arg;
532             break;
533           case 2:
534             x->lpi = arg;
535             break;
536           case 3:
537             x->cpi = arg;
538             break;
539           default:
540             assert (0);
541           }
542       }
543       break;
544     case nonneg_int_arg:
545       {
546         char *tail;
547         int arg;
548
549         errno = 0;
550         arg = strtol (value, &tail, 0);
551         if (arg < 0 || errno == ERANGE || *tail)
552           {
553             msg (SE, _("Zero or positive integer required as value for `%s'."),
554                  key);
555             break;
556           }
557         switch (subcat)
558           {
559           case 0:
560             x->left_margin = arg;
561             break;
562           case 1:
563             x->right_margin = arg;
564             break;
565           case 2:
566             x->top_margin = arg;
567             break;
568           case 3:
569             x->bottom_margin = arg;
570             break;
571           case 4:
572             x->tab_width = arg;
573             break;
574           default:
575             assert (0);
576           }
577       }
578       break;
579     case string_arg:
580       {
581         struct len_string *s;
582         switch (subcat)
583           {
584           case 0:
585             s = &x->ops[OPS_INIT];
586             break;
587           case 1:
588             s = &x->ops[OPS_DONE];
589             break;
590           case 2:
591             s = &x->ops[OPS_FORMFEED];
592             break;
593           case 3:
594             s = &x->ops[OPS_NEWLINE];
595             break;
596           default:
597             assert (0);
598           }
599         ls_create (ascii_pool, s, value);
600       }
601       break;
602     case font_string_arg:
603       {
604         if (!strcmp (value, "overstrike"))
605           {
606             ls_destroy (ascii_pool, &x->fonts[subcat]);
607             return;
608           }
609         ls_create (ascii_pool, &x->fonts[subcat], value);
610       }
611       break;
612     case boolean_arg:
613       {
614         int setting;
615         if (!strcmp (value, "on") || !strcmp (value, "true")
616             || !strcmp (value, "yes") || atoi (value))
617           setting = 1;
618         else if (!strcmp (value, "off") || !strcmp (value, "false")
619                  || !strcmp (value, "no") || !strcmp (value, "0"))
620           setting = 0;
621         else
622           {
623             msg (SE, _("Boolean value expected for %s."), key);
624             return;
625           }
626         switch (subcat)
627           {
628           case 0:
629             x->headers = setting;
630             break;
631           case 1:
632             x->paginate = setting;
633             break;
634           case 2:
635             x->squeeze_blank_lines = setting;
636             break;
637           default:
638             assert (0);
639           }
640       }
641       break;
642     default:
643       assert (0);
644     }
645 }
646
647 int
648 postopen (struct file_ext *f)
649 {
650   struct ascii_driver_ext *x = f->param;
651   struct len_string *s = &x->ops[OPS_INIT];
652
653   if (!ls_empty_p (s) && fwrite (ls_value (s), ls_length (s), 1, f->file) < 1)
654     {
655       msg (ME, _("ASCII output driver: %s: %s"),
656            f->filename, strerror (errno));
657       return 0;
658     }
659   return 1;
660 }
661
662 int
663 preclose (struct file_ext *f)
664 {
665   struct ascii_driver_ext *x = f->param;
666   struct len_string *d = &x->ops[OPS_DONE];
667
668   if (!ls_empty_p (d) && fwrite (ls_value (d), ls_length (d), 1, f->file) < 1)
669     {
670       msg (ME, _("ASCII output driver: %s: %s"),
671            f->filename, strerror (errno));
672       return 0;
673     }
674   return 1;
675 }
676
677 static int
678 ascii_open_page (struct outp_driver *this)
679 {
680   struct ascii_driver_ext *x = this->ext;
681   int req_page_size;
682
683   assert (this->driver_open && !this->page_open);
684   x->page_number++;
685   if (!fn_open_ext (&x->file))
686     {
687       msg (ME, _("ASCII output driver: %s: %s"), x->file.filename,
688            strerror (errno));
689       return 0;
690     }
691
692   req_page_size = x->w * x->l;
693   if (req_page_size > x->page_size || req_page_size / 2 < x->page_size)
694     {
695       x->page_size = req_page_size;
696       x->page = xrealloc (x->page, sizeof *x->page * req_page_size);
697     }
698
699   if (x->l > x->line_len_size)
700     {
701       x->line_len_size = x->l;
702       x->line_len = xrealloc (x->line_len,
703                               sizeof *x->line_len * x->line_len_size);
704     }
705
706   memset (x->line_len, 0, sizeof *x->line_len * x->l);
707
708   this->page_open = 1;
709   return 1;
710 }
711
712 /* Ensures that at least the first L characters of line I in the
713    driver identified by struct ascii_driver_ext *X have been cleared out. */
714 static inline void
715 expand_line (struct ascii_driver_ext *x, int i, int l)
716 {
717   int limit = i * x->w + l;
718   int j;
719
720   for (j = i * x->w + x->line_len[i]; j < limit; j++)
721     x->page[j] = ' ';
722   x->line_len[i] = l;
723 }
724
725 /* Puts line L at (H,K) in the current output page.  Assumes
726    struct ascii_driver_ext named `ext'. */
727 #define draw_line(H, K, L)                              \
728         ext->page[ext->w * (K) + (H)] = (L) | 0x800
729
730 /* Line styles for each position. */
731 #define T(STYLE) (STYLE<<LNS_TOP)
732 #define L(STYLE) (STYLE<<LNS_LEFT)
733 #define B(STYLE) (STYLE<<LNS_BOTTOM)
734 #define R(STYLE) (STYLE<<LNS_RIGHT)
735
736 static void
737 ascii_line_horz (struct outp_driver *this, const struct rect *r,
738                  const struct color *c unused, int style)
739 {
740   struct ascii_driver_ext *ext = this->ext;
741   int x1 = r->x1 / this->horiz;
742   int x2 = r->x2 / this->horiz;
743   int y1 = r->y1 / this->vert;
744   int x;
745
746   assert (this->driver_open && this->page_open);
747   if (x1 == x2)
748     return;
749 #if GLOBAL_DEBUGGING
750   if (x1 > x2
751       || x1 < 0 || x1 >= ext->w
752       || x2 <= 0 || x2 > ext->w
753       || y1 < 0 || y1 >= ext->l)
754     {
755 #if !SUPPRESS_WARNINGS
756       printf (_("ascii_line_horz: bad hline (%d,%d),%d out of (%d,%d)\n"),
757               x1, x2, y1, ext->w, ext->l);
758 #endif
759       return;
760     }
761 #endif
762
763   if (ext->line_len[y1] < x2)
764     expand_line (ext, y1, x2);
765
766   for (x = x1; x < x2; x++)
767     draw_line (x, y1, (style << LNS_LEFT) | (style << LNS_RIGHT));
768 }
769
770 static void
771 ascii_line_vert (struct outp_driver *this, const struct rect *r,
772                  const struct color *c unused, int style)
773 {
774   struct ascii_driver_ext *ext = this->ext;
775   int x1 = r->x1 / this->horiz;
776   int y1 = r->y1 / this->vert;
777   int y2 = r->y2 / this->vert;
778   int y;
779
780   assert (this->driver_open && this->page_open);
781   if (y1 == y2)
782     return;
783 #if GLOBAL_DEBUGGING
784   if (y1 > y2
785       || x1 < 0 || x1 >= ext->w
786       || y1 < 0 || y1 >= ext->l
787       || y2 < 0 || y2 > ext->l)
788     {
789 #if !SUPPRESS_WARNINGS
790       printf (_("ascii_line_vert: bad vline %d,(%d,%d) out of (%d,%d)\n"),
791               x1, y1, y2, ext->w, ext->l);
792 #endif
793       return;
794     }
795 #endif
796
797   for (y = y1; y < y2; y++)
798     if (ext->line_len[y] <= x1)
799       expand_line (ext, y, x1 + 1);
800
801   for (y = y1; y < y2; y++)
802     draw_line (x1, y, (style << LNS_TOP) | (style << LNS_BOTTOM));
803 }
804
805 static void
806 ascii_line_intersection (struct outp_driver *this, const struct rect *r,
807                          const struct color *c unused,
808                          const struct outp_styles *style)
809 {
810   struct ascii_driver_ext *ext = this->ext;
811   int x = r->x1 / this->horiz;
812   int y = r->y1 / this->vert;
813   int l;
814
815   assert (this->driver_open && this->page_open);
816 #if GLOBAL_DEBUGGING
817   if (x < 0 || x >= ext->w || y < 0 || y >= ext->l)
818     {
819 #if !SUPPRESS_WARNINGS
820       printf (_("ascii_line_intersection: bad intsct (%d,%d) out of (%d,%d)\n"),
821               x, y, ext->w, ext->l);
822 #endif
823       return;
824     }
825 #endif
826
827   l = ((style->l << LNS_LEFT) | (style->r << LNS_RIGHT)
828        | (style->t << LNS_TOP) | (style->b << LNS_BOTTOM));
829
830   if (ext->line_len[y] <= x)
831     expand_line (ext, y, x + 1);
832   draw_line (x, y, l);
833 }
834
835 /* FIXME: Later we could set this up so that for certain devices it
836    performs shading? */
837 static void
838 ascii_box (struct outp_driver *this unused, const struct rect *r unused,
839            const struct color *bord unused, const struct color *fill unused)
840 {
841   assert (this->driver_open && this->page_open);
842 }
843
844 /* Polylines not supported. */
845 static void
846 ascii_polyline_begin (struct outp_driver *this unused, const struct color *c unused)
847 {
848   assert (this->driver_open && this->page_open);
849 }
850 static void
851 ascii_polyline_point (struct outp_driver *this unused, int x unused, int y unused)
852 {
853   assert (this->driver_open && this->page_open);
854 }
855 static void
856 ascii_polyline_end (struct outp_driver *this unused)
857 {
858   assert (this->driver_open && this->page_open);
859 }
860
861 static void
862 ascii_text_set_font_by_name (struct outp_driver * this, const char *s)
863 {
864   struct ascii_driver_ext *x = this->ext;
865   int len = strlen (s);
866
867   assert (this->driver_open && this->page_open);
868   x->cur_font = OUTP_F_R;
869   if (len == 0)
870     return;
871   if (s[len - 1] == 'I')
872     {
873       if (len > 1 && s[len - 2] == 'B')
874         x->cur_font = OUTP_F_BI;
875       else
876         x->cur_font = OUTP_F_I;
877     }
878   else if (s[len - 1] == 'B')
879     x->cur_font = OUTP_F_B;
880 }
881
882 static void
883 ascii_text_set_font_by_position (struct outp_driver *this, int pos)
884 {
885   struct ascii_driver_ext *x = this->ext;
886   assert (this->driver_open && this->page_open);
887   x->cur_font = pos >= 0 && pos < 4 ? pos : 0;
888 }
889
890 static void
891 ascii_text_set_font_by_family (struct outp_driver *this unused, const char *s unused)
892 {
893   assert (this->driver_open && this->page_open);
894 }
895
896 static const char *
897 ascii_text_get_font_name (struct outp_driver *this)
898 {
899   struct ascii_driver_ext *x = this->ext;
900
901   assert (this->driver_open && this->page_open);
902   switch (x->cur_font)
903     {
904     case OUTP_F_R:
905       return "R";
906     case OUTP_F_I:
907       return "I";
908     case OUTP_F_B:
909       return "B";
910     case OUTP_F_BI:
911       return "BI";
912     default:
913       assert (0);
914     }
915   abort ();
916 }
917
918 static const char *
919 ascii_text_get_font_family (struct outp_driver *this unused)
920 {
921   assert (this->driver_open && this->page_open);
922   return "";
923 }
924
925 static int
926 ascii_text_set_size (struct outp_driver *this, int size)
927 {
928   assert (this->driver_open && this->page_open);
929   return size == this->vert;
930 }
931
932 static int
933 ascii_text_get_size (struct outp_driver *this, int *em_width)
934 {
935   assert (this->driver_open && this->page_open);
936   if (em_width)
937     *em_width = this->horiz;
938   return this->vert;
939 }
940
941 static void text_draw (struct outp_driver *this, struct outp_text *t);
942
943 /* Divides the text T->S into lines of width T->H.  Sets T->V to the
944    number of lines necessary.  Actually draws the text if DRAW is
945    nonzero.
946
947    You probably don't want to look at this code. */
948 static void
949 delineate (struct outp_driver *this, struct outp_text *t, int draw)
950 {
951   /* Width we're fitting everything into. */
952   int width = t->h / this->horiz;
953
954   /* Maximum `y' position we can write to. */
955   int max_y;
956
957   /* Current position in string, character following end of string. */
958   const char *s = ls_value (&t->s);
959   const char *end = ls_end (&t->s);
960
961   /* Temporary struct outp_text to pass to low-level function. */
962   struct outp_text temp;
963
964 #if GLOBAL_DEBUGGING && 0
965   if (!ext->debug)
966     {
967       ext->debug = 1;
968       printf (_("%s: horiz=%d, vert=%d\n"), this->name, this->horiz, this->vert);
969     }
970 #endif
971
972   if (!width)
973     {
974       t->h = t->v = 0;
975       return;
976     }
977
978   if (draw)
979     {
980       temp.options = t->options;
981       ls_shallow_copy (&temp.s, &t->s);
982       temp.h = t->h / this->horiz;
983       temp.x = t->x / this->horiz;
984     }
985   else
986     t->y = 0;
987   temp.y = t->y / this->vert;
988
989   if (t->options & OUTP_T_VERT)
990     max_y = (t->v / this->vert) + temp.y - 1;
991   else
992     max_y = INT_MAX;
993   
994   while (end - s > width)
995     {
996       const char *beg = s;
997       const char *space;
998
999       /* Find first space before &s[width]. */
1000       space = &s[width];
1001       for (;;)
1002         {
1003           if (space > s)
1004             {
1005               if (!isspace ((unsigned char) space[-1]))
1006                 {
1007                   space--;
1008                   continue;
1009                 }
1010               else
1011                 s = space;
1012             }
1013           else
1014             s = space = &s[width];
1015           break;
1016         }
1017
1018       /* Draw text. */
1019       if (draw)
1020         {
1021           ls_init (&temp.s, beg, space - beg);
1022           temp.w = space - beg;
1023           text_draw (this, &temp);
1024         }
1025       if (++temp.y > max_y)
1026         return;
1027
1028       /* Find first nonspace after space. */
1029       while (s < end && isspace ((unsigned char) *s))
1030         s++;
1031     }
1032   if (s < end)
1033     {
1034       if (draw)
1035         {
1036           ls_init (&temp.s, s, end - s);
1037           temp.w = end - s;
1038           text_draw (this, &temp);
1039         }
1040       temp.y++;
1041     }
1042
1043   t->v = (temp.y * this->vert) - t->y;
1044 }
1045
1046 static void
1047 ascii_text_metrics (struct outp_driver *this, struct outp_text *t)
1048 {
1049   assert (this->driver_open && this->page_open);
1050   if (!(t->options & OUTP_T_HORZ))
1051     {
1052       t->v = this->vert;
1053       t->h = ls_length (&t->s) * this->horiz;
1054     }
1055   else
1056     delineate (this, t, 0);
1057 }
1058
1059 static void
1060 ascii_text_draw (struct outp_driver *this, struct outp_text *t)
1061 {
1062   /* FIXME: orientations not supported. */
1063   assert (this->driver_open && this->page_open);
1064   if (!(t->options & OUTP_T_HORZ))
1065     {
1066       struct outp_text temp;
1067
1068       temp.options = t->options;
1069       temp.s = t->s;
1070       temp.h = temp.v = 0;
1071       temp.x = t->x / this->horiz;
1072       temp.y = t->y / this->vert;
1073       text_draw (this, &temp);
1074       ascii_text_metrics (this, t);
1075       
1076       return;
1077     }
1078   delineate (this, t, 1);
1079 }
1080
1081 static void
1082 text_draw (struct outp_driver *this, struct outp_text *t)
1083 {
1084   struct ascii_driver_ext *ext = this->ext;
1085   unsigned attr = ext->cur_font << 8;
1086
1087   int x = t->x;
1088   int y = t->y * ext->w;
1089
1090   char *s = ls_value (&t->s);
1091
1092   /* Expand the line with the assumption that S takes up LEN character
1093      spaces (sometimes it takes up less). */
1094   int min_len;
1095
1096   assert (this->driver_open && this->page_open);
1097   switch (t->options & OUTP_T_JUST_MASK)
1098     {
1099     case OUTP_T_JUST_LEFT:
1100       break;
1101     case OUTP_T_JUST_CENTER:
1102       x -= (t->h - t->w) / 2;   /* fall through */
1103     case OUTP_T_JUST_RIGHT:
1104       x += (t->h - t->w);
1105       break;
1106     default:
1107       assert (0);
1108     }
1109
1110   if (!(t->y < ext->l && x < ext->w))
1111     return;
1112   min_len = min (x + ls_length (&t->s), ext->w);
1113   if (ext->line_len[t->y] < min_len)
1114     expand_line (ext, t->y, min_len);
1115
1116   {
1117     int len = ls_length (&t->s);
1118
1119     if (len + x > ext->w)
1120       len = ext->w - x;
1121     while (len--)
1122       ext->page[y + x++] = *s++ | attr;
1123   }
1124 }
1125 \f
1126 /* ascii_close_page () and support routines. */
1127
1128 #define LINE_BUF_SIZE 1024
1129 static unsigned char *line_buf;
1130 static unsigned char *line_p;
1131
1132 static inline int
1133 commit_line_buf (struct outp_driver *this)
1134 {
1135   struct ascii_driver_ext *x = this->ext;
1136   
1137   if ((int) fwrite (line_buf, 1, line_p - line_buf, x->file.file)
1138       < line_p - line_buf)
1139     {
1140       msg (ME, _("Writing `%s': %s"), x->file.filename, strerror (errno));
1141       return 0;
1142     }
1143
1144   line_p = line_buf;
1145   return 1;
1146 }
1147
1148 /* Writes everything from BP to EP exclusive into line_buf, or to
1149    THIS->output if line_buf overflows. */
1150 static inline void
1151 output_string (struct outp_driver *this, const char *bp, const char *ep)
1152 {
1153   if (LINE_BUF_SIZE - (line_p - line_buf) >= ep - bp)
1154     {
1155       memcpy (line_p, bp, ep - bp);
1156       line_p += ep - bp;
1157     }
1158   else
1159     while (bp < ep)
1160       {
1161         if (LINE_BUF_SIZE - (line_p - line_buf) <= 1 && !commit_line_buf (this))
1162           return;
1163         *line_p++ = *bp++;
1164       }
1165 }
1166
1167 /* Writes everything from BP to EP exclusive into line_buf, or to
1168    THIS->output if line_buf overflows.  Returns 1 if additional passes
1169    over the line are required.  FIXME: probably could do a lot of
1170    optimization here. */
1171 static inline int
1172 output_shorts (struct outp_driver *this,
1173                const unsigned short *bp, const unsigned short *ep)
1174 {
1175   struct ascii_driver_ext *ext = this->ext;
1176   size_t remaining = LINE_BUF_SIZE - (line_p - line_buf);
1177   int result = 0;
1178
1179   for (; bp < ep; bp++)
1180     {
1181       if (*bp & 0x800)
1182         {
1183           struct len_string *box = &ext->box[*bp & 0xff];
1184           size_t len = ls_length (box);
1185
1186           if (remaining >= len)
1187             {
1188               memcpy (line_p, ls_value (box), len);
1189               line_p += len;
1190               remaining -= len;
1191             }
1192           else
1193             {
1194               if (!commit_line_buf (this))
1195                 return 0;
1196               output_string (this, ls_value (box), ls_end (box));
1197               remaining = LINE_BUF_SIZE - (line_p - line_buf);
1198             }
1199         }
1200       else if (*bp & 0x0300)
1201         {
1202           struct len_string *on;
1203           char buf[5];
1204           int len;
1205
1206           switch (*bp & 0x0300)
1207             {
1208             case OUTP_F_I << 8:
1209               on = &ext->fonts[FSTY_ON | FSTY_ITALIC];
1210               break;
1211             case OUTP_F_B << 8:
1212               on = &ext->fonts[FSTY_ON | FSTY_BOLD];
1213               break;
1214             case OUTP_F_BI << 8:
1215               on = &ext->fonts[FSTY_ON | FSTY_BOLD_ITALIC];
1216               break;
1217             default:
1218               assert (0);
1219             }
1220           if (!on)
1221             {
1222               if (ext->overstrike_style == OVS_SINGLE)
1223                 switch (*bp & 0x0300)
1224                   {
1225                   case OUTP_F_I << 8:
1226                     buf[0] = '_';
1227                     buf[1] = '\b';
1228                     buf[2] = *bp;
1229                     len = 3;
1230                     break;
1231                   case OUTP_F_B << 8:
1232                     buf[0] = *bp;
1233                     buf[1] = '\b';
1234                     buf[2] = *bp;
1235                     len = 3;
1236                     break;
1237                   case OUTP_F_BI << 8:
1238                     buf[0] = '_';
1239                     buf[1] = '\b';
1240                     buf[2] = *bp;
1241                     buf[3] = '\b';
1242                     buf[4] = *bp;
1243                     len = 5;
1244                     break;
1245                   default:
1246                     assert (0);
1247                   }
1248               else
1249                 {
1250                   buf[0] = *bp;
1251                   result = len = 1;
1252                 }
1253             }
1254           else
1255             {
1256               buf[0] = *bp;
1257               len = 1;
1258             }
1259           output_string (this, buf, &buf[len]);
1260         }
1261       else if (remaining)
1262         {
1263           *line_p++ = *bp;
1264           remaining--;
1265         }
1266       else
1267         {
1268           if (!commit_line_buf (this))
1269             return 0;
1270           remaining = LINE_BUF_SIZE - (line_p - line_buf);
1271           *line_p++ = *bp;
1272         }
1273     }
1274
1275   return result;
1276 }
1277
1278 /* Writes CH into line_buf N times, or to THIS->output if line_buf
1279    overflows. */
1280 static inline void
1281 output_char (struct outp_driver *this, int n, int ch)
1282 {
1283   if (LINE_BUF_SIZE - (line_p - line_buf) >= n)
1284     {
1285       memset (line_p, ch, n);
1286       line_p += n;
1287     }
1288   else
1289     while (n--)
1290       {
1291         if (LINE_BUF_SIZE - (line_p - line_buf) <= 1 && !commit_line_buf (this))
1292           return;
1293         *line_p++ = ch;
1294       }
1295 }
1296
1297 /* Advance the carriage from column 0 to the left margin. */
1298 static void
1299 advance_to_left_margin (struct outp_driver *this)
1300 {
1301   struct ascii_driver_ext *ext = this->ext;
1302   int margin;
1303
1304   margin = ext->left_margin;
1305   if (margin == 0)
1306     return;
1307   if (ext->tab_width && margin >= ext->tab_width)
1308     {
1309       output_char (this, margin / ext->tab_width, '\t');
1310       margin %= ext->tab_width;
1311     }
1312   if (margin)
1313     output_char (this, margin, ' ');
1314 }
1315
1316 /* Move the output file carriage N_CHARS left, to the left margin. */
1317 static void
1318 return_carriage (struct outp_driver *this, int n_chars)
1319 {
1320   struct ascii_driver_ext *ext = this->ext;
1321
1322   switch (ext->carriage_return_style)
1323     {
1324     case CRS_BS:
1325       output_char (this, n_chars, '\b');
1326       break;
1327     case CRS_CR:
1328       output_char (this, 1, '\r');
1329       advance_to_left_margin (this);
1330       break;
1331     default:
1332       assert (0);
1333     }
1334 }
1335
1336 /* Writes COUNT lines from the line buffer in THIS, starting at line
1337    number FIRST. */
1338 static void
1339 output_lines (struct outp_driver *this, int first, int count)
1340 {
1341   struct ascii_driver_ext *ext = this->ext;
1342   int line_num;
1343
1344   struct len_string *newline = &ext->ops[OPS_NEWLINE];
1345
1346   int n_chars;
1347   int n_passes;
1348
1349   if (NULL == ext->file.file)
1350     return;
1351
1352   /* Iterate over all the lines to be output. */
1353   for (line_num = first; line_num < first + count; line_num++)
1354     {
1355       unsigned short *p = &ext->page[ext->w * line_num];
1356       unsigned short *end_p = p + ext->line_len[line_num];
1357       unsigned short *bp, *ep;
1358       unsigned short attr = 0;
1359
1360       assert (end_p >= p);
1361
1362       /* Squeeze multiple blank lines into a single blank line if
1363          requested. */
1364       if (ext->squeeze_blank_lines
1365           && line_num > first
1366           && ext->line_len[line_num] == 0
1367           && ext->line_len[line_num - 1] == 0)
1368         continue;
1369
1370       /* Output every character in the line in the appropriate
1371          manner. */
1372       n_passes = 1;
1373       bp = ep = p;
1374       n_chars = 0;
1375       advance_to_left_margin (this);
1376       for (;;)                  
1377         {
1378           while (ep < end_p && attr == (*ep & 0x0300))
1379             ep++;
1380           if (output_shorts (this, bp, ep))
1381             n_passes = 2;
1382           n_chars += ep - bp;
1383           bp = ep;
1384
1385           if (bp >= end_p)
1386             break;
1387
1388           /* Turn off old font. */
1389           if (attr != (OUTP_F_R << 8))
1390             {
1391               struct len_string *off;
1392
1393               switch (attr)
1394                 {
1395                 case OUTP_F_I << 8:
1396                   off = &ext->fonts[FSTY_OFF | FSTY_ITALIC];
1397                   break;
1398                 case OUTP_F_B << 8:
1399                   off = &ext->fonts[FSTY_OFF | FSTY_BOLD];
1400                   break;
1401                 case OUTP_F_BI << 8:
1402                   off = &ext->fonts[FSTY_OFF | FSTY_BOLD_ITALIC];
1403                   break;
1404                 default:
1405                   assert (0);
1406                 }
1407               if (off)
1408                 output_string (this, ls_value (off), ls_end (off));
1409             }
1410
1411           /* Turn on new font. */
1412           attr = (*bp & 0x0300);
1413           if (attr != (OUTP_F_R << 8))
1414             {
1415               struct len_string *on;
1416
1417               switch (attr)
1418                 {
1419                 case OUTP_F_I << 8:
1420                   on = &ext->fonts[FSTY_ON | FSTY_ITALIC];
1421                   break;
1422                 case OUTP_F_B << 8:
1423                   on = &ext->fonts[FSTY_ON | FSTY_BOLD];
1424                   break;
1425                 case OUTP_F_BI << 8:
1426                   on = &ext->fonts[FSTY_ON | FSTY_BOLD_ITALIC];
1427                   break;
1428                 default:
1429                   assert (0);
1430                 }
1431               if (on)
1432                 output_string (this, ls_value (on), ls_end (on));
1433             }
1434
1435           ep = bp + 1;
1436         }
1437       if (n_passes > 1)
1438         {
1439           unsigned char ch;
1440
1441           return_carriage (this, n_chars);
1442           n_chars = 0;
1443           bp = ep = p;
1444           for (;;)
1445             {
1446               while (ep < end_p && (*ep & 0x0300) == (OUTP_F_R << 8))
1447                 ep++;
1448               if (ep >= end_p)
1449                 break;
1450               output_char (this, ep - bp, ' ');
1451
1452               switch (*ep & 0x0300)
1453                 {
1454                 case OUTP_F_I << 8:
1455                   ch = '_';
1456                   break;
1457                 case OUTP_F_B << 8:
1458                   ch = *ep;
1459                   break;
1460                 case OUTP_F_BI << 8:
1461                   ch = *ep;
1462                   n_passes = 3;
1463                   break;
1464                 }
1465               output_char (this, 1, ch);
1466               n_chars += ep - bp + 1;
1467               bp = ep + 1;
1468               ep = bp;
1469             }
1470         }
1471       if (n_passes > 2)
1472         {
1473           return_carriage (this, n_chars);
1474           bp = ep = p;
1475           for (;;)
1476             {
1477               while (ep < end_p && (*ep & 0x0300) != (OUTP_F_BI << 8))
1478                 ep++;
1479               if (ep >= end_p)
1480                 break;
1481               output_char (this, ep - bp, ' ');
1482               output_char (this, 1, '_');
1483               bp = ep + 1;
1484               ep = bp;
1485             }
1486         }
1487
1488       output_string (this, ls_value (newline), ls_end (newline));
1489     }
1490 }
1491
1492 static int
1493 ascii_close_page (struct outp_driver *this)
1494 {
1495   static unsigned char *s;
1496   static int s_len;
1497
1498   struct ascii_driver_ext *x = this->ext;
1499   int nl_len, ff_len, total_len;
1500   unsigned char *cp;
1501   int i;
1502
1503   assert (this->driver_open && this->page_open);
1504   
1505   if (!line_buf)
1506     line_buf = xmalloc (LINE_BUF_SIZE);
1507   line_p = line_buf;
1508
1509   nl_len = ls_length (&x->ops[OPS_NEWLINE]);
1510   if (x->top_margin)
1511     {
1512       total_len = x->top_margin * nl_len;
1513       if (s_len < total_len)
1514         {
1515           s_len = total_len;
1516           s = xrealloc (s, s_len);
1517         }
1518       for (cp = s, i = 0; i < x->top_margin; i++)
1519         {
1520           memcpy (cp, ls_value (&x->ops[OPS_NEWLINE]), nl_len);
1521           cp += nl_len;
1522         }
1523       output_string (this, s, &s[total_len]);
1524     }
1525   if (x->headers)
1526     {
1527       int len;
1528
1529       total_len = nl_len + x->w;
1530       if (s_len < total_len + 1)
1531         {
1532           s_len = total_len + 1;
1533           s = xrealloc (s, s_len);
1534         }
1535       
1536       memset (s, ' ', x->w);
1537
1538       {
1539         char temp[40];
1540
1541         snprintf (temp, 80, _("%s - Page %d"), curdate, x->page_number);
1542         memcpy (&s[x->w - strlen (temp)], temp, strlen (temp));
1543       }
1544
1545       if (outp_title && outp_subtitle)
1546         {
1547           len = min ((int) strlen (outp_title), x->w);
1548           memcpy (s, outp_title, len);
1549         }
1550       memcpy (&s[x->w], ls_value (&x->ops[OPS_NEWLINE]), nl_len);
1551       output_string (this, s, &s[total_len]);
1552
1553       memset (s, ' ', x->w);
1554       len = strlen (version) + 3 + strlen (host_system);
1555       if (len < x->w)
1556         sprintf (&s[x->w - len], "%s - %s" , version, host_system);
1557       if (outp_subtitle || outp_title)
1558         {
1559           char *string = outp_subtitle ? outp_subtitle : outp_title;
1560           len = min ((int) strlen (string), x->w);
1561           memcpy (s, string, len);
1562         }
1563       memcpy (&s[x->w], ls_value (&x->ops[OPS_NEWLINE]), nl_len);
1564       output_string (this, s, &s[total_len]);
1565       output_string (this, &s[x->w], &s[total_len]);
1566     }
1567   if (line_p != line_buf && !commit_line_buf (this))
1568     return 0;
1569
1570   output_lines (this, x->n_output, x->l - x->n_output);
1571
1572   ff_len = ls_length (&x->ops[OPS_FORMFEED]);
1573   total_len = x->bottom_margin * nl_len + ff_len;
1574   if (s_len < total_len)
1575     s = xrealloc (s, total_len);
1576   for (cp = s, i = 0; i < x->bottom_margin; i++)
1577     {
1578       memcpy (cp, ls_value (&x->ops[OPS_NEWLINE]), nl_len);
1579       cp += nl_len;
1580     }
1581   memcpy (cp, ls_value (&x->ops[OPS_FORMFEED]), ff_len);
1582   if ( x->paginate ) 
1583           output_string (this, s, &s[total_len]);
1584   if (line_p != line_buf && !commit_line_buf (this))
1585     return 0;
1586
1587   x->n_output = 0;
1588   
1589   this->page_open = 0;
1590   return 1;
1591 }
1592
1593 struct outp_class ascii_class =
1594 {
1595   "ascii",
1596   0,
1597   0,
1598
1599   ascii_open_global,
1600   ascii_close_global,
1601   ascii_font_sizes,
1602
1603   ascii_preopen_driver,
1604   ascii_option,
1605   ascii_postopen_driver,
1606   ascii_close_driver,
1607
1608   ascii_open_page,
1609   ascii_close_page,
1610
1611   NULL,
1612
1613   ascii_line_horz,
1614   ascii_line_vert,
1615   ascii_line_intersection,
1616
1617   ascii_box,
1618   ascii_polyline_begin,
1619   ascii_polyline_point,
1620   ascii_polyline_end,
1621
1622   ascii_text_set_font_by_name,
1623   ascii_text_set_font_by_position,
1624   ascii_text_set_font_by_family,
1625   ascii_text_get_font_name,
1626   ascii_text_get_font_family,
1627   ascii_text_set_size,
1628   ascii_text_get_size,
1629   ascii_text_metrics,
1630   ascii_text_draw,
1631 };