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

Diff for /mandoc/Attic/argv.c between version 1.27 and 1.31

version 1.27, 2009/02/23 12:45:19 version 1.31, 2009/02/24 13:46:54
Line 35 
Line 35 
 #define ARGS_DELIM      (1 << 1)  #define ARGS_DELIM      (1 << 1)
 #define ARGS_TABSEP     (1 << 2)  #define ARGS_TABSEP     (1 << 2)
   
 static  int              lookup(int, const char *);  static  int              argv_a2arg(int, const char *);
 static  int              args(struct mdoc *, int, int *,  static  int              args(struct mdoc *, int, int *,
                                 char *, int, char **);                                  char *, int, char **);
 static  int              argv(struct mdoc *, int,  static  int              argv(struct mdoc *, int,
Line 44  static int   argv_single(struct mdoc *, int, 
Line 44  static int   argv_single(struct mdoc *, int, 
                                 struct mdoc_arg *, int *, char *);                                  struct mdoc_arg *, int *, char *);
 static  int              argv_multi(struct mdoc *, int,  static  int              argv_multi(struct mdoc *, int,
                                 struct mdoc_arg *, int *, char *);                                  struct mdoc_arg *, int *, char *);
 static  int              postargv(struct mdoc *, int,  
                                 const struct mdoc_arg *, int);  
 static  int              pwarn(struct mdoc *, int, int, int);  static  int              pwarn(struct mdoc *, int, int, int);
 static  int              perr(struct mdoc *, int, int, int);  static  int              perr(struct mdoc *, int, int, int);
   
Line 59  static int   perr(struct mdoc *, int, int, int);
Line 57  static int   perr(struct mdoc *, int, int, int);
 /* Error messages. */  /* Error messages. */
   
 #define EQUOTTERM       (0)  #define EQUOTTERM       (0)
 #define EOFFSET         (1)  #define EARGVAL         (1)
 #define EARGVAL         (2)  #define EARGMANY        (2)
 #define EARGMANY        (3)  
   
 static  int mdoc_argflags[MDOC_MAX] = {  static  int mdoc_argflags[MDOC_MAX] = {
         0, /* \" */          0, /* \" */
Line 183  perr(struct mdoc *mdoc, int line, int pos, int code)
Line 180  perr(struct mdoc *mdoc, int line, int pos, int code)
                 c = mdoc_perr(mdoc, line, pos,                  c = mdoc_perr(mdoc, line, pos,
                                 "unterminated quoted parameter");                                  "unterminated quoted parameter");
                 break;                  break;
         case (EOFFSET):  
                 c = mdoc_perr(mdoc, line, pos,  
                                 "invalid value for offset argument");  
                 break;  
         case (EARGVAL):          case (EARGVAL):
                 c = mdoc_perr(mdoc, line, pos,                  c = mdoc_perr(mdoc, line, pos,
                                 "argument requires a value");                                  "argument requires a value");
Line 274  static int
Line 267  static int
 args(struct mdoc *mdoc, int line,  args(struct mdoc *mdoc, int line,
                 int *pos, char *buf, int fl, char **v)                  int *pos, char *buf, int fl, char **v)
 {  {
         int               i, c;          int               i;
         char             *p, *pp;          char             *p, *pp;
   
         assert(*pos > 0);          assert(*pos > 0);
Line 297  args(struct mdoc *mdoc, int line, 
Line 290  args(struct mdoc *mdoc, int line, 
          */           */
   
         if ((fl & ARGS_DELIM) && mdoc_iscdelim(buf[*pos])) {          if ((fl & ARGS_DELIM) && mdoc_iscdelim(buf[*pos])) {
                 for (i = *pos; (c = buf[i]); ) {                  for (i = *pos; buf[i]; ) {
                         if ( ! mdoc_iscdelim(c))                          if ( ! mdoc_iscdelim(buf[i]))
                                 break;                                  break;
                         i++;                          i++;
                         if (0 == buf[i] || ! isspace(c))                          while (buf[i] && isspace((int)buf[i]))
                                 break;  
                         i++;  
                         while (buf[i] && isspace(c))  
                                 i++;                                  i++;
                 }                  }
                 if (0 == buf[i]) {                  if (0 == buf[i]) {
Line 411  args(struct mdoc *mdoc, int line, 
Line 401  args(struct mdoc *mdoc, int line, 
                 /* Do non-tabsep look-ahead here. */                  /* Do non-tabsep look-ahead here. */
   
                 if ( ! (ARGS_TABSEP & fl))                  if ( ! (ARGS_TABSEP & fl))
                         while ((c = buf[*pos])) {                          while (buf[*pos]) {
                                 if (isspace(c))                                  if (isspace((int)buf[*pos]))
                                         if ('\\' != buf[*pos - 1])                                          if ('\\' != buf[*pos - 1])
                                                 break;                                                  break;
                                 (*pos)++;                                  (*pos)++;
Line 473  args(struct mdoc *mdoc, int line, 
Line 463  args(struct mdoc *mdoc, int line, 
   
   
 static int  static int
 lookup(int tok, const char *argv)  argv_a2arg(int tok, const char *argv)
 {  {
   
         switch (tok) {          switch (tok) {
Line 637  lookup(int tok, const char *argv)
Line 627  lookup(int tok, const char *argv)
   
   
 static int  static int
 postargv(struct mdoc *mdoc, int line, const struct mdoc_arg *v, int pos)  
 {  
   
         switch (v->arg) {  
         case (MDOC_Offset):  
                 assert(v->value);  
                 assert(v->value[0]);  
                 if (xstrcmp(v->value[0], "left"))  
                         break;  
                 if (xstrcmp(v->value[0], "right"))  
                         break;  
                 if (xstrcmp(v->value[0], "center"))  
                         break;  
                 if (xstrcmp(v->value[0], "indent"))  
                         break;  
                 if (xstrcmp(v->value[0], "indent-two"))  
                         break;  
                 return(perr(mdoc, line, pos, EOFFSET));  
         default:  
                 break;  
         }  
   
         return(1);  
 }  
   
   
 static int  
 argv_multi(struct mdoc *mdoc, int line,  argv_multi(struct mdoc *mdoc, int line,
                 struct mdoc_arg *v, int *pos, char *buf)                  struct mdoc_arg *v, int *pos, char *buf)
 {  {
Line 749  int
Line 712  int
 mdoc_argv(struct mdoc *mdoc, int line, int tok,  mdoc_argv(struct mdoc *mdoc, int line, int tok,
                 struct mdoc_arg *v, int *pos, char *buf)                  struct mdoc_arg *v, int *pos, char *buf)
 {  {
         int              i, ppos;          int              i;
         char            *p;          char            *p;
   
         (void)memset(v, 0, sizeof(struct mdoc_arg));          (void)memset(v, 0, sizeof(struct mdoc_arg));
Line 781  mdoc_argv(struct mdoc *mdoc, int line, int tok,
Line 744  mdoc_argv(struct mdoc *mdoc, int line, int tok,
         if (buf[*pos])          if (buf[*pos])
                 buf[(*pos)++] = 0;                  buf[(*pos)++] = 0;
   
         if (MDOC_ARG_MAX == (v->arg = lookup(tok, p))) {          if (MDOC_ARG_MAX == (v->arg = argv_a2arg(tok, p))) {
                 if ( ! pwarn(mdoc, line, i, WARGVPARM))                  if ( ! pwarn(mdoc, line, i, WARGVPARM))
                         return(ARGV_ERROR);                          return(ARGV_ERROR);
                 return(ARGV_WORD);                  return(ARGV_WORD);
Line 792  mdoc_argv(struct mdoc *mdoc, int line, int tok,
Line 755  mdoc_argv(struct mdoc *mdoc, int line, int tok,
   
         /* FIXME: whitespace if no value. */          /* FIXME: whitespace if no value. */
   
         ppos = *pos;  
         if ( ! argv(mdoc, line, v, pos, buf))          if ( ! argv(mdoc, line, v, pos, buf))
                 return(ARGV_ERROR);  
         if ( ! postargv(mdoc, line, v, ppos))  
                 return(ARGV_ERROR);                  return(ARGV_ERROR);
   
         return(ARGV_ARG);          return(ARGV_ARG);

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.31

CVSweb