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

Annotation of mandoc/term.c, Revision 1.205

1.205   ! schwarze    1: /*     $Id: term.c,v 1.204 2012/07/10 15:35:41 schwarze Exp $ */
1.1       kristaps    2: /*
1.198     schwarze    3:  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
1.202     schwarze    4:  * Copyright (c) 2010, 2011, 2012 Ingo Schwarze <schwarze@openbsd.org>
1.1       kristaps    5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
1.74      kristaps    7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    9:  *
1.74      kristaps   10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   17:  */
1.128     kristaps   18: #ifdef HAVE_CONFIG_H
                     19: #include "config.h"
                     20: #endif
                     21:
1.126     kristaps   22: #include <sys/types.h>
                     23:
1.1       kristaps   24: #include <assert.h>
1.122     kristaps   25: #include <ctype.h>
1.141     kristaps   26: #include <stdint.h>
1.22      kristaps   27: #include <stdio.h>
1.1       kristaps   28: #include <stdlib.h>
                     29: #include <string.h>
                     30:
1.137     kristaps   31: #include "mandoc.h"
1.107     kristaps   32: #include "out.h"
1.71      kristaps   33: #include "term.h"
1.105     kristaps   34: #include "main.h"
1.1       kristaps   35:
1.203     schwarze   36: static size_t           cond_width(const struct termp *, int, int *);
1.191     kristaps   37: static void             adjbuf(struct termp *p, int);
                     38: static void             bufferc(struct termp *, char);
                     39: static void             encode(struct termp *, const char *, size_t);
1.194     kristaps   40: static void             encode1(struct termp *, int);
1.11      kristaps   41:
1.145     kristaps   42: void
1.71      kristaps   43: term_free(struct termp *p)
1.14      kristaps   44: {
                     45:
1.71      kristaps   46:        if (p->buf)
                     47:                free(p->buf);
1.102     kristaps   48:        if (p->symtab)
1.185     kristaps   49:                mchars_free(p->symtab);
1.145     kristaps   50:
1.142     kristaps   51:        free(p);
                     52: }
                     53:
                     54:
                     55: void
                     56: term_begin(struct termp *p, term_margin head,
                     57:                term_margin foot, const void *arg)
                     58: {
                     59:
                     60:        p->headf = head;
                     61:        p->footf = foot;
                     62:        p->argf = arg;
1.146     kristaps   63:        (*p->begin)(p);
1.142     kristaps   64: }
                     65:
                     66:
                     67: void
                     68: term_end(struct termp *p)
                     69: {
                     70:
1.146     kristaps   71:        (*p->end)(p);
1.14      kristaps   72: }
                     73:
1.71      kristaps   74: /*
                     75:  * Flush a line of text.  A "line" is loosely defined as being something
                     76:  * that should be followed by a newline, regardless of whether it's
                     77:  * broken apart by newlines getting there.  A line can also be a
1.130     kristaps   78:  * fragment of a columnar list (`Bl -tag' or `Bl -column'), which does
                     79:  * not have a trailing newline.
1.71      kristaps   80:  *
1.130     kristaps   81:  * The following flags may be specified:
1.71      kristaps   82:  *
                     83:  *  - TERMP_NOBREAK: this is the most important and is used when making
1.200     schwarze   84:  *    columns.  In short: don't print a newline and instead expect the
                     85:  *    next call to do the padding up to the start of the next column.
1.71      kristaps   86:  *
1.200     schwarze   87:  *  - TERMP_TWOSPACE: make sure there is room for at least two space
                     88:  *    characters of padding.  Otherwise, rather break the line.
1.91      kristaps   89:  *
1.84      kristaps   90:  *  - TERMP_DANGLE: don't newline when TERMP_NOBREAK is specified and
                     91:  *    the line is overrun, and don't pad-right if it's underrun.
                     92:  *
                     93:  *  - TERMP_HANG: like TERMP_DANGLE, but doesn't newline when
1.200     schwarze   94:  *    overrunning, instead save the position and continue at that point
1.84      kristaps   95:  *    when the next invocation.
1.71      kristaps   96:  *
                     97:  *  In-line line breaking:
                     98:  *
                     99:  *  If TERMP_NOBREAK is specified and the line overruns the right
                    100:  *  margin, it will break and pad-right to the right margin after
                    101:  *  writing.  If maxrmargin is violated, it will break and continue
1.114     kristaps  102:  *  writing from the right-margin, which will lead to the above scenario
                    103:  *  upon exit.  Otherwise, the line will break at the right margin.
1.71      kristaps  104:  */
                    105: void
                    106: term_flushln(struct termp *p)
1.53      kristaps  107: {
1.114     kristaps  108:        int              i;     /* current input position in p->buf */
1.205   ! schwarze  109:        int              ntab;  /* number of tabs to prepend */
1.114     kristaps  110:        size_t           vis;   /* current visual position on output */
                    111:        size_t           vbl;   /* number of blanks to prepend to output */
1.136     schwarze  112:        size_t           vend;  /* end of word visual position on output */
1.114     kristaps  113:        size_t           bp;    /* visual right border position */
1.172     schwarze  114:        size_t           dv;    /* temporary for visual pos calculations */
1.152     kristaps  115:        int              j;     /* temporary loop index for p->buf */
                    116:        int              jhy;   /* last hyph before overflow w/r/t j */
                    117:        size_t           maxvis; /* output position of visible boundary */
                    118:        size_t           mmax; /* used in calculating bp */
1.53      kristaps  119:
1.71      kristaps  120:        /*
                    121:         * First, establish the maximum columns of "visible" content.
                    122:         * This is usually the difference between the right-margin and
                    123:         * an indentation, but can be, for tagged lists or columns, a
1.115     kristaps  124:         * small set of values.
1.71      kristaps  125:         */
1.175     kristaps  126:        assert  (p->rmargin >= p->offset);
1.174     schwarze  127:        dv     = p->rmargin - p->offset;
                    128:        maxvis = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0;
                    129:        dv     = p->maxrmargin - p->offset;
                    130:        mmax   = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0;
1.92      kristaps  131:
1.71      kristaps  132:        bp = TERMP_NOBREAK & p->flags ? mmax : maxvis;
1.115     kristaps  133:
1.136     schwarze  134:        /*
1.200     schwarze  135:         * Calculate the required amount of padding.
1.136     schwarze  136:         */
1.200     schwarze  137:        vbl = p->offset + p->overstep > p->viscol ?
                    138:              p->offset + p->overstep - p->viscol : 0;
1.136     schwarze  139:
1.174     schwarze  140:        vis = vend = 0;
                    141:        i = 0;
1.115     kristaps  142:
1.188     kristaps  143:        while (i < p->col) {
1.71      kristaps  144:                /*
1.154     kristaps  145:                 * Handle literal tab characters: collapse all
                    146:                 * subsequent tabs into a single huge set of spaces.
1.138     schwarze  147:                 */
1.205   ! schwarze  148:                ntab = 0;
1.188     kristaps  149:                while (i < p->col && '\t' == p->buf[i]) {
1.154     kristaps  150:                        vend = (vis / p->tabwidth + 1) * p->tabwidth;
1.138     schwarze  151:                        vbl += vend - vis;
                    152:                        vis = vend;
1.205   ! schwarze  153:                        ntab++;
1.169     schwarze  154:                        i++;
1.138     schwarze  155:                }
                    156:
                    157:                /*
1.71      kristaps  158:                 * Count up visible word characters.  Control sequences
                    159:                 * (starting with the CSI) aren't counted.  A space
                    160:                 * generates a non-printing word, which is valid (the
                    161:                 * space is printed according to regular spacing rules).
                    162:                 */
                    163:
1.188     kristaps  164:                for (j = i, jhy = 0; j < p->col; j++) {
1.138     schwarze  165:                        if ((j && ' ' == p->buf[j]) || '\t' == p->buf[j])
1.71      kristaps  166:                                break;
1.154     kristaps  167:
                    168:                        /* Back over the the last printed character. */
                    169:                        if (8 == p->buf[j]) {
1.153     kristaps  170:                                assert(j);
                    171:                                vend -= (*p->width)(p, p->buf[j - 1]);
1.154     kristaps  172:                                continue;
1.153     kristaps  173:                        }
1.154     kristaps  174:
                    175:                        /* Regular word. */
                    176:                        /* Break at the hyphen point if we overrun. */
                    177:                        if (vend > vis && vend < bp &&
                    178:                                        ASCII_HYPH == p->buf[j])
                    179:                                jhy = j;
                    180:
                    181:                        vend += (*p->width)(p, p->buf[j]);
1.71      kristaps  182:                }
1.53      kristaps  183:
1.71      kristaps  184:                /*
1.81      kristaps  185:                 * Find out whether we would exceed the right margin.
1.136     schwarze  186:                 * If so, break to the next line.
1.81      kristaps  187:                 */
1.140     kristaps  188:                if (vend > bp && 0 == jhy && vis > 0) {
1.136     schwarze  189:                        vend -= vis;
1.146     kristaps  190:                        (*p->endline)(p);
1.201     schwarze  191:                        p->viscol = 0;
1.81      kristaps  192:                        if (TERMP_NOBREAK & p->flags) {
1.201     schwarze  193:                                vbl = p->rmargin;
1.136     schwarze  194:                                vend += p->rmargin - p->offset;
1.201     schwarze  195:                        } else
1.136     schwarze  196:                                vbl = p->offset;
1.205   ! schwarze  197:
        !           198:                        /* use pending tabs on the new line */
        !           199:
        !           200:                        if (0 < ntab)
        !           201:                                vbl += ntab * p->tabwidth;
1.130     kristaps  202:
1.129     kristaps  203:                        /* Remove the p->overstep width. */
1.130     kristaps  204:
1.174     schwarze  205:                        bp += (size_t)p->overstep;
1.129     kristaps  206:                        p->overstep = 0;
1.71      kristaps  207:                }
1.138     schwarze  208:
1.130     kristaps  209:                /* Write out the [remaining] word. */
1.188     kristaps  210:                for ( ; i < p->col; i++) {
1.140     kristaps  211:                        if (vend > bp && jhy > 0 && i > jhy)
                    212:                                break;
1.138     schwarze  213:                        if ('\t' == p->buf[i])
                    214:                                break;
1.136     schwarze  215:                        if (' ' == p->buf[i]) {
1.164     kristaps  216:                                j = i;
                    217:                                while (' ' == p->buf[i])
1.136     schwarze  218:                                        i++;
1.174     schwarze  219:                                dv = (size_t)(i - j) * (*p->width)(p, ' ');
1.172     schwarze  220:                                vbl += dv;
                    221:                                vend += dv;
1.71      kristaps  222:                                break;
1.136     schwarze  223:                        }
                    224:                        if (ASCII_NBRSP == p->buf[i]) {
1.153     kristaps  225:                                vbl += (*p->width)(p, ' ');
1.136     schwarze  226:                                continue;
                    227:                        }
1.130     kristaps  228:
1.136     schwarze  229:                        /*
                    230:                         * Now we definitely know there will be
                    231:                         * printable characters to output,
                    232:                         * so write preceding white space now.
                    233:                         */
                    234:                        if (vbl) {
1.146     kristaps  235:                                (*p->advance)(p, vbl);
1.139     schwarze  236:                                p->viscol += vbl;
1.136     schwarze  237:                                vbl = 0;
                    238:                        }
1.140     kristaps  239:
1.153     kristaps  240:                        if (ASCII_HYPH == p->buf[i]) {
1.146     kristaps  241:                                (*p->letter)(p, '-');
1.153     kristaps  242:                                p->viscol += (*p->width)(p, '-');
1.200     schwarze  243:                                continue;
                    244:                        }
                    245:
                    246:                        (*p->letter)(p, p->buf[i]);
                    247:                        if (8 == p->buf[i])
                    248:                                p->viscol -= (*p->width)(p, p->buf[i-1]);
                    249:                        else
1.153     kristaps  250:                                p->viscol += (*p->width)(p, p->buf[i]);
1.136     schwarze  251:                }
                    252:                vis = vend;
1.71      kristaps  253:        }
1.168     schwarze  254:
                    255:        /*
                    256:         * If there was trailing white space, it was not printed;
                    257:         * so reset the cursor position accordingly.
                    258:         */
1.200     schwarze  259:        if (vis)
                    260:                vis -= vbl;
1.111     kristaps  261:
1.91      kristaps  262:        p->col = 0;
1.129     kristaps  263:        p->overstep = 0;
1.15      kristaps  264:
1.91      kristaps  265:        if ( ! (TERMP_NOBREAK & p->flags)) {
1.139     schwarze  266:                p->viscol = 0;
1.146     kristaps  267:                (*p->endline)(p);
1.15      kristaps  268:                return;
1.71      kristaps  269:        }
1.15      kristaps  270:
1.91      kristaps  271:        if (TERMP_HANG & p->flags) {
                    272:                /* We need one blank after the tag. */
1.174     schwarze  273:                p->overstep = (int)(vis - maxvis + (*p->width)(p, ' '));
1.91      kristaps  274:
                    275:                /*
1.92      kristaps  276:                 * If we have overstepped the margin, temporarily move
                    277:                 * it to the right and flag the rest of the line to be
                    278:                 * shorter.
1.91      kristaps  279:                 */
1.204     schwarze  280:                if (p->overstep < 0)
1.129     kristaps  281:                        p->overstep = 0;
1.200     schwarze  282:                return;
1.91      kristaps  283:
                    284:        } else if (TERMP_DANGLE & p->flags)
                    285:                return;
1.15      kristaps  286:
1.200     schwarze  287:        /* If the column was overrun, break the line. */
                    288:        if (maxvis <= vis +
1.174     schwarze  289:            ((TERMP_TWOSPACE & p->flags) ? (*p->width)(p, ' ') : 0)) {
1.146     kristaps  290:                (*p->endline)(p);
1.200     schwarze  291:                p->viscol = 0;
1.91      kristaps  292:        }
1.15      kristaps  293: }
                    294:
                    295:
1.71      kristaps  296: /*
                    297:  * A newline only breaks an existing line; it won't assert vertical
                    298:  * space.  All data in the output buffer is flushed prior to the newline
                    299:  * assertion.
                    300:  */
                    301: void
                    302: term_newln(struct termp *p)
1.15      kristaps  303: {
                    304:
1.71      kristaps  305:        p->flags |= TERMP_NOSPACE;
1.200     schwarze  306:        if (p->col || p->viscol)
                    307:                term_flushln(p);
1.16      kristaps  308: }
                    309:
                    310:
1.71      kristaps  311: /*
                    312:  * Asserts a vertical space (a full, empty line-break between lines).
                    313:  * Note that if used twice, this will cause two blank spaces and so on.
                    314:  * All data in the output buffer is flushed prior to the newline
                    315:  * assertion.
                    316:  */
                    317: void
                    318: term_vspace(struct termp *p)
1.16      kristaps  319: {
                    320:
1.62      kristaps  321:        term_newln(p);
1.139     schwarze  322:        p->viscol = 0;
1.202     schwarze  323:        if (0 < p->skipvsp)
                    324:                p->skipvsp--;
                    325:        else
                    326:                (*p->endline)(p);
1.16      kristaps  327: }
                    328:
1.125     kristaps  329: void
                    330: term_fontlast(struct termp *p)
                    331: {
                    332:        enum termfont    f;
                    333:
                    334:        f = p->fontl;
                    335:        p->fontl = p->fontq[p->fonti];
                    336:        p->fontq[p->fonti] = f;
                    337: }
                    338:
                    339:
                    340: void
                    341: term_fontrepl(struct termp *p, enum termfont f)
                    342: {
                    343:
                    344:        p->fontl = p->fontq[p->fonti];
                    345:        p->fontq[p->fonti] = f;
                    346: }
                    347:
                    348:
                    349: void
                    350: term_fontpush(struct termp *p, enum termfont f)
                    351: {
                    352:
                    353:        assert(p->fonti + 1 < 10);
                    354:        p->fontl = p->fontq[p->fonti];
                    355:        p->fontq[++p->fonti] = f;
                    356: }
                    357:
                    358:
                    359: const void *
                    360: term_fontq(struct termp *p)
                    361: {
                    362:
                    363:        return(&p->fontq[p->fonti]);
                    364: }
                    365:
                    366:
                    367: enum termfont
                    368: term_fonttop(struct termp *p)
                    369: {
                    370:
                    371:        return(p->fontq[p->fonti]);
                    372: }
                    373:
                    374:
                    375: void
                    376: term_fontpopq(struct termp *p, const void *key)
                    377: {
                    378:
                    379:        while (p->fonti >= 0 && key != &p->fontq[p->fonti])
                    380:                p->fonti--;
                    381:        assert(p->fonti >= 0);
                    382: }
1.94      kristaps  383:
1.125     kristaps  384:
                    385: void
                    386: term_fontpop(struct termp *p)
                    387: {
                    388:
                    389:        assert(p->fonti);
                    390:        p->fonti--;
1.17      kristaps  391: }
                    392:
1.71      kristaps  393: /*
                    394:  * Handle pwords, partial words, which may be either a single word or a
                    395:  * phrase that cannot be broken down (such as a literal string).  This
                    396:  * handles word styling.
                    397:  */
1.86      kristaps  398: void
                    399: term_word(struct termp *p, const char *word)
1.65      kristaps  400: {
1.191     kristaps  401:        const char      *seq, *cp;
                    402:        char             c;
1.194     kristaps  403:        int              sz, uc;
1.124     kristaps  404:        size_t           ssz;
1.184     kristaps  405:        enum mandoc_esc  esc;
1.100     kristaps  406:
1.133     kristaps  407:        if ( ! (TERMP_NOSPACE & p->flags)) {
1.151     schwarze  408:                if ( ! (TERMP_KEEP & p->flags)) {
                    409:                        if (TERMP_PREKEEP & p->flags)
                    410:                                p->flags |= TERMP_KEEP;
1.133     kristaps  411:                        bufferc(p, ' ');
1.151     schwarze  412:                        if (TERMP_SENTENCE & p->flags)
                    413:                                bufferc(p, ' ');
                    414:                } else
                    415:                        bufferc(p, ASCII_NBRSP);
1.133     kristaps  416:        }
1.65      kristaps  417:
1.71      kristaps  418:        if ( ! (p->flags & TERMP_NONOSPACE))
                    419:                p->flags &= ~TERMP_NOSPACE;
1.166     kristaps  420:        else
                    421:                p->flags |= TERMP_NOSPACE;
1.133     kristaps  422:
1.173     schwarze  423:        p->flags &= ~(TERMP_SENTENCE | TERMP_IGNDELIM);
1.65      kristaps  424:
1.184     kristaps  425:        while ('\0' != *word) {
1.203     schwarze  426:                if ('\\' != *word) {
                    427:                        if (TERMP_SKIPCHAR & p->flags) {
                    428:                                p->flags &= ~TERMP_SKIPCHAR;
                    429:                                word++;
                    430:                                continue;
                    431:                        }
                    432:                        ssz = strcspn(word, "\\");
1.162     kristaps  433:                        encode(p, word, ssz);
1.203     schwarze  434:                        word += (int)ssz;
1.124     kristaps  435:                        continue;
1.203     schwarze  436:                }
1.124     kristaps  437:
1.184     kristaps  438:                word++;
                    439:                esc = mandoc_escape(&word, &seq, &sz);
                    440:                if (ESCAPE_ERROR == esc)
                    441:                        break;
1.124     kristaps  442:
1.196     kristaps  443:                if (TERMENC_ASCII != p->enc)
                    444:                        switch (esc) {
                    445:                        case (ESCAPE_UNICODE):
                    446:                                uc = mchars_num2uc(seq + 1, sz - 1);
                    447:                                if ('\0' == uc)
                    448:                                        break;
                    449:                                encode1(p, uc);
                    450:                                continue;
                    451:                        case (ESCAPE_SPECIAL):
                    452:                                uc = mchars_spec2cp(p->symtab, seq, sz);
                    453:                                if (uc <= 0)
                    454:                                        break;
                    455:                                encode1(p, uc);
                    456:                                continue;
                    457:                        default:
                    458:                                break;
                    459:                        }
                    460:
1.184     kristaps  461:                switch (esc) {
1.192     kristaps  462:                case (ESCAPE_UNICODE):
1.196     kristaps  463:                        encode1(p, '?');
1.192     kristaps  464:                        break;
1.184     kristaps  465:                case (ESCAPE_NUMBERED):
1.196     kristaps  466:                        c = mchars_num2char(seq, sz);
                    467:                        if ('\0' != c)
1.191     kristaps  468:                                encode(p, &c, 1);
1.184     kristaps  469:                        break;
                    470:                case (ESCAPE_SPECIAL):
1.191     kristaps  471:                        cp = mchars_spec2str(p->symtab, seq, sz, &ssz);
                    472:                        if (NULL != cp)
                    473:                                encode(p, cp, ssz);
                    474:                        else if (1 == ssz)
                    475:                                encode(p, seq, sz);
1.124     kristaps  476:                        break;
1.184     kristaps  477:                case (ESCAPE_FONTBOLD):
1.125     kristaps  478:                        term_fontrepl(p, TERMFONT_BOLD);
1.124     kristaps  479:                        break;
1.184     kristaps  480:                case (ESCAPE_FONTITALIC):
1.125     kristaps  481:                        term_fontrepl(p, TERMFONT_UNDER);
1.124     kristaps  482:                        break;
1.195     kristaps  483:                case (ESCAPE_FONT):
                    484:                        /* FALLTHROUGH */
1.184     kristaps  485:                case (ESCAPE_FONTROMAN):
1.125     kristaps  486:                        term_fontrepl(p, TERMFONT_NONE);
1.124     kristaps  487:                        break;
1.184     kristaps  488:                case (ESCAPE_FONTPREV):
1.125     kristaps  489:                        term_fontlast(p);
1.124     kristaps  490:                        break;
1.184     kristaps  491:                case (ESCAPE_NOSPACE):
1.203     schwarze  492:                        if (TERMP_SKIPCHAR & p->flags)
                    493:                                p->flags &= ~TERMP_SKIPCHAR;
                    494:                        else if ('\0' == *word)
1.184     kristaps  495:                                p->flags |= TERMP_NOSPACE;
                    496:                        break;
1.203     schwarze  497:                case (ESCAPE_SKIPCHAR):
                    498:                        p->flags |= TERMP_SKIPCHAR;
                    499:                        break;
1.124     kristaps  500:                default:
                    501:                        break;
                    502:                }
                    503:        }
1.65      kristaps  504: }
                    505:
1.71      kristaps  506: static void
1.188     kristaps  507: adjbuf(struct termp *p, int sz)
1.51      kristaps  508: {
                    509:
1.125     kristaps  510:        if (0 == p->maxcols)
                    511:                p->maxcols = 1024;
                    512:        while (sz >= p->maxcols)
                    513:                p->maxcols <<= 2;
                    514:
1.188     kristaps  515:        p->buf = mandoc_realloc
                    516:                (p->buf, sizeof(int) * (size_t)p->maxcols);
1.51      kristaps  517: }
                    518:
1.79      kristaps  519: static void
1.125     kristaps  520: bufferc(struct termp *p, char c)
                    521: {
                    522:
                    523:        if (p->col + 1 >= p->maxcols)
                    524:                adjbuf(p, p->col + 1);
                    525:
1.188     kristaps  526:        p->buf[p->col++] = c;
1.125     kristaps  527: }
                    528:
1.194     kristaps  529: /*
                    530:  * See encode().
                    531:  * Do this for a single (probably unicode) value.
                    532:  * Does not check for non-decorated glyphs.
                    533:  */
                    534: static void
                    535: encode1(struct termp *p, int c)
                    536: {
                    537:        enum termfont     f;
                    538:
1.203     schwarze  539:        if (TERMP_SKIPCHAR & p->flags) {
                    540:                p->flags &= ~TERMP_SKIPCHAR;
                    541:                return;
                    542:        }
                    543:
1.194     kristaps  544:        if (p->col + 4 >= p->maxcols)
                    545:                adjbuf(p, p->col + 4);
                    546:
                    547:        f = term_fonttop(p);
                    548:
                    549:        if (TERMFONT_NONE == f) {
                    550:                p->buf[p->col++] = c;
                    551:                return;
                    552:        } else if (TERMFONT_UNDER == f) {
                    553:                p->buf[p->col++] = '_';
                    554:        } else
                    555:                p->buf[p->col++] = c;
                    556:
                    557:        p->buf[p->col++] = 8;
                    558:        p->buf[p->col++] = c;
                    559: }
                    560:
1.125     kristaps  561: static void
                    562: encode(struct termp *p, const char *word, size_t sz)
                    563: {
                    564:        enum termfont     f;
1.188     kristaps  565:        int               i, len;
                    566:
1.203     schwarze  567:        if (TERMP_SKIPCHAR & p->flags) {
                    568:                p->flags &= ~TERMP_SKIPCHAR;
                    569:                return;
                    570:        }
                    571:
1.188     kristaps  572:        /* LINTED */
                    573:        len = sz;
1.125     kristaps  574:
                    575:        /*
                    576:         * Encode and buffer a string of characters.  If the current
                    577:         * font mode is unset, buffer directly, else encode then buffer
                    578:         * character by character.
                    579:         */
                    580:
1.147     kristaps  581:        if (TERMFONT_NONE == (f = term_fonttop(p))) {
1.188     kristaps  582:                if (p->col + len >= p->maxcols)
                    583:                        adjbuf(p, p->col + len);
                    584:                for (i = 0; i < len; i++)
                    585:                        p->buf[p->col++] = word[i];
1.125     kristaps  586:                return;
                    587:        }
                    588:
1.165     kristaps  589:        /* Pre-buffer, assuming worst-case. */
                    590:
1.188     kristaps  591:        if (p->col + 1 + (len * 3) >= p->maxcols)
                    592:                adjbuf(p, p->col + 1 + (len * 3));
1.165     kristaps  593:
1.188     kristaps  594:        for (i = 0; i < len; i++) {
1.199     schwarze  595:                if (ASCII_HYPH != word[i] &&
                    596:                    ! isgraph((unsigned char)word[i])) {
1.188     kristaps  597:                        p->buf[p->col++] = word[i];
1.125     kristaps  598:                        continue;
1.79      kristaps  599:                }
1.125     kristaps  600:
                    601:                if (TERMFONT_UNDER == f)
1.188     kristaps  602:                        p->buf[p->col++] = '_';
1.199     schwarze  603:                else if (ASCII_HYPH == word[i])
                    604:                        p->buf[p->col++] = '-';
1.125     kristaps  605:                else
1.188     kristaps  606:                        p->buf[p->col++] = word[i];
1.125     kristaps  607:
1.188     kristaps  608:                p->buf[p->col++] = 8;
                    609:                p->buf[p->col++] = word[i];
1.79      kristaps  610:        }
                    611: }
1.106     kristaps  612:
1.107     kristaps  613: size_t
1.149     kristaps  614: term_len(const struct termp *p, size_t sz)
                    615: {
                    616:
                    617:        return((*p->width)(p, ' ') * sz);
                    618: }
                    619:
1.203     schwarze  620: static size_t
                    621: cond_width(const struct termp *p, int c, int *skip)
                    622: {
                    623:
                    624:        if (*skip) {
                    625:                (*skip) = 0;
                    626:                return(0);
                    627:        } else
                    628:                return((*p->width)(p, c));
                    629: }
1.149     kristaps  630:
                    631: size_t
                    632: term_strlen(const struct termp *p, const char *cp)
                    633: {
1.184     kristaps  634:        size_t           sz, rsz, i;
1.203     schwarze  635:        int              ssz, skip, c;
1.171     kristaps  636:        const char      *seq, *rhs;
1.196     kristaps  637:        enum mandoc_esc  esc;
1.189     kristaps  638:        static const char rej[] = { '\\', ASCII_HYPH, ASCII_NBRSP, '\0' };
1.171     kristaps  639:
1.184     kristaps  640:        /*
                    641:         * Account for escaped sequences within string length
                    642:         * calculations.  This follows the logic in term_word() as we
                    643:         * must calculate the width of produced strings.
                    644:         */
                    645:
                    646:        sz = 0;
1.203     schwarze  647:        skip = 0;
1.189     kristaps  648:        while ('\0' != *cp) {
                    649:                rsz = strcspn(cp, rej);
                    650:                for (i = 0; i < rsz; i++)
1.203     schwarze  651:                        sz += cond_width(p, *cp++, &skip);
1.189     kristaps  652:
1.192     kristaps  653:                c = 0;
1.184     kristaps  654:                switch (*cp) {
                    655:                case ('\\'):
1.189     kristaps  656:                        cp++;
1.196     kristaps  657:                        esc = mandoc_escape(&cp, &seq, &ssz);
                    658:                        if (ESCAPE_ERROR == esc)
1.184     kristaps  659:                                return(sz);
1.196     kristaps  660:
                    661:                        if (TERMENC_ASCII != p->enc)
                    662:                                switch (esc) {
                    663:                                case (ESCAPE_UNICODE):
                    664:                                        c = mchars_num2uc
                    665:                                                (seq + 1, ssz - 1);
                    666:                                        if ('\0' == c)
                    667:                                                break;
1.203     schwarze  668:                                        sz += cond_width(p, c, &skip);
1.196     kristaps  669:                                        continue;
                    670:                                case (ESCAPE_SPECIAL):
                    671:                                        c = mchars_spec2cp
                    672:                                                (p->symtab, seq, ssz);
                    673:                                        if (c <= 0)
                    674:                                                break;
1.203     schwarze  675:                                        sz += cond_width(p, c, &skip);
1.196     kristaps  676:                                        continue;
                    677:                                default:
1.194     kristaps  678:                                        break;
                    679:                                }
1.196     kristaps  680:
                    681:                        rhs = NULL;
                    682:
                    683:                        switch (esc) {
                    684:                        case (ESCAPE_UNICODE):
1.203     schwarze  685:                                sz += cond_width(p, '?', &skip);
1.194     kristaps  686:                                break;
1.190     kristaps  687:                        case (ESCAPE_NUMBERED):
1.194     kristaps  688:                                c = mchars_num2char(seq, ssz);
1.190     kristaps  689:                                if ('\0' != c)
1.203     schwarze  690:                                        sz += cond_width(p, c, &skip);
1.171     kristaps  691:                                break;
1.184     kristaps  692:                        case (ESCAPE_SPECIAL):
1.185     kristaps  693:                                rhs = mchars_spec2str
1.171     kristaps  694:                                        (p->symtab, seq, ssz, &rsz);
                    695:
1.184     kristaps  696:                                if (ssz != 1 || rhs)
1.171     kristaps  697:                                        break;
                    698:
                    699:                                rhs = seq;
                    700:                                rsz = ssz;
                    701:                                break;
1.203     schwarze  702:                        case (ESCAPE_SKIPCHAR):
                    703:                                skip = 1;
                    704:                                break;
1.171     kristaps  705:                        default:
                    706:                                break;
                    707:                        }
1.149     kristaps  708:
1.184     kristaps  709:                        if (NULL == rhs)
                    710:                                break;
                    711:
1.203     schwarze  712:                        if (skip) {
                    713:                                skip = 0;
                    714:                                break;
                    715:                        }
                    716:
1.184     kristaps  717:                        for (i = 0; i < rsz; i++)
                    718:                                sz += (*p->width)(p, *rhs++);
                    719:                        break;
                    720:                case (ASCII_NBRSP):
1.203     schwarze  721:                        sz += cond_width(p, ' ', &skip);
1.176     kristaps  722:                        cp++;
1.184     kristaps  723:                        break;
                    724:                case (ASCII_HYPH):
1.203     schwarze  725:                        sz += cond_width(p, '-', &skip);
1.176     kristaps  726:                        cp++;
1.184     kristaps  727:                        break;
                    728:                default:
                    729:                        break;
                    730:                }
1.189     kristaps  731:        }
1.149     kristaps  732:
                    733:        return(sz);
                    734: }
                    735:
1.157     kristaps  736: /* ARGSUSED */
1.149     kristaps  737: size_t
                    738: term_vspan(const struct termp *p, const struct roffsu *su)
1.106     kristaps  739: {
                    740:        double           r;
                    741:
1.107     kristaps  742:        switch (su->unit) {
1.106     kristaps  743:        case (SCALE_CM):
1.107     kristaps  744:                r = su->scale * 2;
1.106     kristaps  745:                break;
                    746:        case (SCALE_IN):
1.107     kristaps  747:                r = su->scale * 6;
1.106     kristaps  748:                break;
                    749:        case (SCALE_PC):
1.107     kristaps  750:                r = su->scale;
1.106     kristaps  751:                break;
                    752:        case (SCALE_PT):
1.107     kristaps  753:                r = su->scale / 8;
1.106     kristaps  754:                break;
                    755:        case (SCALE_MM):
1.107     kristaps  756:                r = su->scale / 1000;
1.106     kristaps  757:                break;
                    758:        case (SCALE_VS):
1.107     kristaps  759:                r = su->scale;
1.106     kristaps  760:                break;
                    761:        default:
1.107     kristaps  762:                r = su->scale - 1;
1.106     kristaps  763:                break;
                    764:        }
                    765:
                    766:        if (r < 0.0)
                    767:                r = 0.0;
1.107     kristaps  768:        return(/* LINTED */(size_t)
1.106     kristaps  769:                        r);
                    770: }
                    771:
1.107     kristaps  772: size_t
1.149     kristaps  773: term_hspan(const struct termp *p, const struct roffsu *su)
1.106     kristaps  774: {
1.156     kristaps  775:        double           v;
1.108     kristaps  776:
1.156     kristaps  777:        v = ((*p->hspan)(p, su));
                    778:        if (v < 0.0)
                    779:                v = 0.0;
                    780:        return((size_t) /* LINTED */
                    781:                        v);
1.106     kristaps  782: }

CVSweb