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

Diff for /mandoc/man.c between version 1.150 and 1.153

version 1.150, 2015/04/02 21:36:49 version 1.153, 2015/04/18 16:06:40
Line 49  const char *const __man_macronames[MAN_MAX] = {
Line 49  const char *const __man_macronames[MAN_MAX] = {
   
 const   char * const *man_macronames = __man_macronames;  const   char * const *man_macronames = __man_macronames;
   
 static  void             man_alloc1(struct man *);  static  void             man_alloc1(struct roff_man *);
 static  void             man_breakscope(struct man *, enum mant);  static  void             man_breakscope(struct roff_man *, int);
 static  void             man_descope(struct man *, int, int);  static  void             man_descope(struct roff_man *, int, int);
 static  void             man_free1(struct man *);  static  void             man_free1(struct roff_man *);
 static  struct man_node *man_node_alloc(struct man *, int, int,  static  struct roff_node *man_node_alloc(struct roff_man *, int, int,
                                 enum roff_type, enum mant);                                  enum roff_type, int);
 static  void             man_node_append(struct man *, struct man_node *);  static  void             man_node_append(struct roff_man *,
 static  void             man_node_free(struct man_node *);                                  struct roff_node *);
 static  void             man_node_unlink(struct man *,  static  void             man_node_free(struct roff_node *);
                                 struct man_node *);  static  void             man_node_unlink(struct roff_man *,
 static  int              man_ptext(struct man *, int, char *, int);                                  struct roff_node *);
 static  int              man_pmacro(struct man *, int, char *, int);  static  int              man_ptext(struct roff_man *, int, char *, int);
   static  int              man_pmacro(struct roff_man *, int, char *, int);
   
   
 const struct man_node *  const struct roff_node *
 man_node(const struct man *man)  man_node(const struct roff_man *man)
 {  {
   
         return(man->first);          return(man->first);
 }  }
   
 const struct man_meta *  const struct roff_meta *
 man_meta(const struct man *man)  man_meta(const struct roff_man *man)
 {  {
   
         return(&man->meta);          return(&man->meta);
 }  }
   
 void  void
 man_reset(struct man *man)  man_reset(struct roff_man *man)
 {  {
   
         man_free1(man);          man_free1(man);
Line 86  man_reset(struct man *man)
Line 87  man_reset(struct man *man)
 }  }
   
 void  void
 man_free(struct man *man)  man_free(struct roff_man *man)
 {  {
   
         man_free1(man);          man_free1(man);
         free(man);          free(man);
 }  }
   
 struct man *  struct roff_man *
 man_alloc(struct roff *roff, struct mparse *parse,  man_alloc(struct roff *roff, struct mparse *parse,
         const char *defos, int quick)          const char *defos, int quick)
 {  {
         struct man      *p;          struct roff_man *p;
   
         p = mandoc_calloc(1, sizeof(struct man));          p = mandoc_calloc(1, sizeof(*p));
   
         man_hash_init();          man_hash_init();
         p->parse = parse;          p->parse = parse;
Line 112  man_alloc(struct roff *roff, struct mparse *parse,
Line 113  man_alloc(struct roff *roff, struct mparse *parse,
 }  }
   
 void  void
 man_endparse(struct man *man)  man_endparse(struct roff_man *man)
 {  {
   
         man_macroend(man);          man_macroend(man);
 }  }
   
 int  int
 man_parseln(struct man *man, int ln, char *buf, int offs)  man_parseln(struct roff_man *man, int ln, char *buf, int offs)
 {  {
   
         if (man->last->type != ROFFT_EQN || ln > man->last->line)          if (man->last->type != ROFFT_EQN || ln > man->last->line)
Line 131  man_parseln(struct man *man, int ln, char *buf, int of
Line 132  man_parseln(struct man *man, int ln, char *buf, int of
 }  }
   
 static void  static void
 man_free1(struct man *man)  man_free1(struct roff_man *man)
 {  {
   
         if (man->first)          if (man->first)
                 man_node_delete(man, man->first);                  man_node_delete(man, man->first);
         free(man->meta.title);          free(man->meta.title);
         free(man->meta.source);          free(man->meta.os);
         free(man->meta.date);          free(man->meta.date);
         free(man->meta.vol);          free(man->meta.vol);
         free(man->meta.msec);          free(man->meta.msec);
 }  }
   
 static void  static void
 man_alloc1(struct man *man)  man_alloc1(struct roff_man *man)
 {  {
   
         memset(&man->meta, 0, sizeof(struct man_meta));          memset(&man->meta, 0, sizeof(man->meta));
         man->flags = 0;          man->flags = 0;
         man->last = mandoc_calloc(1, sizeof(struct man_node));          man->last = mandoc_calloc(1, sizeof(*man->last));
         man->first = man->last;          man->first = man->last;
         man->last->type = ROFFT_ROOT;          man->last->type = ROFFT_ROOT;
         man->last->tok = MAN_MAX;          man->last->tok = MAN_MAX;
         man->next = MAN_NEXT_CHILD;          man->next = ROFF_NEXT_CHILD;
 }  }
   
   
 static void  static void
 man_node_append(struct man *man, struct man_node *p)  man_node_append(struct roff_man *man, struct roff_node *p)
 {  {
   
         assert(man->last);          assert(man->last);
Line 166  man_node_append(struct man *man, struct man_node *p)
Line 167  man_node_append(struct man *man, struct man_node *p)
         assert(p->type != ROFFT_ROOT);          assert(p->type != ROFFT_ROOT);
   
         switch (man->next) {          switch (man->next) {
         case MAN_NEXT_SIBLING:          case ROFF_NEXT_SIBLING:
                 man->last->next = p;                  man->last->next = p;
                 p->prev = man->last;                  p->prev = man->last;
                 p->parent = man->last->parent;                  p->parent = man->last->parent;
                 break;                  break;
         case MAN_NEXT_CHILD:          case ROFF_NEXT_CHILD:
                 man->last->child = p;                  man->last->child = p;
                 p->parent = man->last;                  p->parent = man->last;
                 break;                  break;
Line 213  man_node_append(struct man *man, struct man_node *p)
Line 214  man_node_append(struct man *man, struct man_node *p)
         }          }
 }  }
   
 static struct man_node *  static struct roff_node *
 man_node_alloc(struct man *man, int line, int pos,  man_node_alloc(struct roff_man *man, int line, int pos,
                 enum roff_type type, enum mant tok)                  enum roff_type type, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = mandoc_calloc(1, sizeof(struct man_node));          p = mandoc_calloc(1, sizeof(*p));
         p->line = line;          p->line = line;
         p->pos = pos;          p->pos = pos;
         p->type = type;          p->type = type;
Line 232  man_node_alloc(struct man *man, int line, int pos,
Line 233  man_node_alloc(struct man *man, int line, int pos,
 }  }
   
 void  void
 man_elem_alloc(struct man *man, int line, int pos, enum mant tok)  man_elem_alloc(struct roff_man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_ELEM, tok);          p = man_node_alloc(man, line, pos, ROFFT_ELEM, tok);
         man_node_append(man, p);          man_node_append(man, p);
         man->next = MAN_NEXT_CHILD;          man->next = ROFF_NEXT_CHILD;
 }  }
   
 void  void
 man_head_alloc(struct man *man, int line, int pos, enum mant tok)  man_head_alloc(struct roff_man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_HEAD, tok);          p = man_node_alloc(man, line, pos, ROFFT_HEAD, tok);
         man_node_append(man, p);          man_node_append(man, p);
         man->next = MAN_NEXT_CHILD;          man->next = ROFF_NEXT_CHILD;
 }  }
   
 void  void
 man_body_alloc(struct man *man, int line, int pos, enum mant tok)  man_body_alloc(struct roff_man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_BODY, tok);          p = man_node_alloc(man, line, pos, ROFFT_BODY, tok);
         man_node_append(man, p);          man_node_append(man, p);
         man->next = MAN_NEXT_CHILD;          man->next = ROFF_NEXT_CHILD;
 }  }
   
 void  void
 man_block_alloc(struct man *man, int line, int pos, enum mant tok)  man_block_alloc(struct roff_man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_BLOCK, tok);          p = man_node_alloc(man, line, pos, ROFFT_BLOCK, tok);
         man_node_append(man, p);          man_node_append(man, p);
         man->next = MAN_NEXT_CHILD;          man->next = ROFF_NEXT_CHILD;
 }  }
   
 void  void
 man_word_alloc(struct man *man, int line, int pos, const char *word)  man_word_alloc(struct roff_man *man, int line, int pos, const char *word)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         n = man_node_alloc(man, line, pos, ROFFT_TEXT, MAN_MAX);          n = man_node_alloc(man, line, pos, ROFFT_TEXT, MAN_MAX);
         n->string = roff_strdup(man->roff, word);          n->string = roff_strdup(man->roff, word);
         man_node_append(man, n);          man_node_append(man, n);
         man->next = MAN_NEXT_SIBLING;          man->next = ROFF_NEXT_SIBLING;
 }  }
   
 void  void
 man_word_append(struct man *man, const char *word)  man_word_append(struct roff_man *man, const char *word)
 {  {
         struct man_node *n;          struct roff_node *n;
         char            *addstr, *newstr;          char            *addstr, *newstr;
   
         n = man->last;          n = man->last;
Line 294  man_word_append(struct man *man, const char *word)
Line 295  man_word_append(struct man *man, const char *word)
         free(addstr);          free(addstr);
         free(n->string);          free(n->string);
         n->string = newstr;          n->string = newstr;
         man->next = MAN_NEXT_SIBLING;          man->next = ROFF_NEXT_SIBLING;
 }  }
   
 /*  /*
Line 302  man_word_append(struct man *man, const char *word)
Line 303  man_word_append(struct man *man, const char *word)
  * node from its context; for that, see man_node_unlink().   * node from its context; for that, see man_node_unlink().
  */   */
 static void  static void
 man_node_free(struct man_node *p)  man_node_free(struct roff_node *p)
 {  {
   
         free(p->string);          free(p->string);
Line 310  man_node_free(struct man_node *p)
Line 311  man_node_free(struct man_node *p)
 }  }
   
 void  void
 man_node_delete(struct man *man, struct man_node *p)  man_node_delete(struct roff_man *man, struct roff_node *p)
 {  {
   
         while (p->child)          while (p->child)
Line 321  man_node_delete(struct man *man, struct man_node *p)
Line 322  man_node_delete(struct man *man, struct man_node *p)
 }  }
   
 void  void
 man_addeqn(struct man *man, const struct eqn *ep)  man_addeqn(struct roff_man *man, const struct eqn *ep)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         n = man_node_alloc(man, ep->ln, ep->pos, ROFFT_EQN, MAN_MAX);          n = man_node_alloc(man, ep->ln, ep->pos, ROFFT_EQN, MAN_MAX);
         n->eqn = ep;          n->eqn = ep;
         if (ep->ln > man->last->line)          if (ep->ln > man->last->line)
                 n->flags |= MAN_LINE;                  n->flags |= MAN_LINE;
         man_node_append(man, n);          man_node_append(man, n);
         man->next = MAN_NEXT_SIBLING;          man->next = ROFF_NEXT_SIBLING;
         man_descope(man, ep->ln, ep->pos);          man_descope(man, ep->ln, ep->pos);
 }  }
   
 void  void
 man_addspan(struct man *man, const struct tbl_span *sp)  man_addspan(struct roff_man *man, const struct tbl_span *sp)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         man_breakscope(man, MAN_MAX);          man_breakscope(man, MAN_MAX);
         n = man_node_alloc(man, sp->line, 0, ROFFT_TBL, MAN_MAX);          n = man_node_alloc(man, sp->line, 0, ROFFT_TBL, MAN_MAX);
         n->span = sp;          n->span = sp;
         man_node_append(man, n);          man_node_append(man, n);
         man->next = MAN_NEXT_SIBLING;          man->next = ROFF_NEXT_SIBLING;
         man_descope(man, sp->line, 0);          man_descope(man, sp->line, 0);
 }  }
   
 static void  static void
 man_descope(struct man *man, int line, int offs)  man_descope(struct roff_man *man, int line, int offs)
 {  {
         /*          /*
          * Co-ordinate what happens with having a next-line scope open:           * Co-ordinate what happens with having a next-line scope open:
Line 368  man_descope(struct man *man, int line, int offs)
Line 369  man_descope(struct man *man, int line, int offs)
 }  }
   
 static int  static int
 man_ptext(struct man *man, int line, char *buf, int offs)  man_ptext(struct roff_man *man, int line, char *buf, int offs)
 {  {
         int              i;          int              i;
   
Line 393  man_ptext(struct man *man, int line, char *buf, int of
Line 394  man_ptext(struct man *man, int line, char *buf, int of
                 if (man->last->tok != MAN_SH &&                  if (man->last->tok != MAN_SH &&
                     man->last->tok != MAN_SS) {                      man->last->tok != MAN_SS) {
                         man_elem_alloc(man, line, offs, MAN_sp);                          man_elem_alloc(man, line, offs, MAN_sp);
                         man->next = MAN_NEXT_SIBLING;                          man->next = ROFF_NEXT_SIBLING;
                 }                  }
                 return(1);                  return(1);
         }          }
Line 436  man_ptext(struct man *man, int line, char *buf, int of
Line 437  man_ptext(struct man *man, int line, char *buf, int of
 }  }
   
 static int  static int
 man_pmacro(struct man *man, int ln, char *buf, int offs)  man_pmacro(struct roff_man *man, int ln, char *buf, int offs)
 {  {
         struct man_node *n;          struct roff_node *n;
         const char      *cp;          const char      *cp;
         enum mant        tok;          int              tok;
         int              i, ppos;          int              i, ppos;
         int              bline;          int              bline;
         char             mac[5];          char             mac[5];
Line 536  man_pmacro(struct man *man, int ln, char *buf, int off
Line 537  man_pmacro(struct man *man, int ln, char *buf, int off
 }  }
   
 void  void
 man_breakscope(struct man *man, enum mant tok)  man_breakscope(struct roff_man *man, int tok)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         /*          /*
          * An element next line scope is open,           * An element next line scope is open,
Line 596  man_breakscope(struct man *man, enum mant tok)
Line 597  man_breakscope(struct man *man, enum mant tok)
  * point will also be adjusted accordingly.   * point will also be adjusted accordingly.
  */   */
 static void  static void
 man_node_unlink(struct man *man, struct man_node *n)  man_node_unlink(struct roff_man *man, struct roff_node *n)
 {  {
   
         /* Adjust siblings. */          /* Adjust siblings. */
Line 621  man_node_unlink(struct man *man, struct man_node *n)
Line 622  man_node_unlink(struct man *man, struct man_node *n)
                 /*assert(NULL == n->next);*/                  /*assert(NULL == n->next);*/
                 if (n->prev) {                  if (n->prev) {
                         man->last = n->prev;                          man->last = n->prev;
                         man->next = MAN_NEXT_SIBLING;                          man->next = ROFF_NEXT_SIBLING;
                 } else {                  } else {
                         man->last = n->parent;                          man->last = n->parent;
                         man->next = MAN_NEXT_CHILD;                          man->next = ROFF_NEXT_CHILD;
                 }                  }
         }          }
   
Line 633  man_node_unlink(struct man *man, struct man_node *n)
Line 634  man_node_unlink(struct man *man, struct man_node *n)
 }  }
   
 const struct mparse *  const struct mparse *
 man_mparse(const struct man *man)  man_mparse(const struct roff_man *man)
 {  {
   
         assert(man && man->parse);          assert(man && man->parse);
Line 641  man_mparse(const struct man *man)
Line 642  man_mparse(const struct man *man)
 }  }
   
 void  void
 man_deroff(char **dest, const struct man_node *n)  man_deroff(char **dest, const struct roff_node *n)
 {  {
         char    *cp;          char    *cp;
         size_t   sz;          size_t   sz;

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.153

CVSweb