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

Diff for /mandoc/mdoc.c between version 1.21 and 1.27

version 1.21, 2009/01/07 15:57:14 version 1.27, 2009/01/12 12:52:21
Line 85  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
Line 85  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
   
 const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {  const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* \" */          { NULL, 0 }, /* \" */
         { macro_prologue, MDOC_PROLOGUE }, /* Dd */          { macro_constant, MDOC_PROLOGUE }, /* Dd */
         { macro_prologue, MDOC_PROLOGUE }, /* Dt */          { macro_constant, MDOC_PROLOGUE }, /* Dt */
         { macro_prologue, MDOC_PROLOGUE }, /* Os */          { macro_constant, MDOC_PROLOGUE }, /* Os */
         { macro_scoped, 0 }, /* Sh */          { macro_scoped, 0 }, /* Sh */
         { macro_scoped, 0 }, /* Ss */          { macro_scoped, 0 }, /* Ss */
         { macro_text, 0 }, /* Pp */          { macro_text, 0 }, /* Pp */
Line 121  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 121  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { macro_obsolete, 0 }, /* Ot */          { macro_obsolete, 0 }, /* Ot */
         { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Pa */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Pa */
         { macro_constant, 0 }, /* Rv */          { macro_constant, 0 }, /* Rv */
         /* XXX - supposed to be (but isn't) callable. */          /* XXX - .St supposed to be (but isn't) callable. */
         { macro_constant_delimited, MDOC_PARSED }, /* St */          { macro_constant_delimited, MDOC_PARSED }, /* St */
         { 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 243  mdoc_alloc(void *data, const struct mdoc_cb *cb)
Line 243  mdoc_alloc(void *data, const struct mdoc_cb *cb)
         p->data = data;          p->data = data;
         (void)memcpy(&p->cb, cb, sizeof(struct mdoc_cb));          (void)memcpy(&p->cb, cb, sizeof(struct mdoc_cb));
   
           p->last = xcalloc(1, sizeof(struct mdoc_node));
           p->last->type = MDOC_ROOT;
           p->first = p->last;
   
           p->next = MDOC_NEXT_CHILD;
         p->htab = mdoc_tokhash_alloc();          p->htab = mdoc_tokhash_alloc();
   
         return(p);          return(p);
 }  }
   
Line 276  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 282  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));                          if ( ! mdoc_word_alloc(mdoc, line, 0, buf))
                 mdoc_word_alloc(mdoc, 0, buf);                                  return(0);
                 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 301  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 314  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 329  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, line, ppos, pos, buf));          return((*mdoc_macros[tok].fp)(mdoc, tok, ln, 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       *on, *ot, *act;
   
         switch (p->type) {          assert(mdoc->last);
         case (MDOC_TEXT):          assert(mdoc->first);
                 nn = p->data.text.string;          assert(MDOC_ROOT != p->type);
                 nt = "text";  
                 break;  
         case (MDOC_BODY):  
                 nn = mdoc_macronames[p->data.body.tok];  
                 nt = "body";  
                 break;  
         case (MDOC_ELEM):  
                 nn = mdoc_macronames[p->data.elem.tok];  
                 nt = "elem";  
                 break;  
         case (MDOC_HEAD):  
                 nn = mdoc_macronames[p->data.head.tok];  
                 nt = "head";  
                 break;  
         case (MDOC_TAIL):  
                 nn = mdoc_macronames[p->data.tail.tok];  
                 nt = "tail";  
                 break;  
         case (MDOC_BLOCK):  
                 nn = mdoc_macronames[p->data.block.tok];  
                 nt = "block";  
                 break;  
         default:  
                 abort();  
                 /* NOTREACHED */  
         }  
   
         if (NULL == mdoc->first) {          if (MDOC_TEXT == mdoc->last->type)
                 assert(NULL == mdoc->last);                  on = "<text>";
                 mdoc->first = p;          else if (MDOC_ROOT == mdoc->last->type)
                 mdoc->last = p;                  on = "<root>";
                 mdoc_msg(mdoc, pos, "parse: root %s `%s'", nt, nn);          else
                 return;                  on = mdoc_macronames[mdoc->last->tok];
         }  
   
           /* FIXME: put this into util.c. */
         switch (mdoc->last->type) {          switch (mdoc->last->type) {
         case (MDOC_TEXT):          case (MDOC_TEXT):
                 on = "<text>";  
                 ot = "text";                  ot = "text";
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
                 on = mdoc_macronames[mdoc->last->data.body.tok];  
                 ot = "body";                  ot = "body";
                 break;                  break;
         case (MDOC_ELEM):          case (MDOC_ELEM):
                 on = mdoc_macronames[mdoc->last->data.elem.tok];  
                 ot = "elem";                  ot = "elem";
                 break;                  break;
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 on = mdoc_macronames[mdoc->last->data.head.tok];  
                 ot = "head";                  ot = "head";
                 break;                  break;
         case (MDOC_TAIL):          case (MDOC_TAIL):
                 on = mdoc_macronames[mdoc->last->data.tail.tok];  
                 ot = "tail";                  ot = "tail";
                 break;                  break;
         case (MDOC_BLOCK):          case (MDOC_BLOCK):
                 on = mdoc_macronames[mdoc->last->data.block.tok];  
                 ot = "block";                  ot = "block";
                 break;                  break;
           case (MDOC_ROOT):
                   ot = "root";
                   break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
Line 470  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 451  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);
   
           switch (p->type) {
           case (MDOC_HEAD):
                   assert(MDOC_BLOCK == p->parent->type);
                   p->parent->data.block.head = p;
                   break;
           case (MDOC_TAIL):
                   assert(MDOC_BLOCK == p->parent->type);
                   p->parent->data.block.tail = p;
                   break;
           case (MDOC_BODY):
                   assert(MDOC_BLOCK == p->parent->type);
                   p->parent->data.block.body = p;
                   break;
           default:
                   break;
           }
   
         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 pos, int tok)  mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
Line 487  mdoc_tail_alloc(struct mdoc *mdoc, int pos, int tok)
Line 489  mdoc_tail_alloc(struct mdoc *mdoc, int pos, int tok)
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_TAIL;          p->type = MDOC_TAIL;
         p->data.tail.tok = tok;          p->tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_head_alloc(struct mdoc *mdoc, 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 504  mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)
Line 508  mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_HEAD;          p->type = MDOC_HEAD;
         p->data.head.tok = tok;          p->tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_body_alloc(struct mdoc *mdoc, 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 521  mdoc_body_alloc(struct mdoc *mdoc, int pos, int tok)
Line 527  mdoc_body_alloc(struct mdoc *mdoc, int pos, int tok)
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_BODY;          p->type = MDOC_BODY;
         p->data.body.tok = tok;          p->tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_block_alloc(struct mdoc *mdoc, int pos, int tok,  mdoc_root_alloc(struct mdoc *mdoc)
                 size_t argsz, const struct mdoc_arg *args)  
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->type = MDOC_ROOT;
   
           return(mdoc_node_append(mdoc, p));
   }
   
   
   int
   mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
                   int tok, size_t argsz, const struct mdoc_arg *args)
   {
           struct mdoc_node *p;
   
           p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->pos = pos;
           p->line = line;
         p->type = MDOC_BLOCK;          p->type = MDOC_BLOCK;
         p->data.block.tok = tok;          p->tok = tok;
         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 pos, int tok,  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
                 size_t argsz, const struct mdoc_arg *args)                  int tok, size_t argsz, const struct mdoc_arg *args)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_ELEM;          p->type = MDOC_ELEM;
         p->data.elem.tok = tok;          p->tok = tok;
         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, int pos, const char *word)  mdoc_word_alloc(struct mdoc *mdoc,
                   int line, int pos, const char *word)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
           p->line = line;
           p->pos = pos;
         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));
 }  }
   
   
Line 669  argcpy(struct mdoc_arg *dst, const struct mdoc_arg *sr
Line 698  argcpy(struct mdoc_arg *dst, const struct mdoc_arg *sr
 {  {
         int              i;          int              i;
   
           dst->line = src->line;
           dst->pos = src->pos;
         dst->arg = src->arg;          dst->arg = src->arg;
         if (0 == (dst->sz = src->sz))          if (0 == (dst->sz = src->sz))
                 return;                  return;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.27

CVSweb