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

Diff for /mandoc/mdoc.c between version 1.15 and 1.47

version 1.15, 2009/01/03 22:10:22 version 1.47, 2009/02/22 22:58:39
Line 26 
Line 26 
   
 #include "private.h"  #include "private.h"
   
   /*
    * Main caller in the libmdoc library.  This begins the parsing routine,
    * handles allocation of data, and so forth.  Most of the "work" is done
    * in macro.c, but this orchestrates who does what, when.
    */
   
 const   char *const __mdoc_macronames[MDOC_MAX] = {  const   char *const __mdoc_macronames[MDOC_MAX] = {
         "\\\"",         "Dd",           "Dt",           "Os",          "\\\"",         "Dd",           "Dt",           "Os",
         "Sh",           "Ss",           "Pp",           "D1",          "Sh",           "Ss",           "Pp",           "D1",
Line 83  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
Line 89  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
         "emphasis",             "symbolic",          "emphasis",             "symbolic",
         };          };
   
   /* Central table of library: who gets parsed how. */
   
 const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {  const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* \" */          { NULL, 0 }, /* \" */
         { NULL, MDOC_PROLOGUE }, /* Dd */          { macro_constant, MDOC_PROLOGUE }, /* Dd */
         { NULL, MDOC_PROLOGUE }, /* Dt */          { macro_constant, MDOC_PROLOGUE }, /* Dt */
         { NULL, 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 */
         { macro_scoped_line, 0 }, /* D1 */          { macro_scoped_line, MDOC_PARSED }, /* D1 */
         { macro_scoped_line, 0 }, /* Dl */          { macro_scoped_line, MDOC_PARSED }, /* Dl */
         { macro_scoped, MDOC_EXPLICIT }, /* Bd */          { macro_scoped, MDOC_EXPLICIT }, /* Bd */
         { macro_close_explicit, 0 }, /* Ed */          { macro_scoped_close, MDOC_EXPLICIT }, /* Ed */
         { macro_scoped, MDOC_EXPLICIT }, /* Bl */          { macro_scoped, MDOC_EXPLICIT }, /* Bl */
         { macro_close_explicit, 0 }, /* El */          { macro_scoped_close, MDOC_EXPLICIT }, /* El */
         { NULL, 0 }, /* It */          { macro_scoped, MDOC_PARSED }, /* It */
         { macro_text, MDOC_CALLABLE }, /* Ad */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ad */
         { macro_constant, 0 }, /* An */          { macro_text, MDOC_PARSED }, /* An */
         { macro_text, MDOC_CALLABLE }, /* Ar */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ar */
         { macro_constant, MDOC_QUOTABLE }, /* Cd */          { macro_constant, 0 }, /* Cd */
         { macro_text, MDOC_CALLABLE }, /* Cm */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Cm */
         { macro_text, MDOC_CALLABLE }, /* Dv */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Dv */
         { macro_text, MDOC_CALLABLE }, /* Er */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Er */
         { macro_text, MDOC_CALLABLE }, /* Ev */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ev */
         { macro_constant, 0 }, /* Ex */          { macro_constant, 0 }, /* Ex */
         { macro_text, MDOC_CALLABLE }, /* Fa */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Fa */
         { macro_constant, 0 }, /* Fd */          { macro_constant, 0 }, /* Fd */
         { macro_text, MDOC_CALLABLE }, /* Fl */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Fl */
         { macro_text, MDOC_CALLABLE | MDOC_QUOTABLE }, /* Fn */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Fn */
         { macro_text, 0 }, /* Ft */          { macro_text, MDOC_PARSED }, /* Ft */
         { macro_text, MDOC_CALLABLE }, /* Ic */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ic */
         { macro_constant, 0 }, /* In */          { macro_constant, 0 }, /* In */
         { macro_text, MDOC_CALLABLE }, /* Li */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Li */
         { macro_constant, 0 }, /* Nd */          { macro_constant, 0 }, /* Nd */
         { NULL, 0 }, /* Nm */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Nm */
         { macro_scoped_line, MDOC_CALLABLE }, /* Op */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Op */
         { macro_obsolete, 0 }, /* Ot */          { macro_obsolete, 0 }, /* Ot */
         { macro_text, MDOC_CALLABLE }, /* Pa */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Pa */
         { macro_constant, 0 }, /* Rv */          { macro_constant, 0 }, /* Rv */
         { macro_constant, 0 }, /* St */          /* XXX - .St supposed to be (but isn't) callable. */
         { macro_text, MDOC_CALLABLE }, /* Va */          { macro_constant_delimited, MDOC_PARSED }, /* St */
         { macro_text, MDOC_CALLABLE }, /* Vt */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Va */
         { macro_text, MDOC_CALLABLE }, /* Xr */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Vt */
         { macro_constant, MDOC_QUOTABLE }, /* %A */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Xr */
         { macro_constant, MDOC_QUOTABLE }, /* %B */          { macro_constant, 0 }, /* %A */
         { macro_constant, MDOC_QUOTABLE }, /* %D */          { macro_constant, 0 }, /* %B */
         { macro_constant, MDOC_QUOTABLE }, /* %I */          { macro_constant, 0 }, /* %D */
         { macro_constant, MDOC_QUOTABLE }, /* %J */          { macro_constant, 0 }, /* %I */
         { macro_constant, MDOC_QUOTABLE }, /* %N */          { macro_constant, 0 }, /* %J */
         { macro_constant, MDOC_QUOTABLE }, /* %O */          { macro_constant, 0 }, /* %N */
         { macro_constant, MDOC_QUOTABLE }, /* %P */          { macro_constant, 0 }, /* %O */
         { macro_constant, MDOC_QUOTABLE }, /* %R */          { macro_constant, 0 }, /* %P */
         { macro_constant, MDOC_QUOTABLE }, /* %T */          { macro_constant, 0 }, /* %R */
         { macro_constant, MDOC_QUOTABLE }, /* %V */          { macro_constant, 0 }, /* %T */
         { NULL, 0 }, /* Ac */          { macro_constant, 0 }, /* %V */
         { NULL, 0 }, /* Ao */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Ac */
         { macro_scoped_line, MDOC_CALLABLE }, /* Aq */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Ao */
         { macro_constant, 0 }, /* At */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Aq */
         { NULL, 0 }, /* Bc */          { macro_constant_delimited, 0 }, /* At */
         { macro_scoped, 0 }, /* Bf */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Bc */
         { NULL, 0 }, /* Bo */          { macro_scoped, MDOC_EXPLICIT }, /* Bf */
         { macro_scoped_line, MDOC_CALLABLE }, /* Bq */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Bo */
         { macro_constant_delimited, 0 }, /* Bsx */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Bq */
         { macro_constant_delimited, 0 }, /* Bx */          { macro_constant_delimited, MDOC_PARSED }, /* Bsx */
           { macro_constant_delimited, MDOC_PARSED }, /* Bx */
         { macro_constant, 0 }, /* Db */          { macro_constant, 0 }, /* Db */
         { NULL, 0 }, /* Dc */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Dc */
         { NULL, 0 }, /* Do */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Do */
         { macro_scoped_line, MDOC_CALLABLE }, /* Dq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Dq */
         { NULL, 0 }, /* Ec */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Ec */
         { macro_close_explicit, 0 }, /* Ef */          { macro_scoped_close, MDOC_EXPLICIT }, /* Ef */
         { macro_text, MDOC_CALLABLE }, /* Em */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Em */
         { NULL, 0 }, /* Eo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Eo */
         { macro_constant_delimited, 0 }, /* Fx */          { macro_constant_delimited, MDOC_PARSED }, /* Fx */
         { macro_text, 0 }, /* Ms */          { macro_text, MDOC_PARSED }, /* Ms */
         { macro_constant_delimited, MDOC_CALLABLE }, /* No */          { macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* No */
         { macro_constant_delimited, MDOC_CALLABLE }, /* Ns */          { macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* Ns */
         { macro_constant_delimited, 0 }, /* Nx */          { macro_constant_delimited, MDOC_PARSED }, /* Nx */
         { macro_constant_delimited, 0 }, /* Ox */          { macro_constant_delimited, MDOC_PARSED }, /* Ox */
         { NULL, 0 }, /* Pc */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Pc */
         { macro_constant, 0 }, /* Pf */          { macro_constant_delimited, MDOC_PARSED }, /* Pf */
         { NULL, 0 }, /* Po */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Po */
         { macro_scoped_line, MDOC_CALLABLE }, /* Pq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Pq */
         { NULL, 0 }, /* Qc */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Qc */
         { macro_scoped_line, MDOC_CALLABLE }, /* Ql */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ql */
         { NULL, 0 }, /* Qo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Qo */
         { macro_scoped_line, MDOC_CALLABLE }, /* Qq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Qq */
         { macro_scoped, MDOC_EXPLICIT }, /* Re */          { macro_scoped_close, MDOC_EXPLICIT }, /* Re */
         { macro_scoped, MDOC_EXPLICIT }, /* Rs */          { macro_scoped, MDOC_EXPLICIT }, /* Rs */
         { NULL, 0 }, /* Sc */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Sc */
         { NULL, 0 }, /* So */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* So */
         { macro_scoped_line, MDOC_CALLABLE }, /* Sq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Sq */
         { macro_constant, 0 }, /* Sm */          { macro_constant, 0 }, /* Sm */
         { macro_text, MDOC_CALLABLE }, /* Sx */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Sx */
         { macro_text, MDOC_CALLABLE }, /* Sy */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Sy */
         { macro_text, MDOC_CALLABLE }, /* Tn */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Tn */
         { macro_constant_delimited, 0 }, /* Ux */          { macro_constant_delimited, MDOC_PARSED }, /* Ux */
         { NULL, 0 }, /* Xc */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Xc */
         { NULL, 0 }, /* Xo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Xo */
         { NULL, 0 }, /* Fo */          /* XXX - .Fo supposed to be (but isn't) callable. */
         { NULL, 0 }, /* Fc */          { macro_scoped, MDOC_EXPLICIT }, /* Fo */
         { NULL, 0 }, /* Oo */          /* XXX - .Fc supposed to be (but isn't) callable. */
         { NULL, 0 }, /* Oc */          { macro_scoped_close, MDOC_EXPLICIT }, /* Fc */
         { NULL, 0 }, /* Bk */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Oo */
         { NULL, 0 }, /* Ek */          { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Oc */
           { macro_scoped, MDOC_EXPLICIT }, /* Bk */
           { macro_scoped_close, MDOC_EXPLICIT }, /* Ek */
         { macro_constant, 0 }, /* Bt */          { macro_constant, 0 }, /* Bt */
         { macro_constant, 0 }, /* Hf */          { macro_constant, 0 }, /* Hf */
         { macro_obsolete, 0 }, /* Fr */          { macro_obsolete, 0 }, /* Fr */
Line 196  const char * const *mdoc_macronames = __mdoc_macroname
Line 207  const char * const *mdoc_macronames = __mdoc_macroname
 const   char * const *mdoc_argnames = __mdoc_argnames;  const   char * const *mdoc_argnames = __mdoc_argnames;
 const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;  const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;
   
   
 static  struct mdoc_arg  *argdup(size_t, const struct mdoc_arg *);  static  struct mdoc_arg  *argdup(size_t, const struct mdoc_arg *);
 static  void              argfree(size_t, struct mdoc_arg *);  static  void              argfree(size_t, struct mdoc_arg *);
 static  void              argcpy(struct mdoc_arg *,  static  void              argcpy(struct mdoc_arg *,
                                 const struct mdoc_arg *);                                  const struct mdoc_arg *);
 static  char            **paramdup(size_t, const char **);  
 static  void              paramfree(size_t, char **);  
   
 static  void              mdoc_node_freelist(struct mdoc_node *);  static  struct mdoc_node *mdoc_node_alloc(const struct mdoc *);
 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 *);
   
   
   
 const struct mdoc_node *  const struct mdoc_node *
 mdoc_result(struct mdoc *mdoc)  mdoc_node(const struct mdoc *mdoc)
 {  {
   
         return(mdoc->first);          return(mdoc->first);
 }  }
   
   
   const struct mdoc_meta *
   mdoc_meta(const struct mdoc *mdoc)
   {
   
           return(&mdoc->meta);
   }
   
   
 void  void
 mdoc_free(struct mdoc *mdoc)  mdoc_free(struct mdoc *mdoc)
 {  {
Line 227  mdoc_free(struct mdoc *mdoc)
Line 244  mdoc_free(struct mdoc *mdoc)
                 mdoc_node_freelist(mdoc->first);                  mdoc_node_freelist(mdoc->first);
         if (mdoc->htab)          if (mdoc->htab)
                 mdoc_tokhash_free(mdoc->htab);                  mdoc_tokhash_free(mdoc->htab);
           if (mdoc->meta.title)
                   free(mdoc->meta.title);
           if (mdoc->meta.os)
                   free(mdoc->meta.os);
           if (mdoc->meta.name)
                   free(mdoc->meta.name);
   
         free(mdoc);          free(mdoc);
 }  }
   
Line 240  mdoc_alloc(void *data, const struct mdoc_cb *cb)
Line 263  mdoc_alloc(void *data, const struct mdoc_cb *cb)
         p = xcalloc(1, sizeof(struct mdoc));          p = xcalloc(1, sizeof(struct mdoc));
   
         p->data = data;          p->data = data;
         (void)memcpy(&p->cb, cb, sizeof(struct mdoc_cb));          if (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);
 }  }
   
   
 int  int
 mdoc_parseln(struct mdoc *mdoc, char *buf)  mdoc_endparse(struct mdoc *mdoc)
 {  {
   
           if (MDOC_HALT & mdoc->flags)
                   return(0);
           if (NULL == mdoc->first)
                   return(1);
   
           assert(mdoc->last);
           if ( ! macro_end(mdoc)) {
                   mdoc->flags |= MDOC_HALT;
                   return(0);
           }
           return(1);
   }
   
   
   int
   mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
   {
         int               c, i;          int               c, i;
         char              tmp[5];          char              tmp[5];
   
           if (MDOC_HALT & mdoc->flags)
                   return(0);
   
           mdoc->linetok = 0;
   
         if ('.' != *buf) {          if ('.' != *buf) {
                 mdoc_word_alloc(mdoc, 0, buf);                  if (SEC_PROLOGUE == mdoc->lastnamed)
                           return(mdoc_perr(mdoc, line, 0, "text disallowed in document prologue"));
                   if ( ! mdoc_word_alloc(mdoc, line, 0, buf))
                           return(0);
                 mdoc->next = MDOC_NEXT_SIBLING;                  mdoc->next = MDOC_NEXT_SIBLING;
                 return(1);                  return(1);
         }          }
Line 264  mdoc_parseln(struct mdoc *mdoc, char *buf)
Line 320  mdoc_parseln(struct mdoc *mdoc, char *buf)
                         return(1);                          return(1);
   
         i = 1;          i = 1;
         while (buf[i] && ! isspace(buf[i]) && i < (int)sizeof(tmp))          while (buf[i] && ! isspace((int)buf[i]) && i < (int)sizeof(tmp))
                 i++;                  i++;
   
         if (i == (int)sizeof(tmp))          if (i == (int)sizeof(tmp)) {
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));                  mdoc->flags |= MDOC_HALT;
         else if (i <= 2)                  return(mdoc_perr(mdoc, line, 1, "unknown macro"));
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));          } else if (i <= 2) {
                   mdoc->flags |= MDOC_HALT;
                   return(mdoc_perr(mdoc, line, 1, "unknown macro"));
           }
   
         i--;          i--;
   
         (void)memcpy(tmp, buf + 1, (size_t)i);          (void)memcpy(tmp, buf + 1, (size_t)i);
         tmp[i++] = 0;          tmp[i++] = 0;
   
         if (MDOC_MAX == (c = mdoc_find(mdoc, tmp)))          if (MDOC_MAX == (c = mdoc_find(mdoc, tmp))) {
                 return(mdoc_err(mdoc, c, 1, ERR_MACRO_NOTSUP));                  mdoc->flags |= MDOC_HALT;
                   return(mdoc_perr(mdoc, line, 1, "unknown macro"));
           }
   
         while (buf[i] && isspace(buf[i]))          while (buf[i] && isspace((int)buf[i]))
                 i++;                  i++;
   
         return(mdoc_macro(mdoc, c, 1, &i, buf));          if ( ! mdoc_macro(mdoc, c, line, 1, &i, buf)) {
                   mdoc->flags |= MDOC_HALT;
                   return(0);
           }
           return(1);
 }  }
   
   
 void  void
 mdoc_msg(struct mdoc *mdoc, int pos, const char *fmt, ...)  mdoc_vmsg(struct mdoc *mdoc, int ln, int pos, const char *fmt, ...)
 {  {
         va_list          ap;          char              buf[256];
         char             buf[256];          va_list           ap;
   
         if (NULL == mdoc->cb.mdoc_msg)          if (NULL == mdoc->cb.mdoc_msg)
                 return;                  return;
   
         va_start(ap, fmt);          va_start(ap, fmt);
         (void)vsnprintf(buf, sizeof(buf), fmt, ap);          (void)vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
         va_end(ap);          va_end(ap);
           (*mdoc->cb.mdoc_msg)(mdoc->data, ln, pos, buf);
         (*mdoc->cb.mdoc_msg)(mdoc->data, pos, buf);  
 }  }
   
   
 int  int
 mdoc_err(struct mdoc *mdoc, int tok, int pos, enum mdoc_err type)  mdoc_verr(struct mdoc *mdoc, int ln, int pos,
                   const char *fmt, ...)
 {  {
           char             buf[256];
           va_list          ap;
   
         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));  
           va_start(ap, fmt);
           (void)vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
           va_end(ap);
           return((*mdoc->cb.mdoc_err)(mdoc->data, ln, pos, buf));
 }  }
   
   
 int  int
 mdoc_warn(struct mdoc *mdoc, int tok, int pos, enum mdoc_warn type)  mdoc_vwarn(struct mdoc *mdoc, int ln, int pos,
                   enum mdoc_warn type, const char *fmt, ...)
 {  {
           char             buf[256];
           va_list          ap;
   
         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));  
           va_start(ap, fmt);
           (void)vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
           va_end(ap);
           return((*mdoc->cb.mdoc_warn)(mdoc->data, ln, pos, type, buf));
 }  }
   
   
 int  int
 mdoc_macro(struct mdoc *mdoc, int tok, int ppos, int *pos, char *buf)  mdoc_macro(struct mdoc *mdoc, int tok,
                   int ln, int ppos, int *pos, char *buf)
 {  {
   
         if (MDOC_PROLOGUE & mdoc_macros[tok].flags &&          assert(mdoc_macros[tok].fp);
                         SEC_PROLOGUE == mdoc->sec_lastn)  
                 return(macro_prologue(mdoc, tok, ppos, pos, buf));  
   
         if (SEC_PROLOGUE == mdoc->sec_lastn)  
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));  
   
         if (NULL == (mdoc_macros[tok].fp)) {          if (MDOC_PROLOGUE & mdoc_macros[tok].flags &&
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTSUP);                          SEC_PROLOGUE != mdoc->lastnamed)
                 return(0);                  return(mdoc_perr(mdoc, ln, ppos, "macro disallowed in document body"));
         }          if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&
                           SEC_PROLOGUE == mdoc->lastnamed)
         if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags)) {                  return(mdoc_perr(mdoc, ln, ppos, "macro disallowed in document prologue"));
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTCALL);          if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))
                 return(0);                  return(mdoc_perr(mdoc, ln, ppos, "macro not callable"));
         }          return((*mdoc_macros[tok].fp)(mdoc, tok, ln, ppos, pos, buf));
   
         return((*mdoc_macros[tok].fp)(mdoc, tok, 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, *nt, *on, *ot, *act;
   
           assert(mdoc->last);
           assert(mdoc->first);
           assert(MDOC_ROOT != p->type);
   
           /* See if we exceed the suggest line-max. */
   
         switch (p->type) {          switch (p->type) {
         case (MDOC_TEXT):          case (MDOC_TEXT):
                 nn = p->data.text.string;                  /* FALLTHROUGH */
                 nt = "text";  
                 break;  
         case (MDOC_BODY):  
                 nn = mdoc_macronames[p->data.body.tok];  
                 nt = "body";  
                 break;  
         case (MDOC_ELEM):          case (MDOC_ELEM):
                 nn = mdoc_macronames[p->data.elem.tok];                  /* FALLTHROUGH */
                 nt = "elem";  
                 break;  
         case (MDOC_HEAD):  
                 nn = mdoc_macronames[p->data.head.tok];  
                 nt = "head";  
                 break;  
         case (MDOC_BLOCK):          case (MDOC_BLOCK):
                 nn = mdoc_macronames[p->data.block.tok];                  mdoc->linetok++;
                 nt = "block";  
                 break;                  break;
         default:          default:
                 abort();                  break;
                 /* NOTREACHED */  
         }          }
   
         if (NULL == mdoc->first) {          /* This sort-of works (re-opening of text macros...). */
                 assert(NULL == mdoc->last);          if (mdoc->linetok > MDOC_LINEARG_SOFTMAX)
                 mdoc->first = p;                  if ( ! mdoc_nwarn(mdoc, p, WARN_COMPAT,
                 mdoc->last = p;                                          "suggested %d tokens per line exceeded (has %d)",
                 mdoc_msg(mdoc, pos, "parse: root %s `%s'", nt, nn);                                          MDOC_LINEARG_SOFTMAX, mdoc->linetok))
                 return;                          return(0);
         }  
   
         switch (mdoc->last->type) {          if (MDOC_TEXT == mdoc->last->type)
         case (MDOC_TEXT):  
                 on = "<text>";                  on = "<text>";
                 ot = "text";          else if (MDOC_ROOT == mdoc->last->type)
                 break;                  on = "<root>";
         case (MDOC_BODY):          else
                 on = mdoc_macronames[mdoc->last->data.body.tok];                  on = mdoc_macronames[mdoc->last->tok];
                 ot = "body";  
                 break;  
         case (MDOC_ELEM):  
                 on = mdoc_macronames[mdoc->last->data.elem.tok];  
                 ot = "elem";  
                 break;  
         case (MDOC_HEAD):  
                 on = mdoc_macronames[mdoc->last->data.head.tok];  
                 ot = "head";  
                 break;  
         case (MDOC_BLOCK):  
                 on = mdoc_macronames[mdoc->last->data.block.tok];  
                 ot = "block";  
                 break;  
         default:  
                 abort();  
                 /* NOTREACHED */  
         }  
   
           if (MDOC_TEXT == p->type)
                   nn = "<text>";
           else if (MDOC_ROOT == p->type)
                   nn = "<root>";
           else
                   nn = mdoc_macronames[p->tok];
   
           ot = mdoc_type2a(mdoc->last->type);
           nt = mdoc_type2a(p->type);
   
         switch (mdoc->next) {          switch (mdoc->next) {
         case (MDOC_NEXT_SIBLING):          case (MDOC_NEXT_SIBLING):
                 mdoc->last->next = p;                  mdoc->last->next = p;
Line 431  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 485  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);
   
           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 `%s' %s of %s `%s'",
                           nt, nn, act, ot, on);
           return(1);
 }  }
   
   
 void  static struct mdoc_node *
 mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)  mdoc_node_alloc(const struct mdoc *mdoc)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
           p = xcalloc(1, sizeof(struct mdoc_node));
           p->sec = mdoc->lastsec;
   
           return(p);
   }
   
   
   int
   mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, int tok)
   {
           struct mdoc_node *p;
   
         assert(mdoc->first);          assert(mdoc->first);
         assert(mdoc->last);          assert(mdoc->last);
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = mdoc_node_alloc(mdoc);
   
           p->line = line;
           p->pos = pos;
           p->type = MDOC_TAIL;
           p->tok = tok;
   
           return(mdoc_node_append(mdoc, p));
   }
   
   
   int
   mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, int tok)
   {
           struct mdoc_node *p;
   
           assert(mdoc->first);
           assert(mdoc->last);
   
           p = mdoc_node_alloc(mdoc);
   
           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;
   
         assert(mdoc->first);          assert(mdoc->first);
         assert(mdoc->last);          assert(mdoc->last);
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = mdoc_node_alloc(mdoc);
   
           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 = mdoc_node_alloc(mdoc);
   
           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 = mdoc_node_alloc(mdoc);
   
           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 = mdoc_node_alloc(mdoc);
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_ELEM;          p->type = MDOC_ELEM;
         p->data.elem.tok = tok;          p->tok = tok;
         /* FIXME: freeing of params... */  
         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 = mdoc_node_alloc(mdoc);
   
           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 535  argfree(size_t sz, struct mdoc_arg *p)
Line 665  argfree(size_t sz, struct mdoc_arg *p)
                         /* LINTED */                          /* LINTED */
                         for (j = 0; j < (int)p[i].sz; j++)                          for (j = 0; j < (int)p[i].sz; j++)
                                 free(p[i].value[j]);                                  free(p[i].value[j]);
                           free(p[i].value);
                 }                  }
         free(p);          free(p);
 }  }
Line 544  static void
Line 675  static void
 mdoc_elem_free(struct mdoc_elem *p)  mdoc_elem_free(struct mdoc_elem *p)
 {  {
   
         paramfree(p->sz, p->args);  
         argfree(p->argc, p->argv);          argfree(p->argc, p->argv);
 }  }
   
Line 588  mdoc_node_free(struct mdoc_node *p)
Line 718  mdoc_node_free(struct mdoc_node *p)
 }  }
   
   
 static void  void
 mdoc_node_freelist(struct mdoc_node *p)  mdoc_node_freelist(struct mdoc_node *p)
 {  {
   
Line 614  argcpy(struct mdoc_arg *dst, const struct mdoc_arg *sr
Line 744  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;
Line 640  argdup(size_t argsz, const struct mdoc_arg *args)
Line 772  argdup(size_t argsz, const struct mdoc_arg *args)
 }  }
   
   
 static void  /* FIXME: deprecate. */
 paramfree(size_t sz, char **p)  char *
   mdoc_node2a(struct mdoc_node *node)
 {  {
         int              i;          static char      buf[64];
   
         if (0 == sz)          assert(node);
                 return;  
   
         assert(p);          buf[0] = 0;
         /* LINTED */          (void)xstrlcat(buf, mdoc_type2a(node->type), 64);
         for (i = 0; i < (int)sz; i++)          if (MDOC_ROOT == node->type)
                 free(p[i]);                  return(buf);
         free(p);          (void)xstrlcat(buf, " `", 64);
           if (MDOC_TEXT == node->type)
                   (void)xstrlcat(buf, node->data.text.string, 64);
           else
                   (void)xstrlcat(buf, mdoc_macronames[node->tok], 64);
           (void)xstrlcat(buf, "'", 64);
   
           return(buf);
 }  }
   
   
 static char **  
 paramdup(size_t sz, const char **p)  
 {  
         char            **pp;  
         int               i;  
   
         if (0 == sz)  
                 return(NULL);  
   
         pp = xcalloc(sz, sizeof(char *));  
         for (i = 0; i < (int)sz; i++)  
                 pp[i] = xstrdup(p[i]);  
   
         return(pp);  
 }  

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.47

CVSweb