]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libedit/chartype.h
MFV r324198: 8081 Compiler warnings in zdb
[FreeBSD/FreeBSD.git] / lib / libedit / chartype.h
1 /*      $NetBSD: chartype.h,v 1.25 2016/03/07 00:05:20 christos Exp $   */
2
3 /*-
4  * Copyright (c) 2009 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
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  *
16  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #ifndef _h_chartype_f
32 #define _h_chartype_f
33
34
35 #ifdef WIDECHAR
36
37 /* Ideally we should also test the value of the define to see if it
38  * supports non-BMP code points without requiring UTF-16, but nothing
39  * seems to actually advertise this properly, despite Unicode 3.1 having
40  * been around since 2001... */
41 #if !defined(__NetBSD__) && !defined(__sun) && !(defined(__APPLE__) && defined(__MACH__)) && !defined(__OpenBSD__) && !defined(__FreeBSD__)
42 #ifndef __STDC_ISO_10646__
43 /* In many places it is assumed that the first 127 code points are ASCII
44  * compatible, so ensure wchar_t indeed does ISO 10646 and not some other
45  * funky encoding that could break us in weird and wonderful ways. */
46         #error wchar_t must store ISO 10646 characters
47 #endif
48 #endif
49
50 /* Oh for a <uchar.h> with char32_t and __STDC_UTF_32__ in it...
51  * ref: ISO/IEC DTR 19769
52  */
53 #if WCHAR_MAX < INT32_MAX
54 #warning Build environment does not support non-BMP characters
55 #endif
56
57 #define ct_wctob             wctob
58 #define ct_wctomb            wctomb
59 #define ct_wctomb_reset      wctomb(0,0)
60 #define ct_wcstombs          wcstombs
61 #define ct_mbstowcs          mbstowcs
62
63 #define Char                    wchar_t
64 #define FUN(prefix,rest)        prefix ## _w ## rest
65 #define FUNW(type)              type ## _w
66 #define TYPE(type)              type ## W
67 #define FSTR                    "%ls"
68 #define FSTARSTR                "%.*ls"
69 #define STR(x)                  L ## x
70 #define UC(c)                   c
71 #define Isalpha(x)  iswalpha(x)
72 #define Isalnum(x)  iswalnum(x)
73 #define Isgraph(x)  iswgraph(x)
74 #define Isspace(x)  iswspace(x)
75 #define Isdigit(x)  iswdigit(x)
76 #define Iscntrl(x)  iswcntrl(x)
77 #define Isprint(x)  iswprint(x)
78
79 #define Isupper(x)  iswupper(x)
80 #define Islower(x)  iswlower(x)
81 #define Toupper(x)  towupper(x)
82 #define Tolower(x)  towlower(x)
83
84 #define IsASCII(x)  (x < 0x100)
85
86 #define Strlen(x)       wcslen(x)
87 #define Strchr(s,c)     wcschr(s,c)
88 #define Strrchr(s,c)    wcsrchr(s,c)
89 #define Strstr(s,v)     wcsstr(s,v)
90 #define Strdup(x)       wcsdup(x)
91 #define Strcpy(d,s)     wcscpy(d,s)
92 #define Strncpy(d,s,n)  wcsncpy(d,s,n)
93 #define Strncat(d,s,n)  wcsncat(d,s,n)
94
95 #define Strcmp(s,v)     wcscmp(s,v)
96 #define Strncmp(s,v,n)  wcsncmp(s,v,n)
97 #define Strcspn(s,r)    wcscspn(s,r)
98
99 #define Strtol(p,e,b)   wcstol(p,e,b)
100
101 static inline int
102 Width(wchar_t c)
103 {
104         int w = wcwidth(c);
105         return w < 0 ? 0 : w;
106 }
107
108 #else /* NARROW */
109
110 #define ct_wctob(w)          ((int)(w))
111 #define ct_wctomb            error
112 #define ct_wctomb_reset
113 #define ct_wcstombs(a, b, c)    (strncpy(a, b, c), strlen(a))
114 #define ct_mbstowcs(a, b, c)    (strncpy(a, b, c), strlen(a))
115
116 #define Char                    char
117 #define FUN(prefix,rest)        prefix ## _ ## rest
118 #define FUNW(type)              type
119 #define TYPE(type)              type
120 #define FSTR                    "%s"
121 #define FSTARSTR                "%.*s"
122 #define STR(x)                  x
123 #define UC(c)                   (unsigned char)(c)
124
125 #define Isalpha(x)  isalpha((unsigned char)x)
126 #define Isalnum(x)  isalnum((unsigned char)x)
127 #define Isgraph(x)  isgraph((unsigned char)x)
128 #define Isspace(x)  isspace((unsigned char)x)
129 #define Isdigit(x)  isdigit((unsigned char)x)
130 #define Iscntrl(x)  iscntrl((unsigned char)x)
131 #define Isprint(x)  isprint((unsigned char)x)
132
133 #define Isupper(x)  isupper((unsigned char)x)
134 #define Islower(x)  islower((unsigned char)x)
135 #define Toupper(x)  toupper((unsigned char)x)
136 #define Tolower(x)  tolower((unsigned char)x)
137
138 #define IsASCII(x)  isascii((unsigned char)x)
139
140 #define Strlen(x)       strlen(x)
141 #define Strchr(s,c)     strchr(s,c)
142 #define Strrchr(s,c)    strrchr(s,c)
143 #define Strstr(s,v)     strstr(s,v)
144 #define Strdup(x)       strdup(x)
145 #define Strcpy(d,s)     strcpy(d,s)
146 #define Strncpy(d,s,n)  strncpy(d,s,n)
147 #define Strncat(d,s,n)  strncat(d,s,n)
148
149 #define Strcmp(s,v)     strcmp(s,v)
150 #define Strncmp(s,v,n)  strncmp(s,v,n)
151 #define Strcspn(s,r)    strcspn(s,r)
152
153 #define Strtol(p,e,b)   strtol(p,e,b)
154
155 #define Width(c)        1
156
157 #endif
158
159
160 #ifdef WIDECHAR
161 /*
162  * Conversion buffer
163  */
164 typedef struct ct_buffer_t {
165         char    *cbuff;
166         size_t  csize;
167         Char *wbuff;
168         size_t  wsize;
169 } ct_buffer_t;
170
171 #define ct_encode_string __ct_encode_string
172 /* Encode a wide-character string and return the UTF-8 encoded result. */
173 public char *ct_encode_string(const Char *, ct_buffer_t *);
174
175 #define ct_decode_string __ct_decode_string
176 /* Decode a (multi)?byte string and return the wide-character string result. */
177 public Char *ct_decode_string(const char *, ct_buffer_t *);
178
179 /* Decode a (multi)?byte argv string array.
180  * The pointer returned must be free()d when done. */
181 protected Char **ct_decode_argv(int, const char *[],  ct_buffer_t *);
182
183 /* Resizes the conversion buffer(s) if needed. */
184 protected int ct_conv_cbuff_resize(ct_buffer_t *, size_t);
185 protected int ct_conv_wbuff_resize(ct_buffer_t *, size_t);
186 protected ssize_t ct_encode_char(char *, size_t, Char);
187 protected size_t ct_enc_width(Char);
188
189 #define ct_free_argv(s) el_free(s)
190
191 #else
192 #define ct_encode_string(s, b)  (s)
193 #define ct_decode_string(s, b)  (s)
194 #define ct_decode_argv(l, s, b) (s)
195 #define ct_conv_cbuff_resize(b, s) ((s) == (0))
196 #define ct_conv_wbuff_resize(b, s) ((s) == (0))
197 #define ct_encode_char(d, l, s) (*d = s, 1)
198 #define ct_free_argv(s)
199 #endif
200
201 #ifndef NARROWCHAR
202 /* Encode a characted into the destination buffer, provided there is sufficient
203  * buffer space available. Returns the number of bytes used up (zero if the
204  * character cannot be encoded, -1 if there was not enough space available). */
205
206 /* The maximum buffer size to hold the most unwieldy visual representation,
207  * in this case \U+nnnnn. */
208 #define VISUAL_WIDTH_MAX ((size_t)8)
209
210 /* The terminal is thought of in terms of X columns by Y lines. In the cases
211  * where a wide character takes up more than one column, the adjacent
212  * occupied column entries will contain this faux character. */
213 #define MB_FILL_CHAR ((Char)-1)
214
215 /* Visual width of character c, taking into account ^? , \0177 and \U+nnnnn
216  * style visual expansions. */
217 protected int ct_visual_width(Char);
218
219 /* Turn the given character into the appropriate visual format, matching
220  * the width given by ct_visual_width(). Returns the number of characters used
221  * up, or -1 if insufficient space. Buffer length is in count of Char's. */
222 protected ssize_t ct_visual_char(Char *, size_t, Char);
223
224 /* Convert the given string into visual format, using the ct_visual_char()
225  * function. Uses a static buffer, so not threadsafe. */
226 protected const Char *ct_visual_string(const Char *);
227
228
229 /* printable character, use ct_visual_width() to find out display width */
230 #define CHTYPE_PRINT        ( 0)
231 /* control character found inside the ASCII portion of the charset */
232 #define CHTYPE_ASCIICTL     (-1)
233 /* a \t */
234 #define CHTYPE_TAB          (-2)
235 /* a \n */
236 #define CHTYPE_NL           (-3)
237 /* non-printable character */
238 #define CHTYPE_NONPRINT     (-4)
239 /* classification of character c, as one of the above defines */
240 protected int ct_chr_class(Char c);
241 #endif
242
243 size_t  ct_mbrtowc(wchar_t *, const char *, size_t);
244
245
246 #endif /* _chartype_f */