]> git.cameronkatri.com Git - mandoc.git/blobdiff - tree.c
Handle output encoding for unicode, numbered and named escape sequences
[mandoc.git] / tree.c
diff --git a/tree.c b/tree.c
index 087ab55ae470d62b90baaf56d339a66d4fdb35b9..19ee0c7963b0cd089609cd6ca4f6ce1326672b90 100644 (file)
--- a/tree.c
+++ b/tree.c
@@ -1,6 +1,6 @@
-/*     $Id: tree.c,v 1.56 2014/10/10 08:44:24 kristaps Exp $ */
+/*     $Id: tree.c,v 1.59 2014/10/20 01:43:48 schwarze Exp $ */
 /*
- * Copyright (c) 2008, 2009, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
+ * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
  *
  * Permission to use, copy, modify, and distribute this software for any
@@ -88,8 +88,9 @@ print_mdoc(const struct mdoc_node *n, int indent)
                t = "text";
                break;
        case MDOC_TBL:
-               /* FALLTHROUGH */
+               break;
        case MDOC_EQN:
+               t = "eqn";
                break;
        default:
                abort();
@@ -124,8 +125,9 @@ print_mdoc(const struct mdoc_node *n, int indent)
                }
                break;
        case MDOC_TBL:
-               /* FALLTHROUGH */
+               break;
        case MDOC_EQN:
+               p = "EQ";
                break;
        case MDOC_ROOT:
                p = "root";
@@ -138,9 +140,6 @@ print_mdoc(const struct mdoc_node *n, int indent)
        if (n->span) {
                assert(NULL == p && NULL == t);
                print_span(n->span, indent);
-       } else if (n->eqn) {
-               assert(NULL == p && NULL == t);
-               print_box(n->eqn->root, indent);
        } else {
                for (i = 0; i < indent; i++)
                        putchar('\t');
@@ -166,6 +165,8 @@ print_mdoc(const struct mdoc_node *n, int indent)
                putchar('\n');
        }
 
+       if (n->eqn)
+               print_box(n->eqn->root->first, indent + 1);
        if (n->child)
                print_mdoc(n->child, indent + 1);
        if (n->next)
@@ -203,8 +204,9 @@ print_man(const struct man_node *n, int indent)
                t = "block-tail";
                break;
        case MAN_TBL:
-               /* FALLTHROUGH */
+               break;
        case MAN_EQN:
+               t = "eqn";
                break;
        default:
                abort();
@@ -230,8 +232,9 @@ print_man(const struct man_node *n, int indent)
                p = "root";
                break;
        case MAN_TBL:
-               /* FALLTHROUGH */
+               break;
        case MAN_EQN:
+               p = "EQ";
                break;
        default:
                abort();
@@ -241,9 +244,6 @@ print_man(const struct man_node *n, int indent)
        if (n->span) {
                assert(NULL == p && NULL == t);
                print_span(n->span, indent);
-       } else if (n->eqn) {
-               assert(NULL == p && NULL == t);
-               print_box(n->eqn->root, indent);
        } else {
                for (i = 0; i < indent; i++)
                        putchar('\t');
@@ -253,6 +253,8 @@ print_man(const struct man_node *n, int indent)
                printf("%d:%d\n", n->line, n->pos + 1);
        }
 
+       if (n->eqn)
+               print_box(n->eqn->root->first, indent + 1);
        if (n->child)
                print_man(n->child, indent + 1);
        if (n->next)
@@ -265,6 +267,11 @@ print_box(const struct eqn_box *ep, int indent)
        int              i;
        const char      *t;
 
+       static const char *posnames[] = {
+           NULL, "sup", "subsup", "sub",
+           "to", "from", "fromto",
+           "over", "sqrt", NULL };
+
        if (NULL == ep)
                return;
        for (i = 0; i < indent; i++)
@@ -293,14 +300,28 @@ print_box(const struct eqn_box *ep, int indent)
                break;
        }
 
-       assert(t);
-       printf("%s(size=%d, args=%zu(%zu), pos=%d, font=%d, pile=%d, l=\"%s\", r=\"%s\") %s\n",
-           t, EQN_DEFSIZE == ep->size ? 0 : ep->size,
-           ep->args, ep->expectargs,
-           ep->pos, ep->font, ep->pile,
-           ep->left ? ep->left : "",
-           ep->right ? ep->right : "",
-           ep->text ? ep->text : "");
+       fputs(t, stdout);
+       if (ep->pos)
+               printf(" pos=%s", posnames[ep->pos]);
+       if (ep->left)
+               printf(" left=\"%s\"", ep->left);
+       if (ep->right)
+               printf(" right=\"%s\"", ep->right);
+       if (ep->top)
+               printf(" top=\"%s\"", ep->top);
+       if (ep->bottom)
+               printf(" bottom=\"%s\"", ep->bottom);
+       if (ep->text)
+               printf(" text=\"%s\"", ep->text);
+       if (ep->font)
+               printf(" font=%d", ep->font);
+       if (ep->size != EQN_DEFSIZE)
+               printf(" size=%d", ep->size);
+       if (ep->expectargs != UINT_MAX && ep->expectargs != ep->args)
+               printf(" badargs=%zu(%zu)", ep->args, ep->expectargs);
+       else if (ep->args)
+               printf(" args=%zu", ep->args);
+       putchar('\n');
 
        print_box(ep->first, indent + 1);
        print_box(ep->next, indent);