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

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

version 1.25, 2009/01/12 12:52:21 version 1.52, 2009/02/22 19:23:48
Line 21 
Line 21 
   
 #include "private.h"  #include "private.h"
   
   /*
    * Pre- and post-validate macros as they're parsed.  Pre-validation
    * occurs when the macro has been detected and its arguments parsed.
    * Post-validation occurs when all child macros have also been parsed.
    * In the ELEMENT case, this is simply the parameters of the macro; in
    * the BLOCK case, this is the HEAD, BODY, TAIL and so on.
    */
   
 typedef int     (*v_pre)(struct mdoc *, struct mdoc_node *);  typedef int     (*v_pre)(struct mdoc *, struct mdoc_node *);
 typedef int     (*v_post)(struct mdoc *);  typedef int     (*v_post)(struct mdoc *);
   
   /* FIXME: some sections should only occur in specific msecs. */
   /* FIXME: ignoring Pp. */
   /* FIXME: .Ef arguments */
   /* FIXME: math symbols. */
   /* FIXME: valid character-escape checks. */
   /* FIXME: .Fd only in synopsis section. */
   
 struct  valids {  struct  valids {
         v_pre   *pre;          v_pre   *pre;
         v_post  *post;          v_post  *post;
 };  };
   
   /* Utility checks. */
   
   static  int     check_parent(struct mdoc *, struct mdoc_node *,
                           int, enum mdoc_type);
   static  int     check_msec(struct mdoc *, struct mdoc_node *,
                           int, enum mdoc_msec *);
   static  int     check_stdarg(struct mdoc *, struct mdoc_node *);
   static  int     err_child_lt(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     err_child_eq(struct mdoc *, const char *, int);
   static  int     warn_child_eq(struct mdoc *, const char *, int);
   
   /* Utility auxiliaries. */
   
   static  inline int count_child(struct mdoc *);
   static  inline int warn_count(struct mdoc *, const char *,
                           int, const char *, int);
   static  inline int err_count(struct mdoc *, const char *,
                           int, const char *, int);
   
   /* Specific pre-child-parse routines. */
   
 static  int     pre_display(struct mdoc *, struct mdoc_node *);  static  int     pre_display(struct mdoc *, struct mdoc_node *);
   static  int     pre_sh(struct mdoc *, struct mdoc_node *);
   static  int     pre_ss(struct mdoc *, struct mdoc_node *);
 static  int     pre_bd(struct mdoc *, struct mdoc_node *);  static  int     pre_bd(struct mdoc *, struct mdoc_node *);
 static  int     pre_bl(struct mdoc *, struct mdoc_node *);  static  int     pre_bl(struct mdoc *, struct mdoc_node *);
 static  int     pre_it(struct mdoc *, struct mdoc_node *);  static  int     pre_it(struct mdoc *, struct mdoc_node *);
   static  int     pre_cd(struct mdoc *, struct mdoc_node *);
   static  int     pre_er(struct mdoc *, struct mdoc_node *);
   static  int     pre_ex(struct mdoc *, struct mdoc_node *);
   static  int     pre_rv(struct mdoc *, struct mdoc_node *);
   static  int     pre_an(struct mdoc *, struct mdoc_node *);
   static  int     pre_st(struct mdoc *, struct mdoc_node *);
 static  int     pre_prologue(struct mdoc *, struct mdoc_node *);  static  int     pre_prologue(struct mdoc *, struct mdoc_node *);
 static  int     pre_prologue(struct mdoc *, struct mdoc_node *);  static  int     pre_prologue(struct mdoc *, struct mdoc_node *);
 static  int     pre_prologue(struct mdoc *, struct mdoc_node *);  static  int     pre_prologue(struct mdoc *, struct mdoc_node *);
   
 static  int     headchild_err_ge1(struct mdoc *);  /* Specific post-child-parse routines. */
 static  int     headchild_err_eq0(struct mdoc *);  
 static  int     elemchild_err_ge1(struct mdoc *);  static  int     herr_ge1(struct mdoc *);
 static  int     elemchild_warn_eq0(struct mdoc *);  static  int     herr_le1(struct mdoc *);
 static  int     bodychild_warn_ge1(struct mdoc *);  static  int     herr_eq0(struct mdoc *);
   static  int     eerr_eq0(struct mdoc *);
   static  int     eerr_le1(struct mdoc *);
   static  int     eerr_le2(struct mdoc *);
   static  int     eerr_eq1(struct mdoc *);
   static  int     eerr_ge1(struct mdoc *);
   static  int     ewarn_eq0(struct mdoc *);
   static  int     ewarn_eq1(struct mdoc *);
   static  int     bwarn_ge1(struct mdoc *);
   static  int     ewarn_ge1(struct mdoc *);
   static  int     ebool(struct mdoc *);
 static  int     post_sh(struct mdoc *);  static  int     post_sh(struct mdoc *);
   static  int     post_sh_body(struct mdoc *);
   static  int     post_sh_head(struct mdoc *);
 static  int     post_bl(struct mdoc *);  static  int     post_bl(struct mdoc *);
 static  int     post_it(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 *);
   
   /* Collections of pre-child-parse routines. */
   
 static  v_pre   pres_prologue[] = { pre_prologue, NULL };  static  v_pre   pres_prologue[] = { pre_prologue, NULL };
 static  v_pre   pres_d1[] = { pre_display, NULL };  static  v_pre   pres_d1[] = { pre_display, NULL };
 static  v_pre   pres_bd[] = { pre_display, pre_bd, NULL };  static  v_pre   pres_bd[] = { pre_display, pre_bd, NULL };
 static  v_pre   pres_bl[] = { pre_bl, NULL };  static  v_pre   pres_bl[] = { pre_bl, NULL };
 static  v_pre   pres_it[] = { pre_it, NULL };  static  v_pre   pres_it[] = { pre_it, NULL };
 static  v_post  posts_bd[] = { headchild_err_eq0,  static  v_pre   pres_ss[] = { pre_ss, NULL };
                         bodychild_warn_ge1, NULL };  static  v_pre   pres_sh[] = { pre_sh, NULL };
   static  v_pre   pres_cd[] = { pre_cd, NULL };
   static  v_pre   pres_er[] = { pre_er, NULL };
   static  v_pre   pres_ex[] = { pre_ex, NULL };
   static  v_pre   pres_rv[] = { pre_rv, NULL };
   static  v_pre   pres_an[] = { pre_an, NULL };
   static  v_pre   pres_st[] = { pre_st, NULL };
   
 static  v_post  posts_sh[] = { headchild_err_ge1,  /* Collections of post-child-parse routines. */
                         bodychild_warn_ge1, post_sh, NULL };  
 static  v_post  posts_bl[] = { headchild_err_eq0,  static  v_post  posts_bool[] = { eerr_eq1, ebool, NULL };
                         bodychild_warn_ge1, post_bl, NULL };  static  v_post  posts_bd[] = { herr_eq0, bwarn_ge1, NULL };
   static  v_post  posts_text[] = { eerr_ge1, NULL };
   static  v_post  posts_wtext[] = { ewarn_ge1, NULL };
   static  v_post  posts_notext[] = { eerr_eq0, NULL };
   static  v_post  posts_wline[] = { bwarn_ge1, herr_eq0, NULL };
   static  v_post  posts_sh[] = { herr_ge1, bwarn_ge1, post_sh, NULL };
   static  v_post  posts_bl[] = { herr_eq0, bwarn_ge1, post_bl, NULL };
 static  v_post  posts_it[] = { post_it, NULL };  static  v_post  posts_it[] = { post_it, NULL };
 static  v_post  posts_ss[] = { headchild_err_ge1, NULL };  static  v_post  posts_in[] = { ewarn_eq1, NULL };
 static  v_post  posts_pp[] = { elemchild_warn_eq0, NULL };  static  v_post  posts_ss[] = { herr_ge1, NULL };
 static  v_post  posts_dd[] = { elemchild_err_ge1, NULL };  static  v_post  posts_pf[] = { eerr_eq1, NULL };
 static  v_post  posts_d1[] = { headchild_err_ge1, NULL };  static  v_post  posts_pp[] = { ewarn_eq0, NULL };
   static  v_post  posts_ex[] = { eerr_le1, post_ex, NULL };
   static  v_post  posts_an[] = { post_an, 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_nm[] = { post_nm, NULL };
   static  v_post  posts_bf[] = { herr_le1, post_bf, NULL };
   static  v_post  posts_rs[] = { herr_eq0, bwarn_ge1, NULL };
   static  v_post  posts_fo[] = { bwarn_ge1, NULL };
   static  v_post  posts_bk[] = { herr_eq0, bwarn_ge1, NULL };
   
   /* Per-macro pre- and post-child-check routine collections. */
   
 const   struct valids mdoc_valids[MDOC_MAX] = {  const   struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, NULL }, /* \" */          { NULL, NULL },                         /* \" */
         { pres_prologue, posts_dd }, /* Dd */          { pres_prologue, posts_text },          /* Dd */
         { pres_prologue, NULL }, /* Dt */          { pres_prologue, NULL },                /* Dt */
         { pres_prologue, NULL }, /* Os */          { pres_prologue, NULL },                /* Os */
         { NULL, posts_sh }, /* Sh */ /* FIXME: preceding Pp. */          { pres_sh, posts_sh },                  /* Sh */
         { NULL, posts_ss }, /* Ss */ /* FIXME: preceding Pp. */          { pres_ss, posts_ss },                  /* Ss */
         { NULL, posts_pp }, /* Pp */ /* FIXME: proceeding... */          { NULL, posts_pp },                     /* Pp */
         { pres_d1, posts_d1 }, /* D1 */          { pres_d1, posts_wline },               /* D1 */
         { pres_d1, posts_d1 }, /* Dl */          { pres_d1, posts_wline },               /* Dl */
         { pres_bd, posts_bd }, /* Bd */ /* FIXME: preceding Pp. */          { pres_bd, posts_bd },                  /* Bd */
         { NULL, NULL }, /* Ed */          { NULL, NULL },                         /* Ed */
         { pres_bl, posts_bl }, /* Bl */ /* FIXME: preceding Pp. */          { pres_bl, posts_bl },                  /* Bl */
         { NULL, NULL }, /* El */          { NULL, NULL },                         /* El */
         { pres_it, posts_it }, /* It */          { pres_it, posts_it },                  /* It */
         { NULL, NULL }, /* Ad */          { NULL, posts_text },                   /* Ad */
         { NULL, NULL }, /* An */          { pres_an, posts_an },                  /* An */
         { NULL, NULL }, /* Ar */          { NULL, NULL },                         /* Ar */
         { NULL, NULL }, /* Cd */          { pres_cd, posts_text },                /* Cd */
         { NULL, NULL }, /* Cm */          { NULL, NULL },                         /* Cm */
         { NULL, NULL }, /* Dv */          { NULL, posts_text },                   /* Dv */
         { NULL, NULL }, /* Er */          { pres_er, posts_text },                /* Er */
         { NULL, NULL }, /* Ev */          { NULL, posts_text },                   /* Ev */
         { NULL, NULL }, /* Ex */          { pres_ex, posts_ex },                  /* Ex */
         { NULL, NULL }, /* Fa */          { NULL, posts_text },                   /* Fa */
         { NULL, NULL }, /* Fd */          { NULL, posts_wtext },                  /* Fd */
         { NULL, NULL }, /* Fl */          { NULL, NULL },                         /* Fl */
         { NULL, NULL }, /* Fn */          { NULL, posts_text },                   /* Fn */
         { NULL, NULL }, /* Ft */          { NULL, posts_wtext },                  /* Ft */
         { NULL, NULL }, /* Ic */          { NULL, posts_text },                   /* Ic */
         { NULL, NULL }, /* In */          { NULL, posts_in },                     /* In */
         { NULL, NULL }, /* Li */          { NULL, posts_text },                   /* Li */
         { NULL, NULL }, /* Nd */          { NULL, posts_wtext },                  /* Nd */
         { NULL, NULL }, /* Nm */          { NULL, posts_nm },                     /* Nm */
         { NULL, NULL }, /* Op */          { NULL, posts_wline },                  /* Op */
         { NULL, NULL }, /* Ot */          { NULL, NULL },                         /* Ot */
         { NULL, NULL }, /* Pa */          { NULL, NULL },                         /* Pa */
         { NULL, NULL }, /* Rv */          { pres_rv, posts_notext },              /* Rv */
         { NULL, NULL }, /* St */          { pres_st, posts_notext },              /* St */
         { NULL, NULL }, /* Va */          { NULL, posts_text },                   /* Va */
         { NULL, NULL }, /* Vt */          { NULL, posts_text },                   /* Vt */
         { NULL, NULL }, /* Xr */          { NULL, posts_xr },                     /* Xr */
         { NULL, NULL }, /* %A */          { NULL, posts_text },                   /* %A */
         { NULL, NULL }, /* %B */          { NULL, posts_text },                   /* %B */
         { NULL, NULL }, /* %D */          { NULL, posts_text },                   /* %D */
         { NULL, NULL }, /* %I */          { NULL, posts_text },                   /* %I */
         { NULL, NULL }, /* %J */          { NULL, posts_text },                   /* %J */
         { NULL, NULL }, /* %N */          { NULL, posts_text },                   /* %N */
         { NULL, NULL }, /* %O */          { NULL, posts_text },                   /* %O */
         { NULL, NULL }, /* %P */          { NULL, posts_text },                   /* %P */
         { NULL, NULL }, /* %R */          { NULL, posts_text },                   /* %R */
         { NULL, NULL }, /* %T */          { NULL, posts_text },                   /* %T */
         { NULL, NULL }, /* %V */          { NULL, posts_text },                   /* %V */
         { NULL, NULL }, /* Ac */          { NULL, NULL },                         /* Ac */
         { NULL, NULL }, /* Ao */          { NULL, NULL },                         /* Ao */
         { NULL, NULL }, /* Aq */          { NULL, posts_wline },                  /* Aq */
         { NULL, NULL }, /* At */ /* FIXME */          { NULL, posts_at },                     /* At */
         { NULL, NULL }, /* Bc */          { NULL, NULL },                         /* Bc */
         { NULL, NULL }, /* Bf */          { NULL, posts_bf },                     /* Bf */
         { NULL, NULL }, /* Bo */          { NULL, NULL },                         /* Bo */
         { NULL, NULL }, /* Bq */          { NULL, posts_wline },                  /* Bq */
         { NULL, NULL }, /* Bsx */          { NULL, NULL },                         /* Bsx */
         { NULL, NULL }, /* Bx */          { NULL, NULL },                         /* Bx */
         { NULL, NULL }, /* Db */          { NULL, posts_bool },                   /* Db */
         { NULL, NULL }, /* Dc */          { NULL, NULL },                         /* Dc */
         { NULL, NULL }, /* Do */          { NULL, NULL },                         /* Do */
         { NULL, NULL }, /* Dq */          { NULL, posts_wline },                  /* Dq */
         { NULL, NULL }, /* Ec */          { NULL, NULL },                         /* Ec */
         { NULL, NULL }, /* Ef */ /* -symbolic, etc. */          { NULL, NULL },                         /* Ef */
         { NULL, NULL }, /* Em */          { NULL, posts_text },                   /* Em */
         { NULL, NULL }, /* Eo */          { NULL, NULL },                         /* Eo */
         { NULL, NULL }, /* Fx */          { NULL, NULL },                         /* Fx */
         { NULL, NULL }, /* Ms */          { NULL, posts_text },                   /* Ms */
         { NULL, NULL }, /* No */          { NULL, posts_notext },                 /* No */
         { NULL, NULL }, /* Ns */          { NULL, posts_notext },                 /* Ns */
         { NULL, NULL }, /* Nx */          { NULL, NULL },                         /* Nx */
         { NULL, NULL }, /* Ox */          { NULL, NULL },                         /* Ox */
         { NULL, NULL }, /* Pc */          { NULL, NULL },                         /* Pc */
         { NULL, NULL }, /* Pf */ /* 2 or more arguments */          { NULL, posts_pf },                     /* Pf */
         { NULL, NULL }, /* Po */          { NULL, NULL },                         /* Po */
         { NULL, NULL }, /* Pq */ /* FIXME: ignore following Sh/Ss */          { NULL, posts_wline },                  /* Pq */
         { NULL, NULL }, /* Qc */          { NULL, NULL },                         /* Qc */
         { NULL, NULL }, /* Ql */          { NULL, posts_wline },                  /* Ql */
         { NULL, NULL }, /* Qo */          { NULL, NULL },                         /* Qo */
         { NULL, NULL }, /* Qq */          { NULL, posts_wline },                  /* Qq */
         { NULL, NULL }, /* Re */          { NULL, NULL },                         /* Re */
         { NULL, NULL }, /* Rs */          { NULL, posts_rs },                     /* Rs */
         { NULL, NULL }, /* Sc */          { NULL, NULL },                         /* Sc */
         { NULL, NULL }, /* So */          { NULL, NULL },                         /* So */
         { NULL, NULL }, /* Sq */          { NULL, posts_wline },                  /* Sq */
         { NULL, NULL }, /* Sm */          { NULL, posts_bool },                   /* Sm */
         { NULL, NULL }, /* Sx */          { NULL, posts_text },                   /* Sx */
         { NULL, NULL }, /* Sy */          { NULL, posts_text },                   /* Sy */
         { NULL, NULL }, /* Tn */          { NULL, posts_text },                   /* Tn */
         { NULL, NULL }, /* Ux */          { NULL, NULL },                         /* Ux */
         { NULL, NULL }, /* Xc */          { NULL, NULL },                         /* Xc */
         { NULL, NULL }, /* Xo */          { NULL, NULL },                         /* Xo */
         { NULL, NULL }, /* Fo */          { NULL, posts_fo },                     /* Fo */
         { NULL, NULL }, /* Fc */          { NULL, NULL },                         /* Fc */
         { NULL, NULL }, /* Oo */          { NULL, NULL },                         /* Oo */
         { NULL, NULL }, /* Oc */          { NULL, NULL },                         /* Oc */
         { NULL, NULL }, /* Bk */          { NULL, posts_bk },                     /* Bk */
         { NULL, NULL }, /* Ek */          { NULL, NULL },                         /* Ek */
         { NULL, NULL }, /* Bt */          { NULL, posts_notext },                 /* Bt */
         { NULL, NULL }, /* Hf */          { NULL, NULL },                         /* Hf */
         { NULL, NULL }, /* Fr */          { NULL, NULL },                         /* Fr */
         { NULL, NULL }, /* Ud */          { NULL, posts_notext },                 /* Ud */
 };  };
   
   
   static inline int
   warn_count(struct mdoc *m, const char *k,
                   int want, const char *v, int has)
   {
   
           return(mdoc_warn(m, WARN_SYNTAX, "suggests %s %d %s "
                                   "(has %d)", v, want, k, has));
   }
   
   
   static inline int
   err_count(struct mdoc *m, const char *k,
                   int want, const char *v, int has)
   {
   
           return(mdoc_err(m, "requires %s %d %s (has %d)",
                                   v, want, k, has));
   }
   
   
   static inline int
   count_child(struct mdoc *mdoc)
   {
           int               i;
           struct mdoc_node *n;
   
           for (i = 0, n = mdoc->last->child; n; n = n->next, i++)
                   /* Do nothing */ ;
           return(i);
   }
   
   
 static int  static int
 bodychild_warn_ge1(struct mdoc *mdoc)  warn_child_gt(struct mdoc *mdoc, const char *p, int sz)
 {  {
           int               i;
   
         if (MDOC_BODY != mdoc->last->type)          if ((i = count_child(mdoc)) > sz)
                 return(1);                  return(1);
         if (mdoc->last->child)          return(warn_count(mdoc, ">", sz, p, i));
   }
   
   
   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(mdoc_warn(mdoc, WARN_ARGS_GE1));          return(err_count(mdoc, ">", sz, p, i));
 }  }
   
   
 static int  static int
 elemchild_warn_eq0(struct mdoc *mdoc)  warn_child_eq(struct mdoc *mdoc, const char *p, int sz)
 {  {
           int               i;
   
         assert(MDOC_ELEM == mdoc->last->type);          if ((i = count_child(mdoc)) == sz)
         if (NULL == mdoc->last->child)  
                 return(1);                  return(1);
         return(mdoc_pwarn(mdoc, mdoc->last->child->line,          return(warn_count(mdoc, "==", sz, p, i));
                         mdoc->last->child->pos, WARN_ARGS_EQ0));  
 }  }
   
   
 static int  static int
 elemchild_err_ge1(struct mdoc *mdoc)  err_child_eq(struct mdoc *mdoc, const char *p, int sz)
 {  {
           int               i;
   
         assert(MDOC_ELEM == mdoc->last->type);          if ((i = count_child(mdoc)) == sz)
         if (mdoc->last->child)  
                 return(1);                  return(1);
         return(mdoc_err(mdoc, ERR_ARGS_GE1));          return(err_count(mdoc, "==", sz, p, i));
 }  }
   
   
 static int  static int
 headchild_err_eq0(struct mdoc *mdoc)  err_child_lt(struct mdoc *mdoc, const char *p, int sz)
 {  {
           int               i;
   
         if (MDOC_HEAD != mdoc->last->type)          if ((i = count_child(mdoc)) < sz)
                 return(1);                  return(1);
         if (NULL == mdoc->last->child)          return(err_count(mdoc, "<", sz, p, i));
   }
   
   
   static int
   check_stdarg(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           if (MDOC_Std == node->data.elem.argv[0].arg &&
                           1 == node->data.elem.argc)
                 return(1);                  return(1);
         return(mdoc_perr(mdoc, mdoc->last->child->line,  
                         mdoc->last->child->pos, ERR_ARGS_EQ0));          return(mdoc_nwarn(mdoc, node, WARN_COMPAT,
                                   "macro suggests single `%s' argument",
                                   mdoc_argnames[MDOC_Std]));
 }  }
   
   
 static int  static int
 headchild_err_ge1(struct mdoc *mdoc)  check_msec(struct mdoc *mdoc, struct mdoc_node *node,
                   int sz, enum mdoc_msec *msecs)
 {  {
           int              i;
   
           for (i = 0; i < sz; i++)
                   if (msecs[i] == mdoc->meta.msec)
                           return(1);
           return(mdoc_nwarn(mdoc, node, WARN_COMPAT, "macro not "
                                   "appropriate for manual section"));
   }
   
   
   static int
   check_parent(struct mdoc *mdoc, struct mdoc_node *n,
                   int tok, enum mdoc_type t)
   {
   
           assert(n->parent);
           if ((MDOC_ROOT == t || tok == n->parent->tok) &&
                           (t == n->parent->type))
                   return(1);
   
           return(mdoc_nerr(mdoc, n, "require parent %s (have %s)",
                           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)
   {
   
           if (MDOC_BODY != mdoc->last->type)
                   return(1);
           return(warn_child_gt(mdoc, "multi-line parameters", 0));
   }
   
   
   static int
   ewarn_eq1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(warn_child_eq(mdoc, "line parameters", 1));
   }
   
   
   static int
   ewarn_eq0(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(warn_child_eq(mdoc, "line parameters", 0));
   }
   
   
   static int
   ewarn_ge1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(warn_child_gt(mdoc, "line parameters", 0));
   }
   
   
   static int
   eerr_eq1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(err_child_eq(mdoc, "line parameters", 1));
   }
   
   
   static int
   eerr_le2(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(err_child_lt(mdoc, "line parameters", 3));
   }
   
   
   static int
   eerr_le1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(err_child_lt(mdoc, "line parameters", 2));
   }
   
   
   static int
   eerr_eq0(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(err_child_eq(mdoc, "line parameters", 0));
   }
   
   
   static int
   eerr_ge1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(err_child_gt(mdoc, "line parameters", 0));
   }
   
   
   static int
   herr_eq0(struct mdoc *mdoc)
   {
   
         if (MDOC_HEAD != mdoc->last->type)          if (MDOC_HEAD != mdoc->last->type)
                 return(1);                  return(1);
         if (mdoc->last->child)          return(err_child_eq(mdoc, "line parameters", 0));
   }
   
   
   static int
   herr_le1(struct mdoc *mdoc)
   {
           if (MDOC_HEAD != mdoc->last->type)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, ERR_ARGS_GE1));          return(err_child_lt(mdoc, "line parameters", 2));
 }  }
   
   
 static int  static int
   herr_ge1(struct mdoc *mdoc)
   {
   
           if (MDOC_HEAD != mdoc->last->type)
                   return(1);
           return(err_child_gt(mdoc, "line parameters", 0));
   }
   
   
   static int
 pre_display(struct mdoc *mdoc, struct mdoc_node *node)  pre_display(struct mdoc *mdoc, struct mdoc_node *node)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
Line 246  pre_display(struct mdoc *mdoc, struct mdoc_node *node)
Line 516  pre_display(struct mdoc *mdoc, struct mdoc_node *node)
         if (MDOC_BLOCK != node->type)          if (MDOC_BLOCK != node->type)
                 return(1);                  return(1);
   
         for (n = mdoc->last; n; n = n->parent)          assert(mdoc->last);
           /* LINTED */
           for (n = mdoc->last->parent; n; n = n->parent)
                 if (MDOC_BLOCK == n->type)                  if (MDOC_BLOCK == n->type)
                         if (MDOC_Bd == n->tok)                          if (MDOC_Bd == n->tok)
                                 break;                                  break;
         if (NULL == n)          if (NULL == n)
                 return(1);                  return(1);
         return(mdoc_verr(mdoc, node, ERR_SCOPE_NONEST));          return(mdoc_nerr(mdoc, node, "displays may not be nested"));
 }  }
   
   
Line 270  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
Line 542  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
         argv = NULL;          argv = NULL;
         argc = node->data.block.argc;          argc = node->data.block.argc;
   
           /* LINTED */
         for (i = type = err = 0; i < argc; i++) {          for (i = type = err = 0; i < argc; i++) {
                 argv = &node->data.block.argv[(int)i];                  argv = &node->data.block.argv[(int)i];
                 assert(argv);                  assert(argv);
Line 293  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
Line 566  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
                 case (MDOC_Ohang):                  case (MDOC_Ohang):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Inset):                  case (MDOC_Inset):
                           /* FALLTHROUGH */
                   case (MDOC_Column):
                         if (type)                          if (type)
                                 err++;                                  err++;
                         type++;                          type++;
Line 302  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
Line 577  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
                 }                  }
         }          }
         if (0 == type)          if (0 == type)
                 return(mdoc_err(mdoc, ERR_SYNTAX_ARGMISS));                  return(mdoc_err(mdoc, "no list type specified"));
         if (0 == err)          if (0 == err)
                 return(1);                  return(1);
         assert(argv);          assert(argv);
         return(mdoc_perr(mdoc, argv->line,          return(mdoc_perr(mdoc, argv->line,
                         argv->pos, ERR_SYNTAX_ARGBAD));                          argv->pos, "only one list type possible"));
 }  }
   
   
Line 325  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
Line 600  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
         argv = NULL;          argv = NULL;
         argc = node->data.block.argc;          argc = node->data.block.argc;
   
           /* LINTED */
         for (err = i = type = 0; 0 == err && i < argc; i++) {          for (err = i = type = 0; 0 == err && i < argc; i++) {
                 argv = &node->data.block.argv[(int)i];                  argv = &node->data.block.argv[(int)i];
                 assert(argv);                  assert(argv);
Line 333  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
Line 609  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Unfilled):                  case (MDOC_Unfilled):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                   case (MDOC_Filled):
                           /* FALLTHROUGH */
                 case (MDOC_Literal):                  case (MDOC_Literal):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_File):                  case (MDOC_File):
Line 345  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
Line 623  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
                 }                  }
         }          }
         if (0 == type)          if (0 == type)
                 return(mdoc_err(mdoc, ERR_SYNTAX_ARGMISS));                  return(mdoc_err(mdoc, "no display type specified"));
         if (0 == err)          if (0 == err)
                 return(1);                  return(1);
         assert(argv);          assert(argv);
         return(mdoc_perr(mdoc, argv->line,          return(mdoc_perr(mdoc, argv->line,
                         argv->pos, ERR_SYNTAX_ARGBAD));                          argv->pos, "only one display type possible"));
 }  }
   
   
 static int  static int
 pre_it(struct mdoc *mdoc, struct mdoc_node *node)  pre_ss(struct mdoc *mdoc, struct mdoc_node *node)
 {  {
   
         if (MDOC_BLOCK != mdoc->last->type)          if (MDOC_BLOCK != node->type)
                 return(1);                  return(1);
         assert(MDOC_It == mdoc->last->tok);          return(check_parent(mdoc, node, MDOC_Sh, MDOC_BODY));
   }
   
         if (MDOC_BODY != mdoc->last->parent->type)  
                 return(mdoc_verr(mdoc, node, ERR_SYNTAX_PARENTBAD));  
         if (MDOC_Bl != mdoc->last->parent->tok)  
                 return(mdoc_verr(mdoc, node, ERR_SYNTAX_PARENTBAD));  
   
         return(1);  static int
   pre_sh(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           if (MDOC_BLOCK != node->type)
                   return(1);
           return(check_parent(mdoc, node, -1, MDOC_ROOT));
 }  }
   
   
 static int  static int
   pre_st(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           assert(MDOC_ELEM == node->type);
           assert(MDOC_St == node->tok);
           if (1 == node->data.elem.argc)
                   return(1);
           return(mdoc_nerr(mdoc, node, "macro must have one argument"));
   }
   
   
   static int
   pre_an(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           assert(MDOC_ELEM == node->type);
           assert(MDOC_An == node->tok);
           if (1 >= node->data.elem.argc)
                   return(1);
           return(mdoc_nerr(mdoc, node, "macro may only have one argument"));
   }
   
   
   static int
   pre_rv(struct mdoc *mdoc, struct mdoc_node *node)
   {
           enum mdoc_msec   msecs[2];
   
           assert(MDOC_ELEM == node->type);
           assert(MDOC_Rv == node->tok);
   
           msecs[0] = MSEC_2;
           msecs[1] = MSEC_3;
           if ( ! check_msec(mdoc, node, 2, msecs))
                   return(0);
           return(check_stdarg(mdoc, node));
   }
   
   
   static int
   pre_ex(struct mdoc *mdoc, struct mdoc_node *node)
   {
           enum mdoc_msec   msecs[3];
   
           assert(MDOC_ELEM == node->type);
           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(check_stdarg(mdoc, node));
   }
   
   
   static int
   pre_er(struct mdoc *mdoc, struct mdoc_node *node)
   {
           enum mdoc_msec   msecs[1];
   
           msecs[0] = MSEC_2;
           return(check_msec(mdoc, node, 1, msecs));
   }
   
   
   static int
   pre_cd(struct mdoc *mdoc, struct mdoc_node *node)
   {
           enum mdoc_msec   msecs[1];
   
           msecs[0] = MSEC_4;
           return(check_msec(mdoc, node, 1, msecs));
   }
   
   
   static int
   pre_it(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           /* TODO: -width attribute must be specified for -tag. */
           /* TODO: children too big for -width? */
   
           if (MDOC_BLOCK != node->type)
                   return(1);
           return(check_parent(mdoc, node, MDOC_Bl, MDOC_BODY));
   }
   
   
   static int
 pre_prologue(struct mdoc *mdoc, struct mdoc_node *node)  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node)
 {  {
   
         if (SEC_PROLOGUE != mdoc->sec_lastn)          if (SEC_PROLOGUE != mdoc->lastnamed)
                 return(mdoc_verr(mdoc, node, ERR_SEC_NPROLOGUE));                  return(mdoc_nerr(mdoc, node, "macro may only be invoked in the prologue"));
         assert(MDOC_ELEM == node->type);          assert(MDOC_ELEM == node->type);
   
         /* Check for ordering. */          /* Check for ordering. */
   
         switch (node->tok) {          switch (node->tok) {
         case (MDOC_Os):          case (MDOC_Os):
                 if (mdoc->meta.title[0] && mdoc->meta.date)                  if (mdoc->meta.title && mdoc->meta.date)
                         break;                          break;
                 return(mdoc_verr(mdoc, node, ERR_SEC_PROLOGUE_OO));                  return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));
         case (MDOC_Dt):          case (MDOC_Dt):
                 if (0 == mdoc->meta.title[0] && mdoc->meta.date)                  if (NULL == mdoc->meta.title && mdoc->meta.date)
                         break;                          break;
                 return(mdoc_verr(mdoc, node, ERR_SEC_PROLOGUE_OO));                  return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));
         case (MDOC_Dd):          case (MDOC_Dd):
                 if (0 == mdoc->meta.title[0] && 0 == mdoc->meta.date)                  if (NULL == mdoc->meta.title && 0 == mdoc->meta.date)
                         break;                          break;
                 return(mdoc_verr(mdoc, node, ERR_SEC_PROLOGUE_OO));                  return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
Line 403  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 774  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
   
         switch (node->tok) {          switch (node->tok) {
         case (MDOC_Os):          case (MDOC_Os):
                 if (0 == mdoc->meta.os[0])                  if (NULL == mdoc->meta.os)
                         return(1);                          return(1);
                 break;                  break;
         case (MDOC_Dd):          case (MDOC_Dd):
Line 411  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 782  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
                         return(1);                          return(1);
                 break;                  break;
         case (MDOC_Dt):          case (MDOC_Dt):
                 if (0 == mdoc->meta.title[0])                  if (NULL == mdoc->meta.title)
                         return(1);                          return(1);
                 break;                  break;
         default:          default:
Line 419  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 790  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         return(mdoc_verr(mdoc, node, ERR_SEC_PROLOGUE_REP));          return(mdoc_nerr(mdoc, node, "prologue macro repeated"));
 }  }
   
   
   static int
   post_bf(struct mdoc *mdoc)
   {
           char             *p;
           struct mdoc_node *head;
   
           if (MDOC_BLOCK != mdoc->last->type)
                   return(1);
           assert(MDOC_Bf == mdoc->last->tok);
           head = mdoc->last->data.block.head;
           assert(head);
   
           if (0 == mdoc->last->data.block.argc) {
                   if (head->child) {
                           assert(MDOC_TEXT == head->child->type);
                           p = head->child->data.text.string;
                           if (xstrcmp(p, "Em"))
                                   return(1);
                           else if (xstrcmp(p, "Li"))
                                   return(1);
                           else if (xstrcmp(p, "Sm"))
                                   return(1);
                           return(mdoc_nerr(mdoc, head->child, "invalid font mode"));
                   }
                   return(mdoc_err(mdoc, "macro expects an argument or parameter"));
           }
           if (head->child)
                   return(mdoc_err(mdoc, "macro expects an argument or parameter"));
           if (1 == mdoc->last->data.block.argc)
                   return(1);
           return(mdoc_err(mdoc, "macro expects an argument or parameter"));
   }
   
   
   static int
   post_nm(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           assert(MDOC_Nm == mdoc->last->tok);
           if (mdoc->last->child)
                   return(1);
           if (mdoc->meta.name)
                   return(1);
           return(mdoc_err(mdoc, "macro `%s' has not been invoked with a name",
                                   mdoc_macronames[MDOC_Nm]));
   }
   
   
   static int
   post_xr(struct mdoc *mdoc)
   {
           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))
                   return(1);
           assert(MDOC_TEXT == n->type);
           if (MSEC_DEFAULT != mdoc_atomsec(n->data.text.string))
                   return(1);
           return(mdoc_nerr(mdoc, n, "invalid manual section"));
   }
   
   
   static int
   post_at(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           assert(MDOC_At == mdoc->last->tok);
   
           if (NULL == mdoc->last->child)
                   return(1);
           assert(MDOC_TEXT == mdoc->last->child->type);
   
           if (ATT_DEFAULT != mdoc_atoatt(mdoc->last->child->data.text.string))
                   return(1);
           return(mdoc_err(mdoc, "macro expects a valid AT&T version symbol"));
   }
   
   
   static int
   post_an(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           assert(MDOC_An == mdoc->last->tok);
   
           if (0 != mdoc->last->data.elem.argc) {
                   if (NULL == mdoc->last->child)
                           return(1);
                   return(mdoc_err(mdoc, "macro expects either argument or parameters"));
           }
   
           if (mdoc->last->child)
                   return(1);
           return(mdoc_err(mdoc, "macro expects either argument or parameters"));
   }
   
   
   static int
   post_ex(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           assert(MDOC_Ex == mdoc->last->tok);
   
           if (0 == mdoc->last->data.elem.argc) {
                   if (mdoc->last->child)
                           return(1);
                   return(mdoc_err(mdoc, "macro expects `%s' or a single child",
                                           mdoc_argnames[MDOC_Std]));
           }
           if (mdoc->last->child)
                   return(mdoc_err(mdoc, "macro expects `%s' or a single child",
                                           mdoc_argnames[MDOC_Std]));
           if (1 != mdoc->last->data.elem.argc)
                   return(mdoc_err(mdoc, "macro expects `%s' or a single child",
                                           mdoc_argnames[MDOC_Std]));
           if (MDOC_Std != mdoc->last->data.elem.argv[0].arg)
                   return(mdoc_err(mdoc, "macro expects `%s' or a single child",
                                           mdoc_argnames[MDOC_Std]));
           return(1);
   }
   
   
 /* Warn if `Bl' type-specific syntax isn't reflected in items. */  /* Warn if `Bl' type-specific syntax isn't reflected in items. */
 static int  static int
 post_it(struct mdoc *mdoc)  post_it(struct mdoc *mdoc)
Line 431  post_it(struct mdoc *mdoc)
Line 932  post_it(struct mdoc *mdoc)
 #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)
         size_t            i, argc;          size_t            i, argc;
         struct mdoc_node *n;          struct mdoc_node *n;
   
Line 449  post_it(struct mdoc *mdoc)
Line 951  post_it(struct mdoc *mdoc)
   
         argc = n->data.block.argc;          argc = n->data.block.argc;
         type = TYPE_NONE;          type = TYPE_NONE;
           sv = -1;
   
           /* Some types require block-head, some not. */
   
           /* LINTED */
         for (i = 0; TYPE_NONE == type && i < argc; i++)          for (i = 0; TYPE_NONE == type && i < argc; i++)
                 switch (n->data.block.argv[(int)i].arg) {                  switch (n->data.block.argv[(int)i].arg) {
                 case (MDOC_Tag):                  case (MDOC_Tag):
Line 473  post_it(struct mdoc *mdoc)
Line 979  post_it(struct mdoc *mdoc)
                 case (MDOC_Hyphen):                  case (MDOC_Hyphen):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Item):                  case (MDOC_Item):
                         /* FALLTHROUGH */  
                 case (MDOC_Column):  
                         type = TYPE_BODY;                          type = TYPE_BODY;
                         sv = n->data.block.argv[(int)i].arg;                          sv = n->data.block.argv[(int)i].arg;
                         break;                          break;
                   case (MDOC_Column):
                           type = TYPE_OHEAD;
                           sv = n->data.block.argv[(int)i].arg;
                           break;
                 default:                  default:
                         break;                          break;
                 }                  }
   
         assert(TYPE_NONE != type);          assert(TYPE_NONE != type);
   
           n = mdoc->last->data.block.head;
           assert(n);
   
         if (TYPE_HEAD == type) {          if (TYPE_HEAD == type) {
                 if (NULL == (n = mdoc->last->data.block.head)) {                  if (NULL == n->child)
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYHEAD))                          if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests line parameters"))
                                 return(0);                                  return(0);
                 } else if (NULL == n->child)  
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYHEAD))                  n = mdoc->last->data.block.body;
                   assert(n);
                   if (NULL == n->child)
                           if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests body children"))
                                 return(0);                                  return(0);
   
                 if (NULL == (n = mdoc->last->data.block.body)) {          } else if (TYPE_BODY == type) {
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYBODY))                  if (n->child)
                           if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests no line parameters"))
                                 return(0);                                  return(0);
                 } else if (NULL == n->child)  
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYBODY))                  n = mdoc->last->data.block.body;
                   assert(n);
                   if (NULL == n->child)
                           if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests body children"))
                                 return(0);                                  return(0);
           } else {
                   if (NULL == n->child)
                           if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests line parameters"))
                                   return(0);
   
                   n = mdoc->last->data.block.body;
                   assert(n);
                   if (n->child)
                           if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests no body children"))
                                   return(0);
           }
   
           if (MDOC_Column != sv)
                 return(1);                  return(1);
         }  
   
         if (NULL == (n = mdoc->last->data.block.head)) {          /* Make sure the number of columns is sane. */
                 if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYHEAD))  
                         return(0);  
         } else if (NULL == n->child)  
                 if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYHEAD))  
                         return(0);  
   
         if ((n = mdoc->last->data.block.body) && n->child)          argc = mdoc->last->parent->parent->data.block.argv->sz;
                 if ( ! mdoc_warn(mdoc, WARN_SYNTAX_NOBODY))          n = mdoc->last->data.block.head->child;
                         return(0);  
   
         /* TODO: make sure columns are aligned. */          for (i = 0; n; n = n->next)
         assert(MDOC_Column != sv);                  i++;
   
         return(1);          if (i == argc)
                   return(1);
           return(mdoc_err(mdoc, "expected %zu list columns, have %zu", argc, i));
 #undef  TYPE_NONE  #undef  TYPE_NONE
 #undef  TYPE_BODY  #undef  TYPE_BODY
 #undef  TYPE_HEAD  #undef  TYPE_HEAD
   #undef  TYPE_OHEAD
 }  }
   
   
 /* Make sure that only `It' macros are our body-children. */  
 static int  static int
 post_bl(struct mdoc *mdoc)  post_bl(struct mdoc *mdoc)
 {  {
Line 534  post_bl(struct mdoc *mdoc)
Line 1058  post_bl(struct mdoc *mdoc)
                 return(1);                  return(1);
         assert(MDOC_Bl == mdoc->last->tok);          assert(MDOC_Bl == mdoc->last->tok);
   
           /* 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)
Line 542  post_bl(struct mdoc *mdoc)
Line 1067  post_bl(struct mdoc *mdoc)
         }          }
         if (NULL == n)          if (NULL == n)
                 return(1);                  return(1);
         return(mdoc_verr(mdoc, n, ERR_SYNTAX_CHILDBAD));          return(mdoc_nerr(mdoc, n, "invalid child of parent macro `Bl'"));
 }  }
   
   
 /* Warn if conventional sections are out of order. */  
 static int  static int
 post_sh(struct mdoc *mdoc)  ebool(struct mdoc *mdoc)
 {  {
         enum mdoc_sec     sec;  
         int               i;  
         struct mdoc_node *n;          struct mdoc_node *n;
         char             *args[MDOC_LINEARG_MAX];  
   
         if (MDOC_HEAD != mdoc->last->type)          assert(MDOC_ELEM == mdoc->last->type);
           /* LINTED */
           for (n = mdoc->last->child; n; n = n->next) {
                   if (MDOC_TEXT != n->type)
                           break;
                   if (xstrcmp(n->data.text.string, "on"))
                           continue;
                   if (xstrcmp(n->data.text.string, "off"))
                           continue;
                   break;
           }
           if (NULL == n)
                 return(1);                  return(1);
           return(mdoc_nerr(mdoc, n, "expected boolean value"));
   }
   
   
   static int
   post_root(struct mdoc *mdoc)
   {
   
           if (NULL == mdoc->first->child)
                   return(mdoc_err(mdoc, "document has no data"));
           if (SEC_PROLOGUE == mdoc->lastnamed)
                   return(mdoc_err(mdoc, "document has incomplete prologue"));
           if (MDOC_BLOCK != mdoc->first->child->type)
                   return(mdoc_err(mdoc, "document expects `%s' macro after prologue", mdoc_macronames[MDOC_Sh]));
           if (MDOC_Sh != mdoc->first->child->tok)
                   return(mdoc_err(mdoc, "document expects `%s' macro after prologue", mdoc_macronames[MDOC_Sh]));
           return(1);
   }
   
   
   static int
   post_sh(struct mdoc *mdoc)
   {
   
           if (MDOC_HEAD == mdoc->last->type)
                   return(post_sh_head(mdoc));
           if (MDOC_BODY == mdoc->last->type)
                   return(post_sh_body(mdoc));
           return(1);
   }
   
   
   static int
   post_sh_body(struct mdoc *mdoc)
   {
           struct mdoc_node *n;
   
         assert(MDOC_Sh == mdoc->last->tok);          assert(MDOC_Sh == mdoc->last->tok);
           assert(MDOC_BODY == mdoc->last->type);
           if (SEC_NAME != mdoc->lastnamed)
                   return(1);
   
         n = mdoc->last->child;          /*
         assert(n);           * Warn if the NAME section doesn't contain the `Nm' and `Nd'
            * macros (can have multiple `Nm' and one `Nd').  Note that the
            * children of the BODY declaration can also be "text".
            */
   
         for (i = 0; n && i < MDOC_LINEARG_MAX; n = n->next, i++) {          if (NULL == (n = mdoc->last->child))
                 assert(MDOC_TEXT == n->type);                  return(mdoc_warn(mdoc, WARN_COMPAT, "section NAME "
                 assert(NULL == n->child);                                          "should contain %s and %s",
                 assert(n->data.text.string);                                          mdoc_macronames[MDOC_Nm],
                 args[i] = n->data.text.string;                                          mdoc_macronames[MDOC_Nd]));
   
           for ( ; n && n->next; n = n->next) {
                   if (MDOC_ELEM == n->type && MDOC_Nm == n->tok)
                           continue;
                   if (MDOC_TEXT == n->type)
                           continue;
                   if ( ! (mdoc_nwarn(mdoc, n, WARN_COMPAT, "section "
                                           "NAME should contain %s as "
                                           "initial body child",
                                           mdoc_macronames[MDOC_Nm])))
                           return(0);
         }          }
   
         sec = mdoc_atosec((size_t)i, (const char **)args);          if (MDOC_ELEM == n->type && MDOC_Nd == n->tok)
                   return(1);
   
           return(mdoc_warn(mdoc, WARN_COMPAT, "section NAME should "
                                   "contain %s as the last child",
                                   mdoc_macronames[MDOC_Nd]));
   }
   
   
   static int
   post_sh_head(struct mdoc *mdoc)
   {
           char              buf[64];
           enum mdoc_sec     sec;
   
           assert(MDOC_Sh == mdoc->last->tok);
   
           if ( ! xstrlcats(buf, mdoc->last->child, 64))
                   return(mdoc_err(mdoc, "macro parameters too long"));
   
           sec = mdoc_atosec(buf);
   
           if (SEC_BODY == mdoc->lastnamed && SEC_NAME != sec)
                   return(mdoc_err(mdoc, "section NAME must be first"));
         if (SEC_CUSTOM == sec)          if (SEC_CUSTOM == sec)
                 return(1);                  return(1);
         if (sec > mdoc->sec_lastn)          if (sec == mdoc->lastnamed)
                 return(1);                  return(mdoc_warn(mdoc, WARN_SYNTAX, "section repeated"));
           if (sec < mdoc->lastnamed)
                   return(mdoc_warn(mdoc, WARN_SYNTAX, "section out of conventional order"));
   
         if (sec == mdoc->sec_lastn)          return(1);
                 return(mdoc_warn(mdoc, WARN_SEC_REP));  
         return(mdoc_warn(mdoc, WARN_SEC_OO));  
 }  }
   
   
Line 587  mdoc_valid_pre(struct mdoc *mdoc, struct mdoc_node *no
Line 1195  mdoc_valid_pre(struct mdoc *mdoc, struct mdoc_node *no
 {  {
         v_pre           *p;          v_pre           *p;
   
         /* TODO: character-escape checks. */  
   
         if (MDOC_TEXT == node->type)          if (MDOC_TEXT == node->type)
                 return(1);                  return(1);
         assert(MDOC_ROOT != node->type);          assert(MDOC_ROOT != node->type);
Line 607  mdoc_valid_post(struct mdoc *mdoc)
Line 1213  mdoc_valid_post(struct mdoc *mdoc)
 {  {
         v_post          *p;          v_post          *p;
   
           if (MDOC_VALID & mdoc->last->flags)
                   return(1);
           mdoc->last->flags |= MDOC_VALID;
   
         if (MDOC_TEXT == mdoc->last->type)          if (MDOC_TEXT == mdoc->last->type)
                 return(1);                  return(1);
         if (MDOC_ROOT == mdoc->last->type)          if (MDOC_ROOT == mdoc->last->type)
                 return(1);                  return(post_root(mdoc));
   
         if (NULL == mdoc_valids[mdoc->last->tok].post)          if (NULL == mdoc_valids[mdoc->last->tok].post)
                 return(1);                  return(1);

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

CVSweb