]> git.deb.at Git - pkg/abook.git/blob - mbswidth.c
multibyte update
[pkg/abook.git] / mbswidth.c
1 /* Determine the number of screen columns needed for a string.
2    Copyright (C) 2000-2002 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by Bruno Haible <haible@clisp.cons.org>.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #ifdef HANDLE_MULTIBYTE /* for abook */
25
26 /* Specification.  */
27 #include "mbswidth.h"
28
29 /* Get MB_CUR_MAX.  */
30 #include <stdlib.h>
31
32 #include <string.h>
33
34 /* Get isprint().  */
35 #include <ctype.h>
36
37 /* Get mbstate_t, mbrtowc(), mbsinit(), wcwidth().  */
38 #if HAVE_WCHAR_H
39 # include <wchar.h>
40 #endif
41
42 /* Get iswprint(), iswcntrl().  */
43 #if HAVE_WCTYPE_H
44 # include <wctype.h>
45 #endif
46 #if !defined iswprint && !HAVE_ISWPRINT
47 # define iswprint(wc) 1
48 #endif
49 #if !defined iswcntrl && !HAVE_ISWCNTRL
50 # define iswcntrl(wc) 0
51 #endif
52
53 #ifndef mbsinit
54 # if !HAVE_MBSINIT
55 #  define mbsinit(ps) 1
56 # endif
57 #endif
58
59 #ifndef HAVE_DECL_WCWIDTH
60 "this configure-time declaration test was not run"
61 #endif
62 #if !HAVE_DECL_WCWIDTH
63 int wcwidth ();
64 #endif
65
66 #ifndef wcwidth
67 # if !HAVE_WCWIDTH
68 /* wcwidth doesn't exist, so assume all printable characters have
69    width 1.  */
70 #  define wcwidth(wc) ((wc) == 0 ? 0 : iswprint (wc) ? 1 : -1)
71 # endif
72 #endif
73
74 /* Get ISPRINT.  */
75 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
76 # define IN_CTYPE_DOMAIN(c) 1
77 #else
78 # define IN_CTYPE_DOMAIN(c) isascii(c)
79 #endif
80 /* Undefine to protect against the definition in wctype.h of solaris2.6.   */
81 #undef ISPRINT
82 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
83 #undef ISCNTRL
84 #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
85
86 /* Returns the number of columns needed to represent the multibyte
87    character string pointed to by STRING.  If a non-printable character
88    occurs, and MBSW_REJECT_UNPRINTABLE is specified, -1 is returned.
89    With flags = MBSW_REJECT_INVALID | MBSW_REJECT_UNPRINTABLE, this is
90    the multibyte analogon of the wcswidth function.  */
91 int
92 mbswidth (const char *string, int flags)
93 {
94   return mbsnwidth (string, strlen (string), flags);
95 }
96
97 /* Returns the number of columns needed to represent the multibyte
98    character string pointed to by STRING of length NBYTES.  If a
99    non-printable character occurs, and MBSW_REJECT_UNPRINTABLE is
100    specified, -1 is returned.  */
101 int
102 mbsnwidth (const char *string, size_t nbytes, int flags)
103 {
104   const char *p = string;
105   const char *plimit = p + nbytes;
106   int width;
107
108   width = 0;
109 #if HAVE_MBRTOWC
110   if (MB_CUR_MAX > 1)
111     {
112       while (p < plimit)
113         switch (*p)
114           {
115             case ' ': case '!': case '"': case '#': case '%':
116             case '&': case '\'': case '(': case ')': case '*':
117             case '+': case ',': case '-': case '.': case '/':
118             case '0': case '1': case '2': case '3': case '4':
119             case '5': case '6': case '7': case '8': case '9':
120             case ':': case ';': case '<': case '=': case '>':
121             case '?':
122             case 'A': case 'B': case 'C': case 'D': case 'E':
123             case 'F': case 'G': case 'H': case 'I': case 'J':
124             case 'K': case 'L': case 'M': case 'N': case 'O':
125             case 'P': case 'Q': case 'R': case 'S': case 'T':
126             case 'U': case 'V': case 'W': case 'X': case 'Y':
127             case 'Z':
128             case '[': case '\\': case ']': case '^': case '_':
129             case 'a': case 'b': case 'c': case 'd': case 'e':
130             case 'f': case 'g': case 'h': case 'i': case 'j':
131             case 'k': case 'l': case 'm': case 'n': case 'o':
132             case 'p': case 'q': case 'r': case 's': case 't':
133             case 'u': case 'v': case 'w': case 'x': case 'y':
134             case 'z': case '{': case '|': case '}': case '~':
135               /* These characters are printable ASCII characters.  */
136               p++;
137               width++;
138               break;
139             default:
140               /* If we have a multibyte sequence, scan it up to its end.  */
141               {
142                 mbstate_t mbstate;
143                 memset (&mbstate, 0, sizeof mbstate);
144                 do
145                   {
146                     wchar_t wc;
147                     size_t bytes;
148                     int w;
149
150                     bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
151
152                     if (bytes == (size_t) -1)
153                       /* An invalid multibyte sequence was encountered.  */
154                       {
155                         if (!(flags & MBSW_REJECT_INVALID))
156                           {
157                             p++;
158                             width++;
159                             break;
160                           }
161                         else
162                           return -1;
163                       }
164
165                     if (bytes == (size_t) -2)
166                       /* An incomplete multibyte character at the end.  */
167                       {
168                         if (!(flags & MBSW_REJECT_INVALID))
169                           {
170                             p = plimit;
171                             width++;
172                             break;
173                           }
174                         else
175                           return -1;
176                       }
177
178                     if (bytes == 0)
179                       /* A null wide character was encountered.  */
180                       bytes = 1;
181
182                     w = wcwidth (wc);
183                     if (w >= 0)
184                       /* A printable multibyte character.  */
185                       width += w;
186                     else
187                       /* An unprintable multibyte character.  */
188                       if (!(flags & MBSW_REJECT_UNPRINTABLE))
189                         width += (iswcntrl (wc) ? 0 : 1);
190                       else
191                         return -1;
192
193                     p += bytes;
194                   }
195                 while (! mbsinit (&mbstate));
196               }
197               break;
198           }
199       return width;
200     }
201 #endif
202
203   while (p < plimit)
204     {
205       unsigned char c = (unsigned char) *p++;
206
207       if (ISPRINT (c))
208         width++;
209       else if (!(flags & MBSW_REJECT_UNPRINTABLE))
210         width += (ISCNTRL (c) ? 0 : 1);
211       else
212         return -1;
213     }
214   return width;
215 }
216
217 int
218 mbsnbytes (const char *string, size_t nbytes, int maxwidth, int flags)
219 {
220   const char *p = string, *old_p = string;
221   const char *plimit = p + nbytes;
222   int width;
223
224   width = 0;
225 #if HAVE_MBRTOWC
226   if (MB_CUR_MAX > 1)
227     {
228       while (p < plimit && width < maxwidth)
229         {
230         old_p = p;
231         switch (*p)
232           {
233             case ' ': case '!': case '"': case '#': case '%':
234             case '&': case '\'': case '(': case ')': case '*':
235             case '+': case ',': case '-': case '.': case '/':
236             case '0': case '1': case '2': case '3': case '4':
237             case '5': case '6': case '7': case '8': case '9':
238             case ':': case ';': case '<': case '=': case '>':
239             case '?':
240             case 'A': case 'B': case 'C': case 'D': case 'E':
241             case 'F': case 'G': case 'H': case 'I': case 'J':
242             case 'K': case 'L': case 'M': case 'N': case 'O':
243             case 'P': case 'Q': case 'R': case 'S': case 'T':
244             case 'U': case 'V': case 'W': case 'X': case 'Y':
245             case 'Z':
246             case '[': case '\\': case ']': case '^': case '_':
247             case 'a': case 'b': case 'c': case 'd': case 'e':
248             case 'f': case 'g': case 'h': case 'i': case 'j':
249             case 'k': case 'l': case 'm': case 'n': case 'o':
250             case 'p': case 'q': case 'r': case 's': case 't':
251             case 'u': case 'v': case 'w': case 'x': case 'y':
252             case 'z': case '{': case '|': case '}': case '~':
253               /* These characters are printable ASCII characters.  */
254               p++;
255               width++;
256               break;
257             default:
258               /* If we have a multibyte sequence, scan it up to its end.  */
259               {
260                 mbstate_t mbstate;
261                 memset (&mbstate, 0, sizeof mbstate);
262                 do
263                   {
264                     wchar_t wc;
265                     size_t bytes;
266                     int w;
267
268                     bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
269
270                     if (bytes == (size_t) -1)
271                       /* An invalid multibyte sequence was encountered.  */
272                       {
273                         if (!(flags & MBSW_REJECT_INVALID))
274                           {
275                             p++;
276                             width++;
277                             break;
278                           }
279                         else
280                           return -1;
281                       }
282
283                     if (bytes == (size_t) -2)
284                       /* An incomplete multibyte character at the end.  */
285                       {
286                         if (!(flags & MBSW_REJECT_INVALID))
287                           {
288                             p = plimit;
289                             width++;
290                             break;
291                           }
292                         else
293                           return -1;
294                       }
295
296                     if (bytes == 0)
297                       /* A null wide character was encountered.  */
298                       bytes = 1;
299
300                     w = wcwidth (wc);
301                     if (w >= 0)
302                       /* A printable multibyte character.  */
303                       width += w;
304                     else
305                       /* An unprintable multibyte character.  */
306                       if (!(flags & MBSW_REJECT_UNPRINTABLE))
307                         width += (iswcntrl (wc) ? 0 : 1);
308                       else
309                         return -1;
310
311                     p += bytes;
312                   }
313                 while (! mbsinit (&mbstate));
314               }
315               break;
316           }
317       }
318
319       return (width > maxwidth) ? (old_p - string) : (p - string);
320     }
321 #endif
322
323   return maxwidth;
324 }
325
326 #endif /* HANDLE_MULTIBYTE */