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

Diff for /mandoc/roff.c between version 1.210 and 1.217

version 1.210, 2014/06/25 00:20:19 version 1.217, 2014/07/04 16:12:08
Line 187  static int   roff_evalstrcond(const char *, int *);
Line 187  static int   roff_evalstrcond(const char *, int *);
 static  void             roff_free1(struct roff *);  static  void             roff_free1(struct roff *);
 static  void             roff_freereg(struct roffreg *);  static  void             roff_freereg(struct roffreg *);
 static  void             roff_freestr(struct roffkv *);  static  void             roff_freestr(struct roffkv *);
 static  char            *roff_getname(struct roff *, char **, int, int);  static  size_t           roff_getname(struct roff *, char **, int, int);
 static  int              roff_getnum(const char *, int *, int *);  static  int              roff_getnum(const char *, int *, int *);
 static  int              roff_getop(const char *, int *, char *);  static  int              roff_getop(const char *, int *, char *);
 static  int              roff_getregn(const struct roff *,  static  int              roff_getregn(const struct roff *,
Line 200  static enum rofferr  roff_line_ignore(ROFF_ARGS);
Line 200  static enum rofferr  roff_line_ignore(ROFF_ARGS);
 static  enum rofferr     roff_nr(ROFF_ARGS);  static  enum rofferr     roff_nr(ROFF_ARGS);
 static  void             roff_openeqn(struct roff *, const char *,  static  void             roff_openeqn(struct roff *, const char *,
                                 int, int, const char *);                                  int, int, const char *);
 static  enum rofft       roff_parse(struct roff *, const char *, int *);  static  enum rofft       roff_parse(struct roff *, char *, int *,
                                   int, int);
 static  enum rofferr     roff_parsetext(char **, size_t *, int, int *);  static  enum rofferr     roff_parsetext(char **, size_t *, int, int *);
 static  enum rofferr     roff_res(struct roff *,  static  enum rofferr     roff_res(struct roff *,
                                 char **, size_t *, int, int);                                  char **, size_t *, int, int);
Line 764  roff_parseln(struct roff *r, int ln, char **bufp,
Line 765  roff_parseln(struct roff *r, int ln, char **bufp,
          * the compilers handle it.           * the compilers handle it.
          */           */
   
         if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos)))          if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos, ln, ppos)))
                 return(ROFF_CONT);                  return(ROFF_CONT);
   
         assert(roffs[t].proc);          assert(roffs[t].proc);
Line 797  roff_endparse(struct roff *r)
Line 798  roff_endparse(struct roff *r)
  * form of ".foo xxx" in the usual way.   * form of ".foo xxx" in the usual way.
  */   */
 static enum rofft  static enum rofft
 roff_parse(struct roff *r, const char *buf, int *pos)  roff_parse(struct roff *r, char *buf, int *pos, int ln, int ppos)
 {  {
           char            *cp;
         const char      *mac;          const char      *mac;
         size_t           maclen;          size_t           maclen;
         enum rofft       t;          enum rofft       t;
   
         if ('\0' == buf[*pos] || '"' == buf[*pos] ||          cp = buf + *pos;
             '\t' == buf[*pos] || ' ' == buf[*pos])  
           if ('\0' == *cp || '"' == *cp || '\t' == *cp || ' ' == *cp)
                 return(ROFF_MAX);                  return(ROFF_MAX);
   
         /* We stop the macro parse at an escape, tab, space, or nil. */          mac = cp;
           maclen = roff_getname(r, &cp, ln, ppos);
   
         mac = buf + *pos;  
         maclen = strcspn(mac, " \\\t\0");  
   
         t = (r->current_string = roff_getstrn(r, mac, maclen))          t = (r->current_string = roff_getstrn(r, mac, maclen))
             ? ROFF_USERDEF : roffhash_find(mac, maclen);              ? ROFF_USERDEF : roffhash_find(mac, maclen);
   
         *pos += (int)maclen;          if (ROFF_MAX != t)
                   *pos = cp - buf;
   
         while (buf[*pos] && ' ' == buf[*pos])  
                 (*pos)++;  
   
         return(t);          return(t);
 }  }
   
Line 857  roff_cblock(ROFF_ARGS)
Line 856  roff_cblock(ROFF_ARGS)
         }          }
   
         if ((*bufp)[pos])          if ((*bufp)[pos])
                 mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL);                  mandoc_vmsg(MANDOCERR_ARG_SKIP, r->parse, ln, pos,
                       ".. %s", *bufp + pos);
   
         roffnode_pop(r);          roffnode_pop(r);
         roffnode_cleanscope(r);          roffnode_cleanscope(r);
Line 910  roff_ccond(struct roff *r, int ln, int ppos)
Line 910  roff_ccond(struct roff *r, int ln, int ppos)
 static enum rofferr  static enum rofferr
 roff_block(ROFF_ARGS)  roff_block(ROFF_ARGS)
 {  {
         int             sv;          char            *name, *cp;
         size_t          sz;          size_t           namesz;
         char            *name;  
   
         name = NULL;          name = cp = *bufp + pos;
           namesz = 0;
   
         if (ROFF_ig != tok) {          if (ROFF_ig != tok) {
                 if ('\0' == (*bufp)[pos]) {                  if ('\0' == *cp) {
                         mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL);                          mandoc_msg(MANDOCERR_REQ_EMPTY, r->parse,
                               ln, ppos, roffs[tok].name);
                         return(ROFF_IGN);                          return(ROFF_IGN);
                 }                  }
   
Line 929  roff_block(ROFF_ARGS)
Line 930  roff_block(ROFF_ARGS)
   
                 if (ROFF_de1 == tok)                  if (ROFF_de1 == tok)
                         tok = ROFF_de;                          tok = ROFF_de;
                 if (ROFF_de == tok)                  else if (ROFF_de != tok)
                         name = *bufp + pos;  
                 else  
                         mandoc_msg(MANDOCERR_REQUEST, r->parse, ln, ppos,                          mandoc_msg(MANDOCERR_REQUEST, r->parse, ln, ppos,
                             roffs[tok].name);                              roffs[tok].name);
   
                 while ((*bufp)[pos] && ! isspace((unsigned char)(*bufp)[pos]))                  namesz = roff_getname(r, &cp, ln, ppos);
                         pos++;                  name[namesz] = '\0';
           } else
                   name = NULL;
   
                 while (isspace((unsigned char)(*bufp)[pos]))  
                         (*bufp)[pos++] = '\0';  
         }  
   
         roffnode_push(r, tok, name, ln, ppos);          roffnode_push(r, tok, name, ln, ppos);
   
         /*          /*
Line 950  roff_block(ROFF_ARGS)
Line 947  roff_block(ROFF_ARGS)
          * appended from roff_block_text() in multiline mode.           * appended from roff_block_text() in multiline mode.
          */           */
   
         if (ROFF_de == tok)          if (namesz && ROFF_de == tok)
                 roff_setstr(r, name, "", 0);                  roff_setstrn(&r->strtab, name, namesz, "", 0, 0);
   
         if ('\0' == (*bufp)[pos])          if ('\0' == *cp)
                 return(ROFF_IGN);                  return(ROFF_IGN);
   
         /* If present, process the custom end-of-line marker. */          /* If present, process the custom end-of-line marker. */
   
         sv = pos;          name = cp;
         while ((*bufp)[pos] && ! isspace((unsigned char)(*bufp)[pos]))          namesz = roff_getname(r, &cp, ln, ppos);
                 pos++;          if (namesz)
                   r->last->end = mandoc_strndup(name, namesz);
   
         /*          if ('\0' != *cp)
          * Note: groff does NOT like escape characters in the input.                  mandoc_vmsg(MANDOCERR_ARG_EXCESS, r->parse,
          * Instead of detecting this, we're just going to let it fly and                      ln, pos, ".%s ... %s", roffs[tok].name, cp);
          * to hell with it.  
          */  
   
         assert(pos > sv);  
         sz = (size_t)(pos - sv);  
   
         if (1 == sz && '.' == (*bufp)[sv])  
                 return(ROFF_IGN);  
   
         r->last->end = mandoc_malloc(sz + 1);  
   
         memcpy(r->last->end, *bufp + sv, sz);  
         r->last->end[(int)sz] = '\0';  
   
         if ((*bufp)[pos])  
                 mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL);  
   
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
   
Line 1016  roff_block_sub(ROFF_ARGS)
Line 998  roff_block_sub(ROFF_ARGS)
                                 i++;                                  i++;
   
                         pos = i;                          pos = i;
                         if (ROFF_MAX != roff_parse(r, *bufp, &pos))                          if (ROFF_MAX != roff_parse(r, *bufp, &pos, ln, ppos))
                                 return(ROFF_RERUN);                                  return(ROFF_RERUN);
                         return(ROFF_IGN);                          return(ROFF_IGN);
                 }                  }
Line 1027  roff_block_sub(ROFF_ARGS)
Line 1009  roff_block_sub(ROFF_ARGS)
          * pulling it out of the hashtable.           * pulling it out of the hashtable.
          */           */
   
         t = roff_parse(r, *bufp, &pos);          t = roff_parse(r, *bufp, &pos, ln, ppos);
   
         /*          /*
          * Macros other than block-end are only significant           * Macros other than block-end are only significant
Line 1062  roff_cond_sub(ROFF_ARGS)
Line 1044  roff_cond_sub(ROFF_ARGS)
   
         rr = r->last->rule;          rr = r->last->rule;
         roffnode_cleanscope(r);          roffnode_cleanscope(r);
         t = roff_parse(r, *bufp, &pos);          t = roff_parse(r, *bufp, &pos, ln, ppos);
   
         /*          /*
          * Fully handle known macros when they are structurally           * Fully handle known macros when they are structurally
Line 1306  roff_cond(ROFF_ARGS)
Line 1288  roff_cond(ROFF_ARGS)
          */           */
   
         if ('\0' == (*bufp)[pos])          if ('\0' == (*bufp)[pos])
                 mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_COND_EMPTY, r->parse,
                       ln, ppos, roffs[tok].name);
   
         r->last->endspan = 1;          r->last->endspan = 1;
   
Line 1318  out:
Line 1301  out:
 static enum rofferr  static enum rofferr
 roff_ds(ROFF_ARGS)  roff_ds(ROFF_ARGS)
 {  {
         char            *name, *string;          char            *string;
           const char      *name;
           size_t           namesz;
   
         /*          /*
          * A symbol is named by the first word following the macro           * The first word is the name of the string.
          * invocation up to a space.  Its value is anything after the           * If it is empty or terminated by an escape sequence,
          * name's trailing whitespace and optional double-quote.  Thus,           * abort the `ds' request without defining anything.
          *  
          *  [.ds foo "bar  "     ]  
          *  
          * will have `bar  "     ' as its value.  
          */           */
   
         string = *bufp + pos;          name = string = *bufp + pos;
         name = roff_getname(r, &string, ln, pos);  
         if ('\0' == *name)          if ('\0' == *name)
                 return(ROFF_IGN);                  return(ROFF_IGN);
   
         /* Read past initial double-quote. */          namesz = roff_getname(r, &string, ln, pos);
           if ('\\' == name[namesz])
                   return(ROFF_IGN);
   
           /* Read past the initial double-quote, if any. */
         if ('"' == *string)          if ('"' == *string)
                 string++;                  string++;
   
         /* The rest is the value. */          /* The rest is the value. */
         roff_setstr(r, name, string, ROFF_as == tok);          roff_setstrn(&r->strtab, name, namesz, string, strlen(string),
               ROFF_as == tok);
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
   
Line 1654  roff_freereg(struct roffreg *reg)
Line 1639  roff_freereg(struct roffreg *reg)
 static enum rofferr  static enum rofferr
 roff_nr(ROFF_ARGS)  roff_nr(ROFF_ARGS)
 {  {
         const char      *key;          char            *key, *val;
         char            *val;          size_t           keysz;
         int              iv;          int              iv;
         char             sign;          char             sign;
   
         val = *bufp + pos;          key = val = *bufp + pos;
         key = roff_getname(r, &val, ln, pos);          if ('\0' == *key)
                   return(ROFF_IGN);
   
           keysz = roff_getname(r, &val, ln, pos);
           if ('\\' == key[keysz])
                   return(ROFF_IGN);
           key[keysz] = '\0';
   
         sign = *val;          sign = *val;
         if ('+' == sign || '-' == sign)          if ('+' == sign || '-' == sign)
                 val++;                  val++;
Line 1676  static enum rofferr
Line 1667  static enum rofferr
 roff_rr(ROFF_ARGS)  roff_rr(ROFF_ARGS)
 {  {
         struct roffreg  *reg, **prev;          struct roffreg  *reg, **prev;
         const char      *name;          char            *name, *cp;
         char            *cp;          size_t           namesz;
   
         cp = *bufp + pos;          name = cp = *bufp + pos;
         name = roff_getname(r, &cp, ln, pos);          if ('\0' == *name)
                   return(ROFF_IGN);
           namesz = roff_getname(r, &cp, ln, pos);
           name[namesz] = '\0';
   
         prev = &r->regtab;          prev = &r->regtab;
         while (1) {          while (1) {
Line 1702  roff_rm(ROFF_ARGS)
Line 1696  roff_rm(ROFF_ARGS)
 {  {
         const char       *name;          const char       *name;
         char             *cp;          char             *cp;
           size_t            namesz;
   
         cp = *bufp + pos;          cp = *bufp + pos;
         while ('\0' != *cp) {          while ('\0' != *cp) {
                 name = roff_getname(r, &cp, ln, (int)(cp - *bufp));                  name = cp;
                 if ('\0' != *name)                  namesz = roff_getname(r, &cp, ln, (int)(cp - *bufp));
                         roff_setstr(r, name, NULL, 0);                  roff_setstrn(&r->strtab, name, namesz, NULL, 0, 0);
                   if ('\\' == name[namesz])
                           break;
         }          }
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
Line 2007  roff_userdef(ROFF_ARGS)
Line 2004  roff_userdef(ROFF_ARGS)
            ROFF_REPARSE : ROFF_APPEND);             ROFF_REPARSE : ROFF_APPEND);
 }  }
   
 static char *  static size_t
 roff_getname(struct roff *r, char **cpp, int ln, int pos)  roff_getname(struct roff *r, char **cpp, int ln, int pos)
 {  {
         char     *name, *cp;          char     *name, *cp;
           size_t    namesz;
   
         name = *cpp;          name = *cpp;
         if ('\0' == *name)          if ('\0' == *name)
                 return(name);                  return(0);
   
         /* Read until end of name. */          /* Read until end of name and terminate it with NUL. */
         for (cp = name; '\0' != *cp && ' ' != *cp; cp++) {          for (cp = name; 1; cp++) {
                   if ('\0' == *cp || ' ' == *cp) {
                           namesz = cp - name;
                           break;
                   }
                 if ('\\' != *cp)                  if ('\\' != *cp)
                         continue;                          continue;
                   namesz = cp - name;
                   if ('{' == cp[1] || '}' == cp[1])
                           break;
                 cp++;                  cp++;
                 if ('\\' == *cp)                  if ('\\' == *cp)
                         continue;                          continue;
                 mandoc_msg(MANDOCERR_NAMESC, r->parse, ln, pos, NULL);                  mandoc_msg(MANDOCERR_NAMESC, r->parse, ln, pos, NULL);
                 *cp = '\0';                  mandoc_escape((const char **)&cp, NULL, NULL);
                 name = cp;                  break;
         }          }
   
         /* Nil-terminate name. */  
         if ('\0' != *cp)  
                 *(cp++) = '\0';  
   
         /* Read past spaces. */          /* Read past spaces. */
         while (' ' == *cp)          while (' ' == *cp)
                 cp++;                  cp++;
   
         *cpp = cp;          *cpp = cp;
         return(name);          return(namesz);
 }  }
   
 /*  /*
Line 2068  roff_setstrn(struct roffkv **r, const char *name, size
Line 2069  roff_setstrn(struct roffkv **r, const char *name, size
         /* Search for an existing string with the same name. */          /* Search for an existing string with the same name. */
         n = *r;          n = *r;
   
         while (n && strcmp(name, n->key.p))          while (n && (namesz != n->key.sz ||
                           strncmp(n->key.p, name, namesz)))
                 n = n->next;                  n = n->next;
   
         if (NULL == n) {          if (NULL == n) {

Legend:
Removed from v.1.210  
changed lines
  Added in v.1.217

CVSweb