]>
git.cameronkatri.com Git - mandoc.git/blob - tbl.c
1 /* $Id: tbl.c,v 1.32 2015/01/21 00:47:04 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
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.
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.
20 #include <sys/types.h>
29 #include "mandoc_aux.h"
30 #include "libmandoc.h"
35 tbl_read(struct tbl_node
*tbl
, int ln
, const char *p
, int offs
)
41 len
= (int)strlen(cp
);
44 * If we're in the options section and we don't have a
45 * terminating semicolon, assume we've moved directly into the
46 * layout section. No need to report a warning: this is,
47 * apparently, standard behaviour.
50 if (TBL_PART_OPTS
== tbl
->part
&& len
)
51 if (';' != cp
[len
- 1])
52 tbl
->part
= TBL_PART_LAYOUT
;
54 /* Now process each logical section of the table. */
58 tbl_option(tbl
, ln
, p
);
61 tbl_layout(tbl
, ln
, p
);
64 return(tbl_cdata(tbl
, ln
, p
) ? ROFF_TBL
: ROFF_IGN
);
74 tbl_alloc(int pos
, int line
, struct mparse
*parse
)
78 tbl
= mandoc_calloc(1, sizeof(struct tbl_node
));
82 tbl
->part
= TBL_PART_OPTS
;
84 tbl
->opts
.linesize
= 12;
85 tbl
->opts
.decimal
= '.';
90 tbl_free(struct tbl_node
*tbl
)
98 while (NULL
!= (rp
= tbl
->first_row
)) {
99 tbl
->first_row
= rp
->next
;
102 rp
->first
= cp
->next
;
108 while (NULL
!= (sp
= tbl
->first_span
)) {
109 tbl
->first_span
= sp
->next
;
112 sp
->first
= dp
->next
;
120 while (NULL
!= (hp
= tbl
->first_head
)) {
121 tbl
->first_head
= hp
->next
;
129 tbl_restart(int line
, int pos
, struct tbl_node
*tbl
)
131 if (TBL_PART_CDATA
== tbl
->part
)
132 mandoc_msg(MANDOCERR_TBLBLOCK
, tbl
->parse
,
133 tbl
->line
, tbl
->pos
, NULL
);
135 tbl
->part
= TBL_PART_LAYOUT
;
139 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
140 mandoc_msg(MANDOCERR_TBLNODATA
, tbl
->parse
,
141 tbl
->line
, tbl
->pos
, NULL
);
144 const struct tbl_span
*
145 tbl_span(struct tbl_node
*tbl
)
147 struct tbl_span
*span
;
150 span
= tbl
->current_span
? tbl
->current_span
->next
153 tbl
->current_span
= span
;
158 tbl_end(struct tbl_node
**tblp
)
160 struct tbl_node
*tbl
;
165 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
166 mandoc_msg(MANDOCERR_TBLNODATA
, tbl
->parse
,
167 tbl
->line
, tbl
->pos
, NULL
);
170 tbl
->last_span
->flags
|= TBL_SPAN_LAST
;
172 if (TBL_PART_CDATA
== tbl
->part
)
173 mandoc_msg(MANDOCERR_TBLBLOCK
, tbl
->parse
,
174 tbl
->line
, tbl
->pos
, NULL
);