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

Diff for /mandoc/man_term.c between version 1.23 and 1.24

version 1.23, 2009/08/17 11:03:07 version 1.24, 2009/08/18 08:48:30
Line 27 
Line 27 
 #define INDENT            7  #define INDENT            7
 #define HALFINDENT        3  #define HALFINDENT        3
   
 #ifdef __linux__  struct  mtermp {
 extern  size_t            strlcpy(char *, const char *, size_t);          int               fl;
 extern  size_t            strlcat(char *, const char *, size_t);  
 #endif  
   
 #define MANT_LITERAL     (1 << 0)  #define MANT_LITERAL     (1 << 0)
           int               lmargin;
   };
   
 #define DECL_ARGS         struct termp *p, \  #define DECL_ARGS         struct termp *p, \
                           int *fl, \                            struct mtermp *mt, \
                           const struct man_node *n, \                            const struct man_node *n, \
                           const struct man_meta *m                            const struct man_meta *m
   
Line 103  static const struct termact termacts[MAN_MAX] = {
Line 102  static const struct termact termacts[MAN_MAX] = {
         { pre_r, NULL }, /* r */          { pre_r, NULL }, /* r */
 };  };
   
   #ifdef __linux__
   extern  size_t            strlcpy(char *, const char *, size_t);
   extern  size_t            strlcat(char *, const char *, size_t);
   #endif
   
 static  void              print_head(struct termp *,  static  void              print_head(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              print_body(DECL_ARGS);  static  void              print_body(DECL_ARGS);
Line 117  static int    arg_width(const struct man_node *);
Line 121  static int    arg_width(const struct man_node *);
 int  int
 man_run(struct termp *p, const struct man *m)  man_run(struct termp *p, const struct man *m)
 {  {
         int              fl;          struct mtermp    mt;
   
         print_head(p, man_meta(m));          print_head(p, man_meta(m));
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         assert(man_node(m));          assert(man_node(m));
         assert(MAN_ROOT == man_node(m)->type);          assert(MAN_ROOT == man_node(m)->type);
   
         fl = 0;          mt.fl = 0;
           mt.lmargin = INDENT;
   
         if (man_node(m)->child)          if (man_node(m)->child)
                 print_body(p, &fl, man_node(m)->child, man_meta(m));                  print_body(p, &mt, man_node(m)->child, man_meta(m));
         print_foot(p, man_meta(m));          print_foot(p, man_meta(m));
   
         return(1);          return(1);
Line 223  static int
Line 229  static int
 pre_fi(DECL_ARGS)  pre_fi(DECL_ARGS)
 {  {
   
         *fl &= ~MANT_LITERAL;          mt->fl &= ~MANT_LITERAL;
         return(1);          return(1);
 }  }
   
Line 234  pre_nf(DECL_ARGS)
Line 240  pre_nf(DECL_ARGS)
 {  {
   
         term_newln(p);          term_newln(p);
         *fl |= MANT_LITERAL;          mt->fl |= MANT_LITERAL;
         return(1);          return(1);
 }  }
   
Line 251  pre_IR(DECL_ARGS)
Line 257  pre_IR(DECL_ARGS)
                         p->flags |= TERMP_UNDER;                          p->flags |= TERMP_UNDER;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, fl, nn, m);                  print_node(p, mt, nn, m);
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags &= ~TERMP_UNDER;                          p->flags &= ~TERMP_UNDER;
         }          }
Line 270  pre_IB(DECL_ARGS)
Line 276  pre_IB(DECL_ARGS)
                 p->flags |= i % 2 ? TERMP_BOLD : TERMP_UNDER;                  p->flags |= i % 2 ? TERMP_BOLD : TERMP_UNDER;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, fl, nn, m);                  print_node(p, mt, nn, m);
                 p->flags &= i % 2 ? ~TERMP_BOLD : ~TERMP_UNDER;                  p->flags &= i % 2 ? ~TERMP_BOLD : ~TERMP_UNDER;
         }          }
         return(0);          return(0);
Line 289  pre_RB(DECL_ARGS)
Line 295  pre_RB(DECL_ARGS)
                         p->flags |= TERMP_BOLD;                          p->flags |= TERMP_BOLD;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, fl, nn, m);                  print_node(p, mt, nn, m);
                 if (i % 2)                  if (i % 2)
                         p->flags &= ~TERMP_BOLD;                          p->flags &= ~TERMP_BOLD;
         }          }
Line 309  pre_RI(DECL_ARGS)
Line 315  pre_RI(DECL_ARGS)
                         p->flags |= TERMP_UNDER;                          p->flags |= TERMP_UNDER;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, fl, nn, m);                  print_node(p, mt, nn, m);
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags &= ~TERMP_UNDER;                          p->flags &= ~TERMP_UNDER;
         }          }
Line 329  pre_BR(DECL_ARGS)
Line 335  pre_BR(DECL_ARGS)
                         p->flags |= TERMP_BOLD;                          p->flags |= TERMP_BOLD;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, fl, nn, m);                  print_node(p, mt, nn, m);
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags &= ~TERMP_BOLD;                          p->flags &= ~TERMP_BOLD;
         }          }
Line 348  pre_BI(DECL_ARGS)
Line 354  pre_BI(DECL_ARGS)
                 p->flags |= i % 2 ? TERMP_UNDER : TERMP_BOLD;                  p->flags |= i % 2 ? TERMP_UNDER : TERMP_BOLD;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, fl, nn, m);                  print_node(p, mt, nn, m);
                 p->flags &= i % 2 ? ~TERMP_UNDER : ~TERMP_BOLD;                  p->flags &= i % 2 ? ~TERMP_UNDER : ~TERMP_BOLD;
         }          }
         return(0);          return(0);
Line 409  pre_br(DECL_ARGS)
Line 415  pre_br(DECL_ARGS)
 static int  static int
 pre_HP(DECL_ARGS)  pre_HP(DECL_ARGS)
 {  {
           size_t                   len;
           int                      ival;
           const struct man_node   *nn;
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
                 fmt_block_vspace(p, n);                  fmt_block_vspace(p, n);
                 break;                  return(1);
         case (MAN_BODY):          case (MAN_BODY):
                 p->flags |= TERMP_NOBREAK;                  p->flags |= TERMP_NOBREAK;
                 p->flags |= TERMP_TWOSPACE;                  p->flags |= TERMP_TWOSPACE;
                 p->offset = INDENT;  
                 p->rmargin = INDENT * 2;  
                 break;                  break;
         default:          default:
                 return(0);                  return(0);
         }          }
   
           len = (size_t)mt->lmargin;
           ival = -1;
   
           /* Calculate offset. */
   
           if (NULL != (nn = n->parent->head->child))
                   if ((ival = arg_width(nn)) >= 0)
                           len = (size_t)ival;
   
           if (0 == len)
                   len = 1;
   
           p->offset = INDENT;
           p->rmargin = INDENT + len;
   
           if (ival >= 0)
                   mt->lmargin = ival;
   
         return(1);          return(1);
 }  }
   
Line 434  post_HP(DECL_ARGS)
Line 459  post_HP(DECL_ARGS)
 {  {
   
         switch (n->type) {          switch (n->type) {
           case (MAN_BLOCK):
                   term_flushln(p);
                   break;
         case (MAN_BODY):          case (MAN_BODY):
                 term_flushln(p);                  term_flushln(p);
                 p->flags &= ~TERMP_NOBREAK;                  p->flags &= ~TERMP_NOBREAK;
Line 454  pre_PP(DECL_ARGS)
Line 482  pre_PP(DECL_ARGS)
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
                   mt->lmargin = INDENT;
                 fmt_block_vspace(p, n);                  fmt_block_vspace(p, n);
                 break;                  break;
         default:          default:
Line 489  pre_IP(DECL_ARGS)
Line 518  pre_IP(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
         len = INDENT;          len = (size_t)mt->lmargin;
         ival = -1;          ival = -1;
   
         /* Calculate offset. */          /* Calculate offset. */
Line 513  pre_IP(DECL_ARGS)
Line 542  pre_IP(DECL_ARGS)
                 if (ival < 0)                  if (ival < 0)
                         break;                          break;
   
                   /* Set the saved left-margin. */
                   mt->lmargin = ival;
   
                 /* Don't print the length value. */                  /* Don't print the length value. */
                 for (nn = n->child; nn->next; nn = nn->next)                  for (nn = n->child; nn->next; nn = nn->next)
                         print_node(p, fl, nn, m);                          print_node(p, mt, nn, m);
                 return(0);                  return(0);
         case (MAN_BODY):          case (MAN_BODY):
                 p->offset = INDENT + len;                  p->offset = INDENT + len;
Line 575  pre_TP(DECL_ARGS)
Line 607  pre_TP(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
         len = INDENT;          len = (size_t)mt->lmargin;
         ival = -1;          ival = -1;
   
         /* Calculate offset. */          /* Calculate offset. */
Line 597  pre_TP(DECL_ARGS)
Line 629  pre_TP(DECL_ARGS)
                 /* Don't print same-line elements. */                  /* Don't print same-line elements. */
                 for (nn = n->child; nn; nn = nn->next)                  for (nn = n->child; nn; nn = nn->next)
                         if (nn->line > n->line)                          if (nn->line > n->line)
                                 print_node(p, fl, nn, m);                                  print_node(p, mt, nn, m);
   
                   if (ival >= 0)
                           mt->lmargin = ival;
   
                 return(0);                  return(0);
         case (MAN_BODY):          case (MAN_BODY):
                 p->offset = INDENT + len;                  p->offset = INDENT + len;
Line 640  pre_SS(DECL_ARGS)
Line 676  pre_SS(DECL_ARGS)
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
                 term_newln(p);                  mt->lmargin = INDENT;
                 if (n->prev)                  /* If following a prior empty `SS', no vspace. */
                         term_vspace(p);                  if (n->prev && MAN_SS == n->prev->tok)
                           if (NULL == n->prev->body->child)
                                   break;
                   if (NULL == n->prev)
                           break;
                   term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 p->flags |= TERMP_BOLD;                  p->flags |= TERMP_BOLD;
                 p->offset = HALFINDENT;                  p->offset = HALFINDENT;
                 break;                  break;
         default:          case (MAN_BODY):
                 p->offset = INDENT;                  p->offset = INDENT;
                 break;                  break;
           default:
                   break;
         }          }
   
         return(1);          return(1);
Line 667  post_SS(DECL_ARGS)
Line 710  post_SS(DECL_ARGS)
                 term_newln(p);                  term_newln(p);
                 p->flags &= ~TERMP_BOLD;                  p->flags &= ~TERMP_BOLD;
                 break;                  break;
           case (MAN_BODY):
                   term_newln(p);
                   break;
         default:          default:
                 break;                  break;
         }          }
Line 680  pre_SH(DECL_ARGS)
Line 726  pre_SH(DECL_ARGS)
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
                   mt->lmargin = INDENT;
                 /* If following a prior empty `SH', no vspace. */                  /* If following a prior empty `SH', no vspace. */
                 if (n->prev && MAN_SH == n->prev->tok)                  if (n->prev && MAN_SH == n->prev->tok)
                         if (NULL == n->prev->body->child)                          if (NULL == n->prev->body->child)
Line 745  print_node(DECL_ARGS)
Line 792  print_node(DECL_ARGS)
                                 n->string[sz - 2] == '\\')                                  n->string[sz - 2] == '\\')
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 /* FIXME: this means that macro lines are munged!  */                  /* FIXME: this means that macro lines are munged!  */
                 if (MANT_LITERAL & *fl) {                  if (MANT_LITERAL & mt->fl) {
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                         term_flushln(p);                          term_flushln(p);
                 }                  }
                 break;                  break;
         default:          default:
                 if (termacts[n->tok].pre)                  if (termacts[n->tok].pre)
                         c = (*termacts[n->tok].pre)(p, fl, n, m);                          c = (*termacts[n->tok].pre)(p, mt, n, m);
                 break;                  break;
         }          }
   
         if (c && n->child)          if (c && n->child)
                 print_body(p, fl, n->child, m);                  print_body(p, mt, n->child, m);
   
         if (MAN_TEXT != n->type)          if (MAN_TEXT != n->type)
                 if (termacts[n->tok].post)                  if (termacts[n->tok].post)
                         (*termacts[n->tok].post)(p, fl, n, m);                          (*termacts[n->tok].post)(p, mt, n, m);
 }  }
   
   
Line 769  static void
Line 816  static void
 print_body(DECL_ARGS)  print_body(DECL_ARGS)
 {  {
   
         print_node(p, fl, n, m);          print_node(p, mt, n, m);
         if ( ! n->next)          if ( ! n->next)
                 return;                  return;
         print_body(p, fl, n->next, m);          print_body(p, mt, n->next, m);
 }  }
   
   

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

CVSweb