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

Diff for /mandoc/mdoc_argv.c between version 1.43 and 1.56

version 1.43, 2010/05/08 07:30:19 version 1.56, 2010/07/13 23:53:20
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 26 
Line 26 
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
   
   #include "mandoc.h"
 #include "libmdoc.h"  #include "libmdoc.h"
 #include "libmandoc.h"  #include "libmandoc.h"
   
Line 209  static int mdoc_argflags[MDOC_MAX] = {
Line 210  static int mdoc_argflags[MDOC_MAX] = {
         0, /* br */          0, /* br */
         0, /* sp */          0, /* sp */
         0, /* %U */          0, /* %U */
           0, /* Ta */
 };  };
   
   
Line 225  mdoc_argv(struct mdoc *m, int line, enum mdoct tok,
Line 227  mdoc_argv(struct mdoc *m, int line, enum mdoct tok,
         struct mdoc_argv tmp;          struct mdoc_argv tmp;
         struct mdoc_arg  *arg;          struct mdoc_arg  *arg;
   
         if (0 == buf[*pos])          if ('\0' == buf[*pos])
                 return(ARGV_EOLN);                  return(ARGV_EOLN);
   
         assert(' ' != buf[*pos]);          assert(' ' != buf[*pos]);
Line 246  mdoc_argv(struct mdoc *m, int line, enum mdoct tok,
Line 248  mdoc_argv(struct mdoc *m, int line, enum mdoct tok,
   
         /* XXX - save zeroed byte, if not an argument. */          /* XXX - save zeroed byte, if not an argument. */
   
         sv = 0;          sv = '\0';
         if (buf[*pos]) {          if (buf[*pos]) {
                 sv = buf[*pos];                  sv = buf[*pos];
                 buf[(*pos)++] = 0;                  buf[(*pos)++] = '\0';
         }          }
   
         (void)memset(&tmp, 0, sizeof(struct mdoc_argv));          (void)memset(&tmp, 0, sizeof(struct mdoc_argv));
Line 338  enum margserr
Line 340  enum margserr
 mdoc_args(struct mdoc *m, int line, int *pos,  mdoc_args(struct mdoc *m, int line, int *pos,
                 char *buf, enum mdoct tok, char **v)                  char *buf, enum mdoct tok, char **v)
 {  {
         int               fl, c, i;          int               fl;
         struct mdoc_node *n;          struct mdoc_node *n;
   
         fl = mdoc_argflags[tok];          fl = mdoc_argflags[tok];
Line 346  mdoc_args(struct mdoc *m, int line, int *pos, 
Line 348  mdoc_args(struct mdoc *m, int line, int *pos, 
         if (MDOC_It != tok)          if (MDOC_It != tok)
                 return(args(m, line, pos, buf, fl, v));                  return(args(m, line, pos, buf, fl, v));
   
         /*          /*
          * The `It' macro is a special case, as it acquires parameters from its           * We know that we're in an `It', so it's reasonable to expect
          * parent `Bl' context, specifically, we're concerned with -column.           * us to be sitting in a `Bl'.  Someday this may not be the case
            * (if we allow random `It's sitting out there), so provide a
            * safe fall-back into the default behaviour.
          */           */
   
         for (n = m->last; n; n = n->parent)          for (n = m->last; n; n = n->parent)
                 if (MDOC_BLOCK == n->type && MDOC_Bl == n->tok)                  if (MDOC_Bl == n->tok)
                         break;                          break;
   
         assert(n);          assert(n->data.Bl);
         c = (int)(n->args ? n->args->argc : 0);          if (n && LIST_column == n->data.Bl->type) {
         assert(c > 0);  
   
         /* LINTED */  
         for (i = 0; i < c; i++) {  
                 if (MDOC_Column != n->args->argv[i].arg)  
                         continue;  
                 fl |= ARGS_TABSEP;                  fl |= ARGS_TABSEP;
                 fl &= ~ARGS_DELIM;                  fl &= ~ARGS_DELIM;
                 break;  
         }          }
   
         return(args(m, line, pos, buf, fl, v));          return(args(m, line, pos, buf, fl, v));
Line 376  static enum margserr
Line 373  static enum margserr
 args(struct mdoc *m, int line, int *pos,  args(struct mdoc *m, int line, int *pos,
                 char *buf, int fl, char **v)                  char *buf, int fl, char **v)
 {  {
         int               i;          int              i;
         char             *p, *pp;          char            *p, *pp;
         enum margserr     rc;          enum margserr    rc;
           enum mdelim      d;
   
         /*          /*
          * Parse out the terms (like `val' in `.Xx -arg val' or simply           * Parse out the terms (like `val' in `.Xx -arg val' or simply
Line 395  args(struct mdoc *m, int line, int *pos, 
Line 393  args(struct mdoc *m, int line, int *pos, 
          *   phrases like in `Bl -column'.           *   phrases like in `Bl -column'.
          */           */
   
         assert(*pos);  
         assert(' ' != buf[*pos]);          assert(' ' != buf[*pos]);
   
         if ('\0' == buf[*pos])          if ('\0' == buf[*pos]) {
                   if (MDOC_PPHRASE & m->flags)
                           return(ARGS_EOLN);
                   /*
                    * If we're not in a partial phrase and the flag for
                    * being a phrase literal is still set, the punctuation
                    * is unterminated.
                    */
                   if (MDOC_PHRASELIT & m->flags)
                           if ( ! mdoc_pmsg(m, line, *pos, MANDOCERR_BADQUOTE))
                                   return(ARGS_ERROR);
   
                   m->flags &= ~MDOC_PHRASELIT;
                 return(ARGS_EOLN);                  return(ARGS_EOLN);
           }
   
         /*          /*
          * If the first character is a delimiter and we're to look for           * If the first character is a closing delimiter and we're to
          * delimited strings, then pass down the buffer seeing if it           * look for delimited strings, then pass down the buffer seeing
          * follows the pattern of [[::delim::][ ]+]+.           * if it follows the pattern of [[::delim::][ ]+]+.  Note that
            * we ONLY care about closing delimiters.
          */           */
   
         if ((fl & ARGS_DELIM) && mdoc_iscdelim(buf[*pos]) > 1) {          if ((fl & ARGS_DELIM) && DELIM_CLOSE == mdoc_iscdelim(buf[*pos])) {
                 for (i = *pos; buf[i]; ) {                  for (i = *pos; buf[i]; ) {
                         if ( mdoc_iscdelim(buf[i]) < 2)                          d = mdoc_iscdelim(buf[i]);
                           if (DELIM_NONE == d || DELIM_OPEN == d)
                                 break;                                  break;
                         i++;                          i++;
                         if (0 == buf[i] || ' ' != buf[i])                          if ('\0' == buf[i] || ' ' != buf[i])
                                 break;                                  break;
                         i++;                          i++;
                         while (buf[i] && ' ' == buf[i])                          while (buf[i] && ' ' == buf[i])
                                 i++;                                  i++;
                 }                  }
   
                 if (0 == buf[i]) {                  if ('\0' == buf[i]) {
                         *v = &buf[*pos];                          *v = &buf[*pos];
                         if (' ' != buf[i - 1])                          if (i && ' ' != buf[i - 1])
                                 return(ARGS_PUNCT);                                  return(ARGS_PUNCT);
                         if (ARGS_NOWARN & fl)                          if (ARGS_NOWARN & fl)
                                 return(ARGS_PUNCT);                                  return(ARGS_PUNCT);
                         if ( ! mdoc_pwarn(m, line, *pos, ETAILWS))                          if ( ! mdoc_pmsg(m, line, *pos, MANDOCERR_EOLNSPACE))
                                 return(ARGS_ERROR);                                  return(ARGS_ERROR);
                         return(ARGS_PUNCT);                          return(ARGS_PUNCT);
                 }                  }
Line 443  args(struct mdoc *m, int line, int *pos, 
Line 455  args(struct mdoc *m, int line, int *pos, 
         if (ARGS_TABSEP & fl) {          if (ARGS_TABSEP & fl) {
                 /* Scan ahead to tab (can't be escaped). */                  /* Scan ahead to tab (can't be escaped). */
                 p = strchr(*v, '\t');                  p = strchr(*v, '\t');
                   pp = NULL;
   
                 /* Scan ahead to unescaped `Ta'. */                  /* Scan ahead to unescaped `Ta'. */
                 for (pp = *v; ; pp++) {                  if ( ! (MDOC_PHRASELIT & m->flags))
                         if (NULL == (pp = strstr(pp, "Ta")))                          for (pp = *v; ; pp++) {
                                 break;                                  if (NULL == (pp = strstr(pp, "Ta")))
                         if (pp > *v && ' ' != *(pp - 1))                                          break;
                                 continue;                                  if (pp > *v && ' ' != *(pp - 1))
                         if (' ' == *(pp + 2) || 0 == *(pp + 2))                                          continue;
                                 break;                                  if (' ' == *(pp + 2) || '\0' == *(pp + 2))
                 }                                          break;
                           }
   
                 /* By default, assume a phrase. */                  /* By default, assume a phrase. */
                 rc = ARGS_PHRASE;                  rc = ARGS_PHRASE;
Line 471  args(struct mdoc *m, int line, int *pos, 
Line 485  args(struct mdoc *m, int line, int *pos, 
                 } else if (pp && ! p) {                  } else if (pp && ! p) {
                         p = pp;                          p = pp;
                         *pos += 2;                          *pos += 2;
                 } else                  } else {
                           rc = ARGS_PEND;
                         p = strchr(*v, 0);                          p = strchr(*v, 0);
                   }
   
                 /* Whitespace check for eoln case... */                  /* Whitespace check for eoln case... */
                 if (0 == *p && ' ' == *(p - 1) && ! (ARGS_NOWARN & fl))                  if ('\0' == *p && ' ' == *(p - 1) && ! (ARGS_NOWARN & fl))
                         if ( ! mdoc_pwarn(m, line, *pos, ETAILWS))                          if ( ! mdoc_pmsg(m, line, *pos, MANDOCERR_EOLNSPACE))
                                 return(ARGS_ERROR);                                  return(ARGS_ERROR);
   
                 *pos += (int)(p - *v);                  *pos += (int)(p - *v);
Line 503  args(struct mdoc *m, int line, int *pos, 
Line 519  args(struct mdoc *m, int line, int *pos, 
          * Whitespace is NOT involved in literal termination.           * Whitespace is NOT involved in literal termination.
          */           */
   
         if ('\"' == buf[*pos]) {          if (MDOC_PHRASELIT & m->flags || '\"' == buf[*pos]) {
                 *v = &buf[++(*pos)];                  if ( ! (MDOC_PHRASELIT & m->flags))
                           *v = &buf[++(*pos)];
   
                   if (MDOC_PPHRASE & m->flags)
                           m->flags |= MDOC_PHRASELIT;
   
                 for ( ; buf[*pos]; (*pos)++) {                  for ( ; buf[*pos]; (*pos)++) {
                         if ('\"' != buf[*pos])                          if ('\"' != buf[*pos])
                                 continue;                                  continue;
Line 514  args(struct mdoc *m, int line, int *pos, 
Line 534  args(struct mdoc *m, int line, int *pos, 
                         (*pos)++;                          (*pos)++;
                 }                  }
   
                 if (0 == buf[*pos]) {                  if ('\0' == buf[*pos]) {
                         if (ARGS_NOWARN & fl)                          if (ARGS_NOWARN & fl || MDOC_PPHRASE & m->flags)
                                 return(ARGS_QWORD);                                  return(ARGS_QWORD);
                         if ( ! mdoc_pwarn(m, line, *pos, EQUOTTERM))                          if ( ! mdoc_pmsg(m, line, *pos, MANDOCERR_BADQUOTE))
                                 return(ARGS_ERROR);                                  return(ARGS_ERROR);
                         return(ARGS_QWORD);                          return(ARGS_QWORD);
                 }                  }
   
                 buf[(*pos)++] = 0;                  m->flags &= ~MDOC_PHRASELIT;
                   buf[(*pos)++] = '\0';
   
                 if (0 == buf[*pos])                  if ('\0' == buf[*pos])
                         return(ARGS_QWORD);                          return(ARGS_QWORD);
   
                 while (' ' == buf[*pos])                  while (' ' == buf[*pos])
                         (*pos)++;                          (*pos)++;
   
                 if (0 == buf[*pos] && ! (ARGS_NOWARN & fl))                  if (0 == buf[*pos] && ! (ARGS_NOWARN & fl))
                         if ( ! mdoc_pwarn(m, line, *pos, ETAILWS))                          if ( ! mdoc_pmsg(m, line, *pos, MANDOCERR_EOLNSPACE))
                                 return(ARGS_ERROR);                                  return(ARGS_ERROR);
   
                 return(ARGS_QWORD);                  return(ARGS_QWORD);
Line 543  args(struct mdoc *m, int line, int *pos, 
Line 564  args(struct mdoc *m, int line, int *pos, 
          */           */
   
         for ( ; buf[*pos]; (*pos)++)          for ( ; buf[*pos]; (*pos)++)
                 if (' ' == buf[*pos] && '\\' != buf[*pos - 1])                  if (*pos && ' ' == buf[*pos] && '\\' != buf[*pos - 1])
                         break;                          break;
   
         if (0 == buf[*pos])          if ('\0' == buf[*pos])
                 return(ARGS_WORD);                  return(ARGS_WORD);
   
         buf[(*pos)++] = 0;          buf[(*pos)++] = '\0';
   
         while (' ' == buf[*pos])          while (' ' == buf[*pos])
                 (*pos)++;                  (*pos)++;
   
         if (0 == buf[*pos] && ! (ARGS_NOWARN & fl))          if ('\0' == buf[*pos] && ! (ARGS_NOWARN & fl))
                 if ( ! mdoc_pwarn(m, line, *pos, ETAILWS))                  if ( ! mdoc_pmsg(m, line, *pos, MANDOCERR_EOLNSPACE))
                         return(ARGS_ERROR);                          return(ARGS_ERROR);
   
         return(ARGS_WORD);          return(ARGS_WORD);
Line 727  argv_single(struct mdoc *m, int line, 
Line 748  argv_single(struct mdoc *m, int line, 
         ppos = *pos;          ppos = *pos;
   
         ac = args(m, line, pos, buf, 0, &p);          ac = args(m, line, pos, buf, 0, &p);
         if (ARGS_ERROR == ac)          if (ARGS_EOLN == ac) {
                   mdoc_pmsg(m, line, ppos, MANDOCERR_SYNTARGVCOUNT);
                 return(0);                  return(0);
         if (ARGS_EOLN == ac)          } else if (ARGS_ERROR == ac)
                 return(mdoc_perr(m, line, ppos, EARGVAL));                  return(0);
   
         v->sz = 1;          v->sz = 1;
         v->value = mandoc_malloc(sizeof(char *));          v->value = mandoc_malloc(sizeof(char *));

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.56

CVSweb