]>
git.cameronkatri.com Git - mandoc.git/blob - term.c
ef221086d6985d069d0724428d183bfd65d3768a
1 /* $Id: term.c,v 1.83 2009/06/22 13:13:10 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_pword(struct termp
*, const char *, int);
35 static void term_pescape(struct termp
*,
36 const char *, int *, int);
37 static void term_nescape(struct termp
*,
38 const char *, size_t);
39 static void term_chara(struct termp
*, char);
40 static void term_encodea(struct termp
*, char);
41 static int term_isopendelim(const char *, int);
42 static int term_isclosedelim(const char *, int);
49 return(term_alloc(TERMENC_ASCII
));
54 terminal_man(void *arg
, const struct man
*man
)
58 p
= (struct termp
*)arg
;
59 if (NULL
== p
->symtab
)
60 p
->symtab
= term_ascii2htab();
62 return(man_run(p
, man
));
67 terminal_mdoc(void *arg
, const struct mdoc
*mdoc
)
71 p
= (struct termp
*)arg
;
72 if (NULL
== p
->symtab
)
73 p
->symtab
= term_ascii2htab();
75 return(mdoc_run(p
, mdoc
));
80 terminal_free(void *arg
)
83 term_free((struct termp
*)arg
);
88 term_free(struct termp
*p
)
93 if (TERMENC_ASCII
== p
->enc
&& p
->symtab
)
94 term_asciifree(p
->symtab
);
100 static struct termp
*
101 term_alloc(enum termenc enc
)
105 if (NULL
== (p
= malloc(sizeof(struct termp
))))
107 bzero(p
, sizeof(struct termp
));
115 term_isclosedelim(const char *p
, int len
)
149 term_isopendelim(const char *p
, int len
)
171 * Flush a line of text. A "line" is loosely defined as being something
172 * that should be followed by a newline, regardless of whether it's
173 * broken apart by newlines getting there. A line can also be a
174 * fragment of a columnar list.
176 * Specifically, a line is whatever's in p->buf of length p->col, which
177 * is zeroed after this function returns.
179 * The variables TERMP_NOLPAD, TERMP_LITERAL and TERMP_NOBREAK are of
180 * critical importance here. Their behaviour follows:
182 * - TERMP_NOLPAD: when beginning to write the line, don't left-pad the
183 * offset value. This is useful when doing columnar lists where the
184 * prior column has right-padded.
186 * - TERMP_NOBREAK: this is the most important and is used when making
187 * columns. In short: don't print a newline and instead pad to the
188 * right margin. Used in conjunction with TERMP_NOLPAD.
190 * - TERMP_NONOBREAK: don't newline when TERMP_NOBREAK is specified.
192 * In-line line breaking:
194 * If TERMP_NOBREAK is specified and the line overruns the right
195 * margin, it will break and pad-right to the right margin after
196 * writing. If maxrmargin is violated, it will break and continue
197 * writing from the right-margin, which will lead to the above
198 * scenario upon exit.
200 * Otherwise, the line will break at the right margin. Extremely long
201 * lines will cause the system to emit a warning (TODO: hyphenate, if
204 * FIXME: newline breaks occur (in groff) also occur when a single
205 * space follows a NOBREAK!
208 term_flushln(struct termp
*p
)
211 size_t vbl
, vsz
, vis
, maxvis
, mmax
, bp
;
214 * First, establish the maximum columns of "visible" content.
215 * This is usually the difference between the right-margin and
216 * an indentation, but can be, for tagged lists or columns, a
217 * small set of values.
220 assert(p
->offset
< p
->rmargin
);
221 maxvis
= p
->rmargin
- p
->offset
;
222 mmax
= p
->maxrmargin
- p
->offset
;
223 bp
= TERMP_NOBREAK
& p
->flags
? mmax
: maxvis
;
227 * If in the standard case (left-justified), then begin with our
228 * indentation, otherwise (columns, etc.) just start spitting
232 if ( ! (p
->flags
& TERMP_NOLPAD
))
234 for (j
= 0; j
< (int)p
->offset
; j
++)
237 for (i
= 0; i
< (int)p
->col
; i
++) {
239 * Count up visible word characters. Control sequences
240 * (starting with the CSI) aren't counted. A space
241 * generates a non-printing word, which is valid (the
242 * space is printed according to regular spacing rules).
246 for (j
= i
, vsz
= 0; j
< (int)p
->col
; j
++) {
247 if (' ' == p
->buf
[j
])
249 else if (8 == p
->buf
[j
])
256 * Choose the number of blanks to prepend: no blank at the
257 * beginning of a line, one between words -- but do not
258 * actually write them yet.
260 vbl
= (size_t)(0 == vis
? 0 : 1);
263 * Find out whether we would exceed the right margin.
264 * If so, break to the next line. (TODO: hyphenate)
265 * Otherwise, write the chosen number of blanks now.
267 if (vis
&& vis
+ vbl
+ vsz
> bp
) {
269 if (TERMP_NOBREAK
& p
->flags
) {
270 for (j
= 0; j
< (int)p
->rmargin
; j
++)
272 vis
= p
->rmargin
- p
->offset
;
274 for (j
= 0; j
< (int)p
->offset
; j
++)
279 for (j
= 0; j
< (int)vbl
; j
++)
285 * Finally, write out the word.
287 for ( ; i
< (int)p
->col
; i
++) {
288 if (' ' == p
->buf
[i
])
296 * If we've overstepped our maximum visible no-break space, then
297 * cause a newline and offset at the right margin.
300 if ((TERMP_NOBREAK
& p
->flags
) && vis
>= maxvis
) {
301 if ( ! (TERMP_NONOBREAK
& p
->flags
)) {
303 for (i
= 0; i
< (int)p
->rmargin
; i
++)
311 * If we're not to right-marginalise it (newline), then instead
312 * pad to the right margin and stay off.
315 if (p
->flags
& TERMP_NOBREAK
) {
316 if ( ! (TERMP_NONOBREAK
& p
->flags
))
317 for ( ; vis
< maxvis
; vis
++)
327 * A newline only breaks an existing line; it won't assert vertical
328 * space. All data in the output buffer is flushed prior to the newline
332 term_newln(struct termp
*p
)
335 p
->flags
|= TERMP_NOSPACE
;
337 p
->flags
&= ~TERMP_NOLPAD
;
341 p
->flags
&= ~TERMP_NOLPAD
;
346 * Asserts a vertical space (a full, empty line-break between lines).
347 * Note that if used twice, this will cause two blank spaces and so on.
348 * All data in the output buffer is flushed prior to the newline
352 term_vspace(struct termp
*p
)
361 * Break apart a word into "pwords" (partial-words, usually from
362 * breaking up a phrase into individual words) and, eventually, put them
363 * into the output buffer. If we're a literal word, then don't break up
364 * the word and put it verbatim into the output buffer.
367 term_word(struct termp
*p
, const char *word
)
371 len
= (int)strlen(word
);
373 if (p
->flags
& TERMP_LITERAL
) {
374 term_pword(p
, word
, len
);
379 for (j
= i
= 0; i
< len
; i
++) {
380 if (' ' != word
[i
]) {
385 /* Escaped spaces don't delimit... */
386 if (i
&& ' ' == word
[i
] && '\\' == word
[i
- 1]) {
394 term_pword(p
, &word
[i
- j
], j
);
399 term_pword(p
, &word
[i
- j
], j
);
405 * Determine the symbol indicated by an escape sequences, that is, one
406 * starting with a backslash. Once done, we pass this value into the
407 * output buffer by way of the symbol table.
410 term_nescape(struct termp
*p
, const char *word
, size_t len
)
416 rhs
= term_a2ascii(p
->symtab
, word
, len
, &sz
);
418 for (i
= 0; i
< (int)sz
; i
++)
419 term_encodea(p
, rhs
[i
]);
424 * Handle an escape sequence: determine its length and pass it to the
425 * escape-symbol look table. Note that we assume mdoc(3) has validated
426 * the escape sequence (we assert upon badly-formed escape sequences).
429 term_pescape(struct termp
*p
, const char *word
, int *i
, int len
)
436 if ('(' == word
[*i
]) {
441 term_nescape(p
, &word
[*i
], 2);
445 } else if ('*' == word
[*i
]) {
456 term_nescape(p
, &word
[*i
], 2);
462 term_nescape(p
, &word
[*i
], 1);
466 } else if ('f' == word
[*i
]) {
472 p
->flags
|= TERMP_BOLD
;
475 p
->flags
|= TERMP_UNDER
;
480 p
->flags
&= ~TERMP_STYLE
;
487 } else if ('[' != word
[*i
]) {
488 term_nescape(p
, &word
[*i
], 1);
493 for (j
= 0; word
[*i
] && ']' != word
[*i
]; (*i
)++, j
++)
499 term_nescape(p
, &word
[*i
- j
], (size_t)j
);
504 * Handle pwords, partial words, which may be either a single word or a
505 * phrase that cannot be broken down (such as a literal string). This
506 * handles word styling.
509 term_pword(struct termp
*p
, const char *word
, int len
)
513 if (term_isclosedelim(word
, len
))
514 if ( ! (TERMP_IGNDELIM
& p
->flags
))
515 p
->flags
|= TERMP_NOSPACE
;
517 if ( ! (TERMP_NOSPACE
& p
->flags
))
520 if ( ! (p
->flags
& TERMP_NONOSPACE
))
521 p
->flags
&= ~TERMP_NOSPACE
;
524 * If ANSI (word-length styling), then apply our style now,
528 for (i
= 0; i
< len
; i
++)
530 term_pescape(p
, word
, &i
, len
);
532 term_encodea(p
, word
[i
]);
534 if (term_isopendelim(word
, len
))
535 p
->flags
|= TERMP_NOSPACE
;
540 * Insert a single character into the line-buffer. If the buffer's
541 * space is exceeded, then allocate more space by doubling the buffer
545 term_chara(struct termp
*p
, char c
)
549 if (p
->col
+ 1 >= p
->maxcols
) {
553 p
->buf
= realloc(p
->buf
, s
);
558 p
->buf
[(int)(p
->col
)++] = c
;
563 term_encodea(struct termp
*p
, char c
)
566 if (TERMP_STYLE
& p
->flags
) {
567 if (TERMP_BOLD
& p
->flags
) {
571 if (TERMP_UNDER
& p
->flags
) {