]>
git.cameronkatri.com Git - mandoc.git/blob - tbl_data.c
1 /* $Id: tbl_data.c,v 1.53 2020/01/11 20:48:18 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011,2015,2017,2018,2019 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>
30 #include "mandoc_aux.h"
33 #include "libmandoc.h"
36 static void getdata(struct tbl_node
*, struct tbl_span
*,
37 int, const char *, int *);
38 static struct tbl_span
*newspan(struct tbl_node
*, int,
43 getdata(struct tbl_node
*tbl
, struct tbl_span
*dp
,
44 int ln
, const char *p
, int *pos
)
46 struct tbl_dat
*dat
, *pdat
;
52 * Determine the length of the string in the cell
53 * and advance the parse point to the end of the cell.
57 while (p
[*pos
] != '\0' && p
[*pos
] != tbl
->opts
.tab
)
60 /* Advance to the next layout cell, skipping spanners. */
62 cp
= dp
->last
== NULL
? dp
->layout
->first
: dp
->last
->layout
->next
;
63 while (cp
!= NULL
&& cp
->pos
== TBL_CELL_SPAN
)
67 * If the current layout row is out of cells, allocate
68 * a new cell if another row of the table has at least
69 * this number of columns, or discard the input if we
70 * are beyond the last column of the table as a whole.
74 if (dp
->layout
->last
->col
+ 1 < dp
->opts
->cols
) {
75 cp
= mandoc_calloc(1, sizeof(*cp
));
76 cp
->pos
= TBL_CELL_LEFT
;
77 cp
->spacing
= SIZE_MAX
;
78 dp
->layout
->last
->next
= cp
;
79 cp
->col
= dp
->layout
->last
->col
+ 1;
80 dp
->layout
->last
= cp
;
82 mandoc_msg(MANDOCERR_TBLDATA_EXTRA
,
83 ln
, sv
, "%s", p
+ sv
);
84 while (p
[*pos
] != '\0')
90 dat
= mandoc_malloc(sizeof(*dat
));
97 dat
->pos
= TBL_DATA_NONE
;
100 * Increment the number of vertical spans in a data cell above,
101 * if this cell vertically extends one or more cells above.
102 * The iteration must be done over data rows,
103 * not over layout rows, because one layout row
104 * can be reused for more than one data row.
107 if (cp
->pos
== TBL_CELL_DOWN
||
108 (*pos
- sv
== 2 && p
[sv
] == '\\' && p
[sv
+ 1] == '^')) {
110 while ((pdp
= pdp
->prev
) != NULL
) {
112 while (pdat
!= NULL
&&
113 pdat
->layout
->col
< dat
->layout
->col
)
117 if (pdat
->layout
->pos
!= TBL_CELL_DOWN
&&
118 strcmp(pdat
->string
, "\\^") != 0) {
126 * Count the number of horizontal spans to the right of this cell.
127 * This is purely a matter of the layout, independent of the data.
130 for (cp
= cp
->next
; cp
!= NULL
; cp
= cp
->next
)
131 if (cp
->pos
== TBL_CELL_SPAN
)
136 /* Append the new data cell to the data row. */
138 if (dp
->last
== NULL
)
141 dp
->last
->next
= dat
;
145 * Check for a continued-data scope opening. This consists of a
146 * trailing `T{' at the end of the line. Subsequent lines,
147 * until a standalone `T}', are included in our cell.
150 if (*pos
- sv
== 2 && p
[sv
] == 'T' && p
[sv
+ 1] == '{') {
151 tbl
->part
= TBL_PART_CDATA
;
155 dat
->string
= mandoc_strndup(p
+ sv
, *pos
- sv
);
160 if ( ! strcmp(dat
->string
, "_"))
161 dat
->pos
= TBL_DATA_HORIZ
;
162 else if ( ! strcmp(dat
->string
, "="))
163 dat
->pos
= TBL_DATA_DHORIZ
;
164 else if ( ! strcmp(dat
->string
, "\\_"))
165 dat
->pos
= TBL_DATA_NHORIZ
;
166 else if ( ! strcmp(dat
->string
, "\\="))
167 dat
->pos
= TBL_DATA_NDHORIZ
;
169 dat
->pos
= TBL_DATA_DATA
;
171 if ((dat
->layout
->pos
== TBL_CELL_HORIZ
||
172 dat
->layout
->pos
== TBL_CELL_DHORIZ
||
173 dat
->layout
->pos
== TBL_CELL_DOWN
) &&
174 dat
->pos
== TBL_DATA_DATA
&& *dat
->string
!= '\0')
175 mandoc_msg(MANDOCERR_TBLDATA_SPAN
,
176 ln
, sv
, "%s", dat
->string
);
180 tbl_cdata(struct tbl_node
*tbl
, int ln
, const char *p
, int pos
)
185 dat
= tbl
->last_span
->last
;
187 if (p
[pos
] == 'T' && p
[pos
+ 1] == '}') {
189 if (p
[pos
] == tbl
->opts
.tab
) {
190 tbl
->part
= TBL_PART_DATA
;
192 while (p
[pos
] != '\0')
193 getdata(tbl
, tbl
->last_span
, ln
, p
, &pos
);
195 } else if (p
[pos
] == '\0') {
196 tbl
->part
= TBL_PART_DATA
;
200 /* Fallthrough: T} is part of a word. */
203 dat
->pos
= TBL_DATA_DATA
;
206 if (dat
->string
!= NULL
) {
207 sz
= strlen(p
+ pos
) + strlen(dat
->string
) + 2;
208 dat
->string
= mandoc_realloc(dat
->string
, sz
);
209 (void)strlcat(dat
->string
, " ", sz
);
210 (void)strlcat(dat
->string
, p
+ pos
, sz
);
212 dat
->string
= mandoc_strdup(p
+ pos
);
214 if (dat
->layout
->pos
== TBL_CELL_DOWN
)
215 mandoc_msg(MANDOCERR_TBLDATA_SPAN
,
216 ln
, pos
, "%s", dat
->string
);
219 static struct tbl_span
*
220 newspan(struct tbl_node
*tbl
, int line
, struct tbl_row
*rp
)
224 dp
= mandoc_calloc(1, sizeof(*dp
));
226 dp
->opts
= &tbl
->opts
;
228 dp
->prev
= tbl
->last_span
;
230 if (dp
->prev
== NULL
) {
231 tbl
->first_span
= dp
;
232 tbl
->current_span
= NULL
;
241 tbl_data(struct tbl_node
*tbl
, int ln
, const char *p
, int pos
)
247 rp
= (sp
= tbl
->last_span
) == NULL
? tbl
->first_row
:
248 sp
->pos
== TBL_SPAN_DATA
&& sp
->layout
->next
!= NULL
?
249 sp
->layout
->next
: sp
->layout
;
257 * Empty request lines must be handled here
258 * and cannot be discarded in roff_parseln()
259 * because in the layout section, they
260 * are significant and end the layout.
264 sp
= newspan(tbl
, ln
, rp
);
265 sp
->pos
= TBL_SPAN_HORIZ
;
268 sp
= newspan(tbl
, ln
, rp
);
269 sp
->pos
= TBL_SPAN_DHORIZ
;
277 * If the layout row contains nothing but horizontal lines,
278 * allocate an empty span for it and assign the current span
279 * to the next layout row accepting data.
282 while (rp
->next
!= NULL
) {
283 if (rp
->last
->col
+ 1 < tbl
->opts
.cols
)
285 for (cp
= rp
->first
; cp
!= NULL
; cp
= cp
->next
)
286 if (cp
->pos
!= TBL_CELL_HORIZ
&&
287 cp
->pos
!= TBL_CELL_DHORIZ
)
291 sp
= newspan(tbl
, ln
, rp
);
292 sp
->pos
= TBL_SPAN_DATA
;
296 /* Process a real data row. */
298 sp
= newspan(tbl
, ln
, rp
);
299 sp
->pos
= TBL_SPAN_DATA
;
300 while (p
[pos
] != '\0')
301 getdata(tbl
, sp
, ln
, p
, &pos
);