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

Comparing rxvt-unicode/src/rxvtutil.h (file contents):
Revision 1.27 by root, Fri Jun 23 14:31:38 2006 UTC vs.
Revision 1.41 by sf-exg, Sat Dec 18 18:17:39 2010 UTC

3 3
4#include <cstdlib> 4#include <cstdlib>
5#include <cstring> 5#include <cstring>
6 6
7using namespace std; 7using namespace std;
8
9#define ARRAY_LENGTH(v) (sizeof (v) / sizeof ((v)[0]))
8 10
9#define PP_CONCAT_(a, b) a ## b 11#define PP_CONCAT_(a, b) a ## b
10#define PP_CONCAT(a, b) PP_CONCAT_(a, b) 12#define PP_CONCAT(a, b) PP_CONCAT_(a, b)
11#define PP_STRINGIFY_(a) #a 13#define PP_STRINGIFY_(a) #a
12#define PP_STRINGIFY(a) PP_STRINGIFY_(a) 14#define PP_STRINGIFY(a) PP_STRINGIFY_(a)
13 15
14// actually, some gcc-3.x versions work, too 16#define HAVE_GCC_BUILTINS (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ == 4))
15#define HAVE_GCC_BUILTINS (__GNUC__ >= 4)
16 17
17#ifndef __attribute__
18# if __GNUC__ 18#if __GNUC__ >= 4
19# if (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || (__GNUC__ < 2) 19# define rxvt_attribute(x) __attribute__(x)
20# define __attribute__(x) 20# define expect(expr,value) __builtin_expect ((expr),(value))
21# endif 21#else
22# endif
23# define __attribute__(x) 22# define rxvt_attribute(x)
23# define expect(expr,value) (expr)
24#endif 24#endif
25 25
26// put into ifs if you are very sure that the expression
27// is mostly true or mostly false. note that these return
28// booleans, not the expression.
29#define expect_false(expr) expect ((expr) != 0, 0)
30#define expect_true(expr) expect ((expr) != 0, 1)
31
26#define NORETURN __attribute__ ((noreturn)) 32#define NORETURN rxvt_attribute ((noreturn))
27#define UNUSED __attribute__ ((unused)) 33#define UNUSED rxvt_attribute ((unused))
28#define CONST __attribute__ ((const)) 34#define CONST rxvt_attribute ((const))
29 35
30// increases code size unless -fno-enforce-eh-specs 36// increases code size unless -fno-enforce-eh-specs
31#if __GNUC__ 37#if __GNUC__
32# define NOTHROW 38# define NOTHROW
33# define THROW(x) 39# define THROW(x)
66T lerp (T a, U b, P p) 72T lerp (T a, U b, P p)
67{ 73{
68 return (long(a) * long(100 - p) + long(b) * long(p) + 50) / 100; 74 return (long(a) * long(100 - p) + long(b) * long(p) + 50) / 100;
69} 75}
70 76
77template <typename I, typename T>
78I find (I first, I last, const T& value)
79{
80 while (first != last && *first != value)
81 ++first;
82
83 return first;
84}
85
86// return a very temporary (and never deallocated) buffer. keep small.
87void *rxvt_temp_buf (int len);
88
89template<typename T>
90static inline T *
91rxvt_temp_buf (int len)
92{
93 return (T *)rxvt_temp_buf (len * sizeof (T));
94}
95
71// some bit functions, xft fuck me plenty 96// some bit functions, xft fuck me plenty
72#if HAVE_GCC_BUILTINS 97#if HAVE_GCC_BUILTINS
98/* netbsd stupidly defines popcount itself and puts it into string.h */
73static inline int ctz (unsigned int x) CONST { return __builtin_ctz (x); } 99static inline int rxvt_ctz (unsigned int x) { return __builtin_ctz (x); }
74static inline int popcount (unsigned int x) CONST { return __builtin_popcount (x); } 100static inline int rxvt_popcount (unsigned int x) { return __builtin_popcount (x); }
75#else 101#else
76// count trailing zero bits and count # of one bits 102// count trailing zero bits and count # of one bits
77int ctz (unsigned int x) CONST; 103int rxvt_ctz (unsigned int x) CONST;
78int popcount (unsigned int x) CONST; 104int rxvt_popcount (unsigned int x) CONST;
79#endif 105#endif
80 106
81// in range including end 107// in range including end
82#define IN_RANGE_INC(val,beg,end) \ 108#define IN_RANGE_INC(val,beg,end) \
83 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg)) 109 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg))
84 110
85// in range excluding end 111// in range excluding end
86#define IN_RANGE_EXC(val,beg,end) \ 112#define IN_RANGE_EXC(val,beg,end) \
87 ((unsigned int)(val) - (unsigned int)(beg) < (unsigned int)(end) - (unsigned int)(beg)) 113 ((unsigned int)(val) - (unsigned int)(beg) < (unsigned int)(end) - (unsigned int)(beg))
88 114
115// for m >= -n, ensure remainder lies between 0..n-1
116#define MOD(m,n) (((m) + (n)) % (n))
117
89// makes dynamically allocated objects zero-initialised 118// makes dynamically allocated objects zero-initialised
90struct zero_initialized { 119struct zero_initialized
120{
91 void *operator new (size_t s); 121 void *operator new (size_t s);
92 void operator delete (void *p, size_t s); 122 void operator delete (void *p, size_t s);
93}; 123};
94 124
95/* simplevec taken (and heavily modified), from: 125/* simplevec taken (and heavily modified), from:
96 * 126 *
97 * MICO --- a free CORBA implementation 127 * MICO --- a free CORBA implementation
98 * Copyright (C) 1997-98 Kay Roemer & Arno Puder 128 * Copyright (C) 1997-98 Kay Roemer & Arno Puder
99 */ 129 */
100template<class T> 130template<class T>
101struct simplevec { 131struct simplevec
132{
102 typedef T* iterator; 133 typedef T* iterator;
103 typedef const T* const_iterator; 134 typedef const T* const_iterator;
104 typedef unsigned long size_type; 135 typedef unsigned long size_type;
105 136
106private: 137private:
347} 378}
348 379
349 380
350template<typename T> 381template<typename T>
351struct vector : simplevec<T> 382struct vector : simplevec<T>
352{ }; 383{
384};
385
386struct stringvec : simplevec<char *>
387{
388 ~stringvec ()
389 {
390 for (char **c = begin (); c != end (); c++)
391 free (*c);
392 }
393};
353 394
354#if 0 395#if 0
355template<typename T> 396template<typename T>
356struct rxvt_vec : simplevec<void *> { 397struct rxvt_vec : simplevec<void *>
398{
357 typedef T *iterator; 399 typedef T *iterator;
358 400
359 void push_back (T d) { simplevec<void *>::push_back ((void *)d); } 401 void push_back (T d) { simplevec<void *>::push_back ((void *)d); }
360 T pop_back () { return (T*)simplevec<void *>::pop_back (); } 402 T pop_back () { return (T*)simplevec<void *>::pop_back (); }
361 void erase (int i) { erase (begin () + i); } 403 void erase (int i) { erase (begin () + i); }
365 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); } 407 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); }
366 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); } 408 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); }
367}; 409};
368#endif 410#endif
369 411
370template <typename I, typename T>
371I find (I first, I last, const T& value)
372{
373 while (first != last && *first != value)
374 ++first;
375
376 return first;
377}
378
379template<typename T> 412template<typename T>
380struct auto_ptr { 413struct auto_ptr
414{
381 T *p; 415 T *p;
382 416
383 auto_ptr () : p (0) { } 417 auto_ptr () : p (0) { }
384 auto_ptr (T *a) : p (a) { } 418 auto_ptr (T *a) : p (a) { }
385 419
434 } 468 }
435}; 469};
436 470
437typedef auto_ptr<char> auto_str; 471typedef auto_ptr<char> auto_str;
438 472
439struct stringvec : simplevec<char *>
440{
441 ~stringvec ()
442 {
443 for (char **c = begin (); c != end (); c++)
444 free (*c);
445 }
446};
447
448// return a very temporary (and never deallocated) buffer. keep small.
449void *rxvt_temp_buf (int len);
450
451template<typename T>
452static inline T *
453rxvt_temp_buf (int len)
454{
455 return (T *)rxvt_temp_buf (len * sizeof (T));
456}
457
458#endif 473#endif
459 474

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines