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

Diff for /mandoc/Attic/validate.c between version 1.29 and 1.35

version 1.29, 2009/01/15 15:46:45 version 1.35, 2009/01/16 15:58:50
Line 31  struct valids {
Line 31  struct valids {
         v_post  *post;          v_post  *post;
 };  };
   
   static  int     pre_check_parent(struct mdoc *, struct mdoc_node *,
                           int, enum mdoc_type);
   static  int     pre_check_msecs(struct mdoc *, struct mdoc_node *,
                           int, enum mdoc_msec *);
   
 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_an(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 *);  static  int     head_err_ge1(struct mdoc *);
 static  int     headchild_warn_ge1(struct mdoc *);  static  int     head_warn_ge1(struct mdoc *);
 static  int     headchild_err_eq0(struct mdoc *);  static  int     head_err_eq0(struct mdoc *);
 static  int     elemchild_err_eq0(struct mdoc *);  static  int     elem_err_eq0(struct mdoc *);
 static  int     elemchild_err_ge1(struct mdoc *);  static  int     elem_err_le1(struct mdoc *);
 static  int     elemchild_warn_eq0(struct mdoc *);  static  int     elem_err_eq1(struct mdoc *);
 static  int     bodychild_warn_ge1(struct mdoc *);  static  int     elem_err_ge1(struct mdoc *);
 static  int     bodychild_err_eq0(struct mdoc *);  static  int     elem_warn_eq0(struct mdoc *);
 static  int     elemchild_warn_ge1(struct mdoc *);  static  int     body_warn_ge1(struct mdoc *);
   static  int     body_err_eq0(struct mdoc *);
   static  int     elem_warn_ge1(struct mdoc *);
   static  int     elem_bool(struct mdoc *);
 static  int     post_sh(struct mdoc *);  static  int     post_sh(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  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_pre   pres_ss[] = { pre_ss, 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_an[] = { pre_an, NULL };
   
 static  v_post  posts_bd[] = { headchild_err_eq0, bodychild_warn_ge1, NULL };  static  v_post  posts_bool[] = { elem_err_eq1, elem_bool, NULL };
 static  v_post  posts_text[] = { elemchild_err_ge1, NULL };  static  v_post  posts_bd[] = { head_err_eq0, body_warn_ge1, NULL };
 static  v_post  posts_wtext[] = { elemchild_warn_ge1, NULL };  static  v_post  posts_text[] = { elem_err_ge1, NULL };
 static  v_post  posts_notext[] = { elemchild_err_eq0, NULL };  static  v_post  posts_wtext[] = { elem_warn_ge1, NULL };
 static  v_post  posts_wline[] = { headchild_warn_ge1, bodychild_err_eq0, NULL };  static  v_post  posts_notext[] = { elem_err_eq0, NULL };
 static  v_post  posts_sh[] = { headchild_err_ge1, bodychild_warn_ge1, post_sh, NULL };  static  v_post  posts_wline[] = { head_warn_ge1, body_err_eq0, NULL };
 static  v_post  posts_bl[] = { headchild_err_eq0, bodychild_warn_ge1, post_bl, NULL };  static  v_post  posts_sh[] = { head_err_ge1,
                           body_warn_ge1, post_sh, NULL };
   static  v_post  posts_bl[] = { head_err_eq0,
                           body_warn_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_ss[] = { head_err_ge1, NULL };
 static  v_post  posts_pp[] = { elemchild_warn_eq0, NULL };  static  v_post  posts_pp[] = { elem_warn_eq0, NULL };
 static  v_post  posts_d1[] = { headchild_err_ge1, NULL };  static  v_post  posts_d1[] = { head_err_ge1, NULL };
   static  v_post  posts_ex[] = { elem_err_le1, post_ex, NULL };
   static  v_post  posts_an[] = { post_an, NULL };
   
   
 const   struct valids mdoc_valids[MDOC_MAX] = {  const   struct valids mdoc_valids[MDOC_MAX] = {
Line 79  const struct valids mdoc_valids[MDOC_MAX] = {
Line 105  const struct valids mdoc_valids[MDOC_MAX] = {
         { pres_prologue, NULL }, /* Os */          { pres_prologue, NULL }, /* Os */
         /* FIXME: preceding Pp. */          /* FIXME: preceding Pp. */
         /* FIXME: NAME section internal ordering. */          /* FIXME: NAME section internal ordering. */
         /* FIXME: can only be a child of root. */          { pres_sh, posts_sh }, /* Sh */
         { NULL, posts_sh }, /* Sh */  
         /* FIXME: preceding Pp. */          /* FIXME: preceding Pp. */
         /* FIXME: can only be a child of Sh. */          { pres_ss, posts_ss }, /* Ss */
         { NULL, posts_ss }, /* Ss */          /* FIXME: proceeding Pp */
         /* FIXME: proceeding... */  
         { NULL, posts_pp }, /* Pp */          { NULL, posts_pp }, /* Pp */
         { pres_d1, posts_d1 }, /* D1 */          { pres_d1, posts_d1 }, /* D1 */
         { pres_d1, posts_d1 }, /* Dl */          { pres_d1, posts_d1 }, /* Dl */
Line 96  const struct valids mdoc_valids[MDOC_MAX] = {
Line 120  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, NULL }, /* El */          { NULL, NULL }, /* El */
         { pres_it, posts_it }, /* It */          { pres_it, posts_it }, /* It */
         { NULL, posts_text }, /* Ad */          { NULL, posts_text }, /* Ad */
         /* FIXME */          { pres_an, posts_an }, /* An */
         { NULL, NULL }, /* An */  
         { NULL, NULL }, /* Ar */          { NULL, NULL }, /* Ar */
           { pres_cd, posts_text }, /* Cd */
         { NULL, posts_text }, /* Cd */ /* FIXME: section 4 only. */  
         { NULL, NULL }, /* Cm */          { NULL, NULL }, /* Cm */
         { NULL, posts_text }, /* Dv */          { NULL, posts_text }, /* Dv */
         { NULL, posts_text }, /* Er */ /* FIXME: section 2 only. */          { pres_er, posts_text }, /* Er */
         { NULL, posts_text }, /* Ev */          { NULL, posts_text }, /* Ev */
         { NULL, posts_notext }, /* Ex */ /* FIXME: sections 1,6,8 only. */ /* -std required */          { pres_ex, posts_ex }, /* Ex */
         { NULL, posts_text }, /* Fa */          { NULL, posts_text }, /* Fa */
         { NULL, NULL }, /* Fd */ /* FIXME: SYNOPSIS section. */          /* FIXME: only in SYNOPSIS section. */
           { NULL, NULL }, /* Fd */
         { NULL, NULL }, /* Fl */          { NULL, NULL }, /* Fl */
         { NULL, posts_text }, /* Fn */          { NULL, posts_text }, /* Fn */
         { NULL, NULL }, /* Ft */          { NULL, NULL }, /* Ft */
Line 115  const struct valids mdoc_valids[MDOC_MAX] = {
Line 138  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, posts_wtext }, /* In */          { NULL, posts_wtext }, /* In */
         { NULL, posts_text }, /* Li */          { NULL, posts_text }, /* Li */
         { NULL, posts_wtext }, /* Nd */          { NULL, posts_wtext }, /* Nd */
         { NULL, NULL }, /* Nm */  /* FIXME: If name not set? */          /* FIXME: check that name must be set/provided. */
           { NULL, NULL }, /* Nm */
         { NULL, posts_wline }, /* Op */          { NULL, posts_wline }, /* Op */
         { NULL, NULL }, /* Ot */          { NULL, NULL }, /* Ot */
         { NULL, NULL }, /* Pa */          { NULL, NULL }, /* Pa */
         { NULL, posts_notext }, /* Rv */ /* -std required */          { NULL, posts_notext }, /* Rv */ /* FIXME: -std required */
         { NULL, posts_notext }, /* St */ /* arg required */          { NULL, posts_notext }, /* St */ /* FIXME: arg required */
         { NULL, posts_text }, /* Va */          { NULL, posts_text }, /* Va */
         { NULL, posts_text }, /* Vt */          { NULL, posts_text }, /* Vt */
         { NULL, NULL }, /* Xr */ /* FIXME */          { NULL, NULL }, /* Xr */ /* FIXME: valid arguments */
         { NULL, posts_text }, /* %A */          { NULL, posts_text }, /* %A */
         { NULL, posts_text }, /* %B */          { NULL, posts_text }, /* %B */
         { NULL, posts_text }, /* %D */          { NULL, posts_text }, /* %D */
Line 138  const struct valids mdoc_valids[MDOC_MAX] = {
Line 162  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, NULL }, /* Ac */          { NULL, NULL }, /* Ac */
         { NULL, NULL }, /* Ao */          { NULL, NULL }, /* Ao */
         { NULL, posts_wline }, /* Aq */          { NULL, posts_wline }, /* Aq */
         { NULL, NULL }, /* At */ /* FIXME */          { NULL, NULL }, /* At */ /* FIXME: valid arguments */
         { NULL, NULL }, /* Bc */          { NULL, NULL }, /* Bc */
         { NULL, NULL }, /* Bf */          { NULL, NULL }, /* Bf */
         { NULL, NULL }, /* Bo */          { NULL, NULL }, /* Bo */
         { NULL, posts_wline }, /* Bq */          { NULL, posts_wline }, /* Bq */
         { NULL, NULL }, /* Bsx */          { NULL, NULL }, /* Bsx */
         { NULL, NULL }, /* Bx */          { NULL, NULL }, /* Bx */
         { NULL, NULL }, /* Db */ /* FIXME: boolean */          { NULL, posts_bool }, /* Db */
         { NULL, NULL }, /* Dc */          { NULL, NULL }, /* Dc */
         { NULL, NULL }, /* Do */          { NULL, NULL }, /* Do */
         { NULL, posts_wline }, /* Dq */          { NULL, posts_wline }, /* Dq */
Line 160  const struct valids mdoc_valids[MDOC_MAX] = {
Line 184  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, NULL }, /* Nx */          { NULL, NULL }, /* Nx */
         { NULL, NULL }, /* Ox */          { NULL, NULL }, /* Ox */
         { NULL, NULL }, /* Pc */          { NULL, NULL }, /* Pc */
         { NULL, NULL }, /* Pf */ /* FIXME: 2 or more arguments */          { NULL, NULL }, /* Pf */
         { NULL, NULL }, /* Po */          { NULL, NULL }, /* Po */
         { NULL, posts_wline }, /* Pq */ /* FIXME: ignore following Sh/Ss */          { NULL, posts_wline }, /* Pq */ /* FIXME: ignore following Sh/Ss */
         { NULL, NULL }, /* Qc */          { NULL, NULL }, /* Qc */
Line 172  const struct valids mdoc_valids[MDOC_MAX] = {
Line 196  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, NULL }, /* Sc */          { NULL, NULL }, /* Sc */
         { NULL, NULL }, /* So */          { NULL, NULL }, /* So */
         { NULL, posts_wline }, /* Sq */          { NULL, posts_wline }, /* Sq */
         { NULL, NULL }, /* Sm */ /* FIXME: boolean */          { NULL, posts_bool }, /* Sm */
         { NULL, posts_text }, /* Sx */          { NULL, posts_text }, /* Sx */
         { NULL, posts_text }, /* Sy */          { NULL, posts_text }, /* Sy */
         { NULL, posts_text }, /* Tn */          { NULL, posts_text }, /* Tn */
Line 193  const struct valids mdoc_valids[MDOC_MAX] = {
Line 217  const struct valids mdoc_valids[MDOC_MAX] = {
   
   
 static int  static int
 bodychild_err_eq0(struct mdoc *mdoc)  pre_check_msecs(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 is not appropriate for this manual section"));
   }
   
   
   static int
   pre_check_parent(struct mdoc *mdoc, struct mdoc_node *node,
                   int tok, enum mdoc_type type)
   {
   
           if (type != node->parent->type)
                   return(mdoc_nerr(mdoc, node, "invalid macro parent class %s, expected %s",
                                           mdoc_type2a(node->parent->type),
                                           mdoc_type2a(type)));
           if (MDOC_ROOT != type && tok != node->parent->tok)
                   return(mdoc_nerr(mdoc, node, "invalid macro parent `%s', expected `%s'",
                                           mdoc_macronames[node->parent->tok],
                                           mdoc_macronames[tok]));
           return(1);
   }
   
   
   static int
   body_err_eq0(struct mdoc *mdoc)
   {
   
         if (MDOC_BODY != mdoc->last->type)          if (MDOC_BODY != mdoc->last->type)
                 return(1);                  return(1);
         if (NULL == mdoc->last->child)          if (NULL == mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_warn(mdoc, WARN_ARGS_EQ0));          return(mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests no body children"));
 }  }
   
   
 static int  static int
 bodychild_warn_ge1(struct mdoc *mdoc)  body_warn_ge1(struct mdoc *mdoc)
 {  {
   
         if (MDOC_BODY != mdoc->last->type)          if (MDOC_BODY != mdoc->last->type)
                 return(1);                  return(1);
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_warn(mdoc, WARN_ARGS_GE1));          return(mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests one or more body children"));
 }  }
   
   
 static int  static int
 elemchild_warn_eq0(struct mdoc *mdoc)  elem_warn_eq0(struct mdoc *mdoc)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);          assert(MDOC_ELEM == mdoc->last->type);
         if (NULL == mdoc->last->child)          if (NULL == mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_pwarn(mdoc, mdoc->last->child->line,          return(mdoc_pwarn(mdoc, mdoc->last->child->line,
                         mdoc->last->child->pos, WARN_ARGS_EQ0));                          mdoc->last->child->pos, WARN_SYNTAX, "macro suggests no parameters"));
 }  }
   
   
 static int  static int
 elemchild_warn_ge1(struct mdoc *mdoc)  elem_warn_ge1(struct mdoc *mdoc)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);          assert(MDOC_ELEM == mdoc->last->type);
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_warn(mdoc, WARN_ARGS_GE1));          return(mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests one or more parameters"));
 }  }
   
   
 static int  static int
 elemchild_err_eq0(struct mdoc *mdoc)  elem_err_eq1(struct mdoc *mdoc)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);          assert(MDOC_ELEM == mdoc->last->type);
         if (NULL == mdoc->last->child)          if (NULL == mdoc->last->child)
                   return(mdoc_err(mdoc, "macro expects one parameter"));
           if (mdoc->last->child->next)
                   return(mdoc_err(mdoc, "macro expects one parameter"));
           return(1);
   }
   
   
   static int
   elem_err_le1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           if (NULL == mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, ERR_ARGS_EQ0));          if (NULL == mdoc->last->child->next)
                   return(1);
           return(mdoc_err(mdoc, "macro expects one or fewer parameters"));
 }  }
   
   
 static int  static int
 elemchild_err_ge1(struct mdoc *mdoc)  elem_err_eq0(struct mdoc *mdoc)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);          assert(MDOC_ELEM == mdoc->last->type);
           if (NULL == mdoc->last->child)
                   return(1);
           return(mdoc_err(mdoc, "macro expects no parameters"));
   }
   
   
   static int
   elem_err_ge1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, ERR_ARGS_GE1));          return(mdoc_err(mdoc, "macro expects one or more parameters"));
 }  }
   
   
 static int  static int
 headchild_err_eq0(struct mdoc *mdoc)  head_err_eq0(struct mdoc *mdoc)
 {  {
   
         if (MDOC_HEAD != mdoc->last->type)          if (MDOC_HEAD != mdoc->last->type)
Line 270  headchild_err_eq0(struct mdoc *mdoc)
Line 351  headchild_err_eq0(struct mdoc *mdoc)
         if (NULL == mdoc->last->child)          if (NULL == mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_perr(mdoc, mdoc->last->child->line,          return(mdoc_perr(mdoc, mdoc->last->child->line,
                         mdoc->last->child->pos, ERR_ARGS_EQ0));                          mdoc->last->child->pos, "macro expects no parameters"));
 }  }
   
   
 static int  static int
 headchild_warn_ge1(struct mdoc *mdoc)  head_warn_ge1(struct mdoc *mdoc)
 {  {
   
         if (MDOC_HEAD != mdoc->last->type)          if (MDOC_HEAD != mdoc->last->type)
                 return(1);                  return(1);
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_warn(mdoc, WARN_ARGS_GE1));          return(mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests one or more parameters"));
 }  }
   
   
 static int  static int
 headchild_err_ge1(struct mdoc *mdoc)  head_err_ge1(struct mdoc *mdoc)
 {  {
   
         if (MDOC_HEAD != mdoc->last->type)          if (MDOC_HEAD != mdoc->last->type)
                 return(1);                  return(1);
         if (mdoc->last->child)          if (mdoc->last->child)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, ERR_ARGS_GE1));          return(mdoc_err(mdoc, "macro expects one or more parameters"));
 }  }
   
   
Line 306  pre_display(struct mdoc *mdoc, struct mdoc_node *node)
Line 387  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);
           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 364  pre_bl(struct mdoc *mdoc, struct mdoc_node *node)
Line 446  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 409  pre_bd(struct mdoc *mdoc, struct mdoc_node *node)
Line 491  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(pre_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));  
   
   static int
   pre_sh(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           if (MDOC_BLOCK != node->type)
                   return(1);
           return(pre_check_parent(mdoc, node, -1, MDOC_ROOT));
   }
   
   
   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_ex(struct mdoc *mdoc, struct mdoc_node *node)
   {
           enum mdoc_msec   msecs[3];
   
           assert(MDOC_ELEM == node->type);
   
           msecs[0] = MSEC_1;
           msecs[1] = MSEC_6;
           msecs[2] = MSEC_8;
           if ( ! pre_check_msecs(mdoc, node, 3, msecs))
                   return(0);
   
           if (1 != node->data.elem.argc) {
                   if ( ! mdoc_nwarn(mdoc, node, WARN_COMPAT,
                                           "macro suggests `%s' argument",
                                           mdoc_argnames[MDOC_Std]))
                           return(0);
                   return(1);
           }
           if (MDOC_Std != node->data.elem.argv[0].arg)
                   if ( ! mdoc_nwarn(mdoc, node, WARN_COMPAT,
                                           "macro suggests `%s' argument",
                                           mdoc_argnames[MDOC_Std]))
                           return(0);
         return(1);          return(1);
 }  }
   
   
 static int  static int
   pre_er(struct mdoc *mdoc, struct mdoc_node *node)
   {
           enum mdoc_msec   msecs[1];
   
           msecs[0] = MSEC_2;
           return(pre_check_msecs(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(pre_check_msecs(mdoc, node, 1, msecs));
   }
   
   
   static int
   pre_it(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           if (MDOC_BLOCK != node->type)
                   return(1);
           return(pre_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->sec_lastn)
                 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. */
Line 449  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 604  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
         case (MDOC_Os):          case (MDOC_Os):
                 if (mdoc->meta.title[0] && mdoc->meta.date)                  if (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"));
         case (MDOC_Dt):          case (MDOC_Dt):
                 if (0 == mdoc->meta.title[0] && mdoc->meta.date)                  if (0 == 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"));
         case (MDOC_Dd):          case (MDOC_Dd):
                 if (0 == mdoc->meta.title[0] && 0 == mdoc->meta.date)                  if (0 == mdoc->meta.title[0] && 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 483  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 638  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_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 551  post_it(struct mdoc *mdoc)
Line 751  post_it(struct mdoc *mdoc)
         assert(TYPE_NONE != type);          assert(TYPE_NONE != type);
   
         if (TYPE_HEAD == type) {          if (TYPE_HEAD == type) {
                 if (NULL == (n = mdoc->last->data.block.head)) {                  n = mdoc->last->data.block.head;
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYHEAD))                  assert(n);
                   if (NULL == n->child)
                           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))  
                                 return(0);  
   
                 if (NULL == (n = mdoc->last->data.block.body)) {                  n = mdoc->last->data.block.body;
                         if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYBODY))                  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_EMPTYBODY))  
                                 return(0);  
   
                 return(1);                  return(1);
         }          }
   
         if (NULL == (n = mdoc->last->data.block.head)) {          assert(TYPE_BODY == type);
                 if ( ! mdoc_warn(mdoc, WARN_SYNTAX_EMPTYHEAD))          assert(mdoc->last->data.block.head);
   
           n = mdoc->last->data.block.head;
           assert(n);
           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_EMPTYHEAD))  
                         return(0);  
   
         if ((n = mdoc->last->data.block.body) && n->child)          n = mdoc->last->data.block.body;
                 if ( ! mdoc_warn(mdoc, WARN_SYNTAX_NOBODY))          assert(n);
           if (NULL == n->child)
                   if ( ! mdoc_warn(mdoc, WARN_SYNTAX, "macro suggests body children"))
                         return(0);                          return(0);
   
         if (MDOC_Column != sv)          if (MDOC_Column != sv)
Line 592  post_it(struct mdoc *mdoc)
Line 794  post_it(struct mdoc *mdoc)
   
         if (i == (size_t)sv)          if (i == (size_t)sv)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, ERR_SYNTAX_ARGFORM));          return(mdoc_err(mdoc, "expected %d list columns, have %d", sv, (int)i));
   
 #undef  TYPE_NONE  #undef  TYPE_NONE
 #undef  TYPE_BODY  #undef  TYPE_BODY
 #undef  TYPE_HEAD  #undef  TYPE_HEAD
Line 618  post_bl(struct mdoc *mdoc)
Line 819  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'"));
 }  }
   
   
   static int
   elem_bool(struct mdoc *mdoc)
   {
           struct mdoc_node *n;
   
           assert(MDOC_ELEM == mdoc->last->type);
           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(mdoc_nerr(mdoc, n, "expected boolean value [on/off]"));
   }
   
   
 /* Warn if conventional sections are out of order. */  /* Warn if conventional sections are out of order. */
 static int  static int
 post_sh(struct mdoc *mdoc)  post_sh(struct mdoc *mdoc)
Line 653  post_sh(struct mdoc *mdoc)
Line 875  post_sh(struct mdoc *mdoc)
                 return(1);                  return(1);
   
         if (sec == mdoc->sec_lastn)          if (sec == mdoc->sec_lastn)
                 return(mdoc_warn(mdoc, WARN_SEC_REP));                  return(mdoc_warn(mdoc, WARN_SYNTAX, "section repeated"));
         return(mdoc_warn(mdoc, WARN_SEC_OO));          return(mdoc_warn(mdoc, WARN_SYNTAX, "section out of conventional order"));
 }  }
   
   
Line 685  mdoc_valid_post(struct mdoc *mdoc)
Line 907  mdoc_valid_post(struct mdoc *mdoc)
   
         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) {
                   /* TODO: make sure prologue is complete. */
                 return(1);                  return(1);
           }
   
         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.29  
changed lines
  Added in v.1.35

CVSweb