1 /* $NetBSD: chartype.c,v 1.1 2009/12/30 22:37:40 christos Exp $ */
4 * Copyright (c) 2009 The NetBSD Foundation, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the NetBSD
18 * Foundation, Inc. and its contributors.
19 * 4. Neither the name of The NetBSD Foundation nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 * POSSIBILITY OF SUCH DAMAGE.
37 * chartype.c: character classification and meta information
40 #if !defined(lint) && !defined(SCCSID)
41 __RCSID("$NetBSD: chartype.c,v 1.1 2009/12/30 22:37:40 christos Exp $");
42 #endif /* not lint && not SCCSID */
46 #define CT_BUFSIZ 1024
51 ct_conv_buff_resize(ct_buffer_t
*conv
, size_t mincsize
, size_t minwsize
)
54 if (mincsize
> conv
->csize
) {
55 conv
->csize
= mincsize
;
56 p
= el_realloc(conv
->cbuff
, conv
->csize
);
65 if (minwsize
> conv
->wsize
) {
66 conv
->wsize
= minwsize
;
67 p
= el_realloc(conv
->wbuff
, conv
->wsize
);
79 ct_encode_string(const Char
*s
, ct_buffer_t
*conv
)
87 ct_conv_buff_resize(conv
, CT_BUFSIZ
, 0);
93 used
= ct_encode_char(dst
, (int)(conv
->csize
-
94 (dst
- conv
->cbuff
)), *s
);
95 if (used
== -1) { /* failed to encode, need more buffer space */
96 used
= dst
- conv
->cbuff
;
97 ct_conv_buff_resize(conv
, conv
->csize
+ CT_BUFSIZ
, 0);
100 dst
= conv
->cbuff
+ used
;
101 /* don't increment s here - we want to retry it! */
107 if (dst
>= (conv
->cbuff
+ conv
->csize
)) {
108 used
= dst
- conv
->cbuff
;
109 ct_conv_buff_resize(conv
, conv
->csize
+ 1, 0);
112 dst
= conv
->cbuff
+ used
;
119 ct_decode_string(const char *s
, ct_buffer_t
*conv
)
126 ct_conv_buff_resize(conv
, 0, CT_BUFSIZ
);
130 len
= ct_mbstowcs(0, s
, 0);
131 if (len
> conv
->wsize
)
132 ct_conv_buff_resize(conv
, 0, len
+ 1);
135 ct_mbstowcs(conv
->wbuff
, s
, conv
->wsize
);
141 ct_decode_argv(int argc
, const char *argv
[], ct_buffer_t
*conv
)
149 /* Make sure we have enough space in the conversion buffer to store all
150 * the argv strings. */
151 for (i
= 0, bufspace
= 0; i
< argc
; ++i
)
152 bufspace
+= argv
[i
] ? strlen(argv
[i
]) + 1 : 0;
153 ct_conv_buff_resize(conv
, 0, bufspace
);
157 wargv
= el_malloc(argc
* sizeof(*wargv
));
159 for (i
= 0, p
= conv
->wbuff
; i
< argc
; ++i
) {
160 if (!argv
[i
]) { /* don't pass null pointers to mbstowcs */
165 bytes
= mbstowcs(p
, argv
[i
], bufspace
);
171 bytes
++; /* include '\0' in the count */
183 /* UTF-8 encoding specific values */
188 else if (c
< 0x10000)
190 else if (c
< 0x110000)
193 return 0; /* not a valid codepoint */
197 ct_encode_char(char *dst
, size_t len
, Char c
)
200 if (len
< enc_width(c
))
202 l
= ct_wctomb(dst
, c
);
212 protected const Char
*
213 ct_visual_string(const Char
*s
)
215 static Char
*buff
= NULL
;
216 static size_t buffsize
= 0;
224 buffsize
= CT_BUFSIZ
;
225 buff
= el_malloc(buffsize
* sizeof(*buff
));
229 used
= ct_visual_char(dst
, buffsize
- (dst
- buff
), *s
);
230 if (used
== -1) { /* failed to encode, need more buffer space */
232 buffsize
+= CT_BUFSIZ
;
233 p
= el_realloc(buff
, buffsize
* sizeof(*buff
));
238 /* don't increment s here - we want to retry it! */
244 if (dst
>= (buff
+ buffsize
)) { /* sigh */
246 p
= el_realloc(buff
, buffsize
* sizeof(*buff
));
250 dst
= buff
+ buffsize
- 1;
263 ct_visual_width(Char c
)
265 int t
= ct_chr_class(c
);
267 case CHTYPE_ASCIICTL
:
268 return 2; /* ^@ ^? etc. */
270 return 1; /* Hmm, this really need to be handled outside! */
272 return 0; /* Should this be 1 instead? */
276 case CHTYPE_NONPRINT
:
277 if (c
> 0xffff) /* prefer standard 4-byte display over 5-byte */
278 return 8; /* \U+12345 */
280 return 7; /* \U+1234 */
284 case CHTYPE_NONPRINT
:
288 return 0; /* should not happen */
294 ct_visual_char(Char
*dst
, size_t len
, Char c
)
296 int t
= ct_chr_class(c
);
298 case CHTYPE_ASCIICTL
:
300 return -1; /* insufficient space */
303 *dst
= '?'; /* DEL -> ^? */
305 *dst
= c
| 0100; /* uncontrolify it */
309 return -1; /* insufficient space */
312 case CHTYPE_NONPRINT
:
313 /* we only use single-width glyphs for display,
314 * so this is right */
315 if ((ssize_t
)len
< ct_visual_width(c
))
316 return -1; /* insufficient space */
321 #define tohexdigit(v) "0123456789ABCDEF"[v]
322 if (c
> 0xffff) /* prefer standard 4-byte display over 5-byte */
323 *dst
++ = tohexdigit(((unsigned int) c
>> 16) & 0xf);
324 *dst
++ = tohexdigit(((unsigned int) c
>> 12) & 0xf);
325 *dst
++ = tohexdigit(((unsigned int) c
>> 8) & 0xf);
326 *dst
++ = tohexdigit(((unsigned int) c
>> 4) & 0xf);
327 *dst
= tohexdigit(((unsigned int) c
) & 0xf);
328 return (c
> 0xffff) ? 8 : 7;
331 #define tooctaldigit(v) ((v) + '0')
332 *dst
++ = tooctaldigit(((unsigned int) c
>> 6) & 0x7);
333 *dst
++ = tooctaldigit(((unsigned int) c
>> 3) & 0x7);
334 *dst
++ = tooctaldigit(((unsigned int) c
) & 0x7);
337 /* these two should be handled outside this function */
340 default: /* we should never hit the default */
355 else if (IsASCII(c
) && Iscntrl(c
))
356 return CHTYPE_ASCIICTL
;
360 return CHTYPE_NONPRINT
;