[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.186

version 1.2, 2009/02/20 23:35:36 version 1.186, 2011/04/30 22:24:31
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2010, 2011 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  void              spec(struct termp *, const char *, size_t);
   static  void              res(struct termp *, const char *, size_t);
   static  void              bufferc(struct termp *, char);
   static  void              adjbuf(struct termp *p, size_t);
   static  void              encode(struct termp *, const char *, size_t);
   
 enum    termesc {  
         ESC_CLEAR,  
         ESC_BOLD,  
         ESC_UNDERLINE  
 };  
   
 struct  termp {  void
         size_t            maxvisible;  term_free(struct termp *p)
         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 {          if (p->buf)
         int             (*pre)(struct termp *,                  free(p->buf);
                                 const struct mdoc_meta *,          if (p->symtab)
                                 const struct mdoc_node *);                  mchars_free(p->symtab);
         int             (*post)(struct termp *,  
                                 const struct mdoc_meta *,  
                                 const struct mdoc_node *);  
 };  
   
 static  void              termprint_r(struct termp *,          free(p);
                                 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 *,  void
                                 const struct mdoc_meta *,  term_begin(struct termp *p, term_margin head,
                                 const struct mdoc_node *);                  term_margin foot, const void *arg)
 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);          p->headf = head;
         vis = 0;          p->footf = foot;
           p->argf = arg;
         for (j = 0; j < (p->indent * 4); j++)          (*p->begin)(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_end(struct termp *p)
 {  {
   
         p->flags |= TERMP_NOSPACE;          (*p->end)(p);
         if (0 == p->col)  
                 return;  
         flush(p);  
 }  }
   
   
 static void  struct termp *
 vspace(struct termp *p)  term_alloc(enum termenc enc)
 {  {
           struct termp    *p;
   
         newln(p);          p = mandoc_calloc(1, sizeof(struct termp));
         putchar('\n');          p->enc = enc;
           return(p);
 }  }
   
   
 static void  /*
 chara(struct termp *p, char c)   * Flush a line of text.  A "line" is loosely defined as being something
    * 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_NOLPAD: when beginning to write the line, don't left-pad the
    *    offset value.  This is useful when doing columnar lists where the
    *    prior column has right-padded.
    *
    *  - TERMP_NOBREAK: this is the most important and is used when making
    *    columns.  In short: don't print a newline and instead pad to the
    *    right margin.  Used in conjunction with TERMP_NOLPAD.
    *
    *  - TERMP_TWOSPACE: when padding, make sure there are 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
    *    overruning, 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 */
           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;
 }  
   
           /*
            * Indent the first line of a paragraph.
            */
           vbl = p->flags & TERMP_NOLPAD ? (size_t)0 : p->offset;
   
 static void          vis = vend = 0;
 escape(struct termp *p, enum termesc esc)          i = 0;
 {  
   
         if (p->col + 4 >= p->maxcols)          while (i < (int)p->col) {
                 errx(1, "line overrun");                  /*
                    * Handle literal tab characters: collapse all
                    * subsequent tabs into a single huge set of spaces.
                    */
                   while (i < (int)p->col && '\t' == p->buf[i]) {
                           vend = (vis / p->tabwidth + 1) * p->tabwidth;
                           vbl += vend - vis;
                           vis = vend;
                           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 < (int)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);
                           if (TERMP_NOBREAK & p->flags) {
                                   p->viscol = p->rmargin;
                                   (*p->advance)(p, p->rmargin);
                                   vend += p->rmargin - p->offset;
                           } else {
                                   p->viscol = 0;
                                   vbl = p->offset;
                           }
   
         if (p->flags & TERMP_BOLD)                          /* Remove the p->overstep width. */
                 escape(p, ESC_BOLD);  
         if (p->flags & TERMP_UNDERLINE)  
                 escape(p, ESC_UNDERLINE);  
   
         for (i = 0; i < len; i++)                          bp += (size_t)p->overstep;
                 chara(p, word[i]);                          p->overstep = 0;
                   }
   
         if (p->flags & TERMP_BOLD ||                  /* Write out the [remaining] word. */
                         p->flags & TERMP_UNDERLINE)                  for ( ; i < (int)p->col; i++) {
                 escape(p, ESC_CLEAR);                          if (vend > bp && jhy > 0 && i > jhy)
 }                                  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;
                           }
   
                           /*
                            * 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;
                           }
   
 static void                          if (ASCII_HYPH == p->buf[i]) {
 word(struct termp *p, const char *word)                                  (*p->letter)(p, '-');
 {                                  p->viscol += (*p->width)(p, '-');
         size_t           i, j, len;                          } else {
                                   (*p->letter)(p, p->buf[i]);
                                   p->viscol += (*p->width)(p, p->buf[i]);
                           }
                   }
                   vis = vend;
           }
   
         /* TODO: delimiters? */          /*
            * If there was trailing white space, it was not printed;
            * so reset the cursor position accordingly.
            */
           vis -= vbl;
   
         len = strlen(word);          p->col = 0;
         assert(len > 0);          p->overstep = 0;
   
         for (j = i = 0; i < len; i++) {          if ( ! (TERMP_NOBREAK & p->flags)) {
                 if ( ! isspace(word[i])) {                  p->viscol = 0;
                         j++;                  (*p->endline)(p);
                         continue;                  return;
                 }  
                 if (0 == j)  
                         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 (TERMP_HANG & p->flags) {
                   /* We need one blank after the tag. */
                   p->overstep = (int)(vis - maxvis + (*p->width)(p, ' '));
   
 static int                  /*
 termp_it_pre(struct termp *p, const struct mdoc_meta *meta,                   * Behave exactly the same way as groff:
                 const struct mdoc_node *node)                   * If we have overstepped the margin, temporarily move
 {                   * it to the right and flag the rest of the line to be
                    * shorter.
                    * If we landed right at the margin, be happy.
                    * If we are one step before the margin, temporarily
                    * move it one step LEFT and flag the rest of the line
                    * to be longer.
                    */
                   if (p->overstep >= -1) {
                           assert((int)maxvis + p->overstep >= 0);
                           maxvis += (size_t)p->overstep;
                   } else
                           p->overstep = 0;
   
         switch (node->type) {          } else if (TERMP_DANGLE & p->flags)
         case (MDOC_HEAD):                  return;
                 /* TODO: only print one, if compat. */  
                 vspace(p);          /* Right-pad. */
                 break;          if (maxvis > vis +
         default:              ((TERMP_TWOSPACE & p->flags) ? (*p->width)(p, ' ') : 0)) {
                 break;                  p->viscol += maxvis - vis;
                   (*p->advance)(p, maxvis - vis);
                   vis += (maxvis - vis);
           } else {        /* ...or newline break. */
                   (*p->endline)(p);
                   p->viscol = p->rmargin;
                   (*p->advance)(p, p->rmargin);
         }          }
         return(1);  
 }  }
   
   
 static int  /*
 termp_bold_post(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_BOLD;          p->flags |= TERMP_NOSPACE;
         return(1);          if (0 == p->col && 0 == p->viscol) {
                   p->flags &= ~TERMP_NOLPAD;
                   return;
           }
           term_flushln(p);
           p->flags &= ~TERMP_NOLPAD;
 }  }
   
   
 static int  /*
 termp_under_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_UNDERLINE;          term_newln(p);
         return(1);          p->viscol = 0;
           (*p->endline)(p);
 }  }
   
   
 static int  static void
 termp_bold_pre(struct termp *p, const struct mdoc_meta *meta,  numbered(struct termp *p, const char *word, size_t len)
                 const struct mdoc_node *node)  
 {  {
           char             c;
   
         p->flags |= TERMP_BOLD;          if ('\0' != (c = mchars_num2char(word, len)))
         return(1);                  encode(p, &c, 1);
 }  }
   
   
 static int  static void
 termp_ns_pre(struct termp *p, const struct mdoc_meta *meta,  spec(struct termp *p, const char *word, size_t len)
                 const struct mdoc_node *node)  
 {  {
           const char      *rhs;
           size_t           sz;
   
         p->flags |= TERMP_NOSPACE;          rhs = mchars_spec2str(p->symtab, word, len, &sz);
         return(1);          if (rhs)
                   encode(p, rhs, sz);
           else if (1 == len)
                   encode(p, word, len);
 }  }
   
   
 static int  static void
 termp_pp_pre(struct termp *p, const struct mdoc_meta *meta,  res(struct termp *p, const char *word, size_t len)
                 const struct mdoc_node *node)  
 {  {
           const char      *rhs;
           size_t           sz;
   
         vspace(p);          rhs = mchars_res2str(p->symtab, word, len, &sz);
         return(1);          if (rhs)
                   encode(p, rhs, sz);
 }  }
   
   
 static int  void
 termp_under_post(struct termp *p, const struct mdoc_meta *meta,  term_fontlast(struct termp *p)
                 const struct mdoc_node *node)  
 {  {
           enum termfont    f;
   
         p->flags &= ~TERMP_UNDERLINE;          f = p->fontl;
         return(1);          p->fontl = p->fontq[p->fonti];
           p->fontq[p->fonti] = f;
 }  }
   
   
 static int  void
 termp_nd_pre(struct termp *p, const struct mdoc_meta *meta,  term_fontrepl(struct termp *p, enum termfont f)
                 const struct mdoc_node *node)  
 {  {
   
         word(p, "-");          p->fontl = p->fontq[p->fonti];
         return(1);          p->fontq[p->fonti] = f;
 }  }
   
   
 static int  void
 termp_bl_post(struct termp *p, const struct mdoc_meta *meta,  term_fontpush(struct termp *p, enum termfont f)
                 const struct mdoc_node *node)  
 {  {
   
         switch (node->type) {          assert(p->fonti + 1 < 10);
         case (MDOC_BLOCK):          p->fontl = p->fontq[p->fonti];
                 newln(p);          p->fontq[++p->fonti] = f;
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  const void *
 termp_op_post(struct termp *p, const struct mdoc_meta *meta,  term_fontq(struct termp *p)
                 const struct mdoc_node *node)  
 {  {
   
         switch (node->type) {          return(&p->fontq[p->fonti]);
         case (MDOC_BODY):  
                 p->flags |= TERMP_NOSPACE;  
                 word(p, "\\(rB");  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  enum termfont
 termp_sh_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_HEAD):  
                 p->flags &= ~TERMP_BOLD;  
                 newln(p);  
                 break;  
         case (MDOC_BODY):  
                 newln(p);  
                 (p->indent)--;  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  void
 termp_sh_pre(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 != &p->fontq[p->fonti])
         case (MDOC_HEAD):                  p->fonti--;
                 vspace(p);          assert(p->fonti >= 0);
                 p->flags |= TERMP_BOLD;  
                 break;  
         case (MDOC_BODY):  
                 (p->indent)++;  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  void
 termp_op_pre(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_BODY):          p->fonti--;
                 word(p, "\\(lB");  
                 p->flags |= TERMP_NOSPACE;  
                 break;  
         default:  
                 break;  
         }  
         return(1);  
 }  }
   
   
 static int  /*
 termp_fl_pre(struct termp *p, const struct mdoc_meta *meta,   * Handle pwords, partial words, which may be either a single word or a
                 const struct mdoc_node *node)   * phrase that cannot be broken down (such as a literal string).  This
    * handles word styling.
    */
   void
   term_word(struct termp *p, const char *word)
 {  {
           const char      *seq;
           int              sz;
           size_t           ssz;
           enum mandoc_esc  esc;
   
         p->flags |= TERMP_BOLD;          if ( ! (TERMP_NOSPACE & p->flags)) {
         word(p, "-");                  if ( ! (TERMP_KEEP & p->flags)) {
         p->flags |= TERMP_NOSPACE;                          if (TERMP_PREKEEP & p->flags)
         return(1);                                  p->flags |= TERMP_KEEP;
 }                          bufferc(p, ' ');
                           if (TERMP_SENTENCE & p->flags)
                                   bufferc(p, ' ');
                   } else
                           bufferc(p, ASCII_NBRSP);
           }
   
           if ( ! (p->flags & TERMP_NONOSPACE))
                   p->flags &= ~TERMP_NOSPACE;
           else
                   p->flags |= TERMP_NOSPACE;
   
 static void          p->flags &= ~(TERMP_SENTENCE | TERMP_IGNDELIM);
 termprint_r(struct termp *p, const struct mdoc_meta *meta,  
                 const struct mdoc_node *node)  
 {  
   
         /* Pre-processing ----------------- */          while ('\0' != *word) {
                   if ((ssz = strcspn(word, "\\")) > 0)
                           encode(p, word, ssz);
   
         if (MDOC_TEXT != node->type) {                  word += (int)ssz;
                 if (termacts[node->tok].pre)                  if ('\\' != *word)
                         if ( ! (*termacts[node->tok].pre)(p, meta, node))                          continue;
                                 return;  
         } else /* MDOC_TEXT == node->type */  
                 word(p, node->data.text.string);  
   
         /* Children ---------------------- */                  word++;
                   esc = mandoc_escape(&word, &seq, &sz);
                   if (ESCAPE_ERROR == esc)
                           break;
   
         if (NULL == node->child) {                  switch (esc) {
                 /* No-child processing. */                  case (ESCAPE_NUMBERED):
                 switch (node->type) {                          numbered(p, seq, sz);
                 case (MDOC_ELEM):  
                         switch (node->tok) {  
                         case (MDOC_Nm):  
                                 word(p, "progname"); /* TODO */  
                                 break;  
                         case (MDOC_Ar):  
                                 word(p, "...");  
                                 break;  
                         default:  
                                 break;  
                         }  
                         break;                          break;
                   case (ESCAPE_PREDEF):
                           res(p, seq, sz);
                           break;
                   case (ESCAPE_SPECIAL):
                           spec(p, seq, sz);
                           break;
                   case (ESCAPE_FONTBOLD):
                           term_fontrepl(p, TERMFONT_BOLD);
                           break;
                   case (ESCAPE_FONTITALIC):
                           term_fontrepl(p, TERMFONT_UNDER);
                           break;
                   case (ESCAPE_FONTROMAN):
                           term_fontrepl(p, TERMFONT_NONE);
                           break;
                   case (ESCAPE_FONTPREV):
                           term_fontlast(p);
                           break;
                   case (ESCAPE_NOSPACE):
                           if ('\0' == *word)
                                   p->flags |= TERMP_NOSPACE;
                           break;
                 default:                  default:
                         break;                          break;
                 }                  }
         } else          }
                 termprint_r(p, meta, node->child);  }
   
         /* Post-processing --------------- */  
   
         if (MDOC_TEXT != node->type) {  static void
                 if (termacts[node->tok].post)  adjbuf(struct termp *p, size_t sz)
                         if ( ! (*termacts[node->tok].post)(p, meta, node))  {
                                 return;  
         }  
   
         /* Siblings ---------------------- */          if (0 == p->maxcols)
                   p->maxcols = 1024;
           while (sz >= p->maxcols)
                   p->maxcols <<= 2;
   
         if (node->next)          p->buf = mandoc_realloc(p->buf, p->maxcols);
                 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[(int)p->col++] = c;
         if (NULL == strftime(buf, p->maxvisible, "%B %d, %Y", tm))  }
                 err(1, "strftime");  
   
         osz = strlcpy(os, meta->os, p->maxvisible);  
   
         sz = strlen(buf);  static void
         ssz = sz + osz + 1;  encode(struct termp *p, const char *word, size_t sz)
   {
           enum termfont     f;
           int               i;
   
         if (ssz > p->maxvisible) {          /*
                 ssz -= p->maxvisible;           * Encode and buffer a string of characters.  If the current
                 assert(ssz <= osz);           * font mode is unset, buffer directly, else encode then buffer
                 os[osz - ssz] = 0;           * character by character.
                 ssz = 1;           */
         } else  
                 ssz = p->maxvisible - ssz + 1;  
   
         printf("\n");          if (TERMFONT_NONE == (f = term_fonttop(p))) {
         printf("%s", os);                  if (p->col + sz >= p->maxcols)
         for (i = 0; i < ssz; i++)                          adjbuf(p, p->col + sz);
                 printf(" ");                  memcpy(&p->buf[(int)p->col], word, sz);
                   p->col += sz;
                   return;
           }
   
         printf("%s\n", buf);          /* Pre-buffer, assuming worst-case. */
         fflush(stdout);  
   
         free(buf);          if (p->col + 1 + (sz * 3) >= p->maxcols)
         free(os);                  adjbuf(p, p->col + 1 + (sz * 3));
 }  
   
           for (i = 0; i < (int)sz; i++) {
                   if ( ! isgraph((u_char)word[i])) {
                           p->buf[(int)p->col++] = word[i];
                           continue;
                   }
   
 static void                  if (TERMFONT_UNDER == f)
 termprint_header(struct termp *p, const struct mdoc_meta *meta)                          p->buf[(int)p->col++] = '_';
 {                  else
         char            *msec, *buf, *title, *pp;                          p->buf[(int)p->col++] = word[i];
         size_t           ssz, tsz, ttsz, i;;  
   
         if (NULL == (buf = malloc(p->maxvisible)))                  p->buf[(int)p->col++] = 8;
                 err(1, "malloc");                  p->buf[(int)p->col++] = word[i];
         if (NULL == (title = malloc(p->maxvisible)))          }
                 err(1, "malloc");  }
   
         if (NULL == (pp = mdoc_vol2a(meta->vol)))  
                 switch (meta->msec) {  
                 case (MSEC_1):  
                         /* FALLTHROUGH */  
                 case (MSEC_6):  
                         /* FALLTHROUGH */  
                 case (MSEC_7):  
                         pp = mdoc_vol2a(VOL_URM);  
                         break;  
                 case (MSEC_8):  
                         pp = mdoc_vol2a(VOL_SMM);  
                         break;  
                 case (MSEC_2):  
                         /* FALLTHROUGH */  
                 case (MSEC_3):  
                         /* FALLTHROUGH */  
                 case (MSEC_4):  
                         /* FALLTHROUGH */  
                 case (MSEC_5):  
                         pp = mdoc_vol2a(VOL_PRM);  
                         break;  
                 case (MSEC_9):  
                         pp = mdoc_vol2a(VOL_KM);  
                         break;  
                 default:  
                         /* FIXME: capitalise. */  
                         if (NULL == (pp = mdoc_msec2a(meta->msec)))  
                                 pp = mdoc_msec2a(MSEC_local);  
                         break;  
                 }  
         assert(pp);  
   
         tsz = strlcpy(buf, pp, p->maxvisible);  size_t
         assert(tsz < p->maxvisible);  term_len(const struct termp *p, size_t sz)
   {
   
         if ((pp = mdoc_arch2a(meta->arch))) {          return((*p->width)(p, ' ') * sz);
                 tsz = strlcat(buf, " (", p->maxvisible);  }
                 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);  
   
         if (NULL == (msec = mdoc_msec2a(meta->msec)))  size_t
                 msec = "";  term_strlen(const struct termp *p, const char *cp)
   {
           size_t           sz, rsz, i;
           int              ssz;
           enum mandoc_esc  esc;
           const char      *seq, *rhs;
   
         ssz = (2 * (ttsz + 2 + strlen(msec))) + tsz + 2;          /*
            * Account for escaped sequences within string length
            * calculations.  This follows the logic in term_word() as we
            * must calculate the width of produced strings.
            */
   
         if (ssz > p->maxvisible) {          sz = 0;
                 if ((ssz -= p->maxvisible) % 2)          while ('\0' != *cp)
                         ssz++;                  switch (*cp) {
                 ssz /= 2;                  case ('\\'):
                           ++cp;
                 assert(ssz <= ttsz);                          esc = mandoc_escape(&cp, &seq, &ssz);
                 title[ttsz - ssz] = 0;                          if (ESCAPE_ERROR == esc)
                 ssz = 1;                                  return(sz);
         } else  
                 ssz = ((p->maxvisible - ssz) / 2) + 1;  
   
         printf("%s(%s)", title, msec);                          switch (esc) {
                           case (ESCAPE_PREDEF):
                                   rhs = mchars_res2str
                                           (p->symtab, seq, ssz, &rsz);
                                   break;
                           case (ESCAPE_SPECIAL):
                                   rhs = mchars_spec2str
                                           (p->symtab, seq, ssz, &rsz);
   
         for (i = 0; i < ssz; i++)                                  if (ssz != 1 || rhs)
                 printf(" ");                                          break;
   
         printf("%s", buf);                                  rhs = seq;
                                   rsz = ssz;
                                   break;
                           default:
                                   rhs = NULL;
                                   break;
                           }
   
         for (i = 0; i < ssz; i++)                          if (NULL == rhs)
                 printf(" ");                                  break;
   
         printf("%s(%s)\n", title, msec);                          for (i = 0; i < rsz; i++)
         fflush(stdout);                                  sz += (*p->width)(p, *rhs++);
                           break;
                   case (ASCII_NBRSP):
                           sz += (*p->width)(p, ' ');
                           cp++;
                           break;
                   case (ASCII_HYPH):
                           sz += (*p->width)(p, '-');
                           cp++;
                           break;
                   default:
                           sz += (*p->width)(p, *cp++);
                           break;
                   }
   
         free(title);          return(sz);
         free(buf);  
 }  }
   
   
 int  /* ARGSUSED */
 termprint(const struct mdoc_node *node,  size_t
                 const struct mdoc_meta *meta)  term_vspan(const struct termp *p, const struct roffsu *su)
 {  {
         struct termp     p;          double           r;
   
         if (ERR == setupterm(NULL, STDOUT_FILENO, NULL))          switch (su->unit) {
                 return(0);          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;
           }
   
         p.maxvisible = columns < 60 ? 60 : (size_t)columns;          if (r < 0.0)
         p.maxcols = 1024;                  r = 0.0;
         p.indent = p.col = 0;          return(/* LINTED */(size_t)
         p.flags = TERMP_NOSPACE;                          r);
   }
   
         if (NULL == (p.buf = malloc(p.maxcols)))  
                 err(1, "malloc");  
   
         termprint_header(&p, meta);  size_t
         termprint_r(&p, meta, node);  term_hspan(const struct termp *p, const struct roffsu *su)
         termprint_footer(&p, meta);  {
           double           v;
   
         free(p.buf);          v = ((*p->hspan)(p, su));
           if (v < 0.0)
         return(1);                  v = 0.0;
           return((size_t) /* LINTED */
                           v);
 }  }
   
   

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

CVSweb