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