]>
git.cameronkatri.com Git - mandoc.git/blob - tbl_term.c
1 /* $Id: tbl_term.c,v 1.66 2018/12/12 21:54:35 schwarze Exp $ */
3 * Copyright (c) 2009, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011-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>
33 #define IS_HORIZ(cp) ((cp)->pos == TBL_CELL_HORIZ || \
34 (cp)->pos == TBL_CELL_DHORIZ)
37 static size_t term_tbl_len(size_t, void *);
38 static size_t term_tbl_strlen(const char *, void *);
39 static size_t term_tbl_sulen(const struct roffsu
*, void *);
40 static void tbl_data(struct termp
*, const struct tbl_opts
*,
41 const struct tbl_cell
*,
42 const struct tbl_dat
*,
43 const struct roffcol
*);
44 static void tbl_direct_border(struct termp
*, int, size_t);
45 static void tbl_fill_border(struct termp
*, int, size_t);
46 static void tbl_fill_char(struct termp
*, char, size_t);
47 static void tbl_fill_string(struct termp
*, const char *, size_t);
48 static void tbl_hrule(struct termp
*, const struct tbl_span
*,
49 const struct tbl_span
*, int);
50 static void tbl_literal(struct termp
*, const struct tbl_dat
*,
51 const struct roffcol
*);
52 static void tbl_number(struct termp
*, const struct tbl_opts
*,
53 const struct tbl_dat
*,
54 const struct roffcol
*);
55 static void tbl_word(struct termp
*, const struct tbl_dat
*);
59 * The following border-character tables are indexed
60 * by ternary (3-based) numbers, as opposed to binary or decimal.
61 * Each ternary digit describes the line width in one direction:
62 * 0 means no line, 1 single or light line, 2 double or heavy line.
65 /* Positional values of the four directions. */
69 #define BUP (3 * 3 * 3)
70 #define BHORIZ (BLEFT + BRIGHT)
72 /* Code points to use for each combination of widths. */
73 static const int borders_utf8
[81] = {
74 0x0020, 0x2576, 0x257a, /* 000 right */
75 0x2577, 0x250c, 0x250d, /* 001 down */
76 0x257b, 0x250e, 0x250f, /* 002 */
77 0x2574, 0x2500, 0x257c, /* 010 left */
78 0x2510, 0x252c, 0x252e, /* 011 left down */
79 0x2512, 0x2530, 0x2532, /* 012 */
80 0x2578, 0x257e, 0x2501, /* 020 left */
81 0x2511, 0x252d, 0x252f, /* 021 left down */
82 0x2513, 0x2531, 0x2533, /* 022 */
83 0x2575, 0x2514, 0x2515, /* 100 up */
84 0x2502, 0x251c, 0x251d, /* 101 up down */
85 0x257d, 0x251f, 0x2522, /* 102 */
86 0x2518, 0x2534, 0x2536, /* 110 up left */
87 0x2524, 0x253c, 0x253e, /* 111 all */
88 0x2527, 0x2541, 0x2546, /* 112 */
89 0x2519, 0x2535, 0x2537, /* 120 up left */
90 0x2525, 0x253d, 0x253f, /* 121 all */
91 0x252a, 0x2545, 0x2548, /* 122 */
92 0x2579, 0x2516, 0x2517, /* 200 up */
93 0x257f, 0x251e, 0x2521, /* 201 up down */
94 0x2503, 0x2520, 0x2523, /* 202 */
95 0x251a, 0x2538, 0x253a, /* 210 up left */
96 0x2526, 0x2540, 0x2544, /* 211 all */
97 0x2528, 0x2542, 0x254a, /* 212 */
98 0x251b, 0x2539, 0x253b, /* 220 up left */
99 0x2529, 0x2543, 0x2547, /* 221 all */
100 0x252b, 0x2549, 0x254b, /* 222 */
103 /* ASCII approximations for these code points, compatible with groff. */
104 static const int borders_ascii
[81] = {
105 ' ', '-', '=', /* 000 right */
106 '|', '+', '+', /* 001 down */
107 '|', '+', '+', /* 002 */
108 '-', '-', '=', /* 010 left */
109 '+', '+', '+', /* 011 left down */
110 '+', '+', '+', /* 012 */
111 '=', '=', '=', /* 020 left */
112 '+', '+', '+', /* 021 left down */
113 '+', '+', '+', /* 022 */
114 '|', '+', '+', /* 100 up */
115 '|', '+', '+', /* 101 up down */
116 '|', '+', '+', /* 102 */
117 '+', '+', '+', /* 110 up left */
118 '+', '+', '+', /* 111 all */
119 '+', '+', '+', /* 112 */
120 '+', '+', '+', /* 120 up left */
121 '+', '+', '+', /* 121 all */
122 '+', '+', '+', /* 122 */
123 '|', '+', '+', /* 200 up */
124 '|', '+', '+', /* 201 up down */
125 '|', '+', '+', /* 202 */
126 '+', '+', '+', /* 210 up left */
127 '+', '+', '+', /* 211 all */
128 '+', '+', '+', /* 212 */
129 '+', '+', '+', /* 220 up left */
130 '+', '+', '+', /* 221 all */
131 '+', '+', '+', /* 222 */
134 /* Either of the above according to the selected output encoding. */
135 static const int *borders_locale
;
139 term_tbl_sulen(const struct roffsu
*su
, void *arg
)
143 i
= term_hen((const struct termp
*)arg
, su
);
144 return i
> 0 ? i
: 0;
148 term_tbl_strlen(const char *p
, void *arg
)
150 return term_strlen((const struct termp
*)arg
, p
);
154 term_tbl_len(size_t sz
, void *arg
)
156 return term_len((const struct termp
*)arg
, sz
);
161 term_tbl(struct termp
*tp
, const struct tbl_span
*sp
)
163 const struct tbl_cell
*cp
, *cpn
, *cpp
, *cps
;
164 const struct tbl_dat
*dp
;
165 static size_t offset
;
167 int hspans
, ic
, more
;
168 int dvert
, fc
, horiz
, line
, uvert
;
170 /* Inhibit printing of spaces: we do padding ourselves. */
172 tp
->flags
|= TERMP_NOSPACE
| TERMP_NONOSPACE
;
175 * The first time we're invoked for a given table block,
176 * calculate the table widths and decimal positions.
179 if (tp
->tbl
.cols
== NULL
) {
180 borders_locale
= tp
->enc
== TERMENC_UTF8
?
181 borders_utf8
: borders_ascii
;
183 tp
->tbl
.len
= term_tbl_len
;
184 tp
->tbl
.slen
= term_tbl_strlen
;
185 tp
->tbl
.sulen
= term_tbl_sulen
;
188 tblcalc(&tp
->tbl
, sp
, tp
->tcol
->offset
, tp
->tcol
->rmargin
);
190 /* Tables leak .ta settings to subsequent text. */
192 term_tab_set(tp
, NULL
);
193 coloff
= sp
->opts
->opts
& (TBL_OPT_BOX
| TBL_OPT_DBOX
) ||
195 for (ic
= 0; ic
< sp
->opts
->cols
; ic
++) {
196 coloff
+= tp
->tbl
.cols
[ic
].width
;
197 term_tab_iset(coloff
);
198 coloff
+= tp
->tbl
.cols
[ic
].spacing
;
201 /* Center the table as a whole. */
203 offset
= tp
->tcol
->offset
;
204 if (sp
->opts
->opts
& TBL_OPT_CENTRE
) {
205 tsz
= sp
->opts
->opts
& (TBL_OPT_BOX
| TBL_OPT_DBOX
)
206 ? 2 : !!sp
->opts
->lvert
+ !!sp
->opts
->rvert
;
207 for (ic
= 0; ic
+ 1 < sp
->opts
->cols
; ic
++)
208 tsz
+= tp
->tbl
.cols
[ic
].width
+
209 tp
->tbl
.cols
[ic
].spacing
;
211 tsz
+= tp
->tbl
.cols
[sp
->opts
->cols
- 1].width
;
212 if (offset
+ tsz
> tp
->tcol
->rmargin
)
214 tp
->tcol
->offset
= offset
+ tp
->tcol
->rmargin
> tsz
?
215 (offset
+ tp
->tcol
->rmargin
- tsz
) / 2 : 0;
218 /* Horizontal frame at the start of boxed tables. */
220 if (tp
->enc
== TERMENC_ASCII
&&
221 sp
->opts
->opts
& TBL_OPT_DBOX
)
222 tbl_hrule(tp
, NULL
, sp
, TBL_OPT_DBOX
);
223 if (sp
->opts
->opts
& (TBL_OPT_DBOX
| TBL_OPT_BOX
))
224 tbl_hrule(tp
, NULL
, sp
, TBL_OPT_BOX
);
227 /* Set up the columns. */
229 tp
->flags
|= TERMP_MULTICOL
;
233 case TBL_SPAN_DHORIZ
:
238 term_setcol(tp
, sp
->opts
->cols
+ 2);
239 coloff
= tp
->tcol
->offset
;
241 /* Set up a column for a left vertical frame. */
243 if (sp
->opts
->opts
& (TBL_OPT_BOX
| TBL_OPT_DBOX
) ||
246 tp
->tcol
->rmargin
= coloff
;
248 /* Set up the data columns. */
252 for (ic
= 0; ic
< sp
->opts
->cols
; ic
++) {
255 tp
->tcol
->offset
= coloff
;
257 coloff
+= tp
->tbl
.cols
[ic
].width
;
258 tp
->tcol
->rmargin
= coloff
;
259 if (ic
+ 1 < sp
->opts
->cols
)
260 coloff
+= tp
->tbl
.cols
[ic
].spacing
;
268 if (ic
|| sp
->layout
->first
->pos
!= TBL_CELL_SPAN
)
272 /* Set up a column for a right vertical frame. */
275 tp
->tcol
->offset
= coloff
+ 1;
276 tp
->tcol
->rmargin
= tp
->maxrmargin
;
278 /* Spans may have reduced the number of columns. */
280 tp
->lasttcol
= tp
->tcol
- tp
->tcols
;
282 /* Fill the buffers for all data columns. */
284 tp
->tcol
= tp
->tcols
;
285 cp
= cpn
= sp
->layout
->first
;
288 for (ic
= 0; ic
< sp
->opts
->cols
; ic
++) {
299 tbl_data(tp
, sp
->opts
, cp
, dp
, tp
->tbl
.cols
+ ic
);
303 if (cp
->pos
!= TBL_CELL_SPAN
)
310 /* Print the vertical frame at the start of each row. */
312 tp
->tcol
= tp
->tcols
;
313 uvert
= dvert
= sp
->opts
->opts
& TBL_OPT_DBOX
? 2 :
314 sp
->opts
->opts
& TBL_OPT_BOX
? 1 : 0;
315 if (sp
->pos
== TBL_SPAN_DATA
&& uvert
< sp
->layout
->vert
)
316 uvert
= dvert
= sp
->layout
->vert
;
317 if (sp
->next
!= NULL
&& sp
->next
->pos
== TBL_SPAN_DATA
&&
318 dvert
< sp
->next
->layout
->vert
)
319 dvert
= sp
->next
->layout
->vert
;
320 if (sp
->prev
!= NULL
&& uvert
< sp
->prev
->layout
->vert
&&
321 (horiz
|| (IS_HORIZ(sp
->layout
->first
) &&
322 !IS_HORIZ(sp
->prev
->layout
->first
))))
323 uvert
= sp
->prev
->layout
->vert
;
324 line
= sp
->pos
== TBL_SPAN_DHORIZ
||
325 sp
->layout
->first
->pos
== TBL_CELL_DHORIZ
? 2 :
326 sp
->pos
== TBL_SPAN_HORIZ
||
327 sp
->layout
->first
->pos
== TBL_CELL_HORIZ
? 1 : 0;
328 fc
= BUP
* uvert
+ BDOWN
* dvert
+ BRIGHT
* line
;
329 if (uvert
> 0 || dvert
> 0 || (horiz
&& sp
->opts
->lvert
)) {
330 (*tp
->advance
)(tp
, tp
->tcols
->offset
);
331 tp
->viscol
= tp
->tcol
->offset
;
332 tbl_direct_border(tp
, fc
, 1);
335 /* Print the data cells. */
339 tbl_hrule(tp
, sp
->prev
, sp
, 0);
341 cp
= sp
->layout
->first
;
342 cpn
= sp
->next
== NULL
? NULL
:
343 sp
->next
->layout
->first
;
344 cpp
= sp
->prev
== NULL
? NULL
:
345 sp
->prev
->layout
->first
;
348 for (ic
= 0; ic
< sp
->opts
->cols
; ic
++) {
351 * Figure out whether to print a
352 * vertical line after this cell
353 * and advance to next layout cell.
356 uvert
= dvert
= fc
= 0;
359 while (cps
->next
!= NULL
&&
360 cps
->next
->pos
== TBL_CELL_SPAN
)
362 if (sp
->pos
== TBL_SPAN_DATA
)
363 uvert
= dvert
= cps
->vert
;
368 case TBL_CELL_DHORIZ
:
376 if (uvert
< cpp
->vert
&&
382 IS_HORIZ(cp
->next
) &&
383 !IS_HORIZ(cpp
->next
))))
387 if (sp
->opts
->opts
& TBL_OPT_ALLBOX
) {
395 (dvert
< cpn
->vert
&&
396 tp
->enc
== TERMENC_UTF8
))
402 * Skip later cells in a span,
403 * figure out whether to start a span,
404 * and advance to next data cell.
414 if (ic
|| sp
->layout
->first
->pos
420 * Print one line of text in the cell
421 * and remember whether there is more.
425 if (tp
->tcol
->col
< tp
->tcol
->lastcol
)
427 if (tp
->tcol
->col
< tp
->tcol
->lastcol
)
431 * Vertical frames between data cells,
432 * but not after the last column.
436 ((uvert
== 0 && dvert
== 0 &&
437 cp
!= NULL
&& (cp
->next
== NULL
||
438 !IS_HORIZ(cp
->next
))) ||
440 tp
->tcols
+ tp
->lasttcol
)) {
446 if (tp
->viscol
< tp
->tcol
->rmargin
) {
447 (*tp
->advance
)(tp
, tp
->tcol
->rmargin
449 tp
->viscol
= tp
->tcol
->rmargin
;
451 while (tp
->viscol
< tp
->tcol
->rmargin
+
452 tp
->tbl
.cols
[ic
].spacing
/ 2)
453 tbl_direct_border(tp
, fc
, 1);
455 if (tp
->tcol
+ 1 == tp
->tcols
+ tp
->lasttcol
)
463 case TBL_CELL_DHORIZ
:
477 case TBL_CELL_DHORIZ
:
484 if (tp
->tbl
.cols
[ic
].spacing
)
485 tbl_direct_border(tp
, fc
+
486 BUP
* uvert
+ BDOWN
* dvert
, 1);
488 if (tp
->enc
== TERMENC_UTF8
)
493 cp
->pos
== TBL_CELL_HORIZ
)
495 else if (cp
!= NULL
&&
496 cp
->pos
== TBL_CELL_DHORIZ
)
501 if (tp
->tbl
.cols
[ic
].spacing
> 2 &&
502 (uvert
> 1 || dvert
> 1 || fc
!= 0))
503 tbl_direct_border(tp
, fc
+
505 BDOWN
* (dvert
> 1), 1);
509 /* Print the vertical frame at the end of each row. */
511 uvert
= dvert
= sp
->opts
->opts
& TBL_OPT_DBOX
? 2 :
512 sp
->opts
->opts
& TBL_OPT_BOX
? 1 : 0;
513 if (sp
->pos
== TBL_SPAN_DATA
&&
514 uvert
< sp
->layout
->last
->vert
&&
515 sp
->layout
->last
->col
+ 1 == sp
->opts
->cols
)
516 uvert
= dvert
= sp
->layout
->last
->vert
;
517 if (sp
->next
!= NULL
&&
518 dvert
< sp
->next
->layout
->last
->vert
&&
519 sp
->next
->layout
->last
->col
+ 1 == sp
->opts
->cols
)
520 dvert
= sp
->next
->layout
->last
->vert
;
521 if (sp
->prev
!= NULL
&&
522 uvert
< sp
->prev
->layout
->last
->vert
&&
523 sp
->prev
->layout
->last
->col
+ 1 == sp
->opts
->cols
&&
524 (horiz
|| (IS_HORIZ(sp
->layout
->last
) &&
525 !IS_HORIZ(sp
->prev
->layout
->last
))))
526 uvert
= sp
->prev
->layout
->last
->vert
;
527 line
= sp
->pos
== TBL_SPAN_DHORIZ
||
528 (sp
->layout
->last
->pos
== TBL_CELL_DHORIZ
&&
529 sp
->layout
->last
->col
+ 1 == sp
->opts
->cols
) ? 2 :
530 sp
->pos
== TBL_SPAN_HORIZ
||
531 (sp
->layout
->last
->pos
== TBL_CELL_HORIZ
&&
532 sp
->layout
->last
->col
+ 1 == sp
->opts
->cols
) ? 1 : 0;
533 fc
= BUP
* uvert
+ BDOWN
* dvert
+ BLEFT
* line
;
534 if (uvert
> 0 || dvert
> 0 || (horiz
&& sp
->opts
->rvert
)) {
535 if (horiz
== 0 && (IS_HORIZ(sp
->layout
->last
) == 0 ||
536 sp
->layout
->last
->col
+ 1 < sp
->opts
->cols
)) {
539 tp
->tcol
->offset
> tp
->viscol
?
540 tp
->tcol
->offset
- tp
->viscol
: 1);
542 tbl_direct_border(tp
, fc
, 1);
549 * Clean up after this row. If it is the last line
550 * of the table, print the box line and clean up
551 * column data; otherwise, print the allbox line.
555 tp
->flags
&= ~TERMP_MULTICOL
;
556 tp
->tcol
->rmargin
= tp
->maxrmargin
;
557 if (sp
->next
== NULL
) {
558 if (sp
->opts
->opts
& (TBL_OPT_DBOX
| TBL_OPT_BOX
)) {
559 tbl_hrule(tp
, sp
, NULL
, TBL_OPT_BOX
);
562 if (tp
->enc
== TERMENC_ASCII
&&
563 sp
->opts
->opts
& TBL_OPT_DBOX
) {
564 tbl_hrule(tp
, sp
, NULL
, TBL_OPT_DBOX
);
567 assert(tp
->tbl
.cols
);
570 tp
->tcol
->offset
= offset
;
571 } else if (horiz
== 0 && sp
->opts
->opts
& TBL_OPT_ALLBOX
&&
572 (sp
->next
== NULL
|| sp
->next
->pos
== TBL_SPAN_DATA
||
573 sp
->next
->next
!= NULL
))
574 tbl_hrule(tp
, sp
, sp
->next
, TBL_OPT_ALLBOX
);
576 tp
->flags
&= ~TERMP_NONOSPACE
;
580 tbl_hrule(struct termp
*tp
, const struct tbl_span
*spp
,
581 const struct tbl_span
*spn
, int flags
)
583 const struct tbl_cell
*cpp
; /* Layout cell above this line. */
584 const struct tbl_cell
*cpn
; /* Layout cell below this line. */
585 const struct tbl_dat
*dpn
; /* Data cell below this line. */
586 const struct roffcol
*col
; /* Contains width and spacing. */
587 int opts
; /* For the table as a whole. */
588 int bw
; /* Box line width. */
589 int hw
; /* Horizontal line width. */
590 int lw
, rw
; /* Left and right line widths. */
591 int uw
, dw
; /* Vertical line widths. */
593 cpp
= spp
== NULL
? NULL
: spp
->layout
->first
;
594 cpn
= spn
== NULL
? NULL
: spn
->layout
->first
;
597 if (spn
->pos
== TBL_SPAN_DATA
)
599 else if (spn
->next
!= NULL
)
600 dpn
= spn
->next
->first
;
602 opts
= spn
== NULL
? spp
->opts
->opts
: spn
->opts
->opts
;
603 bw
= opts
& TBL_OPT_DBOX
? (tp
->enc
== TERMENC_UTF8
? 2 : 1) :
604 opts
& (TBL_OPT_BOX
| TBL_OPT_ALLBOX
) ? 1 : 0;
605 hw
= flags
== TBL_OPT_DBOX
|| flags
== TBL_OPT_BOX
? bw
:
606 spn
->pos
== TBL_SPAN_DHORIZ
? 2 : 1;
608 /* Print the left end of the line. */
610 if (tp
->viscol
== 0) {
611 (*tp
->advance
)(tp
, tp
->tcols
->offset
);
612 tp
->viscol
= tp
->tcols
->offset
;
615 tbl_direct_border(tp
,
616 (spp
== NULL
? 0 : BUP
* bw
) +
617 (spn
== NULL
? 0 : BDOWN
* bw
) +
618 (spp
== NULL
|| cpn
== NULL
||
619 cpn
->pos
!= TBL_CELL_DOWN
? BRIGHT
* hw
: 0), 1);
622 col
= tp
->tbl
.cols
+ (cpn
== NULL
? cpp
->col
: cpn
->col
);
624 /* Print the horizontal line inside this column. */
626 lw
= cpp
== NULL
|| cpn
== NULL
||
627 (cpn
->pos
!= TBL_CELL_DOWN
&&
628 (dpn
== NULL
|| strcmp(dpn
->string
, "\\^") != 0))
630 tbl_direct_border(tp
, BHORIZ
* lw
,
631 col
->width
+ col
->spacing
/ 2);
634 * Figure out whether a vertical line is crossing
635 * at the end of this column,
636 * and advance to the next column.
641 if (flags
!= TBL_OPT_DBOX
) {
643 if (uw
== 0 && opts
& TBL_OPT_ALLBOX
)
649 if (flags
!= TBL_OPT_DBOX
) {
651 if (dw
== 0 && opts
& TBL_OPT_ALLBOX
)
655 while (dpn
!= NULL
&& dpn
->layout
!= cpn
)
658 if (cpp
== NULL
&& cpn
== NULL
)
661 /* Vertical lines do not cross spanned cells. */
663 if (cpp
!= NULL
&& cpp
->pos
== TBL_CELL_SPAN
)
665 if (cpn
!= NULL
&& cpn
->pos
== TBL_CELL_SPAN
)
668 /* The horizontal line inside the next column. */
670 rw
= cpp
== NULL
|| cpn
== NULL
||
671 (cpn
->pos
!= TBL_CELL_DOWN
&&
672 (dpn
== NULL
|| strcmp(dpn
->string
, "\\^") != 0))
675 /* The line crossing at the end of this column. */
678 tbl_direct_border(tp
, BLEFT
* lw
+
679 BRIGHT
* rw
+ BUP
* uw
+ BDOWN
* dw
, 1);
682 * In ASCII output, a crossing may print two characters.
685 if (tp
->enc
!= TERMENC_ASCII
|| (uw
< 2 && dw
< 2))
687 if (col
->spacing
> 2)
688 tbl_direct_border(tp
,
689 BHORIZ
* rw
+ BUP
* uw
+ BDOWN
* dw
, 1);
691 /* Padding before the start of the next column. */
693 if (col
->spacing
> 4)
694 tbl_direct_border(tp
,
695 BHORIZ
* rw
, (col
->spacing
- 3) / 2);
698 /* Print the right end of the line. */
701 tbl_direct_border(tp
,
702 (spp
== NULL
? 0 : BUP
* bw
) +
703 (spn
== NULL
? 0 : BDOWN
* bw
) +
704 (spp
== NULL
|| spn
== NULL
||
705 spn
->layout
->last
->pos
!= TBL_CELL_DOWN
?
713 tbl_data(struct termp
*tp
, const struct tbl_opts
*opts
,
714 const struct tbl_cell
*cp
, const struct tbl_dat
*dp
,
715 const struct roffcol
*col
)
719 tbl_fill_border(tp
, BHORIZ
, col
->width
);
721 case TBL_CELL_DHORIZ
:
722 tbl_fill_border(tp
, BHORIZ
* 2, col
->width
);
735 case TBL_DATA_NHORIZ
:
736 tbl_fill_border(tp
, BHORIZ
, col
->width
);
738 case TBL_DATA_NDHORIZ
:
739 case TBL_DATA_DHORIZ
:
740 tbl_fill_border(tp
, BHORIZ
* 2, col
->width
);
748 case TBL_CELL_CENTRE
:
751 tbl_literal(tp
, dp
, col
);
753 case TBL_CELL_NUMBER
:
754 tbl_number(tp
, opts
, dp
, col
);
765 tbl_fill_string(struct termp
*tp
, const char *cp
, size_t len
)
769 sz
= term_strlen(tp
, cp
);
770 for (i
= 0; i
< len
; i
+= sz
)
775 tbl_fill_char(struct termp
*tp
, char c
, size_t len
)
781 tbl_fill_string(tp
, cp
, len
);
785 tbl_fill_border(struct termp
*tp
, int c
, size_t len
)
789 if ((c
= borders_locale
[c
]) > 127) {
790 (void)snprintf(buf
, sizeof(buf
), "\\[u%04x]", c
);
791 tbl_fill_string(tp
, buf
, len
);
793 tbl_fill_char(tp
, c
, len
);
797 tbl_direct_border(struct termp
*tp
, int c
, size_t len
)
801 c
= borders_locale
[c
];
802 sz
= (*tp
->width
)(tp
, c
);
803 for (i
= 0; i
< len
; i
+= sz
) {
804 (*tp
->letter
)(tp
, c
);
810 tbl_literal(struct termp
*tp
, const struct tbl_dat
*dp
,
811 const struct roffcol
*col
)
813 size_t len
, padl
, padr
, width
;
817 len
= term_strlen(tp
, dp
->string
);
819 ic
= dp
->layout
->col
;
822 width
+= tp
->tbl
.cols
[++ic
].width
+ 3;
824 padr
= width
> len
? width
- len
: 0;
827 switch (dp
->layout
->pos
) {
829 padl
= term_len(tp
, 1);
830 padr
= padr
> padl
? padr
- padl
: 0;
832 case TBL_CELL_CENTRE
:
846 tbl_fill_char(tp
, ASCII_NBRSP
, padl
);
848 tbl_fill_char(tp
, ASCII_NBRSP
, padr
);
852 tbl_number(struct termp
*tp
, const struct tbl_opts
*opts
,
853 const struct tbl_dat
*dp
,
854 const struct roffcol
*col
)
856 const char *cp
, *lastdigit
, *lastpoint
;
857 size_t intsz
, padl
, totsz
;
861 * Almost the same code as in tblcalc_number():
862 * First find the position of the decimal point.
866 lastdigit
= lastpoint
= NULL
;
867 for (cp
= dp
->string
; cp
[0] != '\0'; cp
++) {
868 if (cp
[0] == '\\' && cp
[1] == '&') {
869 lastdigit
= lastpoint
= cp
;
871 } else if (cp
[0] == opts
->decimal
&&
872 (isdigit((unsigned char)cp
[1]) ||
873 (cp
> dp
->string
&& isdigit((unsigned char)cp
[-1]))))
875 else if (isdigit((unsigned char)cp
[0]))
879 /* Then measure both widths. */
882 totsz
= term_strlen(tp
, dp
->string
);
883 if (lastdigit
!= NULL
) {
884 if (lastpoint
== NULL
)
885 lastpoint
= lastdigit
+ 1;
888 for (cp
= dp
->string
; cp
< lastpoint
; cp
++) {
890 intsz
+= term_strlen(tp
, buf
);
894 * Pad left to match the decimal position,
895 * but avoid exceeding the total column width.
898 if (col
->decimal
> intsz
&& col
->width
> totsz
) {
899 padl
= col
->decimal
- intsz
;
900 if (padl
+ totsz
> col
->width
)
901 padl
= col
->width
- totsz
;
904 /* If it is not a number, simply center the string. */
906 } else if (col
->width
> totsz
)
907 padl
= (col
->width
- totsz
) / 2;
909 tbl_fill_char(tp
, ASCII_NBRSP
, padl
);
912 /* Pad right to fill the column. */
914 if (col
->width
> padl
+ totsz
)
915 tbl_fill_char(tp
, ASCII_NBRSP
, col
->width
- padl
- totsz
);
919 tbl_word(struct termp
*tp
, const struct tbl_dat
*dp
)
923 prev_font
= tp
->fonti
;
924 if (dp
->layout
->flags
& TBL_CELL_BOLD
)
925 term_fontpush(tp
, TERMFONT_BOLD
);
926 else if (dp
->layout
->flags
& TBL_CELL_ITALIC
)
927 term_fontpush(tp
, TERMFONT_UNDER
);
929 term_word(tp
, dp
->string
);
931 term_fontpopq(tp
, prev_font
);