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

Annotation of mandoc/man.c, Revision 1.69

1.69    ! kristaps    1: /*     $Id: man.c,v 1.68 2010/05/15 15:54:39 kristaps Exp $ */
1.1       kristaps    2: /*
1.19      kristaps    3:  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
1.1       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.18      kristaps    6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    8:  *
1.18      kristaps    9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   16:  */
1.47      kristaps   17: #ifdef HAVE_CONFIG_H
                     18: #include "config.h"
                     19: #endif
                     20:
1.41      kristaps   21: #include <sys/types.h>
                     22:
1.1       kristaps   23: #include <assert.h>
                     24: #include <ctype.h>
                     25: #include <stdarg.h>
                     26: #include <stdlib.h>
                     27: #include <stdio.h>
                     28: #include <string.h>
                     29:
                     30: #include "libman.h"
1.45      kristaps   31: #include "libmandoc.h"
1.1       kristaps   32:
1.27      kristaps   33: const  char *const __man_merrnames[WERRMAX] = {
                     34:        "invalid character", /* WNPRINT */
                     35:        "invalid date format", /* WDATE */
                     36:        "scope of prior line violated", /* WLNSCOPE */
1.51      kristaps   37:        "over-zealous prior line scope violation", /* WLNSCOPE2 */
1.27      kristaps   38:        "trailing whitespace", /* WTSPACE */
                     39:        "unterminated quoted parameter", /* WTQUOTE */
                     40:        "document has no body", /* WNODATA */
                     41:        "document has no title/section", /* WNOTITLE */
                     42:        "invalid escape sequence", /* WESCAPE */
1.28      kristaps   43:        "invalid number format", /* WNUMFMT */
1.29      kristaps   44:        "expected block head arguments", /* WHEADARGS */
                     45:        "expected block body arguments", /* WBODYARGS */
                     46:        "expected empty block head", /* WNHEADARGS */
                     47:        "ill-formed macro", /* WMACROFORM */
1.30      kristaps   48:        "scope open on exit", /* WEXITSCOPE */
1.35      kristaps   49:        "no scope context", /* WNOSCOPE */
                     50:        "literal context already open", /* WOLITERAL */
1.54      kristaps   51:        "no literal context open", /* WNLITERAL */
                     52:        "invalid nesting of roff declarations", /* WROFFNEST */
1.55      kristaps   53:        "scope in roff instructions broken", /* WROFFSCOPE */
                     54:        "document title should be uppercase", /* WTITLECASE */
1.60      kristaps   55:        "deprecated comment style", /* WBADCOMMENT */
1.27      kristaps   56: };
                     57:
1.1       kristaps   58: const  char *const __man_macronames[MAN_MAX] = {
1.21      kristaps   59:        "br",           "TH",           "SH",           "SS",
1.1       kristaps   60:        "TP",           "LP",           "PP",           "P",
                     61:        "IP",           "HP",           "SM",           "SB",
                     62:        "BI",           "IB",           "BR",           "RB",
1.11      kristaps   63:        "R",            "B",            "I",            "IR",
1.29      kristaps   64:        "RI",           "na",           "i",            "sp",
1.30      kristaps   65:        "nf",           "fi",           "r",            "RE",
1.52      kristaps   66:        "RS",           "DT",           "UC",           "PD",
1.54      kristaps   67:        "Sp",           "Vb",           "Ve",           "de",
1.69    ! kristaps   68:        "dei",          "am",           "ami",          ".",
1.1       kristaps   69:        };
                     70:
                     71: const  char * const *man_macronames = __man_macronames;
                     72:
1.16      kristaps   73: static struct man_node *man_node_alloc(int, int,
1.53      kristaps   74:                                enum man_type, enum mant);
1.1       kristaps   75: static int              man_node_append(struct man *,
                     76:                                struct man_node *);
1.54      kristaps   77: static void             man_node_free(struct man_node *);
                     78: static void             man_node_unlink(struct man *,
                     79:                                struct man_node *);
1.1       kristaps   80: static int              man_ptext(struct man *, int, char *);
                     81: static int              man_pmacro(struct man *, int, char *);
1.2       kristaps   82: static void             man_free1(struct man *);
1.45      kristaps   83: static void             man_alloc1(struct man *);
1.43      kristaps   84: static int              macrowarn(struct man *, int, const char *);
1.1       kristaps   85:
                     86:
                     87: const struct man_node *
1.2       kristaps   88: man_node(const struct man *m)
1.1       kristaps   89: {
                     90:
1.2       kristaps   91:        return(MAN_HALT & m->flags ? NULL : m->first);
1.1       kristaps   92: }
                     93:
                     94:
                     95: const struct man_meta *
1.2       kristaps   96: man_meta(const struct man *m)
1.1       kristaps   97: {
                     98:
1.2       kristaps   99:        return(MAN_HALT & m->flags ? NULL : &m->meta);
1.1       kristaps  100: }
                    101:
                    102:
1.45      kristaps  103: void
1.1       kristaps  104: man_reset(struct man *man)
                    105: {
                    106:
1.2       kristaps  107:        man_free1(man);
1.45      kristaps  108:        man_alloc1(man);
1.1       kristaps  109: }
                    110:
                    111:
                    112: void
                    113: man_free(struct man *man)
                    114: {
                    115:
1.2       kristaps  116:        man_free1(man);
1.1       kristaps  117:        free(man);
                    118: }
                    119:
                    120:
                    121: struct man *
1.7       kristaps  122: man_alloc(void *data, int pflags, const struct man_cb *cb)
1.1       kristaps  123: {
                    124:        struct man      *p;
                    125:
1.45      kristaps  126:        p = mandoc_calloc(1, sizeof(struct man));
1.2       kristaps  127:
1.45      kristaps  128:        if (cb)
                    129:                memcpy(&p->cb, cb, sizeof(struct man_cb));
1.1       kristaps  130:
1.40      kristaps  131:        man_hash_init();
1.4       kristaps  132:        p->data = data;
1.7       kristaps  133:        p->pflags = pflags;
1.45      kristaps  134:
                    135:        man_alloc1(p);
1.1       kristaps  136:        return(p);
                    137: }
                    138:
                    139:
                    140: int
                    141: man_endparse(struct man *m)
                    142: {
                    143:
1.3       kristaps  144:        if (MAN_HALT & m->flags)
                    145:                return(0);
                    146:        else if (man_macroend(m))
                    147:                return(1);
                    148:        m->flags |= MAN_HALT;
                    149:        return(0);
1.1       kristaps  150: }
                    151:
                    152:
                    153: int
                    154: man_parseln(struct man *m, int ln, char *buf)
                    155: {
                    156:
1.55      kristaps  157:        return('.' == *buf || '\'' == *buf ?
1.1       kristaps  158:                        man_pmacro(m, ln, buf) :
                    159:                        man_ptext(m, ln, buf));
                    160: }
                    161:
                    162:
1.2       kristaps  163: static void
                    164: man_free1(struct man *man)
                    165: {
                    166:
                    167:        if (man->first)
1.54      kristaps  168:                man_node_delete(man, man->first);
1.2       kristaps  169:        if (man->meta.title)
                    170:                free(man->meta.title);
1.6       kristaps  171:        if (man->meta.source)
                    172:                free(man->meta.source);
1.2       kristaps  173:        if (man->meta.vol)
                    174:                free(man->meta.vol);
1.68      kristaps  175:        if (man->meta.msec)
                    176:                free(man->meta.msec);
1.2       kristaps  177: }
                    178:
                    179:
1.45      kristaps  180: static void
1.2       kristaps  181: man_alloc1(struct man *m)
                    182: {
                    183:
1.44      kristaps  184:        memset(&m->meta, 0, sizeof(struct man_meta));
1.2       kristaps  185:        m->flags = 0;
1.45      kristaps  186:        m->last = mandoc_calloc(1, sizeof(struct man_node));
1.2       kristaps  187:        m->first = m->last;
                    188:        m->last->type = MAN_ROOT;
1.54      kristaps  189:        m->last->tok = MAN_MAX;
1.2       kristaps  190:        m->next = MAN_NEXT_CHILD;
                    191: }
                    192:
                    193:
1.1       kristaps  194: static int
                    195: man_node_append(struct man *man, struct man_node *p)
                    196: {
                    197:
                    198:        assert(man->last);
                    199:        assert(man->first);
                    200:        assert(MAN_ROOT != p->type);
                    201:
                    202:        switch (man->next) {
                    203:        case (MAN_NEXT_SIBLING):
                    204:                man->last->next = p;
                    205:                p->prev = man->last;
                    206:                p->parent = man->last->parent;
                    207:                break;
                    208:        case (MAN_NEXT_CHILD):
                    209:                man->last->child = p;
                    210:                p->parent = man->last;
                    211:                break;
                    212:        default:
                    213:                abort();
                    214:                /* NOTREACHED */
                    215:        }
1.22      kristaps  216:
1.54      kristaps  217:        assert(p->parent);
1.22      kristaps  218:        p->parent->nchild++;
1.1       kristaps  219:
1.29      kristaps  220:        if ( ! man_valid_pre(man, p))
                    221:                return(0);
                    222:
                    223:        switch (p->type) {
                    224:        case (MAN_HEAD):
                    225:                assert(MAN_BLOCK == p->parent->type);
                    226:                p->parent->head = p;
                    227:                break;
                    228:        case (MAN_BODY):
                    229:                assert(MAN_BLOCK == p->parent->type);
                    230:                p->parent->body = p;
                    231:                break;
                    232:        default:
                    233:                break;
                    234:        }
                    235:
1.2       kristaps  236:        man->last = p;
                    237:
1.1       kristaps  238:        switch (p->type) {
1.2       kristaps  239:        case (MAN_TEXT):
                    240:                if ( ! man_valid_post(man))
                    241:                        return(0);
                    242:                if ( ! man_action_post(man))
                    243:                        return(0);
1.1       kristaps  244:                break;
                    245:        default:
                    246:                break;
                    247:        }
                    248:
                    249:        return(1);
                    250: }
                    251:
                    252:
                    253: static struct man_node *
1.53      kristaps  254: man_node_alloc(int line, int pos, enum man_type type, enum mant tok)
1.1       kristaps  255: {
                    256:        struct man_node *p;
                    257:
1.45      kristaps  258:        p = mandoc_calloc(1, sizeof(struct man_node));
1.1       kristaps  259:        p->line = line;
                    260:        p->pos = pos;
                    261:        p->type = type;
1.16      kristaps  262:        p->tok = tok;
1.1       kristaps  263:        return(p);
                    264: }
                    265:
                    266:
                    267: int
1.53      kristaps  268: man_elem_alloc(struct man *m, int line, int pos, enum mant tok)
1.1       kristaps  269: {
                    270:        struct man_node *p;
                    271:
1.16      kristaps  272:        p = man_node_alloc(line, pos, MAN_ELEM, tok);
1.30      kristaps  273:        if ( ! man_node_append(m, p))
                    274:                return(0);
                    275:        m->next = MAN_NEXT_CHILD;
                    276:        return(1);
1.1       kristaps  277: }
                    278:
                    279:
                    280: int
1.53      kristaps  281: man_head_alloc(struct man *m, int line, int pos, enum mant tok)
1.29      kristaps  282: {
                    283:        struct man_node *p;
                    284:
                    285:        p = man_node_alloc(line, pos, MAN_HEAD, tok);
                    286:        if ( ! man_node_append(m, p))
                    287:                return(0);
                    288:        m->next = MAN_NEXT_CHILD;
                    289:        return(1);
                    290: }
                    291:
                    292:
                    293: int
1.53      kristaps  294: man_body_alloc(struct man *m, int line, int pos, enum mant tok)
1.29      kristaps  295: {
                    296:        struct man_node *p;
                    297:
                    298:        p = man_node_alloc(line, pos, MAN_BODY, tok);
                    299:        if ( ! man_node_append(m, p))
                    300:                return(0);
                    301:        m->next = MAN_NEXT_CHILD;
                    302:        return(1);
                    303: }
                    304:
                    305:
                    306: int
1.53      kristaps  307: man_block_alloc(struct man *m, int line, int pos, enum mant tok)
1.29      kristaps  308: {
                    309:        struct man_node *p;
                    310:
                    311:        p = man_node_alloc(line, pos, MAN_BLOCK, tok);
                    312:        if ( ! man_node_append(m, p))
                    313:                return(0);
                    314:        m->next = MAN_NEXT_CHILD;
                    315:        return(1);
                    316: }
                    317:
                    318:
1.61      kristaps  319: int
                    320: man_word_alloc(struct man *m, int line, int pos, const char *word)
1.1       kristaps  321: {
1.31      kristaps  322:        struct man_node *n;
1.61      kristaps  323:        size_t           sv, len;
                    324:
                    325:        len = strlen(word);
1.1       kristaps  326:
1.53      kristaps  327:        n = man_node_alloc(line, pos, MAN_TEXT, MAN_MAX);
1.45      kristaps  328:        n->string = mandoc_malloc(len + 1);
1.61      kristaps  329:        sv = strlcpy(n->string, word, len + 1);
1.31      kristaps  330:
                    331:        /* Prohibit truncation. */
                    332:        assert(sv < len + 1);
                    333:
                    334:        if ( ! man_node_append(m, n))
1.30      kristaps  335:                return(0);
1.61      kristaps  336:
1.30      kristaps  337:        m->next = MAN_NEXT_SIBLING;
                    338:        return(1);
1.1       kristaps  339: }
                    340:
                    341:
1.54      kristaps  342: /*
                    343:  * Free all of the resources held by a node.  This does NOT unlink a
                    344:  * node from its context; for that, see man_node_unlink().
                    345:  */
                    346: static void
1.1       kristaps  347: man_node_free(struct man_node *p)
                    348: {
                    349:
                    350:        if (p->string)
                    351:                free(p->string);
                    352:        free(p);
                    353: }
                    354:
                    355:
                    356: void
1.54      kristaps  357: man_node_delete(struct man *m, struct man_node *p)
1.1       kristaps  358: {
                    359:
1.54      kristaps  360:        while (p->child)
                    361:                man_node_delete(m, p->child);
                    362:
                    363:        man_node_unlink(m, p);
1.1       kristaps  364:        man_node_free(p);
                    365: }
                    366:
                    367:
                    368: static int
                    369: man_ptext(struct man *m, int line, char *buf)
                    370: {
1.61      kristaps  371:        int              i;
1.60      kristaps  372:
                    373:        /* Ignore bogus comments. */
                    374:
                    375:        if ('\\' == buf[0] && '.' == buf[1] && '\"' == buf[2])
                    376:                return(man_pwarn(m, line, 0, WBADCOMMENT));
1.31      kristaps  377:
1.35      kristaps  378:        /* Literal free-form text whitespace is preserved. */
                    379:
                    380:        if (MAN_LITERAL & m->flags) {
                    381:                if ( ! man_word_alloc(m, line, 0, buf))
                    382:                        return(0);
                    383:                goto descope;
                    384:        }
                    385:
1.61      kristaps  386:        /* Pump blank lines directly into the backend. */
1.31      kristaps  387:
                    388:        for (i = 0; ' ' == buf[i]; i++)
                    389:                /* Skip leading whitespace. */ ;
1.48      kristaps  390:
1.49      kristaps  391:        if ('\0' == buf[i]) {
1.61      kristaps  392:                /* Allocate a blank entry. */
                    393:                if ( ! man_word_alloc(m, line, 0, ""))
1.31      kristaps  394:                        return(0);
                    395:                goto descope;
                    396:        }
                    397:
1.63      kristaps  398:        /*
                    399:         * Warn if the last un-escaped character is whitespace. Then
                    400:         * strip away the remaining spaces (tabs stay!).
                    401:         */
1.29      kristaps  402:
1.61      kristaps  403:        i = (int)strlen(buf);
                    404:        assert(i);
1.49      kristaps  405:
1.63      kristaps  406:        if (' ' == buf[i - 1] || '\t' == buf[i - 1]) {
1.64      kristaps  407:                if (i > 1 && '\\' != buf[i - 2])
1.49      kristaps  408:                        if ( ! man_pwarn(m, line, i - 1, WTSPACE))
                    409:                                return(0);
1.63      kristaps  410:
                    411:                for (--i; i && ' ' == buf[i]; i--)
                    412:                        /* Spin back to non-space. */ ;
                    413:
                    414:                /* Jump ahead of escaped whitespace. */
                    415:                i += '\\' == buf[i] ? 2 : 1;
                    416:
                    417:                buf[i] = '\0';
                    418:        }
1.49      kristaps  419:
1.61      kristaps  420:        if ( ! man_word_alloc(m, line, 0, buf))
1.1       kristaps  421:                return(0);
1.65      kristaps  422:
                    423:        /*
                    424:         * End-of-sentence check.  If the last character is an unescaped
                    425:         * EOS character, then flag the node as being the end of a
                    426:         * sentence.  The front-end will know how to interpret this.
                    427:         */
1.67      kristaps  428:
                    429:        /* FIXME: chain of close delims. */
1.65      kristaps  430:
                    431:        assert(i);
                    432:
1.66      kristaps  433:        if (mandoc_eos(buf, (size_t)i))
1.65      kristaps  434:                m->last->flags |= MAN_EOS;
1.31      kristaps  435:
                    436: descope:
1.11      kristaps  437:        /*
1.29      kristaps  438:         * Co-ordinate what happens with having a next-line scope open:
                    439:         * first close out the element scope (if applicable), then close
                    440:         * out the block scope (also if applicable).
1.11      kristaps  441:         */
                    442:
1.29      kristaps  443:        if (MAN_ELINE & m->flags) {
                    444:                m->flags &= ~MAN_ELINE;
1.55      kristaps  445:                if ( ! man_unscope(m, m->last->parent, WERRMAX))
1.29      kristaps  446:                        return(0);
                    447:        }
                    448:
                    449:        if ( ! (MAN_BLINE & m->flags))
1.11      kristaps  450:                return(1);
1.29      kristaps  451:        m->flags &= ~MAN_BLINE;
1.11      kristaps  452:
1.55      kristaps  453:        if ( ! man_unscope(m, m->last->parent, WERRMAX))
1.11      kristaps  454:                return(0);
1.29      kristaps  455:        return(man_body_alloc(m, line, 0, m->last->tok));
1.1       kristaps  456: }
                    457:
                    458:
1.43      kristaps  459: static int
                    460: macrowarn(struct man *m, int ln, const char *buf)
                    461: {
                    462:        if ( ! (MAN_IGN_MACRO & m->pflags))
1.62      kristaps  463:                return(man_verr(m, ln, 0, "unknown macro: %s%s",
1.43      kristaps  464:                                buf, strlen(buf) > 3 ? "..." : ""));
                    465:        return(man_vwarn(m, ln, 0, "unknown macro: %s%s",
                    466:                                buf, strlen(buf) > 3 ? "..." : ""));
                    467: }
                    468:
                    469:
1.1       kristaps  470: int
                    471: man_pmacro(struct man *m, int ln, char *buf)
                    472: {
1.58      kristaps  473:        int              i, j, ppos;
1.53      kristaps  474:        enum mant        tok;
1.34      kristaps  475:        char             mac[5];
                    476:        struct man_node *n;
1.1       kristaps  477:
                    478:        /* Comments and empties are quickly ignored. */
                    479:
1.46      kristaps  480:        if ('\0' == buf[1])
                    481:                return(1);
1.1       kristaps  482:
1.9       kristaps  483:        i = 1;
                    484:
1.56      kristaps  485:        /*
                    486:         * Skip whitespace between the control character and initial
                    487:         * text.  "Whitespace" is both spaces and tabs.
                    488:         */
1.62      kristaps  489:
1.57      kristaps  490:        if (' ' == buf[i] || '\t' == buf[i]) {
1.9       kristaps  491:                i++;
1.56      kristaps  492:                while (buf[i] && (' ' == buf[i] || '\t' == buf[i]))
1.1       kristaps  493:                        i++;
1.48      kristaps  494:                if ('\0' == buf[i])
1.11      kristaps  495:                        goto out;
1.1       kristaps  496:        }
                    497:
1.10      kristaps  498:        ppos = i;
                    499:
1.1       kristaps  500:        /* Copy the first word into a nil-terminated buffer. */
                    501:
1.10      kristaps  502:        for (j = 0; j < 4; j++, i++) {
1.48      kristaps  503:                if ('\0' == (mac[j] = buf[i]))
1.1       kristaps  504:                        break;
1.10      kristaps  505:                else if (' ' == buf[i])
1.1       kristaps  506:                        break;
1.38      kristaps  507:
                    508:                /* Check for invalid characters. */
                    509:
                    510:                if (isgraph((u_char)buf[i]))
                    511:                        continue;
                    512:                return(man_perr(m, ln, i, WNPRINT));
1.1       kristaps  513:        }
                    514:
1.46      kristaps  515:        mac[j] = '\0';
1.1       kristaps  516:
1.9       kristaps  517:        if (j == 4 || j < 1) {
1.7       kristaps  518:                if ( ! (MAN_IGN_MACRO & m->pflags)) {
1.29      kristaps  519:                        (void)man_perr(m, ln, ppos, WMACROFORM);
1.7       kristaps  520:                        goto err;
                    521:                }
1.29      kristaps  522:                if ( ! man_pwarn(m, ln, ppos, WMACROFORM))
1.7       kristaps  523:                        goto err;
1.12      kristaps  524:                return(1);
1.7       kristaps  525:        }
1.1       kristaps  526:
1.53      kristaps  527:        if (MAN_MAX == (tok = man_hash_find(mac))) {
1.43      kristaps  528:                if ( ! macrowarn(m, ln, mac))
1.7       kristaps  529:                        goto err;
1.12      kristaps  530:                return(1);
1.1       kristaps  531:        }
                    532:
                    533:        /* The macro is sane.  Jump to the next word. */
                    534:
                    535:        while (buf[i] && ' ' == buf[i])
                    536:                i++;
                    537:
1.62      kristaps  538:        /*
                    539:         * Trailing whitespace.  Note that tabs are allowed to be passed
                    540:         * into the parser as "text", so we only warn about spaces here.
                    541:         */
1.48      kristaps  542:
                    543:        if ('\0' == buf[i] && ' ' == buf[i - 1])
                    544:                if ( ! man_pwarn(m, ln, i - 1, WTSPACE))
                    545:                        goto err;
                    546:
1.50      kristaps  547:        /*
1.51      kristaps  548:         * Remove prior ELINE macro, as it's being clobbering by a new
                    549:         * macro.  Note that NSCOPED macros do not close out ELINE
                    550:         * macros---they don't print text---so we let those slip by.
1.59      kristaps  551:         * NOTE: we don't allow roff blocks (NOCLOSE) to be embedded
                    552:         * here because that would stipulate blocks as children of
                    553:         * elements!
1.50      kristaps  554:         */
1.34      kristaps  555:
1.53      kristaps  556:        if ( ! (MAN_NSCOPED & man_macros[tok].flags) &&
1.51      kristaps  557:                        m->flags & MAN_ELINE) {
                    558:                assert(MAN_TEXT != m->last->type);
                    559:
                    560:                /*
                    561:                 * This occurs in the following construction:
                    562:                 *   .B
                    563:                 *   .br
                    564:                 *   .B
                    565:                 *   .br
                    566:                 *   I hate man macros.
                    567:                 * Flat-out disallow this madness.
                    568:                 */
                    569:                if (MAN_NSCOPED & man_macros[m->last->tok].flags)
                    570:                        return(man_perr(m, ln, ppos, WLNSCOPE));
                    571:
1.34      kristaps  572:                n = m->last;
1.51      kristaps  573:
                    574:                assert(n);
1.34      kristaps  575:                assert(NULL == n->child);
1.37      kristaps  576:                assert(0 == n->nchild);
1.51      kristaps  577:
1.34      kristaps  578:                if ( ! man_nwarn(m, n, WLNSCOPE))
                    579:                        return(0);
                    580:
1.54      kristaps  581:                man_node_delete(m, n);
1.34      kristaps  582:                m->flags &= ~MAN_ELINE;
                    583:        }
                    584:
1.59      kristaps  585:        /*
                    586:         * Save the fact that we're in the next-line for a block.  In
                    587:         * this way, embedded roff instructions can "remember" state
                    588:         * when they exit.
                    589:         */
                    590:
                    591:        if (MAN_BLINE & m->flags)
                    592:                m->flags |= MAN_BPLINE;
                    593:
                    594:        /* Call to handler... */
1.1       kristaps  595:
1.53      kristaps  596:        assert(man_macros[tok].fp);
                    597:        if ( ! (*man_macros[tok].fp)(m, tok, ln, ppos, &i, buf))
1.1       kristaps  598:                goto err;
                    599:
1.11      kristaps  600: out:
1.50      kristaps  601:        /*
                    602:         * We weren't in a block-line scope when entering the
                    603:         * above-parsed macro, so return.
                    604:         */
                    605:
1.58      kristaps  606:        if ( ! (MAN_BPLINE & m->flags)) {
1.50      kristaps  607:                m->flags &= ~MAN_ILINE;
1.29      kristaps  608:                return(1);
1.50      kristaps  609:        }
1.58      kristaps  610:        m->flags &= ~MAN_BPLINE;
1.50      kristaps  611:
                    612:        /*
                    613:         * If we're in a block scope, then allow this macro to slip by
                    614:         * without closing scope around it.
                    615:         */
                    616:
                    617:        if (MAN_ILINE & m->flags) {
                    618:                m->flags &= ~MAN_ILINE;
                    619:                return(1);
                    620:        }
1.29      kristaps  621:
                    622:        /*
                    623:         * If we've opened a new next-line element scope, then return
                    624:         * now, as the next line will close out the block scope.
                    625:         */
                    626:
                    627:        if (MAN_ELINE & m->flags)
                    628:                return(1);
                    629:
                    630:        /* Close out the block scope opened in the prior line.  */
1.11      kristaps  631:
1.29      kristaps  632:        assert(MAN_BLINE & m->flags);
                    633:        m->flags &= ~MAN_BLINE;
1.11      kristaps  634:
1.55      kristaps  635:        if ( ! man_unscope(m, m->last->parent, WERRMAX))
1.29      kristaps  636:                return(0);
                    637:        return(man_body_alloc(m, ln, 0, m->last->tok));
1.1       kristaps  638:
                    639: err:   /* Error out. */
                    640:
1.2       kristaps  641:        m->flags |= MAN_HALT;
1.1       kristaps  642:        return(0);
                    643: }
1.3       kristaps  644:
1.4       kristaps  645:
                    646: int
                    647: man_verr(struct man *man, int ln, int pos, const char *fmt, ...)
                    648: {
                    649:        char             buf[256];
                    650:        va_list          ap;
                    651:
                    652:        if (NULL == man->cb.man_err)
                    653:                return(0);
                    654:
                    655:        va_start(ap, fmt);
                    656:        (void)vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
                    657:        va_end(ap);
                    658:        return((*man->cb.man_err)(man->data, ln, pos, buf));
                    659: }
                    660:
                    661:
                    662: int
                    663: man_vwarn(struct man *man, int ln, int pos, const char *fmt, ...)
                    664: {
                    665:        char             buf[256];
                    666:        va_list          ap;
                    667:
                    668:        if (NULL == man->cb.man_warn)
                    669:                return(0);
                    670:
                    671:        va_start(ap, fmt);
                    672:        (void)vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
                    673:        va_end(ap);
                    674:        return((*man->cb.man_warn)(man->data, ln, pos, buf));
                    675: }
                    676:
                    677:
1.23      kristaps  678: int
1.27      kristaps  679: man_err(struct man *m, int line, int pos, int iserr, enum merr type)
1.23      kristaps  680: {
                    681:        const char       *p;
                    682:
1.27      kristaps  683:        p = __man_merrnames[(int)type];
1.23      kristaps  684:        assert(p);
                    685:
                    686:        if (iserr)
                    687:                return(man_verr(m, line, pos, p));
                    688:
                    689:        return(man_vwarn(m, line, pos, p));
1.51      kristaps  690: }
                    691:
                    692:
1.54      kristaps  693: /*
                    694:  * Unlink a node from its context.  If "m" is provided, the last parse
                    695:  * point will also be adjusted accordingly.
                    696:  */
                    697: static void
1.51      kristaps  698: man_node_unlink(struct man *m, struct man_node *n)
                    699: {
                    700:
1.54      kristaps  701:        /* Adjust siblings. */
                    702:
                    703:        if (n->prev)
1.51      kristaps  704:                n->prev->next = n->next;
1.54      kristaps  705:        if (n->next)
                    706:                n->next->prev = n->prev;
                    707:
                    708:        /* Adjust parent. */
                    709:
                    710:        if (n->parent) {
                    711:                n->parent->nchild--;
                    712:                if (n->parent->child == n)
                    713:                        n->parent->child = n->prev ? n->prev : n->next;
                    714:        }
                    715:
                    716:        /* Adjust parse point, if applicable. */
                    717:
                    718:        if (m && m->last == n) {
                    719:                /*XXX: this can occur when bailing from validation. */
                    720:                /*assert(NULL == n->next);*/
                    721:                if (n->prev) {
1.51      kristaps  722:                        m->last = n->prev;
                    723:                        m->next = MAN_NEXT_SIBLING;
1.54      kristaps  724:                } else {
1.51      kristaps  725:                        m->last = n->parent;
                    726:                        m->next = MAN_NEXT_CHILD;
                    727:                }
                    728:        }
                    729:
1.54      kristaps  730:        if (m && m->first == n)
                    731:                m->first = NULL;
1.23      kristaps  732: }

CVSweb