]> git.cameronkatri.com Git - mandoc.git/blob - term.c
warning about unknown .Lb arguments; inspired by mdoclint(1)
[mandoc.git] / term.c
1 /* $Id: term.c,v 1.267 2017/06/07 20:01:19 schwarze Exp $ */
2 /*
3 * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org>
5 *
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.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS 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.
17 */
18 #include "config.h"
19
20 #include <sys/types.h>
21
22 #include <assert.h>
23 #include <ctype.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "mandoc.h"
29 #include "mandoc_aux.h"
30 #include "out.h"
31 #include "term.h"
32 #include "main.h"
33
34 static size_t cond_width(const struct termp *, int, int *);
35 static void adjbuf(struct termp_col *, size_t);
36 static void bufferc(struct termp *, char);
37 static void encode(struct termp *, const char *, size_t);
38 static void encode1(struct termp *, int);
39 static void endline(struct termp *);
40
41
42 void
43 term_free(struct termp *p)
44 {
45 for (p->tcol = p->tcols; p->tcol < p->tcols + p->maxtcol; p->tcol++)
46 free(p->tcol->buf);
47 free(p->tcols);
48 free(p->fontq);
49 free(p);
50 }
51
52 void
53 term_begin(struct termp *p, term_margin head,
54 term_margin foot, const struct roff_meta *arg)
55 {
56
57 p->headf = head;
58 p->footf = foot;
59 p->argf = arg;
60 (*p->begin)(p);
61 }
62
63 void
64 term_end(struct termp *p)
65 {
66
67 (*p->end)(p);
68 }
69
70 /*
71 * Flush a chunk of text. By default, break the output line each time
72 * the right margin is reached, and continue output on the next line
73 * at the same offset as the chunk itself. By default, also break the
74 * output line at the end of the chunk.
75 * The following flags may be specified:
76 *
77 * - TERMP_NOBREAK: Do not break the output line at the right margin,
78 * but only at the max right margin. Also, do not break the output
79 * line at the end of the chunk, such that the next call can pad to
80 * the next column. However, if less than p->trailspace blanks,
81 * which can be 0, 1, or 2, remain to the right margin, the line
82 * will be broken.
83 * - TERMP_BRTRSP: Consider trailing whitespace significant
84 * when deciding whether the chunk fits or not.
85 * - TERMP_BRIND: If the chunk does not fit and the output line has
86 * to be broken, start the next line at the right margin instead
87 * of at the offset. Used together with TERMP_NOBREAK for the tags
88 * in various kinds of tagged lists.
89 * - TERMP_HANG: Do not break the output line at the right margin,
90 * append the next chunk after it even if this one is too long.
91 * To be used together with TERMP_NOBREAK.
92 * - TERMP_NOPAD: Start writing at the current position,
93 * do not pad with blank characters up to the offset.
94 */
95 void
96 term_flushln(struct termp *p)
97 {
98 size_t vis; /* current visual position on output */
99 size_t vbl; /* number of blanks to prepend to output */
100 size_t vend; /* end of word visual position on output */
101 size_t bp; /* visual right border position */
102 size_t dv; /* temporary for visual pos calculations */
103 size_t j; /* temporary loop index for p->tcol->buf */
104 size_t jhy; /* last hyph before overflow w/r/t j */
105 size_t maxvis; /* output position of visible boundary */
106 int ntab; /* number of tabs to prepend */
107
108 vbl = (p->flags & TERMP_NOPAD) || p->tcol->offset < p->viscol ?
109 0 : p->tcol->offset - p->viscol;
110 if (p->minbl && vbl < p->minbl)
111 vbl = p->minbl;
112 maxvis = p->tcol->rmargin > p->viscol + vbl ?
113 p->tcol->rmargin - p->viscol - vbl : 0;
114 bp = !(p->flags & TERMP_NOBREAK) ? maxvis :
115 p->maxrmargin > p->viscol + vbl ?
116 p->maxrmargin - p->viscol - vbl : 0;
117 vis = vend = 0;
118
119 if (p->lasttcol == 0)
120 p->tcol->col = 0;
121 while (p->tcol->col < p->lastcol) {
122
123 /*
124 * Handle literal tab characters: collapse all
125 * subsequent tabs into a single huge set of spaces.
126 */
127
128 ntab = 0;
129 while (p->tcol->col < p->lastcol &&
130 p->tcol->buf[p->tcol->col] == '\t') {
131 vend = term_tab_next(vis);
132 vbl += vend - vis;
133 vis = vend;
134 ntab++;
135 p->tcol->col++;
136 }
137
138 /*
139 * Count up visible word characters. Control sequences
140 * (starting with the CSI) aren't counted. A space
141 * generates a non-printing word, which is valid (the
142 * space is printed according to regular spacing rules).
143 */
144
145 jhy = 0;
146 for (j = p->tcol->col; j < p->lastcol; j++) {
147 if (p->tcol->buf[j] == ' ' || p->tcol->buf[j] == '\t')
148 break;
149
150 /* Back over the last printed character. */
151 if (p->tcol->buf[j] == '\b') {
152 assert(j);
153 vend -= (*p->width)(p, p->tcol->buf[j - 1]);
154 continue;
155 }
156
157 /* Regular word. */
158 /* Break at the hyphen point if we overrun. */
159 if (vend > vis && vend < bp &&
160 (p->tcol->buf[j] == ASCII_HYPH||
161 p->tcol->buf[j] == ASCII_BREAK))
162 jhy = j;
163
164 /*
165 * Hyphenation now decided, put back a real
166 * hyphen such that we get the correct width.
167 */
168 if (p->tcol->buf[j] == ASCII_HYPH)
169 p->tcol->buf[j] = '-';
170
171 vend += (*p->width)(p, p->tcol->buf[j]);
172 }
173
174 /*
175 * Find out whether we would exceed the right margin.
176 * If so, break to the next line.
177 */
178
179 if (vend > bp && jhy == 0 && vis > 0 &&
180 (p->flags & TERMP_BRNEVER) == 0) {
181 if (p->lasttcol)
182 return;
183
184 endline(p);
185 vend -= vis;
186
187 /* Use pending tabs on the new line. */
188
189 vbl = 0;
190 while (ntab--)
191 vbl = term_tab_next(vbl);
192
193 /* Re-establish indentation. */
194
195 if (p->flags & TERMP_BRIND)
196 vbl += p->tcol->rmargin;
197 else
198 vbl += p->tcol->offset;
199 maxvis = p->tcol->rmargin > vbl ?
200 p->tcol->rmargin - vbl : 0;
201 bp = !(p->flags & TERMP_NOBREAK) ? maxvis :
202 p->maxrmargin > vbl ? p->maxrmargin - vbl : 0;
203 }
204
205 /*
206 * Write out the rest of the word.
207 */
208
209 for ( ; p->tcol->col < p->lastcol; p->tcol->col++) {
210 if (vend > bp && jhy > 0 && p->tcol->col > jhy)
211 break;
212 if (p->tcol->buf[p->tcol->col] == '\t')
213 break;
214 if (p->tcol->buf[p->tcol->col] == ' ') {
215 j = p->tcol->col;
216 while (p->tcol->col < p->lastcol &&
217 p->tcol->buf[p->tcol->col] == ' ')
218 p->tcol->col++;
219 dv = (p->tcol->col - j) * (*p->width)(p, ' ');
220 vbl += dv;
221 vend += dv;
222 break;
223 }
224 if (p->tcol->buf[p->tcol->col] == ASCII_NBRSP) {
225 vbl += (*p->width)(p, ' ');
226 continue;
227 }
228 if (p->tcol->buf[p->tcol->col] == ASCII_BREAK)
229 continue;
230
231 /*
232 * Now we definitely know there will be
233 * printable characters to output,
234 * so write preceding white space now.
235 */
236 if (vbl) {
237 (*p->advance)(p, vbl);
238 p->viscol += vbl;
239 vbl = 0;
240 }
241
242 (*p->letter)(p, p->tcol->buf[p->tcol->col]);
243 if (p->tcol->buf[p->tcol->col] == '\b')
244 p->viscol -= (*p->width)(p,
245 p->tcol->buf[p->tcol->col - 1]);
246 else
247 p->viscol += (*p->width)(p,
248 p->tcol->buf[p->tcol->col]);
249 }
250 vis = vend;
251 }
252
253 /*
254 * If there was trailing white space, it was not printed;
255 * so reset the cursor position accordingly.
256 */
257
258 if (vis > vbl)
259 vis -= vbl;
260 else
261 vis = 0;
262
263 p->col = p->lastcol = 0;
264 p->minbl = p->trailspace;
265 p->flags &= ~(TERMP_BACKAFTER | TERMP_BACKBEFORE | TERMP_NOPAD);
266
267 /* Trailing whitespace is significant in some columns. */
268
269 if (vis && vbl && (TERMP_BRTRSP & p->flags))
270 vis += vbl;
271
272 /* If the column was overrun, break the line. */
273 if ((p->flags & TERMP_NOBREAK) == 0 ||
274 ((p->flags & TERMP_HANG) == 0 &&
275 vis + p->trailspace * (*p->width)(p, ' ') > maxvis))
276 endline(p);
277 }
278
279 static void
280 endline(struct termp *p)
281 {
282 if ((p->flags & (TERMP_NEWMC | TERMP_ENDMC)) == TERMP_ENDMC) {
283 p->mc = NULL;
284 p->flags &= ~TERMP_ENDMC;
285 }
286 if (p->mc != NULL) {
287 if (p->viscol && p->maxrmargin >= p->viscol)
288 (*p->advance)(p, p->maxrmargin - p->viscol + 1);
289 p->flags |= TERMP_NOBUF | TERMP_NOSPACE;
290 term_word(p, p->mc);
291 p->flags &= ~(TERMP_NOBUF | TERMP_NEWMC);
292 }
293 p->viscol = 0;
294 p->minbl = 0;
295 (*p->endline)(p);
296 }
297
298 /*
299 * A newline only breaks an existing line; it won't assert vertical
300 * space. All data in the output buffer is flushed prior to the newline
301 * assertion.
302 */
303 void
304 term_newln(struct termp *p)
305 {
306
307 p->flags |= TERMP_NOSPACE;
308 if (p->lastcol || p->viscol)
309 term_flushln(p);
310 }
311
312 /*
313 * Asserts a vertical space (a full, empty line-break between lines).
314 * Note that if used twice, this will cause two blank spaces and so on.
315 * All data in the output buffer is flushed prior to the newline
316 * assertion.
317 */
318 void
319 term_vspace(struct termp *p)
320 {
321
322 term_newln(p);
323 p->viscol = 0;
324 p->minbl = 0;
325 if (0 < p->skipvsp)
326 p->skipvsp--;
327 else
328 (*p->endline)(p);
329 }
330
331 /* Swap current and previous font; for \fP and .ft P */
332 void
333 term_fontlast(struct termp *p)
334 {
335 enum termfont f;
336
337 f = p->fontl;
338 p->fontl = p->fontq[p->fonti];
339 p->fontq[p->fonti] = f;
340 }
341
342 /* Set font, save current, discard previous; for \f, .ft, .B etc. */
343 void
344 term_fontrepl(struct termp *p, enum termfont f)
345 {
346
347 p->fontl = p->fontq[p->fonti];
348 p->fontq[p->fonti] = f;
349 }
350
351 /* Set font, save previous. */
352 void
353 term_fontpush(struct termp *p, enum termfont f)
354 {
355
356 p->fontl = p->fontq[p->fonti];
357 if (++p->fonti == p->fontsz) {
358 p->fontsz += 8;
359 p->fontq = mandoc_reallocarray(p->fontq,
360 p->fontsz, sizeof(*p->fontq));
361 }
362 p->fontq[p->fonti] = f;
363 }
364
365 /* Flush to make the saved pointer current again. */
366 void
367 term_fontpopq(struct termp *p, int i)
368 {
369
370 assert(i >= 0);
371 if (p->fonti > i)
372 p->fonti = i;
373 }
374
375 /* Pop one font off the stack. */
376 void
377 term_fontpop(struct termp *p)
378 {
379
380 assert(p->fonti);
381 p->fonti--;
382 }
383
384 /*
385 * Handle pwords, partial words, which may be either a single word or a
386 * phrase that cannot be broken down (such as a literal string). This
387 * handles word styling.
388 */
389 void
390 term_word(struct termp *p, const char *word)
391 {
392 struct roffsu su;
393 const char nbrsp[2] = { ASCII_NBRSP, 0 };
394 const char *seq, *cp;
395 int sz, uc;
396 size_t csz, lsz, ssz;
397 enum mandoc_esc esc;
398
399 if ((p->flags & TERMP_NOBUF) == 0) {
400 if ((p->flags & TERMP_NOSPACE) == 0) {
401 if ((p->flags & TERMP_KEEP) == 0) {
402 bufferc(p, ' ');
403 if (p->flags & TERMP_SENTENCE)
404 bufferc(p, ' ');
405 } else
406 bufferc(p, ASCII_NBRSP);
407 }
408 if (p->flags & TERMP_PREKEEP)
409 p->flags |= TERMP_KEEP;
410 if (p->flags & TERMP_NONOSPACE)
411 p->flags |= TERMP_NOSPACE;
412 else
413 p->flags &= ~TERMP_NOSPACE;
414 p->flags &= ~(TERMP_SENTENCE | TERMP_NONEWLINE);
415 p->skipvsp = 0;
416 }
417
418 while ('\0' != *word) {
419 if ('\\' != *word) {
420 if (TERMP_NBRWORD & p->flags) {
421 if (' ' == *word) {
422 encode(p, nbrsp, 1);
423 word++;
424 continue;
425 }
426 ssz = strcspn(word, "\\ ");
427 } else
428 ssz = strcspn(word, "\\");
429 encode(p, word, ssz);
430 word += (int)ssz;
431 continue;
432 }
433
434 word++;
435 esc = mandoc_escape(&word, &seq, &sz);
436 if (ESCAPE_ERROR == esc)
437 continue;
438
439 switch (esc) {
440 case ESCAPE_UNICODE:
441 uc = mchars_num2uc(seq + 1, sz - 1);
442 break;
443 case ESCAPE_NUMBERED:
444 uc = mchars_num2char(seq, sz);
445 if (uc < 0)
446 continue;
447 break;
448 case ESCAPE_SPECIAL:
449 if (p->enc == TERMENC_ASCII) {
450 cp = mchars_spec2str(seq, sz, &ssz);
451 if (cp != NULL)
452 encode(p, cp, ssz);
453 } else {
454 uc = mchars_spec2cp(seq, sz);
455 if (uc > 0)
456 encode1(p, uc);
457 }
458 continue;
459 case ESCAPE_FONTBOLD:
460 term_fontrepl(p, TERMFONT_BOLD);
461 continue;
462 case ESCAPE_FONTITALIC:
463 term_fontrepl(p, TERMFONT_UNDER);
464 continue;
465 case ESCAPE_FONTBI:
466 term_fontrepl(p, TERMFONT_BI);
467 continue;
468 case ESCAPE_FONT:
469 case ESCAPE_FONTROMAN:
470 term_fontrepl(p, TERMFONT_NONE);
471 continue;
472 case ESCAPE_FONTPREV:
473 term_fontlast(p);
474 continue;
475 case ESCAPE_NOSPACE:
476 if (p->flags & TERMP_BACKAFTER)
477 p->flags &= ~TERMP_BACKAFTER;
478 else if (*word == '\0')
479 p->flags |= (TERMP_NOSPACE | TERMP_NONEWLINE);
480 continue;
481 case ESCAPE_HORIZ:
482 if (a2roffsu(seq, &su, SCALE_EM) == 0)
483 continue;
484 uc = term_hspan(p, &su) / 24;
485 if (uc > 0)
486 while (uc-- > 0)
487 bufferc(p, ASCII_NBRSP);
488 else if (p->col > (size_t)(-uc))
489 p->col += uc;
490 else {
491 uc += p->col;
492 p->col = 0;
493 if (p->tcol->offset > (size_t)(-uc)) {
494 p->ti += uc;
495 p->tcol->offset += uc;
496 } else {
497 p->ti -= p->tcol->offset;
498 p->tcol->offset = 0;
499 }
500 }
501 continue;
502 case ESCAPE_HLINE:
503 if (a2roffsu(seq, &su, SCALE_EM) == 0)
504 continue;
505 uc = term_hspan(p, &su) / 24;
506 if (uc <= 0) {
507 if (p->tcol->rmargin <= p->tcol->offset)
508 continue;
509 lsz = p->tcol->rmargin - p->tcol->offset;
510 } else
511 lsz = uc;
512 while (sz &&
513 strchr(" %&()*+-./0123456789:<=>", *seq)) {
514 seq++;
515 sz--;
516 }
517 if (sz && strchr("cifMmnPpuv", *seq)) {
518 seq++;
519 sz--;
520 }
521 if (sz == 0)
522 uc = -1;
523 else if (*seq == '\\') {
524 seq++;
525 esc = mandoc_escape(&seq, &cp, &sz);
526 switch (esc) {
527 case ESCAPE_UNICODE:
528 uc = mchars_num2uc(cp + 1, sz - 1);
529 break;
530 case ESCAPE_NUMBERED:
531 uc = mchars_num2char(cp, sz);
532 break;
533 case ESCAPE_SPECIAL:
534 uc = mchars_spec2cp(cp, sz);
535 break;
536 default:
537 uc = -1;
538 break;
539 }
540 } else
541 uc = *seq;
542 if (uc < 0x20 || (uc > 0x7E && uc < 0xA0))
543 uc = '_';
544 if (p->enc == TERMENC_ASCII) {
545 cp = ascii_uc2str(uc);
546 csz = term_strlen(p, cp);
547 ssz = strlen(cp);
548 } else
549 csz = (*p->width)(p, uc);
550 while (lsz >= csz) {
551 if (p->enc == TERMENC_ASCII)
552 encode(p, cp, ssz);
553 else
554 encode1(p, uc);
555 lsz -= csz;
556 }
557 continue;
558 case ESCAPE_SKIPCHAR:
559 p->flags |= TERMP_BACKAFTER;
560 continue;
561 case ESCAPE_OVERSTRIKE:
562 cp = seq + sz;
563 while (seq < cp) {
564 if (*seq == '\\') {
565 mandoc_escape(&seq, NULL, NULL);
566 continue;
567 }
568 encode1(p, *seq++);
569 if (seq < cp) {
570 if (p->flags & TERMP_BACKBEFORE)
571 p->flags |= TERMP_BACKAFTER;
572 else
573 p->flags |= TERMP_BACKBEFORE;
574 }
575 }
576 /* Trim trailing backspace/blank pair. */
577 if (p->lastcol > 2 &&
578 (p->tcol->buf[p->lastcol - 1] == ' ' ||
579 p->tcol->buf[p->lastcol - 1] == '\t'))
580 p->lastcol -= 2;
581 if (p->col > p->lastcol)
582 p->col = p->lastcol;
583 continue;
584 default:
585 continue;
586 }
587
588 /*
589 * Common handling for Unicode and numbered
590 * character escape sequences.
591 */
592
593 if (p->enc == TERMENC_ASCII) {
594 cp = ascii_uc2str(uc);
595 encode(p, cp, strlen(cp));
596 } else {
597 if ((uc < 0x20 && uc != 0x09) ||
598 (uc > 0x7E && uc < 0xA0))
599 uc = 0xFFFD;
600 encode1(p, uc);
601 }
602 }
603 p->flags &= ~TERMP_NBRWORD;
604 }
605
606 static void
607 adjbuf(struct termp_col *c, size_t sz)
608 {
609 if (c->maxcols == 0)
610 c->maxcols = 1024;
611 while (c->maxcols <= sz)
612 c->maxcols <<= 2;
613 c->buf = mandoc_reallocarray(c->buf, c->maxcols, sizeof(*c->buf));
614 }
615
616 static void
617 bufferc(struct termp *p, char c)
618 {
619 if (p->flags & TERMP_NOBUF) {
620 (*p->letter)(p, c);
621 return;
622 }
623 if (p->col + 1 >= p->tcol->maxcols)
624 adjbuf(p->tcol, p->col + 1);
625 if (p->lastcol <= p->col || (c != ' ' && c != ASCII_NBRSP))
626 p->tcol->buf[p->col] = c;
627 if (p->lastcol < ++p->col)
628 p->lastcol = p->col;
629 }
630
631 /*
632 * See encode().
633 * Do this for a single (probably unicode) value.
634 * Does not check for non-decorated glyphs.
635 */
636 static void
637 encode1(struct termp *p, int c)
638 {
639 enum termfont f;
640
641 if (p->flags & TERMP_NOBUF) {
642 (*p->letter)(p, c);
643 return;
644 }
645
646 if (p->col + 7 >= p->tcol->maxcols)
647 adjbuf(p->tcol, p->col + 7);
648
649 f = (c == ASCII_HYPH || c > 127 || isgraph(c)) ?
650 p->fontq[p->fonti] : TERMFONT_NONE;
651
652 if (p->flags & TERMP_BACKBEFORE) {
653 if (p->tcol->buf[p->col - 1] == ' ' ||
654 p->tcol->buf[p->col - 1] == '\t')
655 p->col--;
656 else
657 p->tcol->buf[p->col++] = '\b';
658 p->flags &= ~TERMP_BACKBEFORE;
659 }
660 if (f == TERMFONT_UNDER || f == TERMFONT_BI) {
661 p->tcol->buf[p->col++] = '_';
662 p->tcol->buf[p->col++] = '\b';
663 }
664 if (f == TERMFONT_BOLD || f == TERMFONT_BI) {
665 if (c == ASCII_HYPH)
666 p->tcol->buf[p->col++] = '-';
667 else
668 p->tcol->buf[p->col++] = c;
669 p->tcol->buf[p->col++] = '\b';
670 }
671 if (p->lastcol <= p->col || (c != ' ' && c != ASCII_NBRSP))
672 p->tcol->buf[p->col] = c;
673 if (p->lastcol < ++p->col)
674 p->lastcol = p->col;
675 if (p->flags & TERMP_BACKAFTER) {
676 p->flags |= TERMP_BACKBEFORE;
677 p->flags &= ~TERMP_BACKAFTER;
678 }
679 }
680
681 static void
682 encode(struct termp *p, const char *word, size_t sz)
683 {
684 size_t i;
685
686 if (p->flags & TERMP_NOBUF) {
687 for (i = 0; i < sz; i++)
688 (*p->letter)(p, word[i]);
689 return;
690 }
691
692 if (p->col + 2 + (sz * 5) >= p->tcol->maxcols)
693 adjbuf(p->tcol, p->col + 2 + (sz * 5));
694
695 for (i = 0; i < sz; i++) {
696 if (ASCII_HYPH == word[i] ||
697 isgraph((unsigned char)word[i]))
698 encode1(p, word[i]);
699 else {
700 if (p->lastcol <= p->col ||
701 (word[i] != ' ' && word[i] != ASCII_NBRSP))
702 p->tcol->buf[p->col] = word[i];
703 p->col++;
704
705 /*
706 * Postpone the effect of \z while handling
707 * an overstrike sequence from ascii_uc2str().
708 */
709
710 if (word[i] == '\b' &&
711 (p->flags & TERMP_BACKBEFORE)) {
712 p->flags &= ~TERMP_BACKBEFORE;
713 p->flags |= TERMP_BACKAFTER;
714 }
715 }
716 }
717 if (p->lastcol < p->col)
718 p->lastcol = p->col;
719 }
720
721 void
722 term_setwidth(struct termp *p, const char *wstr)
723 {
724 struct roffsu su;
725 int iop, width;
726
727 iop = 0;
728 width = 0;
729 if (NULL != wstr) {
730 switch (*wstr) {
731 case '+':
732 iop = 1;
733 wstr++;
734 break;
735 case '-':
736 iop = -1;
737 wstr++;
738 break;
739 default:
740 break;
741 }
742 if (a2roffsu(wstr, &su, SCALE_MAX))
743 width = term_hspan(p, &su);
744 else
745 iop = 0;
746 }
747 (*p->setwidth)(p, iop, width);
748 }
749
750 size_t
751 term_len(const struct termp *p, size_t sz)
752 {
753
754 return (*p->width)(p, ' ') * sz;
755 }
756
757 static size_t
758 cond_width(const struct termp *p, int c, int *skip)
759 {
760
761 if (*skip) {
762 (*skip) = 0;
763 return 0;
764 } else
765 return (*p->width)(p, c);
766 }
767
768 size_t
769 term_strlen(const struct termp *p, const char *cp)
770 {
771 size_t sz, rsz, i;
772 int ssz, skip, uc;
773 const char *seq, *rhs;
774 enum mandoc_esc esc;
775 static const char rej[] = { '\\', ASCII_NBRSP, ASCII_HYPH,
776 ASCII_BREAK, '\0' };
777
778 /*
779 * Account for escaped sequences within string length
780 * calculations. This follows the logic in term_word() as we
781 * must calculate the width of produced strings.
782 */
783
784 sz = 0;
785 skip = 0;
786 while ('\0' != *cp) {
787 rsz = strcspn(cp, rej);
788 for (i = 0; i < rsz; i++)
789 sz += cond_width(p, *cp++, &skip);
790
791 switch (*cp) {
792 case '\\':
793 cp++;
794 esc = mandoc_escape(&cp, &seq, &ssz);
795 if (ESCAPE_ERROR == esc)
796 continue;
797
798 rhs = NULL;
799
800 switch (esc) {
801 case ESCAPE_UNICODE:
802 uc = mchars_num2uc(seq + 1, ssz - 1);
803 break;
804 case ESCAPE_NUMBERED:
805 uc = mchars_num2char(seq, ssz);
806 if (uc < 0)
807 continue;
808 break;
809 case ESCAPE_SPECIAL:
810 if (p->enc == TERMENC_ASCII) {
811 rhs = mchars_spec2str(seq, ssz, &rsz);
812 if (rhs != NULL)
813 break;
814 } else {
815 uc = mchars_spec2cp(seq, ssz);
816 if (uc > 0)
817 sz += cond_width(p, uc, &skip);
818 }
819 continue;
820 case ESCAPE_SKIPCHAR:
821 skip = 1;
822 continue;
823 case ESCAPE_OVERSTRIKE:
824 rsz = 0;
825 rhs = seq + ssz;
826 while (seq < rhs) {
827 if (*seq == '\\') {
828 mandoc_escape(&seq, NULL, NULL);
829 continue;
830 }
831 i = (*p->width)(p, *seq++);
832 if (rsz < i)
833 rsz = i;
834 }
835 sz += rsz;
836 continue;
837 default:
838 continue;
839 }
840
841 /*
842 * Common handling for Unicode and numbered
843 * character escape sequences.
844 */
845
846 if (rhs == NULL) {
847 if (p->enc == TERMENC_ASCII) {
848 rhs = ascii_uc2str(uc);
849 rsz = strlen(rhs);
850 } else {
851 if ((uc < 0x20 && uc != 0x09) ||
852 (uc > 0x7E && uc < 0xA0))
853 uc = 0xFFFD;
854 sz += cond_width(p, uc, &skip);
855 continue;
856 }
857 }
858
859 if (skip) {
860 skip = 0;
861 break;
862 }
863
864 /*
865 * Common handling for all escape sequences
866 * printing more than one character.
867 */
868
869 for (i = 0; i < rsz; i++)
870 sz += (*p->width)(p, *rhs++);
871 break;
872 case ASCII_NBRSP:
873 sz += cond_width(p, ' ', &skip);
874 cp++;
875 break;
876 case ASCII_HYPH:
877 sz += cond_width(p, '-', &skip);
878 cp++;
879 break;
880 default:
881 break;
882 }
883 }
884
885 return sz;
886 }
887
888 int
889 term_vspan(const struct termp *p, const struct roffsu *su)
890 {
891 double r;
892 int ri;
893
894 switch (su->unit) {
895 case SCALE_BU:
896 r = su->scale / 40.0;
897 break;
898 case SCALE_CM:
899 r = su->scale * 6.0 / 2.54;
900 break;
901 case SCALE_FS:
902 r = su->scale * 65536.0 / 40.0;
903 break;
904 case SCALE_IN:
905 r = su->scale * 6.0;
906 break;
907 case SCALE_MM:
908 r = su->scale * 0.006;
909 break;
910 case SCALE_PC:
911 r = su->scale;
912 break;
913 case SCALE_PT:
914 r = su->scale / 12.0;
915 break;
916 case SCALE_EN:
917 case SCALE_EM:
918 r = su->scale * 0.6;
919 break;
920 case SCALE_VS:
921 r = su->scale;
922 break;
923 default:
924 abort();
925 }
926 ri = r > 0.0 ? r + 0.4995 : r - 0.4995;
927 return ri < 66 ? ri : 1;
928 }
929
930 /*
931 * Convert a scaling width to basic units, rounding down.
932 */
933 int
934 term_hspan(const struct termp *p, const struct roffsu *su)
935 {
936
937 return (*p->hspan)(p, su);
938 }