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

Diff for /mandoc/mdoc.c between version 1.22 and 1.23

version 1.22, 2009/01/07 16:11:40 version 1.23, 2009/01/08 14:55:59
Line 126  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 126  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Va */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Va */
         { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Vt */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Vt */
         { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Xr */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Xr */
         { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %A */          { macro_constant, MDOC_QUOTABLE }, /* %A */
         { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %B */          { macro_constant, MDOC_QUOTABLE }, /* %B */
         { macro_constant, MDOC_QUOTABLE }, /* %D */          { macro_constant, MDOC_QUOTABLE }, /* %D */
         { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %I */          { macro_constant, MDOC_QUOTABLE }, /* %I */
         { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %J */          { macro_constant, MDOC_QUOTABLE }, /* %J */
         { macro_constant, MDOC_QUOTABLE }, /* %N */          { macro_constant, MDOC_QUOTABLE }, /* %N */
         { macro_constant, MDOC_QUOTABLE }, /* %O */          { macro_constant, MDOC_QUOTABLE }, /* %O */
         { macro_constant, MDOC_QUOTABLE }, /* %P */          { macro_constant, MDOC_QUOTABLE }, /* %P */
         { macro_constant, MDOC_QUOTABLE }, /* %R */          { macro_constant, MDOC_QUOTABLE }, /* %R */
         { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %T */          { macro_constant, MDOC_QUOTABLE }, /* %T */
         { macro_constant, MDOC_QUOTABLE }, /* %V */          { macro_constant, MDOC_QUOTABLE }, /* %V */
         { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Ac */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Ac */
         { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Ao */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Ao */
Line 206  static void      argcpy(struct mdoc_arg *, 
Line 206  static void      argcpy(struct mdoc_arg *, 
                                 const struct mdoc_arg *);                                  const struct mdoc_arg *);
   
 static  void              mdoc_node_freelist(struct mdoc_node *);  static  void              mdoc_node_freelist(struct mdoc_node *);
 static  void              mdoc_node_append(struct mdoc *, int,  static  int               mdoc_node_append(struct mdoc *,
                                 struct mdoc_node *);                                  struct mdoc_node *);
 static  void              mdoc_elem_free(struct mdoc_elem *);  static  void              mdoc_elem_free(struct mdoc_elem *);
 static  void              mdoc_text_free(struct mdoc_text *);  static  void              mdoc_text_free(struct mdoc_text *);
Line 276  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 276  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
                 return(0);                  return(0);
   
         if ('.' != *buf) {          if ('.' != *buf) {
                 if (SEC_PROLOGUE == mdoc->sec_lastn)                  if (SEC_PROLOGUE != mdoc->sec_lastn) {
                         return(mdoc_err(mdoc, -1, 0, ERR_SYNTAX_NOTEXT));                          mdoc_word_alloc(mdoc, line, 0, buf);
                 mdoc_word_alloc(mdoc, line, 0, buf);                          mdoc->next = MDOC_NEXT_SIBLING;
                 mdoc->next = MDOC_NEXT_SIBLING;                          return(1);
                 return(1);                  }
                   return(mdoc_perr(mdoc, line, 0, ERR_SYNTAX_NOTEXT));
         }          }
   
         if (buf[1] && '\\' == buf[1])          if (buf[1] && '\\' == buf[1])
Line 293  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 294  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
   
         if (i == (int)sizeof(tmp)) {          if (i == (int)sizeof(tmp)) {
                 mdoc->flags |= MDOC_HALT;                  mdoc->flags |= MDOC_HALT;
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));                  return(mdoc_perr(mdoc, line, 1, ERR_MACRO_NOTSUP));
         } else if (i <= 2) {          } else if (i <= 2) {
                 mdoc->flags |= MDOC_HALT;                  mdoc->flags |= MDOC_HALT;
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));                  return(mdoc_perr(mdoc, line, 1, ERR_MACRO_NOTSUP));
         }          }
   
         i--;          i--;
Line 306  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 307  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
   
         if (MDOC_MAX == (c = mdoc_find(mdoc, tmp))) {          if (MDOC_MAX == (c = mdoc_find(mdoc, tmp))) {
                 mdoc->flags |= MDOC_HALT;                  mdoc->flags |= MDOC_HALT;
                 return(mdoc_err(mdoc, c, 1, ERR_MACRO_NOTSUP));                  return(mdoc_perr(mdoc, line, 1, ERR_MACRO_NOTSUP));
         }          }
   
         while (buf[i] && isspace(buf[i]))          while (buf[i] && isspace(buf[i]))
Line 321  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 322  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
   
   
 void  void
 mdoc_msg(struct mdoc *mdoc, int pos, const char *fmt, ...)  mdoc_msg(struct mdoc *mdoc, const char *fmt, ...)
 {  {
         va_list          ap;          struct mdoc_node *n;
         char             buf[256];          va_list           ap;
           char              buf[256];
   
         if (NULL == mdoc->cb.mdoc_msg)          if (NULL == mdoc->cb.mdoc_msg)
                 return;                  return;
   
           n = mdoc->last;
           assert(n);
   
         va_start(ap, fmt);          va_start(ap, fmt);
         (void)vsnprintf(buf, sizeof(buf), fmt, ap);          (void)vsnprintf(buf, sizeof(buf), fmt, ap);
         va_end(ap);          va_end(ap);
   
         (*mdoc->cb.mdoc_msg)(mdoc->data, pos, buf);          (*mdoc->cb.mdoc_msg)(mdoc->data, n->line, n->pos, buf);
 }  }
   
   
 int  int
 mdoc_err(struct mdoc *mdoc, int tok, int pos, enum mdoc_err type)  mdoc_perr(struct mdoc *mdoc,
                   int line, int pos, enum mdoc_err type)
 {  {
   
         if (NULL == mdoc->cb.mdoc_err)          if (NULL == mdoc->cb.mdoc_err)
                 return(0);                  return(0);
         return((*mdoc->cb.mdoc_err)(mdoc->data, tok, pos, type));          return((*mdoc->cb.mdoc_err)(mdoc->data, line, pos, type));
 }  }
   
   
 int  int
 mdoc_warn(struct mdoc *mdoc, int tok, int pos, enum mdoc_warn type)  mdoc_pwarn(struct mdoc *mdoc,
                   int line, int pos, enum mdoc_warn type)
 {  {
   
         if (NULL == mdoc->cb.mdoc_warn)          if (NULL == mdoc->cb.mdoc_warn)
                 return(0);                  return(0);
         return((*mdoc->cb.mdoc_warn)(mdoc->data, tok, pos, type));          return((*mdoc->cb.mdoc_warn)(mdoc->data, line, pos, type));
 }  }
   
   
 int  int
 mdoc_macro(struct mdoc *mdoc, int tok,  mdoc_macro(struct mdoc *mdoc, int tok,
                 int line, int ppos, int *pos, char *buf)                  int ln, int ppos, int *pos, char *buf)
 {  {
   
         if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&          if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&
                         SEC_PROLOGUE == mdoc->sec_lastn)                          SEC_PROLOGUE == mdoc->sec_lastn)
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));                  return(mdoc_perr(mdoc, ln, ppos, ERR_SEC_PROLOGUE));
   
         if (NULL == (mdoc_macros[tok].fp)) {          if (NULL == (mdoc_macros[tok].fp))
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTSUP);                  return(mdoc_perr(mdoc, ln, ppos, ERR_MACRO_NOTSUP));
                 return(0);  
         }  
   
         if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags)) {          if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTCALL);                  return(mdoc_perr(mdoc, ln, ppos, ERR_MACRO_NOTCALL));
                 return(0);  
         }  
   
         return((*mdoc_macros[tok].fp)(mdoc, tok,          return((*mdoc_macros[tok].fp)(mdoc, tok, ln, ppos, pos, buf));
                                 line, ppos, pos, buf));  
 }  }
   
   
 static void  static int
 mdoc_node_append(struct mdoc *mdoc, int pos, struct mdoc_node *p)  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *p)
 {  {
         const char       *nn, *on, *nt, *ot, *act;          const char       *nn, *on, *nt, *ot, *act;
   
Line 418  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 420  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
   
         if (NULL == mdoc->first) {          if (NULL == mdoc->first) {
                 assert(NULL == mdoc->last);                  assert(NULL == mdoc->last);
                   if ( ! mdoc_valid_pre(mdoc, p))
                           return(0);
                   if ( ! mdoc_action_pre(mdoc, p))
                           return(0);
                 mdoc->first = p;                  mdoc->first = p;
                 mdoc->last = p;                  mdoc->last = p;
                 mdoc_msg(mdoc, pos, "parse: root %s `%s'", nt, nn);                  mdoc_msg(mdoc, "parse: root %s `%s'", nt, nn);
                 return;                  return(1);
         }          }
   
         switch (mdoc->last->type) {          switch (mdoc->last->type) {
Line 471  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 477  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         mdoc_msg(mdoc, pos, "parse: %s `%s' %s of %s `%s'",          if ( ! mdoc_valid_pre(mdoc, p))
                         nt, nn, act, ot, on);                  return(0);
           if ( ! mdoc_action_pre(mdoc, p))
                   return(0);
         mdoc->last = p;          mdoc->last = p;
           mdoc_msg(mdoc, "parse: %s of %s `%s'", act, ot, on);
           return(1);
 }  }
   
   
 void  int
 mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, int tok)  mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
Line 493  mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, 
Line 502  mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, 
         p->type = MDOC_TAIL;          p->type = MDOC_TAIL;
         p->data.tail.tok = tok;          p->data.tail.tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, int tok)  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
Line 512  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, 
Line 521  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, 
         p->type = MDOC_HEAD;          p->type = MDOC_HEAD;
         p->data.head.tok = tok;          p->data.head.tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, int tok)  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
Line 531  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
Line 540  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
         p->type = MDOC_BODY;          p->type = MDOC_BODY;
         p->data.body.tok = tok;          p->data.body.tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
                 int tok, size_t argsz, const struct mdoc_arg *args)                  int tok, size_t argsz, const struct mdoc_arg *args)
 {  {
Line 550  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
Line 559  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
         p->data.block.argc = argsz;          p->data.block.argc = argsz;
         p->data.block.argv = argdup(argsz, args);          p->data.block.argv = argdup(argsz, args);
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
                 int tok, size_t argsz, const struct mdoc_arg *args)                  int tok, size_t argsz, const struct mdoc_arg *args)
 {  {
Line 569  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos, 
Line 578  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos, 
         p->data.elem.argc = argsz;          p->data.elem.argc = argsz;
         p->data.elem.argv = argdup(argsz, args);          p->data.elem.argv = argdup(argsz, args);
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_word_alloc(struct mdoc *mdoc,  mdoc_word_alloc(struct mdoc *mdoc,
                 int line, int pos, const char *word)                  int line, int pos, const char *word)
 {  {
Line 585  mdoc_word_alloc(struct mdoc *mdoc, 
Line 594  mdoc_word_alloc(struct mdoc *mdoc, 
         p->type = MDOC_TEXT;          p->type = MDOC_TEXT;
         p->data.text.string = xstrdup(word);          p->data.text.string = xstrdup(word);
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

CVSweb