[BACK]Return to tbl_data.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Annotation of src/usr.bin/mandoc/tbl_data.c, Revision 1.40

1.40    ! schwarze    1: /*     $OpenBSD: tbl_data.c,v 1.39 2019/02/09 16:00:06 schwarze Exp $ */
1.1       schwarze    2: /*
1.4       schwarze    3:  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
1.39      schwarze    4:  * Copyright (c) 2011,2015,2017,2018,2019 Ingo Schwarze <schwarze@openbsd.org>
1.1       schwarze    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:  *
                     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.
                     17:  */
1.19      schwarze   18: #include <sys/types.h>
                     19:
1.1       schwarze   20: #include <assert.h>
                     21: #include <ctype.h>
1.40    ! schwarze   22: #include <stdint.h>
1.37      schwarze   23: #include <stdio.h>
1.1       schwarze   24: #include <stdlib.h>
                     25: #include <string.h>
1.4       schwarze   26: #include <time.h>
1.1       schwarze   27:
1.35      schwarze   28: #include "mandoc_aux.h"
1.4       schwarze   29: #include "mandoc.h"
1.35      schwarze   30: #include "tbl.h"
1.4       schwarze   31: #include "libmandoc.h"
1.36      schwarze   32: #include "tbl_int.h"
1.4       schwarze   33:
1.20      schwarze   34: static void             getdata(struct tbl_node *, struct tbl_span *,
1.9       schwarze   35:                                int, const char *, int *);
1.17      schwarze   36: static struct tbl_span *newspan(struct tbl_node *, int,
1.9       schwarze   37:                                struct tbl_row *);
1.4       schwarze   38:
1.17      schwarze   39:
1.20      schwarze   40: static void
1.17      schwarze   41: getdata(struct tbl_node *tbl, struct tbl_span *dp,
1.4       schwarze   42:                int ln, const char *p, int *pos)
1.1       schwarze   43: {
1.33      schwarze   44:        struct tbl_dat  *dat, *pdat;
1.4       schwarze   45:        struct tbl_cell *cp;
1.33      schwarze   46:        struct tbl_span *pdp;
1.24      schwarze   47:        int              sv;
1.4       schwarze   48:
1.34      schwarze   49:        /*
                     50:         * Determine the length of the string in the cell
                     51:         * and advance the parse point to the end of the cell.
                     52:         */
                     53:
                     54:        sv = *pos;
                     55:        while (p[*pos] != '\0' && p[*pos] != tbl->opts.tab)
                     56:                (*pos)++;
                     57:
1.25      schwarze   58:        /* Advance to the next layout cell, skipping spanners. */
                     59:
1.24      schwarze   60:        cp = dp->last == NULL ? dp->layout->first : dp->last->layout->next;
                     61:        while (cp != NULL && cp->pos == TBL_CELL_SPAN)
1.4       schwarze   62:                cp = cp->next;
                     63:
1.6       schwarze   64:        /*
1.30      schwarze   65:         * If the current layout row is out of cells, allocate
                     66:         * a new cell if another row of the table has at least
                     67:         * this number of columns, or discard the input if we
                     68:         * are beyond the last column of the table as a whole.
1.6       schwarze   69:         */
                     70:
1.24      schwarze   71:        if (cp == NULL) {
1.30      schwarze   72:                if (dp->layout->last->col + 1 < dp->opts->cols) {
                     73:                        cp = mandoc_calloc(1, sizeof(*cp));
                     74:                        cp->pos = TBL_CELL_LEFT;
1.40    ! schwarze   75:                        cp->spacing = SIZE_MAX;
1.30      schwarze   76:                        dp->layout->last->next = cp;
                     77:                        cp->col = dp->layout->last->col + 1;
                     78:                        dp->layout->last = cp;
                     79:                } else {
1.38      schwarze   80:                        mandoc_msg(MANDOCERR_TBLDATA_EXTRA,
                     81:                            ln, sv, "%s", p + sv);
1.34      schwarze   82:                        while (p[*pos] != '\0')
1.30      schwarze   83:                                (*pos)++;
                     84:                        return;
                     85:                }
1.6       schwarze   86:        }
                     87:
1.33      schwarze   88:        dat = mandoc_malloc(sizeof(*dat));
1.4       schwarze   89:        dat->layout = cp;
1.33      schwarze   90:        dat->next = NULL;
                     91:        dat->string = NULL;
                     92:        dat->hspans = 0;
                     93:        dat->vspans = 0;
                     94:        dat->block = 0;
1.4       schwarze   95:        dat->pos = TBL_DATA_NONE;
1.33      schwarze   96:
                     97:        /*
                     98:         * Increment the number of vertical spans in a data cell above,
                     99:         * if this cell vertically extends one or more cells above.
                    100:         * The iteration must be done over data rows,
                    101:         * not over layout rows, because one layout row
                    102:         * can be reused for more than one data row.
                    103:         */
                    104:
1.34      schwarze  105:        if (cp->pos == TBL_CELL_DOWN ||
                    106:            (*pos - sv == 2 && p[sv] == '\\' && p[sv + 1] == '^')) {
1.33      schwarze  107:                pdp = dp;
                    108:                while ((pdp = pdp->prev) != NULL) {
                    109:                        pdat = pdp->first;
                    110:                        while (pdat != NULL &&
                    111:                            pdat->layout->col < dat->layout->col)
                    112:                                pdat = pdat->next;
                    113:                        if (pdat == NULL)
                    114:                                break;
1.34      schwarze  115:                        if (pdat->layout->pos != TBL_CELL_DOWN &&
                    116:                            strcmp(pdat->string, "\\^") != 0) {
1.33      schwarze  117:                                pdat->vspans++;
                    118:                                break;
                    119:                        }
                    120:                }
                    121:        }
                    122:
                    123:        /*
                    124:         * Count the number of horizontal spans to the right of this cell.
                    125:         * This is purely a matter of the layout, independent of the data.
                    126:         */
                    127:
1.24      schwarze  128:        for (cp = cp->next; cp != NULL; cp = cp->next)
                    129:                if (cp->pos == TBL_CELL_SPAN)
1.33      schwarze  130:                        dat->hspans++;
1.6       schwarze  131:                else
                    132:                        break;
1.33      schwarze  133:
                    134:        /* Append the new data cell to the data row. */
1.17      schwarze  135:
1.24      schwarze  136:        if (dp->last == NULL)
                    137:                dp->first = dat;
                    138:        else
1.4       schwarze  139:                dp->last->next = dat;
1.24      schwarze  140:        dp->last = dat;
1.4       schwarze  141:
                    142:        /*
                    143:         * Check for a continued-data scope opening.  This consists of a
                    144:         * trailing `T{' at the end of the line.  Subsequent lines,
                    145:         * until a standalone `T}', are included in our cell.
                    146:         */
1.1       schwarze  147:
1.24      schwarze  148:        if (*pos - sv == 2 && p[sv] == 'T' && p[sv + 1] == '{') {
1.4       schwarze  149:                tbl->part = TBL_PART_CDATA;
1.20      schwarze  150:                return;
1.4       schwarze  151:        }
1.1       schwarze  152:
1.24      schwarze  153:        dat->string = mandoc_strndup(p + sv, *pos - sv);
1.1       schwarze  154:
1.34      schwarze  155:        if (p[*pos] != '\0')
1.4       schwarze  156:                (*pos)++;
1.1       schwarze  157:
                    158:        if ( ! strcmp(dat->string, "_"))
1.4       schwarze  159:                dat->pos = TBL_DATA_HORIZ;
1.1       schwarze  160:        else if ( ! strcmp(dat->string, "="))
1.4       schwarze  161:                dat->pos = TBL_DATA_DHORIZ;
1.1       schwarze  162:        else if ( ! strcmp(dat->string, "\\_"))
1.4       schwarze  163:                dat->pos = TBL_DATA_NHORIZ;
1.1       schwarze  164:        else if ( ! strcmp(dat->string, "\\="))
1.4       schwarze  165:                dat->pos = TBL_DATA_NDHORIZ;
1.1       schwarze  166:        else
1.4       schwarze  167:                dat->pos = TBL_DATA_DATA;
                    168:
1.24      schwarze  169:        if ((dat->layout->pos == TBL_CELL_HORIZ ||
                    170:            dat->layout->pos == TBL_CELL_DHORIZ ||
                    171:            dat->layout->pos == TBL_CELL_DOWN) &&
                    172:            dat->pos == TBL_DATA_DATA && *dat->string != '\0')
                    173:                mandoc_msg(MANDOCERR_TBLDATA_SPAN,
1.38      schwarze  174:                    ln, sv, "%s", dat->string);
1.1       schwarze  175: }
                    176:
1.32      schwarze  177: void
1.22      schwarze  178: tbl_cdata(struct tbl_node *tbl, int ln, const char *p, int pos)
1.4       schwarze  179: {
                    180:        struct tbl_dat  *dat;
1.17      schwarze  181:        size_t           sz;
1.4       schwarze  182:
                    183:        dat = tbl->last_span->last;
1.5       schwarze  184:
                    185:        if (p[pos] == 'T' && p[pos + 1] == '}') {
                    186:                pos += 2;
                    187:                if (p[pos] == tbl->opts.tab) {
                    188:                        tbl->part = TBL_PART_DATA;
                    189:                        pos++;
1.27      schwarze  190:                        while (p[pos] != '\0')
                    191:                                getdata(tbl, tbl->last_span, ln, p, &pos);
1.32      schwarze  192:                        return;
1.24      schwarze  193:                } else if (p[pos] == '\0') {
1.5       schwarze  194:                        tbl->part = TBL_PART_DATA;
1.32      schwarze  195:                        return;
1.5       schwarze  196:                }
                    197:
                    198:                /* Fallthrough: T} is part of a word. */
                    199:        }
1.4       schwarze  200:
1.6       schwarze  201:        dat->pos = TBL_DATA_DATA;
1.29      schwarze  202:        dat->block = 1;
1.6       schwarze  203:
1.24      schwarze  204:        if (dat->string != NULL) {
1.23      schwarze  205:                sz = strlen(p + pos) + strlen(dat->string) + 2;
1.4       schwarze  206:                dat->string = mandoc_realloc(dat->string, sz);
1.18      schwarze  207:                (void)strlcat(dat->string, " ", sz);
1.23      schwarze  208:                (void)strlcat(dat->string, p + pos, sz);
1.4       schwarze  209:        } else
1.23      schwarze  210:                dat->string = mandoc_strdup(p + pos);
1.4       schwarze  211:
1.24      schwarze  212:        if (dat->layout->pos == TBL_CELL_DOWN)
1.38      schwarze  213:                mandoc_msg(MANDOCERR_TBLDATA_SPAN,
                    214:                    ln, pos, "%s", dat->string);
1.4       schwarze  215: }
1.1       schwarze  216:
1.7       schwarze  217: static struct tbl_span *
1.9       schwarze  218: newspan(struct tbl_node *tbl, int line, struct tbl_row *rp)
1.7       schwarze  219: {
                    220:        struct tbl_span *dp;
                    221:
1.24      schwarze  222:        dp = mandoc_calloc(1, sizeof(*dp));
1.9       schwarze  223:        dp->line = line;
1.13      schwarze  224:        dp->opts = &tbl->opts;
1.7       schwarze  225:        dp->layout = rp;
1.21      schwarze  226:        dp->prev = tbl->last_span;
1.7       schwarze  227:
1.21      schwarze  228:        if (dp->prev == NULL) {
                    229:                tbl->first_span = dp;
1.8       schwarze  230:                tbl->current_span = NULL;
1.21      schwarze  231:        } else
                    232:                dp->prev->next = dp;
                    233:        tbl->last_span = dp;
1.7       schwarze  234:
1.28      schwarze  235:        return dp;
1.7       schwarze  236: }
                    237:
1.20      schwarze  238: void
1.22      schwarze  239: tbl_data(struct tbl_node *tbl, int ln, const char *p, int pos)
1.1       schwarze  240: {
1.4       schwarze  241:        struct tbl_row  *rp;
1.30      schwarze  242:        struct tbl_cell *cp;
1.31      schwarze  243:        struct tbl_span *sp;
1.4       schwarze  244:
1.30      schwarze  245:        rp = (sp = tbl->last_span) == NULL ? tbl->first_row :
                    246:            sp->pos == TBL_SPAN_DATA && sp->layout->next != NULL ?
                    247:            sp->layout->next : sp->layout;
1.6       schwarze  248:
1.30      schwarze  249:        assert(rp != NULL);
1.4       schwarze  250:
1.39      schwarze  251:        if (p[1] == '\0') {
                    252:                switch (p[0]) {
                    253:                case '.':
                    254:                        /*
                    255:                         * Empty request lines must be handled here
                    256:                         * and cannot be discarded in roff_parseln()
                    257:                         * because in the layout section, they
                    258:                         * are significant and end the layout.
                    259:                         */
                    260:                        return;
                    261:                case '_':
                    262:                        sp = newspan(tbl, ln, rp);
                    263:                        sp->pos = TBL_SPAN_HORIZ;
                    264:                        return;
                    265:                case '=':
                    266:                        sp = newspan(tbl, ln, rp);
                    267:                        sp->pos = TBL_SPAN_DHORIZ;
                    268:                        return;
                    269:                default:
                    270:                        break;
                    271:                }
1.1       schwarze  272:        }
1.30      schwarze  273:
                    274:        /*
1.31      schwarze  275:         * If the layout row contains nothing but horizontal lines,
                    276:         * allocate an empty span for it and assign the current span
                    277:         * to the next layout row accepting data.
1.30      schwarze  278:         */
                    279:
1.31      schwarze  280:        while (rp->next != NULL) {
                    281:                if (rp->last->col + 1 < tbl->opts.cols)
                    282:                        break;
                    283:                for (cp = rp->first; cp != NULL; cp = cp->next)
                    284:                        if (cp->pos != TBL_CELL_HORIZ &&
                    285:                            cp->pos != TBL_CELL_DHORIZ)
                    286:                                break;
                    287:                if (cp != NULL)
                    288:                        break;
                    289:                sp = newspan(tbl, ln, rp);
                    290:                sp->pos = TBL_SPAN_DATA;
                    291:                rp = rp->next;
1.30      schwarze  292:        }
1.1       schwarze  293:
1.31      schwarze  294:        /* Process a real data row. */
1.1       schwarze  295:
1.31      schwarze  296:        sp = newspan(tbl, ln, rp);
                    297:        sp->pos = TBL_SPAN_DATA;
                    298:        while (p[pos] != '\0')
                    299:                getdata(tbl, sp, ln, p, &pos);
1.1       schwarze  300: }