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

Annotation of src/usr.bin/mandoc/tbl.c, Revision 1.13

1.13    ! schwarze    1: /*     $OpenBSD: tbl.c,v 1.12 2015/01/14 22:44:51 schwarze Exp $ */
1.1       schwarze    2: /*
1.4       schwarze    3:  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
1.5       schwarze    4:  * Copyright (c) 2011 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.11      schwarze   18: #include <sys/types.h>
                     19:
1.1       schwarze   20: #include <assert.h>
                     21: #include <stdio.h>
                     22: #include <stdlib.h>
                     23: #include <string.h>
1.4       schwarze   24: #include <time.h>
1.1       schwarze   25:
1.4       schwarze   26: #include "mandoc.h"
1.9       schwarze   27: #include "mandoc_aux.h"
1.4       schwarze   28: #include "libmandoc.h"
                     29: #include "libroff.h"
1.1       schwarze   30:
1.10      schwarze   31:
1.4       schwarze   32: enum rofferr
                     33: tbl_read(struct tbl_node *tbl, int ln, const char *p, int offs)
1.1       schwarze   34: {
1.4       schwarze   35:        int              len;
                     36:        const char      *cp;
1.1       schwarze   37:
1.4       schwarze   38:        cp = &p[offs];
                     39:        len = (int)strlen(cp);
1.1       schwarze   40:
1.4       schwarze   41:        /*
                     42:         * If we're in the options section and we don't have a
                     43:         * terminating semicolon, assume we've moved directly into the
                     44:         * layout section.  No need to report a warning: this is,
                     45:         * apparently, standard behaviour.
                     46:         */
1.1       schwarze   47:
1.4       schwarze   48:        if (TBL_PART_OPTS == tbl->part && len)
                     49:                if (';' != cp[len - 1])
                     50:                        tbl->part = TBL_PART_LAYOUT;
1.1       schwarze   51:
1.4       schwarze   52:        /* Now process each logical section of the table.  */
1.1       schwarze   53:
                     54:        switch (tbl->part) {
1.10      schwarze   55:        case TBL_PART_OPTS:
1.12      schwarze   56:                tbl_option(tbl, ln, p);
                     57:                return(ROFF_IGN);
1.10      schwarze   58:        case TBL_PART_LAYOUT:
1.12      schwarze   59:                tbl_layout(tbl, ln, p);
                     60:                return(ROFF_IGN);
1.10      schwarze   61:        case TBL_PART_CDATA:
1.4       schwarze   62:                return(tbl_cdata(tbl, ln, p) ? ROFF_TBL : ROFF_IGN);
1.1       schwarze   63:        default:
                     64:                break;
                     65:        }
                     66:
1.13    ! schwarze   67:        tbl_data(tbl, ln, p);
        !            68:        return(ROFF_TBL);
1.1       schwarze   69: }
                     70:
1.4       schwarze   71: struct tbl_node *
1.6       schwarze   72: tbl_alloc(int pos, int line, struct mparse *parse)
1.1       schwarze   73: {
1.8       schwarze   74:        struct tbl_node *tbl;
1.1       schwarze   75:
1.8       schwarze   76:        tbl = mandoc_calloc(1, sizeof(struct tbl_node));
                     77:        tbl->line = line;
                     78:        tbl->pos = pos;
                     79:        tbl->parse = parse;
                     80:        tbl->part = TBL_PART_OPTS;
                     81:        tbl->opts.tab = '\t';
                     82:        tbl->opts.linesize = 12;
                     83:        tbl->opts.decimal = '.';
                     84:        return(tbl);
1.1       schwarze   85: }
                     86:
                     87: void
1.8       schwarze   88: tbl_free(struct tbl_node *tbl)
1.1       schwarze   89: {
1.4       schwarze   90:        struct tbl_row  *rp;
                     91:        struct tbl_cell *cp;
                     92:        struct tbl_span *sp;
                     93:        struct tbl_dat  *dp;
                     94:        struct tbl_head *hp;
                     95:
1.8       schwarze   96:        while (NULL != (rp = tbl->first_row)) {
                     97:                tbl->first_row = rp->next;
1.4       schwarze   98:                while (rp->first) {
                     99:                        cp = rp->first;
                    100:                        rp->first = cp->next;
                    101:                        free(cp);
                    102:                }
                    103:                free(rp);
1.1       schwarze  104:        }
                    105:
1.8       schwarze  106:        while (NULL != (sp = tbl->first_span)) {
                    107:                tbl->first_span = sp->next;
1.4       schwarze  108:                while (sp->first) {
                    109:                        dp = sp->first;
                    110:                        sp->first = dp->next;
                    111:                        if (dp->string)
                    112:                                free(dp->string);
                    113:                        free(dp);
                    114:                }
                    115:                free(sp);
1.1       schwarze  116:        }
                    117:
1.8       schwarze  118:        while (NULL != (hp = tbl->first_head)) {
                    119:                tbl->first_head = hp->next;
1.4       schwarze  120:                free(hp);
1.1       schwarze  121:        }
                    122:
1.8       schwarze  123:        free(tbl);
1.1       schwarze  124: }
                    125:
1.4       schwarze  126: void
                    127: tbl_restart(int line, int pos, struct tbl_node *tbl)
1.1       schwarze  128: {
1.4       schwarze  129:        if (TBL_PART_CDATA == tbl->part)
1.10      schwarze  130:                mandoc_msg(MANDOCERR_TBLBLOCK, tbl->parse,
                    131:                    tbl->line, tbl->pos, NULL);
1.1       schwarze  132:
1.4       schwarze  133:        tbl->part = TBL_PART_LAYOUT;
                    134:        tbl->line = line;
                    135:        tbl->pos = pos;
1.1       schwarze  136:
1.4       schwarze  137:        if (NULL == tbl->first_span || NULL == tbl->first_span->first)
1.6       schwarze  138:                mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse,
1.10      schwarze  139:                    tbl->line, tbl->pos, NULL);
1.1       schwarze  140: }
                    141:
1.4       schwarze  142: const struct tbl_span *
1.5       schwarze  143: tbl_span(struct tbl_node *tbl)
1.1       schwarze  144: {
1.5       schwarze  145:        struct tbl_span  *span;
1.1       schwarze  146:
1.4       schwarze  147:        assert(tbl);
1.5       schwarze  148:        span = tbl->current_span ? tbl->current_span->next
                    149:                                 : tbl->first_span;
                    150:        if (span)
                    151:                tbl->current_span = span;
                    152:        return(span);
1.1       schwarze  153: }
                    154:
1.4       schwarze  155: void
1.7       schwarze  156: tbl_end(struct tbl_node **tblp)
1.1       schwarze  157: {
1.7       schwarze  158:        struct tbl_node *tbl;
                    159:
                    160:        tbl = *tblp;
                    161:        *tblp = NULL;
1.1       schwarze  162:
1.4       schwarze  163:        if (NULL == tbl->first_span || NULL == tbl->first_span->first)
1.10      schwarze  164:                mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse,
                    165:                    tbl->line, tbl->pos, NULL);
1.1       schwarze  166:
1.4       schwarze  167:        if (tbl->last_span)
                    168:                tbl->last_span->flags |= TBL_SPAN_LAST;
1.1       schwarze  169:
1.4       schwarze  170:        if (TBL_PART_CDATA == tbl->part)
1.10      schwarze  171:                mandoc_msg(MANDOCERR_TBLBLOCK, tbl->parse,
                    172:                    tbl->line, tbl->pos, NULL);
1.1       schwarze  173: }