[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.44 and 1.51

version 1.44, 2009/10/24 05:45:05 version 1.51, 2009/11/10 12:03:30
Line 18 
Line 18 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 69  extern size_t    strlcpy(char *, const char *, size_t)
Line 68  extern size_t    strlcpy(char *, const char *, size_t)
 extern  size_t            strlcat(char *, const char *, size_t);  extern  size_t            strlcat(char *, const char *, size_t);
 #endif  #endif
   
 static  int               arg2width(const struct man_node *);  static  int               a2width(const struct man_node *);
 static  int               arg2height(const struct man_node *);  static  int               a2height(const struct man_node *);
   
 static  void              print_head(struct termp *,  static  void              print_man_head(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              print_body(DECL_ARGS);  static  void              print_man_body(DECL_ARGS);
 static  void              print_node(DECL_ARGS);  static  void              print_man_node(DECL_ARGS);
 static  void              print_foot(struct termp *,  static  void              print_man_foot(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              print_bvspace(struct termp *,  static  void              print_bvspace(struct termp *,
                                 const struct man_node *);                                  const struct man_node *);
Line 86  static int    pre_BI(DECL_ARGS);
Line 85  static int    pre_BI(DECL_ARGS);
 static  int               pre_HP(DECL_ARGS);  static  int               pre_HP(DECL_ARGS);
 static  int               pre_I(DECL_ARGS);  static  int               pre_I(DECL_ARGS);
 static  int               pre_IP(DECL_ARGS);  static  int               pre_IP(DECL_ARGS);
 static  int               pre_IR(DECL_ARGS);  
 static  int               pre_PP(DECL_ARGS);  static  int               pre_PP(DECL_ARGS);
 static  int               pre_RB(DECL_ARGS);  static  int               pre_RB(DECL_ARGS);
 static  int               pre_RI(DECL_ARGS);  static  int               pre_RI(DECL_ARGS);
Line 131  static const struct termact termacts[MAN_MAX] = {
Line 129  static const struct termact termacts[MAN_MAX] = {
         { NULL, NULL }, /* R */          { NULL, NULL }, /* R */
         { pre_B, post_B }, /* B */          { pre_B, post_B }, /* B */
         { pre_I, post_I }, /* I */          { pre_I, post_I }, /* I */
         { pre_IR, NULL }, /* IR */          { pre_RI, NULL }, /* IR */
         { pre_RI, NULL }, /* RI */          { pre_RI, NULL }, /* RI */
         { NULL, NULL }, /* na */          { NULL, NULL }, /* na */
         { pre_I, post_i }, /* i */          { pre_I, post_i }, /* i */
Line 171  terminal_man(void *arg, const struct man *man)
Line 169  terminal_man(void *arg, const struct man *man)
         n = man_node(man);          n = man_node(man);
         m = man_meta(man);          m = man_meta(man);
   
         print_head(p, m);          print_man_head(p, m);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
   
         mt.fl = 0;          mt.fl = 0;
Line 179  terminal_man(void *arg, const struct man *man)
Line 177  terminal_man(void *arg, const struct man *man)
         mt.offset = INDENT;          mt.offset = INDENT;
   
         if (n->child)          if (n->child)
                 print_body(p, &mt, n->child, m);                  print_man_body(p, &mt, n->child, m);
         print_foot(p, m);          print_man_foot(p, m);
 }  }
   
   
 static int  static int
 arg2height(const struct man_node *n)  a2height(const struct man_node *n)
 {  {
         struct roffsu    su;          struct roffsu    su;
   
Line 199  arg2height(const struct man_node *n)
Line 197  arg2height(const struct man_node *n)
   
   
 static int  static int
 arg2width(const struct man_node *n)  a2width(const struct man_node *n)
 {  {
         struct roffsu    su;          struct roffsu    su;
   
Line 300  pre_nf(DECL_ARGS)
Line 298  pre_nf(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 pre_IR(DECL_ARGS)  
 {  
         const struct man_node *nn;  
         int              i;  
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {  
                 if ( ! (i % 2))  
                         p->under++;  
                 if (i > 0)  
                         p->flags |= TERMP_NOSPACE;  
                 print_node(p, mt, nn, m);  
                 if ( ! (i % 2))  
                         p->under--;  
         }  
         return(0);  
 }  
   
   
 /* ARGSUSED */  
 static int  
 pre_RB(DECL_ARGS)  pre_RB(DECL_ARGS)
 {  {
         const struct man_node *nn;          const struct man_node *nn;
Line 334  pre_RB(DECL_ARGS)
Line 312  pre_RB(DECL_ARGS)
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
   
                 print_node(p, mt, nn, m);                  print_man_node(p, mt, nn, m);
   
                 if (i % 2 && MAN_RB == n->tok)                  if (i % 2 && MAN_RB == n->tok)
                         p->bold--;                          p->bold--;
Line 353  pre_RI(DECL_ARGS)
Line 331  pre_RI(DECL_ARGS)
         int              i;          int              i;
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if ( ! (i % 2))                  if (i % 2 && MAN_RI == n->tok)
                         p->under++;                          p->under++;
                   else if ( ! (i % 2) && MAN_RI != n->tok)
                           p->under++;
   
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_man_node(p, mt, nn, m);
                 if ( ! (i % 2))  
                   if (i % 2 && MAN_RI == n->tok)
                         p->under--;                          p->under--;
                   else if ( ! (i % 2) && MAN_RI != n->tok)
                           p->under--;
         }          }
         return(0);          return(0);
 }  }
Line 384  pre_BI(DECL_ARGS)
Line 368  pre_BI(DECL_ARGS)
   
                 if (i)                  if (i)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_man_node(p, mt, nn, m);
   
                 if (i % 2 && MAN_BI == n->tok)                  if (i % 2 && MAN_BI == n->tok)
                         p->under--;                          p->under--;
Line 424  pre_sp(DECL_ARGS)
Line 408  pre_sp(DECL_ARGS)
 {  {
         int              i, len;          int              i, len;
   
         len = n->child ? arg2height(n->child) : 1;          len = n->child ? a2height(n->child) : 1;
   
         if (0 == len)          if (0 == len)
                 term_newln(p);                  term_newln(p);
Line 471  pre_HP(DECL_ARGS)
Line 455  pre_HP(DECL_ARGS)
         /* Calculate offset. */          /* Calculate offset. */
   
         if (NULL != (nn = n->parent->head->child))          if (NULL != (nn = n->parent->head->child))
                 if ((ival = arg2width(nn)) >= 0)                  if ((ival = a2width(nn)) >= 0)
                         len = (size_t)ival;                          len = (size_t)ival;
   
         if (0 == len)          if (0 == len)
Line 561  pre_IP(DECL_ARGS)
Line 545  pre_IP(DECL_ARGS)
                 if (NULL != (nn = nn->next)) {                  if (NULL != (nn = nn->next)) {
                         for ( ; nn->next; nn = nn->next)                          for ( ; nn->next; nn = nn->next)
                                 /* Do nothing. */ ;                                  /* Do nothing. */ ;
                         if ((ival = arg2width(nn)) >= 0)                          if ((ival = a2width(nn)) >= 0)
                                 len = (size_t)ival;                                  len = (size_t)ival;
                 }                  }
   
Line 581  pre_IP(DECL_ARGS)
Line 565  pre_IP(DECL_ARGS)
   
                 /* 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, mt, nn, m);                          print_man_node(p, mt, nn, m);
                 return(0);                  return(0);
         case (MAN_BODY):          case (MAN_BODY):
                 p->offset = mt->offset + len;                  p->offset = mt->offset + len;
Line 648  pre_TP(DECL_ARGS)
Line 632  pre_TP(DECL_ARGS)
   
         if (NULL != (nn = n->parent->head->child))          if (NULL != (nn = n->parent->head->child))
                 if (NULL != nn->next)                  if (NULL != nn->next)
                         if ((ival = arg2width(nn)) >= 0)                          if ((ival = a2width(nn)) >= 0)
                                 len = (size_t)ival;                                  len = (size_t)ival;
   
         switch (n->type) {          switch (n->type) {
Line 663  pre_TP(DECL_ARGS)
Line 647  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, mt, nn, m);                                  print_man_node(p, mt, nn, m);
   
                 if (ival >= 0)                  if (ival >= 0)
                         mt->lmargin = (size_t)ival;                          mt->lmargin = (size_t)ival;
Line 826  pre_RS(DECL_ARGS)
Line 810  pre_RS(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
         if ((ival = arg2width(nn)) < 0)          if ((ival = a2width(nn)) < 0)
                 return(1);                  return(1);
   
         mt->offset = INDENT + (size_t)ival;          mt->offset = INDENT + (size_t)ival;
Line 854  post_RS(DECL_ARGS)
Line 838  post_RS(DECL_ARGS)
   
   
 static void  static void
 print_node(DECL_ARGS)  print_man_node(DECL_ARGS)
 {  {
         int              c, sz;          int              c, sz;
   
Line 890  print_node(DECL_ARGS)
Line 874  print_node(DECL_ARGS)
         }          }
   
         if (c && n->child)          if (c && n->child)
                 print_body(p, mt, n->child, m);                  print_man_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, mt, n, m);                          (*termacts[n->tok].post)(p, mt, n, m);
   
                   /* Reset metafont upon exit from macro. */
                   p->metafont = 0;
           }
 }  }
   
   
 static void  static void
 print_body(DECL_ARGS)  print_man_body(DECL_ARGS)
 {  {
   
         print_node(p, mt, n, m);          print_man_node(p, mt, n, m);
         if ( ! n->next)          if ( ! n->next)
                 return;                  return;
         print_body(p, mt, n->next, m);          print_man_body(p, mt, n->next, m);
 }  }
   
   
 static void  static void
 print_foot(struct termp *p, const struct man_meta *meta)  print_man_foot(struct termp *p, const struct man_meta *meta)
 {  {
         char            buf[DATESIZ];          char            buf[DATESIZ];
   
           p->metafont = 0;
   
         time2a(meta->date, buf, DATESIZ);          time2a(meta->date, buf, DATESIZ);
   
         term_vspace(p);          term_vspace(p);
Line 939  print_foot(struct termp *p, const struct man_meta *met
Line 929  print_foot(struct termp *p, const struct man_meta *met
   
   
 static void  static void
 print_head(struct termp *p, const struct man_meta *meta)  print_man_head(struct termp *p, const struct man_meta *m)
 {  {
         char            *buf, *title;          char            buf[BUFSIZ], title[BUFSIZ];
   
         p->rmargin = p->maxrmargin;          p->rmargin = p->maxrmargin;
         p->offset = 0;          p->offset = 0;
           buf[0] = title[0] = '\0';
   
         if (NULL == (buf = malloc(p->rmargin)))          if (m->vol)
                 err(EXIT_FAILURE, "malloc");                  strlcpy(buf, m->vol, BUFSIZ);
         if (NULL == (title = malloc(p->rmargin)))  
                 err(EXIT_FAILURE, "malloc");  
   
         if (meta->vol)          snprintf(title, BUFSIZ, "%s(%d)", m->title, m->msec);
                 (void)strlcpy(buf, meta->vol, p->rmargin);  
         else  
                 *buf = 0;  
   
         (void)snprintf(title, p->rmargin, "%s(%d)",  
                         meta->title, meta->msec);  
   
         p->offset = 0;          p->offset = 0;
         p->rmargin = (p->maxrmargin - strlen(buf) + 1) / 2;          p->rmargin = (p->maxrmargin - strlen(buf) + 1) / 2;
         p->flags |= TERMP_NOBREAK | TERMP_NOSPACE;          p->flags |= TERMP_NOBREAK | TERMP_NOSPACE;
Line 984  print_head(struct termp *p, const struct man_meta *met
Line 967  print_head(struct termp *p, const struct man_meta *met
         p->rmargin = p->maxrmargin;          p->rmargin = p->maxrmargin;
         p->offset = 0;          p->offset = 0;
         p->flags &= ~TERMP_NOSPACE;          p->flags &= ~TERMP_NOSPACE;
   
         free(title);  
         free(buf);  
 }  }
   

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.51

CVSweb