]>
git.cameronkatri.com Git - mandoc.git/blob - tbl_data.c
1 /* $Id: tbl_data.c,v 1.51 2018/12/14 05:18:03 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011, 2015, 2017, 2018 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"
32 #include "libmandoc.h"
35 static void getdata(struct tbl_node
*, struct tbl_span
*,
36 int, const char *, int *);
37 static struct tbl_span
*newspan(struct tbl_node
*, int,
42 getdata(struct tbl_node
*tbl
, struct tbl_span
*dp
,
43 int ln
, const char *p
, int *pos
)
45 struct tbl_dat
*dat
, *pdat
;
51 * Determine the length of the string in the cell
52 * and advance the parse point to the end of the cell.
56 while (p
[*pos
] != '\0' && p
[*pos
] != tbl
->opts
.tab
)
59 /* Advance to the next layout cell, skipping spanners. */
61 cp
= dp
->last
== NULL
? dp
->layout
->first
: dp
->last
->layout
->next
;
62 while (cp
!= NULL
&& cp
->pos
== TBL_CELL_SPAN
)
66 * If the current layout row is out of cells, allocate
67 * a new cell if another row of the table has at least
68 * this number of columns, or discard the input if we
69 * are beyond the last column of the table as a whole.
73 if (dp
->layout
->last
->col
+ 1 < dp
->opts
->cols
) {
74 cp
= mandoc_calloc(1, sizeof(*cp
));
75 cp
->pos
= TBL_CELL_LEFT
;
76 dp
->layout
->last
->next
= cp
;
77 cp
->col
= dp
->layout
->last
->col
+ 1;
78 dp
->layout
->last
= cp
;
80 mandoc_msg(MANDOCERR_TBLDATA_EXTRA
,
81 ln
, sv
, "%s", p
+ sv
);
82 while (p
[*pos
] != '\0')
88 dat
= mandoc_malloc(sizeof(*dat
));
95 dat
->pos
= TBL_DATA_NONE
;
98 * Increment the number of vertical spans in a data cell above,
99 * if this cell vertically extends one or more cells above.
100 * The iteration must be done over data rows,
101 * not over layout rows, because one layout row
102 * can be reused for more than one data row.
105 if (cp
->pos
== TBL_CELL_DOWN
||
106 (*pos
- sv
== 2 && p
[sv
] == '\\' && p
[sv
+ 1] == '^')) {
108 while ((pdp
= pdp
->prev
) != NULL
) {
110 while (pdat
!= NULL
&&
111 pdat
->layout
->col
< dat
->layout
->col
)
115 if (pdat
->layout
->pos
!= TBL_CELL_DOWN
&&
116 strcmp(pdat
->string
, "\\^") != 0) {
124 * Count the number of horizontal spans to the right of this cell.
125 * This is purely a matter of the layout, independent of the data.
128 for (cp
= cp
->next
; cp
!= NULL
; cp
= cp
->next
)
129 if (cp
->pos
== TBL_CELL_SPAN
)
134 /* Append the new data cell to the data row. */
136 if (dp
->last
== NULL
)
139 dp
->last
->next
= dat
;
143 * Check for a continued-data scope opening. This consists of a
144 * trailing `T{' at the end of the line. Subsequent lines,
145 * until a standalone `T}', are included in our cell.
148 if (*pos
- sv
== 2 && p
[sv
] == 'T' && p
[sv
+ 1] == '{') {
149 tbl
->part
= TBL_PART_CDATA
;
153 dat
->string
= mandoc_strndup(p
+ sv
, *pos
- sv
);
158 if ( ! strcmp(dat
->string
, "_"))
159 dat
->pos
= TBL_DATA_HORIZ
;
160 else if ( ! strcmp(dat
->string
, "="))
161 dat
->pos
= TBL_DATA_DHORIZ
;
162 else if ( ! strcmp(dat
->string
, "\\_"))
163 dat
->pos
= TBL_DATA_NHORIZ
;
164 else if ( ! strcmp(dat
->string
, "\\="))
165 dat
->pos
= TBL_DATA_NDHORIZ
;
167 dat
->pos
= TBL_DATA_DATA
;
169 if ((dat
->layout
->pos
== TBL_CELL_HORIZ
||
170 dat
->layout
->pos
== TBL_CELL_DHORIZ
||
171 dat
->layout
->pos
== TBL_CELL_DOWN
) &&
172 dat
->pos
== TBL_DATA_DATA
&& *dat
->string
!= '\0')
173 mandoc_msg(MANDOCERR_TBLDATA_SPAN
,
174 ln
, sv
, "%s", dat
->string
);
178 tbl_cdata(struct tbl_node
*tbl
, int ln
, const char *p
, int pos
)
183 dat
= tbl
->last_span
->last
;
185 if (p
[pos
] == 'T' && p
[pos
+ 1] == '}') {
187 if (p
[pos
] == tbl
->opts
.tab
) {
188 tbl
->part
= TBL_PART_DATA
;
190 while (p
[pos
] != '\0')
191 getdata(tbl
, tbl
->last_span
, ln
, p
, &pos
);
193 } else if (p
[pos
] == '\0') {
194 tbl
->part
= TBL_PART_DATA
;
198 /* Fallthrough: T} is part of a word. */
201 dat
->pos
= TBL_DATA_DATA
;
204 if (dat
->string
!= NULL
) {
205 sz
= strlen(p
+ pos
) + strlen(dat
->string
) + 2;
206 dat
->string
= mandoc_realloc(dat
->string
, sz
);
207 (void)strlcat(dat
->string
, " ", sz
);
208 (void)strlcat(dat
->string
, p
+ pos
, sz
);
210 dat
->string
= mandoc_strdup(p
+ pos
);
212 if (dat
->layout
->pos
== TBL_CELL_DOWN
)
213 mandoc_msg(MANDOCERR_TBLDATA_SPAN
,
214 ln
, pos
, "%s", dat
->string
);
217 static struct tbl_span
*
218 newspan(struct tbl_node
*tbl
, int line
, struct tbl_row
*rp
)
222 dp
= mandoc_calloc(1, sizeof(*dp
));
224 dp
->opts
= &tbl
->opts
;
226 dp
->prev
= tbl
->last_span
;
228 if (dp
->prev
== NULL
) {
229 tbl
->first_span
= dp
;
230 tbl
->current_span
= NULL
;
239 tbl_data(struct tbl_node
*tbl
, int ln
, const char *p
, int pos
)
245 rp
= (sp
= tbl
->last_span
) == NULL
? tbl
->first_row
:
246 sp
->pos
== TBL_SPAN_DATA
&& sp
->layout
->next
!= NULL
?
247 sp
->layout
->next
: sp
->layout
;
251 if ( ! strcmp(p
, "_")) {
252 sp
= newspan(tbl
, ln
, rp
);
253 sp
->pos
= TBL_SPAN_HORIZ
;
255 } else if ( ! strcmp(p
, "=")) {
256 sp
= newspan(tbl
, ln
, rp
);
257 sp
->pos
= TBL_SPAN_DHORIZ
;
262 * If the layout row contains nothing but horizontal lines,
263 * allocate an empty span for it and assign the current span
264 * to the next layout row accepting data.
267 while (rp
->next
!= NULL
) {
268 if (rp
->last
->col
+ 1 < tbl
->opts
.cols
)
270 for (cp
= rp
->first
; cp
!= NULL
; cp
= cp
->next
)
271 if (cp
->pos
!= TBL_CELL_HORIZ
&&
272 cp
->pos
!= TBL_CELL_DHORIZ
)
276 sp
= newspan(tbl
, ln
, rp
);
277 sp
->pos
= TBL_SPAN_DATA
;
281 /* Process a real data row. */
283 sp
= newspan(tbl
, ln
, rp
);
284 sp
->pos
= TBL_SPAN_DATA
;
285 while (p
[pos
] != '\0')
286 getdata(tbl
, sp
, ln
, p
, &pos
);