ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/misc.C
(Generate patch)

Comparing rxvt-unicode/src/misc.C (file contents):
Revision 1.19 by root, Sun Dec 12 06:30:25 2004 UTC vs.
Revision 1.25 by root, Mon Feb 7 01:17:03 2005 UTC

36 char *r = (char *)rxvt_malloc (len * MB_CUR_MAX + 1); 36 char *r = (char *)rxvt_malloc (len * MB_CUR_MAX + 1);
37 37
38 char *dst = r; 38 char *dst = r;
39 while (len--) 39 while (len--)
40 { 40 {
41 int l = wcrtomb (dst, *str++, mbs); 41 ssize_t l = wcrtomb (dst, *str++, mbs);
42 if (l < 0) 42 if (l < 0)
43 *dst++ = '?'; 43 *dst++ = '?';
44 else 44 else
45 dst += l; 45 dst += l;
46 } 46 }
47 47
48 *dst++ = 0; 48 *dst++ = 0;
49 49
50 return r; 50 return (char *)rxvt_realloc (r, dst - r);
51} 51}
52 52
53wchar_t * 53wchar_t *
54rxvt_mbstowcs (const char *str, int len) 54rxvt_mbstowcs (const char *str, int len)
55{ 55{
56 if (len < 0) len = strlen (str); 56 if (len < 0) len = strlen (str);
57 57
58 wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t)); 58 wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t));
59 59
60 if (mbstowcs (r, str, len + 1) < 0) 60 if ((ssize_t)mbstowcs (r, str, len + 1) < 0)
61 *r = 0; 61 *r = 0;
62 62
63 return r; 63 return r;
64} 64}
65 65
71 char *r = (char *)rxvt_malloc (len * 4 + 1); 71 char *r = (char *)rxvt_malloc (len * 4 + 1);
72 char *p = r; 72 char *p = r;
73 73
74 while (len--) 74 while (len--)
75 { 75 {
76 unicode_t w = *str++; 76 unicode_t w = *str++ & UNICODE_MASK;
77 77
78 if (w < 0x000080) 78 if (w < 0x000080)
79 *p++ = w; 79 *p++ = w;
80 else if (w < 0x000800) 80 else if (w < 0x000800)
81 *p++ = 0xc0 | ( w >> 6), 81 *p++ = 0xc0 | ( w >> 6),
91 *p++ = 0x80 | ( w & 0x3f); 91 *p++ = 0x80 | ( w & 0x3f);
92 else 92 else
93 *p++ = '?'; 93 *p++ = '?';
94 } 94 }
95 95
96 *p = 0; 96 *p++ = 0;
97 97
98 return r; 98 return (char *)rxvt_realloc (r, p - r);
99} 99}
100 100
101wchar_t * 101wchar_t *
102rxvt_utf8towcs (const char *str, int len) 102rxvt_utf8towcs (const char *str, int len)
103{ 103{
104 if (len < 0) len = strlen (str); 104 if (len < 0) len = strlen (str);
105 105
106 wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t)); 106 wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t)),
107 wchar_t *p = r; 107 *p = r;
108 108
109 unsigned char *s = (unsigned char *)str; 109 unsigned char *s = (unsigned char *)str,
110 *e = s + len;
110 111
111 while (len--) 112 for (;;)
112 { 113 {
114 len = e - s;
115
116 if (len == 0)
117 break;
113 if (s[0] < 0x80) 118 else if (s[0] < 0x80)
114 *p++ = *s++; 119 *p++ = *s++;
115 else if (len > 0 120 else if (len >= 2
116 && s[0] >= 0xc2 && s[0] <= 0xdf 121 && s[0] >= 0xc2 && s[0] <= 0xdf
117 && (s[1] & 0xc0) == 0x80) 122 && (s[1] & 0xc0) == 0x80)
118 { 123 {
119 *p++ = ((s[0] & 0x1f) << 6) 124 *p++ = ((s[0] & 0x1f) << 6)
120 | (s[1] & 0x3f); 125 | (s[1] & 0x3f);
121 s += 2; 126 s += 2;
122 } 127 }
123 else if (len > 1 128 else if (len >= 3
124 && ( (s[0] == 0xe0 && s[1] >= 0xa0 && s[1] <= 0xbf) 129 && ( (s[0] == 0xe0 && s[1] >= 0xa0 && s[1] <= 0xbf)
125 || (s[0] >= 0xe1 && s[0] <= 0xec && s[1] >= 0x80 && s[1] <= 0xbf) 130 || (s[0] >= 0xe1 && s[0] <= 0xec && s[1] >= 0x80 && s[1] <= 0xbf)
126 || (s[0] == 0xed && s[1] >= 0x80 && s[1] <= 0x9f) 131 || (s[0] == 0xed && s[1] >= 0x80 && s[1] <= 0x9f)
127 || (s[0] >= 0xee && s[0] <= 0xef && s[1] >= 0x80 && s[1] <= 0xbf) 132 || (s[0] >= 0xee && s[0] <= 0xef && s[1] >= 0x80 && s[1] <= 0xbf)
128 ) 133 )
131 *p++ = ((s[0] & 0x0f) << 12) 136 *p++ = ((s[0] & 0x0f) << 12)
132 | ((s[1] & 0x3f) << 6) 137 | ((s[1] & 0x3f) << 6)
133 | (s[2] & 0x3f); 138 | (s[2] & 0x3f);
134 s += 3; 139 s += 3;
135 } 140 }
136 else if (len > 2 141 else if (len >= 4
137 && ( (s[0] == 0xf0 && s[1] >= 0x90 && s[1] <= 0xbf) 142 && ( (s[0] == 0xf0 && s[1] >= 0x90 && s[1] <= 0xbf)
138 || (s[0] >= 0xf1 && s[0] <= 0xf3 && s[1] >= 0x80 && s[1] <= 0xbf) 143 || (s[0] >= 0xf1 && s[0] <= 0xf3 && s[1] >= 0x80 && s[1] <= 0xbf)
139 || (s[0] == 0xf4 && s[1] >= 0x80 && s[1] <= 0x8f) 144 || (s[0] == 0xf4 && s[1] >= 0x80 && s[1] <= 0x8f)
140 ) 145 )
141 && (s[2] & 0xc0) == 0x80 146 && (s[2] & 0xc0) == 0x80
277/* INTPROTO */ 282/* INTPROTO */
278char * 283char *
279rxvt_Str_trim (char *str) 284rxvt_Str_trim (char *str)
280{ 285{
281 char *r, *s; 286 char *r, *s;
282 int n;
283 287
284 if (!str || !*str) /* shortcut */ 288 if (!str || !*str) /* shortcut */
285 return str; 289 return str;
286 290
287 /* skip leading spaces */ 291 /* skip leading spaces */
288 for (s = str; *s && isspace (*s); s++) ; 292 for (s = str; *s && isspace (*s); s++) ;
293
289 /* goto end of string */ 294 /* goto end of string */
290 for (n = 0, r = s; *r++; n++) ; 295 r = s + strlen (s) - 1;
291 r -= 2; 296
292 /* dump return */ 297 /* dump return and other trailing whitespace */
293 if (n > 0 && *r == '\n') 298 while (r > s && isspace (*r))
294 n--, r--; 299 r--;
295 /* backtrack along trailing spaces */ 300
296 for (; n > 0 && isspace (*r); r--, n--) ; 301#if 0
297 /* skip matching leading/trailing quotes */ 302 /* skip matching leading/trailing quotes */
298 if (*s == '"' && *r == '"' && n > 1) 303 if (*s == '"' && *r == '"' && n > 1)
299 { 304 {
300 s++; 305 s++;
301 n -= 2; 306 n -= 2;
302 } 307 }
308#endif
303 309
304 /* copy back over: forwards copy */ 310 memmove (str, s, r + 1 - s);
305 for (r = str; n; n--) 311 str[r + 1 - s] = 0;
306 *r++ = *s++;
307 *r = '\0';
308 312
309 return str; 313 return str;
310} 314}
311 315
312/* 316/*
395 return (d - str); 399 return (d - str);
396} 400}
397 401
398/* 402/*
399 * Split a comma-separated string into an array, stripping leading and 403 * Split a comma-separated string into an array, stripping leading and
400 * trailing spaces (and paired quotes) from each entry. Empty strings 404 * trailing spaces from each entry. Empty strings are properly returned
401 * are properly returned
402 * Caller should free each entry and array when done 405 * Caller should free each entry and array when done
403 */ 406 */
404/* INTPROTO */ 407/* INTPROTO */
405char ** 408char **
406rxvt_splitcommastring (const char *cs) 409rxvt_splitcommastring (const char *cs)
413 s = ""; 416 s = "";
414 417
415 for (n = 1, t = s; *t; t++) 418 for (n = 1, t = s; *t; t++)
416 if (*t == ',') 419 if (*t == ',')
417 n++; 420 n++;
421
418 ret = (char **)malloc ((n + 1) * sizeof (char *)); 422 ret = (char **)malloc ((n + 1) * sizeof (char *));
419 ret[n] = NULL; 423 ret[n] = NULL;
420 424
421 for (l = 0, t = s; l < n; l++) 425 for (l = 0, t = s; l < n; l++)
422 { 426 {
426 strncpy (ret[l], s, p); 430 strncpy (ret[l], s, p);
427 ret[l][p] = '\0'; 431 ret[l][p] = '\0';
428 rxvt_Str_trim (ret[l]); 432 rxvt_Str_trim (ret[l]);
429 s = ++t; 433 s = ++t;
430 } 434 }
435
431 return ret; 436 return ret;
432} 437}
433 438
434void 439void
435rxvt_freecommastring (char **cs) 440rxvt_freecommastring (char **cs)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines