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

Annotation of mandoc/term_ascii.c, Revision 1.45

1.45    ! schwarze    1: /*     $Id: term_ascii.c,v 1.44 2015/03/27 21:33:20 schwarze Exp $ */
1.1       kristaps    2: /*
1.18      schwarze    3:  * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
1.44      schwarze    4:  * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
1.1       kristaps    5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
1.44      schwarze   10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
1.1       kristaps   11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1.44      schwarze   12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
1.1       kristaps   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.
                     17:  */
                     18: #include "config.h"
                     19:
                     20: #include <sys/types.h>
                     21:
1.39      schwarze   22: #include <assert.h>
1.31      schwarze   23: #if HAVE_WCHAR
1.28      schwarze   24: #include <locale.h>
1.15      kristaps   25: #endif
1.1       kristaps   26: #include <stdint.h>
                     27: #include <stdio.h>
                     28: #include <stdlib.h>
1.2       kristaps   29: #include <unistd.h>
1.31      schwarze   30: #if HAVE_WCHAR
1.28      schwarze   31: #include <wchar.h>
1.15      kristaps   32: #endif
1.1       kristaps   33:
1.11      kristaps   34: #include "mandoc.h"
1.22      schwarze   35: #include "mandoc_aux.h"
1.1       kristaps   36: #include "out.h"
                     37: #include "term.h"
1.44      schwarze   38: #include "manconf.h"
1.1       kristaps   39: #include "main.h"
                     40:
1.44      schwarze   41: static struct termp     *ascii_init(enum termenc, const struct mchars *,
                     42:                                const struct manoutput *);
1.45    ! schwarze   43: static int               ascii_hspan(const struct termp *,
1.7       kristaps   44:                                const struct roffsu *);
1.13      kristaps   45: static size_t            ascii_width(const struct termp *, int);
1.7       kristaps   46: static void              ascii_advance(struct termp *, size_t);
                     47: static void              ascii_begin(struct termp *);
                     48: static void              ascii_end(struct termp *);
1.1       kristaps   49: static void              ascii_endline(struct termp *);
1.13      kristaps   50: static void              ascii_letter(struct termp *, int);
1.45    ! schwarze   51: static void              ascii_setwidth(struct termp *, int, int);
1.1       kristaps   52:
1.31      schwarze   53: #if HAVE_WCHAR
1.15      kristaps   54: static void              locale_advance(struct termp *, size_t);
                     55: static void              locale_endline(struct termp *);
                     56: static void              locale_letter(struct termp *, int);
                     57: static size_t            locale_width(const struct termp *, int);
                     58: #endif
                     59:
1.25      schwarze   60:
1.14      kristaps   61: static struct termp *
1.44      schwarze   62: ascii_init(enum termenc enc, const struct mchars *mchars,
                     63:        const struct manoutput *outopts)
1.1       kristaps   64: {
                     65:        char            *v;
1.14      kristaps   66:        struct termp    *p;
1.1       kristaps   67:
1.14      kristaps   68:        p = mandoc_calloc(1, sizeof(struct termp));
1.1       kristaps   69:
1.38      schwarze   70:        p->symtab = mchars;
1.5       kristaps   71:        p->tabwidth = 5;
1.23      schwarze   72:        p->defrmargin = p->lastrmargin = 78;
1.41      schwarze   73:        p->fontq = mandoc_reallocarray(NULL,
                     74:             (p->fontsz = 8), sizeof(enum termfont));
                     75:        p->fontq[0] = p->fontl = TERMFONT_NONE;
1.5       kristaps   76:
1.1       kristaps   77:        p->begin = ascii_begin;
                     78:        p->end = ascii_end;
1.15      kristaps   79:        p->hspan = ascii_hspan;
                     80:        p->type = TERMTYPE_CHAR;
                     81:
                     82:        p->enc = TERMENC_ASCII;
                     83:        p->advance = ascii_advance;
1.1       kristaps   84:        p->endline = ascii_endline;
1.7       kristaps   85:        p->letter = ascii_letter;
1.23      schwarze   86:        p->setwidth = ascii_setwidth;
1.5       kristaps   87:        p->width = ascii_width;
1.1       kristaps   88:
1.31      schwarze   89: #if HAVE_WCHAR
1.17      kristaps   90:        if (TERMENC_ASCII != enc) {
                     91:                v = TERMENC_LOCALE == enc ?
1.25      schwarze   92:                    setlocale(LC_ALL, "") :
                     93:                    setlocale(LC_CTYPE, "en_US.UTF-8");
1.17      kristaps   94:                if (NULL != v && MB_CUR_MAX > 1) {
1.15      kristaps   95:                        p->enc = enc;
                     96:                        p->advance = locale_advance;
                     97:                        p->endline = locale_endline;
                     98:                        p->letter = locale_letter;
                     99:                        p->width = locale_width;
                    100:                }
1.17      kristaps  101:        }
1.15      kristaps  102: #endif
                    103:
1.44      schwarze  104:        if (outopts->mdoc) {
                    105:                p->mdocstyle = 1;
                    106:                p->defindent = 5;
                    107:        }
                    108:        if (outopts->indent)
                    109:                p->defindent = outopts->indent;
                    110:        if (outopts->width)
                    111:                p->defrmargin = outopts->width;
                    112:        if (outopts->synopsisonly)
                    113:                p->synopsisonly = 1;
1.1       kristaps  114:
                    115:        return(p);
1.5       kristaps  116: }
                    117:
1.14      kristaps  118: void *
1.44      schwarze  119: ascii_alloc(const struct mchars *mchars, const struct manoutput *outopts)
1.14      kristaps  120: {
                    121:
1.38      schwarze  122:        return(ascii_init(TERMENC_ASCII, mchars, outopts));
1.14      kristaps  123: }
1.17      kristaps  124:
                    125: void *
1.44      schwarze  126: utf8_alloc(const struct mchars *mchars, const struct manoutput *outopts)
1.17      kristaps  127: {
                    128:
1.38      schwarze  129:        return(ascii_init(TERMENC_UTF8, mchars, outopts));
1.17      kristaps  130: }
                    131:
1.14      kristaps  132: void *
1.44      schwarze  133: locale_alloc(const struct mchars *mchars, const struct manoutput *outopts)
1.14      kristaps  134: {
                    135:
1.38      schwarze  136:        return(ascii_init(TERMENC_LOCALE, mchars, outopts));
1.23      schwarze  137: }
                    138:
                    139: static void
1.45    ! schwarze  140: ascii_setwidth(struct termp *p, int iop, int width)
1.23      schwarze  141: {
                    142:
1.45    ! schwarze  143:        width /= 24;
1.24      schwarze  144:        p->rmargin = p->defrmargin;
1.40      schwarze  145:        if (iop > 0)
1.24      schwarze  146:                p->defrmargin += width;
1.40      schwarze  147:        else if (iop == 0)
1.45    ! schwarze  148:                p->defrmargin = width ? (size_t)width : p->lastrmargin;
        !           149:        else if (p->defrmargin > (size_t)width)
1.24      schwarze  150:                p->defrmargin -= width;
                    151:        else
1.40      schwarze  152:                p->defrmargin = 0;
1.24      schwarze  153:        p->lastrmargin = p->rmargin;
                    154:        p->rmargin = p->maxrmargin = p->defrmargin;
1.42      schwarze  155: }
                    156:
                    157: void
                    158: ascii_sepline(void *arg)
                    159: {
                    160:        struct termp    *p;
                    161:        size_t           i;
                    162:
                    163:        p = (struct termp *)arg;
                    164:        putchar('\n');
                    165:        for (i = 0; i < p->defrmargin; i++)
                    166:                putchar('-');
                    167:        putchar('\n');
                    168:        putchar('\n');
1.34      schwarze  169: }
                    170:
1.5       kristaps  171: static size_t
1.13      kristaps  172: ascii_width(const struct termp *p, int c)
1.5       kristaps  173: {
                    174:
                    175:        return(1);
1.1       kristaps  176: }
                    177:
                    178: void
                    179: ascii_free(void *arg)
                    180: {
                    181:
                    182:        term_free((struct termp *)arg);
                    183: }
                    184:
                    185: static void
1.13      kristaps  186: ascii_letter(struct termp *p, int c)
1.1       kristaps  187: {
1.25      schwarze  188:
1.1       kristaps  189:        putchar(c);
                    190: }
                    191:
                    192: static void
                    193: ascii_begin(struct termp *p)
                    194: {
                    195:
                    196:        (*p->headf)(p, p->argf);
                    197: }
                    198:
                    199: static void
                    200: ascii_end(struct termp *p)
                    201: {
                    202:
                    203:        (*p->footf)(p, p->argf);
                    204: }
                    205:
                    206: static void
                    207: ascii_endline(struct termp *p)
                    208: {
                    209:
                    210:        putchar('\n');
                    211: }
                    212:
                    213: static void
                    214: ascii_advance(struct termp *p, size_t len)
                    215: {
1.25      schwarze  216:        size_t          i;
1.1       kristaps  217:
                    218:        for (i = 0; i < len; i++)
                    219:                putchar(' ');
                    220: }
1.7       kristaps  221:
1.45    ! schwarze  222: static int
1.7       kristaps  223: ascii_hspan(const struct termp *p, const struct roffsu *su)
                    224: {
                    225:        double           r;
                    226:
                    227:        switch (su->unit) {
1.29      kristaps  228:        case SCALE_BU:
1.45    ! schwarze  229:                r = su->scale;
1.29      kristaps  230:                break;
1.25      schwarze  231:        case SCALE_CM:
1.45    ! schwarze  232:                r = su->scale * 240.0 / 2.54;
1.29      kristaps  233:                break;
                    234:        case SCALE_FS:
1.45    ! schwarze  235:                r = su->scale * 65536.0;
1.7       kristaps  236:                break;
1.25      schwarze  237:        case SCALE_IN:
1.45    ! schwarze  238:                r = su->scale * 240.0;
1.7       kristaps  239:                break;
1.29      kristaps  240:        case SCALE_MM:
1.45    ! schwarze  241:                r = su->scale * 0.24;
1.29      kristaps  242:                break;
1.45    ! schwarze  243:        case SCALE_VS:
        !           244:                /* FALLTHROUGH */
1.25      schwarze  245:        case SCALE_PC:
1.45    ! schwarze  246:                r = su->scale * 40.0;
1.7       kristaps  247:                break;
1.25      schwarze  248:        case SCALE_PT:
1.45    ! schwarze  249:                r = su->scale * 10.0 / 3.0;
1.7       kristaps  250:                break;
1.29      kristaps  251:        case SCALE_EN:
1.30      schwarze  252:                /* FALLTHROUGH */
1.29      kristaps  253:        case SCALE_EM:
1.45    ! schwarze  254:                r = su->scale * 24.0;
1.29      kristaps  255:                break;
1.32      schwarze  256:        default:
1.29      kristaps  257:                abort();
1.30      schwarze  258:                /* NOTREACHED */
1.7       kristaps  259:        }
1.45    ! schwarze  260:        return(r > 0.0 ? r + 0.01 : r - 0.01);
1.36      schwarze  261: }
                    262:
                    263: const char *
                    264: ascii_uc2str(int uc)
                    265: {
                    266:        static const char nbrsp[2] = { ASCII_NBRSP, '\0' };
                    267:        static const char *tab[] = {
                    268:        "<NUL>","<SOH>","<STX>","<ETX>","<EOT>","<ENQ>","<ACK>","<BEL>",
                    269:        "<BS>", "\t",   "<LF>", "<VT>", "<FF>", "<CR>", "<SO>", "<SI>",
                    270:        "<DLE>","<DC1>","<DC2>","<DC3>","<DC4>","<NAK>","<SYN>","<ETB>",
                    271:        "<CAN>","<EM>", "<SUB>","<ESC>","<FS>", "<GS>", "<RS>", "<US>",
                    272:        " ",    "!",    "\"",   "#",    "$",    "%",    "&",    "'",
                    273:        "(",    ")",    "*",    "+",    ",",    "-",    ".",    "/",
                    274:        "0",    "1",    "2",    "3",    "4",    "5",    "6",    "7",
                    275:        "8",    "9",    ":",    ";",    "<",    "=",    ">",    "?",
                    276:        "@",    "A",    "B",    "C",    "D",    "E",    "F",    "G",
                    277:        "H",    "I",    "J",    "K",    "L",    "M",    "N",    "O",
                    278:        "P",    "Q",    "R",    "S",    "T",    "U",    "V",    "W",
                    279:        "X",    "Y",    "Z",    "[",    "\\",   "]",    "^",    "_",
                    280:        "`",    "a",    "b",    "c",    "d",    "e",    "f",    "g",
                    281:        "h",    "i",    "j",    "k",    "l",    "m",    "n",    "o",
                    282:        "p",    "q",    "r",    "s",    "t",    "u",    "v",    "w",
                    283:        "x",    "y",    "z",    "{",    "|",    "}",    "~",    "<DEL>",
                    284:        "<80>", "<81>", "<82>", "<83>", "<84>", "<85>", "<86>", "<87>",
                    285:        "<88>", "<89>", "<8A>", "<8B>", "<8C>", "<8D>", "<8E>", "<8F>",
                    286:        "<90>", "<91>", "<92>", "<93>", "<94>", "<95>", "<96>", "<97>",
                    287:        "<99>", "<99>", "<9A>", "<9B>", "<9C>", "<9D>", "<9E>", "<9F>",
1.37      schwarze  288:        nbrsp,  "!",    "/\bc", "GBP",  "o\bx", "=\bY", "|",    "<sec>",
                    289:        "\"",   "(C)",  "_\ba", "<<",   "~",    "",     "(R)",  "-",
                    290:        "<deg>","+-",   "2",    "3",    "'",    ",\bu", "<par>",".",
                    291:        ",",    "1",    "_\bo", ">>",   "1/4",  "1/2",  "3/4",  "?",
                    292:        "`\bA", "'\bA", "^\bA", "~\bA", "\"\bA","o\bA", "AE",   ",\bC",
                    293:        "`\bE", "'\bE", "^\bE", "\"\bE","`\bI", "'\bI", "^\bI", "\"\bI",
                    294:        "-\bD", "~\bN", "`\bO", "'\bO", "^\bO", "~\bO", "\"\bO","x",
                    295:        "/\bO", "`\bU", "'\bU", "^\bU", "\"\bU","'\bY", "Th",   "ss",
                    296:        "`\ba", "'\ba", "^\ba", "~\ba", "\"\ba","o\ba", "ae",   ",\bc",
                    297:        "`\be", "'\be", "^\be", "\"\be","`\bi", "'\bi", "^\bi", "\"\bi",
                    298:        "d",    "~\bn", "`\bo", "'\bo", "^\bo", "~\bo", "\"\bo","-:-",
                    299:        "/\bo", "`\bu", "'\bu", "^\bu", "\"\bu","'\by", "th",   "\"\by",
                    300:        "A",    "a",    "A",    "a",    "A",    "a",    "'\bC", "'\bc",
                    301:        "^\bC", "^\bc", "C",    "c",    "C",    "c",    "D",    "d",
                    302:        "/\bD", "/\bd", "E",    "e",    "E",    "e",    "E",    "e",
                    303:        "E",    "e",    "E",    "e",    "^\bG", "^\bg", "G",    "g",
                    304:        "G",    "g",    ",\bG", ",\bg", "^\bH", "^\bh", "/\bH", "/\bh",
                    305:        "~\bI", "~\bi", "I",    "i",    "I",    "i",    "I",    "i",
                    306:        "I",    "i",    "IJ",   "ij",   "^\bJ", "^\bj", ",\bK", ",\bk",
                    307:        "q",    "'\bL", "'\bl", ",\bL", ",\bl", "L",    "l",    "L",
                    308:        "l",    "/\bL", "/\bl", "'\bN", "'\bn", ",\bN", ",\bn", "N",
1.36      schwarze  309:        "n",    "'n",   "Ng",   "ng",   "O",    "o",    "O",    "o",
1.37      schwarze  310:        "O",    "o",    "OE",   "oe",   "'\bR", "'\br", ",\bR", ",\br",
                    311:        "R",    "r",    "'\bS", "'\bs", "^\bS", "^\bs", ",\bS", ",\bs",
                    312:        "S",    "s",    ",\bT", ",\bt", "T",    "t",    "/\bT", "/\bt",
                    313:        "~\bU", "~\bu", "U",    "u",    "U",    "u",    "U",    "u",
                    314:        "U",    "u",    "U",    "u",    "^\bW", "^\bw", "^\bY", "^\by",
                    315:        "\"\bY","'\bZ", "'\bz", "Z",    "z",    "Z",    "z",    "s",
1.36      schwarze  316:        "b",    "B",    "B",    "b",    "6",    "6",    "O",    "C",
                    317:        "c",    "D",    "D",    "D",    "d",    "d",    "3",    "@",
1.37      schwarze  318:        "E",    "F",    ",\bf", "G",    "G",    "hv",   "I",    "/\bI",
                    319:        "K",    "k",    "/\bl", "l",    "W",    "N",    "n",    "~\bO",
1.36      schwarze  320:        "O",    "o",    "OI",   "oi",   "P",    "p",    "YR",   "2",
                    321:        "2",    "SH",   "sh",   "t",    "T",    "t",    "T",    "U",
1.37      schwarze  322:        "u",    "Y",    "V",    "Y",    "y",    "/\bZ", "/\bz", "ZH",
                    323:        "ZH",   "zh",   "zh",   "/\b2", "5",    "5",    "ts",   "w",
1.36      schwarze  324:        "|",    "||",   "|=",   "!",    "DZ",   "Dz",   "dz",   "LJ",
                    325:        "Lj",   "lj",   "NJ",   "Nj",   "nj",   "A",    "a",    "I",
                    326:        "i",    "O",    "o",    "U",    "u",    "U",    "u",    "U",
                    327:        "u",    "U",    "u",    "U",    "u",    "@",    "A",    "a",
1.37      schwarze  328:        "A",    "a",    "AE",   "ae",   "/\bG", "/\bg", "G",    "g",
1.36      schwarze  329:        "K",    "k",    "O",    "o",    "O",    "o",    "ZH",   "zh",
1.37      schwarze  330:        "j",    "DZ",   "Dz",   "dz",   "'\bG", "'\bg", "HV",   "W",
                    331:        "`\bN", "`\bn", "A",    "a",    "'\bAE","'\bae","O",    "o"};
1.36      schwarze  332:
1.39      schwarze  333:        assert(uc >= 0);
1.36      schwarze  334:        if ((size_t)uc < sizeof(tab)/sizeof(tab[0]))
                    335:                return(tab[uc]);
                    336:        return(mchars_uc2str(uc));
1.7       kristaps  337: }
                    338:
1.31      schwarze  339: #if HAVE_WCHAR
1.15      kristaps  340: static size_t
                    341: locale_width(const struct termp *p, int c)
                    342: {
                    343:        int             rc;
                    344:
1.26      schwarze  345:        if (c == ASCII_NBRSP)
                    346:                c = ' ';
                    347:        rc = wcwidth(c);
                    348:        if (rc < 0)
                    349:                rc = 0;
                    350:        return(rc);
1.15      kristaps  351: }
                    352:
                    353: static void
                    354: locale_advance(struct termp *p, size_t len)
                    355: {
1.25      schwarze  356:        size_t          i;
1.15      kristaps  357:
                    358:        for (i = 0; i < len; i++)
                    359:                putwchar(L' ');
                    360: }
                    361:
                    362: static void
                    363: locale_endline(struct termp *p)
                    364: {
                    365:
                    366:        putwchar(L'\n');
                    367: }
                    368:
                    369: static void
                    370: locale_letter(struct termp *p, int c)
                    371: {
1.25      schwarze  372:
1.15      kristaps  373:        putwchar(c);
                    374: }
                    375: #endif

CVSweb