]>
git.cameronkatri.com Git - mandoc.git/blob - tbl.c
1 /* $Id: tbl.c,v 1.20 2011/01/03 13:59:21 kristaps Exp $ */
3 * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
25 #include "libmandoc.h"
29 tbl_read(struct tbl_node
*tbl
, int ln
, const char *p
, int offs
)
35 len
= (int)strlen(cp
);
38 * If we're in the options section and we don't have a
39 * terminating semicolon, assume we've moved directly into the
40 * layout section. No need to report a warning: this is,
41 * apparently, standard behaviour.
44 if (TBL_PART_OPTS
== tbl
->part
&& len
)
45 if (';' != cp
[len
- 1])
46 tbl
->part
= TBL_PART_LAYOUT
;
48 /* Now process each logical section of the table. */
52 return(tbl_option(tbl
, ln
, p
) ? ROFF_IGN
: ROFF_ERR
);
53 case (TBL_PART_LAYOUT
):
54 return(tbl_layout(tbl
, ln
, p
) ? ROFF_IGN
: ROFF_ERR
);
60 * This only returns zero if the line is empty, so we ignore it
63 return(tbl_data(tbl
, ln
, p
) ? ROFF_TBL
: ROFF_IGN
);
67 tbl_alloc(int pos
, int line
, void *data
, const mandocmsg msg
)
71 p
= mandoc_calloc(1, sizeof(struct tbl_node
));
76 p
->part
= TBL_PART_OPTS
;
78 p
->opts
.linesize
= 12;
79 p
->opts
.decimal
= '.';
84 tbl_free(struct tbl_node
*p
)
92 while (NULL
!= (rp
= p
->first_row
)) {
93 p
->first_row
= rp
->next
;
102 while (NULL
!= (sp
= p
->first_span
)) {
103 p
->first_span
= sp
->next
;
106 sp
->first
= dp
->next
;
114 while (NULL
!= (hp
= p
->first_head
)) {
115 p
->first_head
= hp
->next
;
123 tbl_restart(int line
, int pos
, struct tbl_node
*tbl
)
126 tbl
->part
= TBL_PART_LAYOUT
;
130 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
131 TBL_MSG(tbl
, MANDOCERR_TBLNODATA
, tbl
->line
, tbl
->pos
);
134 const struct tbl_span
*
135 tbl_span(const struct tbl_node
*tbl
)
139 return(tbl
->last_span
);
143 tbl_end(struct tbl_node
*tbl
)
146 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
147 TBL_MSG(tbl
, MANDOCERR_TBLNODATA
, tbl
->line
, tbl
->pos
);
150 tbl
->last_span
->flags
|= TBL_SPAN_LAST
;