]>
git.cameronkatri.com Git - mandoc.git/blob - term.c
1 /* $Id: term.c,v 1.91 2009/07/21 13:34:13 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
27 extern int man_run(struct termp
*,
29 extern int mdoc_run(struct termp
*,
32 static struct termp
*term_alloc(enum termenc
);
33 static void term_free(struct termp
*);
34 static void term_pescape(struct termp
*, const char **);
35 static void term_nescape(struct termp
*,
36 const char *, size_t);
37 static void term_chara(struct termp
*, char);
38 static void term_encodea(struct termp
*, char);
39 static int term_isopendelim(const char *);
40 static int term_isclosedelim(const char *);
47 return(term_alloc(TERMENC_ASCII
));
52 terminal_man(void *arg
, const struct man
*man
)
56 p
= (struct termp
*)arg
;
57 if (NULL
== p
->symtab
)
58 p
->symtab
= term_ascii2htab();
60 return(man_run(p
, man
));
65 terminal_mdoc(void *arg
, const struct mdoc
*mdoc
)
69 p
= (struct termp
*)arg
;
70 if (NULL
== p
->symtab
)
71 p
->symtab
= term_ascii2htab();
73 return(mdoc_run(p
, mdoc
));
78 terminal_free(void *arg
)
81 term_free((struct termp
*)arg
);
86 term_free(struct termp
*p
)
91 if (TERMENC_ASCII
== p
->enc
&& p
->symtab
)
92 term_asciifree(p
->symtab
);
99 term_alloc(enum termenc enc
)
103 if (NULL
== (p
= malloc(sizeof(struct termp
))))
105 bzero(p
, sizeof(struct termp
));
113 term_isclosedelim(const char *p
)
116 if ( ! (*p
&& 0 == *(p
+ 1)))
147 term_isopendelim(const char *p
)
150 if ( ! (*p
&& 0 == *(p
+ 1)))
169 * Flush a line of text. A "line" is loosely defined as being something
170 * that should be followed by a newline, regardless of whether it's
171 * broken apart by newlines getting there. A line can also be a
172 * fragment of a columnar list.
174 * Specifically, a line is whatever's in p->buf of length p->col, which
175 * is zeroed after this function returns.
177 * The usage of termp:flags is as follows:
179 * - TERMP_NOLPAD: when beginning to write the line, don't left-pad the
180 * offset value. This is useful when doing columnar lists where the
181 * prior column has right-padded.
183 * - TERMP_NOBREAK: this is the most important and is used when making
184 * columns. In short: don't print a newline and instead pad to the
185 * right margin. Used in conjunction with TERMP_NOLPAD.
187 * - TERMP_TWOSPACE: when padding, make sure there are at least two
188 * space characters of padding. Otherwise, rather break the line.
190 * - TERMP_DANGLE: don't newline when TERMP_NOBREAK is specified and
191 * the line is overrun, and don't pad-right if it's underrun.
193 * - TERMP_HANG: like TERMP_DANGLE, but doesn't newline when
194 * overruning, instead save the position and continue at that point
195 * when the next invocation.
197 * In-line line breaking:
199 * If TERMP_NOBREAK is specified and the line overruns the right
200 * margin, it will break and pad-right to the right margin after
201 * writing. If maxrmargin is violated, it will break and continue
202 * writing from the right-margin, which will lead to the above
203 * scenario upon exit.
205 * Otherwise, the line will break at the right margin. Extremely long
206 * lines will cause the system to emit a warning (TODO: hyphenate, if
209 * FIXME: newline breaks occur (in groff) also occur when a single
210 * space follows a NOBREAK (try `Bl -tag')
212 * FIXME: there's a newline error where a `Bl -diag' will have a
213 * trailing newline if the line is exactly 73 chars long.
216 term_flushln(struct termp
*p
)
219 size_t vbl
, vsz
, vis
, maxvis
, mmax
, bp
;
220 static int overstep
= 0;
223 * First, establish the maximum columns of "visible" content.
224 * This is usually the difference between the right-margin and
225 * an indentation, but can be, for tagged lists or columns, a
226 * small set of values.
229 assert(p
->offset
< p
->rmargin
);
230 maxvis
= p
->rmargin
- p
->offset
- overstep
;
231 mmax
= p
->maxrmargin
- p
->offset
- overstep
;
232 bp
= TERMP_NOBREAK
& p
->flags
? mmax
: maxvis
;
237 * If in the standard case (left-justified), then begin with our
238 * indentation, otherwise (columns, etc.) just start spitting
242 if ( ! (p
->flags
& TERMP_NOLPAD
))
244 for (j
= 0; j
< (int)p
->offset
; j
++)
247 for (i
= 0; i
< (int)p
->col
; i
++) {
249 * Count up visible word characters. Control sequences
250 * (starting with the CSI) aren't counted. A space
251 * generates a non-printing word, which is valid (the
252 * space is printed according to regular spacing rules).
256 for (j
= i
, vsz
= 0; j
< (int)p
->col
; j
++) {
257 if (' ' == p
->buf
[j
])
259 else if (8 == p
->buf
[j
])
266 * Choose the number of blanks to prepend: no blank at the
267 * beginning of a line, one between words -- but do not
268 * actually write them yet.
270 vbl
= (size_t)(0 == vis
? 0 : 1);
273 * Find out whether we would exceed the right margin.
274 * If so, break to the next line. (TODO: hyphenate)
275 * Otherwise, write the chosen number of blanks now.
277 if (vis
&& vis
+ vbl
+ vsz
> bp
) {
279 if (TERMP_NOBREAK
& p
->flags
) {
280 for (j
= 0; j
< (int)p
->rmargin
; j
++)
282 vis
= p
->rmargin
- p
->offset
;
284 for (j
= 0; j
< (int)p
->offset
; j
++)
289 for (j
= 0; j
< (int)vbl
; j
++)
295 * Finally, write out the word.
297 for ( ; i
< (int)p
->col
; i
++) {
298 if (' ' == p
->buf
[i
])
306 if ( ! (TERMP_NOBREAK
& p
->flags
)) {
311 if (TERMP_HANG
& p
->flags
) {
313 /* We need one blank after the tag. */
314 overstep
= vis
- maxvis
+ 1;
317 * Behave exactly the same way as groff:
318 * If we have overstepped the margin, temporarily move it
319 * to the right and flag the rest of the line to be shorter.
320 * If we landed right at the margin, be happy.
321 * If we are one step before the margin, temporarily move it
322 * one step LEFT and flag the rest of the line to be longer.
329 } else if (TERMP_DANGLE
& p
->flags
)
332 if (maxvis
> vis
+ ((TERMP_TWOSPACE
& p
->flags
) ? 1 : 0)) /* pad */
333 for ( ; vis
< maxvis
; vis
++)
337 for (i
= 0; i
< (int)p
->rmargin
; i
++)
344 * A newline only breaks an existing line; it won't assert vertical
345 * space. All data in the output buffer is flushed prior to the newline
349 term_newln(struct termp
*p
)
352 p
->flags
|= TERMP_NOSPACE
;
354 p
->flags
&= ~TERMP_NOLPAD
;
358 p
->flags
&= ~TERMP_NOLPAD
;
363 * Asserts a vertical space (a full, empty line-break between lines).
364 * Note that if used twice, this will cause two blank spaces and so on.
365 * All data in the output buffer is flushed prior to the newline
369 term_vspace(struct termp
*p
)
378 * Determine the symbol indicated by an escape sequences, that is, one
379 * starting with a backslash. Once done, we pass this value into the
380 * output buffer by way of the symbol table.
383 term_nescape(struct termp
*p
, const char *word
, size_t len
)
389 rhs
= term_a2ascii(p
->symtab
, word
, len
, &sz
);
392 for (i
= 0; i
< (int)sz
; i
++)
393 term_encodea(p
, rhs
[i
]);
398 * Handle an escape sequence: determine its length and pass it to the
399 * escape-symbol look table. Note that we assume mdoc(3) has validated
400 * the escape sequence (we assert upon badly-formed escape sequences).
403 term_pescape(struct termp
*p
, const char **word
)
417 if (0 == *wp
|| 0 == *(wp
+ 1)) {
418 *word
= 0 == *wp
? wp
: wp
+ 1;
422 term_nescape(p
, wp
, 2);
426 } else if ('*' == *wp
) {
435 if (0 == *wp
|| 0 == *(wp
+ 1)) {
436 *word
= 0 == *wp
? wp
: wp
+ 1;
440 term_nescape(p
, wp
, 2);
446 term_nescape(p
, wp
, 1);
451 } else if ('f' == *wp
) {
459 p
->flags
|= TERMP_BOLD
;
462 p
->flags
|= TERMP_UNDER
;
467 p
->flags
&= ~TERMP_STYLE
;
476 } else if ('[' != *wp
) {
477 term_nescape(p
, wp
, 1);
483 for (j
= 0; *wp
&& ']' != *wp
; wp
++, j
++)
491 term_nescape(p
, wp
- j
, (size_t)j
);
497 * Handle pwords, partial words, which may be either a single word or a
498 * phrase that cannot be broken down (such as a literal string). This
499 * handles word styling.
502 term_word(struct termp
*p
, const char *word
)
506 if (term_isclosedelim(word
))
507 if ( ! (TERMP_IGNDELIM
& p
->flags
))
508 p
->flags
|= TERMP_NOSPACE
;
510 if ( ! (TERMP_NOSPACE
& p
->flags
))
513 if ( ! (p
->flags
& TERMP_NONOSPACE
))
514 p
->flags
&= ~TERMP_NOSPACE
;
517 * If ANSI (word-length styling), then apply our style now,
521 for (sv
= word
; *word
; word
++)
523 term_encodea(p
, *word
);
525 term_pescape(p
, &word
);
527 if (term_isopendelim(sv
))
528 p
->flags
|= TERMP_NOSPACE
;
533 * Insert a single character into the line-buffer. If the buffer's
534 * space is exceeded, then allocate more space by doubling the buffer
538 term_chara(struct termp
*p
, char c
)
542 if (p
->col
+ 1 >= p
->maxcols
) {
546 p
->buf
= realloc(p
->buf
, s
);
551 p
->buf
[(int)(p
->col
)++] = c
;
556 term_encodea(struct termp
*p
, char c
)
559 if (' ' != c
&& TERMP_STYLE
& p
->flags
) {
560 if (TERMP_BOLD
& p
->flags
) {
564 if (TERMP_UNDER
& p
->flags
) {