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

Diff for /mandoc/mdoc_term.c between version 1.299 and 1.311

version 1.299, 2014/12/02 10:08:06 version 1.311, 2015/02/17 20:37:17
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010, 2012-2015 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>   * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 22 
Line 22 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
   #include <limits.h>
 #include <stdint.h>  #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 49  struct termact {
Line 50  struct termact {
         void    (*post)(DECL_ARGS);          void    (*post)(DECL_ARGS);
 };  };
   
 static  size_t    a2width(const struct termp *, const char *);  static  int       a2width(const struct termp *, const char *);
 static  size_t    a2height(const struct termp *, const char *);  
   
 static  void      print_bvspace(struct termp *,  static  void      print_bvspace(struct termp *,
                         const struct mdoc_node *,                          const struct mdoc_node *,
Line 67  static void   termp__t_post(DECL_ARGS);
Line 67  static void   termp__t_post(DECL_ARGS);
 static  void      termp_bd_post(DECL_ARGS);  static  void      termp_bd_post(DECL_ARGS);
 static  void      termp_bk_post(DECL_ARGS);  static  void      termp_bk_post(DECL_ARGS);
 static  void      termp_bl_post(DECL_ARGS);  static  void      termp_bl_post(DECL_ARGS);
   static  void      termp_eo_post(DECL_ARGS);
 static  void      termp_fd_post(DECL_ARGS);  static  void      termp_fd_post(DECL_ARGS);
 static  void      termp_fo_post(DECL_ARGS);  static  void      termp_fo_post(DECL_ARGS);
 static  void      termp_in_post(DECL_ARGS);  static  void      termp_in_post(DECL_ARGS);
Line 91  static int   termp_bt_pre(DECL_ARGS);
Line 92  static int   termp_bt_pre(DECL_ARGS);
 static  int       termp_bx_pre(DECL_ARGS);  static  int       termp_bx_pre(DECL_ARGS);
 static  int       termp_cd_pre(DECL_ARGS);  static  int       termp_cd_pre(DECL_ARGS);
 static  int       termp_d1_pre(DECL_ARGS);  static  int       termp_d1_pre(DECL_ARGS);
   static  int       termp_eo_pre(DECL_ARGS);
 static  int       termp_ex_pre(DECL_ARGS);  static  int       termp_ex_pre(DECL_ARGS);
 static  int       termp_fa_pre(DECL_ARGS);  static  int       termp_fa_pre(DECL_ARGS);
 static  int       termp_fd_pre(DECL_ARGS);  static  int       termp_fd_pre(DECL_ARGS);
Line 190  static const struct termact termacts[MDOC_MAX] = {
Line 192  static const struct termact termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Ec */ /* FIXME: no space */          { NULL, NULL }, /* Ec */ /* FIXME: no space */
         { NULL, NULL }, /* Ef */          { NULL, NULL }, /* Ef */
         { termp_under_pre, NULL }, /* Em */          { termp_under_pre, NULL }, /* Em */
         { termp_quote_pre, termp_quote_post }, /* Eo */          { termp_eo_pre, termp_eo_post }, /* Eo */
         { termp_xx_pre, NULL }, /* Fx */          { termp_xx_pre, NULL }, /* Fx */
         { termp_bold_pre, NULL }, /* Ms */          { termp_bold_pre, NULL }, /* Ms */
         { termp_li_pre, NULL }, /* No */          { termp_li_pre, NULL }, /* No */
Line 291  static void
Line 293  static void
 print_mdoc_nodelist(DECL_ARGS)  print_mdoc_nodelist(DECL_ARGS)
 {  {
   
         print_mdoc_node(p, pair, meta, n);          while (n != NULL) {
         if (n->next)                  print_mdoc_node(p, pair, meta, n);
                 print_mdoc_nodelist(p, pair, meta, n->next);                  n = n->next;
           }
 }  }
   
 static void  static void
Line 306  print_mdoc_node(DECL_ARGS)
Line 309  print_mdoc_node(DECL_ARGS)
         chld = 1;          chld = 1;
         offset = p->offset;          offset = p->offset;
         rmargin = p->rmargin;          rmargin = p->rmargin;
         n->prev_font = term_fontq(p);          n->flags &= ~MDOC_ENDED;
           n->prev_font = p->fonti;
   
         memset(&npair, 0, sizeof(struct termpair));          memset(&npair, 0, sizeof(struct termpair));
         npair.ppair = pair;          npair.ppair = pair;
Line 316  print_mdoc_node(DECL_ARGS)
Line 320  print_mdoc_node(DECL_ARGS)
          * invoked in a prior line, revert it to PREKEEP.           * invoked in a prior line, revert it to PREKEEP.
          */           */
   
         if (TERMP_KEEP & p->flags) {          if (p->flags & TERMP_KEEP && n->flags & MDOC_LINE) {
                 if (n->prev ? (n->prev->lastline != n->line) :                  p->flags &= ~TERMP_KEEP;
                     (n->parent && n->parent->line != n->line)) {                  p->flags |= TERMP_PREKEEP;
                         p->flags &= ~TERMP_KEEP;  
                         p->flags |= TERMP_PREKEEP;  
                 }  
         }          }
   
         /*          /*
Line 361  print_mdoc_node(DECL_ARGS)
Line 362  print_mdoc_node(DECL_ARGS)
                 print_mdoc_nodelist(p, &npair, meta, n->child);                  print_mdoc_nodelist(p, &npair, meta, n->child);
   
         term_fontpopq(p,          term_fontpopq(p,
             (ENDBODY_NOT == n->end ? n : n->pending)->prev_font);              (ENDBODY_NOT == n->end ? n : n->body)->prev_font);
   
         switch (n->type) {          switch (n->type) {
         case MDOC_TEXT:          case MDOC_TEXT:
Line 381  print_mdoc_node(DECL_ARGS)
Line 382  print_mdoc_node(DECL_ARGS)
                  * that it must not call the post handler again.                   * that it must not call the post handler again.
                  */                   */
                 if (ENDBODY_NOT != n->end)                  if (ENDBODY_NOT != n->end)
                         n->pending->flags |= MDOC_ENDED;                          n->body->flags |= MDOC_ENDED;
   
                 /*                  /*
                  * End of line terminating an implicit block                   * End of line terminating an implicit block
Line 526  print_mdoc_head(struct termp *p, const void *arg)
Line 527  print_mdoc_head(struct termp *p, const void *arg)
         free(volume);          free(volume);
 }  }
   
 static size_t  static int
 a2height(const struct termp *p, const char *v)  
 {  
         struct roffsu    su;  
   
   
         assert(v);  
         if ( ! a2roffsu(v, &su, SCALE_VS))  
                 SCALE_VS_INIT(&su, atoi(v));  
   
         return(term_vspan(p, &su));  
 }  
   
 static size_t  
 a2width(const struct termp *p, const char *v)  a2width(const struct termp *p, const char *v)
 {  {
         struct roffsu    su;          struct roffsu    su;
   
         assert(v);          if (a2roffsu(v, &su, SCALE_MAX) < 2) {
         if ( ! a2roffsu(v, &su, SCALE_MAX)) {  
                 SCALE_HS_INIT(&su, term_strlen(p, v));                  SCALE_HS_INIT(&su, term_strlen(p, v));
                 su.scale /= term_strlen(p, "0");                  su.scale /= term_strlen(p, "0");
         }          }
   
         return(term_hspan(p, &su));          return(term_hspan(p, &su));
 }  }
   
Line 620  termp_ll_pre(DECL_ARGS)
Line 606  termp_ll_pre(DECL_ARGS)
 static int  static int
 termp_it_pre(DECL_ARGS)  termp_it_pre(DECL_ARGS)
 {  {
         const struct mdoc_node *bl, *nn;  
         char                    buf[24];          char                    buf[24];
         int                     i;          const struct mdoc_node *bl, *nn;
         size_t                  width, offset, ncols, dcol;          size_t                  ncols, dcol;
           int                     i, offset, width;
         enum mdoc_list          type;          enum mdoc_list          type;
   
         if (MDOC_BLOCK == n->type) {          if (MDOC_BLOCK == n->type) {
Line 635  termp_it_pre(DECL_ARGS)
Line 621  termp_it_pre(DECL_ARGS)
         type = bl->norm->Bl.type;          type = bl->norm->Bl.type;
   
         /*          /*
            * Defaults for specific list types.
            */
   
           switch (type) {
           case LIST_bullet:
                   /* FALLTHROUGH */
           case LIST_dash:
                   /* FALLTHROUGH */
           case LIST_hyphen:
                   /* FALLTHROUGH */
           case LIST_enum:
                   width = term_len(p, 2);
                   break;
           case LIST_hang:
                   width = term_len(p, 8);
                   break;
           case LIST_column:
                   /* FALLTHROUGH */
           case LIST_tag:
                   width = term_len(p, 10);
                   break;
           default:
                   width = 0;
                   break;
           }
           offset = 0;
   
           /*
          * First calculate width and offset.  This is pretty easy unless           * First calculate width and offset.  This is pretty easy unless
          * we're a -column list, in which case all prior columns must           * we're a -column list, in which case all prior columns must
          * be accounted for.           * be accounted for.
          */           */
   
         width = offset = 0;          if (bl->norm->Bl.offs != NULL) {
   
         if (bl->norm->Bl.offs)  
                 offset = a2width(p, bl->norm->Bl.offs);                  offset = a2width(p, bl->norm->Bl.offs);
                   if (offset < 0 && (size_t)(-offset) > p->offset)
                           offset = -p->offset;
                   else if (offset > SHRT_MAX)
                           offset = 0;
           }
   
         switch (type) {          switch (type) {
         case LIST_column:          case LIST_column:
Line 698  termp_it_pre(DECL_ARGS)
Line 715  termp_it_pre(DECL_ARGS)
                  * number for buffering single arguments.  See the above                   * number for buffering single arguments.  See the above
                  * handling for column for how this changes.                   * handling for column for how this changes.
                  */                   */
                 assert(bl->norm->Bl.width);  
                 width = a2width(p, bl->norm->Bl.width) + term_len(p, 2);                  width = a2width(p, bl->norm->Bl.width) + term_len(p, 2);
                   if (width < 0 && (size_t)(-width) > p->offset)
                           width = -p->offset;
                   else if (width > SHRT_MAX)
                           width = 0;
                 break;                  break;
         }          }
   
         /*          /*
          * 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) {  
         case LIST_bullet:  
                 /* FALLTHROUGH */  
         case LIST_dash:  
                 /* FALLTHROUGH */  
         case LIST_hyphen:  
                 /* FALLTHROUGH */  
         case LIST_enum:  
                 if (width < term_len(p, 2))  
                         width = term_len(p, 2);  
                 break;  
         case LIST_hang:  
                 if (0 == width)  
                         width = term_len(p, 8);  
                 break;  
         case LIST_column:  
                 /* FALLTHROUGH */  
         case LIST_tag:  
                 if (0 == width)  
                         width = term_len(p, 10);  
                 break;  
         default:  
                 break;  
         }  
   
         /*  
          * Whitespace control.  Inset bodies need an initial space,           * Whitespace control.  Inset bodies need an initial space,
          * while diagonal bodies need two.           * while diagonal bodies need two.
          */           */
Line 776  termp_it_pre(DECL_ARGS)
Line 765  termp_it_pre(DECL_ARGS)
         case LIST_enum:          case LIST_enum:
                 /*                  /*
                  * Weird special case.                   * Weird special case.
                  * Very narrow enum lists actually hang.                   * Some very narrow lists actually hang.
                  */                   */
                 if (width == term_len(p, 2))  
                         p->flags |= TERMP_HANG;  
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case LIST_bullet:          case LIST_bullet:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case LIST_dash:          case LIST_dash:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case LIST_hyphen:          case LIST_hyphen:
                   if (width <= (int)term_len(p, 2))
                           p->flags |= TERMP_HANG;
                 if (MDOC_HEAD != n->type)                  if (MDOC_HEAD != n->type)
                         break;                          break;
                 p->flags |= TERMP_NOBREAK;                  p->flags |= TERMP_NOBREAK;
Line 874  termp_it_pre(DECL_ARGS)
Line 863  termp_it_pre(DECL_ARGS)
         case LIST_hyphen:          case LIST_hyphen:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case LIST_tag:          case LIST_tag:
                 assert(width);  
                 if (MDOC_HEAD == n->type)                  if (MDOC_HEAD == n->type)
                         p->rmargin = p->offset + width;                          p->rmargin = p->offset + width;
                 else                  else
Line 1104  termp_an_pre(DECL_ARGS)
Line 1092  termp_an_pre(DECL_ARGS)
                 return(0);                  return(0);
         }          }
   
         if (n->child == NULL)  
                 return(0);  
   
         if (p->flags & TERMP_SPLIT)          if (p->flags & TERMP_SPLIT)
                 term_newln(p);                  term_newln(p);
   
Line 1554  termp_bd_pre(DECL_ARGS)
Line 1539  termp_bd_pre(DECL_ARGS)
 {  {
         size_t                   tabwidth, lm, len, rm, rmax;          size_t                   tabwidth, lm, len, rm, rmax;
         struct mdoc_node        *nn;          struct mdoc_node        *nn;
           int                      offset;
   
         if (MDOC_BLOCK == n->type) {          if (MDOC_BLOCK == n->type) {
                 print_bvspace(p, n, n);                  print_bvspace(p, n, n);
Line 1570  termp_bd_pre(DECL_ARGS)
Line 1556  termp_bd_pre(DECL_ARGS)
                 p->offset += term_len(p, p->defindent + 1);                  p->offset += term_len(p, p->defindent + 1);
         else if ( ! strcmp(n->norm->Bd.offs, "indent-two"))          else if ( ! strcmp(n->norm->Bd.offs, "indent-two"))
                 p->offset += term_len(p, (p->defindent + 1) * 2);                  p->offset += term_len(p, (p->defindent + 1) * 2);
         else          else {
                 p->offset += a2width(p, n->norm->Bd.offs);                  offset = a2width(p, n->norm->Bd.offs);
                   if (offset < 0 && (size_t)(-offset) > p->offset)
                           p->offset = 0;
                   else if (offset < SHRT_MAX)
                           p->offset += offset;
           }
   
         /*          /*
          * If -ragged or -filled are specified, the block does nothing           * If -ragged or -filled are specified, the block does nothing
Line 1816  termp_in_post(DECL_ARGS)
Line 1807  termp_in_post(DECL_ARGS)
 static int  static int
 termp_sp_pre(DECL_ARGS)  termp_sp_pre(DECL_ARGS)
 {  {
           struct roffsu    su;
         size_t           i, len;          size_t           i, len;
   
         switch (n->tok) {          switch (n->tok) {
         case MDOC_sp:          case MDOC_sp:
                 len = n->child ? a2height(p, n->child->string) : 1;                  if (n->child) {
                           if ( ! a2roffsu(n->child->string, &su, SCALE_VS))
                                   su.scale = 1.0;
                           len = term_vspan(p, &su);
                   } else
                           len = 1;
                 break;                  break;
         case MDOC_br:          case MDOC_br:
                 len = 0;                  len = 0;
Line 1856  termp_quote_pre(DECL_ARGS)
Line 1853  termp_quote_pre(DECL_ARGS)
         case MDOC_Ao:          case MDOC_Ao:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Aq:          case MDOC_Aq:
                 term_word(p, n->parent->prev != NULL &&                  term_word(p, n->nchild == 1 &&
                     n->parent->prev->tok == MDOC_An ?  "<" : "\\(la");                      n->child->tok == MDOC_Mt ? "<" : "\\(la");
                 break;                  break;
         case MDOC_Bro:          case MDOC_Bro:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 1876  termp_quote_pre(DECL_ARGS)
Line 1873  termp_quote_pre(DECL_ARGS)
         case MDOC_Do:          case MDOC_Do:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Dq:          case MDOC_Dq:
                 term_word(p, "\\(lq");                  term_word(p, "\\(Lq");
                 break;                  break;
         case MDOC_En:          case MDOC_En:
                 if (NULL == n->norm->Es ||                  if (NULL == n->norm->Es ||
Line 1884  termp_quote_pre(DECL_ARGS)
Line 1881  termp_quote_pre(DECL_ARGS)
                         return(1);                          return(1);
                 term_word(p, n->norm->Es->child->string);                  term_word(p, n->norm->Es->child->string);
                 break;                  break;
         case MDOC_Eo:  
                 break;  
         case MDOC_Po:          case MDOC_Po:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Pq:          case MDOC_Pq:
Line 1921  termp_quote_post(DECL_ARGS)
Line 1916  termp_quote_post(DECL_ARGS)
         if (n->type != MDOC_BODY && n->type != MDOC_ELEM)          if (n->type != MDOC_BODY && n->type != MDOC_ELEM)
                 return;                  return;
   
         if ( ! (n->tok == MDOC_En ||          p->flags |= TERMP_NOSPACE;
             (n->tok == MDOC_Eo && n->end == ENDBODY_SPACE)))  
                 p->flags |= TERMP_NOSPACE;  
   
         switch (n->tok) {          switch (n->tok) {
         case MDOC_Ao:          case MDOC_Ao:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Aq:          case MDOC_Aq:
                 term_word(p, n->parent->prev != NULL &&                  term_word(p, n->nchild == 1 &&
                     n->parent->prev->tok == MDOC_An ?  ">" : "\\(ra");                      n->child->tok == MDOC_Mt ? ">" : "\\(ra");
                 break;                  break;
         case MDOC_Bro:          case MDOC_Bro:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 1949  termp_quote_post(DECL_ARGS)
Line 1942  termp_quote_post(DECL_ARGS)
         case MDOC_Do:          case MDOC_Do:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Dq:          case MDOC_Dq:
                 term_word(p, "\\(rq");                  term_word(p, "\\(Rq");
                 break;                  break;
         case MDOC_En:          case MDOC_En:
                 if (NULL != n->norm->Es &&                  if (n->norm->Es == NULL ||
                     NULL != n->norm->Es->child &&                      n->norm->Es->child == NULL ||
                     NULL != n->norm->Es->child->next) {                      n->norm->Es->child->next == NULL)
                         p->flags |= TERMP_NOSPACE;                          p->flags &= ~TERMP_NOSPACE;
                   else
                         term_word(p, n->norm->Es->child->next->string);                          term_word(p, n->norm->Es->child->next->string);
                 }  
                 break;                  break;
         case MDOC_Eo:  
                 break;  
         case MDOC_Po:          case MDOC_Po:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Pq:          case MDOC_Pq:
Line 1984  termp_quote_post(DECL_ARGS)
Line 1975  termp_quote_post(DECL_ARGS)
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   }
   
   static int
   termp_eo_pre(DECL_ARGS)
   {
   
           if (n->type != MDOC_BODY)
                   return(1);
   
           if (n->end == ENDBODY_NOT &&
               n->parent->head->child == NULL &&
               n->child != NULL &&
               n->child->end != ENDBODY_NOT)
                   term_word(p, "\\&");
           else if (n->end != ENDBODY_NOT ? n->child != NULL :
                n->parent->head->child != NULL && (n->child != NULL ||
                (n->parent->tail != NULL && n->parent->tail->child != NULL)))
                   p->flags |= TERMP_NOSPACE;
   
           return(1);
   }
   
   static void
   termp_eo_post(DECL_ARGS)
   {
           int      body, tail;
   
           if (n->type != MDOC_BODY)
                   return;
   
           if (n->end != ENDBODY_NOT) {
                   p->flags &= ~TERMP_NOSPACE;
                   return;
           }
   
           body = n->child != NULL || n->parent->head->child != NULL;
           tail = n->parent->tail != NULL && n->parent->tail->child != NULL;
   
           if (body && tail)
                   p->flags |= TERMP_NOSPACE;
           else if ( ! (body || tail))
                   term_word(p, "\\&");
           else if ( ! tail)
                   p->flags &= ~TERMP_NOSPACE;
 }  }
   
 static int  static int

Legend:
Removed from v.1.299  
changed lines
  Added in v.1.311

CVSweb