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

Diff for /mandoc/mdoc.c between version 1.5 and 1.68

version 1.5, 2008/12/28 00:34:20 version 1.68, 2009/03/20 15:14:01
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@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   * purpose with or without fee is hereby granted, provided that the
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, validate.c and action.c.
    */
   
   static  struct mdoc_node *mdoc_node_alloc(const struct mdoc *);
   static  int               mdoc_node_append(struct mdoc *,
                                   struct mdoc_node *);
   
   static  int               parsetext(struct mdoc *, int, char *);
   static  int               parsemacro(struct mdoc *, int, char *);
   static  int               macrowarn(struct mdoc *, int, const char *);
   
   
 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 56  const char *const __mdoc_macronames[MDOC_MAX] = {   
Line 71  const char *const __mdoc_macronames[MDOC_MAX] = {   
         "Tn",           "Ux",           "Xc",           "Xo",          "Tn",           "Ux",           "Xc",           "Xo",
         "Fo",           "Fc",           "Oo",           "Oc",          "Fo",           "Fc",           "Oo",           "Oc",
         "Bk",           "Ek",           "Bt",           "Hf",          "Bk",           "Ek",           "Bt",           "Hf",
         "Fr",           "Ud",          "Fr",           "Ud",           "Lb",           "Ap",
           "Lp",           "Lk",           "Mt",           "Brq",
           /* LINTED */
           "Bro",          "Brc",          "\%C",          "Es",
           "En",           "Dx"
         };          };
   
 const   char *const __mdoc_argnames[MDOC_ARG_MAX] = {  const   char *const __mdoc_argnames[MDOC_ARG_MAX] = {
Line 67  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
Line 86  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
         "tag",                  "diag",                 "hang",          "tag",                  "diag",                 "hang",
         "ohang",                "inset",                "column",          "ohang",                "inset",                "column",
         "width",                "compact",              "std",          "width",                "compact",              "std",
         "p1003.1-88",           "p1003.1-90",           "p1003.1-96",          "filled",               "words",                "emphasis",
         "p1003.1-2001",         "p1003.1-2004",         "p1003.1",          "symbolic",             "nested"
         "p1003.1b",             "p1003.1b-93",          "p1003.1c-95",  
         "p1003.1g-2000",        "p1003.2-92",           "p1387.2-95",  
         "p1003.2",              "p1387.2",              "isoC-90",  
         "isoC-amd1",            "isoC-tcor1",           "isoC-tcor2",  
         "isoC-99",              "ansiC",                "ansiC-89",  
         "ansiC-99",             "ieee754",              "iso8802-3",  
         "xpg3",                 "xpg4",                 "xpg4.2",  
         "xpg4.3",               "xbd5",                 "xcu5",  
         "xsh5",                 "xns5",                 "xns5.2d2.0",  
         "xcurses4.2",           "susv2",                "susv3",  
         "svid4",                "filled",               "words",  
         };          };
   
 const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {  
         { NULL, 0 }, /* \" */  
         { macro_prologue_ddate, 0 }, /* Dd */  
         { macro_prologue_dtitle, 0 }, /* Dt */  
         { macro_prologue_os, 0 }, /* Os */  
         { macro_scoped_implicit, 0 }, /* Sh */  
         { macro_scoped_implicit, 0 }, /* Ss */  
         { macro_text, 0 }, /* Pp */  
         { NULL, 0 }, /* D1 */  
         { NULL, 0 }, /* Dl */  
         { macro_scoped_explicit, MDOC_EXPLICIT }, /* Bd */  
         { macro_scoped_explicit, 0 }, /* Ed */  
         { macro_scoped_explicit, MDOC_EXPLICIT }, /* Bl */  
         { macro_scoped_explicit, 0 }, /* El */  
         { NULL, 0 }, /* It */  
         { macro_text, MDOC_CALLABLE }, /* Ad */  
         { NULL, 0 }, /* An */  
         { macro_text, MDOC_CALLABLE }, /* Ar */  
         { NULL, 0 }, /* Cd */  
         { macro_text, MDOC_CALLABLE }, /* Cm */  
         { macro_text, MDOC_CALLABLE }, /* Dv */  
         { macro_text, MDOC_CALLABLE }, /* Er */  
         { macro_text, MDOC_CALLABLE }, /* Ev */  
         { NULL, 0 }, /* Ex */  
         { macro_text, MDOC_CALLABLE }, /* Fa */  
         { NULL, 0 }, /* Fd */  
         { macro_text, MDOC_CALLABLE }, /* Fl */  
         { NULL, 0 }, /* Fn */  
         { macro_text, 0 }, /* Ft */  
         { macro_text, MDOC_CALLABLE }, /* Ic */  
         { NULL, 0 }, /* In */  
         { macro_text, MDOC_CALLABLE }, /* Li */  
         { NULL, 0 }, /* Nd */  
         { NULL, 0 }, /* Nm */  
         { NULL, 0 }, /* Op */  
         { NULL, 0 }, /* Ot */  
         { macro_text, MDOC_CALLABLE }, /* Pa */  
         { NULL, 0 }, /* Rv */  
         { NULL, 0 }, /* St */  
         { macro_text, MDOC_CALLABLE }, /* Va */  
         { macro_text, MDOC_CALLABLE }, /* Vt */  
         { NULL, 0 }, /* Xr */  
         { NULL, 0 }, /* %A */  
         { NULL, 0 }, /* %B */  
         { NULL, 0 }, /* %D */  
         { NULL, 0 }, /* %I */  
         { NULL, 0 }, /* %J */  
         { NULL, 0 }, /* %N */  
         { NULL, 0 }, /* %O */  
         { NULL, 0 }, /* %P */  
         { NULL, 0 }, /* %R */  
         { NULL, 0 }, /* %T */  
         { NULL, 0 }, /* %V */  
         { NULL, 0 }, /* Ac */  
         { NULL, 0 }, /* Ao */  
         { NULL, 0 }, /* Aq */  
         { NULL, 0 }, /* At */  
         { NULL, 0 }, /* Bc */  
         { NULL, 0 }, /* Bf */  
         { NULL, 0 }, /* Bo */  
         { NULL, 0 }, /* Bq */  
         { NULL, 0 }, /* Bsx */  
         { NULL, 0 }, /* Bx */  
         { NULL, 0 }, /* Db */  
         { NULL, 0 }, /* Dc */  
         { NULL, 0 }, /* Do */  
         { NULL, 0 }, /* Dq */  
         { NULL, 0 }, /* Ec */  
         { NULL, 0 }, /* Ef */  
         { macro_text, MDOC_CALLABLE }, /* Em */  
         { NULL, 0 }, /* Eo */  
         { NULL, 0 }, /* Fx */  
         { macro_text, 0 }, /* Ms */  
         { NULL, 0 }, /* No */  
         { NULL, 0 }, /* Ns */  
         { NULL, 0 }, /* Nx */  
         { NULL, 0 }, /* Ox */  
         { NULL, 0 }, /* Pc */  
         { NULL, 0 }, /* Pf */  
         { NULL, 0 }, /* Po */  
         { NULL, 0 }, /* Pq */  
         { NULL, 0 }, /* Qc */  
         { NULL, 0 }, /* Ql */  
         { NULL, 0 }, /* Qo */  
         { NULL, 0 }, /* Qq */  
         { NULL, 0 }, /* Re */  
         { NULL, 0 }, /* Rs */  
         { NULL, 0 }, /* Sc */  
         { NULL, 0 }, /* So */  
         { NULL, 0 }, /* Sq */  
         { NULL, 0 }, /* Sm */  
         { NULL, 0 }, /* Sx */  
         { NULL, 0 }, /* Sy */  
         { macro_text, MDOC_CALLABLE }, /* Tn */  
         { NULL, 0 }, /* Ux */  
         { NULL, 0 }, /* Xc */  
         { NULL, 0 }, /* Xo */  
         { NULL, 0 }, /* Fo */  
         { NULL, 0 }, /* Fc */  
         { NULL, 0 }, /* Oo */  
         { NULL, 0 }, /* Oc */  
         { NULL, 0 }, /* Bk */  
         { NULL, 0 }, /* Ek */  
         { NULL, 0 }, /* Bt */  
         { NULL, 0 }, /* Hf */  
         { NULL, 0 }, /* Fr */  
         { NULL, 0 }, /* Ud */  
 };  
   
 const   char * const *mdoc_macronames = __mdoc_macronames;  const   char * const *mdoc_macronames = __mdoc_macronames;
 const   char * const *mdoc_argnames = __mdoc_argnames;  const   char * const *mdoc_argnames = __mdoc_argnames;
 const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;  
   
   
 static  struct mdoc_arg  *argdup(size_t, const struct mdoc_arg *);  /*
 static  void              argfree(size_t, struct mdoc_arg *);   * Get the first (root) node of the parse tree.
 static  void              argcpy(struct mdoc_arg *,   */
                                 const struct mdoc_arg *);  const struct mdoc_node *
 static  char            **paramdup(size_t, const char **);  mdoc_node(const struct mdoc *mdoc)
 static  void              paramfree(size_t, char **);  {
   
 static  void              mdoc_node_freelist(struct mdoc_node *);          if (MDOC_HALT & mdoc->flags)
 static  void              mdoc_node_append(struct mdoc *, int,                  return(NULL);
                                 struct mdoc_node *);          if (mdoc->first)
 static  void              mdoc_elem_free(struct mdoc_elem *);                  assert(MDOC_ROOT == mdoc->first->type);
 static  void              mdoc_text_free(struct mdoc_text *);          return(mdoc->first);
   }
   
   
 const struct mdoc_node *  const struct mdoc_meta *
 mdoc_result(struct mdoc *mdoc)  mdoc_meta(const struct mdoc *mdoc)
 {  {
   
         return(mdoc->first);          if (MDOC_HALT & mdoc->flags)
                   return(NULL);
           return(&mdoc->meta);
 }  }
   
   
   /*
    * Free up all resources contributed by a parse:  the node tree, meta-data and
    * so on.  Then reallocate the root node for another parse.
    */
 void  void
   mdoc_reset(struct mdoc *mdoc)
   {
   
           if (mdoc->first)
                   mdoc_node_freelist(mdoc->first);
           if (mdoc->meta.title)
                   free(mdoc->meta.title);
           if (mdoc->meta.os)
                   free(mdoc->meta.os);
           if (mdoc->meta.name)
                   free(mdoc->meta.name);
           if (mdoc->meta.arch)
                   free(mdoc->meta.arch);
           if (mdoc->meta.vol)
                   free(mdoc->meta.vol);
   
           bzero(&mdoc->meta, sizeof(struct mdoc_meta));
           mdoc->flags = 0;
           mdoc->lastnamed = mdoc->lastsec = 0;
   
           mdoc->first = mdoc->last =
                   xcalloc(1, sizeof(struct mdoc_node));
           mdoc->last->type = MDOC_ROOT;
           mdoc->next = MDOC_NEXT_CHILD;
   }
   
   
   /*
    * Completely free up all resources.
    */
   void
 mdoc_free(struct mdoc *mdoc)  mdoc_free(struct mdoc *mdoc)
 {  {
   
         if (mdoc->first)          if (mdoc->first)
                 mdoc_node_freelist(mdoc->first);                  mdoc_node_freelist(mdoc->first);
           if (mdoc->meta.title)
                   free(mdoc->meta.title);
           if (mdoc->meta.os)
                   free(mdoc->meta.os);
           if (mdoc->meta.name)
                   free(mdoc->meta.name);
           if (mdoc->meta.arch)
                   free(mdoc->meta.arch);
           if (mdoc->meta.vol)
                   free(mdoc->meta.vol);
   
         if (mdoc->htab)          if (mdoc->htab)
                 mdoc_tokhash_free(mdoc->htab);                  mdoc_tokhash_free(mdoc->htab);
   
         free(mdoc);          free(mdoc);
 }  }
   
   
 struct mdoc *  struct mdoc *
 mdoc_alloc(void *data, const struct mdoc_cb *cb)  mdoc_alloc(void *data, int pflags, const struct mdoc_cb *cb)
 {  {
         struct mdoc     *p;          struct mdoc     *p;
   
         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 = p->first =
                   xcalloc(1, sizeof(struct mdoc_node));
           p->last->type = MDOC_ROOT;
           p->pflags = pflags;
           p->next = MDOC_NEXT_CHILD;
         p->htab = mdoc_tokhash_alloc();          p->htab = mdoc_tokhash_alloc();
         return(p);          return(p);
 }  }
   
   
   /*
    * Climb back up the parse tree, validating open scopes.  Mostly calls
    * through to macro_end in macro.c.
    */
 int  int
 mdoc_parseln(struct mdoc *mdoc, char *buf)  mdoc_endparse(struct mdoc *mdoc)
 {  {
         int               c, i;  
         char              tmp[5];  
   
         if ('.' != *buf) {          if (MDOC_HALT & mdoc->flags)
                 mdoc_word_alloc(mdoc, 0, buf);                  return(0);
           if (NULL == mdoc->first)
                 return(1);                  return(1);
   
           assert(mdoc->last);
           if ( ! macro_end(mdoc)) {
                   mdoc->flags |= MDOC_HALT;
                   return(0);
         }          }
           return(1);
   }
   
         if (buf[1] && '\\' == buf[1])  
                 if (buf[2] && '\"' == buf[2])  
                         return(1);  
   
         i = 1;  /*
         while (buf[i] && ! isspace(buf[i]) && i < (int)sizeof(tmp))   * Main parse routine.  Parses a single line -- really just hands off to
                 i++;   * the macro or text parser.
    */
   int
   mdoc_parseln(struct mdoc *m, int ln, char *buf)
   {
   
         if (i == (int)sizeof(tmp))          /* If in error-mode, then we parse no more. */
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));  
         else if (i <= 2)  
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));  
   
         i--;          if (MDOC_HALT & m->flags)
                   return(0);
   
         (void)memcpy(tmp, buf + 1, (size_t)i);          return('.' == *buf ? parsemacro(m, ln, buf) :
         tmp[i++] = 0;                          parsetext(m, ln, buf));
   
         if (MDOC_MAX == (c = mdoc_find(mdoc, tmp)))  
                 return(mdoc_err(mdoc, c, 1, ERR_MACRO_NOTSUP));  
   
         while (buf[i] && isspace(buf[i]))  
                 i++;  
   
         return(mdoc_macro(mdoc, c, 1, &i, buf));  
 }  }
   
   
 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 *m, int tok,
                   int ln, int pp, int *pos, char *buf)
 {  {
   
         if (NULL == (mdoc_macros[tok].fp)) {          /* FIXME - these should happen during validation. */
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTSUP);  
                 return(0);  
         }  
   
         if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags)) {          if (MDOC_PROLOGUE & mdoc_macros[tok].flags &&
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTCALL);                          SEC_PROLOGUE != m->lastnamed)
                 return(0);                  return(mdoc_perr(m, ln, pp,
         }                                  "disallowed in document body"));
   
         return((*mdoc_macros[tok].fp)(mdoc, tok, ppos, pos, buf));          if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&
                           SEC_PROLOGUE == m->lastnamed)
                   return(mdoc_perr(m, ln, pp,
                                   "disallowed in prologue"));
   
           if (1 != pp && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))
                   return(mdoc_perr(m, ln, pp, "%s not callable",
                                           mdoc_macronames[tok]));
   
           return((*mdoc_macros[tok].fp)(m, tok, ln, pp, 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;  
   
         switch (p->type) {          assert(mdoc->last);
         case (MDOC_TEXT):          assert(mdoc->first);
                 nn = p->data.text.string;          assert(MDOC_ROOT != p->type);
                 nt = "text";  
           switch (mdoc->next) {
           case (MDOC_NEXT_SIBLING):
                   mdoc->last->next = p;
                   p->prev = mdoc->last;
                   p->parent = mdoc->last->parent;
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_NEXT_CHILD):
                 nn = mdoc_macronames[p->data.body.tok];                  mdoc->last->child = p;
                 nt = "body";                  p->parent = mdoc->last;
                 break;                  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_BLOCK):  
                 nn = mdoc_macronames[p->data.block.tok];  
                 nt = "block";  
                 break;  
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         if (NULL == mdoc->first) {          if ( ! mdoc_valid_pre(mdoc, p))
                 assert(NULL == mdoc->last);                  return(0);
                 mdoc->first = p;          if ( ! mdoc_action_pre(mdoc, p))
                 mdoc->last = p;                  return(0);
                 mdoc_msg(mdoc, pos, "parse: root %s `%s'", nt, nn);  
                 return;  
         }  
   
         switch (mdoc->last->type) {          switch (p->type) {
         case (MDOC_TEXT):  
                 on = "<text>";  
                 ot = "text";  
                 break;  
         case (MDOC_BODY):  
                 on = mdoc_macronames[mdoc->last->data.body.tok];  
                 ot = "body";  
                 break;  
         case (MDOC_ELEM):  
                 on = mdoc_macronames[mdoc->last->data.elem.tok];  
                 ot = "elem";  
                 break;  
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 on = mdoc_macronames[mdoc->last->data.head.tok];                  assert(MDOC_BLOCK == p->parent->type);
                 ot = "head";                  p->parent->head = p;
                 break;                  break;
         case (MDOC_BLOCK):          case (MDOC_TAIL):
                 on = mdoc_macronames[mdoc->last->data.block.tok];                  assert(MDOC_BLOCK == p->parent->type);
                 ot = "block";                  p->parent->tail = p;
                 break;                  break;
         default:  
                 abort();  
                 /* NOTREACHED */  
         }  
   
         switch (p->type) {  
         case (MDOC_BODY):          case (MDOC_BODY):
                 switch (mdoc->last->type) {                  assert(MDOC_BLOCK == p->parent->type);
                 case (MDOC_BLOCK):                  p->parent->body = p;
                         p->parent = mdoc->last;  
                         mdoc->last->child = p;  
                         act = "child";  
                         break;  
                 case (MDOC_HEAD):  
                         p->parent = mdoc->last->parent;  
                         mdoc->last->next = p;  
                         p->prev = mdoc->last;  
                         act = "sibling";  
                         break;  
                 default:  
                         abort();  
                         /* NOTREACHED */  
                 }  
                 break;                  break;
         case (MDOC_HEAD):  
                 assert(mdoc->last->type == MDOC_BLOCK);  
                 p->parent = mdoc->last;  
                 mdoc->last->child = p;  
                 act = "child";  
                 break;  
         default:          default:
                 switch (mdoc->last->type) {  
                 case (MDOC_BODY):  
                         /* FALLTHROUGH */  
                 case (MDOC_HEAD):  
                         p->parent = mdoc->last->parent;  
                         mdoc->last->child = p;  
                         act = "child";  
                         break;  
                 default:  
                         p->parent = mdoc->last->parent;  
                         p->prev = mdoc->last;  
                         mdoc->last->next = p;  
                         act = "sibling";  
                         break;  
                 }  
                 break;                  break;
         }          }
   
         mdoc_msg(mdoc, pos, "parse: %s `%s' %s %s `%s'",  
                         nt, nn, act, ot, on);  
         mdoc->last = p;          mdoc->last = p;
           return(1);
 }  }
   
   
 void  static struct mdoc_node *
 mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok,  mdoc_node_alloc(const struct mdoc *mdoc)
                 size_t paramsz, const char **params)  
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         assert(mdoc->first);  
         assert(mdoc->last);  
         assert(mdoc->last->type == MDOC_BLOCK);  
         assert(mdoc->last->data.block.tok == tok);  
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
         p->type = MDOC_HEAD;          p->sec = mdoc->lastsec;
         p->data.head.tok = tok;  
         p->data.head.sz = paramsz;  
         p->data.head.args = paramdup(paramsz, params);  
   
         mdoc_node_append(mdoc, pos, p);          return(p);
 }  }
   
   
 void  int
 mdoc_body_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;
   
         assert(mdoc->first);          assert(mdoc->first);
         assert(mdoc->last);          assert(mdoc->last);
         assert((mdoc->last->type == MDOC_BLOCK) ||  
                         (mdoc->last->type == MDOC_HEAD));  
         if (mdoc->last->type == MDOC_BLOCK)  
                 assert(mdoc->last->data.block.tok == tok);  
         else  
                 assert(mdoc->last->data.head.tok == tok);  
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = mdoc_node_alloc(mdoc);
   
         p->type = MDOC_BODY;          p->line = line;
         p->data.body.tok = tok;          p->pos = pos;
           p->type = MDOC_TAIL;
           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_head_alloc(struct mdoc *mdoc, int line, int pos, 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));          assert(mdoc->first);
           assert(mdoc->last);
   
         p->type = MDOC_BLOCK;          p = mdoc_node_alloc(mdoc);
         p->data.block.tok = tok;  
         p->data.block.argc = argsz;  
         p->data.block.argv = argdup(argsz, args);  
   
         mdoc_node_append(mdoc, pos, p);          p->line = line;
           p->pos = pos;
           p->type = MDOC_HEAD;
           p->tok = tok;
   
           return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_elem_alloc(struct mdoc *mdoc, int pos, int tok,  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, int tok)
                 size_t argsz, const struct mdoc_arg *args,  
                 size_t paramsz, const char **params)  
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          assert(mdoc->first);
         p->type = MDOC_ELEM;          assert(mdoc->last);
         p->data.elem.tok = tok;  
         p->data.elem.sz = paramsz;  
         p->data.elem.args = paramdup(paramsz, params);  
         p->data.elem.argc = argsz;  
         p->data.elem.argv = argdup(argsz, args);  
   
         mdoc_node_append(mdoc, pos, p);          p = mdoc_node_alloc(mdoc);
   
           p->line = line;
           p->pos = pos;
           p->type = MDOC_BODY;
           p->tok = tok;
   
           return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_word_alloc(struct mdoc *mdoc, int pos, const char *word)  mdoc_root_alloc(struct mdoc *mdoc)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = mdoc_node_alloc(mdoc);
         p->type = MDOC_TEXT;  
         p->data.text.string = xstrdup(word);  
   
         mdoc_node_append(mdoc, pos, p);          p->type = MDOC_ROOT;
   
           return(mdoc_node_append(mdoc, p));
 }  }
   
   
 static void  int
 argfree(size_t sz, struct mdoc_arg *p)  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
                   int tok, struct mdoc_arg *args)
 {  {
         int              i, j;          struct mdoc_node *p;
   
         if (0 == sz)          p = mdoc_node_alloc(mdoc);
                 return;  
   
         assert(p);          p->pos = pos;
         /* LINTED */          p->line = line;
         for (i = 0; i < (int)sz; i++)          p->type = MDOC_BLOCK;
                 if (p[i].sz > 0) {          p->tok = tok;
                         assert(p[i].value);          p->args = args;
                         /* LINTED */  
                         for (j = 0; j < (int)p[i].sz; j++)  
                                 free(p[i].value[j]);  
                 }  
         free(p);  
 }  
   
           if (args)
                   (args->refcnt)++;
   
 static void          return(mdoc_node_append(mdoc, p));
 mdoc_elem_free(struct mdoc_elem *p)  
 {  
   
         paramfree(p->sz, p->args);  
         argfree(p->argc, p->argv);  
 }  }
   
   
 static void  int
 mdoc_block_free(struct mdoc_block *p)  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
                   int tok, struct mdoc_arg *args)
 {  {
           struct mdoc_node *p;
   
         argfree(p->argc, p->argv);          p = mdoc_node_alloc(mdoc);
 }  
   
           p->line = line;
           p->pos = pos;
           p->type = MDOC_ELEM;
           p->tok = tok;
           p->args = args;
   
 static void          if (args)
 mdoc_text_free(struct mdoc_text *p)                  (args->refcnt)++;
 {  
   
         if (p->string)          return(mdoc_node_append(mdoc, p));
                 free(p->string);  
 }  }
   
   
 static void  int
 mdoc_head_free(struct mdoc_head *p)  mdoc_word_alloc(struct mdoc *mdoc,
                   int line, int pos, const char *word)
 {  {
           struct mdoc_node *p;
   
         paramfree(p->sz, p->args);          p = mdoc_node_alloc(mdoc);
   
           p->line = line;
           p->pos = pos;
           p->type = MDOC_TEXT;
           p->string = xstrdup(word);
   
           return(mdoc_node_append(mdoc, p));
 }  }
   
   
Line 607  void
Line 509  void
 mdoc_node_free(struct mdoc_node *p)  mdoc_node_free(struct mdoc_node *p)
 {  {
   
         switch (p->type) {          if (p->string)
         case (MDOC_TEXT):                  free(p->string);
                 mdoc_text_free(&p->data.text);          if (p->args)
                 break;                  mdoc_argv_free(p->args);
         case (MDOC_ELEM):  
                 mdoc_elem_free(&p->data.elem);  
                 break;  
         case (MDOC_BLOCK):  
                 mdoc_block_free(&p->data.block);  
                 break;  
         case (MDOC_HEAD):  
                 mdoc_head_free(&p->data.head);  
                 break;  
         default:  
                 break;  
         }  
   
         free(p);          free(p);
 }  }
   
   
 static void  void
 mdoc_node_freelist(struct mdoc_node *p)  mdoc_node_freelist(struct mdoc_node *p)
 {  {
   
Line 641  mdoc_node_freelist(struct mdoc_node *p)
Line 530  mdoc_node_freelist(struct mdoc_node *p)
 }  }
   
   
 int  /*
 mdoc_find(const struct mdoc *mdoc, const char *key)   * Parse free-form text, that is, a line that does not begin with the
    * control character.
    */
   static int
   parsetext(struct mdoc *m, int line, char *buf)
 {  {
   
         return(mdoc_tokhash_find(mdoc->htab, key));          if (SEC_PROLOGUE == m->lastnamed)
                   return(mdoc_perr(m, line, 0,
                           "text disallowed in prologue"));
   
           if (0 == buf[0] && ! (MDOC_LITERAL & m->flags))
                   return(mdoc_perr(m, line, 0,
                           "blank lines only in literal context"));
   
           if ( ! mdoc_word_alloc(m, line, 0, buf))
                   return(0);
   
           m->next = MDOC_NEXT_SIBLING;
           return(1);
 }  }
   
   
 static void  static int
 argcpy(struct mdoc_arg *dst, const struct mdoc_arg *src)  macrowarn(struct mdoc *m, int ln, const char *buf)
 {  {
         int              i;          if ( ! (MDOC_IGN_MACRO & m->pflags))
                   return(mdoc_perr(m, ln, 1, "unknown macro: %s%s",
         dst->arg = src->arg;                                  buf, strlen(buf) > 3 ? "..." : ""));
         if (0 == (dst->sz = src->sz))          return(mdoc_pwarn(m, ln, 1, WARN_SYNTAX,
                 return;                                  "unknown macro: %s%s",
         dst->value = xcalloc(dst->sz, sizeof(char *));                                  buf, strlen(buf) > 3 ? "..." : ""));
         for (i = 0; i < (int)dst->sz; i++)  
                 dst->value[i] = xstrdup(src->value[i]);  
 }  }
   
   
 static struct mdoc_arg *  
 argdup(size_t argsz, const struct mdoc_arg *args)  /*
    * Parse a macro line, that is, a line beginning with the control
    * character.
    */
   int
   parsemacro(struct mdoc *m, int ln, char *buf)
 {  {
         struct mdoc_arg *pp;          int               i, c;
         int              i;          char              mac[5];
   
         if (0 == argsz)          /* Comments and empties are quickly ignored. */
                 return(NULL);  
   
         pp = xcalloc((size_t)argsz, sizeof(struct mdoc_arg));          if (0 == buf[1])
         for (i = 0; i < (int)argsz; i++)                  return(1);
                 argcpy(&pp[i], &args[i]);  
   
         return(pp);          if (' ' == buf[1]) {
 }                  i = 2;
                   while (buf[i] && ' ' == buf[i])
                           i++;
                   if (0 == buf[i])
                           return(1);
                   return(mdoc_perr(m, ln, 1, "invalid syntax"));
           }
   
           if (buf[1] && '\\' == buf[1])
                   if (buf[2] && '\"' == buf[2])
                           return(1);
   
 static void          /* Copy the first word into a nil-terminated buffer. */
 paramfree(size_t sz, char **p)  
 {  
         int              i;  
   
         if (0 == sz)          for (i = 1; i < 5; i++) {
                 return;                  if (0 == (mac[i - 1] = buf[i]))
                           break;
                   else if (' ' == buf[i])
                           break;
           }
   
         assert(p);          mac[i - 1] = 0;
         /* LINTED */  
         for (i = 0; i < (int)sz; i++)  
                 free(p[i]);  
         free(p);  
 }  
   
           if (i == 5 || i <= 2) {
                   if ( ! macrowarn(m, ln, mac))
                           goto err;
                   return(1);
           }
   
           if (MDOC_MAX == (c = mdoc_tokhash_find(m->htab, mac))) {
                   if ( ! macrowarn(m, ln, mac))
                           goto err;
                   return(1);
           }
   
 static char **          /* The macro is sane.  Jump to the next word. */
 paramdup(size_t sz, const char **p)  
 {  
         char            **pp;  
         int               i;  
   
         if (0 == sz)          while (buf[i] && ' ' == buf[i])
                 return(NULL);                  i++;
   
         pp = xcalloc(sz, sizeof(char *));          /* Begin recursive parse sequence. */
         for (i = 0; i < (int)sz; i++)  
                 pp[i] = xstrdup(p[i]);  
   
         return(pp);          if ( ! mdoc_macro(m, c, ln, 1, &i, buf))
                   goto err;
   
           /*
            * If we're in literal mode, then add a newline to the end of
            * macro lines.  Our frontends will interpret this correctly
            * (it's documented in mdoc.3).
            */
   
           return(1);
   
   err:    /* Error out. */
   
           m->flags |= MDOC_HALT;
           return(0);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.68

CVSweb