[BACK]Return to term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.c between version 1.2 and 1.207

version 1.2, 2009/02/20 23:35:36 version 1.207, 2013/05/29 15:17:52
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2010, 2011, 2012 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the   * purpose with or without fee is hereby granted, provided that the above
  * above copyright notice and this permission notice appear in all   * copyright notice and this permission notice appear in all copies.
  * copies.  
  *   *
  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  * PERFORMANCE OF THIS SOFTWARE.  
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <curses.h>  #include <stdint.h>
 #include <err.h>  
 #include <stdlib.h>  
 #include <stdio.h>  #include <stdio.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <term.h>  
 #include <unistd.h>  
   
 #include "private.h"  #include "mandoc.h"
   #include "out.h"
   #include "term.h"
   #include "main.h"
   
   static  size_t           cond_width(const struct termp *, int, int *);
   static  void             adjbuf(struct termp *p, int);
   static  void             bufferc(struct termp *, char);
   static  void             encode(struct termp *, const char *, size_t);
   static  void             encode1(struct termp *, int);
   
 enum    termesc {  void
         ESC_CLEAR,  term_free(struct termp *p)
         ESC_BOLD,  
         ESC_UNDERLINE  
 };  
   
 struct  termp {  
         size_t            maxvisible;  
         size_t            maxcols;  
         size_t            indent;  
         size_t            col;  
         int               flags;  
 #define TERMP_BOLD       (1 << 0)  
 #define TERMP_UNDERLINE  (1 << 1)  
 #define TERMP_NOSPACE    (1 << 2)  
         char             *buf;  
 };  
   
 struct  termact {  
         int             (*pre)(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
         int             (*post)(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 };  
   
 static  void              termprint_r(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  void              termprint_header(struct termp *,  
                                 const struct mdoc_meta *);  
 static  void              termprint_footer(struct termp *,  
                                 const struct mdoc_meta *);  
   
 static  void              newln(struct termp *);  
 static  void              vspace(struct termp *);  
 static  void              pword(struct termp *, const char *, size_t);  
 static  void              word(struct termp *, const char *);  
   
 static  int               termp_it_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_ns_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_pp_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_fl_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_op_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_op_post(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_bl_post(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_sh_post(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_sh_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_nd_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_bold_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_under_pre(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_bold_post(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 static  int               termp_under_post(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
   
 const   struct termact termacts[MDOC_MAX] = {  
         { NULL, NULL }, /* \" */  
         { NULL, NULL }, /* Dd */  
         { NULL, NULL }, /* Dt */  
         { NULL, NULL }, /* Os */  
         { termp_sh_pre, termp_sh_post }, /* Sh */  
         { NULL, NULL }, /* Ss */  
         { termp_pp_pre, NULL }, /* Pp */  
         { NULL, NULL }, /* D1 */  
         { NULL, NULL }, /* Dl */  
         { NULL, NULL }, /* Bd */  
         { NULL, NULL }, /* Ed */  
         { NULL, termp_bl_post }, /* Bl */  
         { NULL, NULL }, /* El */  
         { termp_it_pre, NULL }, /* It */  
         { NULL, NULL }, /* Ad */  
         { NULL, NULL }, /* An */  
         { termp_under_pre, termp_under_post }, /* Ar */  
         { NULL, NULL }, /* Cd */  
         { NULL, NULL }, /* Cm */  
         { NULL, NULL }, /* Dv */  
         { NULL, NULL }, /* Er */  
         { NULL, NULL }, /* Ev */  
         { NULL, NULL }, /* Ex */  
         { NULL, NULL }, /* Fa */  
         { NULL, NULL }, /* Fd */  
         { termp_fl_pre, termp_bold_post }, /* Fl */  
         { NULL, NULL }, /* Fn */  
         { NULL, NULL }, /* Ft */  
         { NULL, NULL }, /* Ic */  
         { NULL, NULL }, /* In */  
         { NULL, NULL }, /* Li */  
         { termp_nd_pre, NULL }, /* Nd */  
         { termp_bold_pre, termp_bold_post }, /* Nm */  
         { termp_op_pre, termp_op_post }, /* Op */  
         { NULL, NULL }, /* Ot */  
         { NULL, NULL }, /* Pa */  
         { NULL, NULL }, /* Rv */  
         { NULL, NULL }, /* St */  
         { NULL, NULL }, /* Va */  
         { NULL, NULL }, /* Vt */  
         { NULL, NULL }, /* Xr */  
         { NULL, NULL }, /* %A */  
         { NULL, NULL }, /* %B */  
         { NULL, NULL }, /* %D */  
         { NULL, NULL }, /* %I */  
         { NULL, NULL }, /* %J */  
         { NULL, NULL }, /* %N */  
         { NULL, NULL }, /* %O */  
         { NULL, NULL }, /* %P */  
         { NULL, NULL }, /* %R */  
         { NULL, NULL }, /* %T */  
         { NULL, NULL }, /* %V */  
         { NULL, NULL }, /* Ac */  
         { NULL, NULL }, /* Ao */  
         { NULL, NULL }, /* Aq */  
         { NULL, NULL }, /* At */  
         { NULL, NULL }, /* Bc */  
         { NULL, NULL }, /* Bf */  
         { NULL, NULL }, /* Bo */  
         { NULL, NULL }, /* Bq */  
         { NULL, NULL }, /* Bsx */  
         { NULL, NULL }, /* Bx */  
         { NULL, NULL }, /* Db */  
         { NULL, NULL }, /* Dc */  
         { NULL, NULL }, /* Do */  
         { NULL, NULL }, /* Dq */  
         { NULL, NULL }, /* Ec */  
         { NULL, NULL }, /* Ef */  
         { NULL, NULL }, /* Em */  
         { NULL, NULL }, /* Eo */  
         { NULL, NULL }, /* Fx */  
         { NULL, NULL }, /* Ms */  
         { NULL, NULL }, /* No */  
         { termp_ns_pre, NULL }, /* Ns */  
         { NULL, NULL }, /* Nx */  
         { NULL, NULL }, /* Ox */  
         { NULL, NULL }, /* Pc */  
         { NULL, NULL }, /* Pf */  
         { NULL, NULL }, /* Po */  
         { NULL, NULL }, /* Pq */  
         { NULL, NULL }, /* Qc */  
         { NULL, NULL }, /* Ql */  
         { NULL, NULL }, /* Qo */  
         { NULL, NULL }, /* Qq */  
         { NULL, NULL }, /* Re */  
         { NULL, NULL }, /* Rs */  
         { NULL, NULL }, /* Sc */  
         { NULL, NULL }, /* So */  
         { NULL, NULL }, /* Sq */  
         { NULL, NULL }, /* Sm */  
         { NULL, NULL }, /* Sx */  
         { NULL, NULL }, /* Sy */  
         { NULL, NULL }, /* Tn */  
         { NULL, NULL }, /* Ux */  
         { NULL, NULL }, /* Xc */  
         { NULL, NULL }, /* Xo */  
         { NULL, NULL }, /* Fo */  
         { NULL, NULL }, /* Fc */  
         { NULL, NULL }, /* Oo */  
         { NULL, NULL }, /* Oc */  
         { NULL, NULL }, /* Bk */  
         { NULL, NULL }, /* Ek */  
         { NULL, NULL }, /* Bt */  
         { NULL, NULL }, /* Hf */  
         { NULL, NULL }, /* Fr */  
         { NULL, NULL }, /* Ud */  
 };  
   
   
 static void  
 flush(struct termp *p)  
 {  {
         size_t           i, j, vsz, vis, maxvis;  
   
         maxvis = p->maxvisible - (p->indent * 4);          if (p->buf)
         vis = 0;                  free(p->buf);
           if (p->symtab)
                   mchars_free(p->symtab);
   
         for (j = 0; j < (p->indent * 4); j++)          free(p);
                 putchar(' ');  
   
         for (i = 0; i < p->col; i++) {  
                 for (j = i, vsz = 0; j < p->col; j++) {  
                         if (isspace(p->buf[j]))  
                                 break;  
                         else if (27 == p->buf[j]) {  
                                 assert(j + 4 <= p->col);  
                                 j += 3;  
                         } else  
                                 vsz++;  
                 }  
                 assert(vsz > 0);  
   
                 if (vis && vis + vsz >= maxvis) {  
                         putchar('\n');  
                         for (j = 0; j < (p->indent * 4); j++)  
                                 putchar(' ');  
                         vis = 0;  
                 }  
   
                 for ( ; i < p->col; i++) {  
                         if (isspace(p->buf[i]))  
                                 break;  
                         putchar(p->buf[i]);  
                 }  
                 vis += vsz;  
                 if (i < p->col) {  
                         putchar(' ');  
                         vis++;  
                 }  
         }  
   
         putchar('\n');  
         p->col = 0;  
 }  }
   
   
 static void  void
 newln(struct termp *p)  term_begin(struct termp *p, term_margin head,
                   term_margin foot, const void *arg)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->headf = head;
         if (0 == p->col)          p->footf = foot;
                 return;          p->argf = arg;
         flush(p);          (*p->begin)(p);
 }  }
   
   
 static void  void
 vspace(struct termp *p)  term_end(struct termp *p)
 {  {
   
         newln(p);          (*p->end)(p);
         putchar('\n');  
 }  }
   
   /*
 static void   * Flush a line of text.  A "line" is loosely defined as being something
 chara(struct termp *p, char c)   * that should be followed by a newline, regardless of whether it's
    * broken apart by newlines getting there.  A line can also be a
    * fragment of a columnar list (`Bl -tag' or `Bl -column'), which does
    * not have a trailing newline.
    *
    * The following flags may be specified:
    *
    *  - TERMP_NOBREAK: this is the most important and is used when making
    *    columns.  In short: don't print a newline and instead expect the
    *    next call to do the padding up to the start of the next column.
    *
    *  - TERMP_TWOSPACE: make sure there is room for at least two space
    *    characters of padding.  Otherwise, rather break the line.
    *
    *  - TERMP_DANGLE: don't newline when TERMP_NOBREAK is specified and
    *    the line is overrun, and don't pad-right if it's underrun.
    *
    *  - TERMP_HANG: like TERMP_DANGLE, but doesn't newline when
    *    overrunning, instead save the position and continue at that point
    *    when the next invocation.
    *
    *  In-line line breaking:
    *
    *  If TERMP_NOBREAK is specified and the line overruns the right
    *  margin, it will break and pad-right to the right margin after
    *  writing.  If maxrmargin is violated, it will break and continue
    *  writing from the right-margin, which will lead to the above scenario
    *  upon exit.  Otherwise, the line will break at the right margin.
    */
   void
   term_flushln(struct termp *p)
 {  {
           int              i;     /* current input position in p->buf */
           int              ntab;  /* number of tabs to prepend */
           size_t           vis;   /* current visual position on output */
           size_t           vbl;   /* number of blanks to prepend to output */
           size_t           vend;  /* end of word visual position on output */
           size_t           bp;    /* visual right border position */
           size_t           dv;    /* temporary for visual pos calculations */
           int              j;     /* temporary loop index for p->buf */
           int              jhy;   /* last hyph before overflow w/r/t j */
           size_t           maxvis; /* output position of visible boundary */
           size_t           mmax; /* used in calculating bp */
   
         if (p->col + 1 >= p->maxcols)          /*
                 errx(1, "line overrun");           * First, establish the maximum columns of "visible" content.
            * This is usually the difference between the right-margin and
            * an indentation, but can be, for tagged lists or columns, a
            * small set of values.
            */
           assert  (p->rmargin >= p->offset);
           dv     = p->rmargin - p->offset;
           maxvis = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0;
           dv     = p->maxrmargin - p->offset;
           mmax   = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0;
   
         p->buf[(p->col)++] = c;          bp = TERMP_NOBREAK & p->flags ? mmax : maxvis;
 }  
   
           /*
            * Calculate the required amount of padding.
            */
           vbl = p->offset + p->overstep > p->viscol ?
                 p->offset + p->overstep - p->viscol : 0;
   
 static void          vis = vend = 0;
 escape(struct termp *p, enum termesc esc)          i = 0;
 {  
   
         if (p->col + 4 >= p->maxcols)          while (i < p->col) {
                 errx(1, "line overrun");                  /*
                    * Handle literal tab characters: collapse all
                    * subsequent tabs into a single huge set of spaces.
                    */
                   ntab = 0;
                   while (i < p->col && '\t' == p->buf[i]) {
                           vend = (vis / p->tabwidth + 1) * p->tabwidth;
                           vbl += vend - vis;
                           vis = vend;
                           ntab++;
                           i++;
                   }
   
         p->buf[(p->col)++] = 27;                  /*
         p->buf[(p->col)++] = '[';                   * Count up visible word characters.  Control sequences
         switch (esc) {                   * (starting with the CSI) aren't counted.  A space
         case (ESC_CLEAR):                   * generates a non-printing word, which is valid (the
                 p->buf[(p->col)++] = '0';                   * space is printed according to regular spacing rules).
                 break;                   */
         case (ESC_BOLD):  
                 p->buf[(p->col)++] = '1';  
                 break;  
         case (ESC_UNDERLINE):  
                 p->buf[(p->col)++] = '4';  
                 break;  
         default:  
                 abort();  
                 /* NOTREACHED */  
         }  
         p->buf[(p->col)++] = 'm';  
 }  
   
                   for (j = i, jhy = 0; j < p->col; j++) {
                           if ((j && ' ' == p->buf[j]) || '\t' == p->buf[j])
                                   break;
   
 static void                          /* Back over the the last printed character. */
 pword(struct termp *p, const char *word, size_t len)                          if (8 == p->buf[j]) {
 {                                  assert(j);
         size_t           i;                                  vend -= (*p->width)(p, p->buf[j - 1]);
                                   continue;
                           }
   
         assert(len > 0);                          /* Regular word. */
                           /* Break at the hyphen point if we overrun. */
                           if (vend > vis && vend < bp &&
                                           ASCII_HYPH == p->buf[j])
                                   jhy = j;
   
         if ( ! (p->flags & TERMP_NOSPACE))                          vend += (*p->width)(p, p->buf[j]);
                 chara(p, ' ');                  }
   
         p->flags &= ~TERMP_NOSPACE;                  /*
                    * Find out whether we would exceed the right margin.
                    * If so, break to the next line.
                    */
                   if (vend > bp && 0 == jhy && vis > 0) {
                           vend -= vis;
                           (*p->endline)(p);
                           p->viscol = 0;
                           if (TERMP_NOBREAK & p->flags) {
                                   vbl = p->rmargin;
                                   vend += p->rmargin - p->offset;
                           } else
                                   vbl = p->offset;
   
         if (p->flags & TERMP_BOLD)                          /* use pending tabs on the new line */
                 escape(p, ESC_BOLD);  
         if (p->flags & TERMP_UNDERLINE)  
                 escape(p, ESC_UNDERLINE);  
   
         for (i = 0; i < len; i++)                          if (0 < ntab)
                 chara(p, word[i]);                                  vbl += ntab * p->tabwidth;
   
         if (p->flags & TERMP_BOLD ||                          /* Remove the p->overstep width. */
                         p->flags & TERMP_UNDERLINE)  
                 escape(p, ESC_CLEAR);  
 }  
   
                           bp += (size_t)p->overstep;
                           p->overstep = 0;
                   }
   
 static void                  /* Write out the [remaining] word. */
 word(struct termp *p, const char *word)                  for ( ; i < p->col; i++) {
 {                          if (vend > bp && jhy > 0 && i > jhy)
         size_t           i, j, len;                                  break;
                           if ('\t' == p->buf[i])
                                   break;
                           if (' ' == p->buf[i]) {
                                   j = i;
                                   while (' ' == p->buf[i])
                                           i++;
                                   dv = (size_t)(i - j) * (*p->width)(p, ' ');
                                   vbl += dv;
                                   vend += dv;
                                   break;
                           }
                           if (ASCII_NBRSP == p->buf[i]) {
                                   vbl += (*p->width)(p, ' ');
                                   continue;
                           }
   
         /* TODO: delimiters? */                          /*
                            * Now we definitely know there will be
                            * printable characters to output,
                            * so write preceding white space now.
                            */
                           if (vbl) {
                                   (*p->advance)(p, vbl);
                                   p->viscol += vbl;
                                   vbl = 0;
                           }
   
         len = strlen(word);                          if (ASCII_HYPH == p->buf[i]) {
         assert(len > 0);                                  (*p->letter)(p, '-');
                                   p->viscol += (*p->width)(p, '-');
                                   continue;
                           }
   
         for (j = i = 0; i < len; i++) {                          (*p->letter)(p, p->buf[i]);
                 if ( ! isspace(word[i])) {                          if (8 == p->buf[i])
                         j++;                                  p->viscol -= (*p->width)(p, p->buf[i-1]);
                         continue;                          else
                                   p->viscol += (*p->width)(p, p->buf[i]);
                 }                  }
                 if (0 == j)                  vis = vend;
                         continue;  
                 assert(i >= j);  
                 pword(p, &word[i - j], j);  
                 j = 0;  
         }          }
         if (j > 0) {  
                 assert(i >= j);  
                 pword(p, &word[i - j], j);  
         }  
 }  
   
           /*
            * If there was trailing white space, it was not printed;
            * so reset the cursor position accordingly.
            */
           if (vis)
                   vis -= vbl;
   
 static int          p->col = 0;
 termp_it_pre(struct termp *p, const struct mdoc_meta *meta,          p->overstep = 0;
                 const struct mdoc_node *node)  
 {  
   
         switch (node->type) {          if ( ! (TERMP_NOBREAK & p->flags)) {
         case (MDOC_HEAD):                  p->viscol = 0;
                 /* TODO: only print one, if compat. */                  (*p->endline)(p);
                 vspace(p);                  return;
                 break;  
         default:  
                 break;  
         }          }
         return(1);  
 }  
   
           if (TERMP_HANG & p->flags) {
                   /* We need one blank after the tag. */
                   p->overstep = (int)(vis - maxvis + (*p->width)(p, ' '));
   
 static int                  /*
 termp_bold_post(struct termp *p, const struct mdoc_meta *meta,                   * If we have overstepped the margin, temporarily move
                 const struct mdoc_node *node)                   * it to the right and flag the rest of the line to be
 {                   * shorter.
                    */
                   if (p->overstep < 0)
                           p->overstep = 0;
                   return;
   
         p->flags &= ~TERMP_BOLD;          } else if (TERMP_DANGLE & p->flags)
         return(1);                  return;
   
           /* If the column was overrun, break the line. */
           if (maxvis <= vis +
               ((TERMP_TWOSPACE & p->flags) ? (*p->width)(p, ' ') : 0)) {
                   (*p->endline)(p);
                   p->viscol = 0;
           }
 }  }
   
   
 static int  /*
 termp_under_pre(struct termp *p, const struct mdoc_meta *meta,   * A newline only breaks an existing line; it won't assert vertical
                 const struct mdoc_node *node)   * space.  All data in the output buffer is flushed prior to the newline
    * assertion.
    */
   void
   term_newln(struct termp *p)
 {  {
   
         p->flags |= TERMP_UNDERLINE;          p->flags |= TERMP_NOSPACE;
         return(1);          if (p->col || p->viscol)
                   term_flushln(p);
 }  }
   
   
 static int  /*
 termp_bold_pre(struct termp *p, const struct mdoc_meta *meta,   * Asserts a vertical space (a full, empty line-break between lines).
                 const struct mdoc_node *node)   * Note that if used twice, this will cause two blank spaces and so on.
    * All data in the output buffer is flushed prior to the newline
    * assertion.
    */
   void
   term_vspace(struct termp *p)
 {  {
   
         p->flags |= TERMP_BOLD;          term_newln(p);
         return(1);          p->viscol = 0;
           if (0 < p->skipvsp)
                   p->skipvsp--;
           else
                   (*p->endline)(p);
 }  }
   
   void
 static int  term_fontlast(struct termp *p)
 termp_ns_pre(struct termp *p, const struct mdoc_meta *meta,  
                 const struct mdoc_node *node)  
 {  {
           enum termfont    f;
   
         p->flags |= TERMP_NOSPACE;          f = p->fontl;
         return(1);          p->fontl = p->fontq[p->fonti];
           p->fontq[p->fonti] = f;
 }  }
   
   
 static int  void
 termp_pp_pre(struct termp *p, const struct mdoc_meta *meta,  term_fontrepl(struct termp *p, enum termfont f)
                 const struct mdoc_node *node)  
 {  {
   
         vspace(p);          p->fontl = p->fontq[p->fonti];
         return(1);          p->fontq[p->fonti] = f;
 }  }
   
   
 static int  void
 termp_under_post(struct termp *p, const struct mdoc_meta *meta,  term_fontpush(struct termp *p, enum termfont f)
                 const struct mdoc_node *node)  
 {  {
   
         p->flags &= ~TERMP_UNDERLINE;          assert(p->fonti + 1 < 10);
         return(1);          p->fontl = p->fontq[p->fonti];
           p->fontq[++p->fonti] = f;
 }  }
   
   
 static int  const void *
 termp_nd_pre(struct termp *p, const struct mdoc_meta *meta,  term_fontq(struct termp *p)
                 const struct mdoc_node *node)  
 {  {
   
         word(p, "-");          return(&p->fontq[p->fonti]);
         return(1);  
 }  }
   
   
 static int  enum termfont
 termp_bl_post(struct termp *p, const struct mdoc_meta *meta,  term_fonttop(struct termp *p)
                 const struct mdoc_node *node)  
 {  {
   
         switch (node->type) {          return(p->fontq[p->fonti]);
         case (MDOC_BLOCK):  
                 newln(p);  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  void
 termp_op_post(struct termp *p, const struct mdoc_meta *meta,  term_fontpopq(struct termp *p, const void *key)
                 const struct mdoc_node *node)  
 {  {
   
         switch (node->type) {          while (p->fonti >= 0 && key < (void *)(p->fontq + p->fonti))
         case (MDOC_BODY):                  p->fonti--;
                 p->flags |= TERMP_NOSPACE;          assert(p->fonti >= 0);
                 word(p, "\\(rB");  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  void
 termp_sh_post(struct termp *p, const struct mdoc_meta *meta,  term_fontpop(struct termp *p)
                 const struct mdoc_node *node)  
 {  {
   
         switch (node->type) {          assert(p->fonti);
         case (MDOC_HEAD):          p->fonti--;
                 p->flags &= ~TERMP_BOLD;  
                 newln(p);  
                 break;  
         case (MDOC_BODY):  
                 newln(p);  
                 (p->indent)--;  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   /*
 static int   * Handle pwords, partial words, which may be either a single word or a
 termp_sh_pre(struct termp *p, const struct mdoc_meta *meta,   * phrase that cannot be broken down (such as a literal string).  This
                 const struct mdoc_node *node)   * handles word styling.
    */
   void
   term_word(struct termp *p, const char *word)
 {  {
           const char      *seq, *cp;
           char             c;
           int              sz, uc;
           size_t           ssz;
           enum mandoc_esc  esc;
   
         switch (node->type) {          if ( ! (TERMP_NOSPACE & p->flags)) {
         case (MDOC_HEAD):                  if ( ! (TERMP_KEEP & p->flags)) {
                 vspace(p);                          bufferc(p, ' ');
                 p->flags |= TERMP_BOLD;                          if (TERMP_SENTENCE & p->flags)
                 break;                                  bufferc(p, ' ');
         case (MDOC_BODY):                  } else
                 (p->indent)++;                          bufferc(p, ASCII_NBRSP);
                 break;  
         default:  
                 break;  
         }          }
         return(1);          if (TERMP_PREKEEP & p->flags)
 }                  p->flags |= TERMP_KEEP;
   
           if ( ! (p->flags & TERMP_NONOSPACE))
 static int                  p->flags &= ~TERMP_NOSPACE;
 termp_op_pre(struct termp *p, const struct mdoc_meta *meta,          else
                 const struct mdoc_node *node)  
 {  
   
         switch (node->type) {  
         case (MDOC_BODY):  
                 word(p, "\\(lB");  
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  
   
           p->flags &= ~(TERMP_SENTENCE | TERMP_IGNDELIM);
   
 static int          while ('\0' != *word) {
 termp_fl_pre(struct termp *p, const struct mdoc_meta *meta,                  if ('\\' != *word) {
                 const struct mdoc_node *node)                          if (TERMP_SKIPCHAR & p->flags) {
 {                                  p->flags &= ~TERMP_SKIPCHAR;
                                   word++;
                                   continue;
                           }
                           ssz = strcspn(word, "\\");
                           encode(p, word, ssz);
                           word += (int)ssz;
                           continue;
                   }
   
         p->flags |= TERMP_BOLD;                  word++;
         word(p, "-");                  esc = mandoc_escape(&word, &seq, &sz);
         p->flags |= TERMP_NOSPACE;                  if (ESCAPE_ERROR == esc)
         return(1);                          break;
 }  
   
                   if (TERMENC_ASCII != p->enc)
 static void                          switch (esc) {
 termprint_r(struct termp *p, const struct mdoc_meta *meta,                          case (ESCAPE_UNICODE):
                 const struct mdoc_node *node)                                  uc = mchars_num2uc(seq + 1, sz - 1);
 {                                  if ('\0' == uc)
                                           break;
         /* Pre-processing ----------------- */                                  encode1(p, uc);
                                   continue;
         if (MDOC_TEXT != node->type) {                          case (ESCAPE_SPECIAL):
                 if (termacts[node->tok].pre)                                  uc = mchars_spec2cp(p->symtab, seq, sz);
                         if ( ! (*termacts[node->tok].pre)(p, meta, node))                                  if (uc <= 0)
                                 return;                                          break;
         } else /* MDOC_TEXT == node->type */                                  encode1(p, uc);
                 word(p, node->data.text.string);                                  continue;
   
         /* Children ---------------------- */  
   
         if (NULL == node->child) {  
                 /* No-child processing. */  
                 switch (node->type) {  
                 case (MDOC_ELEM):  
                         switch (node->tok) {  
                         case (MDOC_Nm):  
                                 word(p, "progname"); /* TODO */  
                                 break;  
                         case (MDOC_Ar):  
                                 word(p, "...");  
                                 break;  
                         default:                          default:
                                 break;                                  break;
                         }                          }
   
                   switch (esc) {
                   case (ESCAPE_UNICODE):
                           encode1(p, '?');
                         break;                          break;
                   case (ESCAPE_NUMBERED):
                           c = mchars_num2char(seq, sz);
                           if ('\0' != c)
                                   encode(p, &c, 1);
                           break;
                   case (ESCAPE_SPECIAL):
                           cp = mchars_spec2str(p->symtab, seq, sz, &ssz);
                           if (NULL != cp)
                                   encode(p, cp, ssz);
                           else if (1 == ssz)
                                   encode(p, seq, sz);
                           break;
                   case (ESCAPE_FONTBOLD):
                           term_fontrepl(p, TERMFONT_BOLD);
                           break;
                   case (ESCAPE_FONTITALIC):
                           term_fontrepl(p, TERMFONT_UNDER);
                           break;
                   case (ESCAPE_FONT):
                           /* FALLTHROUGH */
                   case (ESCAPE_FONTROMAN):
                           term_fontrepl(p, TERMFONT_NONE);
                           break;
                   case (ESCAPE_FONTPREV):
                           term_fontlast(p);
                           break;
                   case (ESCAPE_NOSPACE):
                           if (TERMP_SKIPCHAR & p->flags)
                                   p->flags &= ~TERMP_SKIPCHAR;
                           else if ('\0' == *word)
                                   p->flags |= TERMP_NOSPACE;
                           break;
                   case (ESCAPE_SKIPCHAR):
                           p->flags |= TERMP_SKIPCHAR;
                           break;
                 default:                  default:
                         break;                          break;
                 }                  }
         } else          }
                 termprint_r(p, meta, node->child);  }
   
         /* Post-processing --------------- */  static void
   adjbuf(struct termp *p, int sz)
   {
   
         if (MDOC_TEXT != node->type) {          if (0 == p->maxcols)
                 if (termacts[node->tok].post)                  p->maxcols = 1024;
                         if ( ! (*termacts[node->tok].post)(p, meta, node))          while (sz >= p->maxcols)
                                 return;                  p->maxcols <<= 2;
         }  
   
         /* Siblings ---------------------- */          p->buf = mandoc_realloc
                   (p->buf, sizeof(int) * (size_t)p->maxcols);
         if (node->next)  
                 termprint_r(p, meta, node->next);  
 }  }
   
   
 static void  static void
 termprint_footer(struct termp *p, const struct mdoc_meta *meta)  bufferc(struct termp *p, char c)
 {  {
         struct tm       *tm;  
         char            *buf, *os;  
         size_t           sz, osz, ssz, i;  
   
         if (NULL == (buf = malloc(p->maxvisible)))          if (p->col + 1 >= p->maxcols)
                 err(1, "malloc");                  adjbuf(p, p->col + 1);
         if (NULL == (os = malloc(p->maxvisible)))  
                 err(1, "malloc");  
   
         tm = localtime(&meta->date);          p->buf[p->col++] = c;
         if (NULL == strftime(buf, p->maxvisible, "%B %d, %Y", tm))  }
                 err(1, "strftime");  
   
         osz = strlcpy(os, meta->os, p->maxvisible);  /*
    * See encode().
    * Do this for a single (probably unicode) value.
    * Does not check for non-decorated glyphs.
    */
   static void
   encode1(struct termp *p, int c)
   {
           enum termfont     f;
   
         sz = strlen(buf);          if (TERMP_SKIPCHAR & p->flags) {
         ssz = sz + osz + 1;                  p->flags &= ~TERMP_SKIPCHAR;
                   return;
           }
   
         if (ssz > p->maxvisible) {          if (p->col + 4 >= p->maxcols)
                 ssz -= p->maxvisible;                  adjbuf(p, p->col + 4);
                 assert(ssz <= osz);  
                 os[osz - ssz] = 0;  
                 ssz = 1;  
         } else  
                 ssz = p->maxvisible - ssz + 1;  
   
         printf("\n");          f = term_fonttop(p);
         printf("%s", os);  
         for (i = 0; i < ssz; i++)  
                 printf(" ");  
   
         printf("%s\n", buf);          if (TERMFONT_NONE == f) {
         fflush(stdout);                  p->buf[p->col++] = c;
                   return;
           } else if (TERMFONT_UNDER == f) {
                   p->buf[p->col++] = '_';
           } else
                   p->buf[p->col++] = c;
   
         free(buf);          p->buf[p->col++] = 8;
         free(os);          p->buf[p->col++] = c;
 }  }
   
   
 static void  static void
 termprint_header(struct termp *p, const struct mdoc_meta *meta)  encode(struct termp *p, const char *word, size_t sz)
 {  {
         char            *msec, *buf, *title, *pp;          enum termfont     f;
         size_t           ssz, tsz, ttsz, i;;          int               i, len;
   
         if (NULL == (buf = malloc(p->maxvisible)))          if (TERMP_SKIPCHAR & p->flags) {
                 err(1, "malloc");                  p->flags &= ~TERMP_SKIPCHAR;
         if (NULL == (title = malloc(p->maxvisible)))                  return;
                 err(1, "malloc");          }
   
         if (NULL == (pp = mdoc_vol2a(meta->vol)))          /* LINTED */
                 switch (meta->msec) {          len = sz;
                 case (MSEC_1):  
                         /* FALLTHROUGH */          /*
                 case (MSEC_6):           * Encode and buffer a string of characters.  If the current
                         /* FALLTHROUGH */           * font mode is unset, buffer directly, else encode then buffer
                 case (MSEC_7):           * character by character.
                         pp = mdoc_vol2a(VOL_URM);           */
                         break;  
                 case (MSEC_8):          if (TERMFONT_NONE == (f = term_fonttop(p))) {
                         pp = mdoc_vol2a(VOL_SMM);                  if (p->col + len >= p->maxcols)
                         break;                          adjbuf(p, p->col + len);
                 case (MSEC_2):                  for (i = 0; i < len; i++)
                         /* FALLTHROUGH */                          p->buf[p->col++] = word[i];
                 case (MSEC_3):                  return;
                         /* FALLTHROUGH */          }
                 case (MSEC_4):  
                         /* FALLTHROUGH */          /* Pre-buffer, assuming worst-case. */
                 case (MSEC_5):  
                         pp = mdoc_vol2a(VOL_PRM);          if (p->col + 1 + (len * 3) >= p->maxcols)
                         break;                  adjbuf(p, p->col + 1 + (len * 3));
                 case (MSEC_9):  
                         pp = mdoc_vol2a(VOL_KM);          for (i = 0; i < len; i++) {
                         break;                  if (ASCII_HYPH != word[i] &&
                 default:                      ! isgraph((unsigned char)word[i])) {
                         /* FIXME: capitalise. */                          p->buf[p->col++] = word[i];
                         if (NULL == (pp = mdoc_msec2a(meta->msec)))                          continue;
                                 pp = mdoc_msec2a(MSEC_local);  
                         break;  
                 }                  }
         assert(pp);  
   
         tsz = strlcpy(buf, pp, p->maxvisible);                  if (TERMFONT_UNDER == f)
         assert(tsz < p->maxvisible);                          p->buf[p->col++] = '_';
                   else if (ASCII_HYPH == word[i])
                           p->buf[p->col++] = '-';
                   else
                           p->buf[p->col++] = word[i];
   
         if ((pp = mdoc_arch2a(meta->arch))) {                  p->buf[p->col++] = 8;
                 tsz = strlcat(buf, " (", p->maxvisible);                  p->buf[p->col++] = word[i];
                 assert(tsz < p->maxvisible);  
                 tsz = strlcat(buf, pp, p->maxvisible);  
                 assert(tsz < p->maxvisible);  
                 tsz = strlcat(buf, ")", p->maxvisible);  
                 assert(tsz < p->maxvisible);  
         }          }
   }
   
         ttsz = strlcpy(title, meta->title, p->maxvisible);  size_t
   term_len(const struct termp *p, size_t sz)
   {
   
         if (NULL == (msec = mdoc_msec2a(meta->msec)))          return((*p->width)(p, ' ') * sz);
                 msec = "";  }
   
         ssz = (2 * (ttsz + 2 + strlen(msec))) + tsz + 2;  static size_t
   cond_width(const struct termp *p, int c, int *skip)
   {
   
         if (ssz > p->maxvisible) {          if (*skip) {
                 if ((ssz -= p->maxvisible) % 2)                  (*skip) = 0;
                         ssz++;                  return(0);
                 ssz /= 2;  
   
                 assert(ssz <= ttsz);  
                 title[ttsz - ssz] = 0;  
                 ssz = 1;  
         } else          } else
                 ssz = ((p->maxvisible - ssz) / 2) + 1;                  return((*p->width)(p, c));
   }
   
         printf("%s(%s)", title, msec);  size_t
   term_strlen(const struct termp *p, const char *cp)
   {
           size_t           sz, rsz, i;
           int              ssz, skip, c;
           const char      *seq, *rhs;
           enum mandoc_esc  esc;
           static const char rej[] = { '\\', ASCII_HYPH, ASCII_NBRSP, '\0' };
   
         for (i = 0; i < ssz; i++)          /*
                 printf(" ");           * Account for escaped sequences within string length
            * calculations.  This follows the logic in term_word() as we
            * must calculate the width of produced strings.
            */
   
         printf("%s", buf);          sz = 0;
           skip = 0;
           while ('\0' != *cp) {
                   rsz = strcspn(cp, rej);
                   for (i = 0; i < rsz; i++)
                           sz += cond_width(p, *cp++, &skip);
   
         for (i = 0; i < ssz; i++)                  c = 0;
                 printf(" ");                  switch (*cp) {
                   case ('\\'):
                           cp++;
                           esc = mandoc_escape(&cp, &seq, &ssz);
                           if (ESCAPE_ERROR == esc)
                                   return(sz);
   
         printf("%s(%s)\n", title, msec);                          if (TERMENC_ASCII != p->enc)
         fflush(stdout);                                  switch (esc) {
                                   case (ESCAPE_UNICODE):
                                           c = mchars_num2uc
                                                   (seq + 1, ssz - 1);
                                           if ('\0' == c)
                                                   break;
                                           sz += cond_width(p, c, &skip);
                                           continue;
                                   case (ESCAPE_SPECIAL):
                                           c = mchars_spec2cp
                                                   (p->symtab, seq, ssz);
                                           if (c <= 0)
                                                   break;
                                           sz += cond_width(p, c, &skip);
                                           continue;
                                   default:
                                           break;
                                   }
   
         free(title);                          rhs = NULL;
         free(buf);  
 }  
   
                           switch (esc) {
                           case (ESCAPE_UNICODE):
                                   sz += cond_width(p, '?', &skip);
                                   break;
                           case (ESCAPE_NUMBERED):
                                   c = mchars_num2char(seq, ssz);
                                   if ('\0' != c)
                                           sz += cond_width(p, c, &skip);
                                   break;
                           case (ESCAPE_SPECIAL):
                                   rhs = mchars_spec2str
                                           (p->symtab, seq, ssz, &rsz);
   
 int                                  if (ssz != 1 || rhs)
 termprint(const struct mdoc_node *node,                                          break;
                 const struct mdoc_meta *meta)  
 {  
         struct termp     p;  
   
         if (ERR == setupterm(NULL, STDOUT_FILENO, NULL))                                  rhs = seq;
                 return(0);                                  rsz = ssz;
                                   break;
                           case (ESCAPE_SKIPCHAR):
                                   skip = 1;
                                   break;
                           default:
                                   break;
                           }
   
         p.maxvisible = columns < 60 ? 60 : (size_t)columns;                          if (NULL == rhs)
         p.maxcols = 1024;                                  break;
         p.indent = p.col = 0;  
         p.flags = TERMP_NOSPACE;  
   
         if (NULL == (p.buf = malloc(p.maxcols)))                          if (skip) {
                 err(1, "malloc");                                  skip = 0;
                                   break;
                           }
   
         termprint_header(&p, meta);                          for (i = 0; i < rsz; i++)
         termprint_r(&p, meta, node);                                  sz += (*p->width)(p, *rhs++);
         termprint_footer(&p, meta);                          break;
                   case (ASCII_NBRSP):
                           sz += cond_width(p, ' ', &skip);
                           cp++;
                           break;
                   case (ASCII_HYPH):
                           sz += cond_width(p, '-', &skip);
                           cp++;
                           break;
                   default:
                           break;
                   }
           }
   
         free(p.buf);          return(sz);
   }
   
         return(1);  /* ARGSUSED */
   size_t
   term_vspan(const struct termp *p, const struct roffsu *su)
   {
           double           r;
   
           switch (su->unit) {
           case (SCALE_CM):
                   r = su->scale * 2;
                   break;
           case (SCALE_IN):
                   r = su->scale * 6;
                   break;
           case (SCALE_PC):
                   r = su->scale;
                   break;
           case (SCALE_PT):
                   r = su->scale / 8;
                   break;
           case (SCALE_MM):
                   r = su->scale / 1000;
                   break;
           case (SCALE_VS):
                   r = su->scale;
                   break;
           default:
                   r = su->scale - 1;
                   break;
           }
   
           if (r < 0.0)
                   r = 0.0;
           return(/* LINTED */(size_t)
                           r);
 }  }
   
   size_t
   term_hspan(const struct termp *p, const struct roffsu *su)
   {
           double           v;
   
           v = ((*p->hspan)(p, su));
           if (v < 0.0)
                   v = 0.0;
           return((size_t) /* LINTED */
                           v);
   }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.207

CVSweb