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

Diff for /mandoc/Attic/macro.c between version 1.17 and 1.25

version 1.17, 2009/01/02 14:06:16 version 1.25, 2009/01/07 15:53:00
Line 29 
Line 29 
   
 /* FIXME: maxlineargs should be per LINE, no per TOKEN. */  /* FIXME: maxlineargs should be per LINE, no per TOKEN. */
   
 #define _CC(p)  ((const char **)p)  static  int       rewind_elem(struct mdoc *, int, int);
   static  int       rewind_impblock(struct mdoc *, int, int);
 static  int       scope_rewind_imp(struct mdoc *, int, int);  static  int       rewind_expblock(struct mdoc *, int, int, int);
 static  int       scope_rewind_exp(struct mdoc *, int, int, int);  static  int       rewind_head(struct mdoc *, int, int);
 static  int       scope_rewind_line(struct mdoc *, int, int);  static  int       rewind_body(struct mdoc *, int, int, int);
 static  int       append_text(struct mdoc *, int,  static  int       rewind_last(struct mdoc *, int, struct mdoc_node *);
                         int, int, char *[]);  
 static  int       append_text_argv(struct mdoc *, int, int,  
                         int, char *[], int, const struct mdoc_arg *);  
 static  int       append_delims(struct mdoc *, int, int *, char *);  static  int       append_delims(struct mdoc *, int, int *, char *);
   static  int       lookup(struct mdoc *, int, const char *);
   
   
 static int  static int
 scope_rewind_line(struct mdoc *mdoc, int ppos, int tok)  lookup(struct mdoc *mdoc, int from, const char *p)
 {  {
   
           if ( ! (MDOC_PARSED & mdoc_macros[from].flags))
                   return(MDOC_MAX);
           return(mdoc_find(mdoc, p));
   }
   
   
   static int
   rewind_last(struct mdoc *mdoc, int ppos, struct mdoc_node *to)
   {
   
           assert(to);
           while (mdoc->last != to) {
                   if ( ! mdoc_valid_post(mdoc, ppos))
                           return(0);
                   if ( ! mdoc_action(mdoc, ppos))
                           return(0);
                   mdoc->last = mdoc->last->parent;
                   assert(mdoc->last);
           }
           mdoc->next = MDOC_NEXT_SIBLING;
           if ( ! mdoc_valid_post(mdoc, ppos))
                   return(0);
           return(mdoc_action(mdoc, ppos));
   }
   
   
   static int
   rewind_elem(struct mdoc *mdoc, int ppos, int tok)
   {
         struct mdoc_node *n;          struct mdoc_node *n;
   
           n = mdoc->last;
           if (MDOC_ELEM != n->type)
                   n = n->parent;
           assert(MDOC_ELEM == n->type);
           assert(tok == n->data.elem.tok);
   
           return(rewind_last(mdoc, ppos, n));
   }
   
   
   static int
   rewind_body(struct mdoc *mdoc, int ppos, int tok, int tt)
   {
           struct mdoc_node *n;
         int               t;          int               t;
   
         /* LINTED */          /* LINTED */
         for (n = mdoc->last; n; n = n->parent) {          for (n = mdoc->last; n; n = n->parent) {
                   if (MDOC_BODY != n->type)
                           continue;
                   if (tt == (t = n->data.head.tok))
                           break;
                   if ( ! (MDOC_EXPLICIT & mdoc_macros[t].flags))
                           continue;
                   return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));
           }
   
           assert(n);
           return(rewind_last(mdoc, ppos, n));
   }
   
   
   static int
   rewind_head(struct mdoc *mdoc, int ppos, int tok)
   {
           struct mdoc_node *n;
           int               t;
   
           /* LINTED */
           for (n = mdoc->last; n; n = n->parent) {
                 if (MDOC_HEAD != n->type)                  if (MDOC_HEAD != n->type)
                         continue;                          continue;
                 if (tok == (t = n->data.head.tok))                  if (tok == (t = n->data.head.tok))
Line 58  scope_rewind_line(struct mdoc *mdoc, int ppos, int tok
Line 123  scope_rewind_line(struct mdoc *mdoc, int ppos, int tok
                 return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));                  return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));
         }          }
   
         mdoc->last = n ? n : mdoc->last;          assert(n);
         mdoc->next = MDOC_NEXT_SIBLING;          return(rewind_last(mdoc, ppos, n));
         return(1);  
 }  }
   
   
 static int  static int
 scope_rewind_exp(struct mdoc *mdoc, int ppos, int tok, int tt)  rewind_expblock(struct mdoc *mdoc, int ppos, int tok, int tt)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
           int               t;
   
         assert(mdoc->last);          assert(mdoc->last);
   
Line 75  scope_rewind_exp(struct mdoc *mdoc, int ppos, int tok,
Line 140  scope_rewind_exp(struct mdoc *mdoc, int ppos, int tok,
         for (n = mdoc->last->parent; n; n = n->parent) {          for (n = mdoc->last->parent; n; n = n->parent) {
                 if (MDOC_BLOCK != n->type)                  if (MDOC_BLOCK != n->type)
                         continue;                          continue;
                 if (tt == n->data.block.tok)                  if (tt == (t = n->data.block.tok))
                         break;                          break;
                   if (MDOC_NESTED & mdoc_macros[t].flags)
                           continue;
                 return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));                  return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));
         }          }
   
         if (NULL == (mdoc->last = n))          if (NULL == n)
                 return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_NOCTX));                  return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_NOCTX));
           return(rewind_last(mdoc, ppos, n));
         mdoc->next = MDOC_NEXT_SIBLING;  
         return(mdoc_valid_post(mdoc, tok, ppos));  
 }  }
   
   
 static int  static int
 scope_rewind_imp(struct mdoc *mdoc, int ppos, int tok)  rewind_impblock(struct mdoc *mdoc, int ppos, int tok)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
         int               t;          int               t;
Line 104  scope_rewind_imp(struct mdoc *mdoc, int ppos, int tok)
Line 169  scope_rewind_imp(struct mdoc *mdoc, int ppos, int tok)
                         break;                          break;
                 if ( ! (MDOC_EXPLICIT & mdoc_macros[t].flags))                  if ( ! (MDOC_EXPLICIT & mdoc_macros[t].flags))
                         continue;                          continue;
                   if (MDOC_NESTED & mdoc_macros[tok].flags)
                           return(1);
                 return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));                  return(mdoc_err(mdoc, tok, ppos, ERR_SCOPE_BREAK));
         }          }
   
         mdoc->last = n ? n : mdoc->last;          if (NULL == n)
         mdoc->next = MDOC_NEXT_SIBLING;                  return(1);
         return(mdoc_valid_post(mdoc, tok, ppos));          return(rewind_last(mdoc, ppos, n));
 }  }
   
   
Line 138  append_delims(struct mdoc *mdoc, int tok, int *pos, ch
Line 205  append_delims(struct mdoc *mdoc, int tok, int *pos, ch
 }  }
   
   
 static int  /* ARGSUSED */
 append_text_argv(struct mdoc *mdoc, int tok, int pos,  int
                 int sz, char *args[],  macro_close_explicit(MACRO_PROT_ARGS)
                 int argc, const struct mdoc_arg *argv)  
 {  {
           int              tt, j, c, lastarg, maxargs, flushed;
           char            *p;
   
         if ( ! mdoc_valid_pre(mdoc, tok, pos, 0, NULL, argc, argv))          switch (tok) {
                 return(0);          case (MDOC_Ac):
                   tt = MDOC_Ao;
                   break;
           case (MDOC_Bc):
                   tt = MDOC_Bo;
                   break;
           case (MDOC_Dc):
                   tt = MDOC_Do;
                   break;
           case (MDOC_Ec):
                   tt = MDOC_Eo;
                   break;
           case (MDOC_Ed):
                   tt = MDOC_Bd;
                   break;
           case (MDOC_Ef):
                   tt = MDOC_Bf;
                   break;
           case (MDOC_Ek):
                   tt = MDOC_Bk;
                   break;
           case (MDOC_El):
                   tt = MDOC_Bl;
                   break;
           case (MDOC_Fc):
                   tt = MDOC_Fo;
                   break;
           case (MDOC_Oc):
                   tt = MDOC_Oo;
                   break;
           case (MDOC_Pc):
                   tt = MDOC_Po;
                   break;
           case (MDOC_Qc):
                   tt = MDOC_Qo;
                   break;
           case (MDOC_Re):
                   tt = MDOC_Rs;
                   break;
           case (MDOC_Sc):
                   tt = MDOC_So;
                   break;
           case (MDOC_Xc):
                   tt = MDOC_Xo;
                   break;
           default:
                   abort();
                   /* NOTREACHED */
           }
   
         switch (tok) {          switch (tok) {
         case (MDOC_Pf):          case (MDOC_Ec):
                 /* TODO: only use first two arguments in element. */                  maxargs = 1;
                 break;                  break;
         default:          default:
                   maxargs = 0;
                 break;                  break;
         }          }
   
         mdoc_elem_alloc(mdoc, pos, tok, (size_t)argc,          if ( ! (MDOC_CALLABLE & mdoc_macros[tok].flags)) {
                         argv, (size_t)sz, _CC(args));                  if ( ! rewind_expblock(mdoc, ppos, tok, tt))
         mdoc->next = MDOC_NEXT_SIBLING;                          return(0);
         return(1);                  if (0 != buf[*pos])
 }                          return(mdoc_err(mdoc, tok, *pos, ERR_ARGS_EQ0));
                   return(1);
           }
   
           if ( ! rewind_body(mdoc, ppos, tok, tt))
                   return(0);
   
 static int          lastarg = ppos;
 append_text(struct mdoc *mdoc, int tok,          flushed = 0;
                 int pos, int sz, char *args[])  
 {  
   
         if ( ! mdoc_valid_pre(mdoc, tok, pos, sz, _CC(args), 0, NULL))          if (maxargs > 0) {
                 return(0);                  mdoc_tail_alloc(mdoc, ppos, tt);
                   mdoc->next = MDOC_NEXT_CHILD;
           }
   
         switch (tok) {          for (j = 0; j < MDOC_LINEARG_MAX; j++) {
         case (MDOC_At):                  lastarg = *pos;
                 if (0 == sz)  
                   if (j == maxargs && ! flushed) {
                           if ( ! rewind_expblock(mdoc, ppos, tok, tt))
                                   return(0);
                           flushed = 1;
                   }
   
                   c = mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p);
                   if (ARGS_ERROR == c)
                           return(0);
                   if (ARGS_PUNCT == c)
                         break;                          break;
                 if (ATT_DEFAULT == mdoc_atoatt(args[0])) {                  if (ARGS_EOLN == c)
                         mdoc_elem_alloc(mdoc, pos, tok,                          break;
                                         0, NULL, 0, NULL);  
                         mdoc->next = MDOC_NEXT_SIBLING;                  if (MDOC_MAX != (c = lookup(mdoc, tok, p))) {
                         mdoc_word_alloc(mdoc, pos, args[0]);                          if ( ! flushed) {
                         mdoc->next = MDOC_NEXT_SIBLING;                                  if ( ! rewind_expblock(mdoc, ppos, tok, tt))
                 } else {                                          return(0);
                         mdoc_elem_alloc(mdoc, pos, tok, 0,                                  flushed = 1;
                                         NULL, 1, _CC(&args[0]));                          }
                         mdoc->next = MDOC_NEXT_SIBLING;                          if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
                                   return(0);
                           break;
                 }                  }
   
                 if (sz > 1)                  mdoc_word_alloc(mdoc, lastarg, p);
                         mdoc_word_alloc(mdoc, pos, args[1]);  
                 mdoc->next = MDOC_NEXT_SIBLING;                  mdoc->next = MDOC_NEXT_SIBLING;
                 return(1);  
   
         default:  
                 break;  
         }          }
   
         mdoc_elem_alloc(mdoc, pos, tok, 0, NULL, (size_t)sz, _CC(args));          if (MDOC_LINEARG_MAX == j)
         mdoc->next = MDOC_NEXT_SIBLING;                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
         return(1);  
           if ( ! flushed)
                   if ( ! rewind_expblock(mdoc, ppos, tok, tt))
                           return(0);
   
           if (ppos > 1)
                   return(1);
           return(append_delims(mdoc, tok, pos, buf));
 }  }
   
   
   /*
    * A general text domain macro.  When invoked, this opens a scope that
    * accepts words until either end-of-line, only-punctuation, or a
    * callable macro.  If the word is punctuation (not only-punctuation),
    * then the scope is closed out, the punctuation appended, then the
    * scope opened again.  If any terminating conditions are met, the scope
    * is closed out.  If this is the first macro in the line and
    * only-punctuation remains, this punctuation is flushed.
    */
 int  int
 macro_text(MACRO_PROT_ARGS)  macro_text(MACRO_PROT_ARGS)
 {  {
         int               lastarg, lastpunct, c, j, fl;          int               lastarg, lastpunct, c, sz, fl, argc;
         char             *args[MDOC_LINEARG_MAX];          struct mdoc_arg   argv[MDOC_LINEARG_MAX];
           char             *p;
   
         /* Token pre-processing.  */          lastarg = ppos;
           lastpunct = 0;
   
         switch (tok) {          for (argc = 0; argc < MDOC_LINEARG_MAX; argc++) {
         case (MDOC_Pp):                  lastarg = *pos;
                 /* `.Pp' ignored when following `.Sh' or `.Ss'. */  
                 assert(mdoc->last);                  c = mdoc_argv(mdoc, tok, &argv[argc], pos, buf);
                 if (MDOC_BODY != mdoc->last->type)                  if (ARGV_EOLN == c || ARGV_WORD == c)
                         break;                          break;
                 switch (mdoc->last->data.body.tok) {                  else if (ARGV_ARG == c)
                 case (MDOC_Ss):                          continue;
                         /* FALLTHROUGH */                  mdoc_argv_free(argc, argv);
                 case (MDOC_Sh):                  return(0);
                         if ( ! mdoc_warn(mdoc, tok, ppos, WARN_IGN_AFTER_BLK))  
                                 return(0);  
                         return(1);  
                 default:  
                         break;  
                 }  
                 break;  
         default:  
                 break;  
         }          }
   
         /* Process line parameters. */          if ( ! mdoc_valid_pre(mdoc, tok, ppos, argc, argv)) {
                   mdoc_argv_free(argc, argv);
                   return(0);
           }
   
         j = 0;  
         lastarg = ppos;  
         lastpunct = 0;  
         fl = ARGS_DELIM;          fl = ARGS_DELIM;
   
         if (MDOC_QUOTABLE & mdoc_macros[tok].flags)          if (MDOC_QUOTABLE & mdoc_macros[tok].flags)
                 fl |= ARGS_QUOTED;                  fl |= ARGS_QUOTED;
   
 again:          mdoc_elem_alloc(mdoc, lastarg, tok, argc, argv);
         if (j == MDOC_LINEARG_MAX)          mdoc->next = MDOC_NEXT_CHILD;
                 return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));  
   
         /*          for (lastpunct = sz = 0; sz + argc < MDOC_LINEARG_MAX; sz++) {
          * Parse out the next argument, unquoted and unescaped.   If                  lastarg = *pos;
          * we're a word (which may be punctuation followed eventually by  
          * a real word), then fall into checking for callables.  If  
          * only punctuation remains and we're the first, then flush  
          * arguments, punctuation and exit; else, return to the caller.  
          */  
   
         lastarg = *pos;                  if (lastpunct) {
                           mdoc_elem_alloc(mdoc, lastarg, tok, argc, argv);
                           mdoc->next = MDOC_NEXT_CHILD;
                           lastpunct = 0;
                   }
   
         switch (mdoc_args(mdoc, tok, pos, buf, fl, &args[j])) {                  c = mdoc_args(mdoc, tok, pos, buf, fl, &p);
         case (ARGS_ERROR):                  if (ARGS_ERROR == c) {
                 return(0);                          mdoc_argv_free(argc, argv);
         case (ARGS_WORD):  
                 break;  
         case (ARGS_PUNCT):  
                 if ( ! lastpunct && ! append_text(mdoc, tok, ppos, j, args))  
                         return(0);                          return(0);
                 if (ppos > 1)                  }
                         return(1);  
                 return(append_delims(mdoc, tok, pos, buf));  
         case (ARGS_EOLN):  
                 if (lastpunct)  
                         return(1);  
                 return(append_text(mdoc, tok, ppos, j, args));  
         default:  
                 abort();  
                 /* NOTREACHED */  
         }  
   
         /*                  if (ARGS_EOLN == c)
          * Command found.  First flush out arguments, then call the                          break;
          * command.  If we're the line macro when it exits, flush                  if (ARGS_PUNCT == c)
          * terminal punctuation.                          break;
          */  
   
         if (MDOC_MAX != (c = mdoc_find(mdoc, args[j]))) {                  if (MDOC_MAX != (c = lookup(mdoc, tok, p))) {
                 if ( ! lastpunct && ! append_text(mdoc, tok, ppos, j, args))                          if ( ! rewind_elem(mdoc, ppos, tok)) {
                         return(0);                                  mdoc_argv_free(argc, argv);
                 if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                                  return(0);
                         return(0);                          }
                 if (ppos > 1)                          mdoc_argv_free(argc, argv);
                         return(1);                          if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
                 return(append_delims(mdoc, tok, pos, buf));                                  return(0);
         }                          if (ppos > 1)
                                   return(1);
                           return(append_delims(mdoc, tok, pos, buf));
                   }
   
         /* Word/non-term-punctuation found. */                  if (mdoc_isdelim(p)) {
                           if ( ! rewind_elem(mdoc, ppos, tok)) {
         if ( ! mdoc_isdelim(args[j])) {                                  mdoc_argv_free(argc, argv);
                 /* Words are appended to the array of arguments. */                                  return(0);
                 j++;                          }
                 lastpunct = 0;                          lastpunct = 1;
                 goto again;                  }
                   mdoc_word_alloc(mdoc, lastarg, p);
                   mdoc->next = MDOC_NEXT_SIBLING;
         }          }
   
         /*          mdoc_argv_free(argc, argv);
          * For punctuation, flush all collected words, then flush  
          * punctuation, then start collecting again.   Of course, this  
          * is non-terminal punctuation.  
          */  
   
         if ( ! lastpunct && ! append_text(mdoc, tok, ppos, j, args))          if (sz == MDOC_LINEARG_MAX)
                 return(0);                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
   
         mdoc_word_alloc(mdoc, lastarg, args[j]);          if ( ! rewind_elem(mdoc, ppos, tok))
         mdoc->next = MDOC_NEXT_SIBLING;                  return(0);
         j = 0;          if (ppos > 1)
         lastpunct = 1;                  return(1);
           return(append_delims(mdoc, tok, pos, buf));
         goto again;  
         /* NOTREACHED */  
 }  }
   
   
   /*
 /* ARGSUSED */   * Multi-line-scoped macro.
    */
 int  int
 macro_close_explicit(MACRO_PROT_ARGS)  
 {  
         int              tt;  
   
         /*  
          * First close out the explicit scope.  The `end' tags (such as  
          * `.El' to `.Bl' don't cause anything to happen: we merely  
          * readjust our last parse point.  
          */  
   
         switch (tok) {  
         case (MDOC_El):  
                 tt = MDOC_Bl;  
                 break;  
         case (MDOC_Ed):  
                 tt = MDOC_Bd;  
                 break;  
         case (MDOC_Re):  
                 tt = MDOC_Rs;  
                 break;  
         case (MDOC_Ef):  
                 tt = MDOC_Bf;  
                 break;  
         default:  
                 abort();  
                 /* NOTREACHED */  
         }  
   
         return(scope_rewind_exp(mdoc, ppos, tok, tt));  
 }  
   
   
 int  
 macro_scoped(MACRO_PROT_ARGS)  macro_scoped(MACRO_PROT_ARGS)
 {  {
         int               i, c, lastarg, argc, sz;          int               c, lastarg, argc, j;
         char             *args[MDOC_LINEARG_MAX];  
         struct mdoc_arg   argv[MDOC_LINEARG_MAX];          struct mdoc_arg   argv[MDOC_LINEARG_MAX];
         enum mdoc_sec     sec;          char             *p;
         struct mdoc_node *n;  
   
         assert ( ! (MDOC_CALLABLE & mdoc_macros[tok].flags));          assert ( ! (MDOC_CALLABLE & mdoc_macros[tok].flags));
   
         /* Token pre-processing. */          if ( ! (MDOC_EXPLICIT & mdoc_macros[tok].flags))
                   if ( ! rewind_impblock(mdoc, ppos, tok))
         switch (tok) {  
         case (MDOC_Bl):  
                 /* FALLTHROUGH */  
         case (MDOC_Bd):  
                 /* `.Pp' ignored when preceding `.Bl' or `.Bd'. */  
                 assert(mdoc->last);  
                 if (MDOC_ELEM != mdoc->last->type)  
                         break;  
                 if (MDOC_Pp != mdoc->last->data.elem.tok)  
                         break;  
                 if ( ! mdoc_warn(mdoc, tok, ppos, WARN_IGN_BEFORE_BLK))  
                         return(0);                          return(0);
                 assert(mdoc->last->prev);  
                 n = mdoc->last;  
                 mdoc->last = mdoc->last->prev;  
                 mdoc->last->next = NULL;  
                 mdoc_node_free(n);  
                 break;  
         case (MDOC_Sh):  
                 /* FALLTHROUGH */  
         case (MDOC_Ss):  
                 if ( ! scope_rewind_imp(mdoc, ppos, tok))  
                         return(0);  
                 /* `.Pp' ignored when preceding `.Ss' or `.Sh'. */  
                 if (NULL == mdoc->last)  
                         break;  
                 if (MDOC_ELEM != mdoc->last->type)  
                         break;  
                 if (MDOC_Pp != mdoc->last->data.elem.tok)  
                         break;  
                 if ( ! mdoc_warn(mdoc, tok, ppos, WARN_IGN_BEFORE_BLK))  
                         return(0);  
                 assert(mdoc->last->prev);  
                 n = mdoc->last;  
                 mdoc_msg(mdoc, ppos, "removing prior `Pp' macro");  
                 mdoc->last = mdoc->last->prev;  
                 mdoc->last->next = NULL;  
                 mdoc_node_free(n);  
                 break;  
         default:  
                 break;  
         }  
   
         /* Argument processing. */          lastarg = ppos;
   
         lastarg = *pos;  
   
         for (argc = 0; argc < MDOC_LINEARG_MAX; argc++) {          for (argc = 0; argc < MDOC_LINEARG_MAX; argc++) {
                 lastarg = *pos;                  lastarg = *pos;
                 c = mdoc_argv(mdoc, tok, &argv[argc], pos, buf);                  c = mdoc_argv(mdoc, tok, &argv[argc], pos, buf);
Line 424  macro_scoped(MACRO_PROT_ARGS)
Line 465  macro_scoped(MACRO_PROT_ARGS)
                 return(0);                  return(0);
         }          }
   
         /* Parameter processing. */          if ( ! mdoc_valid_pre(mdoc, tok, ppos, argc, argv)) {
   
         for (sz = 0; argc + sz < MDOC_LINEARG_MAX; sz++) {  
                 lastarg = *pos;  
                 c = mdoc_args(mdoc, tok, pos, buf, 0, &args[sz]);  
                 if (ARGS_EOLN == c)  
                         break;  
                 if (ARGS_WORD == c)  
                         continue;  
                 mdoc_argv_free(argc, argv);                  mdoc_argv_free(argc, argv);
                 return(0);                  return(0);
         }          }
   
         if (MDOC_LINEARG_MAX == (argc + sz)) {  
                 mdoc_argv_free(argc, argv);  
                 return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));  
         }  
   
         /* Post-processing. */  
   
         if ( ! mdoc_valid_pre(mdoc, tok, ppos, sz, _CC(args), argc, argv)) {  
                 mdoc_argv_free(argc, argv);  
                 return(0);  
         }  
   
         switch (tok) {  
         case (MDOC_Sh):  
                 sec = mdoc_atosec((size_t)sz, _CC(args));  
                 if (SEC_CUSTOM != sec)  
                         mdoc->sec_lastn = sec;  
                 mdoc->sec_last = sec;  
                 break;  
         default:  
                 break;  
         }  
   
         mdoc_block_alloc(mdoc, ppos, tok, (size_t)argc, argv);          mdoc_block_alloc(mdoc, ppos, tok, (size_t)argc, argv);
         mdoc->next = MDOC_NEXT_CHILD;          mdoc->next = MDOC_NEXT_CHILD;
   
         mdoc_argv_free(argc, argv);          mdoc_argv_free(argc, argv);
   
           if (0 == buf[*pos]) {
                   mdoc_head_alloc(mdoc, ppos, tok);
                   if ( ! rewind_head(mdoc, ppos, tok))
                           return(0);
                   mdoc_body_alloc(mdoc, ppos, tok);
                   mdoc->next = MDOC_NEXT_CHILD;
                   return(1);
           }
   
         mdoc_head_alloc(mdoc, ppos, tok);          mdoc_head_alloc(mdoc, ppos, tok);
         mdoc->next = MDOC_NEXT_CHILD;          mdoc->next = MDOC_NEXT_CHILD;
   
         for (i = 0; i < sz; i++) {          for (j = 0; j < MDOC_LINEARG_MAX; j++) {
                 mdoc_word_alloc(mdoc, ppos, args[i]);                  lastarg = *pos;
                 mdoc->next = MDOC_NEXT_SIBLING;                  c = mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p);
   
                   if (ARGS_ERROR == c)
                           return(0);
                   if (ARGS_PUNCT == c)
                           break;
                   if (ARGS_EOLN == c)
                           break;
   
                   if (MDOC_MAX == (c = lookup(mdoc, tok, p))) {
                           mdoc_word_alloc(mdoc, lastarg, p);
                           mdoc->next = MDOC_NEXT_SIBLING;
                           continue;
                   }
   
                   if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
                           return(0);
                   break;
         }          }
   
         if ( ! scope_rewind_line(mdoc, ppos, tok))          if (j == MDOC_LINEARG_MAX)
                   return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
   
           if ( ! rewind_head(mdoc, ppos, tok))
                 return(0);                  return(0);
           if (1 == ppos && ! append_delims(mdoc, tok, pos, buf))
                   return(0);
   
         mdoc_body_alloc(mdoc, ppos, tok);          mdoc_body_alloc(mdoc, ppos, tok);
         mdoc->next = MDOC_NEXT_CHILD;          mdoc->next = MDOC_NEXT_CHILD;
Line 483  macro_scoped(MACRO_PROT_ARGS)
Line 524  macro_scoped(MACRO_PROT_ARGS)
 }  }
   
   
   /*
    * When scoped to a line, a macro encompasses all of the contents.  This
    * differs from constants or text macros, where a new macro will
    * terminate the existing context.
    */
 int  int
 macro_scoped_line(MACRO_PROT_ARGS)  macro_scoped_line(MACRO_PROT_ARGS)
 {  {
         int               lastarg, c, j;          int               lastarg, c, j;
         char              *p;          char              *p;
   
         assert(1 == ppos);  
   
         mdoc_block_alloc(mdoc, ppos, tok, 0, NULL);          mdoc_block_alloc(mdoc, ppos, tok, 0, NULL);
         mdoc->next = MDOC_NEXT_CHILD;          mdoc->next = MDOC_NEXT_CHILD;
   
         mdoc_head_alloc(mdoc, ppos, tok);          mdoc_head_alloc(mdoc, ppos, tok);
         mdoc->next = MDOC_NEXT_CHILD;          mdoc->next = MDOC_NEXT_CHILD;
   
         if ( ! mdoc_valid_pre(mdoc, tok, ppos, 0, NULL, 0, NULL))          /* XXX - no known argument macros. */
   
           if ( ! mdoc_valid_pre(mdoc, tok, ppos, 0, NULL))
                 return(0);                  return(0);
   
         /* Process line parameters. */          /* Process line parameters. */
   
         j = 0;          for (lastarg = ppos, j = 0; j < MDOC_LINEARG_MAX; j++) {
         lastarg = ppos;                  lastarg = *pos;
                   c = mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p);
   
 again:                  if (ARGS_ERROR == c)
         if (j == MDOC_LINEARG_MAX)                          return(0);
                 return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));                  if (ARGS_PUNCT == c)
                           break;
                   if (ARGS_EOLN == c)
                           break;
   
         lastarg = *pos;                  if (MDOC_MAX == (c = lookup(mdoc, tok, p))) {
         c = mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p);                          mdoc_word_alloc(mdoc, lastarg, p);
                           mdoc->next = MDOC_NEXT_SIBLING;
                           continue;
                   }
   
         switch (c) {                  if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
         case (ARGS_ERROR):                          return(0);
                 return(0);  
         case (ARGS_WORD):  
                 break;                  break;
         case (ARGS_PUNCT):          }
                 if (ppos > 1)  
                         return(scope_rewind_imp(mdoc, ppos, tok));          if (j == MDOC_LINEARG_MAX)
                 if ( ! scope_rewind_line(mdoc, ppos, tok))                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
   
           if (1 == ppos) {
                   if ( ! rewind_head(mdoc, ppos, tok))
                         return(0);                          return(0);
                 if ( ! append_delims(mdoc, tok, pos, buf))                  if ( ! append_delims(mdoc, tok, pos, buf))
                         return(0);                          return(0);
                 return(scope_rewind_imp(mdoc, ppos, tok));          }
         case (ARGS_EOLN):          return(rewind_impblock(mdoc, ppos, tok));
                 return(scope_rewind_imp(mdoc, ppos, tok));  }
   
   
   int
   macro_constant_scoped(MACRO_PROT_ARGS)
   {
           int               lastarg, flushed, j, c, maxargs;
           char             *p;
   
           lastarg = ppos;
           flushed = 0;
   
           switch (tok) {
           case (MDOC_Eo):
                   maxargs = 1;
                   break;
         default:          default:
                 abort();                  maxargs = 0;
                 /* NOTREACHED */                  break;
         }          }
   
         if (MDOC_MAX != (c = mdoc_find(mdoc, p))) {          if ( ! mdoc_valid_pre(mdoc, tok, ppos, 0, NULL))
                 if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                  return(0);
   
           mdoc_block_alloc(mdoc, ppos, tok, 0, NULL);
           mdoc->next = MDOC_NEXT_CHILD;
   
           if (0 == maxargs) {
                   mdoc_head_alloc(mdoc, ppos, tok);
                   if ( ! rewind_head(mdoc, ppos, tok))
                         return(0);                          return(0);
                 if (ppos > 1)                  mdoc_body_alloc(mdoc, ppos, tok);
                         return(scope_rewind_imp(mdoc, ppos, tok));                  flushed = 1;
                 if ( ! scope_rewind_line(mdoc, ppos, tok))          } else
                   mdoc_head_alloc(mdoc, ppos, tok);
   
           mdoc->next = MDOC_NEXT_CHILD;
   
           for (j = 0; j < MDOC_LINEARG_MAX; j++) {
                   lastarg = *pos;
   
                   if (j == maxargs && ! flushed) {
                           if ( ! rewind_head(mdoc, ppos, tok))
                                   return(0);
                           flushed = 1;
                           mdoc_body_alloc(mdoc, ppos, tok);
                           mdoc->next = MDOC_NEXT_CHILD;
                   }
   
                   c = mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p);
                   if (ARGS_ERROR == c)
                         return(0);                          return(0);
                 if ( ! append_delims(mdoc, tok, pos, buf))                  if (ARGS_PUNCT == c)
                         return(0);                          break;
                 return(scope_rewind_imp(mdoc, ppos, tok));                  if (ARGS_EOLN == c)
                           break;
   
                   if (MDOC_MAX != (c = lookup(mdoc, tok, p))) {
                           if ( ! flushed) {
                                   if ( ! rewind_head(mdoc, ppos, tok))
                                           return(0);
                                   flushed = 1;
                                   mdoc_body_alloc(mdoc, ppos, tok);
                                   mdoc->next = MDOC_NEXT_CHILD;
                           }
                           if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
                                   return(0);
                           break;
                   }
   
                   if ( ! flushed && mdoc_isdelim(p)) {
                           if ( ! rewind_head(mdoc, ppos, tok))
                                   return(0);
                           flushed = 1;
                           mdoc_body_alloc(mdoc, ppos, tok);
                           mdoc->next = MDOC_NEXT_CHILD;
                   }
   
                   mdoc_word_alloc(mdoc, lastarg, p);
                   mdoc->next = MDOC_NEXT_SIBLING;
         }          }
   
         if (mdoc_isdelim(p))          if (MDOC_LINEARG_MAX == j)
                 j = 0;                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
   
         mdoc_word_alloc(mdoc, lastarg, p);          if ( ! flushed) {
         mdoc->next = MDOC_NEXT_SIBLING;                  if ( ! rewind_head(mdoc, ppos, tok))
         goto again;                          return(0);
         /* NOTREACHED */                  mdoc_body_alloc(mdoc, ppos, tok);
                   mdoc->next = MDOC_NEXT_CHILD;
           }
   
           if (ppos > 1)
                   return(1);
           return(append_delims(mdoc, tok, pos, buf));
 }  }
   
   
 /*  /*
  * FIXME: like in with macro_constant, have the append_ routine chop the   * Delimited macros are like text macros except that, should punctuation
  * number of requisite arguments (this is ugly when done in-line).   * be encountered, the macro isn't re-started with remaining tokens
    * (it's only emitted once).  Delimited macros can have a maximum number
    * of arguments.
  */   */
 int  int
 macro_constant_delimited(MACRO_PROT_ARGS)  macro_constant_delimited(MACRO_PROT_ARGS)
 {  {
         int               lastarg, flushed, c, maxargs;          int               lastarg, flushed, j, c, maxargs, argc;
           struct mdoc_arg   argv[MDOC_LINEARG_MAX];
         char             *p;          char             *p;
   
         /* Process line parameters. */  
   
         lastarg = ppos;          lastarg = ppos;
         flushed = 0;          flushed = 0;
   
         /* Token pre-processing. */  
   
         switch (tok) {          switch (tok) {
         case (MDOC_No):          case (MDOC_No):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Ns):          case (MDOC_Ns):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Ux):          case (MDOC_Ux):
                   /* FALLTHROUGH */
           case (MDOC_St):
                 maxargs = 0;                  maxargs = 0;
                 break;                  break;
         default:          default:
Line 584  macro_constant_delimited(MACRO_PROT_ARGS)
Line 709  macro_constant_delimited(MACRO_PROT_ARGS)
                 break;                  break;
         }          }
   
 again:          for (argc = 0; argc < MDOC_LINEARG_MAX; argc++) {
         lastarg = *pos;                  lastarg = *pos;
                   c = mdoc_argv(mdoc, tok, &argv[argc], pos, buf);
                   if (ARGV_EOLN == c || ARGV_WORD == c)
                           break;
                   else if (ARGV_ARG == c)
                           continue;
                   mdoc_argv_free(argc, argv);
                   return(0);
           }
   
         switch (mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p)) {          if ( ! mdoc_valid_pre(mdoc, tok, ppos, argc, argv)) {
         case (ARGS_ERROR):                  mdoc_argv_free(argc, argv);
                 return(0);                  return(0);
         case (ARGS_WORD):  
                 break;  
         case (ARGS_PUNCT):  
                 if ( ! flushed && ! append_text(mdoc, tok, ppos, 0, &p))  
                         return(0);  
                 if (ppos > 1)  
                         return(1);  
                 return(append_delims(mdoc, tok, pos, buf));  
         case (ARGS_EOLN):  
                 if (flushed)  
                         return(1);  
                 return(append_text(mdoc, tok, ppos, 0, &p));  
         default:  
                 abort();  
                 /* NOTREACHED */  
         }          }
   
         /* Accepts no arguments: flush out symbol and continue. */          mdoc_elem_alloc(mdoc, lastarg, tok, argc, argv);
           mdoc->next = MDOC_NEXT_CHILD;
   
         if ( ! flushed && 0 == maxargs) {          mdoc_argv_free(argc, argv);
                 if ( ! append_text(mdoc, tok, ppos, 0, &p))  
                         return(0);  
                 flushed = 1;  
         }  
   
         if (MDOC_MAX != (c = mdoc_find(mdoc, p))) {          for (j = 0; j < MDOC_LINEARG_MAX; j++) {
                 if ( ! flushed && ! append_text(mdoc, tok, ppos, 0, &p))                  lastarg = *pos;
                         return(0);  
                 if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))  
                         return(0);  
                 if (ppos > 1)  
                         return(1);  
                 return(append_delims(mdoc, tok, pos, buf));  
         }  
   
         /*                  if (j == maxargs && ! flushed) {
          * We only accept one argument; subsequent tokens are considered                          if ( ! rewind_elem(mdoc, ppos, tok))
          * as literal words (until a macro).                                  return(0);
          */                          flushed = 1;
                   }
   
         if ( ! flushed && ! mdoc_isdelim(p)) {                  c = mdoc_args(mdoc, tok, pos, buf, ARGS_DELIM, &p);
                if ( ! append_text(mdoc, tok, ppos, 1, &p))                  if (ARGS_ERROR == c)
                         return(0);                          return(0);
                 flushed = 1;                  if (ARGS_PUNCT == c)
                 goto again;                          break;
         } else if ( ! flushed) {                  if (ARGS_EOLN == c)
                 if ( ! append_text(mdoc, tok, ppos, 0, &p))                          break;
                         return(0);  
                 flushed = 1;                  if (MDOC_MAX != (c = lookup(mdoc, tok, p))) {
                           if ( ! flushed && ! rewind_elem(mdoc, ppos, tok))
                                   return(0);
                           flushed = 1;
                           if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
                                   return(0);
                           break;
                   }
   
                   if ( ! flushed && mdoc_isdelim(p)) {
                           if ( ! rewind_elem(mdoc, ppos, tok))
                                   return(0);
                           flushed = 1;
                   }
   
                   mdoc_word_alloc(mdoc, lastarg, p);
                   mdoc->next = MDOC_NEXT_SIBLING;
         }          }
   
         mdoc_word_alloc(mdoc, lastarg, p);          if (MDOC_LINEARG_MAX == j)
         mdoc->next = MDOC_NEXT_SIBLING;                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
         goto again;  
         /* NOTREACHED */          if ( ! flushed && rewind_elem(mdoc, ppos, tok))
                   return(0);
   
           if (ppos > 1)
                   return(1);
           return(append_delims(mdoc, tok, pos, buf));
 }  }
   
   
   /*
    * Constant macros span an entire line:  they constitute a macro and all
    * of its arguments and child data.
    */
 int  int
 macro_constant(MACRO_PROT_ARGS)  macro_constant(MACRO_PROT_ARGS)
 {  {
         int               c, lastarg, argc, sz, fl;          int              c, lastarg, argc, sz, fl;
         char             *args[MDOC_LINEARG_MAX];          struct mdoc_arg  argv[MDOC_LINEARG_MAX];
         struct mdoc_arg   argv[MDOC_LINEARG_MAX];          char            *p;
   
           /*assert( ! (MDOC_PARSED & mdoc_macros[tok].flags));*/
           /*FIXME*/
   
         fl = 0;          fl = 0;
         if (MDOC_QUOTABLE & mdoc_macros[tok].flags)          if (MDOC_QUOTABLE & mdoc_macros[tok].flags)
                 fl = ARGS_QUOTED;                  fl = ARGS_QUOTED;
Line 678  macro_constant(MACRO_PROT_ARGS)
Line 815  macro_constant(MACRO_PROT_ARGS)
                 return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
         }          }
   
           mdoc_elem_alloc(mdoc, ppos, tok, argc, argv);
           mdoc->next = MDOC_NEXT_CHILD;
   
           mdoc_argv_free(argc, argv);
   
         for (sz = 0; sz + argc < MDOC_LINEARG_MAX; sz++) {          for (sz = 0; sz + argc < MDOC_LINEARG_MAX; sz++) {
                 lastarg = *pos;                  lastarg = *pos;
                 c = mdoc_args(mdoc, tok, pos, buf, fl, &args[sz]);                  c = mdoc_args(mdoc, tok, pos, buf, fl, &p);
                 if (ARGS_ERROR == c)                  if (ARGS_ERROR == c)
                         return(0);                          return(0);
                 if (ARGS_EOLN == c)                  if (ARGS_EOLN == c)
                         break;                          break;
   
                   mdoc_word_alloc(mdoc, lastarg, p);
                   mdoc->next = MDOC_NEXT_SIBLING;
         }          }
   
         if (MDOC_LINEARG_MAX == sz + argc) {          if (MDOC_LINEARG_MAX == sz + argc)
                 mdoc_argv_free(argc, argv);  
                 return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));                  return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
         }  
   
         c = append_text_argv(mdoc, tok, ppos, sz, args, argc, argv);          return(rewind_elem(mdoc, ppos, tok));
         mdoc_argv_free(argc, argv);  
         return(c);  
 }  }
   
   
Line 704  macro_obsolete(MACRO_PROT_ARGS)
Line 845  macro_obsolete(MACRO_PROT_ARGS)
 {  {
   
         return(mdoc_warn(mdoc, tok, ppos, WARN_IGN_OBSOLETE));          return(mdoc_warn(mdoc, tok, ppos, WARN_IGN_OBSOLETE));
   }
   
   
   int
   macro_end(struct mdoc *mdoc)
   {
   
           assert(mdoc->first);
           assert(mdoc->last);
           return(rewind_last(mdoc, -1, mdoc->first));
 }  }

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

CVSweb