]>
git.cameronkatri.com Git - mandoc.git/blob - tbl.c
184b7da4f74881a059a4e599305c20cf11aa46ba
1 /* $Id: tbl.c,v 1.33 2015/01/26 00:57:22 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011, 2015 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 * In the options section, proceed to the layout section
42 * after a semicolon, or right away if there is no semicolon.
43 * Ignore semicolons in arguments.
46 if (tbl
->part
== TBL_PART_OPTS
) {
47 tbl
->part
= TBL_PART_LAYOUT
;
49 for (cp
= p
; *cp
!= '\0'; cp
++) {
67 tbl_option(tbl
, ln
, p
);
68 if (*(p
= cp
+ 1) == '\0')
73 /* Process the other section types. */
77 tbl_layout(tbl
, ln
, p
);
80 return(tbl_cdata(tbl
, ln
, p
) ? ROFF_TBL
: ROFF_IGN
);
90 tbl_alloc(int pos
, int line
, struct mparse
*parse
)
94 tbl
= mandoc_calloc(1, sizeof(struct tbl_node
));
98 tbl
->part
= TBL_PART_OPTS
;
100 tbl
->opts
.decimal
= '.';
105 tbl_free(struct tbl_node
*tbl
)
113 while (NULL
!= (rp
= tbl
->first_row
)) {
114 tbl
->first_row
= rp
->next
;
117 rp
->first
= cp
->next
;
123 while (NULL
!= (sp
= tbl
->first_span
)) {
124 tbl
->first_span
= sp
->next
;
127 sp
->first
= dp
->next
;
135 while (NULL
!= (hp
= tbl
->first_head
)) {
136 tbl
->first_head
= hp
->next
;
144 tbl_restart(int line
, int pos
, struct tbl_node
*tbl
)
146 if (TBL_PART_CDATA
== tbl
->part
)
147 mandoc_msg(MANDOCERR_TBLBLOCK
, tbl
->parse
,
148 tbl
->line
, tbl
->pos
, NULL
);
150 tbl
->part
= TBL_PART_LAYOUT
;
154 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
155 mandoc_msg(MANDOCERR_TBLNODATA
, tbl
->parse
,
156 tbl
->line
, tbl
->pos
, NULL
);
159 const struct tbl_span
*
160 tbl_span(struct tbl_node
*tbl
)
162 struct tbl_span
*span
;
165 span
= tbl
->current_span
? tbl
->current_span
->next
168 tbl
->current_span
= span
;
173 tbl_end(struct tbl_node
**tblp
)
175 struct tbl_node
*tbl
;
180 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
181 mandoc_msg(MANDOCERR_TBLNODATA
, tbl
->parse
,
182 tbl
->line
, tbl
->pos
, NULL
);
185 tbl
->last_span
->flags
|= TBL_SPAN_LAST
;
187 if (TBL_PART_CDATA
== tbl
->part
)
188 mandoc_msg(MANDOCERR_TBLBLOCK
, tbl
->parse
,
189 tbl
->line
, tbl
->pos
, NULL
);