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

Diff for /mandoc/Attic/macro.c between version 1.11 and 1.13

version 1.11, 2008/12/29 18:08:44 version 1.13, 2008/12/30 13:43:53
Line 28 
Line 28 
 #include "private.h"  #include "private.h"
   
 /* FIXME: maxlineargs should be per LINE, no per TOKEN. */  /* FIXME: maxlineargs should be per LINE, no per TOKEN. */
   /* FIXME: prologue check should be in macro_call. */
   
 #define _CC(p)  ((const char **)p)  #define _CC(p)  ((const char **)p)
   
Line 36  static int   scope_rewind_imp(struct mdoc *, int, int)
Line 37  static int   scope_rewind_imp(struct mdoc *, int, int)
 static  int       append_text(struct mdoc *, int,  static  int       append_text(struct mdoc *, int,
                         int, int, char *[]);                          int, int, char *[]);
 static  int       append_const(struct mdoc *, int, int, int, char *[]);  static  int       append_const(struct mdoc *, int, int, int, char *[]);
   static  int       append_constarg(struct mdoc *, int, int,
                            int, const struct mdoc_arg *);
 static  int       append_scoped(struct mdoc *, int, int, int,  static  int       append_scoped(struct mdoc *, int, int, int,
                         const char *[], int, const struct mdoc_arg *);                          const char *[], int, const struct mdoc_arg *);
 static  int       append_delims(struct mdoc *, int, int *, char *);  static  int       append_delims(struct mdoc *, int, int *, char *);
Line 127  scope_rewind_exp(struct mdoc *mdoc, int ppos, int tok,
Line 130  scope_rewind_exp(struct mdoc *mdoc, int ppos, int tok,
   
   
 static int  static int
   append_constarg(struct mdoc *mdoc, int tok, int pos,
                   int argc, const struct mdoc_arg *argv)
   {
   
           switch (tok) {
           default:
                   break;
           }
   
           mdoc_elem_alloc(mdoc, pos, tok, argc, argv, 0, NULL);
           return(1);
   }
   
   
   /*
    * Append a node with implicit or explicit scoping ONLY.  ALL macros
    * with the implicit- or explicit-scope callback must be included here.
    */
   static int
 append_scoped(struct mdoc *mdoc, int tok, int pos,  append_scoped(struct mdoc *mdoc, int tok, int pos,
                 int sz, const char *args[],                  int sz, const char *args[],
                 int argc, const struct mdoc_arg *argv)                  int argc, const struct mdoc_arg *argv)
Line 136  append_scoped(struct mdoc *mdoc, int tok, int pos, 
Line 158  append_scoped(struct mdoc *mdoc, int tok, int pos, 
   
         switch (tok) {          switch (tok) {
          /* ======= ADD MORE MACRO CHECKS BELOW. ======= */           /* ======= ADD MORE MACRO CHECKS BELOW. ======= */
   
         case (MDOC_Sh):          case (MDOC_Sh):
                   /*
                    * Check rules for section ordering.  We can have
                    * "known" sections (like NAME and so on) and "custom"
                    * sections, which are unknown.  If we have a known
                    * section, we should fall within the conventional
                    * section order.
                    */
                 if (0 == sz)                  if (0 == sz)
                         return(mdoc_err(mdoc, tok, pos, ERR_ARGS_GE1));                          return(mdoc_err(mdoc, tok, pos, ERR_ARGS_GE1));
   
Line 147  append_scoped(struct mdoc *mdoc, int tok, int pos, 
Line 177  append_scoped(struct mdoc *mdoc, int tok, int pos, 
   
                 if (SEC_BODY == mdoc->sec_last && SEC_NAME != sec)                  if (SEC_BODY == mdoc->sec_last && SEC_NAME != sec)
                         return(mdoc_err(mdoc, tok, pos, ERR_SEC_NAME));                          return(mdoc_err(mdoc, tok, pos, ERR_SEC_NAME));
   
                 if (SEC_CUSTOM != sec)                  if (SEC_CUSTOM != sec)
                         mdoc->sec_lastn = sec;                          mdoc->sec_lastn = sec;
                 mdoc->sec_last = sec;                  mdoc->sec_last = sec;
                 break;                  break;
   
         case (MDOC_Ss):          case (MDOC_Ss):
                 if (0 == sz)                  if (0 != sz)
                         return(mdoc_err(mdoc, tok, pos, ERR_ARGS_GE1));                          break;
                 break;                  return(mdoc_err(mdoc, tok, pos, ERR_ARGS_GE1));
   
         case (MDOC_Bd):          case (MDOC_Bd):
                   /*
                    * We can't be nested within any other block displays
                    * (or really any other kind of display, although Bd is
                    * the only multi-line one that will show up).
                    */
                 assert(mdoc->last);                  assert(mdoc->last);
                 node = mdoc->last->parent;                  node = mdoc->last->parent;
                 /* LINTED */                  /* LINTED */
Line 167  append_scoped(struct mdoc *mdoc, int tok, int pos, 
Line 201  append_scoped(struct mdoc *mdoc, int tok, int pos, 
                                 continue;                                  continue;
                         if (node->data.block.tok != MDOC_Bd)                          if (node->data.block.tok != MDOC_Bd)
                                 continue;                                  continue;
                         return(mdoc_err(mdoc, tok, pos, ERR_SCOPE_NONEST));                          break;
                 }                  }
                 break;                  if (NULL == node)
                           break;
                   return(mdoc_err(mdoc, tok, pos, ERR_SCOPE_NONEST));
   
         case (MDOC_Bl):          case (MDOC_Bl):
                 break;                  break;
Line 194  append_const(struct mdoc *mdoc, int tok, 
Line 230  append_const(struct mdoc *mdoc, int tok, 
   
         switch (tok) {          switch (tok) {
          /* ======= ADD MORE MACRO CHECKS BELOW. ======= */           /* ======= ADD MORE MACRO CHECKS BELOW. ======= */
   
           /* FIXME: this is the ugliest part of this page. */
         case (MDOC_At):          case (MDOC_At):
                 /* This needs special handling. */                  /* This needs special handling. */
                 if (0 == sz)                  if (0 == sz)
Line 219  append_const(struct mdoc *mdoc, int tok, 
Line 257  append_const(struct mdoc *mdoc, int tok, 
                 mdoc_word_alloc(mdoc, pos, args[1]);                  mdoc_word_alloc(mdoc, pos, args[1]);
                 return(1);                  return(1);
   
           case (MDOC_Nd):
                   if (sz > 0)
                           break;
                   if ( ! mdoc_warn(mdoc, tok, pos, WARN_ARGS_GE1))
                           return(0);
                   break;
   
           case (MDOC_Hf):
                   if (1 == sz)
                           break;
                   return(mdoc_err(mdoc, tok, pos, ERR_ARGS_EQ1));
   
         case (MDOC_Bx):          case (MDOC_Bx):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Bsx):          case (MDOC_Bsx):
Line 258  append_text(struct mdoc *mdoc, int tok, 
Line 308  append_text(struct mdoc *mdoc, int tok, 
                 int pos, int sz, char *args[])                  int pos, int sz, char *args[])
 {  {
   
         assert(sz >= 0);  
         args[sz] = NULL;  
   
         switch (tok) {          switch (tok) {
          /* ======= ADD MORE MACRO CHECKS BELOW. ======= */           /* ======= ADD MORE MACRO CHECKS BELOW. ======= */
         case (MDOC_Pp):          case (MDOC_Pp):
Line 307  append_text(struct mdoc *mdoc, int tok, 
Line 354  append_text(struct mdoc *mdoc, int tok, 
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Ic):          case (MDOC_Ic):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
           case (MDOC_Sy):
                   /* FALLTHROUGH */
           case (MDOC_Sx):
                   /* FALLTHROUGH */
         case (MDOC_Va):          case (MDOC_Va):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Vt):          case (MDOC_Vt):
Line 328  int
Line 379  int
 macro_text(MACRO_PROT_ARGS)  macro_text(MACRO_PROT_ARGS)
 {  {
         int               lastarg, lastpunct, c, j;          int               lastarg, lastpunct, c, j;
         char             *args[MDOC_LINEARG_MAX], *p;          char             *args[MDOC_LINEARG_MAX];
   
         if (SEC_PROLOGUE == mdoc->sec_lastn)          if (SEC_PROLOGUE == mdoc->sec_lastn)
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));                  return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));
Line 427  again:
Line 478  again:
          * is non-terminal punctuation.           * is non-terminal punctuation.
          */           */
   
         p = args[j];  
         if ( ! lastpunct && ! append_text(mdoc, tok, ppos, j, args))          if ( ! lastpunct && ! append_text(mdoc, tok, ppos, j, args))
                 return(0);                  return(0);
   
         mdoc_word_alloc(mdoc, lastarg, p);          mdoc_word_alloc(mdoc, lastarg, args[j]);
         j = 0;          j = 0;
         lastpunct = 1;          lastpunct = 1;
   
Line 951  int
Line 1001  int
 macro_constant_delimited(MACRO_PROT_ARGS)  macro_constant_delimited(MACRO_PROT_ARGS)
 {  {
         int               lastarg, flushed, c, maxargs;          int               lastarg, flushed, c, maxargs;
         char             *p, *pp;          char             *p;
   
         if (SEC_PROLOGUE == mdoc->sec_lastn)          if (SEC_PROLOGUE == mdoc->sec_lastn)
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));                  return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));
Line 998  again:
Line 1048  again:
         /* Accepts no arguments: flush out symbol and continue. */          /* Accepts no arguments: flush out symbol and continue. */
   
         if (0 == maxargs) {          if (0 == maxargs) {
                 pp = p;  
                 if ( ! append_const(mdoc, tok, ppos, 0, &p))                  if ( ! append_const(mdoc, tok, ppos, 0, &p))
                         return(0);                          return(0);
                 p = pp;  
                 flushed = 1;                  flushed = 1;
         }          }
   
Line 1026  again:
Line 1074  again:
                 flushed = 1;                  flushed = 1;
                 goto again;                  goto again;
         } else if ( ! flushed) {          } else if ( ! flushed) {
                 pp = p;  
                 if ( ! append_const(mdoc, tok, ppos, 0, &p))                  if ( ! append_const(mdoc, tok, ppos, 0, &p))
                         return(0);                          return(0);
                 p = pp;  
                 flushed = 1;                  flushed = 1;
         }          }
   
Line 1049  macro_constant(MACRO_PROT_ARGS)
Line 1095  macro_constant(MACRO_PROT_ARGS)
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));                  return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));
   
         j = 0;          j = 0;
           lastarg = ppos;
   
 again:  again:
         if (j == MDOC_LINEARG_MAX)          if (j == MDOC_LINEARG_MAX)
Line 1075  again:
Line 1122  again:
         j++;          j++;
         goto again;          goto again;
         /* NOTREACHED */          /* NOTREACHED */
   }
   
   
   int
   macro_constant_argv(MACRO_PROT_ARGS)
   {
           int               c, lastarg, j;
           struct mdoc_arg   argv[MDOC_LINEARG_MAX];
   
           if (SEC_PROLOGUE == mdoc->sec_lastn)
                   return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));
   
           lastarg = *pos;
   
           for (j = 0; j < MDOC_LINEARG_MAX; j++) {
                   lastarg = *pos;
                   c = mdoc_argv(mdoc, tok, &argv[j], pos, buf);
                   if (0 == c)
                           break;
                   else if (1 == c)
                           continue;
   
                   mdoc_argv_free(j, argv);
                   return(0);
           }
   
           if (MDOC_LINEARG_MAX == j) {
                   mdoc_argv_free(j, argv);
                   return(mdoc_err(mdoc, tok, lastarg, ERR_ARGS_MANY));
           }
   
           c = append_constarg(mdoc, tok, ppos, j, argv);
           mdoc_argv_free(j, argv);
           return(c);
 }  }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.13

CVSweb