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.31 by root, Fri Jan 6 20:50:58 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);
438 * file searching 431 * file searching
439 */ 432 */
440 433
441/* #define DEBUG_SEARCH_PATH */ 434/* #define DEBUG_SEARCH_PATH */
442 435
443#if defined (XPM_BACKGROUND) || (MENUBAR_MAX) 436#ifdef XPM_BACKGROUND
444/* 437/*
445 * search for FILE in the current working directory, and within the 438 * search for FILE in the current working directory, and within the
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;
529 522
530 /* search environment variables here too */
531 if ((f = rxvt_File_search_path (path, file, ext)) == NULL) 523 f = rxvt_File_search_path (path, file, ext);
532#ifdef PATH_ENV
533 if ((f = rxvt_File_search_path (getenv (PATH_ENV), file, ext)) == NULL)
534#endif
535 f = rxvt_File_search_path (getenv ("PATH"), file, ext);
536 524
537#ifdef DEBUG_SEARCH_PATH 525#ifdef DEBUG_SEARCH_PATH
538 if (f) 526 if (f)
539 fprintf (stderr, "found: \"%s\"\n", f); 527 fprintf (stderr, "found: \"%s\"\n", f);
540#endif 528#endif
541 529
542 return f; 530 return f;
543} 531}
544#endif /* defined (XPM_BACKGROUND) || (MENUBAR_MAX) */
545
546/*----------------------------------------------------------------------*
547 * miscellaneous drawing routines
548 */
549
550/*
551 * Draw top/left and bottom/right border shadows around windows
552 */
553#if defined(RXVT_SCROLLBAR) || defined(MENUBAR)
554void
555rxvt_Draw_Shadow (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int h)
556{
557 int shadow;
558
559 shadow = (w == 0 || h == 0) ? 1 : MENU_SHADOW;
560 w += x - 1;
561 h += y - 1;
562 for (; shadow-- > 0; x++, y++, w--, h--)
563 {
564 XDrawLine (display, win, topShadow, x, y, w, y);
565 XDrawLine (display, win, topShadow, x, y, x, h);
566 XDrawLine (display, win, botShadow, w, h, w, y + 1);
567 XDrawLine (display, win, botShadow, w, h, x + 1, h);
568 }
569}
570#endif 532#endif
571 533
572/* button shapes */
573#ifdef MENUBAR
574void
575rxvt_Draw_Triangle (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int type)
576{
577 switch (type)
578 {
579 case 'r': /* right triangle */
580 XDrawLine (display, win, topShadow, x, y, x, y + w);
581 XDrawLine (display, win, topShadow, x, y, x + w, y + w / 2);
582 XDrawLine (display, win, botShadow, x, y + w, x + w, y + w / 2);
583 break;
584 534
585 case 'l': /* left triangle */
586 XDrawLine (display, win, botShadow, x + w, y + w, x + w, y);
587 XDrawLine (display, win, botShadow, x + w, y + w, x, y + w / 2);
588 XDrawLine (display, win, topShadow, x, y + w / 2, x + w, y);
589 break;
590
591 case 'd': /* down triangle */
592 XDrawLine (display, win, topShadow, x, y, x + w / 2, y + w);
593 XDrawLine (display, win, topShadow, x, y, x + w, y);
594 XDrawLine (display, win, botShadow, x + w, y, x + w / 2, y + w);
595 break;
596
597 case 'u': /* up triangle */
598 XDrawLine (display, win, botShadow, x + w, y + w, x + w / 2, y);
599 XDrawLine (display, win, botShadow, x + w, y + w, x, y + w);
600 XDrawLine (display, win, topShadow, x, y + w, x + w / 2, y);
601 break;
602#if 0
603 case 's': /* square */
604 XDrawLine (display, win, topShadow, x + w, y, x, y);
605 XDrawLine (display, win, topShadow, x, y, x, y + w);
606 XDrawLine (display, win, botShadow, x, y + w, x + w, y + w);
607 XDrawLine (display, win, botShadow, x + w, y + w, x + w, y);
608 break;
609#endif
610
611 }
612}
613#endif
614
615// should not be used in interactive programs, for obvious reasons
616void rxvt_usleep (int usecs)
617{
618#if HAVE_NANOSLEEP
619 struct timespec ts;
620
621 ts.tv_sec = 0;
622 ts.tv_nsec = usecs * 1000;
623 nanosleep (&ts, NULL);
624#else
625 /* use select for timing */
626 struct timeval tv;
627
628 tv.tv_sec = 0;
629 tv.tv_usec = usecs;
630 select (0, NULL, NULL, NULL, &tv);
631#endif
632}
633
634/*----------------------- end-of-file (C source) -----------------------*/
635

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines