]>
git.cameronkatri.com Git - mandoc.git/blob - preconv.c
1 /* $Id: preconv.c,v 1.10 2014/10/26 18:22:51 schwarze Exp $ */
3 * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2014 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>
25 #include "libmandoc.h"
28 preconv_encode(struct buf
*ib
, struct buf
*ob
, int *filenc
)
36 if ( ! (*filenc
& MPARSE_UTF8
))
43 /* Quick test for big-endian value. */
45 if ( ! (*((const char *)(&one
))))
48 for (i
= ib
->offs
; i
< ib
->sz
; i
++) {
51 if ( ! (cu
& 128) || (cu
& 64)) {
52 /* Bad sequence header. */
56 /* Accept only legitimate bit patterns. */
58 if (cu
> 191 || cu
< 128) {
59 /* Bad in-sequence bits. */
63 accum
|= (cu
& 63) << --state
* 6;
69 * Accum is held in little-endian order as
70 * stipulated by the UTF-8 sequence coding. We
71 * need to convert to a native big-endian if our
72 * architecture requires it.
76 accum
= (accum
>> 24) |
77 ((accum
<< 8) & 0x00FF0000) |
78 ((accum
>> 8) & 0x0000FF00) |
82 ob
->buf
[ob
->offs
++] = accum
;
84 ob
->offs
+= snprintf(ob
->buf
+ ob
->offs
,
85 11, "\\[u%.4X]", accum
);
87 *filenc
&= ~MPARSE_LATIN1
;
91 * Entering a UTF-8 state: if we encounter a
92 * UTF-8 bitmask, calculate the expected UTF-8
95 for (state
= 0; state
< 7; state
++)
96 if ( ! (cu
& (1 << (7 - state
))))
99 /* Accept only legitimate bit patterns. */
103 if (cu
<= 244 && cu
>= 240) {
104 accum
= (cu
& 7) << 18;
107 /* Bad 4-sequence start bits. */
110 if (cu
<= 239 && cu
>= 224) {
111 accum
= (cu
& 15) << 12;
114 /* Bad 3-sequence start bits. */
117 if (cu
<= 223 && cu
>= 194) {
118 accum
= (cu
& 31) << 6;
121 /* Bad 2-sequence start bits. */
124 /* Bad sequence bit mask. */
131 /* FALLTHROUGH: Invalid or incomplete UTF-8 sequence. */
134 if ( ! (*filenc
& MPARSE_LATIN1
))
137 ob
->offs
+= snprintf(ob
->buf
+ ob
->offs
, 11,
138 "\\[u%.4X]", (unsigned char)ib
->buf
[ib
->offs
++]);
140 *filenc
&= ~MPARSE_UTF8
;
145 preconv_cue(const struct buf
*b
)
147 const char *ln
, *eoln
, *eoph
;
150 ln
= b
->buf
+ b
->offs
;
151 sz
= b
->sz
- b
->offs
;
153 /* Look for the end-of-line. */
155 if (NULL
== (eoln
= memchr(ln
, '\n', sz
)))
158 /* Check if we have the correct header/trailer. */
160 if ((sz
= (size_t)(eoln
- ln
)) < 10 ||
161 memcmp(ln
, ".\\\" -*-", 7) || memcmp(eoln
- 3, "-*-", 3))
162 return(MPARSE_UTF8
| MPARSE_LATIN1
);
164 /* Move after the header and adjust for the trailer. */
170 while (sz
> 0 && ' ' == *ln
) {
177 /* Find the end-of-phrase marker (or eoln). */
179 if (NULL
== (eoph
= memchr(ln
, ';', sz
)))
184 /* Only account for the "coding" phrase. */
186 if ((phsz
= eoph
- ln
) < 7 ||
187 strncasecmp(ln
, "coding:", 7)) {
196 while (sz
> 0 && ' ' == *ln
) {
203 /* Check us against known encodings. */
205 if (phsz
> 4 && !strncasecmp(ln
, "utf-8", 5))
207 if (phsz
> 10 && !strncasecmp(ln
, "iso-latin-1", 11))
208 return(MPARSE_LATIN1
);
211 return(MPARSE_UTF8
| MPARSE_LATIN1
);