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

Diff for /mandoc/Attic/validate.c between version 1.33 and 1.36

version 1.33, 2009/01/16 14:04:26 version 1.36, 2009/01/17 16:15:27
Line 26  typedef int (*v_pre)(struct mdoc *, struct mdoc_node *
Line 26  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: math symbols. */
   
 struct  valids {  struct  valids {
         v_pre   *pre;          v_pre   *pre;
         v_post  *post;          v_post  *post;
Line 35  static int pre_check_parent(struct mdoc *, struct mdoc
Line 39  static int pre_check_parent(struct mdoc *, struct mdoc
                         int, enum mdoc_type);                          int, enum mdoc_type);
 static  int     pre_check_msecs(struct mdoc *, struct mdoc_node *,  static  int     pre_check_msecs(struct mdoc *, struct mdoc_node *,
                         int, enum mdoc_msec *);                          int, enum mdoc_msec *);
   static  int     pre_check_stdarg(struct mdoc *, struct mdoc_node *);
   static  int     post_check_children_count(struct mdoc *);
   static  int     post_check_children_lt(struct mdoc *, int);
   static  int     post_check_children_gt(struct mdoc *, int);
   static  int     post_check_children_eq(struct mdoc *, int);
   
 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_sh(struct mdoc *, struct mdoc_node *);
Line 45  static int pre_it(struct mdoc *, struct mdoc_node *);
Line 54  static int pre_it(struct mdoc *, struct mdoc_node *);
 static  int     pre_cd(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_er(struct mdoc *, struct mdoc_node *);
 static  int     pre_ex(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 *);  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_le2(struct mdoc *);
 static  int     bodychild_warn_ge1(struct mdoc *);  static  int     elem_err_eq1(struct mdoc *);
 static  int     bodychild_err_eq0(struct mdoc *);  static  int     elem_err_ge1(struct mdoc *);
 static  int     elemchild_warn_ge1(struct mdoc *);  static  int     elem_warn_eq0(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  int     post_at(struct mdoc *);
   static  int     post_xr(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 };
Line 72  static v_pre pres_sh[] = { pre_sh, NULL };
Line 92  static v_pre pres_sh[] = { pre_sh, NULL };
 static  v_pre   pres_cd[] = { pre_cd, NULL };  static  v_pre   pres_cd[] = { pre_cd, NULL };
 static  v_pre   pres_er[] = { pre_er, NULL };  static  v_pre   pres_er[] = { pre_er, NULL };
 static  v_pre   pres_ex[] = { pre_ex, 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_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 };
   static  v_post  posts_at[] = { elem_err_eq1, post_at, NULL };
   static  v_post  posts_xr[] = { elem_err_ge1, elem_err_le2,
                           post_xr, NULL };
   
   
 const   struct valids mdoc_valids[MDOC_MAX] = {  const   struct valids mdoc_valids[MDOC_MAX] = {
Line 91  const struct valids mdoc_valids[MDOC_MAX] = {
Line 122  const struct valids mdoc_valids[MDOC_MAX] = {
         { pres_prologue, posts_text }, /* Dd */          { pres_prologue, posts_text }, /* Dd */
         { pres_prologue, NULL }, /* Dt */          { pres_prologue, NULL }, /* Dt */
         { pres_prologue, NULL }, /* Os */          { pres_prologue, NULL }, /* Os */
         /* FIXME: preceding Pp. */  
         /* FIXME: NAME section internal ordering. */          /* FIXME: NAME section internal ordering. */
         { pres_sh, posts_sh }, /* Sh */          { pres_sh, posts_sh }, /* Sh */
         /* FIXME: preceding Pp. */  
         { pres_ss, posts_ss }, /* Ss */          { pres_ss, posts_ss }, /* Ss */
         /* 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 */
          /* FIXME: preceding Pp. */  
         { pres_bd, posts_bd }, /* Bd */          { pres_bd, posts_bd }, /* Bd */
         { NULL, NULL }, /* Ed */          { NULL, NULL }, /* Ed */
         /* FIXME: preceding Pp. */  
         { pres_bl, posts_bl }, /* Bl */          { pres_bl, posts_bl }, /* Bl */
         { 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: argument OR parameters. */          { pres_an, posts_an }, /* An */
         { NULL, NULL }, /* An */  
         { NULL, NULL }, /* Ar */          { NULL, NULL }, /* Ar */
         { pres_cd, posts_text }, /* Cd */          { pres_cd, posts_text }, /* Cd */
         { NULL, NULL }, /* Cm */          { NULL, NULL }, /* Cm */
         { NULL, posts_text }, /* Dv */          { NULL, posts_text }, /* Dv */
         { pres_er, posts_text }, /* Er */          { pres_er, posts_text }, /* Er */
         { NULL, posts_text }, /* Ev */          { NULL, posts_text }, /* Ev */
         { pres_ex, posts_notext }, /* Ex */ /* FIXME: -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 126  const struct valids mdoc_valids[MDOC_MAX] = {
Line 152  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 */          { pres_rv, posts_notext }, /* Rv */
         { NULL, posts_notext }, /* St */ /* arg required */          { pres_st, posts_notext }, /* St */
         { NULL, posts_text }, /* Va */          { NULL, posts_text }, /* Va */
         { NULL, posts_text }, /* Vt */          { NULL, posts_text }, /* Vt */
         { NULL, NULL }, /* Xr */ /* FIXME */          { NULL, posts_xr }, /* Xr */
         { 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 149  const struct valids mdoc_valids[MDOC_MAX] = {
Line 176  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, posts_at }, /* At */
         { 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 165  const struct valids mdoc_valids[MDOC_MAX] = {
Line 192  const struct valids mdoc_valids[MDOC_MAX] = {
         { NULL, posts_text }, /* Em */          { NULL, posts_text }, /* Em */
         { NULL, NULL }, /* Eo */          { NULL, NULL }, /* Eo */
         { NULL, NULL }, /* Fx */          { NULL, NULL }, /* Fx */
         { NULL, posts_text }, /* Ms */ /* FIXME: which symbols? */          { NULL, posts_text }, /* Ms */
         { NULL, posts_notext }, /* No */          { NULL, posts_notext }, /* No */
         { NULL, posts_notext }, /* 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 */ /* FIXME: 2 or more arguments */ /* First should be text. */          { NULL, NULL }, /* Pf */
         { NULL, NULL }, /* Po */          { NULL, NULL }, /* Po */
         { NULL, posts_wline }, /* Pq */ /* FIXME: ignore following Sh/Ss */          { NULL, posts_wline }, /* Pq */
         { NULL, NULL }, /* Qc */          { NULL, NULL }, /* Qc */
         { NULL, posts_wline }, /* Ql */          { NULL, posts_wline }, /* Ql */
         { NULL, NULL }, /* Qo */          { NULL, NULL }, /* Qo */
Line 183  const struct valids mdoc_valids[MDOC_MAX] = {
Line 210  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 204  const struct valids mdoc_valids[MDOC_MAX] = {
Line 231  const struct valids mdoc_valids[MDOC_MAX] = {
   
   
 static int  static int
   post_check_children_count(struct mdoc *mdoc)
   {
           struct mdoc_node *n;
           int               i;
   
           for (i = 0, n = mdoc->last->child; n; n = n->next, i++)
                   /* Do nothing */ ;
           return(i);
   }
   
   
   static int
   post_check_children_gt(struct mdoc *mdoc, int sz)
   {
           int               i;
   
           if ((i = post_check_children_count(mdoc)) > sz)
                   return(1);
           return(mdoc_err(mdoc, "macro requires more than %d "
                                   "parameters (have %d)", sz, i));
   }
   
   
   static int
   post_check_children_eq(struct mdoc *mdoc, int sz)
   {
           int               i;
   
           if ((i = post_check_children_count(mdoc)) == sz)
                   return(1);
           return(mdoc_err(mdoc, "macro requires %d parameters "
                                   "(have %d)", sz, i));
   }
   
   
   static int
   post_check_children_lt(struct mdoc *mdoc, int sz)
   {
           int               i;
   
           if ((i = post_check_children_count(mdoc)) < sz)
                   return(1);
           return(mdoc_err(mdoc, "macro requires less than %d "
                                   "parameters (have %d)", sz, i));
   }
   
   
   static int
   pre_check_stdarg(struct mdoc *mdoc, struct mdoc_node *node)
   {
   
           if (1 == node->data.elem.argc &&
                           MDOC_Std == node->data.elem.argv[0].arg)
                   return(1);
           return(mdoc_nwarn(mdoc, node, WARN_COMPAT,
                                   "macro suggests single `%s' argument",
                                   mdoc_argnames[MDOC_Std]));
   }
   
   
   static int
 pre_check_msecs(struct mdoc *mdoc, struct mdoc_node *node,  pre_check_msecs(struct mdoc *mdoc, struct mdoc_node *node,
                 int sz, enum mdoc_msec *msecs)                  int sz, enum mdoc_msec *msecs)
 {  {
Line 222  pre_check_parent(struct mdoc *mdoc, struct mdoc_node *
Line 310  pre_check_parent(struct mdoc *mdoc, struct mdoc_node *
                 int tok, enum mdoc_type type)                  int tok, enum mdoc_type type)
 {  {
   
         if (type != mdoc->last->parent->type)          if (type != node->parent->type)
                 return(mdoc_nerr(mdoc, node, "invalid macro parent class %s, expected %s",                  return(mdoc_nerr(mdoc, node, "invalid macro parent class %s, expected %s",
                                         mdoc_type2a(mdoc->last->parent->type),                                          mdoc_type2a(node->parent->type),
                                         mdoc_type2a(type)));                                          mdoc_type2a(type)));
         if (MDOC_ROOT != type && tok == mdoc->last->parent->tok)          if (MDOC_ROOT != type && tok != node->parent->tok)
                 return(mdoc_nerr(mdoc, node, "invalid macro parent `%s', expected `%s'",                  return(mdoc_nerr(mdoc, node, "invalid macro parent `%s', expected `%s'",
                                         mdoc_macronames[mdoc->last->parent->tok],                                          mdoc_macronames[node->parent->tok],
                                         mdoc_macronames[tok]));                                          mdoc_macronames[tok]));
         return(1);          return(1);
 }  }
   
   
 static int  static int
 bodychild_err_eq0(struct mdoc *mdoc)  body_err_eq0(struct mdoc *mdoc)
 {  {
   
         if (MDOC_BODY != mdoc->last->type)          if (MDOC_BODY != mdoc->last->type)
Line 247  bodychild_err_eq0(struct mdoc *mdoc)
Line 335  bodychild_err_eq0(struct mdoc *mdoc)
   
   
 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)
Line 259  bodychild_warn_ge1(struct mdoc *mdoc)
Line 347  bodychild_warn_ge1(struct mdoc *mdoc)
   
   
 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);
Line 271  elemchild_warn_eq0(struct mdoc *mdoc)
Line 359  elemchild_warn_eq0(struct mdoc *mdoc)
   
   
 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);
Line 282  elemchild_warn_ge1(struct mdoc *mdoc)
Line 370  elemchild_warn_ge1(struct mdoc *mdoc)
   
   
 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)          return(post_check_children_eq(mdoc, 1));
                 return(1);  
         return(mdoc_err(mdoc, "macro expects no parameters"));  
 }  }
   
   
 static int  static int
 elemchild_err_ge1(struct mdoc *mdoc)  elem_err_le2(struct mdoc *mdoc)
 {  {
   
         assert(MDOC_ELEM == mdoc->last->type);          assert(MDOC_ELEM == mdoc->last->type);
         if (mdoc->last->child)          return(post_check_children_lt(mdoc, 3));
                 return(1);  
         return(mdoc_err(mdoc, "macro expects one or more parameters"));  
 }  }
   
   
 static int  static int
 headchild_err_eq0(struct mdoc *mdoc)  elem_err_le1(struct mdoc *mdoc)
 {  {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(post_check_children_lt(mdoc, 2));
   }
   
   
   static int
   elem_err_eq0(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(post_check_children_eq(mdoc, 0));
   }
   
   
   static int
   elem_err_ge1(struct mdoc *mdoc)
   {
   
           assert(MDOC_ELEM == mdoc->last->type);
           return(post_check_children_gt(mdoc, 0));
   }
   
   
   static int
   head_err_eq0(struct mdoc *mdoc)
   {
   
         if (MDOC_HEAD != mdoc->last->type)          if (MDOC_HEAD != mdoc->last->type)
                 return(1);                  return(1);
         if (NULL == mdoc->last->child)          return(post_check_children_eq(mdoc, 0));
                 return(1);  
         return(mdoc_perr(mdoc, mdoc->last->child->line,  
                         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)
Line 329  headchild_warn_ge1(struct mdoc *mdoc)
Line 437  headchild_warn_ge1(struct mdoc *mdoc)
   
   
 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)          return(post_check_children_gt(mdoc, 0));
                 return(1);  
         return(mdoc_err(mdoc, "macro expects one or more parameters"));  
 }  }
   
   
Line 465  static int
Line 571  static int
 pre_ss(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_Sh == mdoc->last->tok);  
         return(pre_check_parent(mdoc, node, MDOC_Sh, MDOC_BODY));          return(pre_check_parent(mdoc, node, MDOC_Sh, MDOC_BODY));
 }  }
   
Line 476  static int
Line 581  static int
 pre_sh(struct mdoc *mdoc, struct mdoc_node *node)  pre_sh(struct mdoc *mdoc, struct mdoc_node *node)
 {  {
   
         if (MDOC_BLOCK != mdoc->last->type)          if (MDOC_BLOCK != node->type)
                 return(1);                  return(1);
         assert(MDOC_Sh == mdoc->last->tok);  
         return(pre_check_parent(mdoc, node, -1, MDOC_ROOT));          return(pre_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 ( ! pre_check_msecs(mdoc, node, 2, msecs))
                   return(0);
           return(pre_check_stdarg(mdoc, node));
   }
   
   
   static int
 pre_ex(struct mdoc *mdoc, struct mdoc_node *node)  pre_ex(struct mdoc *mdoc, struct mdoc_node *node)
 {  {
         enum mdoc_msec   msecs[3];          enum mdoc_msec   msecs[3];
   
           assert(MDOC_ELEM == node->type);
           assert(MDOC_Ex == node->tok);
   
         msecs[0] = MSEC_1;          msecs[0] = MSEC_1;
         msecs[1] = MSEC_6;          msecs[1] = MSEC_6;
         msecs[2] = MSEC_8;          msecs[2] = MSEC_8;
         return(pre_check_msecs(mdoc, node, 3, msecs));          if ( ! pre_check_msecs(mdoc, node, 3, msecs))
                   return(0);
           return(pre_check_stdarg(mdoc, node));
 }  }
   
   
Line 519  static int
Line 668  static int
 pre_it(struct mdoc *mdoc, struct mdoc_node *node)  pre_it(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_Bl, MDOC_BODY));          return(pre_check_parent(mdoc, node, MDOC_Bl, MDOC_BODY));
 }  }
   
Line 538  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 686  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
   
         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_nerr(mdoc, node, "prologue macro out-of-order"));                  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_nerr(mdoc, node, "prologue macro out-of-order"));                  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_nerr(mdoc, node, "prologue macro out-of-order"));                  return(mdoc_nerr(mdoc, node, "prologue macro out-of-order"));
         default:          default:
Line 558  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 706  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 566  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 714  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 578  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
Line 726  pre_prologue(struct mdoc *mdoc, struct mdoc_node *node
 }  }
   
   
   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);
           assert(mdoc->last->child);
           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 686  post_it(struct mdoc *mdoc)
Line 913  post_it(struct mdoc *mdoc)
         if (i == (size_t)sv)          if (i == (size_t)sv)
                 return(1);                  return(1);
         return(mdoc_err(mdoc, "expected %d list columns, have %d", sv, (int)i));          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 715  post_bl(struct mdoc *mdoc)
Line 941  post_bl(struct mdoc *mdoc)
 }  }
   
   
   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)
 {  {
           char              buf[64];
         enum mdoc_sec     sec;          enum mdoc_sec     sec;
         int               i;  
         struct mdoc_node *n;  
         char             *args[MDOC_LINEARG_MAX];  
   
         if (MDOC_HEAD != mdoc->last->type)          if (MDOC_HEAD != mdoc->last->type)
                 return(1);                  return(1);
   
         assert(MDOC_Sh == mdoc->last->tok);          assert(MDOC_Sh == mdoc->last->tok);
   
         n = mdoc->last->child;          if ( ! xstrlcats(buf, mdoc->last->child, 64))
         assert(n);                  return(mdoc_err(mdoc, "macro parameters too long"));
   
         for (i = 0; n && i < MDOC_LINEARG_MAX; n = n->next, i++) {          if (SEC_CUSTOM == (sec = mdoc_atosec(buf)))
                 assert(MDOC_TEXT == n->type);  
                 assert(NULL == n->child);  
                 assert(n->data.text.string);  
                 args[i] = n->data.text.string;  
         }  
   
         sec = mdoc_atosec((size_t)i, (const char **)args);  
         if (SEC_CUSTOM == sec)  
                 return(1);                  return(1);
         if (sec > mdoc->sec_lastn)          if (sec > mdoc->sec_lastn)
                 return(1);                  return(1);
   
         if (sec == mdoc->sec_lastn)          if (sec == mdoc->sec_lastn)
                 return(mdoc_warn(mdoc, WARN_SYNTAX, "section repeated"));                  return(mdoc_warn(mdoc, WARN_SYNTAX, "section repeated"));
         return(mdoc_warn(mdoc, WARN_SYNTAX, "section out of conventional order"));          return(mdoc_warn(mdoc, WARN_SYNTAX, "section out of conventional order"));

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.36

CVSweb