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

Diff for /mandoc/term.c between version 1.32 and 1.39

version 1.32, 2009/03/01 23:14:15 version 1.39, 2009/03/04 13:57:35
Line 25 
Line 25 
   
 #include "term.h"  #include "term.h"
   
 #define INDENT            6  
   
 /*  /*
  * Performs actions on nodes of the abstract syntax tree.  Both pre- and   * Performs actions on nodes of the abstract syntax tree.  Both pre- and
  * post-fix operations are defined here.   * post-fix operations are defined here.
  */   */
   
 /* FIXME: indent/tab. */  
 /* FIXME: macro arguments can be escaped. */  /* FIXME: macro arguments can be escaped. */
   
 #define TTYPE_PROG        0  #define TTYPE_PROG        0
Line 53 
Line 50 
 #define TTYPE_INCLUDE     15  #define TTYPE_INCLUDE     15
 #define TTYPE_SYMB        16  #define TTYPE_SYMB        16
 #define TTYPE_SYMBOL      17  #define TTYPE_SYMBOL      17
 #define TTYPE_NMAX        18  #define TTYPE_DIAG        18
   #define TTYPE_NMAX        19
   
 /*  /*
  * These define "styles" for element types, like command arguments or   * These define "styles" for element types, like command arguments or
Line 61 
Line 59 
  * the same thing (like .Ex -std cmd and .Nm cmd).   * the same thing (like .Ex -std cmd and .Nm cmd).
  */   */
   
   /* TODO: abstract this into mdocterm.c. */
   
 const   int ttypes[TTYPE_NMAX] = {  const   int ttypes[TTYPE_NMAX] = {
         TERMP_BOLD,             /* TTYPE_PROG */          TERMP_BOLD,             /* TTYPE_PROG */
         TERMP_BOLD,             /* TTYPE_CMD_FLAG */          TERMP_BOLD,             /* TTYPE_CMD_FLAG */
Line 79  const int ttypes[TTYPE_NMAX] = {
Line 79  const int ttypes[TTYPE_NMAX] = {
         TERMP_BOLD,             /* TTYPE_CMD */          TERMP_BOLD,             /* TTYPE_CMD */
         TERMP_BOLD,             /* TTYPE_INCLUDE */          TERMP_BOLD,             /* TTYPE_INCLUDE */
         TERMP_BOLD,             /* TTYPE_SYMB */          TERMP_BOLD,             /* TTYPE_SYMB */
         TERMP_BOLD              /* TTYPE_SYMBOL */          TERMP_BOLD,             /* TTYPE_SYMBOL */
           TERMP_BOLD              /* TTYPE_DIAG */
 };  };
   
 static  int               arg_hasattr(int, size_t,  static  int               arg_hasattr(int, size_t,
Line 88  static int    arg_getattr(int, size_t, 
Line 89  static int    arg_getattr(int, size_t, 
                                 const struct mdoc_arg *);                                  const struct mdoc_arg *);
 static  size_t            arg_offset(const struct mdoc_arg *);  static  size_t            arg_offset(const struct mdoc_arg *);
 static  size_t            arg_width(const struct mdoc_arg *);  static  size_t            arg_width(const struct mdoc_arg *);
   static  int               arg_listtype(const struct mdoc_node *);
   
 /*  /*
  * What follows describes prefix and postfix operations for the abstract   * What follows describes prefix and postfix operations for the abstract
Line 307  arg_width(const struct mdoc_arg *arg)
Line 309  arg_width(const struct mdoc_arg *arg)
 }  }
   
   
   static int
   arg_listtype(const struct mdoc_node *n)
   {
           const struct mdoc_block *bl;
           int              i, len;
   
           bl = &n->data.block;
           len = (int)bl->argc;
   
           for (i = 0; i < len; i++)
                   switch (bl->argv[i].arg) {
                   case (MDOC_Bullet):
                           /* FALLTHROUGH */
                   case (MDOC_Dash):
                           /* FALLTHROUGH */
                   case (MDOC_Enum):
                           /* FALLTHROUGH */
                   case (MDOC_Hyphen):
                           /* FALLTHROUGH */
                   case (MDOC_Tag):
                           /* FALLTHROUGH */
                   case (MDOC_Inset):
                           /* FALLTHROUGH */
                   case (MDOC_Diag):
                           /* FALLTHROUGH */
                   case (MDOC_Item):
                           /* FALLTHROUGH */
                   case (MDOC_Ohang):
                           return(bl->argv[i].arg);
                   default:
                           break;
                   }
   
           errx(1, "list type not supported");
           /* NOTREACHED */
   }
   
   
 static size_t  static size_t
 arg_offset(const struct mdoc_arg *arg)  arg_offset(const struct mdoc_arg *arg)
 {  {
Line 370  termp_dq_post(DECL_ARGS)
Line 410  termp_dq_post(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 termp_it_pre(DECL_ARGS)  termp_it_pre_block(DECL_ARGS)
 {  {
         const struct mdoc_node *n, *it;          const struct mdoc_node  *n;
         const struct mdoc_block *bl;          const struct mdoc_block *bl;
         char             buf[7], *tp;  
         int              i, type;  
         size_t           width, offset;  
   
         switch (node->type) {          n = node->parent->parent;
         case (MDOC_BODY):  
                 /* FALLTHROUGH */  
         case (MDOC_HEAD):  
                 it = node->parent;  
                 break;  
         case (MDOC_BLOCK):  
                 it = node;  
                 break;  
         default:  
                 return(1);  
         }  
   
         n = it->parent->parent;  
         bl = &n->data.block;          bl = &n->data.block;
   
         if (MDOC_BLOCK == node->type) {          newln(p);
                 newln(p);          if ( ! arg_hasattr(MDOC_Compact, bl->argc, bl->argv))
                 if ( ! arg_hasattr(MDOC_Compact, bl->argc, bl->argv))                  if (node->prev || n->prev)
                         if (node->prev || n->prev)                          vspace(p);
                                 vspace(p);  
                 return(1);  
         }  
   
         /* Get our list type. */          return(1);
   }
   
         for (type = -1, i = 0; i < (int)bl->argc; i++)  
                 switch (bl->argv[i].arg) {  
                 case (MDOC_Bullet):  
                         /* FALLTHROUGH */  
                 case (MDOC_Dash):  
                         /* FALLTHROUGH */  
                 case (MDOC_Enum):  
                         /* FALLTHROUGH */  
                 case (MDOC_Hyphen):  
                         /* FALLTHROUGH */  
                 case (MDOC_Tag):  
                         /* FALLTHROUGH */  
                 case (MDOC_Ohang):  
                         type = bl->argv[i].arg;  
                         i = (int)bl->argc;  
                         break;  
                 default:  
                         errx(1, "list type not supported");  
                         /* NOTREACHED */  
                 }  
   
         assert(-1 != type);  /* ARGSUSED */
   static int
   termp_it_pre(DECL_ARGS)
   {
           const struct mdoc_block *bl;
           char             buf[7];
           int              i, type;
           size_t           width, offset;
   
         /* Save our existing (inherited) margin and offset. */          if (MDOC_BLOCK == node->type)
                   return(termp_it_pre_block(p, pair, meta, node));
   
           /* Get ptr to list block, type, etc. */
   
           bl = &node->parent->parent->parent->data.block;
           type = arg_listtype(node->parent->parent->parent);
   
           /* Save parent attributes. */
   
         pair->offset = p->offset;          pair->offset = p->offset;
         pair->rmargin = p->rmargin;          pair->rmargin = p->rmargin;
           pair->flag = p->flags;
   
         /* Get list width and offset. */          /* Get list width and offset. */
   
Line 440  termp_it_pre(DECL_ARGS)
Line 458  termp_it_pre(DECL_ARGS)
         i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);          i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
         offset = i >= 0 ? arg_offset(&bl->argv[i]) : 0;          offset = i >= 0 ? arg_offset(&bl->argv[i]) : 0;
   
         /* Override the width. */          /*
            * List-type can override the width in the case of fixed-head
            * values (bullet, dash/hyphen, enum).  Tags need a non-zero
            * offset.
            */
   
         switch (type) {          switch (type) {
         case (MDOC_Bullet):          case (MDOC_Bullet):
Line 450  termp_it_pre(DECL_ARGS)
Line 472  termp_it_pre(DECL_ARGS)
         case (MDOC_Enum):          case (MDOC_Enum):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Hyphen):          case (MDOC_Hyphen):
                 width = width > 6 ? width : 6;                  width = width > 4 ? width : 4;
                 break;                  break;
         case (MDOC_Tag):          case (MDOC_Tag):
                 /* FIXME: auto-size. */                  if (width)
                 if (0 == width)                          break;
                         errx(1, "need non-zero -width");                  errx(1, "need non-zero %s for list type",
                                   mdoc_argnames[MDOC_Width]);
           default:
                 break;                  break;
           }
   
           /*
            * Whitespace control.  Inset bodies need an initial space.
            */
   
           switch (type) {
           case (MDOC_Diag):
                   /* FALLTHROUGH */
           case (MDOC_Inset):
                   if (MDOC_BODY == node->type)
                           p->flags &= ~TERMP_NOSPACE;
                   else
                           p->flags |= TERMP_NOSPACE;
                   break;
         default:          default:
                   p->flags |= TERMP_NOSPACE;
                 break;                  break;
         }          }
   
         /* Word-wrap control. */          /*
            * Style flags.  Diagnostic heads need TTYPE_DIAG.
            */
   
         p->flags |= TERMP_NOSPACE;          switch (type) {
           case (MDOC_Diag):
                   if (MDOC_HEAD == node->type)
                           p->flags |= ttypes[TTYPE_DIAG];
                   break;
           default:
                   break;
           }
   
           /*
            * Pad and break control.  This is the tricker part.  Lists with
            * set right-margins for the head get TERMP_NOBREAK because, if
            * they overrun the margin, they wrap to the new margin.
            * Correspondingly, the body for these types don't left-pad, as
            * the head will pad out to to the right.
            */
   
         switch (type) {          switch (type) {
         case (MDOC_Bullet):          case (MDOC_Bullet):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 477  termp_it_pre(DECL_ARGS)
Line 534  termp_it_pre(DECL_ARGS)
         case (MDOC_Tag):          case (MDOC_Tag):
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
                         p->flags |= TERMP_NOBREAK;                          p->flags |= TERMP_NOBREAK;
                 else if (MDOC_BODY == node->type)                  else
                         p->flags |= TERMP_NOLPAD;                          p->flags |= TERMP_NOLPAD;
                 break;                  break;
           case (MDOC_Diag):
                   if (MDOC_HEAD == node->type)
                           p->flags |= TERMP_NOBREAK;
                   break;
         default:          default:
                 break;                  break;
         }          }
   
         /*          /*
          * Get a token to use as the HEAD lead-in.  If NULL, we use the           * Margin control.  Set-head-width lists have their right
          * HEAD child.           * margins shortened.  The body for these lists has the offset
            * necessarily lengthened.  Everybody gets the offset.
          */           */
   
         tp = NULL;  
   
         if (MDOC_HEAD == node->type) {  
                 if (arg_hasattr(MDOC_Bullet, bl->argc, bl->argv))  
                         tp = "\\[bu]";  
                 if (arg_hasattr(MDOC_Dash, bl->argc, bl->argv))  
                         tp = "\\-";  
                 if (arg_hasattr(MDOC_Enum, bl->argc, bl->argv)) {  
                         (pair->ppair->ppair->count)++;  
                         (void)snprintf(buf, sizeof(buf), "%d.",  
                                         pair->ppair->ppair->count);  
                         tp = buf;  
                 }  
                 if (arg_hasattr(MDOC_Hyphen, bl->argc, bl->argv))  
                         tp = "\\-";  
         }  
   
         /* Margin control. */  
   
         p->offset += offset;          p->offset += offset;
   
         switch (type) {          switch (type) {
Line 522  termp_it_pre(DECL_ARGS)
Line 565  termp_it_pre(DECL_ARGS)
         case (MDOC_Tag):          case (MDOC_Tag):
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
                         p->rmargin = p->offset + width;                          p->rmargin = p->offset + width;
                 else if (MDOC_BODY == node->type)                  else
                         p->offset += width;                          p->offset += width;
                 break;                  /* FALLTHROUGH */
         default:          default:
                 break;                  break;
         }          }
   
         if (NULL == tp)          /*
                 return(1);           * The dash, hyphen, bullet and enum lists all have a special
            * HEAD character.  Print it now.
            */
   
         word(p, tp);          if (MDOC_HEAD == node->type)
         return(0);                  switch (type) {
                   case (MDOC_Bullet):
                           word(p, "\\[bu]");
                           break;
                   case (MDOC_Dash):
                           /* FALLTHROUGH */
                   case (MDOC_Hyphen):
                           word(p, "\\-");
                           break;
                   case (MDOC_Enum):
                           /* TODO: have a wordfmt or something. */
                           (pair->ppair->ppair->count)++;
                           (void)snprintf(buf, sizeof(buf), "%d.",
                                           pair->ppair->ppair->count);
                           word(p, buf);
                           break;
                   default:
                           break;
                   }
   
           /*
            * If we're not going to process our header children, indicate
            * so here.
            */
   
           if (MDOC_HEAD == node->type)
                   switch (type) {
                   case (MDOC_Bullet):
                           /* FALLTHROUGH */
                   case (MDOC_Item):
                           /* FALLTHROUGH */
                   case (MDOC_Dash):
                           /* FALLTHROUGH */
                   case (MDOC_Hyphen):
                           /* FALLTHROUGH */
                   case (MDOC_Enum):
                           return(0);
                   default:
                           break;
           }
   
           return(1);
 }  }
   
   
Line 541  termp_it_pre(DECL_ARGS)
Line 627  termp_it_pre(DECL_ARGS)
 static void  static void
 termp_it_post(DECL_ARGS)  termp_it_post(DECL_ARGS)
 {  {
           int                type;
   
         if (MDOC_BODY != node->type && MDOC_HEAD != node->type)          if (MDOC_BODY != node->type && MDOC_HEAD != node->type)
                 return;                  return;
   
         flushln(p);          type = arg_listtype(node->parent->parent->parent);
   
           switch (type) {
           case (MDOC_Diag):
                   /* FALLTHROUGH */
           case (MDOC_Item):
                   /* FALLTHROUGH */
           case (MDOC_Inset):
                   if (MDOC_BODY != node->type)
                           break;
                   flushln(p);
                   break;
           default:
                   flushln(p);
                   break;
           }
   
         p->offset = pair->offset;          p->offset = pair->offset;
         p->rmargin = pair->rmargin;          p->rmargin = pair->rmargin;
           p->flags = pair->flag;
         if (MDOC_HEAD == node->type)  
                 p->flags &= ~TERMP_NOBREAK;  
         else if (MDOC_BODY == node->type)  
                 p->flags &= ~TERMP_NOLPAD;  
 }  }
   
   
Line 934  static int
Line 1032  static int
 termp_ft_pre(DECL_ARGS)  termp_ft_pre(DECL_ARGS)
 {  {
   
           if (SEC_SYNOPSIS == node->sec)
                   if (node->prev && MDOC_Fo == node->prev->tok)
                           vspace(p);
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]);
         return(1);          return(1);
 }  }
Line 944  static void
Line 1045  static void
 termp_ft_post(DECL_ARGS)  termp_ft_post(DECL_ARGS)
 {  {
   
         if (node->sec == SEC_SYNOPSIS)          if (SEC_SYNOPSIS == node->sec)
                 newln(p);                  newln(p);
 }  }
   
Line 1050  static int
Line 1151  static int
 termp_bd_pre(DECL_ARGS)  termp_bd_pre(DECL_ARGS)
 {  {
         const struct mdoc_block *bl;          const struct mdoc_block *bl;
         const struct mdoc_node *n;          const struct mdoc_node  *n;
         int              i;          int              i, type;
   
         if (MDOC_BLOCK == node->type) {          if (MDOC_BLOCK == node->type) {
                 if (node->prev)                  if (node->prev)
Line 1060  termp_bd_pre(DECL_ARGS)
Line 1161  termp_bd_pre(DECL_ARGS)
         } else if (MDOC_BODY != node->type)          } else if (MDOC_BODY != node->type)
                 return(1);                  return(1);
   
         assert(MDOC_BLOCK == node->parent->type);  
         pair->offset = p->offset;          pair->offset = p->offset;
   
         bl = &node->parent->data.block;          bl = &node->parent->data.block;
   
           for (type = -1, i = 0; i < (int)bl->argc; i++) {
                   switch (bl->argv[i].arg) {
                   case (MDOC_Ragged):
                           /* FALLTHROUGH */
                   case (MDOC_Filled):
                           /* FALLTHROUGH */
                   case (MDOC_Unfilled):
                           /* FALLTHROUGH */
                   case (MDOC_Literal):
                           type = bl->argv[i].arg;
                           i = (int)bl->argc;
                           break;
                   default:
                           errx(1, "display type not supported");
                   }
           }
   
           assert(-1 != type);
   
         i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);          i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
         if (-1 != i) {          if (-1 != i) {
                 assert(1 == bl->argv[i].sz);                  assert(1 == bl->argv[i].sz);
                 p->offset += arg_offset(&bl->argv[i]);                  p->offset += arg_offset(&bl->argv[i]);
         }          }
   
   
           switch (type) {
           case (MDOC_Literal):
                   /* FALLTHROUGH */
           case (MDOC_Unfilled):
                   break;
           default:
                   return(1);
           }
   
         p->flags |= TERMP_LITERAL;          p->flags |= TERMP_LITERAL;
   
         for (n = node->child; n; n = n->next) {          for (n = node->child; n; n = n->next) {
                 if (MDOC_TEXT != n->type)                  if (MDOC_TEXT != n->type) {
                         errx(1, "non-text displays unsupported");                          warnx("non-text children not yet allowed");
                 if ((*n->data.text.string)) {                          continue;
                         word(p, n->data.text.string);                  }
                         flushln(p);                  word(p, n->data.text.string);
                 } else                  flushln(p);
                         vspace(p);  
   
         }          }
   
         p->flags &= ~TERMP_LITERAL;  
         return(0);          return(0);
 }  }
   
Line 1096  termp_bd_post(DECL_ARGS)
Line 1221  termp_bd_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         newln(p);  
           if ( ! (p->flags & TERMP_LITERAL))
                   flushln(p);
   
           p->flags &= ~TERMP_LITERAL;
         p->offset = pair->offset;          p->offset = pair->offset;
 }  }
   
Line 1141  static void
Line 1270  static void
 termp_bx_post(DECL_ARGS)  termp_bx_post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          if (node->child)
                   p->flags |= TERMP_NOSPACE;
         word(p, "BSD");          word(p, "BSD");
 }  }
   
Line 1292  termp_cd_pre(DECL_ARGS)
Line 1422  termp_cd_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]);
           newln(p);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.39

CVSweb