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.34 by root, Mon Jan 16 16:19:19 2006 UTC vs.
Revision 1.37 by root, Sat Jan 21 23:50:33 2006 UTC

163 163
164 return r; 164 return r;
165} 165}
166 166
167char * 167char *
168rxvt_strdup (const char *str)
169{
170 return str ? strdup (str) : 0;
171}
172
173char *
174rxvt_r_basename (const char *str) 168rxvt_r_basename (const char *str) NOTHROW
175{ 169{
176 char *base = strrchr (str, '/'); 170 char *base = strrchr (str, '/');
177 171
178 return (char *) (base ? base + 1 : str); 172 return (char *) (base ? base + 1 : str);
179} 173}
180 174
181/* 175/*
182 * Print an error message 176 * Print an error message
183 */ 177 */
184void 178void
185rxvt_vlog (const char *fmt, va_list arg_ptr) 179rxvt_vlog (const char *fmt, va_list arg_ptr) NOTHROW
186{ 180{
187 char msg[1024]; 181 char msg[1024];
188 182
189 vsnprintf (msg, sizeof msg, fmt, arg_ptr); 183 vsnprintf (msg, sizeof msg, fmt, arg_ptr);
190 184
193 else 187 else
194 write (STDOUT_FILENO, msg, strlen (msg)); 188 write (STDOUT_FILENO, msg, strlen (msg));
195} 189}
196 190
197void 191void
198rxvt_log (const char *fmt,...) 192rxvt_log (const char *fmt,...) NOTHROW
199{ 193{
200 va_list arg_ptr; 194 va_list arg_ptr;
201 195
202 va_start (arg_ptr, fmt); 196 va_start (arg_ptr, fmt);
203 rxvt_vlog (fmt, arg_ptr); 197 rxvt_vlog (fmt, arg_ptr);
206 200
207/* 201/*
208 * Print an error message 202 * Print an error message
209 */ 203 */
210void 204void
211rxvt_warn (const char *fmt,...) 205rxvt_warn (const char *fmt,...) NOTHROW
212{ 206{
213 va_list arg_ptr; 207 va_list arg_ptr;
214 208
215 rxvt_log ("%s: ", RESNAME); 209 rxvt_log ("%s: ", RESNAME);
216 210
218 rxvt_vlog (fmt, arg_ptr); 212 rxvt_vlog (fmt, arg_ptr);
219 va_end (arg_ptr); 213 va_end (arg_ptr);
220} 214}
221 215
222void 216void
223rxvt_fatal (const char *fmt,...) 217rxvt_fatal (const char *fmt,...) THROW ((class rxvt_failure_exception))
224{ 218{
225 va_list arg_ptr; 219 va_list arg_ptr;
226 220
227 rxvt_log ("%s: ", RESNAME); 221 rxvt_log ("%s: ", RESNAME);
228 222
231 va_end (arg_ptr); 225 va_end (arg_ptr);
232 226
233 rxvt_exit_failure (); 227 rxvt_exit_failure ();
234} 228}
235 229
236class rxvt_failure_exception rxvt_failure_exception;
237
238void 230void
239rxvt_exit_failure () 231rxvt_exit_failure () THROW ((class rxvt_failure_exception))
240{ 232{
233 static class rxvt_failure_exception rxvt_failure_exception;
241 throw (rxvt_failure_exception); 234 throw (rxvt_failure_exception);
242} 235}
243 236
244/* 237/*
245 * check that the first characters of S1 match S2 238 * check that the first characters of S1 match S2
248 * return: 0 241 * return: 0
249 * Match 242 * Match
250 * return: strlen (S2) 243 * return: strlen (S2)
251 */ 244 */
252int 245int
253rxvt_Str_match (const char *s1, const char *s2) 246rxvt_Str_match (const char *s1, const char *s2) NOTHROW
254{ 247{
255 int n = strlen (s2); 248 int n = strlen (s2);
256 249
257 return ((strncmp (s1, s2, n) == 0) ? n : 0); 250 return ((strncmp (s1, s2, n) == 0) ? n : 0);
258} 251}
259 252
260const char * 253const char *
261rxvt_Str_skip_space (const char *str) 254rxvt_Str_skip_space (const char *str) NOTHROW
262{ 255{
263 if (str) 256 if (str)
264 while (*str && isspace (*str)) 257 while (*str && isspace (*str))
265 str++; 258 str++;
266 259
270/* 263/*
271 * remove leading/trailing space and strip-off leading/trailing quotes. 264 * remove leading/trailing space and strip-off leading/trailing quotes.
272 * in place. 265 * in place.
273 */ 266 */
274char * 267char *
275rxvt_Str_trim (char *str) 268rxvt_Str_trim (char *str) NOTHROW
276{ 269{
277 char *r, *s; 270 char *r, *s;
278 271
279 if (!str || !*str) /* shortcut */ 272 if (!str || !*str) /* shortcut */
280 return str; 273 return str;
317 * "\E]" prefixed strings (XTerm escape sequence) append ST if needed 310 * "\E]" prefixed strings (XTerm escape sequence) append ST if needed
318 * 311 *
319 * returns the converted string length 312 * returns the converted string length
320 */ 313 */
321int 314int
322rxvt_Str_escaped (char *str) 315rxvt_Str_escaped (char *str) NOTHROW
323{ 316{
324 char ch, *s, *d; 317 char ch, *s, *d;
325 int i, num, append = 0; 318 int i, num, append = 0;
326 319
327 if (!str || !*str) 320 if (!str || !*str)
393 * Split a comma-separated string into an array, stripping leading and 386 * Split a comma-separated string into an array, stripping leading and
394 * trailing spaces from each entry. Empty strings are properly returned 387 * trailing spaces from each entry. Empty strings are properly returned
395 * Caller should free each entry and array when done 388 * Caller should free each entry and array when done
396 */ 389 */
397char ** 390char **
398rxvt_splitcommastring (const char *cs) 391rxvt_splitcommastring (const char *cs) NOTHROW
399{ 392{
400 int l, n, p; 393 int l, n, p;
401 const char *s, *t; 394 const char *s, *t;
402 char **ret; 395 char **ret;
403 396
424 417
425 return ret; 418 return ret;
426} 419}
427 420
428void 421void
429rxvt_freecommastring (char **cs) 422rxvt_freecommastring (char **cs) NOTHROW
430{ 423{
431 for (int i = 0; cs[i]; ++i) 424 for (int i = 0; cs[i]; ++i)
432 free (cs[i]); 425 free (cs[i]);
433 426
434 free (cs); 427 free (cs);
446 * colon-delimited PATHLIST, adding the file extension EXT if required. 439 * colon-delimited PATHLIST, adding the file extension EXT if required.
447 * 440 *
448 * FILE is either semi-colon or zero terminated 441 * FILE is either semi-colon or zero terminated
449 */ 442 */
450char * 443char *
451rxvt_File_search_path (const char *pathlist, const char *file, const char *ext) 444rxvt_File_search_path (const char *pathlist, const char *file, const char *ext) NOTHROW
452{ 445{
453 int maxpath, len; 446 int maxpath, len;
454 const char *p, *path; 447 const char *p, *path;
455 char name[256]; 448 char name[256];
456 449
518 } 511 }
519 return NULL; 512 return NULL;
520} 513}
521 514
522char * 515char *
523rxvt_File_find (const char *file, const char *ext, const char *path) 516rxvt_File_find (const char *file, const char *ext, const char *path) NOTHROW
524{ 517{
525 char *f; 518 char *f;
526 519
527 if (file == NULL || *file == '\0') 520 if (file == NULL || *file == '\0')
528 return NULL; 521 return NULL;
536 529
537 return f; 530 return f;
538} 531}
539#endif 532#endif
540 533
541/*----------------------------------------------------------------------*
542 * miscellaneous drawing routines
543 */
544 534
545/*
546 * Draw top/left and bottom/right border shadows around windows
547 */
548#ifdef RXVT_SCROLLBAR
549void
550rxvt_Draw_Shadow (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int h)
551{
552 int shadow;
553
554 shadow = (w == 0 || h == 0) ? 1 : 2;
555 w += x - 1;
556 h += y - 1;
557 for (; shadow-- > 0; x++, y++, w--, h--)
558 {
559 XDrawLine (display, win, topShadow, x, y, w, y);
560 XDrawLine (display, win, topShadow, x, y, x, h);
561 XDrawLine (display, win, botShadow, w, h, w, y + 1);
562 XDrawLine (display, win, botShadow, w, h, x + 1, h);
563 }
564}
565#endif
566
567// should not be used in interactive programs, for obvious reasons
568void rxvt_usleep (int usecs)
569{
570#if HAVE_NANOSLEEP
571 struct timespec ts;
572
573 ts.tv_sec = 0;
574 ts.tv_nsec = usecs * 1000;
575 nanosleep (&ts, NULL);
576#else
577 /* use select for timing */
578 struct timeval tv;
579
580 tv.tv_sec = 0;
581 tv.tv_usec = usecs;
582 select (0, NULL, NULL, NULL, &tv);
583#endif
584}
585
586/*----------------------- end-of-file (C source) -----------------------*/
587

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines