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

Annotation of mandoc/mdocterm.c, Revision 1.9

1.9     ! kristaps    1:        /* $Id: mdocterm.c,v 1.8 2009/02/24 14:52:55 kristaps Exp $ */
1.1       kristaps    2: /*
                      3:  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
                      4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
                      6:  * purpose with or without fee is hereby granted, provided that the
                      7:  * above copyright notice and this permission notice appear in all
                      8:  * copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
                     11:  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
                     12:  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
                     13:  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
                     14:  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
                     15:  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
                     16:  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
                     17:  * PERFORMANCE OF THIS SOFTWARE.
                     18:  */
                     19: #include <assert.h>
1.3       kristaps   20: #include <ctype.h>
1.1       kristaps   21: #include <err.h>
                     22: #include <getopt.h>
1.3       kristaps   23: #include <stdio.h>
1.1       kristaps   24: #include <stdlib.h>
1.3       kristaps   25: #include <string.h>
1.1       kristaps   26:
1.7       kristaps   27: #ifndef __OpenBSD__
1.5       kristaps   28: #include <time.h>
                     29: #endif
                     30:
1.2       kristaps   31: #include "mmain.h"
1.1       kristaps   32: #include "term.h"
                     33:
1.7       kristaps   34: #ifdef __NetBSD__
                     35: #define xisspace(x) isspace((int)(x))
                     36: #else
                     37: #define        xisspace(x) isspace((x))
                     38: #endif
                     39:
1.3       kristaps   40: enum   termstyle {
                     41:        STYLE_CLEAR,
                     42:        STYLE_BOLD,
                     43:        STYLE_UNDERLINE
                     44: };
                     45:
                     46: static void              body(struct termp *,
                     47:                                const struct mdoc_meta *,
                     48:                                const struct mdoc_node *);
                     49: static void              header(struct termp *,
                     50:                                const struct mdoc_meta *);
                     51: static void              footer(struct termp *,
                     52:                                const struct mdoc_meta *);
                     53:
                     54: static void              pword(struct termp *, const char *, size_t);
                     55: static void              pescape(struct termp *,
                     56:                                const char *, size_t *, size_t);
                     57: static void              chara(struct termp *, char);
1.4       kristaps   58: static void              stringa(struct termp *, const char *);
1.3       kristaps   59: static void              style(struct termp *, enum termstyle);
                     60:
                     61: #ifdef __linux__
                     62: extern size_t            strlcat(char *, const char *, size_t);
                     63: extern size_t            strlcpy(char *, const char *, size_t);
                     64: #endif
                     65:
                     66:
1.1       kristaps   67: int
                     68: main(int argc, char *argv[])
                     69: {
1.2       kristaps   70:        struct mmain    *p;
                     71:        const struct mdoc *mdoc;
1.3       kristaps   72:        struct termp     termp;
1.2       kristaps   73:
                     74:        p = mmain_alloc();
1.1       kristaps   75:
1.3       kristaps   76:        if ( ! mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL))
1.2       kristaps   77:                mmain_exit(p, 1);
1.1       kristaps   78:
1.3       kristaps   79:        if (NULL == (mdoc = mmain_mdoc(p)))
                     80:                mmain_exit(p, 1);
                     81:
                     82:        termp.maxrmargin = 80; /* XXX */
                     83:        termp.rmargin = termp.maxrmargin;
                     84:        termp.maxcols = 1024;
                     85:        termp.offset = termp.col = 0;
                     86:        termp.flags = TERMP_NOSPACE;
                     87:
                     88:        if (NULL == (termp.buf = malloc(termp.maxcols)))
                     89:                err(1, "malloc");
                     90:
                     91:        header(&termp, mdoc_meta(mdoc));
                     92:        body(&termp, mdoc_meta(mdoc), mdoc_node(mdoc));
                     93:        footer(&termp, mdoc_meta(mdoc));
                     94:
                     95:        free(termp.buf);
                     96:
                     97:        mmain_exit(p, 0);
                     98:        /* NOTREACHED */
                     99: }
                    100:
                    101:
                    102: void
                    103: flushln(struct termp *p)
                    104: {
                    105:        size_t           i, j, vsz, vis, maxvis;
                    106:
                    107:        /*
                    108:         * First, establish the maximum columns of "visible" content.
                    109:         * This is usually the difference between the right-margin and
                    110:         * an indentation, but can be, for tagged lists or columns, a
                    111:         * small set of values.
                    112:         */
                    113:
                    114:        assert(p->offset < p->rmargin);
                    115:        maxvis = p->rmargin - p->offset;
                    116:        vis = 0;
                    117:
                    118:        /*
                    119:         * If in the standard case (left-justified), then begin with our
                    120:         * indentation, otherwise (columns, etc.) just start spitting
                    121:         * out text.
                    122:         */
                    123:
                    124:        if ( ! (p->flags & TERMP_NOLPAD))
                    125:                /* LINTED */
                    126:                for (j = 0; j < p->offset; j++)
                    127:                        putchar(' ');
                    128:
                    129:        /*
                    130:         * If we're literal, print out verbatim.
                    131:         */
                    132:        if (p->flags & TERMP_LITERAL) {
                    133:                /* FIXME: count non-printing chars. */
                    134:                for (i = 0; i < p->col; i++)
                    135:                        putchar(p->buf[i]);
                    136:                putchar('\n');
                    137:                p->col = 0;
                    138:                return;
                    139:        }
                    140:
                    141:        for (i = 0; i < p->col; i++) {
                    142:                /*
                    143:                 * Count up visible word characters.  Control sequences
                    144:                 * (starting with the CSI) aren't counted.
                    145:                 */
1.7       kristaps  146:                assert( ! xisspace(p->buf[i]));
1.3       kristaps  147:
                    148:                /* LINTED */
                    149:                for (j = i, vsz = 0; j < p->col; j++) {
1.7       kristaps  150:                        if (xisspace(p->buf[j]))
1.3       kristaps  151:                                break;
                    152:                        else if (27 == p->buf[j]) {
                    153:                                assert(j + 4 <= p->col);
                    154:                                j += 3;
                    155:                        } else
                    156:                                vsz++;
                    157:                }
                    158:                assert(vsz > 0);
                    159:
                    160:                /*
                    161:                 * If a word is too long and we're within a line, put it
                    162:                 * on the next line.  Puke if we're being asked to write
                    163:                 * something that will exceed the right margin (i.e.,
                    164:                 * from a fresh line or when we're not allowed to break
                    165:                 * the line with TERMP_NOBREAK).
                    166:                 */
                    167:
                    168:                if (vis && vis + vsz >= maxvis) {
                    169:                        /* FIXME */
                    170:                        if (p->flags & TERMP_NOBREAK)
                    171:                                errx(1, "word breaks right margin");
                    172:                        putchar('\n');
                    173:                        for (j = 0; j < p->offset; j++)
                    174:                                putchar(' ');
                    175:                        vis = 0;
1.6       kristaps  176:                } else if (vis + vsz >= maxvis)
1.3       kristaps  177:                        /* FIXME */
                    178:                        errx(1, "word breaks right margin");
                    179:
                    180:                /*
                    181:                 * Write out the word and a trailing space.  Omit the
                    182:                 * space if we're the last word in the line.
                    183:                 */
                    184:
                    185:                for ( ; i < p->col; i++) {
1.7       kristaps  186:                        if (xisspace(p->buf[i]))
1.3       kristaps  187:                                break;
                    188:                        putchar(p->buf[i]);
                    189:                }
                    190:                vis += vsz;
                    191:                if (i < p->col) {
                    192:                        putchar(' ');
                    193:                        vis++;
                    194:                }
                    195:        }
                    196:
                    197:        /*
                    198:         * If we're not to right-marginalise it (newline), then instead
                    199:         * pad to the right margin and stay off.
                    200:         */
                    201:
                    202:        if (p->flags & TERMP_NOBREAK) {
                    203:                for ( ; vis <= maxvis; vis++)
                    204:                        putchar(' ');
                    205:        } else
                    206:                putchar('\n');
                    207:
                    208:        p->col = 0;
                    209: }
                    210:
                    211:
                    212: void
                    213: newln(struct termp *p)
                    214: {
1.1       kristaps  215:
1.3       kristaps  216:        /*
                    217:         * A newline only breaks an existing line; it won't assert
                    218:         * vertical space.
                    219:         */
                    220:        p->flags |= TERMP_NOSPACE;
                    221:        if (0 == p->col)
                    222:                return;
                    223:        flushln(p);
                    224: }
                    225:
                    226:
                    227: void
                    228: vspace(struct termp *p)
                    229: {
                    230:
                    231:        /*
                    232:         * Asserts a vertical space (a full, empty line-break between
                    233:         * lines).
                    234:         */
                    235:        newln(p);
                    236:        putchar('\n');
                    237: }
                    238:
                    239:
                    240: static void
1.4       kristaps  241: stringa(struct termp *p, const char *s)
                    242: {
                    243:
                    244:        /* XXX - speed up if not passing to chara. */
                    245:        for ( ; *s; s++)
                    246:                chara(p, *s);
                    247: }
                    248:
                    249:
                    250: static void
1.3       kristaps  251: chara(struct termp *p, char c)
                    252: {
                    253:
                    254:        /* TODO: dynamically expand the buffer. */
                    255:        if (p->col + 1 >= p->maxcols)
                    256:                errx(1, "line overrun");
                    257:        p->buf[(p->col)++] = c;
                    258: }
                    259:
                    260:
                    261: static void
                    262: style(struct termp *p, enum termstyle esc)
                    263: {
                    264:
                    265:        if (p->col + 4 >= p->maxcols)
                    266:                errx(1, "line overrun");
                    267:
                    268:        p->buf[(p->col)++] = 27;
                    269:        p->buf[(p->col)++] = '[';
                    270:        switch (esc) {
                    271:        case (STYLE_CLEAR):
                    272:                p->buf[(p->col)++] = '0';
                    273:                break;
                    274:        case (STYLE_BOLD):
                    275:                p->buf[(p->col)++] = '1';
                    276:                break;
                    277:        case (STYLE_UNDERLINE):
                    278:                p->buf[(p->col)++] = '4';
                    279:                break;
                    280:        default:
                    281:                abort();
                    282:                /* NOTREACHED */
                    283:        }
                    284:        p->buf[(p->col)++] = 'm';
                    285: }
                    286:
                    287:
                    288: static void
                    289: pescape(struct termp *p, const char *word, size_t *i, size_t len)
                    290: {
                    291:
                    292:        (*i)++;
                    293:        assert(*i < len);
                    294:
                    295:        if ('(' == word[*i]) {
                    296:                /* Two-character escapes. */
                    297:                (*i)++;
                    298:                assert(*i + 1 < len);
                    299:
                    300:                if ('r' == word[*i] && 'B' == word[*i + 1])
                    301:                        chara(p, ']');
                    302:                else if ('l' == word[*i] && 'B' == word[*i + 1])
                    303:                        chara(p, '[');
1.4       kristaps  304:                else if ('<' == word[*i] && '-' == word[*i + 1])
                    305:                        stringa(p, "<-");
                    306:                else if ('-' == word[*i] && '>' == word[*i + 1])
                    307:                        stringa(p, "->");
1.8       kristaps  308:                else if ('l' == word[*i] && 'q' == word[*i + 1])
                    309:                        chara(p, '\"');
                    310:                else if ('r' == word[*i] && 'q' == word[*i + 1])
                    311:                        chara(p, '\"');
1.3       kristaps  312:
                    313:                (*i)++;
                    314:                return;
                    315:
                    316:        } else if ('[' != word[*i]) {
                    317:                /* One-character escapes. */
                    318:                switch (word[*i]) {
                    319:                case ('\\'):
                    320:                        /* FALLTHROUGH */
                    321:                case ('\''):
                    322:                        /* FALLTHROUGH */
                    323:                case ('`'):
                    324:                        /* FALLTHROUGH */
                    325:                case ('-'):
                    326:                        /* FALLTHROUGH */
                    327:                case ('.'):
                    328:                        chara(p, word[*i]);
1.1       kristaps  329:                default:
1.3       kristaps  330:                        break;
                    331:                }
                    332:                return;
                    333:        }
                    334:        /* n-character escapes. */
                    335: }
                    336:
                    337:
                    338: static void
                    339: pword(struct termp *p, const char *word, size_t len)
                    340: {
                    341:        size_t           i;
                    342:
                    343:        /*assert(len > 0);*/ /* Can be, if literal. */
                    344:
                    345:        if ( ! (p->flags & TERMP_NOSPACE) &&
                    346:                        ! (p->flags & TERMP_LITERAL))
                    347:                chara(p, ' ');
                    348:
                    349:        p->flags &= ~TERMP_NOSPACE;
                    350:
                    351:        if (p->flags & TERMP_BOLD)
                    352:                style(p, STYLE_BOLD);
                    353:        if (p->flags & TERMP_UNDERLINE)
                    354:                style(p, STYLE_UNDERLINE);
                    355:
                    356:        for (i = 0; i < len; i++) {
                    357:                if ('\\' == word[i]) {
                    358:                        pescape(p, word, &i, len);
                    359:                        continue;
                    360:                }
                    361:                chara(p, word[i]);
                    362:        }
                    363:
                    364:        if (p->flags & TERMP_BOLD ||
                    365:                        p->flags & TERMP_UNDERLINE)
                    366:                style(p, STYLE_CLEAR);
                    367: }
                    368:
                    369:
                    370: void
                    371: word(struct termp *p, const char *word)
                    372: {
                    373:        size_t           i, j, len;
                    374:
                    375:        if (p->flags & TERMP_LITERAL) {
                    376:                pword(p, word, strlen(word));
                    377:                return;
                    378:        }
                    379:
                    380:        len = strlen(word);
                    381:        assert(len > 0);
                    382:
                    383:        if (mdoc_isdelim(word)) {
                    384:                if ( ! (p->flags & TERMP_IGNDELIM))
                    385:                        p->flags |= TERMP_NOSPACE;
                    386:                p->flags &= ~TERMP_IGNDELIM;
                    387:        }
                    388:
                    389:        /* LINTED */
                    390:        for (j = i = 0; i < len; i++) {
1.7       kristaps  391:                if ( ! xisspace(word[i])) {
1.3       kristaps  392:                        j++;
                    393:                        continue;
1.1       kristaps  394:                }
1.3       kristaps  395:                if (0 == j)
                    396:                        continue;
                    397:                assert(i >= j);
                    398:                pword(p, &word[i - j], j);
                    399:                j = 0;
                    400:        }
                    401:        if (j > 0) {
                    402:                assert(i >= j);
                    403:                pword(p, &word[i - j], j);
                    404:        }
                    405: }
                    406:
                    407:
                    408: static void
                    409: body(struct termp *p, const struct mdoc_meta *meta,
                    410:                const struct mdoc_node *node)
                    411: {
                    412:        int              dochild;
1.9     ! kristaps  413:        struct termpair  pair;
1.3       kristaps  414:
                    415:        /* Pre-processing. */
                    416:
                    417:        dochild = 1;
1.9     ! kristaps  418:        pair.type = 0;
1.3       kristaps  419:
                    420:        if (MDOC_TEXT != node->type) {
                    421:                if (termacts[node->tok].pre)
1.9     ! kristaps  422:                        if ( ! (*termacts[node->tok].pre)(p, &pair, meta, node))
1.3       kristaps  423:                                dochild = 0;
                    424:        } else /* MDOC_TEXT == node->type */
                    425:                word(p, node->data.text.string);
                    426:
                    427:        /* Children. */
                    428:
1.9     ! kristaps  429:        switch (pair.type) {
        !           430:        case (TERMPAIR_FLAG):
        !           431:                p->flags |= pair.data.flag;
        !           432:                break;
        !           433:        default:
        !           434:                break;
        !           435:        }
        !           436:
1.3       kristaps  437:        if (dochild && node->child)
                    438:                body(p, meta, node->child);
                    439:
1.9     ! kristaps  440:        switch (pair.type) {
        !           441:        case (TERMPAIR_FLAG):
        !           442:                p->flags &= ~pair.data.flag;
        !           443:                break;
        !           444:        default:
        !           445:                break;
        !           446:        }
        !           447:
1.3       kristaps  448:        /* Post-processing. */
                    449:
                    450:        if (MDOC_TEXT != node->type)
                    451:                if (termacts[node->tok].post)
1.9     ! kristaps  452:                        (*termacts[node->tok].post)(p, &pair, meta, node);
1.3       kristaps  453:
                    454:        /* Siblings. */
1.1       kristaps  455:
1.3       kristaps  456:        if (node->next)
                    457:                body(p, meta, node->next);
                    458: }
                    459:
                    460:
                    461: static void
                    462: footer(struct termp *p, const struct mdoc_meta *meta)
                    463: {
                    464:        struct tm       *tm;
                    465:        char            *buf, *os;
                    466:        size_t           sz, osz, ssz, i;
                    467:
                    468:        if (NULL == (buf = malloc(p->rmargin)))
                    469:                err(1, "malloc");
                    470:        if (NULL == (os = malloc(p->rmargin)))
                    471:                err(1, "malloc");
                    472:
                    473:        tm = localtime(&meta->date);
                    474:
1.7       kristaps  475: #ifdef __OpenBSD__
                    476:        if (NULL == strftime(buf, p->rmargin, "%B %d, %Y", tm))
                    477: #else
1.3       kristaps  478:        if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))
                    479: #endif
                    480:                err(1, "strftime");
                    481:
                    482:        osz = strlcpy(os, meta->os, p->rmargin);
                    483:
                    484:        sz = strlen(buf);
                    485:        ssz = sz + osz + 1;
                    486:
                    487:        if (ssz > p->rmargin) {
                    488:                ssz -= p->rmargin;
                    489:                assert(ssz <= osz);
                    490:                os[osz - ssz] = 0;
                    491:                ssz = 1;
                    492:        } else
                    493:                ssz = p->rmargin - ssz + 1;
                    494:
                    495:        printf("\n");
                    496:        printf("%s", os);
                    497:        for (i = 0; i < ssz; i++)
                    498:                printf(" ");
                    499:
                    500:        printf("%s\n", buf);
                    501:        fflush(stdout);
1.1       kristaps  502:
1.3       kristaps  503:        free(buf);
                    504:        free(os);
1.1       kristaps  505: }
                    506:
                    507:
1.3       kristaps  508: static void
                    509: header(struct termp *p, const struct mdoc_meta *meta)
                    510: {
                    511:        char            *buf, *title;
                    512:        const char      *pp, *msec;
                    513:        size_t           ssz, tsz, ttsz, i;;
                    514:
                    515:        if (NULL == (buf = malloc(p->rmargin)))
                    516:                err(1, "malloc");
                    517:        if (NULL == (title = malloc(p->rmargin)))
                    518:                err(1, "malloc");
                    519:
                    520:        if (NULL == (pp = mdoc_vol2a(meta->vol)))
                    521:                switch (meta->msec) {
                    522:                case (MSEC_1):
                    523:                        /* FALLTHROUGH */
                    524:                case (MSEC_6):
                    525:                        /* FALLTHROUGH */
                    526:                case (MSEC_7):
                    527:                        pp = mdoc_vol2a(VOL_URM);
                    528:                        break;
                    529:                case (MSEC_8):
                    530:                        pp = mdoc_vol2a(VOL_SMM);
                    531:                        break;
                    532:                case (MSEC_2):
                    533:                        /* FALLTHROUGH */
                    534:                case (MSEC_3):
                    535:                        /* FALLTHROUGH */
                    536:                case (MSEC_4):
                    537:                        /* FALLTHROUGH */
                    538:                case (MSEC_5):
                    539:                        pp = mdoc_vol2a(VOL_PRM);
                    540:                        break;
                    541:                case (MSEC_9):
                    542:                        pp = mdoc_vol2a(VOL_KM);
                    543:                        break;
                    544:                default:
                    545:                        /* FIXME: capitalise. */
                    546:                        if (NULL == (pp = mdoc_msec2a(meta->msec)))
                    547:                                pp = mdoc_msec2a(MSEC_local);
                    548:                        break;
                    549:                }
                    550:        assert(pp);
                    551:
                    552:        tsz = strlcpy(buf, pp, p->rmargin);
                    553:        assert(tsz < p->rmargin);
                    554:
                    555:        if ((pp = mdoc_arch2a(meta->arch))) {
                    556:                tsz = strlcat(buf, " (", p->rmargin);
                    557:                assert(tsz < p->rmargin);
                    558:                tsz = strlcat(buf, pp, p->rmargin);
                    559:                assert(tsz < p->rmargin);
                    560:                tsz = strlcat(buf, ")", p->rmargin);
                    561:                assert(tsz < p->rmargin);
                    562:        }
                    563:
                    564:        ttsz = strlcpy(title, meta->title, p->rmargin);
                    565:
                    566:        if (NULL == (msec = mdoc_msec2a(meta->msec)))
                    567:                msec = "";
                    568:
                    569:        ssz = (2 * (ttsz + 2 + strlen(msec))) + tsz + 2;
                    570:
                    571:        if (ssz > p->rmargin) {
                    572:                if ((ssz -= p->rmargin) % 2)
                    573:                        ssz++;
                    574:                ssz /= 2;
                    575:
                    576:                assert(ssz <= ttsz);
                    577:                title[ttsz - ssz] = 0;
                    578:                ssz = 1;
                    579:        } else
                    580:                ssz = ((p->rmargin - ssz) / 2) + 1;
                    581:
                    582:        printf("%s(%s)", title, msec);
                    583:
                    584:        for (i = 0; i < ssz; i++)
                    585:                printf(" ");
                    586:
                    587:        printf("%s", buf);
                    588:
                    589:        for (i = 0; i < ssz; i++)
                    590:                printf(" ");
                    591:
                    592:        printf("%s(%s)\n", title, msec);
                    593:        fflush(stdout);
                    594:
                    595:        free(title);
                    596:        free(buf);
                    597: }

CVSweb