[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.206 and 1.216

version 1.206, 2017/06/17 01:27:05 version 1.216, 2018/08/18 13:05:10
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2015, 2017 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 51  struct mtermp {
Line 51  struct mtermp {
                           struct roff_node *n, \                            struct roff_node *n, \
                           const struct roff_meta *meta                            const struct roff_meta *meta
   
 struct  termact {  struct  man_term_act {
         int             (*pre)(DECL_ARGS);          int             (*pre)(DECL_ARGS);
         void            (*post)(DECL_ARGS);          void            (*post)(DECL_ARGS);
         int               flags;          int               flags;
Line 78  static int    pre_PP(DECL_ARGS);
Line 78  static int    pre_PP(DECL_ARGS);
 static  int               pre_RS(DECL_ARGS);  static  int               pre_RS(DECL_ARGS);
 static  int               pre_SH(DECL_ARGS);  static  int               pre_SH(DECL_ARGS);
 static  int               pre_SS(DECL_ARGS);  static  int               pre_SS(DECL_ARGS);
   static  int               pre_SY(DECL_ARGS);
 static  int               pre_TP(DECL_ARGS);  static  int               pre_TP(DECL_ARGS);
 static  int               pre_UR(DECL_ARGS);  static  int               pre_UR(DECL_ARGS);
 static  int               pre_alternate(DECL_ARGS);  static  int               pre_alternate(DECL_ARGS);
Line 90  static void    post_HP(DECL_ARGS);
Line 91  static void    post_HP(DECL_ARGS);
 static  void              post_RS(DECL_ARGS);  static  void              post_RS(DECL_ARGS);
 static  void              post_SH(DECL_ARGS);  static  void              post_SH(DECL_ARGS);
 static  void              post_SS(DECL_ARGS);  static  void              post_SS(DECL_ARGS);
   static  void              post_SY(DECL_ARGS);
 static  void              post_TP(DECL_ARGS);  static  void              post_TP(DECL_ARGS);
 static  void              post_UR(DECL_ARGS);  static  void              post_UR(DECL_ARGS);
   
 static  const struct termact __termacts[MAN_MAX - MAN_TH] = {  static const struct man_term_act man_term_acts[MAN_MAX - MAN_TH] = {
         { NULL, NULL, 0 }, /* TH */          { NULL, NULL, 0 }, /* TH */
         { pre_SH, post_SH, 0 }, /* SH */          { pre_SH, post_SH, 0 }, /* SH */
         { pre_SS, post_SS, 0 }, /* SS */          { pre_SS, post_SS, 0 }, /* SS */
         { pre_TP, post_TP, 0 }, /* TP */          { pre_TP, post_TP, 0 }, /* TP */
           { pre_TP, post_TP, 0 }, /* TQ */
         { pre_PP, NULL, 0 }, /* LP */          { pre_PP, NULL, 0 }, /* LP */
         { pre_PP, NULL, 0 }, /* PP */          { pre_PP, NULL, 0 }, /* PP */
         { pre_PP, NULL, 0 }, /* P */          { pre_PP, NULL, 0 }, /* P */
Line 123  static const struct termact __termacts[MAN_MAX - MAN_T
Line 126  static const struct termact __termacts[MAN_MAX - MAN_T
         { pre_PD, NULL, MAN_NOTEXT }, /* PD */          { pre_PD, NULL, MAN_NOTEXT }, /* PD */
         { pre_ign, NULL, 0 }, /* AT */          { pre_ign, NULL, 0 }, /* AT */
         { pre_in, NULL, MAN_NOTEXT }, /* in */          { pre_in, NULL, MAN_NOTEXT }, /* in */
           { pre_SY, post_SY, 0 }, /* SY */
           { NULL, NULL, 0 }, /* YS */
         { pre_OP, NULL, 0 }, /* OP */          { pre_OP, NULL, 0 }, /* OP */
         { pre_literal, NULL, 0 }, /* EX */          { pre_literal, NULL, 0 }, /* EX */
         { pre_literal, NULL, 0 }, /* EE */          { pre_literal, NULL, 0 }, /* EE */
         { pre_UR, post_UR, 0 }, /* UR */          { pre_UR, post_UR, 0 }, /* UR */
         { NULL, NULL, 0 }, /* UE */          { NULL, NULL, 0 }, /* UE */
           { pre_UR, post_UR, 0 }, /* MT */
           { NULL, NULL, 0 }, /* ME */
 };  };
 static  const struct termact *termacts = __termacts - MAN_TH;  static const struct man_term_act *man_term_act(enum roff_tok);
   
   
   static const struct man_term_act *
   man_term_act(enum roff_tok tok)
   {
           assert(tok >= MAN_TH && tok <= MAN_MAX);
           return man_term_acts + (tok - MAN_TH);
   }
   
 void  void
 terminal_man(void *arg, const struct roff_man *man)  terminal_man(void *arg, const struct roff_man *man)
 {  {
Line 332  pre_OP(DECL_ARGS)
Line 346  pre_OP(DECL_ARGS)
 {  {
   
         term_word(p, "[");          term_word(p, "[");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_KEEP | TERMP_NOSPACE;
   
         if (NULL != (n = n->child)) {          if (NULL != (n = n->child)) {
                 term_fontrepl(p, TERMFONT_BOLD);                  term_fontrepl(p, TERMFONT_BOLD);
Line 344  pre_OP(DECL_ARGS)
Line 358  pre_OP(DECL_ARGS)
         }          }
   
         term_fontrepl(p, TERMFONT_NONE);          term_fontrepl(p, TERMFONT_NONE);
           p->flags &= ~TERMP_KEEP;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         term_word(p, "]");          term_word(p, "]");
         return 0;          return 0;
Line 582  pre_TP(DECL_ARGS)
Line 597  pre_TP(DECL_ARGS)
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 break;                  break;
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 print_bvspace(p, n, mt->pardist);                  if (n->tok == MAN_TP)
                           print_bvspace(p, n, mt->pardist);
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         default:          default:
                 return 1;                  return 1;
Line 671  pre_SS(DECL_ARGS)
Line 687  pre_SS(DECL_ARGS)
   
                 do {                  do {
                         n = n->prev;                          n = n->prev;
                 } while (n != NULL && n->tok != TOKEN_NONE &&                  } while (n != NULL && n->tok >= MAN_TH &&
                     termacts[n->tok].flags & MAN_NOTEXT);                      man_term_act(n->tok)->flags & MAN_NOTEXT);
                 if (n == NULL || (n->tok == MAN_SS && n->body->child == NULL))                  if (n == NULL || n->type == ROFFT_COMMENT ||
                       (n->tok == MAN_SS && n->body->child == NULL))
                         break;                          break;
   
                 for (i = 0; i < mt->pardist; i++)                  for (i = 0; i < mt->pardist; i++)
Line 733  pre_SH(DECL_ARGS)
Line 750  pre_SH(DECL_ARGS)
   
                 do {                  do {
                         n = n->prev;                          n = n->prev;
                 } while (n != NULL && n->tok != TOKEN_NONE &&                  } while (n != NULL && n->tok >= MAN_TH &&
                     termacts[n->tok].flags & MAN_NOTEXT);                      man_term_act(n->tok)->flags & MAN_NOTEXT);
                 if (n == NULL || (n->tok == MAN_SH && n->body->child == NULL))                  if (n == NULL || n->type == ROFFT_COMMENT ||
                       (n->tok == MAN_SH && n->body->child == NULL))
                         break;                          break;
   
                 for (i = 0; i < mt->pardist; i++)                  for (i = 0; i < mt->pardist; i++)
Line 836  post_RS(DECL_ARGS)
Line 854  post_RS(DECL_ARGS)
 }  }
   
 static int  static int
   pre_SY(DECL_ARGS)
   {
           const struct roff_node  *nn;
           int                      len;
   
           switch (n->type) {
           case ROFFT_BLOCK:
                   print_bvspace(p, n, mt->pardist);
                   return 1;
           case ROFFT_HEAD:
           case ROFFT_BODY:
                   break;
           default:
                   abort();
           }
   
           nn = n->parent->head->child;
           len = nn == NULL ? 0 : term_strlen(p, nn->string) + 1;
   
           switch (n->type) {
           case ROFFT_HEAD:
                   p->tcol->offset = mt->offset;
                   p->tcol->rmargin = mt->offset + len;
                   p->flags |= TERMP_NOBREAK;
                   term_fontrepl(p, TERMFONT_BOLD);
                   break;
           case ROFFT_BODY:
                   mt->lmargin[mt->lmargincur] = len;
                   p->tcol->offset = mt->offset + len;
                   p->tcol->rmargin = p->maxrmargin;
                   p->flags |= TERMP_NOSPACE;
                   break;
           default:
                   abort();
           }
           return 1;
   }
   
   static void
   post_SY(DECL_ARGS)
   {
           switch (n->type) {
           case ROFFT_HEAD:
                   term_flushln(p);
                   p->flags &= ~TERMP_NOBREAK;
                   break;
           case ROFFT_BODY:
                   term_newln(p);
                   p->tcol->offset = mt->offset;
                   break;
           default:
                   break;
           }
   }
   
   static int
 pre_UR(DECL_ARGS)  pre_UR(DECL_ARGS)
 {  {
   
Line 862  post_UR(DECL_ARGS)
Line 936  post_UR(DECL_ARGS)
 static void  static void
 print_man_node(DECL_ARGS)  print_man_node(DECL_ARGS)
 {  {
         int              c;          const struct man_term_act *act;
           int c;
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
Line 872  print_man_node(DECL_ARGS)
Line 947  print_man_node(DECL_ARGS)
                  * before printing the line's data.                   * before printing the line's data.
                  */                   */
                 if (*n->string == '\0') {                  if (*n->string == '\0') {
                         term_vspace(p);                          if (p->flags & TERMP_NONEWLINE)
                                   term_newln(p);
                           else
                                   term_vspace(p);
                         return;                          return;
                 } else if (*n->string == ' ' && n->flags & NODE_LINE &&                  } else if (*n->string == ' ' && n->flags & NODE_LINE &&
                     (p->flags & TERMP_NONEWLINE) == 0)                      (p->flags & TERMP_NONEWLINE) == 0)
                         term_newln(p);                          term_newln(p);
                   else if (n->flags & NODE_DELIMC)
                           p->flags |= TERMP_NOSPACE;
   
                 term_word(p, n->string);                  term_word(p, n->string);
                 goto out;                  goto out;
           case ROFFT_COMMENT:
                   return;
         case ROFFT_EQN:          case ROFFT_EQN:
                 if ( ! (n->flags & NODE_LINE))                  if ( ! (n->flags & NODE_LINE))
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
Line 902  print_man_node(DECL_ARGS)
Line 983  print_man_node(DECL_ARGS)
                 return;                  return;
         }          }
   
         assert(n->tok >= MAN_TH && n->tok <= MAN_MAX);          act = man_term_act(n->tok);
         if ( ! (MAN_NOTEXT & termacts[n->tok].flags))          if ((act->flags & MAN_NOTEXT) == 0)
                 term_fontrepl(p, TERMFONT_NONE);                  term_fontrepl(p, TERMFONT_NONE);
   
         c = 1;          c = 1;
         if (termacts[n->tok].pre)          if (act->pre != NULL)
                 c = (*termacts[n->tok].pre)(p, mt, n, meta);                  c = (*act->pre)(p, mt, n, meta);
   
         if (c && n->child)          if (c && n->child)
                 print_man_nodelist(p, mt, n->child, meta);                  print_man_nodelist(p, mt, n->child, meta);
   
         if (termacts[n->tok].post)          if (act->post != NULL)
                 (*termacts[n->tok].post)(p, mt, n, meta);                  (*act->post)(p, mt, n, meta);
         if ( ! (MAN_NOTEXT & termacts[n->tok].flags))          if ((act->flags & MAN_NOTEXT) == 0)
                 term_fontrepl(p, TERMFONT_NONE);                  term_fontrepl(p, TERMFONT_NONE);
   
 out:  out:
Line 1024  print_man_foot(struct termp *p, const struct roff_meta
Line 1105  print_man_foot(struct termp *p, const struct roff_meta
   
         term_word(p, title);          term_word(p, title);
         term_flushln(p);          term_flushln(p);
   
           /*
            * Reset the terminal state for more output after the footer:
            * Some output modes, in particular PostScript and PDF, print
            * the header and the footer into a buffer such that it can be
            * reused for multiple output pages, then go on to format the
            * main text.
            */
   
           p->tcol->offset = 0;
           p->flags = 0;
   
         free(title);          free(title);
 }  }
   

Legend:
Removed from v.1.206  
changed lines
  Added in v.1.216

CVSweb