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

Diff for /mandoc/mdoc_man.c between version 1.39 and 1.43

version 1.39, 2012/07/14 09:07:18 version 1.43, 2012/11/18 18:02:23
Line 28 
Line 28 
 #include "mdoc.h"  #include "mdoc.h"
 #include "main.h"  #include "main.h"
   
 #define DECL_ARGS const struct mdoc_meta *m, \  #define DECL_ARGS const struct mdoc_meta *meta, \
                   const struct mdoc_node *n                    const struct mdoc_node *n
   
 struct  manact {  struct  manact {
Line 254  static int  outflags;
Line 254  static int  outflags;
 #define MMAN_An_split   (1 << 8)  /* author mode is "split" */  #define MMAN_An_split   (1 << 8)  /* author mode is "split" */
 #define MMAN_An_nosplit (1 << 9)  /* author mode is "nosplit" */  #define MMAN_An_nosplit (1 << 9)  /* author mode is "nosplit" */
   
   #define BL_STACK_MAX    32
   
   static  size_t          Bl_stack[BL_STACK_MAX];  /* offsets [chars] */
   static  int             Bl_stack_post[BL_STACK_MAX];  /* add final .RE */
   static  int             Bl_stack_len;  /* number of nested Bl blocks */
 static  int             TPremain;  /* characters before tag is full */  static  int             TPremain;  /* characters before tag is full */
   
 static  struct {  static  struct {
Line 390  print_offs(const char *v)
Line 395  print_offs(const char *v)
         struct roffsu     su;          struct roffsu     su;
         size_t            sz;          size_t            sz;
   
           /* Convert v into a number (of characters). */
         if (NULL == v || '\0' == *v || 0 == strcmp(v, "left"))          if (NULL == v || '\0' == *v || 0 == strcmp(v, "left"))
                 sz = 0;                  sz = 0;
         else if (0 == strcmp(v, "indent"))          else if (0 == strcmp(v, "indent"))
Line 397  print_offs(const char *v)
Line 403  print_offs(const char *v)
         else if (0 == strcmp(v, "indent-two"))          else if (0 == strcmp(v, "indent-two"))
                 sz = 12;                  sz = 12;
         else if (a2roffsu(v, &su, SCALE_MAX)) {          else if (a2roffsu(v, &su, SCALE_MAX)) {
                 print_word(v);                  if (SCALE_EN == su.unit)
                 return;                          sz = su.scale;
                   else {
                           /*
                            * XXX
                            * If we are inside an enclosing list,
                            * there is no easy way to add the two
                            * indentations because they are provided
                            * in terms of different units.
                            */
                           print_word(v);
                           return;
                   }
         } else          } else
                 sz = strlen(v);                  sz = strlen(v);
   
           /*
            * We are inside an enclosing list.
            * Add the two indentations.
            */
           if (Bl_stack_len)
                   sz += Bl_stack[Bl_stack_len - 1];
   
         snprintf(buf, sizeof(buf), "%ldn", sz);          snprintf(buf, sizeof(buf), "%ldn", sz);
         print_word(buf);          print_word(buf);
 }  }
Line 416  print_width(const char *v, const struct mdoc_node *chi
Line 440  print_width(const char *v, const struct mdoc_node *chi
   
         numeric = 1;          numeric = 1;
         remain = 0;          remain = 0;
   
           /* Convert v into a number (of characters). */
         if (NULL == v)          if (NULL == v)
                 sz = defsz;                  sz = defsz;
         else if (a2roffsu(v, &su, SCALE_MAX)) {          else if (a2roffsu(v, &su, SCALE_MAX)) {
Line 432  print_width(const char *v, const struct mdoc_node *chi
Line 458  print_width(const char *v, const struct mdoc_node *chi
         chsz = (NULL != child && MDOC_TEXT == child->type) ?          chsz = (NULL != child && MDOC_TEXT == child->type) ?
                         strlen(child->string) : 0;                          strlen(child->string) : 0;
   
           /*
            * If we are inside an enclosing list,
            * preserve its indentation.
            */
           if (Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {
                   print_line(".RS", 0);
                   snprintf(buf, sizeof(buf), "%ldn",
                                   Bl_stack[Bl_stack_len - 1]);
                   print_word(buf);
           }
   
           /*
            * Save our own indentation,
            * such that child lists can use it.
            */
           Bl_stack[Bl_stack_len++] = sz + 2;
   
           /* Set up the current list. */
         if (defsz && chsz > sz)          if (defsz && chsz > sz)
                 print_block(".HP", 0);                  print_block(".HP", 0);
         else {          else {
Line 471  man_man(void *arg, const struct man *man)
Line 515  man_man(void *arg, const struct man *man)
 void  void
 man_mdoc(void *arg, const struct mdoc *mdoc)  man_mdoc(void *arg, const struct mdoc *mdoc)
 {  {
         const struct mdoc_meta *m;          const struct mdoc_meta *meta;
         const struct mdoc_node *n;          const struct mdoc_node *n;
   
         m = mdoc_meta(mdoc);          meta = mdoc_meta(mdoc);
         n = mdoc_node(mdoc);          n = mdoc_node(mdoc);
   
         printf(".TH \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",          printf(".TH \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",
                         m->title, m->msec, m->date, m->os, m->vol);                          meta->title, meta->msec, meta->date,
                           meta->os, meta->vol);
   
         outflags = MMAN_nl | MMAN_Sm;          outflags = MMAN_nl | MMAN_Sm;
         if (0 == fontqueue.size) {          if (0 == fontqueue.size) {
Line 486  man_mdoc(void *arg, const struct mdoc *mdoc)
Line 531  man_mdoc(void *arg, const struct mdoc *mdoc)
                 fontqueue.head = fontqueue.tail = mandoc_malloc(8);                  fontqueue.head = fontqueue.tail = mandoc_malloc(8);
                 *fontqueue.tail = 'R';                  *fontqueue.tail = 'R';
         }          }
         print_node(m, n);          print_node(meta, n);
         putchar('\n');          putchar('\n');
 }  }
   
Line 527  print_node(DECL_ARGS)
Line 572  print_node(DECL_ARGS)
                  * node.                   * node.
                  */                   */
                 act = manacts + n->tok;                  act = manacts + n->tok;
                 cond = NULL == act->cond || (*act->cond)(m, n);                  cond = NULL == act->cond || (*act->cond)(meta, n);
                 if (cond && act->pre)                  if (cond && act->pre)
                         do_sub = (*act->pre)(m, n);                          do_sub = (*act->pre)(meta, n);
         }          }
   
         /*          /*
Line 539  print_node(DECL_ARGS)
Line 584  print_node(DECL_ARGS)
          */           */
         if (do_sub)          if (do_sub)
                 for (sub = n->child; sub; sub = sub->next)                  for (sub = n->child; sub; sub = sub->next)
                         print_node(m, sub);                          print_node(meta, sub);
   
         /*          /*
          * Lastly, conditionally run the post-node handler.           * Lastly, conditionally run the post-node handler.
          */           */
         if (cond && act->post)          if (cond && act->post)
                 (*act->post)(m, n);                  (*act->post)(meta, n);
 }  }
   
 static int  static int
Line 636  post__t(DECL_ARGS)
Line 681  post__t(DECL_ARGS)
                 putchar('\"');                  putchar('\"');
         } else          } else
                 font_pop();                  font_pop();
         post_percent(m, n);          post_percent(meta, n);
 }  }
   
 /*  /*
Line 766  pre_bd(DECL_ARGS)
Line 811  pre_bd(DECL_ARGS)
 static void  static void
 post_bd(DECL_ARGS)  post_bd(DECL_ARGS)
 {  {
           char             buf[24];
   
           /* Close out this display. */
         print_line(".RE", MMAN_nl);          print_line(".RE", MMAN_nl);
         if (DISP_unfilled == n->norm->Bd.type ||          if (DISP_unfilled == n->norm->Bd.type ||
             DISP_literal  == n->norm->Bd.type)              DISP_literal  == n->norm->Bd.type)
                 print_line(".fi", MMAN_nl);                  print_line(".fi", MMAN_nl);
   
           /*
            * If we are inside an enclosing list and the current
            * list item is not yet finished, restore the correct
            * indentation for what remains of that item.
            */
           if (NULL != n->parent->next &&
               Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {
                   print_line(".RS", 0);
                   snprintf(buf, sizeof(buf), "%ldn",
                                   Bl_stack[Bl_stack_len - 1]);
                   print_word(buf);
                   /* Remeber to close out this .RS block later. */
                   Bl_stack_post[Bl_stack_len - 1] = 1;
           }
 }  }
   
 static int  static int
Line 939  pre_fa(DECL_ARGS)
Line 1001  pre_fa(DECL_ARGS)
   
         while (NULL != n) {          while (NULL != n) {
                 font_push('I');                  font_push('I');
                 print_node(m, n);                  print_node(meta, n);
                 font_pop();                  font_pop();
                 if (NULL != (n = n->next))                  if (NULL != (n = n->next))
                         print_word(",");                          print_word(",");
Line 1003  pre_fn(DECL_ARGS)
Line 1065  pre_fn(DECL_ARGS)
                 return(0);                  return(0);
   
         font_push('B');          font_push('B');
         print_node(m, n);          print_node(meta, n);
         font_pop();          font_pop();
         outflags &= ~MMAN_spc;          outflags &= ~MMAN_spc;
         print_word("(");          print_word("(");
Line 1011  pre_fn(DECL_ARGS)
Line 1073  pre_fn(DECL_ARGS)
   
         n = n->next;          n = n->next;
         if (NULL != n)          if (NULL != n)
                 pre_fa(m, n);                  pre_fa(meta, n);
         return(0);          return(0);
 }  }
   
Line 1057  post_fo(DECL_ARGS)
Line 1119  post_fo(DECL_ARGS)
                 font_pop();                  font_pop();
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
                 post_fn(m, n);                  post_fn(meta, n);
                 break;                  break;
         default:          default:
                 break;                  break;
Line 1196  post_it(DECL_ARGS)
Line 1258  post_it(DECL_ARGS)
                 }                  }
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
                 if (LIST_column == bln->norm->Bl.type &&                  switch (bln->norm->Bl.type) {
                     NULL != n->next) {                  case (LIST_bullet):
                         putchar('\t');                          /* FALLTHROUGH */
                         outflags &= ~MMAN_spc;                  case (LIST_dash):
                           /* FALLTHROUGH */
                   case (LIST_hyphen):
                           /* FALLTHROUGH */
                   case (LIST_enum):
                           /* FALLTHROUGH */
                   case (LIST_hang):
                           /* FALLTHROUGH */
                   case (LIST_tag):
                           assert(Bl_stack_len);
                           Bl_stack[--Bl_stack_len] = 0;
   
                           /*
                            * Our indentation had to be restored
                            * after a child display.
                            * Close out that indentation block now.
                            */
                           if (Bl_stack_post[Bl_stack_len]) {
                                   print_line(".RE", MMAN_nl);
                                   Bl_stack_post[Bl_stack_len] = 0;
                           }
   
                           /*
                            * We are inside an enclosing list.
                            * Restore the indentation of that list.
                            */
                           if (Bl_stack_len && Bl_stack[Bl_stack_len - 1])
                                   print_line(".RE", MMAN_nl);
                           break;
                   case (LIST_column):
                           if (NULL != n->next) {
                                   putchar('\t');
                                   outflags &= ~MMAN_spc;
                           }
                           break;
                   default:
                           break;
                 }                  }
                 break;                  break;
         default:          default:
Line 1256  pre_nm(DECL_ARGS)
Line 1354  pre_nm(DECL_ARGS)
                 pre_syn(n);                  pre_syn(n);
         if (MDOC_ELEM != n->type && MDOC_HEAD != n->type)          if (MDOC_ELEM != n->type && MDOC_HEAD != n->type)
                 return(1);                  return(1);
         name = n->child ? n->child->string : m->name;          name = n->child ? n->child->string : meta->name;
         if (NULL == name)          if (NULL == name)
                 return(0);                  return(0);
         if (MDOC_HEAD == n->type) {          if (MDOC_HEAD == n->type) {
Line 1268  pre_nm(DECL_ARGS)
Line 1366  pre_nm(DECL_ARGS)
         }          }
         font_push('B');          font_push('B');
         if (NULL == n->child)          if (NULL == n->child)
                 print_word(m->name);                  print_word(meta->name);
         return(1);          return(1);
 }  }
   
Line 1342  static int
Line 1440  static int
 pre_sp(DECL_ARGS)  pre_sp(DECL_ARGS)
 {  {
   
         print_line(".sp", MMAN_nl);          if (MMAN_PP & outflags) {
                   outflags &= ~MMAN_PP;
                   print_line(".PP", 0);
           } else
                   print_line(".sp", 0);
         return(1);          return(1);
 }  }
   
Line 1396  pre_xr(DECL_ARGS)
Line 1498  pre_xr(DECL_ARGS)
         n = n->child;          n = n->child;
         if (NULL == n)          if (NULL == n)
                 return(0);                  return(0);
         print_node(m, n);          print_node(meta, n);
         n = n->next;          n = n->next;
         if (NULL == n)          if (NULL == n)
                 return(0);                  return(0);
         outflags &= ~MMAN_spc;          outflags &= ~MMAN_spc;
         print_word("(");          print_word("(");
         print_node(m, n);          print_node(meta, n);
         print_word(")");          print_word(")");
         return(0);          return(0);
 }  }

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

CVSweb