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

Diff for /docbook2mdoc/docbook2mdoc.c between version 1.72 and 1.95

version 1.72, 2019/03/25 17:28:32 version 1.95, 2019/04/07 15:06:56
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #include <sys/queue.h>  
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <expat.h>  
 #include <fcntl.h>  
 #include <getopt.h>  
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  
 #include <unistd.h>  
   
 #include "extern.h"  #include "node.h"
   #include "macro.h"
   #include "format.h"
   
 enum    linestate {  
         LINE_NEW = 0,  
         LINE_TEXT,  
         LINE_MACRO  
 };  
   
 /*  /*
  * Global parse state.   * The implementation of the mdoc(7) formatter.
  * Keep this as simple and small as possible.  
  */   */
 struct  parse {  
         XML_Parser       xml;  
         enum nodeid      node; /* current (NODE_ROOT if pre-tree) */  
         const char      *fname; /* filename */  
         int              stop; /* should we stop now? */  
 #define PARSE_EQN        1  
         unsigned int     flags; /* document-wide flags */  
         struct pnode    *root; /* root of parse tree */  
         struct pnode    *cur; /* current node in tree */  
         int              level; /* header level, starting at 1 */  
         enum linestate   linestate;  
 };  
   
 struct  node {  static void      pnode_print(struct format *, struct pnode *);
         const char      *name; /* docbook element name */  
         enum nodeid      node; /* docbook element to generate */  
 };  
   
 TAILQ_HEAD(pnodeq, pnode);  
 TAILQ_HEAD(pattrq, pattr);  
   
 struct  pattr {  
         enum attrkey     key;  
         enum attrval     val;  
         char            *rawval;  
         TAILQ_ENTRY(pattr) child;  
 };  
   
 struct  pnode {  
         enum nodeid      node; /* node type */  
         char            *b; /* binary data buffer */  
         char            *real; /* store for "b" */  
         size_t           bsz; /* data buffer size */  
         struct pnode    *parent; /* parent (or NULL if top) */  
         struct pnodeq    childq; /* queue of children */  
         struct pattrq    attrq; /* attributes of node */  
         TAILQ_ENTRY(pnode) child;  
 };  
   
 static  const char *attrkeys[ATTRKEY__MAX] = {  
         "choice",  
         "class",  
         "close",  
         "id",  
         "linkend",  
         "open",  
         "rep"  
 };  
   
 static  const char *attrvals[ATTRVAL__MAX] = {  
         "monospaced",  
         "norepeat",  
         "opt",  
         "plain",  
         "repeat",  
         "req"  
 };  
   
 static  const struct node nodes[] = {  
         { "acronym",            NODE_ACRONYM },  
         { "affiliation",        NODE_AFFILIATION },  
         { "anchor",             NODE_ANCHOR },  
         { "application",        NODE_APPLICATION },  
         { "arg",                NODE_ARG },  
         { "author",             NODE_AUTHOR },  
         { "authorgroup",        NODE_AUTHORGROUP },  
         { "blockquote",         NODE_BLOCKQUOTE },  
         { "book",               NODE_BOOK },  
         { "bookinfo",           NODE_BOOKINFO },  
         { "caution",            NODE_CAUTION },  
         { "chapter",            NODE_SECTION },  
         { "citerefentry",       NODE_CITEREFENTRY },  
         { "citetitle",          NODE_CITETITLE },  
         { "cmdsynopsis",        NODE_CMDSYNOPSIS },  
         { "code",               NODE_CODE },  
         { "colspec",            NODE_COLSPEC },  
         { "command",            NODE_COMMAND },  
         { "constant",           NODE_CONSTANT },  
         { "copyright",          NODE_COPYRIGHT },  
         { "date",               NODE_DATE },  
         { "editor",             NODE_EDITOR },  
         { "email",              NODE_EMAIL },  
         { "emphasis",           NODE_EMPHASIS },  
         { "entry",              NODE_ENTRY },  
         { "envar",              NODE_ENVAR },  
         { "fieldsynopsis",      NODE_FIELDSYNOPSIS },  
         { "filename",           NODE_FILENAME },  
         { "firstname",          NODE_FIRSTNAME },  
         { "firstterm",          NODE_FIRSTTERM },  
         { "footnote",           NODE_FOOTNOTE },  
         { "funcdef",            NODE_FUNCDEF },  
         { "funcprototype",      NODE_FUNCPROTOTYPE },  
         { "funcsynopsis",       NODE_FUNCSYNOPSIS },  
         { "funcsynopsisinfo",   NODE_FUNCSYNOPSISINFO },  
         { "function",           NODE_FUNCTION },  
         { "glossterm",          NODE_GLOSSTERM },  
         { "group",              NODE_GROUP },  
         { "holder",             NODE_HOLDER },  
         { "index",              NODE_INDEX },  
         { "indexterm",          NODE_INDEXTERM },  
         { "info",               NODE_INFO },  
         { "informalequation",   NODE_INFORMALEQUATION },  
         { "informaltable",      NODE_INFORMALTABLE },  
         { "inlineequation",     NODE_INLINEEQUATION },  
         { "itemizedlist",       NODE_ITEMIZEDLIST },  
         { "keysym",             NODE_KEYSYM },  
         { "legalnotice",        NODE_LEGALNOTICE },  
         { "link",               NODE_LINK },  
         { "listitem",           NODE_LISTITEM },  
         { "literal",            NODE_LITERAL },  
         { "literallayout",      NODE_LITERALLAYOUT },  
         { "manvolnum",          NODE_MANVOLNUM },  
         { "member",             NODE_MEMBER },  
         { "mml:math",           NODE_MML_MATH },  
         { "mml:mfenced",        NODE_MML_MFENCED },  
         { "mml:mfrac",          NODE_MML_MFRAC },  
         { "mml:mi",             NODE_MML_MI },  
         { "mml:mn",             NODE_MML_MN },  
         { "mml:mo",             NODE_MML_MO },  
         { "mml:mrow",           NODE_MML_MROW },  
         { "mml:msub",           NODE_MML_MSUB },  
         { "mml:msup",           NODE_MML_MSUP },  
         { "modifier",           NODE_MODIFIER },  
         { "note",               NODE_NOTE },  
         { "option",             NODE_OPTION },  
         { "orderedlist",        NODE_ORDEREDLIST },  
         { "orgname",            NODE_ORGNAME },  
         { "othername",          NODE_OTHERNAME },  
         { "para",               NODE_PARA },  
         { "paramdef",           NODE_PARAMDEF },  
         { "parameter",          NODE_PARAMETER },  
         { "part",               NODE_SECTION },  
         { "personname",         NODE_PERSONNAME },  
         { "phrase",             NODE_PHRASE },  
         { "preface",            NODE_PREFACE },  
         { "primary",            NODE_PRIMARY },  
         { "programlisting",     NODE_PROGRAMLISTING },  
         { "prompt",             NODE_PROMPT },  
         { "quote",              NODE_QUOTE },  
         { "refclass",           NODE_REFCLASS },  
         { "refdescriptor",      NODE_REFDESCRIPTOR },  
         { "refentry",           NODE_REFENTRY },  
         { "refentryinfo",       NODE_REFENTRYINFO },  
         { "refentrytitle",      NODE_REFENTRYTITLE },  
         { "refmeta",            NODE_REFMETA },  
         { "refmetainfo",        NODE_REFMETAINFO },  
         { "refmiscinfo",        NODE_REFMISCINFO },  
         { "refname",            NODE_REFNAME },  
         { "refnamediv",         NODE_REFNAMEDIV },  
         { "refpurpose",         NODE_REFPURPOSE },  
         { "refsect1",           NODE_SECTION },  
         { "refsect2",           NODE_SECTION },  
         { "refsect3",           NODE_SECTION },  
         { "refsection",         NODE_SECTION },  
         { "refsynopsisdiv",     NODE_REFSYNOPSISDIV },  
         { "releaseinfo",        NODE_RELEASEINFO },  
         { "replaceable",        NODE_REPLACEABLE },  
         { "row",                NODE_ROW },  
         { "sbr",                NODE_SBR },  
         { "screen",             NODE_SCREEN },  
         { "secondary",          NODE_SECONDARY },  
         { "sect1",              NODE_SECTION },  
         { "sect2",              NODE_SECTION },  
         { "section",            NODE_SECTION },  
         { "sgmltag",            NODE_SGMLTAG },  
         { "simplelist",         NODE_SIMPLELIST },  
         { "spanspec",           NODE_SPANSPEC },  
         { "structname",         NODE_STRUCTNAME },  
         { "subtitle",           NODE_SUBTITLE },  
         { "surname",            NODE_SURNAME },  
         { "synopsis",           NODE_SYNOPSIS },  
         { "table",              NODE_TABLE },  
         { "tbody",              NODE_TBODY },  
         { "term",               NODE_TERM },  
         { "tfoot",              NODE_TFOOT },  
         { "tgroup",             NODE_TGROUP },  
         { "thead",              NODE_THEAD },  
         { "tip",                NODE_TIP },  
         { "title",              NODE_TITLE },  
         { "trademark",          NODE_TRADEMARK },  
         { "type",               NODE_TYPE },  
         { "ulink",              NODE_ULINK },  
         { "userinput",          NODE_USERINPUT },  
         { "variablelist",       NODE_VARIABLELIST },  
         { "varlistentry",       NODE_VARLISTENTRY },  
         { "varname",            NODE_VARNAME },  
         { "warning",            NODE_WARNING },  
         { "wordasword",         NODE_WORDASWORD },  
         { "year",               NODE_YEAR },  
         { NULL,                 NODE__MAX }  
 };  
   
 static  int warn = 0;  
   
 static void  static void
 pnode_print(struct parse *p, struct pnode *pn);  pnode_printtext(struct format *f, struct pnode *n)
   
 /*  
  * Process a stream of characters.  
  * We store text as nodes in and of themselves.  
  * If a text node is already open, append to it.  
  * If it's not open, open one under the current context.  
  */  
 static void  
 xml_char(void *arg, const XML_Char *p, int sz)  
 {  {
         struct parse    *ps = arg;          struct pnode    *nn;
         struct pnode    *dat;          char            *cp;
         int              i;          char             last;
   
         /* Stopped or no tree yet. */          if (n->bsz == 0) {
         if (ps->stop || ps->node == NODE_ROOT)                  assert(n->real < n->b);
                 return;                  return;
   
         assert(ps->cur != NULL);  
   
         /*  
          * Are we in the midst of processing text?  
          * If we're not processing text right now, then create a text  
          * node for doing so.  
          * However, don't do so unless we have some non-whitespace to  
          * process: strip out all leading whitespace to be sure.  
          */  
         if (ps->node != NODE_TEXT) {  
                 for (i = 0; i < sz; i++)  
                         if ( ! isspace((unsigned char)p[i]))  
                                 break;  
                 if (i == sz)  
                         return;  
                 p += i;  
                 sz -= i;  
                 dat = calloc(1, sizeof(*dat));  
                 if (dat == NULL) {  
                         perror(NULL);  
                         exit(1);  
                 }  
   
                 dat->node = ps->node = NODE_TEXT;  
                 dat->parent = ps->cur;  
                 TAILQ_INIT(&dat->childq);  
                 TAILQ_INIT(&dat->attrq);  
                 TAILQ_INSERT_TAIL(&ps->cur->childq, dat, child);  
                 ps->cur = dat;  
                 assert(ps->root != NULL);  
         }          }
   
         /* Append to current buffer. */  
         assert(sz >= 0);  
         ps->cur->b = realloc(ps->cur->b, ps->cur->bsz + sz + 1);  
         if (ps->cur->b == NULL) {  
                 perror(NULL);  
                 exit(1);  
         }  
         memcpy(ps->cur->b + ps->cur->bsz, p, sz);  
         ps->cur->bsz += sz;  
         ps->cur->b[ps->cur->bsz] = '\0';  
         ps->cur->real = ps->cur->b;  
 }  
   
 static void  
 pnode_trim(struct pnode *pn)  
 {  
         assert(pn->node == NODE_TEXT);  
         for (; pn->bsz > 0; pn->b[--pn->bsz] = '\0')  
                 if ( ! isspace((unsigned char)pn->b[pn->bsz - 1]))  
                         break;  
 }  
   
 /*  
  * Begin an element.  
  * First, look for the element.  
  * If we don't find it and we're not parsing, keep going.  
  * If we don't find it and we're parsing, puke and exit.  
  * If we find it but we're not parsing yet (i.e., it's not a refentry  
  * and thus out of context), keep going.  
  * If we find it and we're at the root and already have a tree, puke and  
  * exit (FIXME: I don't think this is right?).  
  * If we find it but we're parsing a text node, close out the text node,  
  * return to its parent, and keep going.  
  * Make sure that the element is in the right context.  
  * Lastly, put the node onto our parse tree and continue.  
  */  
 static void  
 xml_elem_start(void *arg, const XML_Char *name, const XML_Char **atts)  
 {  
         struct parse     *ps = arg;  
         const struct node *node;  
         enum attrkey      key;  
         enum attrval      val;  
         struct pnode     *dat;  
         struct pattr     *pattr;  
         const XML_Char  **att;  
   
         /* FIXME: find a better way to ditch other namespaces. */  
         if (ps->stop || strcmp(name, "xi:include") == 0)  
                 return;  
   
         /* Close out text node, if applicable... */  
         if (ps->node == NODE_TEXT) {  
                 pnode_trim(ps->cur);  
                 ps->cur = ps->cur->parent;  
                 ps->node = ps->cur->node;  
         }  
   
         for (node = nodes; node->name != NULL; node++)  
                 if (strcmp(node->name, name) == 0)  
                         break;  
   
         if (node->name == NULL) {  
                 if (ps->node == NODE_ROOT)  
                         return;  
                 fprintf(stderr, "%s:%zu:%zu: unknown node \"%s\"\n",  
                         ps->fname, XML_GetCurrentLineNumber(ps->xml),  
                         XML_GetCurrentColumnNumber(ps->xml), name);  
                 ps->stop = 1;  
                 return;  
         } else if (ps->node == NODE_ROOT && ps->root != NULL) {  
                 fprintf(stderr, "%s:%zu:%zu: multiple refentries\n",  
                         ps->fname, XML_GetCurrentLineNumber(ps->xml),  
                         XML_GetCurrentColumnNumber(ps->xml));  
                 ps->stop = 1;  
                 return;  
         }  
   
         if (node->node == NODE_INLINEEQUATION)  
                 ps->flags |= PARSE_EQN;  
   
         if ((dat = calloc(1, sizeof(*dat))) == NULL) {  
                 perror(NULL);  
                 exit(1);  
         }  
   
         dat->node = ps->node = node->node;  
         dat->parent = ps->cur;  
         TAILQ_INIT(&dat->childq);  
         TAILQ_INIT(&dat->attrq);  
   
         if (ps->cur != NULL)  
                 TAILQ_INSERT_TAIL(&ps->cur->childq, dat, child);  
   
         ps->cur = dat;  
         if (ps->root == NULL)  
                 ps->root = dat;  
   
         /*          /*
          * Process attributes.           * Text preceding a macro without intervening whitespace
            * requires a .Pf macro.
            * Set the spacing flag to avoid a redundant .Ns macro.
          */           */
         for (att = atts; *att != NULL; att += 2) {  
                 for (key = 0; key < ATTRKEY__MAX; key++)  
                         if (strcmp(*att, attrkeys[key]) == 0)  
                                 break;  
                 if (key == ATTRKEY__MAX) {  
                         if (warn)  
                                 fprintf(stderr, "%s:%zu:%zu: warning: "  
                                         "unknown attribute \"%s\"\n",  
                                         ps->fname,  
                                         XML_GetCurrentLineNumber(ps->xml),  
                                         XML_GetCurrentColumnNumber(ps->xml),  
                                         *att);  
                         continue;  
                 }  
                 for (val = 0; val < ATTRVAL__MAX; val++)  
                         if (strcmp(att[1], attrvals[val]) == 0)  
                                 break;  
                 pattr = calloc(1, sizeof(*pattr));  
                 pattr->key = key;  
                 pattr->val = val;  
                 if (val == ATTRVAL__MAX)  
                         pattr->rawval = strdup(att[1]);  
                 TAILQ_INSERT_TAIL(&dat->attrq, pattr, child);  
         }  
   
 }          if (f->linestate != LINE_MACRO &&
               (nn = TAILQ_NEXT(n, child)) != NULL && nn->spc == 0 &&
 /*              (nn->node != NODE_TEXT && nn->node != NODE_ESCAPE)) {
  * Roll up the parse tree.                  macro_open(f, "Pf");
  * If we're at a text node, roll that one up first.                  nn->spc = 1;
  * If we hit the root, then assign ourselves as the NODE_ROOT.  
  */  
 static void  
 xml_elem_end(void *arg, const XML_Char *name)  
 {  
         struct parse    *ps = arg;  
   
         /* FIXME: find a better way to ditch other namespaces. */  
         if (ps->stop || ps->node == NODE_ROOT)  
                 return;  
         else if (strcmp(name, "xi:include") == 0)  
                 return;  
   
         /* Close out text node, if applicable... */  
         if (ps->node == NODE_TEXT) {  
                 pnode_trim(ps->cur);  
                 ps->cur = ps->cur->parent;  
                 ps->node = ps->cur->node;  
         }          }
   
         if ((ps->cur = ps->cur->parent) == NULL)          if (f->linestate == LINE_NEW) {
                 ps->node = NODE_ROOT;                  last = '\n';
         else                  f->linestate = LINE_TEXT;
                 ps->node = ps->cur->node;          } else {
 }                  last = ' ';
                   if (n->spc || f->linestate == LINE_MACRO)
 /*  
  * Recursively free a node (NULL is ok).  
  */  
 static void  
 pnode_free(struct pnode *pn)  
 {  
         struct pnode    *pp;  
         struct pattr    *ap;  
   
         if (pn == NULL)  
                 return;  
   
         while ((pp = TAILQ_FIRST(&pn->childq)) != NULL) {  
                 TAILQ_REMOVE(&pn->childq, pp, child);  
                 pnode_free(pp);  
         }  
   
         while ((ap = TAILQ_FIRST(&pn->attrq)) != NULL) {  
                 TAILQ_REMOVE(&pn->attrq, ap, child);  
                 free(ap->rawval);  
                 free(ap);  
         }  
   
         free(pn->real);  
         free(pn);  
 }  
   
 /*  
  * Unlink a node from its parent and pnode_free() it.  
  */  
 static void  
 pnode_unlink(struct pnode *pn)  
 {  
         if (pn->parent != NULL)  
                 TAILQ_REMOVE(&pn->parent->childq, pn, child);  
         pnode_free(pn);  
 }  
   
 /*  
  * Unlink all children of a node and pnode_free() them.  
  */  
 static void  
 pnode_unlinksub(struct pnode *pn)  
 {  
   
         while ( ! TAILQ_EMPTY(&pn->childq))  
                 pnode_unlink(TAILQ_FIRST(&pn->childq));  
 }  
   
 /*  
  * Retrieve an enumeration attribute from a node.  
  * Return ATTRVAL__MAX if the node has no such attribute.  
  */  
 enum attrval  
 pnode_getattr(struct pnode *pn, enum attrkey key)  
 {  
         struct pattr    *ap;  
   
         TAILQ_FOREACH(ap, &pn->attrq, child)  
                 if (ap->key == key)  
                         return ap->val;  
         return ATTRVAL__MAX;  
 }  
   
 /*  
  * Retrieve an attribute string from a node.  
  * Return defval if the node has no such attribute.  
  */  
 const char *  
 pnode_getattr_raw(struct pnode *pn, enum attrkey key, const char *defval)  
 {  
         struct pattr    *ap;  
   
         TAILQ_FOREACH(ap, &pn->attrq, child)  
                 if (ap->key == key)  
                         return ap->val == ATTRVAL__MAX ? ap->rawval :  
                             attrvals[ap->val];  
         return defval;  
 }  
   
 /*  
  * Recursively search and return the first instance of "node".  
  */  
 static struct pnode *  
 pnode_findfirst(struct pnode *pn, enum nodeid node)  
 {  
         struct pnode    *pp, *res;  
   
         res = NULL;  
         TAILQ_FOREACH(pp, &pn->childq, child) {  
                 res = pp->node == node ? pp :  
                         pnode_findfirst(pp, node);  
                 if (res != NULL)  
                         break;  
         }  
   
         return res;  
 }  
   
 static void  
 macro_open(struct parse *p, const char *name)  
 {  
         switch (p->linestate) {  
         case LINE_TEXT:  
                 putchar('\n');  
                 /* FALLTHROUGH */  
         case LINE_NEW:  
                 putchar('.');  
                 p->linestate = LINE_MACRO;  
                 break;  
         case LINE_MACRO:  
                 putchar(' ');  
                 break;  
         }  
         fputs(name, stdout);  
 }  
   
 static void  
 macro_close(struct parse *p)  
 {  
         assert(p->linestate == LINE_MACRO);  
         putchar('\n');  
         p->linestate = LINE_NEW;  
 }  
   
 static void  
 macro_line(struct parse *p, const char *name)  
 {  
         macro_open(p, name);  
         macro_close(p);  
 }  
   
 #define ARG_SPACE       1  /* Insert whitespace before this argument. */  
 #define ARG_SINGLE      2  /* Quote argument if it contains whitespace. */  
 #define ARG_QUOTED      4  /* We are already in a quoted argument. */  
 #define ARG_UPPER       8  /* Covert argument to upper case. */  
 /*  
  * Print an argument string on a macro line, collapsing whitespace.  
  */  
 static void  
 macro_addarg(struct parse *p, const char *arg, int flags)  
 {  
         const char      *cp;  
   
         assert(p->linestate == LINE_MACRO);  
   
         /* Quote if requested and necessary. */  
   
         if ((flags & (ARG_SINGLE | ARG_QUOTED)) == ARG_SINGLE) {  
                 for (cp = arg; *cp != '\0'; cp++)  
                         if (isspace((unsigned char)*cp))  
                                 break;  
                 if (*cp != '\0') {  
                         if (flags & ARG_SPACE) {  
                                 putchar(' ');  
                                 flags &= ~ ARG_SPACE;  
                         }  
                         putchar('"');  
                         flags = ARG_QUOTED;  
                 }  
         }  
   
         for (cp = arg; *cp != '\0'; cp++) {  
   
                 /* Collapse whitespace. */  
   
                 if (isspace((unsigned char)*cp)) {  
                         flags |= ARG_SPACE;  
                         continue;  
                 } else if (flags & ARG_SPACE) {  
                         putchar(' ');                          putchar(' ');
                         flags &= ~ ARG_SPACE;  
                 }  
   
                 /* Escape us if we look like a macro. */  
   
                 if ((flags & ARG_QUOTED) == 0 &&  
                     (cp == arg || isspace((unsigned char)cp[-1])) &&  
                     isupper((unsigned char)cp[0]) &&  
                     islower((unsigned char)cp[1]) &&  
                     (cp[2] == '\0' || cp[2] == ' ' ||  
                      (islower((unsigned char)cp[2]) &&  
                       (cp[3] == '\0' || cp[3] == ' '))))  
                         fputs("\\&", stdout);  
   
                 if (*cp == '"')  
                         fputs("\\(dq", stdout);  
                 else if (flags & ARG_UPPER)  
                         putchar(toupper((unsigned char)*cp));  
                 else  
                         putchar(*cp);  
                 if (*cp == '\\')  
                         putchar('e');  
         }          }
 }  
   
 static void          if (n->node == NODE_ESCAPE) {
 macro_argline(struct parse *p, const char *name, const char *arg)                  fputs(n->b, stdout);
 {  
         macro_open(p, name);  
         macro_addarg(p, arg, ARG_SPACE);  
         macro_close(p);  
 }  
   
 /*  
  * Recursively append text from the children of a node to a macro line.  
  */  
 static void  
 macro_addnode(struct parse *p, struct pnode *pn, int flags)  
 {  
         int              quote_now;  
   
         assert(p->linestate == LINE_MACRO);  
   
         /*  
          * If the only child is a text node, just add that text,  
          * letting macro_addarg() decide about quoting.  
          */  
   
         pn = TAILQ_FIRST(&pn->childq);  
         if (pn != NULL && pn->node == NODE_TEXT &&  
             TAILQ_NEXT(pn, child) == NULL) {  
                 macro_addarg(p, pn->b, flags);  
                 return;                  return;
         }          }
   
         /*          /*
          * If we want the argument quoted and are not already           * Remove the prefix '-' from <option> elements
          * in a quoted context, quote now.           * because the arguments of .Fl macros do not need it.
          */           */
   
         quote_now = 0;          cp = n->b;
         if (flags & ARG_SINGLE) {          if (n->parent != NULL && n->parent->node == NODE_OPTION && *cp == '-')
                 if ((flags & ARG_QUOTED) == 0) {                  cp++;
                         if (flags & ARG_SPACE) {  
                                 putchar(' ');  
                                 flags &= ~ARG_SPACE;  
                         }  
                         putchar('"');  
                         flags |= ARG_QUOTED;  
                         quote_now = 1;  
                 }  
                 flags &= ~ARG_SINGLE;  
         }  
   
         /*          /*
          * Iterate to child and sibling nodes,           * Print the text, skipping whitespace on new lines,
          * inserting whitespace between nodes.           * escaping control characters on new lines,
            * and escaping backslashes.
          */           */
   
         while (pn != NULL) {          for (; *cp != '\0'; cp++) {
                 if (pn->node == NODE_TEXT)                  if (last == '\n') {
                         macro_addarg(p, pn->b, flags);                          if (isspace((unsigned char)*cp))
                 else                                  continue;
                         macro_addnode(p, pn, flags);                          if (*cp == '\'' || *cp == '.')
                 pn = TAILQ_NEXT(pn, child);                                  fputs("\\&", stdout);
                 flags |= ARG_SPACE;                  }
                   putchar(last = *cp);
                   if (last == '\\')
                           putchar('e');
         }          }
         if (quote_now)  
                 putchar('"');  
 }  }
   
 static void  static void
 macro_nodeline(struct parse *p, const char *name, struct pnode *pn, int flags)  pnode_printpara(struct format *p, struct pnode *pn)
 {  {
         macro_open(p, name);  
         macro_addnode(p, pn, ARG_SPACE | flags);  
         macro_close(p);  
 }  
   
 /*  
  * If the next node is a text node starting with closing punctuation,  
  * emit the closing punctuation as a trailing macro argument.  
  */  
 static void  
 macro_closepunct(struct parse *p, struct pnode *pn)  
 {  
         if ((pn = TAILQ_NEXT(pn, child)) != NULL &&  
             pn->node == NODE_TEXT && pn->bsz > 0 &&  
             (pn->b[0] == ',' || pn->b[0] == '.') &&  
             (pn->bsz == 1 || isspace((unsigned char)pn->b[1]))) {  
                 putchar(' ');  
                 putchar(pn->b[0]);  
                 pn->b++;  
                 pn->bsz--;  
         }  
         macro_close(p);  
 }  
   
 static void  
 print_text(struct parse *p, const char *word)  
 {  
         switch (p->linestate) {  
         case LINE_NEW:  
                 break;  
         case LINE_TEXT:  
                 putchar(' ');  
                 break;  
         case LINE_MACRO:  
                 macro_close(p);  
                 break;  
         }  
         fputs(word, stdout);  
         p->linestate = LINE_TEXT;  
 }  
   
 static void  
 pnode_printpara(struct parse *p, struct pnode *pn)  
 {  
         struct pnode    *pp;          struct pnode    *pp;
   
         if ((pp = TAILQ_PREV(pn, pnodeq, child)) == NULL &&          if ((pp = TAILQ_PREV(pn, pnodeq, child)) == NULL &&
Line 776  pnode_printpara(struct parse *p, struct pnode *pn)
Line 126  pnode_printpara(struct parse *p, struct pnode *pn)
  * If the SYNOPSIS macro has a superfluous title, kill it.   * If the SYNOPSIS macro has a superfluous title, kill it.
  */   */
 static void  static void
 pnode_printrefsynopsisdiv(struct parse *p, struct pnode *pn)  pnode_printrefsynopsisdiv(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp, *pq;          struct pnode    *pp, *pq;
   
Line 791  pnode_printrefsynopsisdiv(struct parse *p, struct pnod
Line 141  pnode_printrefsynopsisdiv(struct parse *p, struct pnod
  * Start a hopefully-named `Sh' section.   * Start a hopefully-named `Sh' section.
  */   */
 static void  static void
 pnode_printrefsect(struct parse *p, struct pnode *pn)  pnode_printrefsect(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
         const char      *title;          const char      *title;
Line 846  pnode_printrefsect(struct parse *p, struct pnode *pn)
Line 196  pnode_printrefsect(struct parse *p, struct pnode *pn)
   
         switch (level) {          switch (level) {
         case 1:          case 1:
                   macro_close(p);
                 macro_open(p, "Sh");                  macro_open(p, "Sh");
                 break;                  break;
         case 2:          case 2:
                   macro_close(p);
                 macro_open(p, "Ss");                  macro_open(p, "Ss");
                 break;                  break;
         default:          default:
Line 869  pnode_printrefsect(struct parse *p, struct pnode *pn)
Line 221  pnode_printrefsect(struct parse *p, struct pnode *pn)
  * Start a reference, extracting the title and volume.   * Start a reference, extracting the title and volume.
  */   */
 static void  static void
 pnode_printciterefentry(struct parse *p, struct pnode *pn)  pnode_printciterefentry(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp, *title, *manvol;          struct pnode    *pp, *title, *manvol;
   
Line 889  pnode_printciterefentry(struct parse *p, struct pnode 
Line 241  pnode_printciterefentry(struct parse *p, struct pnode 
                 macro_addarg(p, "1", ARG_SPACE);                  macro_addarg(p, "1", ARG_SPACE);
         else          else
                 macro_addnode(p, manvol, ARG_SPACE | ARG_SINGLE);                  macro_addnode(p, manvol, ARG_SPACE | ARG_SINGLE);
         macro_close(p);  
         pnode_unlinksub(pn);          pnode_unlinksub(pn);
 }  }
   
 static void  static void
 pnode_printrefmeta(struct parse *p, struct pnode *pn)  pnode_printrefmeta(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp, *title, *manvol;          struct pnode    *pp, *title, *manvol;
   
Line 905  pnode_printrefmeta(struct parse *p, struct pnode *pn)
Line 256  pnode_printrefmeta(struct parse *p, struct pnode *pn)
                 else if (pp->node == NODE_REFENTRYTITLE)                  else if (pp->node == NODE_REFENTRYTITLE)
                         title = pp;                          title = pp;
         }          }
           macro_close(p);
         macro_open(p, "Dt");          macro_open(p, "Dt");
         if (title == NULL)          if (title == NULL)
                 macro_addarg(p, "UNKNOWN", ARG_SPACE);                  macro_addarg(p, "UNKNOWN", ARG_SPACE);
Line 919  pnode_printrefmeta(struct parse *p, struct pnode *pn)
Line 271  pnode_printrefmeta(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printfuncdef(struct parse *p, struct pnode *pn)  pnode_printfuncdef(struct format *f, struct pnode *n)
 {  {
         struct pnode    *pp, *ftype, *func;          struct pnode    *nc;
   
         ftype = func = NULL;          nc = TAILQ_FIRST(&n->childq);
         TAILQ_FOREACH(pp, &pn->childq, child) {          if (nc != NULL && nc->node == NODE_TEXT) {
                 if (pp->node == NODE_TEXT)                  macro_argline(f, "Ft", nc->b);
                         ftype = pp;                  pnode_unlink(nc);
                 else if (pp->node == NODE_FUNCTION)  
                         func = pp;  
         }          }
         if (ftype != NULL)          macro_nodeline(f, "Fo", n, ARG_SINGLE);
                 macro_argline(p, "Ft", ftype->b);          pnode_unlinksub(n);
         macro_open(p, "Fo");  
         if (func == NULL)  
                 macro_addarg(p, "UNKNOWN", ARG_SPACE);  
         else  
                 macro_addnode(p, func, ARG_SPACE | ARG_SINGLE);  
         macro_close(p);  
 }  }
   
 /*  /*
Line 947  pnode_printfuncdef(struct parse *p, struct pnode *pn)
Line 291  pnode_printfuncdef(struct parse *p, struct pnode *pn)
  * Second, >1 arguments are separated by commas.   * Second, >1 arguments are separated by commas.
  */   */
 static void  static void
 pnode_printmathfenced(struct parse *p, struct pnode *pn)  pnode_printmathfenced(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
   
Line 971  pnode_printmathfenced(struct parse *p, struct pnode *p
Line 315  pnode_printmathfenced(struct parse *p, struct pnode *p
  * particular eqn(7) word.   * particular eqn(7) word.
  */   */
 static void  static void
 pnode_printmath(struct parse *p, struct pnode *pn)  pnode_printmath(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
   
Line 998  pnode_printmath(struct parse *p, struct pnode *pn)
Line 342  pnode_printmath(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printfuncprototype(struct parse *p, struct pnode *pn)  pnode_printfuncprototype(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp, *fdef;          struct pnode    *pp, *fdef;
   
Line 1006  pnode_printfuncprototype(struct parse *p, struct pnode
Line 350  pnode_printfuncprototype(struct parse *p, struct pnode
                 if (fdef->node == NODE_FUNCDEF)                  if (fdef->node == NODE_FUNCDEF)
                         break;                          break;
   
         if (fdef != NULL)          if (fdef != NULL) {
                 pnode_printfuncdef(p, fdef);                  pnode_printfuncdef(p, fdef);
         else                  pnode_unlink(fdef);
           } else
                 macro_line(p, "Fo UNKNOWN");                  macro_line(p, "Fo UNKNOWN");
   
         TAILQ_FOREACH(pp, &pn->childq, child)          TAILQ_FOREACH(pp, &pn->childq, child)
                 if (pp->node == NODE_PARAMDEF)                  macro_nodeline(p, "Fa", pp, ARG_SINGLE);
                         macro_nodeline(p, "Fa", pp, ARG_SINGLE);  
   
         macro_line(p, "Fc");          macro_line(p, "Fc");
         pnode_unlinksub(pn);          pnode_unlinksub(pn);
Line 1027  pnode_printfuncprototype(struct parse *p, struct pnode
Line 371  pnode_printfuncprototype(struct parse *p, struct pnode
  * ellipsis following an argument) and optionality.   * ellipsis following an argument) and optionality.
  */   */
 static void  static void
 pnode_printarg(struct parse *p, struct pnode *pn)  pnode_printarg(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
         struct pattr    *ap;          struct pattr    *ap;
Line 1056  pnode_printarg(struct parse *p, struct pnode *pn)
Line 400  pnode_printarg(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printgroup(struct parse *p, struct pnode *pn)  pnode_printgroup(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp, *np;          struct pnode    *pp, *np;
         struct pattr    *ap;          struct pattr    *ap;
Line 1107  pnode_printgroup(struct parse *p, struct pnode *pn)
Line 451  pnode_printgroup(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printprologue(struct parse *p, struct pnode *pn)  pnode_printauthor(struct format *f, struct pnode *n)
 {  {
         struct pnode    *pp;          struct pnode    *nc, *ncn;
           int              have_contrib, have_name;
   
         pp = p->root == NULL ? NULL :          /*
                 pnode_findfirst(p->root, NODE_REFMETA);           * Print <contrib> children up front, before the .An scope,
            * and figure out whether we a name of a person.
            */
   
           have_contrib = have_name = 0;
           TAILQ_FOREACH_SAFE(nc, &n->childq, child, ncn) {
                   switch (nc->node) {
                   case NODE_CONTRIB:
                           if (have_contrib)
                                   print_text(f, ",", 0);
                           print_textnode(f, nc);
                           pnode_unlink(nc);
                           have_contrib = 1;
                           break;
                   case NODE_PERSONNAME:
                           have_name = 1;
                           break;
                   default:
                           break;
                   }
           }
           if (TAILQ_FIRST(&n->childq) == NULL)
                   return;
   
           if (have_contrib)
                   print_text(f, ":", 0);
   
           /*
            * If we have a name, print it in the .An scope and leave
            * all other content for child handlers, to print after the
            * scope.  Otherwise, print everything in the scope.
            */
   
           macro_open(f, "An");
           TAILQ_FOREACH_SAFE(nc, &n->childq, child, ncn) {
                   if (nc->node == NODE_PERSONNAME || have_name == 0) {
                           macro_addnode(f, nc, ARG_SPACE);
                           pnode_unlink(nc);
                   }
           }
   
           /*
            * If there is an email address,
            * print it on the same macro line.
            */
   
           if ((nc = pnode_findfirst(n, NODE_EMAIL)) != NULL) {
                   pnode_print(f, nc);
                   pnode_unlink(nc);
           }
   
           /*
            * If there are still unprinted children, end the scope
            * with a comma.  Otherwise, leave the scope open in case
            * a text node follows that starts with closing punctuation.
            */
   
           if (TAILQ_FIRST(&n->childq) != NULL) {
                   macro_addarg(f, ",", ARG_SPACE);
                   macro_close(f);
           }
   }
   
   static void
   pnode_printprologue(struct format *p, struct ptree *tree)
   {
           struct pnode    *refmeta;
   
           refmeta = tree->root == NULL ? NULL :
               pnode_findfirst(tree->root, NODE_REFMETA);
   
         macro_line(p, "Dd $Mdocdate" "$");          macro_line(p, "Dd $Mdocdate" "$");
         if (pp != NULL)          if (refmeta == NULL) {
                 pnode_printrefmeta(p, pp);  
         else {  
                 macro_open(p, "Dt");                  macro_open(p, "Dt");
                 macro_addarg(p,                  macro_addarg(p,
                     pnode_getattr_raw(p->root, ATTRKEY_ID, "UNKNOWN"),                      pnode_getattr_raw(tree->root, ATTRKEY_ID, "UNKNOWN"),
                     ARG_SPACE | ARG_SINGLE | ARG_UPPER);                      ARG_SPACE | ARG_SINGLE | ARG_UPPER);
                 macro_addarg(p, "1", ARG_SPACE);                  macro_addarg(p, "1", ARG_SPACE);
                 macro_close(p);                  macro_close(p);
         }          } else
                   pnode_printrefmeta(p, refmeta);
         macro_line(p, "Os");          macro_line(p, "Os");
   
         if (p->flags & PARSE_EQN) {          if (tree->flags & TREE_EQN) {
                 macro_line(p, "EQ");                  macro_line(p, "EQ");
                 print_text(p, "delim $$");                  print_text(p, "delim $$", 0);
                 macro_line(p, "EN");                  macro_line(p, "EN");
         }          }
 }  }
Line 1139  pnode_printprologue(struct parse *p, struct pnode *pn)
Line 552  pnode_printprologue(struct parse *p, struct pnode *pn)
  * we should comma-separate as list headers.   * we should comma-separate as list headers.
  */   */
 static void  static void
 pnode_printvarlistentry(struct parse *p, struct pnode *pn)  pnode_printvarlistentry(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
         int              first = 1;          int              first = 1;
   
           macro_close(p);
         macro_open(p, "It");          macro_open(p, "It");
         TAILQ_FOREACH(pp, &pn->childq, child) {          TAILQ_FOREACH(pp, &pn->childq, child) {
                 if (pp->node != NODE_TERM)                  if (pp->node != NODE_TERM)
Line 1161  pnode_printvarlistentry(struct parse *p, struct pnode 
Line 575  pnode_printvarlistentry(struct parse *p, struct pnode 
 }  }
   
 static void  static void
 pnode_printtitle(struct parse *p, struct pnode *pn)  pnode_printtitle(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp, *pq;          struct pnode    *pp, *pq;
   
Line 1175  pnode_printtitle(struct parse *p, struct pnode *pn)
Line 589  pnode_printtitle(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printrow(struct parse *p, struct pnode *pn)  pnode_printrow(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
   
Line 1189  pnode_printrow(struct parse *p, struct pnode *pn)
Line 603  pnode_printrow(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printtable(struct parse *p, struct pnode *pn)  pnode_printtgroup1(struct format *f, struct pnode *n)
 {  {
         struct pnode    *pp;          struct pnode    *nc;
   
         pnode_printtitle(p, pn);          macro_line(f, "Bl -bullet -compact");
         macro_line(p, "Bl -ohang");          while ((nc = pnode_findfirst(n, NODE_ENTRY)) != NULL) {
         while ((pp = pnode_findfirst(pn, NODE_ROW)) != NULL) {                  macro_line(f, "It");
                 macro_line(p, "It Table Row");                  pnode_print(f, nc);
                 pnode_printrow(p, pp);                  pnode_unlink(nc);
         }          }
         macro_line(p, "El");          macro_line(f, "El");
         pnode_unlinksub(pn);          pnode_unlinksub(n);
 }  }
   
 static void  static void
 pnode_printlist(struct parse *p, struct pnode *pn)  pnode_printtgroup2(struct format *f, struct pnode *n)
 {  {
           struct pnode    *nr, *ne;
   
           macro_line(f, "Bl -tag -width Ds");
           while ((nr = pnode_findfirst(n, NODE_ROW)) != NULL) {
                   if ((ne = pnode_findfirst(n, NODE_ENTRY)) == NULL)
                           break;
                   macro_close(f);
                   macro_open(f, "It");
                   pnode_print(f, ne);
                   macro_close(f);
                   pnode_unlink(ne);
                   pnode_print(f, nr);
                   pnode_unlink(nr);
           }
           macro_line(f, "El");
           pnode_unlinksub(n);
   }
   
   static void
   pnode_printtgroup(struct format *f, struct pnode *n)
   {
           struct pnode    *nc;
   
           switch (atoi(pnode_getattr_raw(n, ATTRKEY_COLS, "0"))) {
           case 1:
                   pnode_printtgroup1(f, n);
                   return;
           case 2:
                   pnode_printtgroup2(f, n);
                   return;
           default:
                   break;
           }
   
           macro_line(f, "Bl -ohang");
           while ((nc = pnode_findfirst(n, NODE_ROW)) != NULL) {
                   macro_line(f, "It Table Row");
                   pnode_printrow(f, nc);
           }
           macro_line(f, "El");
           pnode_unlinksub(n);
   }
   
   static void
   pnode_printlist(struct format *p, struct pnode *pn)
   {
         struct pnode    *pp;          struct pnode    *pp;
   
         pnode_printtitle(p, pn);          pnode_printtitle(p, pn);
Line 1220  pnode_printlist(struct parse *p, struct pnode *pn)
Line 680  pnode_printlist(struct parse *p, struct pnode *pn)
 }  }
   
 static void  static void
 pnode_printvariablelist(struct parse *p, struct pnode *pn)  pnode_printvariablelist(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
   
Line 1228  pnode_printvariablelist(struct parse *p, struct pnode 
Line 688  pnode_printvariablelist(struct parse *p, struct pnode 
         macro_line(p, "Bl -tag -width Ds");          macro_line(p, "Bl -tag -width Ds");
         TAILQ_FOREACH(pp, &pn->childq, child) {          TAILQ_FOREACH(pp, &pn->childq, child) {
                 if (pp->node == NODE_VARLISTENTRY)                  if (pp->node == NODE_VARLISTENTRY)
                         pnode_print(p, pp);                          pnode_printvarlistentry(p, pp);
                 else                  else
                         macro_nodeline(p, "It", pp, 0);                          macro_nodeline(p, "It", pp, 0);
         }          }
Line 1243  pnode_printvariablelist(struct parse *p, struct pnode 
Line 703  pnode_printvariablelist(struct parse *p, struct pnode 
  * whatever), don't print inline macros.   * whatever), don't print inline macros.
  */   */
 static void  static void
 pnode_print(struct parse *p, struct pnode *pn)  pnode_print(struct format *p, struct pnode *pn)
 {  {
         struct pnode    *pp;          struct pnode    *pp;
         const char      *ccp;          const char      *ccp;
         char            *cp;  
         int              last;  
         enum linestate   sv;          enum linestate   sv;
   
         if (pn == NULL)          if (pn == NULL)
                 return;                  return;
   
           p->spc = pn->spc;
         sv = p->linestate;          sv = p->linestate;
   
         switch (pn->node) {          switch (pn->node) {
         case NODE_APPLICATION:          case NODE_APPLICATION:
                 macro_open(p, "Nm");                  macro_open(p, "Nm");
                 break;                  break;
         case NODE_ANCHOR:  
                 /* Don't print anything! */  
                 return;  
         case NODE_ARG:          case NODE_ARG:
                 pnode_printarg(p, pn);                  pnode_printarg(p, pn);
                 break;                  break;
         case NODE_AUTHOR:          case NODE_AUTHOR:
                 macro_open(p, "An");                  pnode_printauthor(p, pn);
                 break;                  break;
         case NODE_AUTHORGROUP:          case NODE_AUTHORGROUP:
                 macro_line(p, "An -split");                  macro_line(p, "An -split");
Line 1281  pnode_print(struct parse *p, struct pnode *pn)
Line 737  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_CITETITLE:          case NODE_CITETITLE:
                 macro_open(p, "%T");                  macro_open(p, "%T");
                 break;                  break;
         case NODE_CODE:  
                 macro_open(p, "Li");  
                 break;  
         case NODE_COMMAND:          case NODE_COMMAND:
                 macro_open(p, "Nm");                  macro_open(p, "Nm");
                 break;                  break;
Line 1291  pnode_print(struct parse *p, struct pnode *pn)
Line 744  pnode_print(struct parse *p, struct pnode *pn)
                 macro_open(p, "Dv");                  macro_open(p, "Dv");
                 break;                  break;
         case NODE_EDITOR:          case NODE_EDITOR:
                 print_text(p, "editor:");                  print_text(p, "editor:", ARG_SPACE);
                   sv = LINE_TEXT;
                 macro_open(p, "An");                  macro_open(p, "An");
                 break;                  break;
         case NODE_EMAIL:          case NODE_EMAIL:
Line 1304  pnode_print(struct parse *p, struct pnode *pn)
Line 758  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_ENVAR:          case NODE_ENVAR:
                 macro_open(p, "Ev");                  macro_open(p, "Ev");
                 break;                  break;
           case NODE_ERRORNAME:
                   macro_open(p, "Er");
                   break;
         case NODE_FILENAME:          case NODE_FILENAME:
                 macro_open(p, "Pa");                  macro_open(p, "Pa");
                 break;                  break;
Line 1316  pnode_print(struct parse *p, struct pnode *pn)
Line 773  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_FUNCSYNOPSISINFO:          case NODE_FUNCSYNOPSISINFO:
                 macro_open(p, "Fd");                  macro_open(p, "Fd");
                 break;                  break;
         case NODE_INDEXTERM:  
                 return;  
         case NODE_INFORMALEQUATION:          case NODE_INFORMALEQUATION:
                 macro_line(p, "EQ");                  macro_line(p, "EQ");
                 break;                  break;
Line 1345  pnode_print(struct parse *p, struct pnode *pn)
Line 800  pnode_print(struct parse *p, struct pnode *pn)
                 macro_argline(p, "Sx", ccp);                  macro_argline(p, "Sx", ccp);
                 return;                  return;
         case NODE_LITERAL:          case NODE_LITERAL:
                 macro_open(p, "Li");                  macro_open(p, "Ql");
                 break;                  break;
         case NODE_LITERALLAYOUT:          case NODE_LITERALLAYOUT:
                   macro_close(p);
                 macro_argline(p, "Bd", pnode_getattr(pn, ATTRKEY_CLASS) ==                  macro_argline(p, "Bd", pnode_getattr(pn, ATTRKEY_CLASS) ==
                     ATTRVAL_MONOSPACED ? "-literal" : "-unfilled");                      ATTRVAL_MONOSPACED ? "-literal" : "-unfilled");
                 break;                  break;
Line 1376  pnode_print(struct parse *p, struct pnode *pn)
Line 832  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_PARA:          case NODE_PARA:
                 pnode_printpara(p, pn);                  pnode_printpara(p, pn);
                 break;                  break;
           case NODE_PARAMDEF:
         case NODE_PARAMETER:          case NODE_PARAMETER:
                 macro_nodeline(p, "Fa", pn, ARG_SINGLE);                  macro_nodeline(p, "Fa", pn, ARG_SINGLE);
                 pnode_unlinksub(pn);                  pnode_unlinksub(pn);
Line 1385  pnode_print(struct parse *p, struct pnode *pn)
Line 842  pnode_print(struct parse *p, struct pnode *pn)
                 break;                  break;
         case NODE_PROGRAMLISTING:          case NODE_PROGRAMLISTING:
         case NODE_SCREEN:          case NODE_SCREEN:
           case NODE_SYNOPSIS:
                 macro_line(p, "Bd -literal");                  macro_line(p, "Bd -literal");
                 break;                  break;
         case NODE_REFENTRYINFO:          case NODE_REFENTRYINFO:
                 /* Suppress. */                  /* Suppress. */
                 pnode_unlinksub(pn);                  pnode_unlinksub(pn);
                 break;                  break;
         case NODE_REFMETA:  
                 abort();  
                 break;  
         case NODE_REFNAME:          case NODE_REFNAME:
                 /* Suppress non-text children... */                  /* Suppress non-text children... */
                 macro_open(p, "Nm");                  macro_open(p, "Nm");
Line 1424  pnode_print(struct parse *p, struct pnode *pn)
Line 879  pnode_print(struct parse *p, struct pnode *pn)
                 macro_line(p, "br");                  macro_line(p, "br");
                 break;                  break;
         case NODE_SGMLTAG:          case NODE_SGMLTAG:
                 macro_open(p, "Li");                  macro_open(p, "Ic");
                 break;                  break;
         case NODE_STRUCTNAME:          case NODE_TEXT:
                 macro_open(p, "Vt");          case NODE_ESCAPE:
                   pnode_printtext(p, pn);
                 break;                  break;
         case NODE_TABLE:          case NODE_TGROUP:
         case NODE_INFORMALTABLE:                  pnode_printtgroup(p, pn);
                 pnode_printtable(p, pn);  
                 break;                  break;
         case NODE_TEXT:          case NODE_TITLE:
                 if (pn->bsz == 0) {                  if (pn->parent->node == NODE_BOOKINFO) {
                         assert(pn->real != pn->b);                          macro_open(p, "Nd");
                         break;                          break;
                 }                  }
                 if (p->linestate == LINE_NEW)                  pnode_printpara(p, pn);
                         p->linestate = LINE_TEXT;                  macro_nodeline(p, "Sy", pn, 0);
                 else                  pnode_unlinksub(pn);
                         putchar(' ');  
   
                 /*  
                  * Output all characters, squeezing out whitespace  
                  * between newlines.  
                  * XXX: all whitespace, including tabs (?).  
                  * Remember to escape control characters and escapes.  
                  */  
                 cp = pn->b;  
   
                 /*  
                  * There's often a superfluous "-" in its <option> tags  
                  * before the actual flags themselves.  
                  * "Fl" does this for us, so remove it.  
                  */  
                 if (pn->parent != NULL &&  
                     pn->parent->node == NODE_OPTION &&  
                     *cp == '-')  
                         cp++;  
                 for (last = '\n'; *cp != '\0'; ) {  
                         if (last == '\n') {  
                                 /* Consume all whitespace. */  
                                 if (isspace((unsigned char)*cp)) {  
                                         while (isspace((unsigned char)*cp))  
                                                 cp++;  
                                         continue;  
                                 } else if (*cp == '\'' || *cp == '.')  
                                         fputs("\\&", stdout);  
                         }  
                         putchar(last = *cp++);  
                         /* If we're a character escape, escape us. */  
                         if (last == '\\')  
                                 putchar('e');  
                 }  
                 break;                  break;
         case NODE_TITLE:  
                 if (pn->parent->node == NODE_BOOKINFO)  
                         macro_open(p, "Nd");  
                 break;  
         case NODE_TYPE:          case NODE_TYPE:
                 macro_open(p, "Vt");                  macro_open(p, "Vt");
                 break;                  break;
         case NODE_USERINPUT:  
                 macro_open(p, "Li");  
                 break;  
         case NODE_VARIABLELIST:          case NODE_VARIABLELIST:
                 pnode_printvariablelist(p, pn);                  pnode_printvariablelist(p, pn);
                 break;                  break;
         case NODE_VARLISTENTRY:  
                 pnode_printvarlistentry(p, pn);  
                 break;  
         case NODE_VARNAME:          case NODE_VARNAME:
                 macro_open(p, "Va");                  macro_open(p, "Va");
                 break;                  break;
Line 1510  pnode_print(struct parse *p, struct pnode *pn)
Line 921  pnode_print(struct parse *p, struct pnode *pn)
                 fputs("$ ", stdout);                  fputs("$ ", stdout);
                 p->linestate = sv;                  p->linestate = sv;
                 break;                  break;
           case NODE_MEMBER:
                   if ((pp = TAILQ_NEXT(pn, child)) != NULL &&
                       pp->node != NODE_MEMBER)
                           pp = NULL;
                   switch (p->linestate) {
                   case LINE_TEXT:
                           if (pp != NULL)
                                   print_text(p, ",", 0);
                           break;
                   case LINE_MACRO:
                           if (pp != NULL)
                                   macro_addarg(p, ",", ARG_SPACE);
                           macro_close(p);
                           break;
                   case LINE_NEW:
                           break;
                   }
                   break;
         case NODE_MML_MROW:          case NODE_MML_MROW:
         case NODE_MML_MI:          case NODE_MML_MI:
         case NODE_MML_MN:          case NODE_MML_MN:
Line 1523  pnode_print(struct parse *p, struct pnode *pn)
Line 952  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_AUTHOR:          case NODE_AUTHOR:
         case NODE_CITEREFENTRY:          case NODE_CITEREFENTRY:
         case NODE_CITETITLE:          case NODE_CITETITLE:
         case NODE_CODE:  
         case NODE_COMMAND:          case NODE_COMMAND:
         case NODE_CONSTANT:          case NODE_CONSTANT:
         case NODE_EDITOR:          case NODE_EDITOR:
         case NODE_EMAIL:          case NODE_EMAIL:
         case NODE_EMPHASIS:          case NODE_EMPHASIS:
         case NODE_ENVAR:          case NODE_ENVAR:
           case NODE_ERRORNAME:
         case NODE_FILENAME:          case NODE_FILENAME:
         case NODE_FIRSTTERM:          case NODE_FIRSTTERM:
         case NODE_FUNCTION:          case NODE_FUNCTION:
Line 1541  pnode_print(struct parse *p, struct pnode *pn)
Line 970  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_REPLACEABLE:          case NODE_REPLACEABLE:
         case NODE_REFPURPOSE:          case NODE_REFPURPOSE:
         case NODE_SGMLTAG:          case NODE_SGMLTAG:
         case NODE_STRUCTNAME:  
         case NODE_TYPE:          case NODE_TYPE:
         case NODE_USERINPUT:  
         case NODE_VARNAME:          case NODE_VARNAME:
                 if (sv != LINE_MACRO && p->linestate == LINE_MACRO)                  if (sv != LINE_MACRO && p->linestate == LINE_MACRO &&
                       (pn->parent == NULL || pn->parent->node != NODE_MEMBER))
                         macro_closepunct(p, pn);                          macro_closepunct(p, pn);
                 break;                  break;
         case NODE_QUOTE:          case NODE_QUOTE:
Line 1581  pnode_print(struct parse *p, struct pnode *pn)
Line 1009  pnode_print(struct parse *p, struct pnode *pn)
         case NODE_LITERALLAYOUT:          case NODE_LITERALLAYOUT:
         case NODE_PROGRAMLISTING:          case NODE_PROGRAMLISTING:
         case NODE_SCREEN:          case NODE_SCREEN:
           case NODE_SYNOPSIS:
                 macro_line(p, "Ed");                  macro_line(p, "Ed");
                 break;                  break;
         case NODE_TITLE:          case NODE_TITLE:
Line 1592  pnode_print(struct parse *p, struct pnode *pn)
Line 1021  pnode_print(struct parse *p, struct pnode *pn)
         }          }
 }  }
   
 /*  void
  * Loop around the read buffer until we've drained it of all data.  ptree_print(struct ptree *tree)
  * Invoke the parser context with each buffer fill.  
  */  
 static int  
 readfile(XML_Parser xp, int fd,  
         char *b, size_t bsz, const char *fn)  
 {  {
         struct parse     p;          struct format    formatter;
         int              rc;  
         ssize_t          ssz;  
   
         memset(&p, 0, sizeof(struct parse));          formatter.level = 0;
           formatter.linestate = LINE_NEW;
         p.fname = fn;          pnode_printprologue(&formatter, tree);
         p.xml = xp;          pnode_print(&formatter, tree->root);
           if (formatter.linestate != LINE_NEW)
         XML_SetCharacterDataHandler(xp, xml_char);                  putchar('\n');
         XML_SetElementHandler(xp, xml_elem_start, xml_elem_end);  
         XML_SetUserData(xp, &p);  
   
         while ((ssz = read(fd, b, bsz)) >= 0) {  
                 if ((rc = XML_Parse(xp, b, ssz, 0 == ssz)) == 0)  
                         fprintf(stderr, "%s:%zu:%zu: %s\n", fn,  
                                 XML_GetCurrentLineNumber(xp),  
                                 XML_GetCurrentColumnNumber(xp),  
                                 XML_ErrorString  
                                 (XML_GetErrorCode(xp)));  
                 else if ( ! p.stop && ssz > 0)  
                         continue;  
                 /*  
                  * Exit when we've read all or errors have occured  
                  * during the parse sequence.  
                  */  
                 p.linestate = LINE_NEW;  
                 pnode_printprologue(&p, p.root);  
                 pnode_print(&p, p.root);  
                 if (p.linestate != LINE_NEW)  
                         putchar('\n');  
                 pnode_free(p.root);  
                 return rc != 0 && p.stop == 0;  
         }  
   
         /* Read error has occured. */  
         perror(fn);  
         pnode_free(p.root);  
         return 0;  
 }  
   
 int  
 main(int argc, char *argv[])  
 {  
         XML_Parser       xp;  
         const char      *fname;  
         char            *buf;  
         int              fd, rc, ch;  
         const char      *progname;  
   
         progname = strrchr(argv[0], '/');  
         if (progname == NULL)  
                 progname = argv[0];  
         else  
                 ++progname;  
   
         fname = "-";  
         xp = NULL;  
         buf = NULL;  
         rc = 1;  
   
         while ((ch = getopt(argc, argv, "W")) != -1)  
                 switch (ch) {  
                 case 'W':  
                         warn = 1;  
                         break;  
                 default:  
                         goto usage;  
                 }  
   
         argc -= optind;  
         argv += optind;  
   
         if (argc > 1) {  
                 fprintf(stderr, "%s: Too many arguments\n", argv[1]);  
                 goto usage;  
         } else if (argc > 0)  
                 fname = argv[0];  
   
         /* Read from stdin or a file. */  
         fd = strcmp(fname, "-") == 0 ?  
                 STDIN_FILENO : open(fname, O_RDONLY, 0);  
   
         /*  
          * Open file for reading.  
          * Allocate a read buffer.  
          * Create the parser context.  
          * Dive directly into the parse.  
          */  
         if (fd == -1)  
                 perror(fname);  
         else if ((buf = malloc(4096)) == NULL)  
                 perror(NULL);  
         else if ((xp = XML_ParserCreate(NULL)) == NULL)  
                 perror(NULL);  
         else if (readfile(xp, fd, buf, 4096, fname))  
                 rc = 0;  
   
         XML_ParserFree(xp);  
         free(buf);  
         if (fd != STDIN_FILENO)  
                 close(fd);  
         return rc;  
   
 usage:  
         fprintf(stderr, "usage: %s [-W] [input_filename]\n", progname);  
         return 1;  
 }  }

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.95

CVSweb