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