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

Diff for /docbook2mdoc/parse.c between version 1.4 and 1.14

version 1.4, 2019/03/26 22:39:33 version 1.14, 2019/04/05 14:37:36
Line 17 
Line 17 
  */   */
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <expat.h>  #include <stdarg.h>
 #include <stdio.h>  #include <stdio.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
Line 29 
Line 30 
  * The implementation of the DocBook parser.   * The implementation of the DocBook parser.
  */   */
   
   enum    pstate {
           PARSE_ELEM,
           PARSE_TAG,
           PARSE_ARG,
           PARSE_SQ,
           PARSE_DQ
   };
   
 /*  /*
  * Global parse state.   * Global parse state.
  * Keep this as simple and small as possible.   * Keep this as simple and small as possible.
  */   */
 struct  parse {  struct  parse {
         XML_Parser       xml;  
         const char      *fname;  /* Name of the input file. */          const char      *fname;  /* Name of the input file. */
         struct ptree    *tree;   /* Complete parse result. */          struct ptree    *tree;   /* Complete parse result. */
         struct pnode    *cur;    /* Current node in the tree. */          struct pnode    *cur;    /* Current node in the tree. */
           enum nodeid      ncur;   /* Type of the current node. */
           int              line;   /* Line number in the input file. */
           int              col;    /* Column number in the input file. */
           int              nline;  /* Line number of next token. */
           int              ncol;   /* Column number of next token. */
         int              del;    /* Levels of nested nodes being deleted. */          int              del;    /* Levels of nested nodes being deleted. */
           int              attr;   /* The most recent attribute is valid. */
         int              warn;          int              warn;
 };  };
   
Line 63  static const struct element elements[] = {
Line 77  static const struct element elements[] = {
         { "citerefentry",       NODE_CITEREFENTRY },          { "citerefentry",       NODE_CITEREFENTRY },
         { "citetitle",          NODE_CITETITLE },          { "citetitle",          NODE_CITETITLE },
         { "cmdsynopsis",        NODE_CMDSYNOPSIS },          { "cmdsynopsis",        NODE_CMDSYNOPSIS },
         { "code",               NODE_CODE },          { "code",               NODE_LITERAL },
         { "colspec",            NODE_COLSPEC },          { "colspec",            NODE_COLSPEC },
         { "command",            NODE_COMMAND },          { "command",            NODE_COMMAND },
         { "constant",           NODE_CONSTANT },          { "constant",           NODE_CONSTANT },
           { "contrib",            NODE_CONTRIB },
         { "copyright",          NODE_COPYRIGHT },          { "copyright",          NODE_COPYRIGHT },
         { "date",               NODE_DATE },          { "date",               NODE_DATE },
         { "editor",             NODE_EDITOR },          { "editor",             NODE_EDITOR },
Line 74  static const struct element elements[] = {
Line 89  static const struct element elements[] = {
         { "emphasis",           NODE_EMPHASIS },          { "emphasis",           NODE_EMPHASIS },
         { "entry",              NODE_ENTRY },          { "entry",              NODE_ENTRY },
         { "envar",              NODE_ENVAR },          { "envar",              NODE_ENVAR },
           { "errorname",          NODE_ERRORNAME },
         { "fieldsynopsis",      NODE_FIELDSYNOPSIS },          { "fieldsynopsis",      NODE_FIELDSYNOPSIS },
         { "filename",           NODE_FILENAME },          { "filename",           NODE_FILENAME },
         { "firstname",          NODE_IGNORE },          { "firstname",          NODE_PERSONNAME },
         { "firstterm",          NODE_FIRSTTERM },          { "firstterm",          NODE_FIRSTTERM },
         { "footnote",           NODE_FOOTNOTE },          { "footnote",           NODE_FOOTNOTE },
         { "funcdef",            NODE_FUNCDEF },          { "funcdef",            NODE_FUNCDEF },
Line 91  static const struct element elements[] = {
Line 107  static const struct element elements[] = {
         { "indexterm",          NODE_DELETE },          { "indexterm",          NODE_DELETE },
         { "info",               NODE_INFO },          { "info",               NODE_INFO },
         { "informalequation",   NODE_INFORMALEQUATION },          { "informalequation",   NODE_INFORMALEQUATION },
         { "informaltable",      NODE_INFORMALTABLE },          { "informaltable",      NODE_TABLE },
         { "inlineequation",     NODE_INLINEEQUATION },          { "inlineequation",     NODE_INLINEEQUATION },
         { "itemizedlist",       NODE_ITEMIZEDLIST },          { "itemizedlist",       NODE_ITEMIZEDLIST },
         { "keysym",             NODE_KEYSYM },          { "keysym",             NODE_KEYSYM },
Line 116  static const struct element elements[] = {
Line 132  static const struct element elements[] = {
         { "option",             NODE_OPTION },          { "option",             NODE_OPTION },
         { "orderedlist",        NODE_ORDEREDLIST },          { "orderedlist",        NODE_ORDEREDLIST },
         { "orgname",            NODE_ORGNAME },          { "orgname",            NODE_ORGNAME },
         { "othername",          NODE_IGNORE },          { "othername",          NODE_PERSONNAME },
         { "para",               NODE_PARA },          { "para",               NODE_PARA },
         { "paramdef",           NODE_PARAMDEF },          { "paramdef",           NODE_PARAMDEF },
         { "parameter",          NODE_PARAMETER },          { "parameter",          NODE_PARAMETER },
Line 156  static const struct element elements[] = {
Line 172  static const struct element elements[] = {
         { "sgmltag",            NODE_SGMLTAG },          { "sgmltag",            NODE_SGMLTAG },
         { "simplelist",         NODE_SIMPLELIST },          { "simplelist",         NODE_SIMPLELIST },
         { "spanspec",           NODE_SPANSPEC },          { "spanspec",           NODE_SPANSPEC },
         { "structname",         NODE_STRUCTNAME },          { "structfield",        NODE_PARAMETER },
           { "structname",         NODE_TYPE },
         { "subtitle",           NODE_SUBTITLE },          { "subtitle",           NODE_SUBTITLE },
         { "surname",            NODE_IGNORE },          { "surname",            NODE_PERSONNAME },
           { "symbol",             NODE_CONSTANT },
         { "synopsis",           NODE_SYNOPSIS },          { "synopsis",           NODE_SYNOPSIS },
         { "table",              NODE_TABLE },          { "table",              NODE_TABLE },
         { "tbody",              NODE_TBODY },          { "tbody",              NODE_TBODY },
Line 171  static const struct element elements[] = {
Line 189  static const struct element elements[] = {
         { "trademark",          NODE_IGNORE },          { "trademark",          NODE_IGNORE },
         { "type",               NODE_TYPE },          { "type",               NODE_TYPE },
         { "ulink",              NODE_ULINK },          { "ulink",              NODE_ULINK },
         { "userinput",          NODE_USERINPUT },          { "userinput",          NODE_LITERAL },
         { "variablelist",       NODE_VARIABLELIST },          { "variablelist",       NODE_VARIABLELIST },
         { "varlistentry",       NODE_VARLISTENTRY },          { "varlistentry",       NODE_VARLISTENTRY },
         { "varname",            NODE_VARNAME },          { "varname",            NODE_VARNAME },
Line 179  static const struct element elements[] = {
Line 197  static const struct element elements[] = {
         { "wordasword",         NODE_WORDASWORD },          { "wordasword",         NODE_WORDASWORD },
         { "xi:include",         NODE_DELETE_WARN },          { "xi:include",         NODE_DELETE_WARN },
         { "year",               NODE_YEAR },          { "year",               NODE_YEAR },
         { NULL,                 NODE__MAX }          { NULL,                 NODE_IGNORE }
 };  };
   
   struct  entity {
           const char      *name;
           const char      *roff;
   };
   
 /*  /*
    * XML character entity references found in the wild.
    * Those that don't have an exact mandoc_char(7) representation
    * are approximated, and the desired codepoint is given as a comment.
    * Encoding them as \\[u...] would leave -Tascii out in the cold.
    */
   static  const struct entity entities[] = {
           { "alpha",      "\\(*a" },
           { "amp",        "&" },
           { "apos",       "'" },
           { "auml",       "\\(:a" },
           { "beta",       "\\(*b" },
           { "circ",       "^" },      /* U+02C6 */
           { "copy",       "\\(co" },
           { "dagger",     "\\(dg" },
           { "Delta",      "\\(*D" },
           { "eacute",     "\\('e" },
           { "emsp",       "\\ " },    /* U+2003 */
           { "gt",         ">" },
           { "hairsp",     "\\^" },
           { "kappa",      "\\(*k" },
           { "larr",       "\\(<-" },
           { "ldquo",      "\\(lq" },
           { "le",         "\\(<=" },
           { "lowbar",     "_" },
           { "lsqb",       "[" },
           { "lt",         "<" },
           { "mdash",      "\\(em" },
           { "minus",      "\\-" },
           { "ndash",      "\\(en" },
           { "nbsp",       "\\ " },
           { "num",        "#" },
           { "oslash",     "\\(/o" },
           { "ouml",       "\\(:o" },
           { "percnt",     "%" },
           { "quot",       "\\(dq" },
           { "rarr",       "\\(->" },
           { "rArr",       "\\(rA" },
           { "rdquo",      "\\(rq" },
           { "reg",        "\\(rg" },
           { "rho",        "\\(*r" },
           { "rsqb",       "]" },
           { "sigma",      "\\(*s" },
           { "shy",        "\\&" },     /* U+00AD */
           { "tau",        "\\(*t" },
           { "tilde",      "\\[u02DC]" },
           { "times",      "\\[tmu]" },
           { "uuml",       "\\(:u" },
           { NULL,         NULL }
   };
   
   static void
   error_msg(struct parse *p, const char *fmt, ...)
   {
           va_list          ap;
   
           fprintf(stderr, "%s:%d:%d: ", p->fname, p->line, p->col);
           va_start(ap, fmt);
           vfprintf(stderr, fmt, ap);
           va_end(ap);
           fputc('\n', stderr);
           p->tree->flags |= TREE_FAIL;
   }
   
   static void
   warn_msg(struct parse *p, const char *fmt, ...)
   {
           va_list          ap;
   
           if (p->warn == 0)
                   return;
   
           fprintf(stderr, "%s:%d:%d: warning: ", p->fname, p->line, p->col);
           va_start(ap, fmt);
           vfprintf(stderr, fmt, ap);
           va_end(ap);
           fputc('\n', stderr);
   }
   
   /*
  * Process a string of characters.   * Process a string of characters.
  * If a text node is already open, append to it.   * If a text node is already open, append to it.
  * Otherwise, create a new one as a child of the current node.   * Otherwise, create a new one as a child of the current node.
  */   */
 static void  static void
 xml_char(void *arg, const XML_Char *p, int sz)  xml_char(struct parse *ps, const char *p, int sz)
 {  {
         struct parse    *ps;  
         struct pnode    *dat;          struct pnode    *dat;
         int              i;  
   
         ps = arg;          if (ps->del > 0)
         if (ps->del > 0 || ps->tree->flags & TREE_FAIL)  
                 return;                  return;
   
         /*          if (ps->cur == NULL) {
          * Only create a new node if there is non-whitespace text.                  error_msg(ps, "discarding text before document: %.*s", sz, p);
          * Strip all leading whitespace.                  return;
          */          }
         if (ps->cur->node != NODE_TEXT) {  
                 for (i = 0; i < sz; i++)  
                         if (isspace((unsigned char)p[i]) == 0)  
                                 break;  
                 if (i == sz)  
                         return;  
                 p += i;  
                 sz -= i;  
   
           if (ps->cur->node != NODE_TEXT) {
                 if ((dat = calloc(1, sizeof(*dat))) == NULL) {                  if ((dat = calloc(1, sizeof(*dat))) == NULL) {
                         perror(NULL);                          perror(NULL);
                         exit(1);                          exit(1);
Line 223  xml_char(void *arg, const XML_Char *p, int sz)
Line 315  xml_char(void *arg, const XML_Char *p, int sz)
                 ps->cur = dat;                  ps->cur = dat;
         }          }
   
           if (ps->tree->flags & TREE_CLOSED &&
               ps->cur->parent == ps->tree->root)
                   warn_msg(ps, "text after end of document: %.*s", sz, p);
   
         /* Append to the current text node. */          /* Append to the current text node. */
   
         assert(sz >= 0);          assert(sz >= 0);
Line 246  pnode_trim(struct pnode *pn)
Line 342  pnode_trim(struct pnode *pn)
                         break;                          break;
 }  }
   
   static void
   xml_entity(struct parse *p, const char *name)
   {
           const struct entity     *entity;
           struct pnode            *dat;
   
           if (p->del > 0)
                   return;
   
           if (p->cur == NULL) {
                   error_msg(p, "discarding entity before document: &%s;", name);
                   return;
           }
   
           /* Close out the text node, if there is one. */
           if (p->cur->node == NODE_TEXT) {
                   pnode_trim(p->cur);
                   p->cur = p->cur->parent;
           }
   
           if (p->tree->flags & TREE_CLOSED && p->cur == p->tree->root)
                   warn_msg(p, "entity after end of document: &%s;", name);
   
           for (entity = entities; entity->name != NULL; entity++)
                   if (strcmp(name, entity->name) == 0)
                           break;
   
           if (entity->roff == NULL) {
                   error_msg(p, "unknown entity &%s;", name);
                   return;
           }
   
           /* Create, append, and close out an entity node. */
           if ((dat = calloc(1, sizeof(*dat))) == NULL ||
               (dat->b = dat->real = strdup(entity->roff)) == NULL) {
                   perror(NULL);
                   exit(1);
           }
           dat->node = NODE_ESCAPE;
           dat->bsz = strlen(dat->b);
           dat->parent = p->cur;
           TAILQ_INIT(&dat->childq);
           TAILQ_INIT(&dat->attrq);
           TAILQ_INSERT_TAIL(&p->cur->childq, dat, child);
   }
   
 /*  /*
  * Begin an element.   * Begin an element.
  * If the name is unknown, abort parsing.  
  */   */
 static void  static void
 xml_elem_start(void *arg, const XML_Char *name, const XML_Char **atts)  xml_elem_start(struct parse *ps, const char *name)
 {  {
         struct parse     *ps;          const struct element    *elem;
         const struct element *elem;          struct pnode            *dat;
         enum attrkey      key;  
         struct pnode     *dat;  
         struct pattr     *pattr;  
         const XML_Char  **att;  
   
         ps = arg;          if (*name == '!' || *name == '?')
         if (ps->tree->flags & TREE_FAIL)  
                 return;                  return;
   
         /*          /*
Line 283  xml_elem_start(void *arg, const XML_Char *name, const 
Line 419  xml_elem_start(void *arg, const XML_Char *name, const 
                 if (strcmp(elem->name, name) == 0)                  if (strcmp(elem->name, name) == 0)
                         break;                          break;
   
         if (elem->name == NULL) {          if (elem->name == NULL)
                 fprintf(stderr, "%s:%zu:%zu: unknown element \"%s\"\n",                  error_msg(ps, "unknown element <%s>", name);
                         ps->fname, XML_GetCurrentLineNumber(ps->xml),  
                         XML_GetCurrentColumnNumber(ps->xml), name);  
                 ps->tree->flags |= TREE_FAIL;  
                 return;  
         }  
   
         switch (elem->node) {          ps->ncur = elem->node;
   
           switch (ps->ncur) {
         case NODE_DELETE_WARN:          case NODE_DELETE_WARN:
                 if (ps->warn)                  warn_msg(ps, "skipping element <%s>", name);
                         fprintf(stderr, "%s:%zu:%zu: warning: "  
                             "skipping element <%s>\n", ps->fname,  
                             XML_GetCurrentLineNumber(ps->xml),  
                             XML_GetCurrentColumnNumber(ps->xml), name);  
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case NODE_DELETE:          case NODE_DELETE:
                 ps->del = 1;                  ps->del = 1;
Line 311  xml_elem_start(void *arg, const XML_Char *name, const 
Line 440  xml_elem_start(void *arg, const XML_Char *name, const 
                 break;                  break;
         }          }
   
           if (ps->tree->flags & TREE_CLOSED && ps->cur->parent == NULL)
                   warn_msg(ps, "element after end of document: <%s>", name);
   
         if ((dat = calloc(1, sizeof(*dat))) == NULL) {          if ((dat = calloc(1, sizeof(*dat))) == NULL) {
                 perror(NULL);                  perror(NULL);
                 exit(1);                  exit(1);
Line 326  xml_elem_start(void *arg, const XML_Char *name, const 
Line 458  xml_elem_start(void *arg, const XML_Char *name, const 
         ps->cur = dat;          ps->cur = dat;
         if (ps->tree->root == NULL)          if (ps->tree->root == NULL)
                 ps->tree->root = dat;                  ps->tree->root = dat;
   }
   
         /*  static void
          * Process attributes.  xml_attrkey(struct parse *ps, const char *name)
          */  {
         for (att = atts; *att != NULL; att += 2) {          struct pattr    *attr;
                 if ((key = attrkey_parse(*att)) == ATTRKEY__MAX) {          enum attrkey     key;
                         if (ps->warn)  
                                 fprintf(stderr, "%s:%zu:%zu: warning: "          if (ps->del > 0 || *name == '\0')
                                     "unknown attribute \"%s\"\n",                  return;
                                     ps->fname,          if ((key = attrkey_parse(name)) == ATTRKEY__MAX) {
                                     XML_GetCurrentLineNumber(ps->xml),                  ps->attr = 0;
                                     XML_GetCurrentColumnNumber(ps->xml),                  return;
                                     *att);  
                         continue;  
                 }  
                 pattr = calloc(1, sizeof(*pattr));  
                 pattr->key = key;  
                 if ((pattr->val = attrval_parse(att[1])) == ATTRVAL__MAX)  
                         pattr->rawval = strdup(att[1]);  
                 TAILQ_INSERT_TAIL(&dat->attrq, pattr, child);  
         }          }
           if ((attr = calloc(1, sizeof(*attr))) == NULL) {
                   perror(NULL);
                   exit(1);
           }
           attr->key = key;
           attr->val = ATTRVAL__MAX;
           attr->rawval = NULL;
           TAILQ_INSERT_TAIL(&ps->cur->attrq, attr, child);
           ps->attr = 1;
 }  }
   
   static void
   xml_attrval(struct parse *ps, const char *name)
   {
           struct pattr    *attr;
   
           if (ps->del > 0 || ps->attr == 0)
                   return;
           if ((attr = TAILQ_LAST(&ps->cur->attrq, pattrq)) == NULL)
                   return;
           if ((attr->val = attrval_parse(name)) == ATTRVAL__MAX &&
               (attr->rawval = strdup(name)) == NULL) {
                   perror(NULL);
                   exit(1);
           }
   }
   
 /*  /*
  * Roll up the parse tree.   * Roll up the parse tree.
  * If we're at a text node, roll that one up first.   * If we're at a text node, roll that one up first.
  */   */
 static void  static void
 xml_elem_end(void *arg, const XML_Char *name)  xml_elem_end(struct parse *ps, const char *name)
 {  {
         struct parse    *ps;          const struct element    *elem;
         const struct element *elem;          enum nodeid              node;
   
         ps = arg;  
         if (ps->tree->flags & TREE_FAIL)  
                 return;  
   
         /*          /*
          * An ancestor is excluded from the tree;           * An ancestor is excluded from the tree;
          * keep track of the number of levels excluded.           * keep track of the number of levels excluded.
Line 373  xml_elem_end(void *arg, const XML_Char *name)
Line 519  xml_elem_end(void *arg, const XML_Char *name)
         }          }
   
         /* Close out the text node, if there is one. */          /* Close out the text node, if there is one. */
         if (ps->del == 0 && ps->cur->node == NODE_TEXT) {          if (ps->del == 0 && ps->cur != NULL && ps->cur->node == NODE_TEXT) {
                 pnode_trim(ps->cur);                  pnode_trim(ps->cur);
                 ps->cur = ps->cur->parent;                  ps->cur = ps->cur->parent;
         }          }
   
         for (elem = elements; elem->name != NULL; elem++)          if (name != NULL) {
                 if (strcmp(elem->name, name) == 0)                  for (elem = elements; elem->name != NULL; elem++)
                         break;                          if (strcmp(elem->name, name) == 0)
                                   break;
                   node = elem->node;
           } else
                   node = ps->ncur;
   
         switch (elem->node) {          switch (node) {
         case NODE_DELETE_WARN:          case NODE_DELETE_WARN:
         case NODE_DELETE:          case NODE_DELETE:
                 ps->del--;                  if (ps->del > 0)
                           ps->del--;
                 break;                  break;
         case NODE_IGNORE:          case NODE_IGNORE:
                 break;                  break;
         default:          default:
                 assert(elem->node == ps->cur->node);                  if (ps->cur == NULL || node != ps->cur->node) {
                 ps->cur = ps->cur->parent;                          warn_msg(ps, "element not open: </%s>", name);
                           break;
                   }
   
                   /*
                    * Refrain from actually closing the document element.
                    * If no more content follows, no harm is done, but if
                    * some content still follows, simply processing it is
                    * obviously better than discarding it or crashing.
                    */
   
                   if (ps->cur->parent == NULL)
                           ps->tree->flags |= TREE_CLOSED;
                   else
                           ps->cur = ps->cur->parent;
                 break;                  break;
         }          }
         assert(ps->del == 0);          assert(ps->del == 0);
Line 409  parse_alloc(int warn)
Line 574  parse_alloc(int warn)
                 free(p);                  free(p);
                 return NULL;                  return NULL;
         }          }
   
         if ((p->xml = XML_ParserCreate(NULL)) == NULL) {  
                 free(p->tree);  
                 free(p);  
                 return NULL;  
         }  
         p->warn = warn;          p->warn = warn;
         XML_SetCharacterDataHandler(p->xml, xml_char);  
         XML_SetElementHandler(p->xml, xml_elem_start, xml_elem_end);  
         XML_SetUserData(p->xml, p);  
         return p;          return p;
 }  }
   
Line 427  parse_free(struct parse *p)
Line 583  parse_free(struct parse *p)
 {  {
         if (p == NULL)          if (p == NULL)
                 return;                  return;
         XML_ParserFree(p->xml);  
         if (p->tree != NULL) {          if (p->tree != NULL) {
                 pnode_unlink(p->tree->root);                  pnode_unlink(p->tree->root);
                 free(p->tree);                  free(p->tree);
Line 435  parse_free(struct parse *p)
Line 590  parse_free(struct parse *p)
         free(p);          free(p);
 }  }
   
   static void
   increment(struct parse *p, char *b, size_t *pend, int refill)
   {
           if (refill) {
                   if (b[*pend] == '\n') {
                           p->nline++;
                           p->ncol = 1;
                   } else
                           p->ncol++;
           }
           ++*pend;
   }
   
   /*
    * Advance the pend pointer to the next character in the charset.
    * If the charset starts with a space, it stands for any whitespace.
    * Update the new input file position, used for messages.
    * Do not overrun the buffer b of length rlen.
    * When reaching the end, NUL-terminate the buffer and return 1;
    * otherwise, return 0.
    */
   static int
   advance(struct parse *p, char *b, size_t rlen, size_t *pend,
       const char *charset, int refill)
   {
           int              space;
   
           if (*charset == ' ') {
                   space = 1;
                   charset++;
           } else
                   space = 0;
   
           if (refill) {
                   p->nline = p->line;
                   p->ncol = p->col;
           }
           while (*pend < rlen) {
                   if (space && isspace((unsigned char)b[*pend]))
                           break;
                   if (strchr(charset, b[*pend]) != NULL)
                           break;
                   increment(p, b, pend, refill);
           }
           if (*pend == rlen) {
                   b[rlen] = '\0';
                   return refill;
           } else
                   return 0;
   }
   
   size_t
   parse_string(struct parse *p, char *b, size_t rlen,
       enum pstate *pstate, int refill)
   {
           char            *cp;
           size_t           poff;  /* Parse offset in b[]. */
           size_t           pend;  /* Offset of the end of the current word. */
           int              elem_end;
   
           pend = 0;
           for (;;) {
   
                   /* Proceed to the next token, skipping whitespace. */
   
                   if (refill) {
                           p->line = p->nline;
                           p->col = p->ncol;
                   }
                   if ((poff = pend) == rlen)
                           break;
                   if (isspace((unsigned char)b[pend])) {
                           increment(p, b, &pend, refill);
                           continue;
                   }
   
                   /*
                    * The following four cases (ARG, TAG, and starting an
                    * entity or a tag) all parse a word or quoted string.
                    * If that extends beyond the read buffer and the last
                    * read(2) still got data, they all break out of the
                    * token loop to request more data from the read loop.
                    *
                    * Also, three of them detect self-closing tags, those
                    * ending with "/>", setting the flag elem_end and
                    * calling xml_elem_end() at the very end, after
                    * handling the attribute value, attribute name, or
                    * tag name, respectively.
                    */
   
                   /* Parse an attribute value. */
   
                   if (*pstate >= PARSE_ARG) {
                           if (*pstate == PARSE_ARG &&
                               (b[pend] == '\'' || b[pend] == '"')) {
                                   *pstate = b[pend] == '"' ?
                                       PARSE_DQ : PARSE_SQ;
                                   increment(p, b, &pend, refill);
                                   continue;
                           }
                           if (advance(p, b, rlen, &pend,
                               *pstate == PARSE_DQ ? "\"" :
                               *pstate == PARSE_SQ ? "'" : " >", refill))
                                   break;
                           *pstate = PARSE_TAG;
                           elem_end = 0;
                           if (b[pend] == '>') {
                                   *pstate = PARSE_ELEM;
                                   if (pend > 0 && b[pend - 1] == '/') {
                                           b[pend - 1] = '\0';
                                           elem_end = 1;
                                   }
                           }
                           b[pend] = '\0';
                           if (pend < rlen)
                                   increment(p, b, &pend, refill);
                           xml_attrval(p, b + poff);
                           if (elem_end)
                                   xml_elem_end(p, NULL);
   
                   /* Look for an attribute name. */
   
                   } else if (*pstate == PARSE_TAG) {
                           if (advance(p, b, rlen, &pend, " =>", refill))
                                   break;
                           elem_end = 0;
                           switch (b[pend]) {
                           case '>':
                                   *pstate = PARSE_ELEM;
                                   if (pend > 0 && b[pend - 1] == '/') {
                                           b[pend - 1] = '\0';
                                           elem_end = 1;
                                   }
                                   break;
                           case '=':
                                   *pstate = PARSE_ARG;
                                   break;
                           default:
                                   break;
                           }
                           b[pend] = '\0';
                           if (pend < rlen)
                                   increment(p, b, &pend, refill);
                           xml_attrkey(p, b + poff);
                           if (elem_end)
                                   xml_elem_end(p, NULL);
   
                   /* Begin an opening or closing tag. */
   
                   } else if (b[poff] == '<') {
                           if (advance(p, b, rlen, &pend, " >", refill))
                                   break;
                           if (pend > poff + 3 &&
                               strncmp(b + poff, "<!--", 4) == 0) {
   
                                   /* Skip a comment. */
   
                                   cp = strstr(b + pend - 2, "-->");
                                   if (cp == NULL) {
                                           if (refill)
                                                   break;
                                           cp = b + rlen;
                                   } else
                                           cp += 3;
                                   while (b + pend < cp)
                                           increment(p, b, &pend, refill);
                                   continue;
                           }
                           elem_end = 0;
                           if (b[pend] != '>')
                                   *pstate = PARSE_TAG;
                           else if (pend > 0 && b[pend - 1] == '/') {
                                   b[pend - 1] = '\0';
                                   elem_end = 1;
                           }
                           b[pend] = '\0';
                           if (pend < rlen)
                                   increment(p, b, &pend, refill);
                           if (b[++poff] == '/') {
                                   elem_end = 1;
                                   poff++;
                           } else
                                   xml_elem_start(p, b + poff);
                           if (elem_end)
                                   xml_elem_end(p, b + poff);
   
                   /* Process an entity. */
   
                   } else if (b[poff] == '&') {
                           if (advance(p, b, rlen, &pend, ";", refill))
                                   break;
                           b[pend] = '\0';
                           if (pend < rlen)
                                   increment(p, b, &pend, refill);
                           xml_entity(p, b + poff + 1);
   
                   /* Process text up to the next tag, entity, or EOL. */
   
                   } else {
                           advance(p, b, rlen, &pend, "<&", refill);
                           xml_char(p, b + poff, pend - poff);
                   }
           }
           return poff;
   }
   
 struct ptree *  struct ptree *
 parse_file(struct parse *p, int fd, const char *fname)  parse_file(struct parse *p, int fd, const char *fname)
 {  {
         char             b[4096];          char             b[4096];
         ssize_t          ssz;          ssize_t          rsz;   /* Return value from read(2). */
           size_t           rlen;  /* Number of bytes in b[]. */
           size_t           poff;  /* Parse offset in b[]. */
           enum pstate      pstate;
   
         p->fname = fname;          p->fname = fname;
         do {          p->nline = 1;
                 if ((ssz = read(fd, b, sizeof(b))) < 0) {          p->ncol = 1;
                         perror(fname);          pstate = PARSE_ELEM;
                         pnode_unlink(p->tree->root);          rlen = 0;
                         p->tree->root = p->cur = NULL;  
                         p->tree->flags |= TREE_FAIL;          /*
                         return NULL;           * Read loop.
                 }           *
                 if (XML_Parse(p->xml, b, ssz, ssz == 0) == 0) {           * If the previous token was incomplete and asked for more
                         fprintf(stderr, "%s:%zu:%zu: %s\n", fname,           * input, we have to enter the read loop once more even on EOF.
                             XML_GetCurrentLineNumber(p->xml),           * Once rsz is 0, incomplete tokens will no longer ask
                             XML_GetCurrentColumnNumber(p->xml),           * for more input but instead use whatever there is,
                             XML_ErrorString(XML_GetErrorCode(p->xml)));           * and then exit the read loop.
                         p->tree->flags |= TREE_FAIL;           * The minus one on the size limit for read(2) is needed
                 }           * such that advance() can set b[rlen] to NUL when needed.
         } while (ssz > 0 && (p->tree->flags & TREE_FAIL) == 0);           */
   
           while ((rsz = read(fd, b + rlen, sizeof(b) - rlen - 1)) >= 0 &&
               (rlen += rsz) > 0) {
                   poff = parse_string(p, b, rlen, &pstate, rsz > 0);
                   /* Buffer exhausted; shift left and re-fill. */
                   assert(poff > 0);
                   rlen -= poff;
                   memmove(b, b + poff, rlen);
           }
           if (rsz < 0) {
                   perror(fname);
                   p->tree->flags |= TREE_FAIL;
           }
           if (p->cur != NULL && p->cur->node == NODE_TEXT) {
                   pnode_trim(p->cur);
                   p->cur = p->cur->parent;
           }
           if ((p->tree->flags & TREE_CLOSED) == 0)
                   warn_msg(p, "document not closed");
         return p->tree;          return p->tree;
 }  }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.14

CVSweb