]>
git.cameronkatri.com Git - mandoc.git/blob - tbl_data.c
1 /* $Id: tbl_data.c,v 1.22 2011/02/06 22:02:58 kristaps 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.
29 #include "libmandoc.h"
32 static int data(struct tbl_node
*, struct tbl_span
*,
33 int, const char *, int *);
34 static struct tbl_span
*newspan(struct tbl_node
*, int,
38 data(struct tbl_node
*tbl
, struct tbl_span
*dp
,
39 int ln
, const char *p
, int *pos
)
46 if (dp
->last
&& dp
->last
->layout
)
47 cp
= dp
->last
->layout
->next
;
48 else if (NULL
== dp
->last
)
49 cp
= dp
->layout
->first
;
52 * Skip over spanners and vertical lines to data formats, since
53 * we want to match data with data layout cells in the header.
56 while (cp
&& (TBL_CELL_VERT
== cp
->pos
||
57 TBL_CELL_DVERT
== cp
->pos
||
58 TBL_CELL_SPAN
== cp
->pos
))
62 * Stop processing when we reach the end of the available layout
63 * cells. This means that we have extra input.
67 TBL_MSG(tbl
, MANDOCERR_TBLEXTRADAT
, ln
, *pos
);
68 /* Skip to the end... */
74 dat
= mandoc_calloc(1, sizeof(struct tbl_dat
));
76 dat
->pos
= TBL_DATA_NONE
;
78 assert(TBL_CELL_SPAN
!= cp
->pos
);
80 for (spans
= 0, cp
= cp
->next
; cp
; cp
= cp
->next
)
81 if (TBL_CELL_SPAN
== cp
->pos
)
92 dp
->last
= dp
->first
= dat
;
95 while (p
[*pos
] && p
[*pos
] != tbl
->opts
.tab
)
99 * Check for a continued-data scope opening. This consists of a
100 * trailing `T{' at the end of the line. Subsequent lines,
101 * until a standalone `T}', are included in our cell.
104 if (*pos
- sv
== 2 && 'T' == p
[sv
] && '{' == p
[sv
+ 1]) {
105 tbl
->part
= TBL_PART_CDATA
;
109 dat
->string
= mandoc_malloc(*pos
- sv
+ 1);
110 memcpy(dat
->string
, &p
[sv
], *pos
- sv
);
111 dat
->string
[*pos
- sv
] = '\0';
116 if ( ! strcmp(dat
->string
, "_"))
117 dat
->pos
= TBL_DATA_HORIZ
;
118 else if ( ! strcmp(dat
->string
, "="))
119 dat
->pos
= TBL_DATA_DHORIZ
;
120 else if ( ! strcmp(dat
->string
, "\\_"))
121 dat
->pos
= TBL_DATA_NHORIZ
;
122 else if ( ! strcmp(dat
->string
, "\\="))
123 dat
->pos
= TBL_DATA_NDHORIZ
;
125 dat
->pos
= TBL_DATA_DATA
;
127 if (TBL_CELL_HORIZ
== dat
->layout
->pos
||
128 TBL_CELL_DHORIZ
== dat
->layout
->pos
||
129 TBL_CELL_DOWN
== dat
->layout
->pos
)
130 if (TBL_DATA_DATA
== dat
->pos
&& '\0' != *dat
->string
)
131 TBL_MSG(tbl
, MANDOCERR_TBLIGNDATA
, ln
, sv
);
138 tbl_cdata(struct tbl_node
*tbl
, int ln
, const char *p
)
146 dat
= tbl
->last_span
->last
;
148 if (p
[pos
] == 'T' && p
[pos
+ 1] == '}') {
150 if (p
[pos
] == tbl
->opts
.tab
) {
151 tbl
->part
= TBL_PART_DATA
;
153 return(data(tbl
, tbl
->last_span
, ln
, p
, &pos
));
154 } else if ('\0' == p
[pos
]) {
155 tbl
->part
= TBL_PART_DATA
;
159 /* Fallthrough: T} is part of a word. */
162 dat
->pos
= TBL_DATA_DATA
;
165 sz
= strlen(p
) + strlen(dat
->string
) + 2;
166 dat
->string
= mandoc_realloc(dat
->string
, sz
);
167 strlcat(dat
->string
, " ", sz
);
168 strlcat(dat
->string
, p
, sz
);
170 dat
->string
= mandoc_strdup(p
);
172 if (TBL_CELL_DOWN
== dat
->layout
->pos
)
173 TBL_MSG(tbl
, MANDOCERR_TBLIGNDATA
, ln
, pos
);
178 static struct tbl_span
*
179 newspan(struct tbl_node
*tbl
, int line
, struct tbl_row
*rp
)
183 dp
= mandoc_calloc(1, sizeof(struct tbl_span
));
185 dp
->tbl
= &tbl
->opts
;
187 dp
->head
= tbl
->first_head
;
189 if (tbl
->last_span
) {
190 tbl
->last_span
->next
= dp
;
193 tbl
->last_span
= tbl
->first_span
= dp
;
194 tbl
->current_span
= NULL
;
195 dp
->flags
|= TBL_SPAN_FIRST
;
202 tbl_data(struct tbl_node
*tbl
, int ln
, const char *p
)
210 if ('\0' == p
[pos
]) {
211 TBL_MSG(tbl
, MANDOCERR_TBL
, ln
, pos
);
216 * Choose a layout row: take the one following the last parsed
217 * span's. If that doesn't exist, use the last parsed span's.
218 * If there's no last parsed span, use the first row. Lastly,
219 * if the last span was a horizontal line, use the same layout
220 * (it doesn't "consume" the layout).
223 if (tbl
->last_span
) {
224 assert(tbl
->last_span
->layout
);
225 if (tbl
->last_span
->pos
== TBL_SPAN_DATA
) {
226 for (rp
= tbl
->last_span
->layout
->next
;
227 rp
&& rp
->first
; rp
= rp
->next
) {
228 switch (rp
->first
->pos
) {
229 case (TBL_CELL_HORIZ
):
230 dp
= newspan(tbl
, ln
, rp
);
231 dp
->pos
= TBL_SPAN_HORIZ
;
233 case (TBL_CELL_DHORIZ
):
234 dp
= newspan(tbl
, ln
, rp
);
235 dp
->pos
= TBL_SPAN_DHORIZ
;
243 rp
= tbl
->last_span
->layout
;
246 rp
= tbl
->last_span
->layout
;
252 dp
= newspan(tbl
, ln
, rp
);
254 if ( ! strcmp(p
, "_")) {
255 dp
->pos
= TBL_SPAN_HORIZ
;
257 } else if ( ! strcmp(p
, "=")) {
258 dp
->pos
= TBL_SPAN_DHORIZ
;
262 dp
->pos
= TBL_SPAN_DATA
;
264 /* This returns 0 when TBL_PART_CDATA is entered. */
266 while ('\0' != p
[pos
])
267 if ( ! data(tbl
, dp
, ln
, p
, &pos
))