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

Diff for /mandoc/Attic/argv.c between version 1.11 and 1.12

version 1.11, 2009/01/12 10:31:53 version 1.12, 2009/01/12 16:39:57
Line 29 
Line 29 
 static  int              lookup(int, const char *);  static  int              lookup(int, const char *);
 static  int              parse(struct mdoc *, int, int,  static  int              parse(struct mdoc *, int, int,
                                 struct mdoc_arg *, int *, char *);                                  struct mdoc_arg *, int *, char *);
   static  int              parse_single(struct mdoc *, int,
                                   struct mdoc_arg *, int *, char *);
   static  int              parse_multi(struct mdoc *, int,
                                   struct mdoc_arg *, int *, char *);
 static  int              postparse(struct mdoc *, int,  static  int              postparse(struct mdoc *, int,
                                 const struct mdoc_arg *, int);                                  const struct mdoc_arg *, int);
   
Line 50  mdoc_args(struct mdoc *mdoc, int line, int *pos, char 
Line 54  mdoc_args(struct mdoc *mdoc, int line, int *pos, char 
                         return(ARGS_ERROR);                          return(ARGS_ERROR);
   
         if ((fl & ARGS_DELIM) && mdoc_iscdelim(buf[*pos])) {          if ((fl & ARGS_DELIM) && mdoc_iscdelim(buf[*pos])) {
                   /*
                    * If ARGS_DELIM, return ARGS_PUNCT if only space-separated
                    * punctuation remains.
                    */
                 for (i = *pos; buf[i]; ) {                  for (i = *pos; buf[i]; ) {
                         if ( ! mdoc_iscdelim(buf[i]))                          if ( ! mdoc_iscdelim(buf[i]))
                                 break;                                  break;
Line 66  mdoc_args(struct mdoc *mdoc, int line, int *pos, char 
Line 74  mdoc_args(struct mdoc *mdoc, int line, int *pos, char 
                 }                  }
         }          }
   
         /*          /* Parse routine for non-quoted string. */
          * Parse routine for non-quoted string.  
          */  
   
         if ('\"' != buf[*pos]) {          if ('\"' != buf[*pos]) {
                 *v = &buf[*pos];                  *v = &buf[*pos];
   
                 while (buf[*pos] && ! isspace(buf[*pos]))                  /* FIXME: UGLY tab-sep processing. */
                         (*pos)++;  
   
                   if (ARGS_TABSEP & fl)
                           while (buf[*pos]) {
                                   if ('\t' == buf[*pos])
                                           break;
                                   if ('T' == buf[*pos]) {
                                           (*pos)++;
                                           if (0 == buf[*pos])
                                                   break;
                                           if ('a' == buf[*pos]) {
                                                   buf[*pos - 1] = 0;
                                                   break;
                                           }
                                   }
                                   (*pos)++;
                           }
                   else
                           while (buf[*pos] && ! isspace(buf[*pos]))
                                   (*pos)++;
   
                 if (0 == buf[*pos])                  if (0 == buf[*pos])
                         return(ARGS_WORD);                          return(ARGS_WORD);
   
                 buf[(*pos)++] = 0;                  buf[(*pos)++] = 0;
   
                 if (0 == buf[*pos])                  if (0 == buf[*pos])
                         return(ARGS_WORD);                          return(ARGS_WORD);
   
                 while (buf[*pos] && isspace(buf[*pos]))                  if ( ! (ARGS_TABSEP & fl))
                         (*pos)++;                          while (buf[*pos] && isspace(buf[*pos]))
                                   (*pos)++;
   
                 if (buf[*pos])                  if (buf[*pos])
                         return(ARGS_WORD);                          return(ARGS_WORD);
Line 101  mdoc_args(struct mdoc *mdoc, int line, int *pos, char 
Line 127  mdoc_args(struct mdoc *mdoc, int line, int *pos, char 
          * error.  After, parse to the next word.           * error.  After, parse to the next word.
          */           */
   
           assert( ! (ARGS_TABSEP & fl));
   
         *v = &buf[++(*pos)];          *v = &buf[++(*pos)];
   
         while (buf[*pos] && '\"' != buf[*pos])          while (buf[*pos] && '\"' != buf[*pos])
Line 318  postparse(struct mdoc *mdoc, int line, const struct md
Line 346  postparse(struct mdoc *mdoc, int line, const struct md
   
   
 static int  static int
 parse(struct mdoc *mdoc, int line, int tok,  parse_multi(struct mdoc *mdoc, int line,
                 struct mdoc_arg *v, int *pos, char *buf)                  struct mdoc_arg *v, int *pos, char *buf)
 {  {
           int              c, ppos;
         char            *p;          char            *p;
         int              c, ppos, i;  
   
           v->sz = 0;
           v->value = xcalloc(MDOC_LINEARG_MAX, sizeof(char *));
   
         ppos = *pos;          ppos = *pos;
   
         switch (v->arg) {          for (v->sz = 0; v->sz < MDOC_LINEARG_MAX; v->sz++) {
         case(MDOC_Std):                  if ('-' == buf[*pos])
                 /* FALLTHROUGH */                          break;
         case(MDOC_Width):  
                 /* FALLTHROUGH */  
         case(MDOC_Offset):  
                 /*  
                  * This has a single value for an argument.  
                  */  
                 c = mdoc_args(mdoc, line, pos, buf, ARGS_QUOTED, &p);                  c = mdoc_args(mdoc, line, pos, buf, ARGS_QUOTED, &p);
                 if (ARGS_ERROR == c)                  if (ARGS_ERROR == c) {
                           free(v->value);
                         return(0);                          return(0);
                 else if (ARGS_EOLN != c) {                  } else if (ARGS_EOLN == c)
                         v->sz = 1;  
                         v->value = xcalloc(1, sizeof(char *));  
                         v->value[0] = p;  
                         break;                          break;
                 }                  v->value[v->sz] = p;
           }
   
           if (0 < v->sz && v->sz < MDOC_LINEARG_MAX)
                   return(1);
   
           c = 0 == v->sz ? ERR_SYNTAX_ARGVAL : ERR_SYNTAX_ARGMANY;
           free(v->value);
           return(mdoc_perr(mdoc, line, ppos, c));
   }
   
   
   static int
   parse_single(struct mdoc *mdoc, int line,
                   struct mdoc_arg *v, int *pos, char *buf)
   {
           int              c, ppos;
           char            *p;
   
           ppos = *pos;
   
           c = mdoc_args(mdoc, line, pos, buf, ARGS_QUOTED, &p);
           if (ARGS_ERROR == c)
                   return(0);
           if (ARGS_EOLN == c)
                 return(mdoc_perr(mdoc, line, ppos, ERR_SYNTAX_ARGVAL));                  return(mdoc_perr(mdoc, line, ppos, ERR_SYNTAX_ARGVAL));
   
         case(MDOC_Column):          v->sz = 1;
                 /*          v->value = xcalloc(1, sizeof(char *));
                  * This has several value for a single argument.  We          v->value[0] = p;
                  * pre-allocate a pointer array and don't let it exceed          return(1);
                  * this size.  }
                  */  
                 v->sz = 0;  
                 v->value = xcalloc(MDOC_LINEARG_MAX, sizeof(char *));  
                 for (i = 0; i < MDOC_LINEARG_MAX; i++) {  
                         c = mdoc_args(mdoc, line, pos, buf, ARGS_QUOTED, &p);  
                         if (ARGS_ERROR == c) {  
                                 free(v->value);  
                                 return(0);  
                         } else if (ARGS_EOLN == c)  
                                 break;  
                         v->value[i] = p;  
                 }  
                 if (0 == i) {  
                         free(v->value);  
                         return(mdoc_perr(mdoc, line, ppos,  
                                                 ERR_SYNTAX_ARGVAL));  
                 } else if (MDOC_LINEARG_MAX == i)  
                         return(mdoc_perr(mdoc, line, ppos,  
                                                 ERR_SYNTAX_ARGMANY));  
   
                 v->sz = i;  
                 break;  
   
   static int
   parse(struct mdoc *mdoc, int line, int tok,
                   struct mdoc_arg *v, int *pos, char *buf)
   {
   
           v->sz = 0;
           v->value = NULL;
   
           switch (v->arg) {
           case(MDOC_Std):
                   /* FALLTHROUGH */
           case(MDOC_Width):
                   /* FALLTHROUGH */
           case(MDOC_Offset):
                   return(parse_single(mdoc, line, v, pos, buf));
           case(MDOC_Column):
                   return(parse_multi(mdoc, line, v, pos, buf));
         default:          default:
                 v->sz = 0;  
                 v->value = NULL;  
                 break;                  break;
         }          }
   

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

CVSweb