[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.106 and 1.112

version 1.106, 2017/04/14 18:25:04 version 1.112, 2017/05/05 13:17:55
Line 20 
Line 20 
   
 #include <assert.h>  #include <assert.h>
 #include <stdio.h>  #include <stdio.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "mandoc_aux.h"  #include "mandoc_aux.h"
Line 32 
Line 33 
   
 #define DECL_ARGS const struct roff_meta *meta, struct roff_node *n  #define DECL_ARGS const struct roff_meta *meta, struct roff_node *n
   
   typedef int     (*int_fp)(DECL_ARGS);
   typedef void    (*void_fp)(DECL_ARGS);
   
 struct  manact {  struct  manact {
         int             (*cond)(DECL_ARGS); /* DON'T run actions */          int_fp            cond; /* DON'T run actions */
         int             (*pre)(DECL_ARGS); /* pre-node action */          int_fp            pre; /* pre-node action */
         void            (*post)(DECL_ARGS); /* post-node action */          void_fp           post; /* post-node action */
         const char       *prefix; /* pre-node string constant */          const char       *prefix; /* pre-node string constant */
         const char       *suffix; /* post-node string constant */          const char       *suffix; /* post-node string constant */
 };  };
Line 44  static int   cond_body(DECL_ARGS);
Line 48  static int   cond_body(DECL_ARGS);
 static  int       cond_head(DECL_ARGS);  static  int       cond_head(DECL_ARGS);
 static  void      font_push(char);  static  void      font_push(char);
 static  void      font_pop(void);  static  void      font_pop(void);
   static  int       man_strlen(const char *);
 static  void      mid_it(void);  static  void      mid_it(void);
 static  void      post__t(DECL_ARGS);  static  void      post__t(DECL_ARGS);
 static  void      post_aq(DECL_ARGS);  static  void      post_aq(DECL_ARGS);
Line 78  static int   pre_bd(DECL_ARGS);
Line 83  static int   pre_bd(DECL_ARGS);
 static  int       pre_bf(DECL_ARGS);  static  int       pre_bf(DECL_ARGS);
 static  int       pre_bk(DECL_ARGS);  static  int       pre_bk(DECL_ARGS);
 static  int       pre_bl(DECL_ARGS);  static  int       pre_bl(DECL_ARGS);
 static  int       pre_br(DECL_ARGS);  static  void      pre_br(DECL_ARGS);
 static  int       pre_dl(DECL_ARGS);  static  int       pre_dl(DECL_ARGS);
 static  int       pre_en(DECL_ARGS);  static  int       pre_en(DECL_ARGS);
 static  int       pre_enc(DECL_ARGS);  static  int       pre_enc(DECL_ARGS);
Line 91  static int   pre_fd(DECL_ARGS);
Line 96  static int   pre_fd(DECL_ARGS);
 static  int       pre_fl(DECL_ARGS);  static  int       pre_fl(DECL_ARGS);
 static  int       pre_fn(DECL_ARGS);  static  int       pre_fn(DECL_ARGS);
 static  int       pre_fo(DECL_ARGS);  static  int       pre_fo(DECL_ARGS);
 static  int       pre_ft(DECL_ARGS);  static  void      pre_ft(DECL_ARGS);
   static  int       pre_Ft(DECL_ARGS);
 static  int       pre_in(DECL_ARGS);  static  int       pre_in(DECL_ARGS);
 static  int       pre_it(DECL_ARGS);  static  int       pre_it(DECL_ARGS);
 static  int       pre_lk(DECL_ARGS);  static  int       pre_lk(DECL_ARGS);
 static  int       pre_li(DECL_ARGS);  static  int       pre_li(DECL_ARGS);
 static  int       pre_ll(DECL_ARGS);  static  void      pre_ll(DECL_ARGS);
 static  int       pre_nm(DECL_ARGS);  static  int       pre_nm(DECL_ARGS);
 static  int       pre_no(DECL_ARGS);  static  int       pre_no(DECL_ARGS);
 static  int       pre_ns(DECL_ARGS);  static  int       pre_ns(DECL_ARGS);
Line 118  static void   print_width(const struct mdoc_bl *,
Line 124  static void   print_width(const struct mdoc_bl *,
 static  void      print_count(int *);  static  void      print_count(int *);
 static  void      print_node(DECL_ARGS);  static  void      print_node(DECL_ARGS);
   
 static  const struct manact manacts[MDOC_MAX + 1] = {  static  const void_fp roff_manacts[ROFF_MAX] = {
         { NULL, pre_ap, NULL, NULL, NULL }, /* Ap */          pre_br,
           pre_ft,
           pre_ll,
   };
   
   static  const struct manact __manacts[MDOC_MAX - MDOC_Dd] = {
         { NULL, NULL, NULL, NULL, NULL }, /* Dd */          { NULL, NULL, NULL, NULL, NULL }, /* Dd */
         { NULL, NULL, NULL, NULL, NULL }, /* Dt */          { NULL, NULL, NULL, NULL, NULL }, /* Dt */
         { NULL, NULL, NULL, NULL, NULL }, /* Os */          { NULL, NULL, NULL, NULL, NULL }, /* Os */
Line 135  static const struct manact manacts[MDOC_MAX + 1] = {
Line 146  static const struct manact manacts[MDOC_MAX + 1] = {
         { NULL, pre_it, post_it, NULL, NULL }, /* It */          { NULL, pre_it, post_it, NULL, NULL }, /* It */
         { NULL, pre_em, post_font, NULL, NULL }, /* Ad */          { NULL, pre_em, post_font, NULL, NULL }, /* Ad */
         { NULL, pre_an, NULL, NULL, NULL }, /* An */          { NULL, pre_an, NULL, NULL, NULL }, /* An */
           { NULL, pre_ap, NULL, NULL, NULL }, /* Ap */
         { NULL, pre_em, post_font, NULL, NULL }, /* Ar */          { NULL, pre_em, post_font, NULL, NULL }, /* Ar */
         { NULL, pre_sy, post_font, NULL, NULL }, /* Cd */          { NULL, pre_sy, post_font, NULL, NULL }, /* Cd */
         { NULL, pre_sy, post_font, NULL, NULL }, /* Cm */          { NULL, pre_sy, post_font, NULL, NULL }, /* Cm */
Line 146  static const struct manact manacts[MDOC_MAX + 1] = {
Line 158  static const struct manact manacts[MDOC_MAX + 1] = {
         { NULL, pre_fd, post_fd, NULL, NULL }, /* Fd */          { NULL, pre_fd, post_fd, NULL, NULL }, /* Fd */
         { NULL, pre_fl, post_fl, NULL, NULL }, /* Fl */          { NULL, pre_fl, post_fl, NULL, NULL }, /* Fl */
         { NULL, pre_fn, post_fn, NULL, NULL }, /* Fn */          { NULL, pre_fn, post_fn, NULL, NULL }, /* Fn */
         { NULL, pre_ft, post_font, NULL, NULL }, /* Ft */          { NULL, pre_Ft, post_font, NULL, NULL }, /* Ft */
         { NULL, pre_sy, post_font, NULL, NULL }, /* Ic */          { NULL, pre_sy, post_font, NULL, NULL }, /* Ic */
         { NULL, pre_in, post_in, NULL, NULL }, /* In */          { NULL, pre_in, post_in, NULL, NULL }, /* In */
         { NULL, pre_li, post_font, NULL, NULL }, /* Li */          { NULL, pre_li, post_font, NULL, NULL }, /* Li */
         { cond_head, pre_enc, NULL, "\\- ", NULL }, /* Nd */          { cond_head, pre_enc, NULL, "\\- ", NULL }, /* Nd */
         { NULL, pre_nm, post_nm, NULL, NULL }, /* Nm */          { NULL, pre_nm, post_nm, NULL, NULL }, /* Nm */
         { cond_body, pre_enc, post_enc, "[", "]" }, /* Op */          { cond_body, pre_enc, post_enc, "[", "]" }, /* Op */
         { NULL, pre_ft, post_font, NULL, NULL }, /* Ot */          { NULL, pre_Ft, post_font, NULL, NULL }, /* Ot */
         { NULL, pre_em, post_font, NULL, NULL }, /* Pa */          { NULL, pre_em, post_font, NULL, NULL }, /* Pa */
         { NULL, pre_ex, NULL, NULL, NULL }, /* Rv */          { NULL, pre_ex, NULL, NULL, NULL }, /* Rv */
         { NULL, NULL, NULL, NULL, NULL }, /* St */          { NULL, NULL, NULL, NULL, NULL }, /* St */
Line 237  static const struct manact manacts[MDOC_MAX + 1] = {
Line 249  static const struct manact manacts[MDOC_MAX + 1] = {
         { cond_body, pre_en, post_en, NULL, NULL }, /* En */          { cond_body, pre_en, post_en, NULL, NULL }, /* En */
         { NULL, NULL, NULL, NULL, NULL }, /* Dx */          { NULL, NULL, NULL, NULL, NULL }, /* Dx */
         { NULL, NULL, post_percent, NULL, NULL }, /* %Q */          { NULL, NULL, post_percent, NULL, NULL }, /* %Q */
         { NULL, pre_br, NULL, NULL, NULL }, /* br */  
         { NULL, pre_sp, post_sp, NULL, NULL }, /* sp */          { NULL, pre_sp, post_sp, NULL, NULL }, /* sp */
         { NULL, NULL, post_percent, NULL, NULL }, /* %U */          { NULL, NULL, post_percent, NULL, NULL }, /* %U */
         { NULL, NULL, NULL, NULL, NULL }, /* Ta */          { NULL, NULL, NULL, NULL, NULL }, /* Ta */
         { NULL, pre_ll, post_sp, NULL, NULL }, /* ll */  
         { NULL, NULL, NULL, NULL, NULL }, /* ROOT */  
 };  };
   static  const struct manact *const manacts = __manacts - MDOC_Dd;
   
 static  int             outflags;  static  int             outflags;
 #define MMAN_spc        (1 << 0)  /* blank character before next word */  #define MMAN_spc        (1 << 0)  /* blank character before next word */
Line 274  static struct {
Line 284  static struct {
 }       fontqueue;  }       fontqueue;
   
   
   static int
   man_strlen(const char *cp)
   {
           size_t   rsz;
           int      skip, sz;
   
           sz = 0;
           skip = 0;
           for (;;) {
                   rsz = strcspn(cp, "\\");
                   if (rsz) {
                           cp += rsz;
                           if (skip) {
                                   skip = 0;
                                   rsz--;
                           }
                           sz += rsz;
                   }
                   if ('\0' == *cp)
                           break;
                   cp++;
                   switch (mandoc_escape(&cp, NULL, NULL)) {
                   case ESCAPE_ERROR:
                           return sz;
                   case ESCAPE_UNICODE:
                   case ESCAPE_NUMBERED:
                   case ESCAPE_SPECIAL:
                   case ESCAPE_OVERSTRIKE:
                           if (skip)
                                   skip = 0;
                           else
                                   sz++;
                           break;
                   case ESCAPE_SKIPCHAR:
                           skip = 1;
                           break;
                   default:
                           break;
                   }
           }
           return sz;
   }
   
 static void  static void
 font_push(char newfont)  font_push(char newfont)
 {  {
Line 447  print_offs(const char *v, int keywords)
Line 500  print_offs(const char *v, int keywords)
                         return;                          return;
                 }                  }
         } else          } else
                 sz = strlen(v);                  sz = man_strlen(v);
   
         /*          /*
          * We are inside an enclosing list.           * We are inside an enclosing list.
Line 485  print_width(const struct mdoc_bl *bl, const struct rof
Line 538  print_width(const struct mdoc_bl *bl, const struct rof
                         numeric = 0;                          numeric = 0;
                 }                  }
         } else          } else
                 sz = strlen(bl->width);                  sz = man_strlen(bl->width);
   
         /* XXX Rough estimation, might have multiple parts. */          /* XXX Rough estimation, might have multiple parts. */
         if (bl->type == LIST_enum)          if (bl->type == LIST_enum)
                 chsz = (bl->count > 8) + 1;                  chsz = (bl->count > 8) + 1;
         else if (child != NULL && child->type == ROFFT_TEXT)          else if (child != NULL && child->type == ROFFT_TEXT)
                 chsz = strlen(child->string);                  chsz = man_strlen(child->string);
         else          else
                 chsz = 0;                  chsz = 0;
   
Line 607  print_node(DECL_ARGS)
Line 660  print_node(DECL_ARGS)
                         outflags &= ~(MMAN_spc | MMAN_spc_force);                          outflags &= ~(MMAN_spc | MMAN_spc_force);
                 else if (outflags & MMAN_Sm)                  else if (outflags & MMAN_Sm)
                         outflags |= MMAN_spc;                          outflags |= MMAN_spc;
           } else if (n->tok < ROFF_MAX) {
                   (*roff_manacts[n->tok])(meta, n);
                   return;
         } else {          } else {
                   assert(n->tok >= MDOC_Dd && n->tok < MDOC_MAX);
                 /*                  /*
                  * Conditionally run the pre-node action handler for a                   * Conditionally run the pre-node action handler for a
                  * node.                   * node.
Line 1011  post_bl(DECL_ARGS)
Line 1068  post_bl(DECL_ARGS)
   
 }  }
   
 static int  static void
 pre_br(DECL_ARGS)  pre_br(DECL_ARGS)
 {  {
   
         outflags |= MMAN_br;          outflags |= MMAN_br;
         return 0;  
 }  }
   
 static int  static int
Line 1261  post_fo(DECL_ARGS)
Line 1316  post_fo(DECL_ARGS)
 }  }
   
 static int  static int
 pre_ft(DECL_ARGS)  pre_Ft(DECL_ARGS)
 {  {
   
         pre_syn(n);          pre_syn(n);
Line 1269  pre_ft(DECL_ARGS)
Line 1324  pre_ft(DECL_ARGS)
         return 1;          return 1;
 }  }
   
   static void
   pre_ft(DECL_ARGS)
   {
           print_line(".ft", 0);
           print_word(n->child->string);
           outflags |= MMAN_nl;
   }
   
 static int  static int
 pre_in(DECL_ARGS)  pre_in(DECL_ARGS)
 {  {
Line 1464  static int
Line 1527  static int
 pre_lk(DECL_ARGS)  pre_lk(DECL_ARGS)
 {  {
         const struct roff_node *link, *descr;          const struct roff_node *link, *descr;
           int display;
   
         if (NULL == (link = n->child))          if ((link = n->child) == NULL)
                 return 0;                  return 0;
   
         if (NULL != (descr = link->next)) {          /* Link text. */
           if ((descr = link->next) != NULL && !(descr->flags & NODE_DELIMC)) {
                 font_push('I');                  font_push('I');
                 while (NULL != descr) {                  while (descr != NULL && !(descr->flags & NODE_DELIMC)) {
                         print_word(descr->string);                          print_word(descr->string);
                         descr = descr->next;                          descr = descr->next;
                 }                  }
Line 1478  pre_lk(DECL_ARGS)
Line 1543  pre_lk(DECL_ARGS)
                 print_word(":");                  print_word(":");
         }          }
   
           /* Link target. */
           display = man_strlen(link->string) >= 26;
           if (display) {
                   print_line(".RS", MMAN_Bk_susp);
                   print_word("6n");
                   outflags |= MMAN_nl;
           }
         font_push('B');          font_push('B');
         print_word(link->string);          print_word(link->string);
         font_pop();          font_pop();
   
           /* Trailing punctuation. */
           while (descr != NULL) {
                   print_word(descr->string);
                   descr = descr->next;
           }
           if (display)
                   print_line(".RE", MMAN_nl);
         return 0;          return 0;
 }  }
   
 static int  static void
 pre_ll(DECL_ARGS)  pre_ll(DECL_ARGS)
 {  {
   
         print_line(".ll", 0);          print_line(".ll", 0);
         return 1;          if (n->child != NULL)
                   print_word(n->child->string);
           outflags |= MMAN_nl;
 }  }
   
 static int  static int
Line 1518  pre_nm(DECL_ARGS)
Line 1599  pre_nm(DECL_ARGS)
                 if (NULL == n->parent->prev)                  if (NULL == n->parent->prev)
                         outflags |= MMAN_sp;                          outflags |= MMAN_sp;
                 print_block(".HP", 0);                  print_block(".HP", 0);
                 printf(" %zun", strlen(name) + 1);                  printf(" %dn", man_strlen(name) + 1);
                 outflags |= MMAN_nl;                  outflags |= MMAN_nl;
         }          }
         font_push('B');          font_push('B');

Legend:
Removed from v.1.106  
changed lines
  Added in v.1.112

CVSweb