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

Diff for /mandoc/tree.c between version 1.74 and 1.88

version 1.74, 2017/04/24 23:06:18 version 1.88, 2020/04/07 22:56:02
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
    * Copyright (c) 2013-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014, 2015, 2017 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 14 
Line 14 
  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    *
    * Formatting module to let mandoc(1) show
    * a human readable representation of the syntax tree.
  */   */
 #include "config.h"  #include "config.h"
   
Line 29 
Line 32 
 #include "roff.h"  #include "roff.h"
 #include "mdoc.h"  #include "mdoc.h"
 #include "man.h"  #include "man.h"
   #include "tbl.h"
   #include "eqn.h"
 #include "main.h"  #include "main.h"
   
 static  void    print_box(const struct eqn_box *, int);  static  void    print_box(const struct eqn_box *, int);
   static  void    print_cellt(enum tbl_cellt);
 static  void    print_man(const struct roff_node *, int);  static  void    print_man(const struct roff_node *, int);
 static  void    print_meta(const struct roff_meta *);  static  void    print_meta(const struct roff_meta *);
 static  void    print_mdoc(const struct roff_node *, int);  static  void    print_mdoc(const struct roff_node *, int);
Line 39  static void print_span(const struct tbl_span *, int);
Line 45  static void print_span(const struct tbl_span *, int);
   
   
 void  void
 tree_mdoc(void *arg, const struct roff_man *mdoc)  tree_mdoc(void *arg, const struct roff_meta *mdoc)
 {  {
         print_meta(&mdoc->meta);          print_meta(mdoc);
         putchar('\n');          putchar('\n');
         print_mdoc(mdoc->first->child, 0);          print_mdoc(mdoc->first->child, 0);
 }  }
   
 void  void
 tree_man(void *arg, const struct roff_man *man)  tree_man(void *arg, const struct roff_meta *man)
 {  {
         print_meta(&man->meta);          print_meta(man);
         if (man->meta.hasbody == 0)          if (man->hasbody == 0)
                 puts("body  = empty");                  puts("body  = empty");
         putchar('\n');          putchar('\n');
         print_man(man->first->child, 0);          print_man(man->first->child, 0);
Line 115  print_mdoc(const struct roff_node *n, int indent)
Line 121  print_mdoc(const struct roff_node *n, int indent)
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 t = "text";                  t = "text";
                 break;                  break;
           case ROFFT_COMMENT:
                   t = "comment";
                   break;
         case ROFFT_TBL:          case ROFFT_TBL:
                 break;                  break;
         case ROFFT_EQN:          case ROFFT_EQN:
Line 126  print_mdoc(const struct roff_node *n, int indent)
Line 135  print_mdoc(const struct roff_node *n, int indent)
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
           case ROFFT_COMMENT:
                 p = n->string;                  p = n->string;
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
Line 183  print_mdoc(const struct roff_node *n, int indent)
Line 193  print_mdoc(const struct roff_node *n, int indent)
                 }                  }
   
                 putchar(' ');                  putchar(' ');
                 if (NODE_DELIMO & n->flags)                  if (n->flags & NODE_DELIMO)
                         putchar('(');                          putchar('(');
                 if (NODE_LINE & n->flags)                  if (n->flags & NODE_LINE)
                         putchar('*');                          putchar('*');
                 printf("%d:%d", n->line, n->pos + 1);                  printf("%d:%d", n->line, n->pos + 1);
                 if (NODE_DELIMC & n->flags)                  if (n->flags & NODE_DELIMC)
                         putchar(')');                          putchar(')');
                 if (NODE_EOS & n->flags)                  if (n->flags & NODE_EOS)
                         putchar('.');                          putchar('.');
                 if (NODE_BROKEN & n->flags)                  if (n->flags & NODE_ID) {
                           printf(" ID");
                           if (n->string != NULL)
                                   printf("=%s", n->string);
                   }
                   if (n->flags & NODE_HREF) {
                           printf(" HREF");
                           if (n->string != NULL && (n->flags & NODE_ID) == 0)
                                   printf("=%s", n->string);
                   }
                   if (n->flags & NODE_BROKEN)
                         printf(" BROKEN");                          printf(" BROKEN");
                 if (NODE_NOSRC & n->flags)                  if (n->flags & NODE_NOFILL)
                           printf(" NOFILL");
                   if (n->flags & NODE_NOSRC)
                         printf(" NOSRC");                          printf(" NOSRC");
                 if (NODE_NOPRT & n->flags)                  if (n->flags & NODE_NOPRT)
                         printf(" NOPRT");                          printf(" NOPRT");
                 putchar('\n');                  putchar('\n');
         }          }
   
         if (n->eqn)          if (n->eqn)
                 print_box(n->eqn->root->first, indent + 4);                  print_box(n->eqn->first, indent + 4);
         if (n->child)          if (n->child)
                 print_mdoc(n->child, indent +                  print_mdoc(n->child, indent +
                     (n->type == ROFFT_BLOCK ? 2 : 4));                      (n->type == ROFFT_BLOCK ? 2 : 4));
Line 231  print_man(const struct roff_node *n, int indent)
Line 253  print_man(const struct roff_node *n, int indent)
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 t = "text";                  t = "text";
                 break;                  break;
           case ROFFT_COMMENT:
                   t = "comment";
                   break;
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 t = "block";                  t = "block";
                 break;                  break;
Line 251  print_man(const struct roff_node *n, int indent)
Line 276  print_man(const struct roff_node *n, int indent)
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
           case ROFFT_COMMENT:
                 p = n->string;                  p = n->string;
                 break;                  break;
         case ROFFT_ELEM:          case ROFFT_ELEM:
Line 278  print_man(const struct roff_node *n, int indent)
Line 304  print_man(const struct roff_node *n, int indent)
                 for (i = 0; i < indent; i++)                  for (i = 0; i < indent; i++)
                         putchar(' ');                          putchar(' ');
                 printf("%s (%s) ", p, t);                  printf("%s (%s) ", p, t);
                 if (NODE_LINE & n->flags)                  if (n->flags & NODE_LINE)
                         putchar('*');                          putchar('*');
                 printf("%d:%d", n->line, n->pos + 1);                  printf("%d:%d", n->line, n->pos + 1);
                 if (NODE_EOS & n->flags)                  if (n->flags & NODE_DELIMC)
                           putchar(')');
                   if (n->flags & NODE_EOS)
                         putchar('.');                          putchar('.');
                   if (n->flags & NODE_ID) {
                           printf(" ID");
                           if (n->string != NULL)
                                   printf("=%s", n->string);
                   }
                   if (n->flags & NODE_NOFILL)
                           printf(" NOFILL");
                 putchar('\n');                  putchar('\n');
         }          }
   
         if (n->eqn)          if (n->eqn)
                 print_box(n->eqn->root->first, indent + 4);                  print_box(n->eqn->first, indent + 4);
         if (n->child)          if (n->child)
                 print_man(n->child, indent +                  print_man(n->child, indent +
                     (n->type == ROFFT_BLOCK ? 2 : 4));                      (n->type == ROFFT_BLOCK ? 2 : 4));
Line 313  print_box(const struct eqn_box *ep, int indent)
Line 348  print_box(const struct eqn_box *ep, int indent)
   
         t = NULL;          t = NULL;
         switch (ep->type) {          switch (ep->type) {
         case EQN_ROOT:  
                 t = "eqn-root";  
                 break;  
         case EQN_LISTONE:  
         case EQN_LIST:          case EQN_LIST:
                 t = "eqn-list";                  t = "eqn-list";
                 break;                  break;
Line 362  print_box(const struct eqn_box *ep, int indent)
Line 393  print_box(const struct eqn_box *ep, int indent)
 }  }
   
 static void  static void
   print_cellt(enum tbl_cellt pos)
   {
           switch(pos) {
           case TBL_CELL_LEFT:
                   putchar('L');
                   break;
           case TBL_CELL_LONG:
                   putchar('a');
                   break;
           case TBL_CELL_CENTRE:
                   putchar('c');
                   break;
           case TBL_CELL_RIGHT:
                   putchar('r');
                   break;
           case TBL_CELL_NUMBER:
                   putchar('n');
                   break;
           case TBL_CELL_SPAN:
                   putchar('s');
                   break;
           case TBL_CELL_DOWN:
                   putchar('^');
                   break;
           case TBL_CELL_HORIZ:
                   putchar('-');
                   break;
           case TBL_CELL_DHORIZ:
                   putchar('=');
                   break;
           case TBL_CELL_MAX:
                   putchar('#');
                   break;
           }
   }
   
   static void
 print_span(const struct tbl_span *sp, int indent)  print_span(const struct tbl_span *sp, int indent)
 {  {
         const struct tbl_dat *dp;          const struct tbl_dat *dp;
           const struct tbl_cell *cp;
         int              i;          int              i;
   
           if (sp->prev == NULL) {
                   for (i = 0; i < indent; i++)
                           putchar(' ');
                   printf("%d", sp->opts->cols);
                   if (sp->opts->opts & TBL_OPT_CENTRE)
                           fputs(" center", stdout);
                   if (sp->opts->opts & TBL_OPT_EXPAND)
                           fputs(" expand", stdout);
                   if (sp->opts->opts & TBL_OPT_ALLBOX)
                           fputs(" allbox", stdout);
                   if (sp->opts->opts & TBL_OPT_BOX)
                           fputs(" box", stdout);
                   if (sp->opts->opts & TBL_OPT_DBOX)
                           fputs(" doublebox", stdout);
                   if (sp->opts->opts & TBL_OPT_NOKEEP)
                           fputs(" nokeep", stdout);
                   if (sp->opts->opts & TBL_OPT_NOSPACE)
                           fputs(" nospaces", stdout);
                   if (sp->opts->opts & TBL_OPT_NOWARN)
                           fputs(" nowarn", stdout);
                   printf(" (tbl options) %d:1\n", sp->line);
           }
   
         for (i = 0; i < indent; i++)          for (i = 0; i < indent; i++)
                 putchar(' ');                  putchar(' ');
   
         switch (sp->pos) {          switch (sp->pos) {
         case TBL_SPAN_HORIZ:          case TBL_SPAN_HORIZ:
                 putchar('-');                  putchar('-');
                 return;                  putchar(' ');
                   break;
         case TBL_SPAN_DHORIZ:          case TBL_SPAN_DHORIZ:
                 putchar('=');                  putchar('=');
                 return;                  putchar(' ');
                   break;
         default:          default:
                   for (cp = sp->layout->first; cp != NULL; cp = cp->next)
                           print_cellt(cp->pos);
                   putchar(' ');
                   for (dp = sp->first; dp; dp = dp->next) {
                           if ((cp = dp->layout) == NULL)
                                   putchar('*');
                           else {
                                   printf("%d", cp->col);
                                   print_cellt(dp->layout->pos);
                                   if (cp->flags & TBL_CELL_BOLD)
                                           putchar('b');
                                   if (cp->flags & TBL_CELL_ITALIC)
                                           putchar('i');
                                   if (cp->flags & TBL_CELL_TALIGN)
                                           putchar('t');
                                   if (cp->flags & TBL_CELL_UP)
                                           putchar('u');
                                   if (cp->flags & TBL_CELL_BALIGN)
                                           putchar('d');
                                   if (cp->flags & TBL_CELL_WIGN)
                                           putchar('z');
                                   if (cp->flags & TBL_CELL_EQUAL)
                                           putchar('e');
                                   if (cp->flags & TBL_CELL_WMAX)
                                           putchar('x');
                           }
                           switch (dp->pos) {
                           case TBL_DATA_HORIZ:
                           case TBL_DATA_NHORIZ:
                                   putchar('-');
                                   break;
                           case TBL_DATA_DHORIZ:
                           case TBL_DATA_NDHORIZ:
                                   putchar('=');
                                   break;
                           default:
                                   putchar(dp->block ? '{' : '[');
                                   if (dp->string != NULL)
                                           fputs(dp->string, stdout);
                                   putchar(dp->block ? '}' : ']');
                                   break;
                           }
                           if (dp->hspans)
                                   printf(">%d", dp->hspans);
                           if (dp->vspans)
                                   printf("v%d", dp->vspans);
                           putchar(' ');
                   }
                 break;                  break;
         }          }
   
         for (dp = sp->first; dp; dp = dp->next) {  
                 switch (dp->pos) {  
                 case TBL_DATA_HORIZ:  
                 case TBL_DATA_NHORIZ:  
                         putchar('-');  
                         continue;  
                 case TBL_DATA_DHORIZ:  
                 case TBL_DATA_NDHORIZ:  
                         putchar('=');  
                         continue;  
                 default:  
                         break;  
                 }  
                 printf("[\"%s\"", dp->string ? dp->string : "");  
                 if (dp->spans)  
                         printf("(%d)", dp->spans);  
                 if (NULL == dp->layout)  
                         putchar('*');  
                 putchar(']');  
                 putchar(' ');  
         }  
   
         printf("(tbl) %d:1\n", sp->line);          printf("(tbl) %d:1\n", sp->line);
 }  }

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.88

CVSweb