Use rxvt_temp_buf in more places.
[dana/urxvt.git] / src / misc.C
1 /*----------------------------------------------------------------------*
2  * File:        misc.C
3  *----------------------------------------------------------------------*
4  *
5  * All portions of code are copyright by their respective author/s.
6  * Copyright (c) 1996      mj olesen <olesen@me.QueensU.CA> Queen's Univ at Kingston
7  * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
8  * Copyright (c) 1998-2000 Geoff Wing <gcw@pobox.com>
9  * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  *----------------------------------------------------------------------*/
25
26 #include "../config.h"          /* NECESSARY */
27 #include "rxvt.h"               /* NECESSARY */
28
29 char *
30 rxvt_wcstombs (const wchar_t *str, int len)
31 {
32   if (len < 0) len = wcslen (str);
33
34   mbstate mbs;
35   char *r = (char *)rxvt_malloc (len * MB_CUR_MAX + 1);
36
37   char *dst = r;
38   while (len--)
39     {
40       ssize_t l = wcrtomb (dst, *str++, mbs);
41
42       if (l < 0)
43         {
44           *dst++ = '?';
45           wcrtomb (0, 0, mbs); // reset undefined state
46         }
47       else
48         dst += l;
49     }
50
51   *dst++ = 0;
52
53   return (char *)rxvt_realloc (r, dst - r);
54 }
55
56 wchar_t *
57 rxvt_mbstowcs (const char *str, int len)
58 {
59   if (len < 0) len = strlen (str);
60
61   wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t));
62
63   if ((ssize_t)mbstowcs (r, str, len + 1) < 0)
64     *r = 0;
65
66   return r;
67 }
68
69 char *
70 rxvt_wcstoutf8 (const wchar_t *str, int len)
71 {
72   if (len < 0) len = wcslen (str);
73
74   char *r = (char *)rxvt_malloc (len * 4 + 1);
75   char *p = r;
76
77   while (len--)
78     {
79       unicode_t w = *str++ & UNICODE_MASK;
80
81       if      (w < 0x000080)
82         *p++ = w;
83       else if (w < 0x000800)
84         *p++ = 0xc0 | ( w >>  6),
85         *p++ = 0x80 | ( w        & 0x3f);
86       else if (w < 0x010000)
87         *p++ = 0xe0 | ( w >> 12),
88         *p++ = 0x80 | ((w >>  6) & 0x3f),
89         *p++ = 0x80 | ( w        & 0x3f);
90       else if (w < 0x110000)
91         *p++ = 0xf0 | ( w >> 18),
92         *p++ = 0x80 | ((w >> 12) & 0x3f),
93         *p++ = 0x80 | ((w >>  6) & 0x3f),
94         *p++ = 0x80 | ( w        & 0x3f);
95       else
96         *p++ = '?';
97     }
98
99   *p++ = 0;
100
101   return (char *)rxvt_realloc (r, p - r);
102 }
103
104 wchar_t *
105 rxvt_utf8towcs (const char *str, int len)
106 {
107   if (len < 0) len = strlen (str);
108
109   wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t)),
110           *p = r;
111
112   unsigned char *s = (unsigned char *)str,
113                 *e = s + len;
114
115   for (;;)
116     {
117       len = e - s;
118
119       if (len == 0)
120         break;
121       else if (s[0] < 0x80)
122         *p++ = *s++;
123       else if (len >= 2
124                && s[0] >= 0xc2 && s[0] <= 0xdf
125                && (s[1] & 0xc0) == 0x80)
126         {
127           *p++ = ((s[0] & 0x1f) << 6)
128                |  (s[1] & 0x3f);
129           s += 2;
130         }
131       else if (len >= 3
132                && (   (s[0] == 0xe0                 && s[1] >= 0xa0 && s[1] <= 0xbf)
133                    || (s[0] >= 0xe1 && s[0] <= 0xec && s[1] >= 0x80 && s[1] <= 0xbf)
134                    || (s[0] == 0xed                 && s[1] >= 0x80 && s[1] <= 0x9f)
135                    || (s[0] >= 0xee && s[0] <= 0xef && s[1] >= 0x80 && s[1] <= 0xbf)
136                   )
137                && (s[2] & 0xc0) == 0x80)
138         {
139           *p++ = ((s[0] & 0x0f) << 12)
140                | ((s[1] & 0x3f) <<  6)
141                |  (s[2] & 0x3f);
142           s += 3;
143         }
144       else if (len >= 4
145                && (   (s[0] == 0xf0                 && s[1] >= 0x90 && s[1] <= 0xbf)
146                    || (s[0] >= 0xf1 && s[0] <= 0xf3 && s[1] >= 0x80 && s[1] <= 0xbf)
147                    || (s[0] == 0xf4                 && s[1] >= 0x80 && s[1] <= 0x8f)
148                   )
149                && (s[2] & 0xc0) == 0x80
150                && (s[3] & 0xc0) == 0x80)
151         {
152           *p++ = ((s[0] & 0x07) << 18)
153                | ((s[1] & 0x3f) << 12)
154                | ((s[2] & 0x3f) <<  6)
155                |  (s[3] & 0x3f);
156           s += 4;
157         }
158       else
159         {
160           *p++ = 0xfffd;
161           s++;
162         }
163     }
164
165   *p = 0;
166
167   return r;
168 }
169
170 const char *
171 rxvt_basename (const char *str) NOTHROW
172 {
173   const char *base = strrchr (str, '/');
174
175   return base ? base + 1 : str;
176 }
177
178 /*
179  * Print an error message
180  */
181 void
182 rxvt_vlog (const char *fmt, va_list arg_ptr) NOTHROW
183 {
184   char msg[1024];
185
186   vsnprintf (msg, sizeof msg, fmt, arg_ptr);
187
188   if (GET_R && GET_R->log_hook)
189     (*GET_R->log_hook) (msg);
190   else
191     write (STDOUT_FILENO, msg, strlen (msg));
192 }
193
194 void
195 rxvt_log (const char *fmt,...) NOTHROW
196 {
197   va_list arg_ptr;
198
199   va_start (arg_ptr, fmt);
200   rxvt_vlog (fmt, arg_ptr);
201   va_end (arg_ptr);
202 }
203
204 /*
205  * Print an error message
206  */
207 void
208 rxvt_warn (const char *fmt,...) NOTHROW
209 {
210   va_list arg_ptr;
211
212   rxvt_log ("%s: ", RESNAME);
213
214   va_start (arg_ptr, fmt);
215   rxvt_vlog (fmt, arg_ptr);
216   va_end (arg_ptr);
217 }
218
219 void
220 rxvt_fatal (const char *fmt,...) THROW ((class rxvt_failure_exception))
221 {
222   va_list arg_ptr;
223
224   rxvt_log ("%s: ", RESNAME);
225
226   va_start (arg_ptr, fmt);
227   rxvt_vlog (fmt, arg_ptr);
228   va_end (arg_ptr);
229
230   rxvt_exit_failure ();
231 }
232
233 void
234 rxvt_exit_failure () THROW ((class rxvt_failure_exception))
235 {
236   static class rxvt_failure_exception rxvt_failure_exception;
237   throw (rxvt_failure_exception);
238 }
239
240 /*
241  * remove leading/trailing space in place.
242  */
243 char *
244 rxvt_strtrim (char *str) NOTHROW
245 {
246   char *r, *s;
247
248   if (!str || !*str)            /* shortcut */
249     return str;
250
251   /* skip leading spaces */
252   for (s = str; *s && isspace (*s); s++) ;
253
254   /* goto end of string */
255   r = s + strlen (s) - 1;
256
257   /* dump return and other trailing whitespace */
258   while (r > s && isspace (*r))
259     r--;
260
261   memmove (str, s, r + 1 - s);
262   str[r + 1 - s] = 0;
263
264   return str;
265 }
266
267 /*
268  * Split a comma-separated string into an array, stripping leading and
269  * trailing spaces from each entry.  Empty strings are properly returned
270  */
271 char **
272 rxvt_splitcommastring (const char *cs) NOTHROW
273 {
274   int             l, n, p;
275   const char     *s, *t;
276   char          **ret;
277
278   if ((s = cs) == NULL)
279     s = "";
280
281   for (n = 1, t = s; *t; t++)
282     if (*t == ',')
283       n++;
284
285   ret = (char **)malloc ((n + 1) * sizeof (char *));
286   ret[n] = NULL;
287
288   for (l = 0, t = s; l < n; l++)
289     {
290       for ( ; *t && *t != ','; t++) ;
291       p = t - s;
292       ret[l] = (char *)malloc (p + 1);
293       memcpy (ret[l], s, p);
294       ret[l][p] = '\0';
295       rxvt_strtrim (ret[l]);
296       s = ++t;
297     }
298
299   return ret;
300 }
301
302 void
303 rxvt_freecommastring (char **cs) NOTHROW
304 {
305   for (int i = 0; cs[i]; ++i)
306     free (cs[i]);
307
308   free (cs);
309 }
310
311 void *
312 rxvt_malloc (size_t size)
313 {
314   void *p = malloc (size);
315
316   if (!p)
317     rxvt_fatal ("memory allocation failure. aborting.\n");
318
319   return p;
320 }
321
322 void *
323 rxvt_calloc (size_t number, size_t size)
324 {
325   void *p = calloc (number, size);
326
327   if (!p)
328     rxvt_fatal ("memory allocation failure. aborting.\n");
329
330   return p;
331 }
332
333 void *
334 rxvt_realloc (void *ptr, size_t size)
335 {
336   void *p = realloc (ptr, size);
337
338   if (!p)
339     rxvt_fatal ("memory allocation failure. aborting.\n");
340
341   return p;
342 }