]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc.c
Add `cc' support.
[mandoc.git] / mdoc.c
diff --git a/mdoc.c b/mdoc.c
index 29c5ec552c01eb1d10b33a77706805bda9d6de28..7021c5c6dbca5932d7024febec8e65f073cbfb66 100644 (file)
--- a/mdoc.c
+++ b/mdoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mdoc.c,v 1.190 2011/07/21 10:24:35 kristaps Exp $ */
+/*     $Id: mdoc.c,v 1.198 2012/06/12 20:21:04 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -97,6 +97,9 @@ static        struct mdoc_node *node_alloc(struct mdoc *, int, int,
                                enum mdoct, enum mdoc_type);
 static int               node_append(struct mdoc *, 
                                struct mdoc_node *);
                                enum mdoct, enum mdoc_type);
 static int               node_append(struct mdoc *, 
                                struct mdoc_node *);
+#if 0
+static int               mdoc_preptext(struct mdoc *, int, char *, int);
+#endif
 static int               mdoc_ptext(struct mdoc *, int, char *, int);
 static int               mdoc_pmacro(struct mdoc *, int, char *, int);
 
 static int               mdoc_ptext(struct mdoc *, int, char *, int);
 static int               mdoc_pmacro(struct mdoc *, int, char *, int);
 
@@ -157,6 +160,7 @@ mdoc_alloc1(struct mdoc *mdoc)
        mdoc->last = mandoc_calloc(1, sizeof(struct mdoc_node));
        mdoc->first = mdoc->last;
        mdoc->last->type = MDOC_ROOT;
        mdoc->last = mandoc_calloc(1, sizeof(struct mdoc_node));
        mdoc->first = mdoc->last;
        mdoc->last->type = MDOC_ROOT;
+       mdoc->last->tok = MDOC_MAX;
        mdoc->next = MDOC_NEXT_CHILD;
 }
 
        mdoc->next = MDOC_NEXT_CHILD;
 }
 
@@ -193,13 +197,14 @@ mdoc_free(struct mdoc *mdoc)
  * Allocate volatile and non-volatile parse resources.  
  */
 struct mdoc *
  * Allocate volatile and non-volatile parse resources.  
  */
 struct mdoc *
-mdoc_alloc(struct roff *roff, struct mparse *parse)
+mdoc_alloc(struct roff *roff, struct mparse *parse, char *defos)
 {
        struct mdoc     *p;
 
        p = mandoc_calloc(1, sizeof(struct mdoc));
 
        p->parse = parse;
 {
        struct mdoc     *p;
 
        p = mandoc_calloc(1, sizeof(struct mdoc));
 
        p->parse = parse;
+       p->defos = defos;
        p->roff = roff;
 
        mdoc_hash_init();
        p->roff = roff;
 
        mdoc_hash_init();
@@ -297,7 +302,7 @@ mdoc_parseln(struct mdoc *m, int ln, char *buf, int offs)
                        m->flags &= ~MDOC_SYNOPSIS;
        }
 
                        m->flags &= ~MDOC_SYNOPSIS;
        }
 
-       return(mandoc_getcontrol(buf, &offs) ?
+       return(roff_getcontrol(m->roff, buf, &offs) ?
                        mdoc_pmacro(m, ln, buf, offs) :
                        mdoc_ptext(m, ln, buf, offs));
 }
                        mdoc_pmacro(m, ln, buf, offs) :
                        mdoc_ptext(m, ln, buf, offs));
 }
@@ -565,16 +570,9 @@ int
 mdoc_word_alloc(struct mdoc *m, int line, int pos, const char *p)
 {
        struct mdoc_node *n;
 mdoc_word_alloc(struct mdoc *m, int line, int pos, const char *p)
 {
        struct mdoc_node *n;
-       size_t            sv, len;
-
-       len = strlen(p);
 
        n = node_alloc(m, line, pos, MDOC_MAX, MDOC_TEXT);
 
        n = node_alloc(m, line, pos, MDOC_MAX, MDOC_TEXT);
-       n->string = mandoc_malloc(len + 1);
-       sv = strlcpy(n->string, p, len + 1);
-
-       /* Prohibit truncation. */
-       assert(sv < len + 1);
+       n->string = roff_strdup(m->roff, p);
 
        if ( ! node_append(m, n))
                return(0);
 
        if ( ! node_append(m, n))
                return(0);
@@ -650,6 +648,59 @@ mdoc_node_delete(struct mdoc *m, struct mdoc_node *p)
        mdoc_node_free(p);
 }
 
        mdoc_node_free(p);
 }
 
+#if 0
+/*
+ * Pre-treat a text line.
+ * Text lines can consist of equations, which must be handled apart from
+ * the regular text.
+ * Thus, use this function to step through a line checking if it has any
+ * equations embedded in it.
+ * This must handle multiple equations AND equations that do not end at
+ * the end-of-line, i.e., will re-enter in the next roff parse.
+ */
+static int
+mdoc_preptext(struct mdoc *m, int line, char *buf, int offs)
+{
+       char            *start, *end;
+       char             delim;
+
+       while ('\0' != buf[offs]) {
+               /* Mark starting position if eqn is set. */
+               start = NULL;
+               if ('\0' != (delim = roff_eqndelim(m->roff)))
+                       if (NULL != (start = strchr(buf + offs, delim)))
+                               *start++ = '\0';
+
+               /* Parse text as normal. */
+               if ( ! mdoc_ptext(m, line, buf, offs))
+                       return(0);
+
+               /* Continue only if an equation exists. */
+               if (NULL == start)
+                       break;
+
+               /* Read past the end of the equation. */
+               offs += start - (buf + offs);
+               assert(start == &buf[offs]);
+               if (NULL != (end = strchr(buf + offs, delim))) {
+                       *end++ = '\0';
+                       while (' ' == *end)
+                               end++;
+               }
+
+               /* Parse the equation itself. */
+               roff_openeqn(m->roff, NULL, line, offs, buf);
+
+               /* Process a finished equation? */
+               if (roff_closeeqn(m->roff))
+                       if ( ! mdoc_addeqn(m, roff_eqn(m->roff)))
+                               return(0);
+               offs += (end - (buf + offs));
+       } 
+
+       return(1);
+}
+#endif
 
 /*
  * Parse free-form text, that is, a line that does not begin with the
 
 /*
  * Parse free-form text, that is, a line that does not begin with the
@@ -703,11 +754,6 @@ mdoc_ptext(struct mdoc *m, int line, char *buf, int offs)
        ws = NULL;
        for (c = end = buf + offs; *c; c++) {
                switch (*c) {
        ws = NULL;
        for (c = end = buf + offs; *c; c++) {
                switch (*c) {
-               case '-':
-                       if (mandoc_hyph(buf + offs, c))
-                               *c = ASCII_HYPH;
-                       ws = NULL;
-                       break;
                case ' ':
                        if (NULL == ws)
                                ws = c;
                case ' ':
                        if (NULL == ws)
                                ws = c;