(_XOPEN_SOURCE): Don't define; this causes problems on Solaris 7.
[gnulib.git] / lib / mbswidth.c
1 /* Determine the number of screen columns needed for a string.
2    Copyright (C) 2000 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 /* Get MB_LEN_MAX.  */
25 #if HAVE_LIMITS_H
26 # include <limits.h>
27 #endif
28
29 /* Get MB_CUR_MAX.  */
30 #if HAVE_STDLIB_H
31 # include <stdlib.h>
32 #endif
33
34 #if HAVE_STRING_H
35 # include <string.h>
36 #endif
37
38 /* Get isprint().  */
39 #include <ctype.h>
40
41 /* Get mbstate_t, mbrtowc(), mbsinit(), wcwidth().  */
42 #if HAVE_WCHAR_H
43 # include <wchar.h>
44 #endif
45
46 /* Get iswprint().  */
47 #if HAVE_WCTYPE_H
48 # include <wctype.h>
49 #endif
50 #if !defined iswprint && !HAVE_ISWPRINT
51 # define iswprint(wc) 1
52 #endif
53
54 /* Some systems, like BeOS, have multibyte encodings but lack mbstate_t.  */
55 #if HAVE_MBRTOWC && defined mbstate_t
56 # define mbrtowc(pwc, s, n, ps) (mbrtowc) (pwc, s, n, 0)
57 # define mbsinit(ps) 1
58 #endif
59
60 #ifndef HAVE_DECL_WCWIDTH
61 "this configure-time declaration test was not run"
62 #endif
63 #if !HAVE_DECL_WCWIDTH
64 int wcwidth ();
65 #endif
66
67 #ifndef wcwidth
68 # if !HAVE_WCWIDTH
69 /* wcwidth doesn't exist, so assume all printable characters have
70    width 1.  */
71 #  define wcwidth(wc) ((wc) == 0 ? 0 : iswprint (wc) ? 1 : -1)
72 # else
73 # endif
74 #endif
75
76 /* Get ISPRINT.  */
77 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
78 /* Undefine to protect against the definition in wctype.h of solaris2.6.   */
79 # undef ISASCII
80 # define ISASCII(c) 1
81 #else
82 # define ISASCII(c) isascii (c)
83 #endif
84 /* Undefine to protect against the definition in wctype.h of solaris2.6.   */
85 #undef ISPRINT
86 #define ISPRINT(c) (ISASCII (c) && isprint (c))
87
88 /* Returns the number of columns needed to represent the multibyte
89    character string pointed to by STRING.  If a non-printable character
90    occurs, -1 is returned.
91    This is the multibyte analogon of the wcswidth function.  */
92 int
93 mbswidth (const char *string)
94 {
95   const char *p = string;
96   const char *plimit = p + strlen (p);
97   int width;
98
99   width = 0;
100 #if HAVE_MBRTOWC && (MB_LEN_MAX > 1)
101   if (MB_CUR_MAX > 1)
102     {
103       while (p < plimit)
104         switch (*p)
105           {
106             case ' ': case '!': case '"': case '#': case '%':
107             case '&': case '\'': case '(': case ')': case '*':
108             case '+': case ',': case '-': case '.': case '/':
109             case '0': case '1': case '2': case '3': case '4':
110             case '5': case '6': case '7': case '8': case '9':
111             case ':': case ';': case '<': case '=': case '>':
112             case '?':
113             case 'A': case 'B': case 'C': case 'D': case 'E':
114             case 'F': case 'G': case 'H': case 'I': case 'J':
115             case 'K': case 'L': case 'M': case 'N': case 'O':
116             case 'P': case 'Q': case 'R': case 'S': case 'T':
117             case 'U': case 'V': case 'W': case 'X': case 'Y':
118             case 'Z':
119             case '[': case '\\': case ']': case '^': case '_':
120             case 'a': case 'b': case 'c': case 'd': case 'e':
121             case 'f': case 'g': case 'h': case 'i': case 'j':
122             case 'k': case 'l': case 'm': case 'n': case 'o':
123             case 'p': case 'q': case 'r': case 's': case 't':
124             case 'u': case 'v': case 'w': case 'x': case 'y':
125             case 'z': case '{': case '|': case '}': case '~':
126               /* These characters are printable ASCII characters.  */
127               p++;
128               width++;
129               break;
130             case '\0':
131               break;
132             default:
133               /* If we have a multibyte sequence, scan it up to its end.  */
134               {
135                 mbstate_t mbstate;
136                 memset (&mbstate, 0, sizeof mbstate);
137                 do
138                   {
139                     wchar_t wc;
140                     size_t bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
141                     int w;
142
143                     if (bytes == 0)
144                       /* A null wide character was encountered.  */
145                       break;
146
147                     if (bytes == (size_t) -1)
148                       /* An invalid multibyte sequence was encountered.  */
149                       return -1;
150
151                     if (bytes == (size_t) -2)
152                       /* An incomplete multibyte character at the end.  */
153                       return -1;
154
155                     w = wcwidth (wc);
156                     if (w >= 0)
157                       /* A printable multibyte character.  */
158                       width += w;
159                     else
160                       /* An unprintable multibyte character.  */
161                       return -1;
162
163                     p += bytes;
164                   }
165                 while (! mbsinit (&mbstate));
166               }
167               break;
168           }
169       return width;
170     }
171 #endif
172
173   while (p < plimit)
174     {
175       unsigned char c = (unsigned char) *p++;
176
177       if (c == '\0')
178         break;
179
180       if (ISPRINT (c))
181         width++;
182       else
183         return -1;
184     }
185   return width;
186 }