1 /* Id: term_ascii.c,v 1.21 2013/06/01 14:27:20 schwarze Exp */
3 * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
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.
21 #include <sys/types.h>
41 * Sadly, this doesn't seem to be defined on systems even when they
42 * support it. For the time being, remove it and let those compiling
43 * the software decide for themselves what to use.
46 #if ! defined(__STDC_ISO_10646__)
51 static struct termp
*ascii_init(enum termenc
, char *);
52 static double ascii_hspan(const struct termp
*,
53 const struct roffsu
*);
54 static size_t ascii_width(const struct termp
*, int);
55 static void ascii_advance(struct termp
*, size_t);
56 static void ascii_begin(struct termp
*);
57 static void ascii_end(struct termp
*);
58 static void ascii_endline(struct termp
*);
59 static void ascii_letter(struct termp
*, int);
62 static void locale_advance(struct termp
*, size_t);
63 static void locale_endline(struct termp
*);
64 static void locale_letter(struct termp
*, int);
65 static size_t locale_width(const struct termp
*, int);
69 ascii_init(enum termenc enc
, char *outopts
)
75 p
= mandoc_calloc(1, sizeof(struct termp
));
80 p
->begin
= ascii_begin
;
82 p
->hspan
= ascii_hspan
;
83 p
->type
= TERMTYPE_CHAR
;
85 p
->enc
= TERMENC_ASCII
;
86 p
->advance
= ascii_advance
;
87 p
->endline
= ascii_endline
;
88 p
->letter
= ascii_letter
;
89 p
->width
= ascii_width
;
92 if (TERMENC_ASCII
!= enc
) {
93 v
= TERMENC_LOCALE
== enc
?
94 setlocale(LC_ALL
, "") :
95 setlocale(LC_CTYPE
, "en_US.UTF-8");
96 if (NULL
!= v
&& MB_CUR_MAX
> 1) {
98 p
->advance
= locale_advance
;
99 p
->endline
= locale_endline
;
100 p
->letter
= locale_letter
;
101 p
->width
= locale_width
;
111 while (outopts
&& *outopts
)
112 switch (getsubopt(&outopts
, UNCONST(toks
), &v
)) {
114 p
->defindent
= (size_t)atoi(v
);
117 p
->defrmargin
= (size_t)atoi(v
);
121 * Temporary, undocumented mode
122 * to imitate mdoc(7) output style.
131 /* Enforce a lower boundary. */
132 if (p
->defrmargin
< 58)
139 ascii_alloc(char *outopts
)
142 return(ascii_init(TERMENC_ASCII
, outopts
));
146 utf8_alloc(char *outopts
)
149 return(ascii_init(TERMENC_UTF8
, outopts
));
154 locale_alloc(char *outopts
)
157 return(ascii_init(TERMENC_LOCALE
, outopts
));
162 ascii_width(const struct termp
*p
, int c
)
169 ascii_free(void *arg
)
172 term_free((struct termp
*)arg
);
177 ascii_letter(struct termp
*p
, int c
)
184 ascii_begin(struct termp
*p
)
187 (*p
->headf
)(p
, p
->argf
);
191 ascii_end(struct termp
*p
)
194 (*p
->footf
)(p
, p
->argf
);
199 ascii_endline(struct termp
*p
)
207 ascii_advance(struct termp
*p
, size_t len
)
211 for (i
= 0; i
< len
; i
++)
217 ascii_hspan(const struct termp
*p
, const struct roffsu
*su
)
222 * Approximate based on character width. These are generated
223 * entirely by eyeballing the screen, but appear to be correct.
234 r
= (10 * su
->scale
) / 6;
237 r
= (10 * su
->scale
) / 72;
240 r
= su
->scale
/ 1000;
243 r
= su
->scale
* 2 - 1;
256 locale_width(const struct termp
*p
, int c
)
260 return((rc
= wcwidth(c
)) < 0 ? 0 : rc
);
265 locale_advance(struct termp
*p
, size_t len
)
269 for (i
= 0; i
< len
; i
++)
275 locale_endline(struct termp
*p
)
283 locale_letter(struct termp
*p
, int c
)