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

Diff for /mandoc/Attic/validate.c between version 1.52 and 1.67

version 1.52, 2009/02/22 19:23:48 version 1.67, 2009/03/04 13:57:35
Line 17 
Line 17 
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
 #include <assert.h>  #include <assert.h>
   #include <ctype.h>
 #include <stdlib.h>  #include <stdlib.h>
   
 #include "private.h"  #include "private.h"
   
   /* FIXME: .Bl -diag can't have non-text children in HEAD. */
   
 /*  /*
  * Pre- and post-validate macros as they're parsed.  Pre-validation   * Pre- and post-validate macros as they're parsed.  Pre-validation
  * occurs when the macro has been detected and its arguments parsed.   * occurs when the macro has been detected and its arguments parsed.
Line 29 
Line 32 
  * the BLOCK case, this is the HEAD, BODY, TAIL and so on.   * the BLOCK case, this is the HEAD, BODY, TAIL and so on.
  */   */
   
 typedef int     (*v_pre)(struct mdoc *, struct mdoc_node *);  #define PRE_ARGS        struct mdoc *mdoc, const struct mdoc_node *n
 typedef int     (*v_post)(struct mdoc *);  #define POST_ARGS       struct mdoc *mdoc
   
 /* FIXME: some sections should only occur in specific msecs. */  typedef int     (*v_pre)(PRE_ARGS);
 /* FIXME: ignoring Pp. */  typedef int     (*v_post)(POST_ARGS);
 /* FIXME: .Ef arguments */  
 /* FIXME: math symbols. */  
 /* FIXME: valid character-escape checks. */  
 /* FIXME: .Fd only in synopsis section. */  
   
   /* TODO: ignoring Pp (it's superfluous in some invocations). */
   
 struct  valids {  struct  valids {
         v_pre   *pre;          v_pre   *pre;
         v_post  *post;          v_post  *post;
Line 46  struct valids {
Line 47  struct valids {
   
 /* Utility checks. */  /* Utility checks. */
   
 static  int     check_parent(struct mdoc *, struct mdoc_node *,  static  int     check_parent(PRE_ARGS, int, enum mdoc_type);
                         int, enum mdoc_type);  static  int     check_msec(PRE_ARGS, int, enum mdoc_msec *);
 static  int     check_msec(struct mdoc *, struct mdoc_node *,  static  int     check_stdarg(PRE_ARGS);
                         int, enum mdoc_msec *);  
 static  int     check_stdarg(struct mdoc *, struct mdoc_node *);  static  int     check_text(struct mdoc *,
                           int, int, const char *);
   
 static  int     err_child_lt(struct mdoc *, const char *, int);  static  int     err_child_lt(struct mdoc *, const char *, int);
   static  int     warn_child_lt(struct mdoc *, const char *, int);
 static  int     err_child_gt(struct mdoc *, const char *, int);  static  int     err_child_gt(struct mdoc *, const char *, int);
 static  int     warn_child_gt(struct mdoc *, const char *, int);  static  int     warn_child_gt(struct mdoc *, const char *, int);
 static  int     err_child_eq(struct mdoc *, const char *, int);  static  int     err_child_eq(struct mdoc *, const char *, int);
Line 67  static inline int err_count(struct mdoc *, const char 
Line 71  static inline int err_count(struct mdoc *, const char 
   
 /* Specific pre-child-parse routines. */  /* Specific pre-child-parse routines. */
   
 static  int     pre_display(struct mdoc *, struct mdoc_node *);  static  int     pre_display(PRE_ARGS);
 static  int     pre_sh(struct mdoc *, struct mdoc_node *);  static  int     pre_sh(PRE_ARGS);
 static  int     pre_ss(struct mdoc *, struct mdoc_node *);  static  int     pre_ss(PRE_ARGS);
 static  int     pre_bd(struct mdoc *, struct mdoc_node *);  static  int     pre_bd(PRE_ARGS);
 static  int     pre_bl(struct mdoc *, struct mdoc_node *);  static  int     pre_bl(PRE_ARGS);
 static  int     pre_it(struct mdoc *, struct mdoc_node *);  static  int     pre_it(PRE_ARGS);
 static  int     pre_cd(struct mdoc *, struct mdoc_node *);  static  int     pre_cd(PRE_ARGS);
 static  int     pre_er(struct mdoc *, struct mdoc_node *);  static  int     pre_er(PRE_ARGS);
 static  int     pre_ex(struct mdoc *, struct mdoc_node *);  static  int     pre_ex(PRE_ARGS);
 static  int     pre_rv(struct mdoc *, struct mdoc_node *);  static  int     pre_rv(PRE_ARGS);
 static  int     pre_an(struct mdoc *, struct mdoc_node *);  static  int     pre_an(PRE_ARGS);
 static  int     pre_st(struct mdoc *, struct mdoc_node *);  static  int     pre_st(PRE_ARGS);
 static  int     pre_prologue(struct mdoc *, struct mdoc_node *);  static  int     pre_prologue(PRE_ARGS);
 static  int     pre_prologue(struct mdoc *, struct mdoc_node *);  static  int     pre_prologue(PRE_ARGS);
 static  int     pre_prologue(struct mdoc *, struct mdoc_node *);  static  int     pre_prologue(PRE_ARGS);
   
 /* Specific post-child-parse routines. */  /* Specific post-child-parse routines. */
   
 static  int     herr_ge1(struct mdoc *);  static  int     herr_ge1(POST_ARGS);
 static  int     herr_le1(struct mdoc *);  static  int     hwarn_le1(POST_ARGS);
 static  int     herr_eq0(struct mdoc *);  static  int     herr_eq0(POST_ARGS);
 static  int     eerr_eq0(struct mdoc *);  static  int     eerr_eq0(POST_ARGS);
 static  int     eerr_le1(struct mdoc *);  static  int     eerr_le1(POST_ARGS);
 static  int     eerr_le2(struct mdoc *);  static  int     eerr_le2(POST_ARGS);
 static  int     eerr_eq1(struct mdoc *);  static  int     eerr_eq1(POST_ARGS);
 static  int     eerr_ge1(struct mdoc *);  static  int     eerr_ge1(POST_ARGS);
 static  int     ewarn_eq0(struct mdoc *);  static  int     ewarn_eq0(POST_ARGS);
 static  int     ewarn_eq1(struct mdoc *);  static  int     ewarn_eq1(POST_ARGS);
 static  int     bwarn_ge1(struct mdoc *);  static  int     bwarn_ge1(POST_ARGS);
 static  int     ewarn_ge1(struct mdoc *);  static  int     hwarn_eq1(POST_ARGS);
 static  int     ebool(struct mdoc *);  static  int     ewarn_ge1(POST_ARGS);
 static  int     post_sh(struct mdoc *);  static  int     ebool(POST_ARGS);
 static  int     post_sh_body(struct mdoc *);  
 static  int     post_sh_head(struct mdoc *);  
 static  int     post_bl(struct mdoc *);  
 static  int     post_it(struct mdoc *);  
 static  int     post_ex(struct mdoc *);  
 static  int     post_an(struct mdoc *);  
 static  int     post_at(struct mdoc *);  
 static  int     post_xr(struct mdoc *);  
 static  int     post_nm(struct mdoc *);  
 static  int     post_bf(struct mdoc *);  
 static  int     post_root(struct mdoc *);  
   
   static  int     post_sh(POST_ARGS);
   static  int     post_sh_body(POST_ARGS);
   static  int     post_sh_head(POST_ARGS);
   static  int     post_fd(POST_ARGS);
   static  int     post_bl(POST_ARGS);
   static  int     post_it(POST_ARGS);
   static  int     post_ex(POST_ARGS);
   static  int     post_an(POST_ARGS);
   static  int     post_at(POST_ARGS);
   static  int     post_xr(POST_ARGS);
   static  int     post_nm(POST_ARGS);
   static  int     post_bf(POST_ARGS);
   static  int     post_root(POST_ARGS);
   
 /* Collections of pre-child-parse routines. */  /* Collections of pre-child-parse routines. */
   
 static  v_pre   pres_prologue[] = { pre_prologue, NULL };  static  v_pre   pres_prologue[] = { pre_prologue, NULL };
Line 147  static v_post posts_an[] = { post_an, NULL };
Line 154  static v_post posts_an[] = { post_an, NULL };
 static  v_post  posts_at[] = { post_at, NULL };  static  v_post  posts_at[] = { post_at, NULL };
 static  v_post  posts_xr[] = { eerr_ge1, eerr_le2, post_xr, NULL };  static  v_post  posts_xr[] = { eerr_ge1, eerr_le2, post_xr, NULL };
 static  v_post  posts_nm[] = { post_nm, NULL };  static  v_post  posts_nm[] = { post_nm, NULL };
 static  v_post  posts_bf[] = { herr_le1, post_bf, NULL };  static  v_post  posts_bf[] = { hwarn_le1, post_bf, NULL };
 static  v_post  posts_rs[] = { herr_eq0, bwarn_ge1, NULL };  static  v_post  posts_rs[] = { herr_eq0, bwarn_ge1, NULL };
 static  v_post  posts_fo[] = { bwarn_ge1, NULL };  static  v_post  posts_fo[] = { hwarn_eq1, bwarn_ge1, NULL };
 static  v_post  posts_bk[] = { herr_eq0, bwarn_ge1, NULL };  static  v_post  posts_bk[] = { herr_eq0, bwarn_ge1, NULL };
   static  v_post  posts_fd[] = { ewarn_ge1, post_fd, NULL };
   
 /* Per-macro pre- and post-child-check routine collections. */  /* Per-macro pre- and post-child-check routine collections. */
   
Line 179  const struct valids mdoc_valids[MDOC_MAX] = {
Line 187  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, posts_text },                   /* Ev */          { NULL, posts_text },                   /* Ev */
         { pres_ex, posts_ex },                  /* Ex */          { pres_ex, posts_ex },                  /* Ex */
         { NULL, posts_text },                   /* Fa */          { NULL, posts_text },                   /* Fa */
         { NULL, posts_wtext },                  /* Fd */          { NULL, posts_fd },                     /* Fd */
         { NULL, NULL },                         /* Fl */          { NULL, NULL },                         /* Fl */
         { NULL, posts_text },                   /* Fn */          { NULL, posts_text },                   /* Fn */
         { NULL, posts_wtext },                  /* Ft */          { NULL, posts_wtext },                  /* Ft */
Line 264  const struct valids mdoc_valids[MDOC_MAX] = {
Line 272  const struct valids mdoc_valids[MDOC_MAX] = {
 };  };
   
   
 static inline int  int
 warn_count(struct mdoc *m, const char *k,  mdoc_valid_pre(struct mdoc *mdoc,
                 int want, const char *v, int has)                  const struct mdoc_node *node)
 {  {
           v_pre           *p;
           struct mdoc_arg *argv;
           size_t           argc;
           int              line, pos, i, j;
           const char      *tp;
   
         return(mdoc_warn(m, WARN_SYNTAX, "suggests %s %d %s "          if (MDOC_TEXT == node->type) {
                                 "(has %d)", v, want, k, has));                  tp = node->data.text.string;
 }                  line = node->line;
                   pos = node->pos;
                   return(check_text(mdoc, line, pos, tp));
           }
   
           if (MDOC_BLOCK == node->type || MDOC_ELEM == node->type) {
                   argv = MDOC_BLOCK == node->type ?
                           node->data.block.argv :
                           node->data.elem.argv;
                   argc = MDOC_BLOCK == node->type ?
                           node->data.block.argc :
                           node->data.elem.argc;
   
 static inline int                  for (i = 0; i < (int)argc; i++) {
 err_count(struct mdoc *m, const char *k,                          if (0 == argv[i].sz)
                 int want, const char *v, int has)                                  continue;
 {                          for (j = 0; j < (int)argv[i].sz; j++) {
                                   tp = argv[i].value[j];
                                   line = argv[i].line;
                                   pos = argv[i].pos;
                                   if ( ! check_text(mdoc, line, pos, tp))
                                           return(0);
                           }
                   }
           }
   
         return(mdoc_err(m, "requires %s %d %s (has %d)",          if (NULL == mdoc_valids[node->tok].pre)
                                 v, want, k, has));                  return(1);
           for (p = mdoc_valids[node->tok].pre; *p; p++)
                   if ( ! (*p)(mdoc, node))
                           return(0);
           return(1);
 }  }
   
   
 static inline int  int
 count_child(struct mdoc *mdoc)  mdoc_valid_post(struct mdoc *mdoc)
 {  {
         int               i;          v_post          *p;
         struct mdoc_node *n;  
   
         for (i = 0, n = mdoc->last->child; n; n = n->next, i++)          /*
                 /* Do nothing */ ;           * This check occurs after the macro's children have been filled
         return(i);           * in: postfix validation.  Since this happens when we're
 }           * rewinding the scope tree, it's possible to have multiple
            * invocations (as by design, for now), we set bit MDOC_VALID to
            * indicate that we've validated.
            */
   
           if (MDOC_VALID & mdoc->last->flags)
 static int  
 warn_child_gt(struct mdoc *mdoc, const char *p, int sz)  
 {  
         int               i;  
   
         if ((i = count_child(mdoc)) > sz)  
                 return(1);                  return(1);
         return(warn_count(mdoc, ">", sz, p, i));          mdoc->last->flags |= MDOC_VALID;
 }  
   
           if (MDOC_TEXT == mdoc->last->type)
 static int  
 err_child_gt(struct mdoc *mdoc, const char *p, int sz)  
 {  
         int               i;  
   
         if ((i = count_child(mdoc)) > sz)  
                 return(1);                  return(1);
         return(err_count(mdoc, ">", sz, p, i));          if (MDOC_ROOT == mdoc->last->type)
 }                  return(post_root(mdoc));
   
           if (NULL == mdoc_valids[mdoc->last->tok].post)
 static int  
 warn_child_eq(struct mdoc *mdoc, const char *p, int sz)  
 {  
         int               i;  
   
         if ((i = count_child(mdoc)) == sz)  
                 return(1);                  return(1);
         return(warn_count(mdoc, "==", sz, p, i));          for (p = mdoc_valids[mdoc->last->tok].post; *p; p++)
 }                  if ( ! (*p)(mdoc))
                           return(0);
   
           return(1);
 static int  
 err_child_eq(struct mdoc *mdoc, const char *p, int sz)  
 {  
         int               i;  
   
         if ((i = count_child(mdoc)) == sz)  
                 return(1);  
         return(err_count(mdoc, "==", sz, p, i));  
 }  }
   
   
 static int  
 err_child_lt(struct mdoc *mdoc, const char *p, int sz)  
 {  
         int               i;  
   
         if ((i = count_child(mdoc)) < sz)  static inline int
                 return(1);  warn_count(struct mdoc *m, const char *k,
         return(err_count(mdoc, "<", sz, p, i));                  int want, const char *v, int has)
 }  
   
   
 static int  
 check_stdarg(struct mdoc *mdoc, struct mdoc_node *node)  
 {  {
   
         if (MDOC_Std == node->data.elem.argv[0].arg &&          return(mdoc_warn(m, WARN_SYNTAX,
                         1 == node->data.elem.argc)                                  "suggests %s %s %d (has %d)",
                 return(1);                                  v, k, want, has));
   
         return(mdoc_nwarn(mdoc, node, WARN_COMPAT,  
                                 "macro suggests single `%s' argument",  
                                 mdoc_argnames[MDOC_Std]));  
 }  }
   
   
 static int  static inline int
 check_msec(struct mdoc *mdoc, struct mdoc_node *node,  err_count(struct mdoc *m, const char *k,
                 int sz, enum mdoc_msec *msecs)                  int want, const char *v, int has)
 {  {
         int              i;  
   
         for (i = 0; i < sz; i++)          return(mdoc_err(m, "requires %s %s %d (has %d)",
                 if (msecs[i] == mdoc->meta.msec)                                  v, k, want, has));
                         return(1);  
         return(mdoc_nwarn(mdoc, node, WARN_COMPAT, "macro not "  
                                 "appropriate for manual section"));  
 }  }
   
   
 static int  static inline int
 check_parent(struct mdoc *mdoc, struct mdoc_node *n,  count_child(struct mdoc *mdoc)
                 int tok, enum mdoc_type t)  
 {  {
           int               i;
           struct mdoc_node *n;
   
         assert(n->parent);          for (i = 0, n = mdoc->last->child; n; n = n->next, i++)
         if ((MDOC_ROOT == t || tok == n->parent->tok) &&                  /* Do nothing */ ;
                         (t == n->parent->type))  
                 return(1);  
   
         return(mdoc_nerr(mdoc, n, "require parent %s (have %s)",          return(i);
                         MDOC_ROOT == t ? "<root>" :  
                         mdoc_macronames[tok],  
                         MDOC_ROOT == n->parent->type ? "<root>" :  
                         mdoc_macronames[n->parent->type]));  
 }  }
   
   
 static int  /*
 bwarn_ge1(struct mdoc *mdoc)   * Build these up with macros because they're basically the same check
 {   * for different inequalities.  Yes, this could be done with functions,
    * but this is reasonable for now.
    */
   
         if (MDOC_BODY != mdoc->last->type)  #define CHECK_CHILD_DEFN(lvl, name, ineq)                       \
                 return(1);  static int                                                      \
         return(warn_child_gt(mdoc, "multi-line parameters", 0));  lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz)    \
   {                                                               \
           int i;                                                  \
           if ((i = count_child(mdoc)) ineq sz)                    \
                   return(1);                                      \
           return(lvl##_count(mdoc, #ineq, sz, p, i));             \
 }  }
   
   #define CHECK_BODY_DEFN(name, lvl, func, num)                   \
 static int  static int                                                      \
 ewarn_eq1(struct mdoc *mdoc)  b##lvl##_##name(POST_ARGS)                                      \
 {  {                                                               \
           if (MDOC_BODY != mdoc->last->type)                      \
         assert(MDOC_ELEM == mdoc->last->type);                  return(1);                                      \
         return(warn_child_eq(mdoc, "line parameters", 1));          return(func(mdoc, "multiline parameters", (num)));      \
 }  }
   
   #define CHECK_ELEM_DEFN(name, lvl, func, num)                   \
 static int  static int                                                      \
 ewarn_eq0(struct mdoc *mdoc)  e##lvl##_##name(POST_ARGS)                                      \
 {  {                                                               \
           assert(MDOC_ELEM == mdoc->last->type);                  \
         assert(MDOC_ELEM == mdoc->last->type);          return(func(mdoc, "line parameters", (num)));           \
         return(warn_child_eq(mdoc, "line parameters", 0));  
 }  }
   
   #define CHECK_HEAD_DEFN(name, lvl, func, num)                   \
 static int  static int                                                      \
 ewarn_ge1(struct mdoc *mdoc)  h##lvl##_##name(POST_ARGS)                                      \
 {  {                                                               \
           if (MDOC_HEAD != mdoc->last->type)                      \
         assert(MDOC_ELEM == mdoc->last->type);                  return(1);                                      \
         return(warn_child_gt(mdoc, "line parameters", 0));          return(func(mdoc, "line parameters", (num)));           \
 }  }
   
   
 static int  CHECK_CHILD_DEFN(warn, gt, >)                   /* warn_child_gt() */
 eerr_eq1(struct mdoc *mdoc)  CHECK_CHILD_DEFN(err, gt, >)                    /* err_child_gt() */
 {  CHECK_CHILD_DEFN(warn, eq, ==)                  /* warn_child_eq() */
   CHECK_CHILD_DEFN(err, eq, ==)                   /* err_child_eq() */
   CHECK_CHILD_DEFN(err, lt, <)                    /* err_child_lt() */
   CHECK_CHILD_DEFN(warn, lt, <)                   /* warn_child_lt() */
   CHECK_BODY_DEFN(ge1, warn, warn_child_gt, 0)    /* bwarn_ge1() */
   CHECK_ELEM_DEFN(eq1, warn, warn_child_eq, 1)    /* ewarn_eq1() */
   CHECK_ELEM_DEFN(eq0, warn, warn_child_eq, 0)    /* ewarn_eq0() */
   CHECK_ELEM_DEFN(ge1, warn, warn_child_gt, 0)    /* ewarn_gt1() */
   CHECK_ELEM_DEFN(eq1, err, err_child_eq, 1)      /* eerr_eq1() */
   CHECK_ELEM_DEFN(le2, err, err_child_lt, 3)      /* eerr_le2() */
   CHECK_ELEM_DEFN(le1, err, err_child_lt, 2)      /* eerr_le1() */
   CHECK_ELEM_DEFN(eq0, err, err_child_eq, 0)      /* eerr_eq0() */
   CHECK_ELEM_DEFN(ge1, err, err_child_gt, 0)      /* eerr_ge1() */
   CHECK_HEAD_DEFN(eq0, err, err_child_eq, 0)      /* herr_eq0() */
   CHECK_HEAD_DEFN(le1, warn, warn_child_lt, 2)    /* hwarn_le1() */
   CHECK_HEAD_DEFN(ge1, err, err_child_gt, 0)      /* herr_ge1() */
   CHECK_HEAD_DEFN(eq1, warn, warn_child_eq, 1)    /* hwarn_eq1() */
   
         assert(MDOC_ELEM == mdoc->last->type);  
         return(err_child_eq(mdoc, "line parameters", 1));  
 }  
   
   
 static int  static int
 eerr_le2(struct mdoc *mdoc)  check_stdarg(PRE_ARGS)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);          if (MDOC_Std == n->data.elem.argv[0].arg &&
         return(err_child_lt(mdoc, "line parameters", 3));                          1 == n->data.elem.argc)
 }                  return(1);
   
           return(mdoc_nwarn(mdoc, n, WARN_COMPAT,
 static int                                  "one argument suggested"));
 eerr_le1(struct mdoc *mdoc)  
 {  
   
         assert(MDOC_ELEM == mdoc->last->type);  
         return(err_child_lt(mdoc, "line parameters", 2));  
 }  }
   
   
 static int  static int
 eerr_eq0(struct mdoc *mdoc)  check_msec(PRE_ARGS, int sz, enum mdoc_msec *msecs)
 {  {
           int              i;
   
         assert(MDOC_ELEM == mdoc->last->type);          for (i = 0; i < sz; i++)
         return(err_child_eq(mdoc, "line parameters", 0));                  if (msecs[i] == mdoc->meta.msec)
                           return(1);
           return(mdoc_nwarn(mdoc, n, WARN_COMPAT,
                                   "invalid manual section"));
 }  }
   
   
 static int  static int
 eerr_ge1(struct mdoc *mdoc)  check_text(struct mdoc *mdoc, int line, int pos, const char *p)
 {  {
           size_t           c;
   
         assert(MDOC_ELEM == mdoc->last->type);          /* XXX - indicate deprecated escapes \*(xx and \*x. */
         return(err_child_gt(mdoc, "line parameters", 0));  
 }  
   
           for ( ; *p; p++) {
                   if ( ! isprint((int)*p) && '\t' != *p)
                           return(mdoc_perr(mdoc, line, pos,
                                   "invalid non-printing characters"));
                   if ('\\' != *p)
                           continue;
                   if ((c = mdoc_isescape(p))) {
                           p += (int)c - 1;
                           continue;
                   }
                   return(mdoc_perr(mdoc, line, pos,
                                   "invalid escape sequence"));
           }
   
 static int          return(1);
 herr_eq0(struct mdoc *mdoc)  
 {  
   
         if (MDOC_HEAD != mdoc->last->type)  
                 return(1);  
         return(err_child_eq(mdoc, "line parameters", 0));  
 }  }
   
   
 static int  
 herr_le1(struct mdoc *mdoc)  
 {  
         if (MDOC_HEAD != mdoc->last->type)  
                 return(1);  
         return(err_child_lt(mdoc, "line parameters", 2));  
 }  
   
   
 static int  static int
 herr_ge1(struct mdoc *mdoc)  check_parent(PRE_ARGS, int tok, enum mdoc_type t)
 {  {
   
         if (MDOC_HEAD != mdoc->last->type)          assert(n->parent);
           if ((MDOC_ROOT == t || tok == n->parent->tok) &&
                           (t == n->parent->type))
                 return(1);                  return(1);
         return(err_child_gt(mdoc, "line parameters", 0));  
           return(mdoc_nerr(mdoc, n, "require parent %s",
                   MDOC_ROOT == t ? "<root>" : mdoc_macronames[tok]));
 }  }
   
   
   
 static int  static int
 pre_display(struct mdoc *mdoc, struct mdoc_node *node)  pre_display(PRE_ARGS)
 {  {
         struct mdoc_node *n;          struct mdoc_node *node;
   
         if (MDOC_BLOCK != node->type)          /* Display elements (`Bd', `D1'...) cannot be nested. */
   
           if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
   
         assert(mdoc->last);  
         /* LINTED */          /* LINTED */
         for (n = mdoc->last->parent; n; n = n->parent)          for (node = mdoc->last->parent; node; node = node->parent)
                 if (MDOC_BLOCK == n->type)                  if (MDOC_BLOCK == node->type)
                         if (MDOC_Bd == n->tok)                          if (MDOC_Bd == node->tok)
                                 break;                                  break;
         if (NULL == n)          if (NULL == node)
                 return(1);                  return(1);
         return(mdoc_nerr(mdoc, node, "displays may not be nested"));  
           return(mdoc_nerr(mdoc, n, "displays may not be nested"));
 }  }
   
   
 static int  static int
 pre_bl(struct mdoc *mdoc, struct mdoc_node *node)  pre_bl(PRE_ARGS)
 {  {
         int              type, err;          int              type, i, width, offset;
         struct mdoc_arg *argv;          struct mdoc_arg *argv;
         size_t           i, argc;          size_t           argc;
   
         if (MDOC_BLOCK != node->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         assert(MDOC_Bl == node->tok);  
   
         argv = NULL;          argc = n->data.block.argc;
         argc = node->data.block.argc;  
   
           /* Make sure that only one type of list is specified.  */
   
           type = offset = width = -1;
   
         /* LINTED */          /* LINTED */
         for (i = type = err = 0; i < argc; i++) {          for (i = 0; i < (int)argc; i++) {
                 argv = &node->data.block.argv[(int)i];                  argv = &n->data.block.argv[i];
                 assert(argv);  
                 switch (argv->arg) {                  switch (argv->arg) {
                 case (MDOC_Bullet):                  case (MDOC_Bullet):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
Line 568  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
Line 582  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
                 case (MDOC_Inset):                  case (MDOC_Inset):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Column):                  case (MDOC_Column):
                         if (type)                          if (-1 == type) {
                                 err++;                                  type = argv->arg;
                         type++;                                  break;
                         break;                          }
                           return(mdoc_perr(mdoc, argv->line, argv->pos,
                                           "multiple types specified"));
                   case (MDOC_Width):
                           if (-1 == width) {
                                   width = argv->arg;
                                   break;
                           }
                           return(mdoc_perr(mdoc, argv->line, argv->pos,
                                           "multiple -%s arguments",
                                           mdoc_argnames[MDOC_Width]));
                   case (MDOC_Offset):
                           if (-1 == offset) {
                                   offset = argv->arg;
                                   break;
                           }
                           return(mdoc_perr(mdoc, argv->line, argv->pos,
                                           "multiple -%s arguments",
                                           mdoc_argnames[MDOC_Offset]));
                 default:                  default:
                         break;                          break;
                 }                  }
         }          }
         if (0 == type)  
                 return(mdoc_err(mdoc, "no list type specified"));          if (-1 == type)
         if (0 == err)                  return(mdoc_err(mdoc, "no type specified"));
                 return(1);  
         assert(argv);          switch (type) {
         return(mdoc_perr(mdoc, argv->line,          case (MDOC_Column):
                         argv->pos, "only one list type possible"));                  /* FALLTHROUGH */
           case (MDOC_Diag):
                   /* FALLTHROUGH */
           case (MDOC_Inset):
                   /* FALLTHROUGH */
           case (MDOC_Item):
                   if (-1 == width)
                           break;
                   return(mdoc_nwarn(mdoc, n, WARN_SYNTAX,
                                   "superfluous -%s argument",
                                   mdoc_argnames[MDOC_Width]));
           case (MDOC_Tag):
                   if (-1 == width && ! mdoc_nwarn(mdoc, n, WARN_SYNTAX,
                                           "suggest -%s argument",
                                           mdoc_argnames[MDOC_Width]))
                           return(0);
                   break;
           default:
                   break;
           }
   
           return(1);
 }  }
   
   
 static int  static int
 pre_bd(struct mdoc *mdoc, struct mdoc_node *node)  pre_bd(PRE_ARGS)
 {  {
         int              type, err;          int              type, err, i;
         struct mdoc_arg *argv;          struct mdoc_arg *argv;
         size_t           i, argc;          size_t           argc;
   
         if (MDOC_BLOCK != node->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         assert(MDOC_Bd == node->tok);  
   
         argv = NULL;          argc = n->data.block.argc;
         argc = node->data.block.argc;  
   
           /* Make sure that only one type of display is specified.  */
   
         /* LINTED */          /* LINTED */
         for (err = i = type = 0; 0 == err && i < argc; i++) {          for (i = 0, err = type = 0; ! err && i < (int)argc; i++) {
                 argv = &node->data.block.argv[(int)i];                  argv = &n->data.block.argv[i];
                 assert(argv);  
                 switch (argv->arg) {                  switch (argv->arg) {
                 case (MDOC_Ragged):                  case (MDOC_Ragged):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
Line 614  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
Line 667  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
                 case (MDOC_Literal):                  case (MDOC_Literal):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_File):                  case (MDOC_File):
                         if (type)                          if (0 == type++)
                                 err++;                                  break;
                         type++;                          return(mdoc_perr(mdoc, argv->line, argv->pos,
                         break;                                          "multiple types specified"));
                 default:                  default:
                         break;                          break;
                 }                  }
         }          }
         if (0 == type)  
                 return(mdoc_err(mdoc, "no display type specified"));          if (type)
         if (0 == err)  
                 return(1);                  return(1);
         assert(argv);          return(mdoc_err(mdoc, "no type specified"));
         return(mdoc_perr(mdoc, argv->line,  
                         argv->pos, "only one display type possible"));  
 }  }
   
   
 static int  static int
 pre_ss(struct mdoc *mdoc, struct mdoc_node *node)  pre_ss(PRE_ARGS)
 {  {
   
         if (MDOC_BLOCK != node->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         return(check_parent(mdoc, node, MDOC_Sh, MDOC_BODY));          return(check_parent(mdoc, n, MDOC_Sh, MDOC_BODY));
 }  }
   
   
 static int  static int
 pre_sh(struct mdoc *mdoc, struct mdoc_node *node)  pre_sh(PRE_ARGS)
 {  {
   
         if (MDOC_BLOCK != node->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         return(check_parent(mdoc, node, -1, MDOC_ROOT));          return(check_parent(mdoc, n, -1, MDOC_ROOT));
 }  }
   
   
 static int  static int
 pre_st(struct mdoc *mdoc, struct mdoc_node *node)  pre_it(PRE_ARGS)
 {  {
   
         assert(MDOC_ELEM == node->type);          if (MDOC_BLOCK != n->type)
         assert(MDOC_St == node->tok);  
         if (1 == node->data.elem.argc)  
                 return(1);                  return(1);
         return(mdoc_nerr(mdoc, node, "macro must have one argument"));          return(check_parent(mdoc, n, MDOC_Bl, MDOC_BODY));
 }  }
   
   
 static int  static int
 pre_an(struct mdoc *mdoc, struct mdoc_node *node)  pre_st(PRE_ARGS)
 {  {
   
         assert(MDOC_ELEM == node->type);          if (1 == n->data.elem.argc)
         assert(MDOC_An == node->tok);  
         if (1 >= node->data.elem.argc)  
                 return(1);                  return(1);
         return(mdoc_nerr(mdoc, node, "macro may only have one argument"));          return(mdoc_nerr(mdoc, n, "one argument required"));
 }  }
   
   
 static int  static int
 pre_rv(struct mdoc *mdoc, struct mdoc_node *node)  pre_an(PRE_ARGS)
 {  {
         enum mdoc_msec   msecs[2];  
   
         assert(MDOC_ELEM == node->type);          if (1 >= n->data.elem.argc)
         assert(MDOC_Rv == node->tok);                  return(1);
           return(mdoc_nerr(mdoc, n, "one argument allowed"));
         msecs[0] = MSEC_2;  
         msecs[1] = MSEC_3;  
         if ( ! check_msec(mdoc, node, 2, msecs))  
                 return(0);  
         return(check_stdarg(mdoc, node));  
 }  }
   
   
 static int  static int
 pre_ex(struct mdoc *mdoc, struct mdoc_node *node)  pre_rv(PRE_ARGS)
 {  {
         enum mdoc_msec   msecs[3];          enum mdoc_msec msecs[] = { MSEC_2, MSEC_3 };
   
         assert(MDOC_ELEM == node->type);          if ( ! check_msec(mdoc, n, 2, msecs))
         assert(MDOC_Ex == node->tok);  
   
         msecs[0] = MSEC_1;  
         msecs[1] = MSEC_6;  
         msecs[2] = MSEC_8;  
         if ( ! check_msec(mdoc, node, 3, msecs))  
                 return(0);                  return(0);
         return(check_stdarg(mdoc, node));          return(check_stdarg(mdoc, n));
 }  }
   
   
 static int  static int
 pre_er(struct mdoc *mdoc, struct mdoc_node *node)  pre_ex(PRE_ARGS)
 {  {
         enum mdoc_msec   msecs[1];          enum mdoc_msec msecs[] = { MSEC_1, MSEC_6, MSEC_8 };
   
         msecs[0] = MSEC_2;          if ( ! check_msec(mdoc, n, 3, msecs))
         return(check_msec(mdoc, node, 1, msecs));                  return(0);
           return(check_stdarg(mdoc, n));
 }  }
   
   
 static int  static int
 pre_cd(struct mdoc *mdoc, struct mdoc_node *node)  pre_er(PRE_ARGS)
 {  {
         enum mdoc_msec   msecs[1];          enum mdoc_msec msecs[] = { MSEC_2 };
   
         msecs[0] = MSEC_4;          return(check_msec(mdoc, n, 1, msecs));
         return(check_msec(mdoc, node, 1, msecs));  
 }  }
   
   
 static int  static int
 pre_it(struct mdoc *mdoc, struct mdoc_node *node)  pre_cd(PRE_ARGS)
 {  {
           enum mdoc_msec msecs[] = { MSEC_4 };
   
         /* TODO: -width attribute must be specified for -tag. */          return(check_msec(mdoc, n, 1, msecs));
         /* TODO: children too big for -width? */  
   
         if (MDOC_BLOCK != node->type)  
                 return(1);  
         return(check_parent(mdoc, node, MDOC_Bl, MDOC_BODY));  
 }  }
   
   
 static int  static int
 pre_prologue(struct mdoc *mdoc, struct mdoc_node *node)  pre_prologue(PRE_ARGS)
 {  {
   
         if (SEC_PROLOGUE != mdoc->lastnamed)          if (SEC_PROLOGUE != mdoc->lastnamed)
                 return(mdoc_nerr(mdoc, node, "macro may only be invoked in the prologue"));                  return(mdoc_nerr(mdoc, n, "prologue only"));
         assert(MDOC_ELEM == node->type);  
   
         /* Check for ordering. */          /* Check for ordering. */
   
         switch (node->tok) {          switch (n->tok) {
         case (MDOC_Os):          case (MDOC_Os):
                 if (mdoc->meta.title && mdoc->meta.date)                  if (mdoc->meta.title && mdoc->meta.date)
                         break;                          break;
                 return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));                  return(mdoc_nerr(mdoc, n, "prologue out-of-order"));
         case (MDOC_Dt):          case (MDOC_Dt):
                 if (NULL == mdoc->meta.title && mdoc->meta.date)                  if (NULL == mdoc->meta.title && mdoc->meta.date)
                         break;                          break;
                 return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));                  return(mdoc_nerr(mdoc, n, "prologue out-of-order"));
         case (MDOC_Dd):          case (MDOC_Dd):
                 if (NULL == mdoc->meta.title && 0 == mdoc->meta.date)                  if (NULL == mdoc->meta.title && 0 == mdoc->meta.date)
                         break;                          break;
                 return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));                  return(mdoc_nerr(mdoc, n, "prologue out-of-order"));
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
Line 772  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 801  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
   
         /* Check for repetition. */          /* Check for repetition. */
   
         switch (node->tok) {          switch (n->tok) {
         case (MDOC_Os):          case (MDOC_Os):
                 if (NULL == mdoc->meta.os)                  if (NULL == mdoc->meta.os)
                         return(1);                          return(1);
Line 790  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 819  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         return(mdoc_nerr(mdoc, node, "prologue macro repeated"));          return(mdoc_nerr(mdoc, n, "prologue repetition"));
 }  }
   
   
 static int  static int
 post_bf(struct mdoc *mdoc)  post_bf(POST_ARGS)
 {  {
         char             *p;          char             *p;
         struct mdoc_node *head;          struct mdoc_node *head;
   
         if (MDOC_BLOCK != mdoc->last->type)          if (MDOC_BLOCK != mdoc->last->type)
                 return(1);                  return(1);
         assert(MDOC_Bf == mdoc->last->tok);  
         head = mdoc->last->data.block.head;          head = mdoc->last->data.block.head;
         assert(head);  
   
         if (0 == mdoc->last->data.block.argc) {          if (0 == mdoc->last->data.block.argc) {
                 if (head->child) {                  if (NULL == head->child)
                         assert(MDOC_TEXT == head->child->type);                          return(mdoc_err(mdoc, "argument expected"));
                         p = head->child->data.text.string;  
                         if (xstrcmp(p, "Em"))                  p = head->child->data.text.string;
                                 return(1);                  if (xstrcmp(p, "Em"))
                         else if (xstrcmp(p, "Li"))                          return(1);
                                 return(1);                  else if (xstrcmp(p, "Li"))
                         else if (xstrcmp(p, "Sm"))                          return(1);
                                 return(1);                  else if (xstrcmp(p, "Sm"))
                         return(mdoc_nerr(mdoc, head->child, "invalid font mode"));                          return(1);
                 }                  return(mdoc_nerr(mdoc, head->child, "invalid font"));
                 return(mdoc_err(mdoc, "macro expects an argument or parameter"));  
         }          }
   
         if (head->child)          if (head->child)
                 return(mdoc_err(mdoc, "macro expects an argument or parameter"));                  return(mdoc_err(mdoc, "argument expected"));
   
         if (1 == mdoc->last->data.block.argc)          if (1 == mdoc->last->data.block.argc)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, "macro expects an argument or parameter"));          return(mdoc_err(mdoc, "argument expected"));
 }  }
   
   
 static int  static int
 post_nm(struct mdoc *mdoc)  post_nm(POST_ARGS)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);  
         assert(MDOC_Nm == mdoc->last->tok);  
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         if (mdoc->meta.name)          if (mdoc->meta.name)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, "macro `%s' has not been invoked with a name",          return(mdoc_err(mdoc, "not yet invoked with name"));
                                 mdoc_macronames[MDOC_Nm]));  
 }  }
   
   
 static int  static int
 post_xr(struct mdoc *mdoc)  post_xr(POST_ARGS)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
   
         assert(MDOC_ELEM == mdoc->last->type);  
         assert(MDOC_Xr == mdoc->last->tok);  
         assert(mdoc->last->child);  
         assert(MDOC_TEXT == mdoc->last->child->type);  
   
         if (NULL == (n = mdoc->last->child->next))          if (NULL == (n = mdoc->last->child->next))
                 return(1);                  return(1);
         assert(MDOC_TEXT == n->type);  
         if (MSEC_DEFAULT != mdoc_atomsec(n->data.text.string))          if (MSEC_DEFAULT != mdoc_atomsec(n->data.text.string))
                 return(1);                  return(1);
         return(mdoc_nerr(mdoc, n, "invalid manual section"));          return(mdoc_nerr(mdoc, n, "invalid manual section"));
Line 863  post_xr(struct mdoc *mdoc)
Line 883  post_xr(struct mdoc *mdoc)
   
   
 static int  static int
 post_at(struct mdoc *mdoc)  post_at(POST_ARGS)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);  
         assert(MDOC_At == mdoc->last->tok);  
   
         if (NULL == mdoc->last->child)          if (NULL == mdoc->last->child)
                 return(1);                  return(1);
         assert(MDOC_TEXT == mdoc->last->child->type);  
   
         if (ATT_DEFAULT != mdoc_atoatt(mdoc->last->child->data.text.string))          if (ATT_DEFAULT != mdoc_atoatt(mdoc->last->child->data.text.string))
                 return(1);                  return(1);
         return(mdoc_err(mdoc, "macro expects a valid AT&T version symbol"));          return(mdoc_err(mdoc, "require valid symbol"));
 }  }
   
   
 static int  static int
 post_an(struct mdoc *mdoc)  post_an(POST_ARGS)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);  
         assert(MDOC_An == mdoc->last->tok);  
   
         if (0 != mdoc->last->data.elem.argc) {          if (0 != mdoc->last->data.elem.argc) {
                 if (NULL == mdoc->last->child)                  if (NULL == mdoc->last->child)
                         return(1);                          return(1);
                 return(mdoc_err(mdoc, "macro expects either argument or parameters"));                  return(mdoc_err(mdoc, "argument(s) expected"));
         }          }
   
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, "macro expects either argument or parameters"));          return(mdoc_err(mdoc, "argument(s) expected"));
 }  }
   
   
 static int  static int
 post_ex(struct mdoc *mdoc)  post_ex(POST_ARGS)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);  
         assert(MDOC_Ex == mdoc->last->tok);  
   
         if (0 == mdoc->last->data.elem.argc) {          if (0 == mdoc->last->data.elem.argc) {
                 if (mdoc->last->child)                  if (mdoc->last->child)
                         return(1);                          return(1);
                 return(mdoc_err(mdoc, "macro expects `%s' or a single child",                  return(mdoc_err(mdoc, "argument(s) expected"));
                                         mdoc_argnames[MDOC_Std]));  
         }          }
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(mdoc_err(mdoc, "macro expects `%s' or a single child",                  return(mdoc_err(mdoc, "argument(s) expected"));
                                         mdoc_argnames[MDOC_Std]));  
         if (1 != mdoc->last->data.elem.argc)          if (1 != mdoc->last->data.elem.argc)
                 return(mdoc_err(mdoc, "macro expects `%s' or a single child",                  return(mdoc_err(mdoc, "argument(s) expected"));
                                         mdoc_argnames[MDOC_Std]));  
         if (MDOC_Std != mdoc->last->data.elem.argv[0].arg)          if (MDOC_Std != mdoc->last->data.elem.argv[0].arg)
                 return(mdoc_err(mdoc, "macro expects `%s' or a single child",                  return(mdoc_err(mdoc, "argument(s) expected"));
                                         mdoc_argnames[MDOC_Std]));  
         return(1);          return(1);
 }  }
   
   
 /* Warn if `Bl' type-specific syntax isn't reflected in items. */  
 static int  static int
 post_it(struct mdoc *mdoc)  post_it(POST_ARGS)
 {  {
         int               type, sv;          int               type, sv, i;
 #define TYPE_NONE        (0)  #define TYPE_NONE        (0)
 #define TYPE_BODY        (1)  #define TYPE_BODY        (1)
 #define TYPE_HEAD        (2)  #define TYPE_HEAD        (2)
 #define TYPE_OHEAD       (3)  #define TYPE_OHEAD       (3)
         size_t            i, argc;          size_t            argc;
         struct mdoc_node *n;          struct mdoc_node *n;
   
         if (MDOC_BLOCK != mdoc->last->type)          if (MDOC_BLOCK != mdoc->last->type)
                 return(1);                  return(1);
   
         assert(MDOC_It == mdoc->last->tok);          n = mdoc->last->parent->parent;
   
         n = mdoc->last->parent;  
         assert(n);  
         assert(MDOC_Bl == n->tok);  
   
         n = n->parent;  
         assert(MDOC_BLOCK == n->type);  
         assert(MDOC_Bl == n->tok);  
   
         argc = n->data.block.argc;          argc = n->data.block.argc;
         type = TYPE_NONE;          type = TYPE_NONE;
         sv = -1;          sv = -1;
Line 956  post_it(struct mdoc *mdoc)
Line 953  post_it(struct mdoc *mdoc)
         /* Some types require block-head, some not. */          /* Some types require block-head, some not. */
   
         /* LINTED */          /* LINTED */
         for (i = 0; TYPE_NONE == type && i < argc; i++)          for (i = 0; TYPE_NONE == type && i < (int)argc; i++)
                 switch (n->data.block.argv[(int)i].arg) {                  switch (n->data.block.argv[i].arg) {
                 case (MDOC_Tag):                  case (MDOC_Tag):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Diag):                  case (MDOC_Diag):
Line 968  post_it(struct mdoc *mdoc)
Line 965  post_it(struct mdoc *mdoc)
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Inset):                  case (MDOC_Inset):
                         type = TYPE_HEAD;                          type = TYPE_HEAD;
                         sv = n->data.block.argv[(int)i].arg;                          sv = n->data.block.argv[i].arg;
                         break;                          break;
                 case (MDOC_Bullet):                  case (MDOC_Bullet):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
Line 980  post_it(struct mdoc *mdoc)
Line 977  post_it(struct mdoc *mdoc)
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Item):                  case (MDOC_Item):
                         type = TYPE_BODY;                          type = TYPE_BODY;
                         sv = n->data.block.argv[(int)i].arg;                          sv = n->data.block.argv[i].arg;
                         break;                          break;
                 case (MDOC_Column):                  case (MDOC_Column):
                         type = TYPE_OHEAD;                          type = TYPE_OHEAD;
                         sv = n->data.block.argv[(int)i].arg;                          sv = n->data.block.argv[i].arg;
                         break;                          break;
                 default:                  default:
                         break;                          break;
Line 993  post_it(struct mdoc *mdoc)
Line 990  post_it(struct mdoc *mdoc)
         assert(TYPE_NONE != type);          assert(TYPE_NONE != type);
   
         n = mdoc->last->data.block.head;          n = mdoc->last->data.block.head;
         assert(n);  
   
         if (TYPE_HEAD == type) {          if (TYPE_HEAD == type) {
                 if (NULL == n->child)                  if (NULL == n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests line parameters"))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX,
                                           "argument(s) suggested"))
                                 return(0);                                  return(0);
   
                 n = mdoc->last->data.block.body;                  n = mdoc->last->data.block.body;
                 assert(n);  
                 if (NULL == n->child)                  if (NULL == n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests body children"))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX,
                                           "multiline body suggested"))
                                 return(0);                                  return(0);
   
         } else if (TYPE_BODY == type) {          } else if (TYPE_BODY == type) {
                 if (n->child)                  if (n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests no line parameters"))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX,
                                           "no argument suggested"))
                                 return(0);                                  return(0);
   
                 n = mdoc->last->data.block.body;                  n = mdoc->last->data.block.body;
                 assert(n);  
                 if (NULL == n->child)                  if (NULL == n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests body children"))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX,
                                           "multiline body suggested"))
                                 return(0);                                  return(0);
         } else {          } else {
                 if (NULL == n->child)                  if (NULL == n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests line parameters"))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX,
                                           "argument(s) suggested"))
                                 return(0);                                  return(0);
   
                 n = mdoc->last->data.block.body;                  n = mdoc->last->data.block.body;
                 assert(n);  
                 if (n->child)                  if (n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests no body children"))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX,
                                           "no multiline body suggested"))
                                 return(0);                                  return(0);
         }          }
   
         if (MDOC_Column != sv)          if (MDOC_Column != sv)
                 return(1);                  return(1);
   
         /* Make sure the number of columns is sane. */  
   
         argc = mdoc->last->parent->parent->data.block.argv->sz;          argc = mdoc->last->parent->parent->data.block.argv->sz;
         n = mdoc->last->data.block.head->child;          n = mdoc->last->data.block.head->child;
   
         for (i = 0; n; n = n->next)          for (i = 0; n; n = n->next)
                 i++;                  i++;
   
         if (i == argc)          if (i == (int)argc)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, "expected %zu list columns, have %zu", argc, i));  
           return(mdoc_err(mdoc, "need %zu columns (have %d)", argc, i));
 #undef  TYPE_NONE  #undef  TYPE_NONE
 #undef  TYPE_BODY  #undef  TYPE_BODY
 #undef  TYPE_HEAD  #undef  TYPE_HEAD
Line 1050  post_it(struct mdoc *mdoc)
Line 1048  post_it(struct mdoc *mdoc)
   
   
 static int  static int
 post_bl(struct mdoc *mdoc)  post_bl(POST_ARGS)
 {  {
         struct mdoc_node *n;          struct mdoc_node        *n;
   
         if (MDOC_BODY != mdoc->last->type)          if (MDOC_BODY != mdoc->last->type)
                 return(1);                  return(1);
         assert(MDOC_Bl == mdoc->last->tok);          if (NULL == (mdoc->last->child))
                   return(1);
   
           /*
            * Only allow `It' macros to be the immediate descendants of the
            * `Bl' list.
            */
   
         /* LINTED */          /* LINTED */
         for (n = mdoc->last->child; n; n = n->next) {          for (n = mdoc->last->child; n; n = n->next) {
                 if (MDOC_BLOCK == n->type)                  if (MDOC_BLOCK == n->type)
                         if (MDOC_It == n->tok)                          if (MDOC_It == n->tok)
                                 continue;                                  continue;
                 break;  
                   return(mdoc_nerr(mdoc, n, "bad child of parent %s",
                                   mdoc_macronames[mdoc->last->tok]));
         }          }
         if (NULL == n)  
                 return(1);          return(1);
         return(mdoc_nerr(mdoc, n, "invalid child of parent macro `Bl'"));  
 }  }
   
   
Line 1076  ebool(struct mdoc *mdoc)
Line 1081  ebool(struct mdoc *mdoc)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
   
         assert(MDOC_ELEM == mdoc->last->type);  
         /* LINTED */          /* LINTED */
         for (n = mdoc->last->child; n; n = n->next) {          for (n = mdoc->last->child; n; n = n->next) {
                 if (MDOC_TEXT != n->type)                  if (MDOC_TEXT != n->type)
Line 1087  ebool(struct mdoc *mdoc)
Line 1091  ebool(struct mdoc *mdoc)
                         continue;                          continue;
                 break;                  break;
         }          }
   
         if (NULL == n)          if (NULL == n)
                 return(1);                  return(1);
         return(mdoc_nerr(mdoc, n, "expected boolean value"));          return(mdoc_nerr(mdoc, n, "expected boolean"));
 }  }
   
   
 static int  static int
 post_root(struct mdoc *mdoc)  post_root(POST_ARGS)
 {  {
   
         if (NULL == mdoc->first->child)          if (NULL == mdoc->first->child)
                 return(mdoc_err(mdoc, "document has no data"));                  return(mdoc_err(mdoc, "document lacks data"));
         if (SEC_PROLOGUE == mdoc->lastnamed)          if (SEC_PROLOGUE == mdoc->lastnamed)
                 return(mdoc_err(mdoc, "document has incomplete prologue"));                  return(mdoc_err(mdoc, "document lacks prologue"));
   
         if (MDOC_BLOCK != mdoc->first->child->type)          if (MDOC_BLOCK != mdoc->first->child->type)
                 return(mdoc_err(mdoc, "document expects `%s' macro after prologue", mdoc_macronames[MDOC_Sh]));                  return(mdoc_err(mdoc, "lacking post-prologue %s",
                                           mdoc_macronames[MDOC_Sh]));
         if (MDOC_Sh != mdoc->first->child->tok)          if (MDOC_Sh != mdoc->first->child->tok)
                 return(mdoc_err(mdoc, "document expects `%s' macro after prologue", mdoc_macronames[MDOC_Sh]));                  return(mdoc_err(mdoc, "lacking post-prologue %s",
                                           mdoc_macronames[MDOC_Sh]));
   
         return(1);          return(1);
 }  }
   
   
 static int  static int
 post_sh(struct mdoc *mdoc)  post_sh(POST_ARGS)
 {  {
   
         if (MDOC_HEAD == mdoc->last->type)          if (MDOC_HEAD == mdoc->last->type)
                 return(post_sh_head(mdoc));                  return(post_sh_head(mdoc));
         if (MDOC_BODY == mdoc->last->type)          if (MDOC_BODY == mdoc->last->type)
                 return(post_sh_body(mdoc));                  return(post_sh_body(mdoc));
   
         return(1);          return(1);
 }  }
   
   
 static int  static int
 post_sh_body(struct mdoc *mdoc)  post_sh_body(POST_ARGS)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
   
         assert(MDOC_Sh == mdoc->last->tok);  
         assert(MDOC_BODY == mdoc->last->type);  
         if (SEC_NAME != mdoc->lastnamed)          if (SEC_NAME != mdoc->lastnamed)
                 return(1);                  return(1);
   
Line 1138  post_sh_body(struct mdoc *mdoc)
Line 1146  post_sh_body(struct mdoc *mdoc)
          */           */
   
         if (NULL == (n = mdoc->last->child))          if (NULL == (n = mdoc->last->child))
                 return(mdoc_warn(mdoc, WARN_COMPAT, "section NAME "                  return(mdoc_warn(mdoc, WARN_SYNTAX,
                                         "should contain %s and %s",                                          "section should have %s and %s",
                                         mdoc_macronames[MDOC_Nm],                                          mdoc_macronames[MDOC_Nm],
                                         mdoc_macronames[MDOC_Nd]));                                          mdoc_macronames[MDOC_Nd]));
   
Line 1148  post_sh_body(struct mdoc *mdoc)
Line 1156  post_sh_body(struct mdoc *mdoc)
                         continue;                          continue;
                 if (MDOC_TEXT == n->type)                  if (MDOC_TEXT == n->type)
                         continue;                          continue;
                 if ( ! (mdoc_nwarn(mdoc, n, WARN_COMPAT, "section "                  if ( ! (mdoc_nwarn(mdoc, n, WARN_SYNTAX,
                                         "NAME should contain %s as "                                          "section should have %s first",
                                         "initial body child",  
                                         mdoc_macronames[MDOC_Nm])))                                          mdoc_macronames[MDOC_Nm])))
                         return(0);                          return(0);
         }          }
Line 1158  post_sh_body(struct mdoc *mdoc)
Line 1165  post_sh_body(struct mdoc *mdoc)
         if (MDOC_ELEM == n->type && MDOC_Nd == n->tok)          if (MDOC_ELEM == n->type && MDOC_Nd == n->tok)
                 return(1);                  return(1);
   
         return(mdoc_warn(mdoc, WARN_COMPAT, "section NAME should "          return(mdoc_warn(mdoc, WARN_SYNTAX,
                                 "contain %s as the last child",                                  "section should have %s last",
                                 mdoc_macronames[MDOC_Nd]));                                  mdoc_macronames[MDOC_Nd]));
 }  }
   
   
 static int  static int
 post_sh_head(struct mdoc *mdoc)  post_sh_head(POST_ARGS)
 {  {
         char              buf[64];          char              buf[64];
         enum mdoc_sec     sec;          enum mdoc_sec     sec;
   
         assert(MDOC_Sh == mdoc->last->tok);          assert(MDOC_Sh == mdoc->last->tok);
   
         if ( ! xstrlcats(buf, mdoc->last->child, 64))          if ( ! xstrlcats(buf, mdoc->last->child, sizeof(buf)))
                 return(mdoc_err(mdoc, "macro parameters too long"));                  return(mdoc_err(mdoc, "argument too long"));
   
         sec = mdoc_atosec(buf);          sec = mdoc_atosec(buf);
   
         if (SEC_BODY == mdoc->lastnamed && SEC_NAME != sec)          if (SEC_BODY == mdoc->lastnamed && SEC_NAME != sec)
                 return(mdoc_err(mdoc, "section NAME must be first"));                  return(mdoc_warn(mdoc, WARN_SYNTAX,
                                   "section NAME should be first"));
         if (SEC_CUSTOM == sec)          if (SEC_CUSTOM == sec)
                 return(1);                  return(1);
         if (sec == mdoc->lastnamed)          if (sec == mdoc->lastnamed)
                 return(mdoc_warn(mdoc, WARN_SYNTAX, "section repeated"));                  return(mdoc_warn(mdoc, WARN_SYNTAX,
                                   "section repeated"));
         if (sec < mdoc->lastnamed)          if (sec < mdoc->lastnamed)
                 return(mdoc_warn(mdoc, WARN_SYNTAX, "section out of conventional order"));                  return(mdoc_warn(mdoc, WARN_SYNTAX,
                                   "section out of order"));
   
         return(1);          return(1);
 }  }
   
   
 int  static int
 mdoc_valid_pre(struct mdoc *mdoc, struct mdoc_node *node)  post_fd(POST_ARGS)
 {  {
         v_pre           *p;  
   
         if (MDOC_TEXT == node->type)          if (SEC_SYNOPSIS == mdoc->last->sec)
                 return(1);                  return(1);
         assert(MDOC_ROOT != node->type);          return(mdoc_warn(mdoc, WARN_COMPAT,
                           "suggested only in section SYNOPSIS"));
         if (NULL == mdoc_valids[node->tok].pre)  
                 return(1);  
         for (p = mdoc_valids[node->tok].pre; *p; p++)  
                 if ( ! (*p)(mdoc, node))  
                         return(0);  
         return(1);  
 }  }
   
   
 int  
 mdoc_valid_post(struct mdoc *mdoc)  
 {  
         v_post          *p;  
   
         if (MDOC_VALID & mdoc->last->flags)  
                 return(1);  
         mdoc->last->flags |= MDOC_VALID;  
   
         if (MDOC_TEXT == mdoc->last->type)  
                 return(1);  
         if (MDOC_ROOT == mdoc->last->type)  
                 return(post_root(mdoc));  
   
         if (NULL == mdoc_valids[mdoc->last->tok].post)  
                 return(1);  
         for (p = mdoc_valids[mdoc->last->tok].post; *p; p++)  
                 if ( ! (*p)(mdoc))  
                         return(0);  
   
         return(1);  
 }  
   

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.67

CVSweb