]>
git.cameronkatri.com Git - mandoc.git/blob - preconv.c
da5af9b4f5ead994acf16f12e0772c6749ccc55b
1 /* $Id: preconv.c,v 1.2 2011/05/26 12:01:14 kristaps Exp $ */
3 * Copyright (c) 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.
32 * The read_whole_file() and resize_buf() functions are copied from
33 * read.c, including all dependency code (MAP_FILE, etc.).
41 ENC_UTF_8
, /* UTF-8 */
42 ENC_US_ASCII
, /* US-ASCII */
43 ENC_LATIN_1
, /* Latin-1 */
48 char *buf
; /* binary input buffer */
49 size_t sz
; /* size of binary buffer */
50 size_t offs
; /* starting buffer offset */
55 int (*conv
)(const struct buf
*);
58 static int conv_latin_1(const struct buf
*);
59 static int conv_us_ascii(const struct buf
*);
60 static int conv_utf_8(const struct buf
*);
61 static int read_whole_file(const char *, int,
63 static void resize_buf(struct buf
*, size_t);
64 static void usage(void);
66 static const struct encode encs
[ENC__MAX
] = {
67 { "utf-8", conv_utf_8
}, /* ENC_UTF_8 */
68 { "us-ascii", conv_us_ascii
}, /* ENC_US_ASCII */
69 { "latin-1", conv_latin_1
}, /* ENC_LATIN_1 */
72 static const char *progname
;
78 fprintf(stderr
, "usage: %s "
81 "[file]\n", progname
);
85 conv_latin_1(const struct buf
*b
)
91 cp
= b
->buf
+ (int)b
->offs
;
94 * Latin-1 falls into the first 256 code-points of Unicode, so
95 * there's no need for any sort of translation. Just make the
96 * 8-bit characters use the Unicode escape.
99 for (i
= b
->offs
; i
< b
->sz
; i
++) {
100 cu
= (unsigned char)*cp
++;
101 cu
< 128U ? putchar(cu
) : printf("\\[u%.4X]", cu
);
108 conv_us_ascii(const struct buf
*b
)
112 * US-ASCII has no conversion since it falls into the first 128
116 fwrite(b
->buf
, 1, b
->sz
, stdout
);
121 conv_utf_8(const struct buf
*b
)
130 cp
= b
->buf
+ (int)b
->offs
;
135 /* Quick test for big-endian value. */
137 if ( ! (*((char *)(&one
))))
140 for (i
= b
->offs
; i
< b
->sz
; i
++) {
141 cu
= (unsigned char)*cp
++;
143 if ( ! (cu
& 128) || (cu
& 64)) {
144 /* Bad sequence header. */
148 /* Accept only legitimate bit patterns. */
150 if (cu
> 191 || cu
< 128) {
151 /* Bad in-sequence bits. */
155 accum
|= (cu
& 63) << --state
* 6;
158 * Accum is held in little-endian order as
159 * stipulated by the UTF-8 sequence coding. We
160 * need to convert to a native big-endian if our
161 * architecture requires it.
164 if (0 == state
&& be
)
165 accum
= (accum
>> 24) |
166 ((accum
<< 8) & 0x00FF0000) |
167 ((accum
>> 8) & 0x0000FF00) |
171 accum
< 128U ? putchar(accum
) :
172 printf("\\[u%.4X]", accum
);
175 } else if (cu
& (1 << 7)) {
177 * Entering a UTF-8 state: if we encounter a
178 * UTF-8 bitmask, calculate the expected UTF-8
181 for (state
= 0; state
< 7; state
++)
182 if ( ! (cu
& (1 << (7 - state
))))
185 /* Accept only legitimate bit patterns. */
189 if (cu
<= 244 && cu
>= 240) {
190 accum
= (cu
& 7) << 18;
193 /* Bad 4-sequence start bits. */
196 if (cu
<= 239 && cu
>= 224) {
197 accum
= (cu
& 15) << 12;
200 /* Bad 3-sequence start bits. */
203 if (cu
<= 223 && cu
>= 194) {
204 accum
= (cu
& 31) << 6;
207 /* Bad 2-sequence start bits. */
210 /* Bad sequence bit mask. */
219 /* Bad trailing bits. */
227 resize_buf(struct buf
*buf
, size_t initial
)
230 buf
->sz
= buf
->sz
> initial
/ 2 ?
231 2 * buf
->sz
: initial
;
233 buf
->buf
= realloc(buf
->buf
, buf
->sz
);
234 if (NULL
== buf
->buf
) {
241 read_whole_file(const char *f
, int fd
,
242 struct buf
*fb
, int *with_mmap
)
248 if (-1 == fstat(fd
, &st
)) {
254 * If we're a regular file, try just reading in the whole entry
255 * via mmap(). This is faster than reading it into blocks, and
256 * since each file is only a few bytes to begin with, I'm not
257 * concerned that this is going to tank any machines.
260 if (S_ISREG(st
.st_mode
) && st
.st_size
>= (1U << 31)) {
261 fprintf(stderr
, "%s: input too large\n", f
);
265 if (S_ISREG(st
.st_mode
)) {
267 fb
->sz
= (size_t)st
.st_size
;
268 fb
->buf
= mmap(NULL
, fb
->sz
, PROT_READ
,
269 MAP_FILE
|MAP_SHARED
, fd
, 0);
270 if (fb
->buf
!= MAP_FAILED
)
275 * If this isn't a regular file (like, say, stdin), then we must
276 * go the old way and just read things in bit by bit.
284 if (off
== fb
->sz
&& fb
->sz
== (1U << 31)) {
285 fprintf(stderr
, "%s: input too large\n", f
);
290 resize_buf(fb
, 65536);
292 ssz
= read(fd
, fb
->buf
+ (int)off
, fb
->sz
- off
);
310 main(int argc
, char *argv
[])
312 int i
, ch
, map
, fd
, rc
;
316 const char bom
[3] = { 0xEF, 0xBB, 0xBF };
320 progname
= strrchr(argv
[0], '/');
321 if (progname
== NULL
)
329 enc
= def
= ENC__MAX
;
332 memset(&b
, 0, sizeof(struct buf
));
334 while (-1 != (ch
= getopt(argc
, argv
, "D:e:rdvh")))
339 for (i
= 0; i
< ENC__MAX
; i
++) {
340 if (strcasecmp(optarg
, encs
[i
].name
))
352 fprintf(stderr
, "%s: Bad encoding\n", optarg
);
353 return(EXIT_FAILURE
);
359 /* Compatibility with GNU preconv. */
362 /* Compatibility with GNU preconv. */
366 return(EXIT_FAILURE
);
373 * Open and read the first argument on the command-line.
374 * If we don't have one, we default to stdin.
379 fd
= open(fn
, O_RDONLY
, 0);
382 return(EXIT_FAILURE
);
386 if ( ! read_whole_file(fn
, fd
, &b
, &map
))
389 /* Try to read the UTF-8 BOM. */
392 if (b
.sz
> 3 && 0 == memcmp(b
.buf
, bom
, 3)) {
398 * No encoding has been detected.
399 * Thus, we either fall into our default encoder, if specified,
400 * or use Latin-1 if all else fails.
404 enc
= ENC__MAX
== def
? ENC_LATIN_1
: def
;
406 if ( ! (*encs
[(int)enc
].conv
)(&b
))
416 if (fd
> STDIN_FILENO
)