]>
git.cameronkatri.com Git - mandoc.git/blob - tbl.c
1 /* $Id: tbl.c,v 1.22 2011/01/25 12:24:27 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.
26 #include "libmandoc.h"
30 tbl_read(struct tbl_node
*tbl
, int ln
, const char *p
, int offs
)
36 len
= (int)strlen(cp
);
39 * If we're in the options section and we don't have a
40 * terminating semicolon, assume we've moved directly into the
41 * layout section. No need to report a warning: this is,
42 * apparently, standard behaviour.
45 if (TBL_PART_OPTS
== tbl
->part
&& len
)
46 if (';' != cp
[len
- 1])
47 tbl
->part
= TBL_PART_LAYOUT
;
49 /* Now process each logical section of the table. */
53 return(tbl_option(tbl
, ln
, p
) ? ROFF_IGN
: ROFF_ERR
);
54 case (TBL_PART_LAYOUT
):
55 return(tbl_layout(tbl
, ln
, p
) ? ROFF_IGN
: ROFF_ERR
);
56 case (TBL_PART_CDATA
):
57 return(tbl_cdata(tbl
, ln
, p
) ? ROFF_TBL
: ROFF_IGN
);
63 * This only returns zero if the line is empty, so we ignore it
66 return(tbl_data(tbl
, ln
, p
) ? ROFF_TBL
: ROFF_IGN
);
70 tbl_alloc(int pos
, int line
, void *data
, const mandocmsg msg
)
74 p
= mandoc_calloc(1, sizeof(struct tbl_node
));
79 p
->part
= TBL_PART_OPTS
;
81 p
->opts
.linesize
= 12;
82 p
->opts
.decimal
= '.';
87 tbl_free(struct tbl_node
*p
)
95 while (NULL
!= (rp
= p
->first_row
)) {
96 p
->first_row
= rp
->next
;
105 while (NULL
!= (sp
= p
->first_span
)) {
106 p
->first_span
= sp
->next
;
109 sp
->first
= dp
->next
;
117 while (NULL
!= (hp
= p
->first_head
)) {
118 p
->first_head
= hp
->next
;
126 tbl_restart(int line
, int pos
, struct tbl_node
*tbl
)
128 if (TBL_PART_CDATA
== tbl
->part
)
129 TBL_MSG(tbl
, MANDOCERR_TBLBLOCK
, tbl
->line
, tbl
->pos
);
131 tbl
->part
= TBL_PART_LAYOUT
;
135 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
136 TBL_MSG(tbl
, MANDOCERR_TBLNODATA
, tbl
->line
, tbl
->pos
);
139 const struct tbl_span
*
140 tbl_span(struct tbl_node
*tbl
)
142 struct tbl_span
*span
;
145 span
= tbl
->current_span
? tbl
->current_span
->next
148 tbl
->current_span
= span
;
153 tbl_end(struct tbl_node
*tbl
)
156 if (NULL
== tbl
->first_span
|| NULL
== tbl
->first_span
->first
)
157 TBL_MSG(tbl
, MANDOCERR_TBLNODATA
, tbl
->line
, tbl
->pos
);
160 tbl
->last_span
->flags
|= TBL_SPAN_LAST
;
162 if (TBL_PART_CDATA
== tbl
->part
)
163 TBL_MSG(tbl
, MANDOCERR_TBLBLOCK
, tbl
->line
, tbl
->pos
);