ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.h
Revision: 1.59
Committed: Thu Oct 23 22:39:40 2014 UTC (9 years, 7 months ago) by sf-exg
Content type: text/plain
Branch: MAIN
Changes since 1.58: +2 -2 lines
Log Message:
Add missing exception specifications to new and delete.

File Contents

# Content
1 #ifndef RXVT_UTIL_H
2 #define RXVT_UTIL_H
3
4 #include <new>
5 #include <stdlib.h>
6 #include <string.h>
7 #include "ecb.h"
8 #include "estl.h"
9
10 #include "emman.h"
11
12 // increases code size unless -fno-enforce-eh-specs
13 #if __GNUC__
14 # define NOTHROW
15 # define THROW(x)
16 #else
17 # define NOTHROW throw()
18 # define THROW(x) throw x
19 #endif
20
21 // various utility functions
22 template<typename T, typename U> static inline void min_it (T &a, U b) { a = a < (T)b ? a : (T)b; }
23 template<typename T, typename U> static inline void max_it (T &a, U b) { a = a > (T)b ? a : (T)b; }
24
25 template<typename T, typename U, typename V> static inline T clamp (T v, U a, V b) { return v < (T)a ? a : v >(T)b ? b : v; }
26 template<typename T, typename U, typename V> static inline void clamp_it (T &v, U a, V b) { v = v < (T)a ? a : v >(T)b ? b : v; }
27
28 template<typename T> static inline T squared_diff (T a, T b) { return (a - b) * (a - b); }
29
30 // linear interpolation
31 template<typename T, typename U, typename P>
32 static inline T
33 lerp (T a, U b, P p)
34 {
35 return (long(a) * long(100 - p) + long(b) * long(p) + 50) / 100;
36 }
37
38 // return a very temporary (and never deallocated) buffer. keep small.
39 void *rxvt_temp_buf (int len);
40
41 template<typename T>
42 static inline T *
43 rxvt_temp_buf (int len)
44 {
45 return (T *)rxvt_temp_buf (len * sizeof (T));
46 }
47
48 // in range including end
49 #define IN_RANGE_INC(val,beg,end) \
50 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg))
51
52 // in range excluding end
53 #define IN_RANGE_EXC(val,beg,end) \
54 ((unsigned int)(val) - (unsigned int)(beg) < (unsigned int)(end) - (unsigned int)(beg))
55
56 // for m >= -n, ensure remainder lies between 0..n-1
57 #define MOD(m,n) (((m) + (n)) % (n))
58
59 // makes dynamically allocated objects zero-initialised
60 struct zero_initialized
61 {
62 void *operator new (size_t s);
63 void operator delete (void *p, size_t s);
64 };
65
66 struct stringvec : simplevec<char *>
67 {
68 ~stringvec ()
69 {
70 for (char **c = begin (); c != end (); c++)
71 free (*c);
72 }
73 };
74
75 #if 0
76 template<typename T>
77 struct rxvt_vec : simplevec<void *>
78 {
79 typedef T *iterator;
80
81 void push_back (T d) { simplevec<void *>::push_back ((void *)d); }
82 T pop_back () { return (T*)simplevec<void *>::pop_back (); }
83 void erase (int i) { erase (begin () + i); }
84 void erase (iterator i) { simplevec<void *>::erase ((void **)i); }
85 iterator begin () const { return (iterator)simplevec<void *>::begin (); }
86 iterator end () const { return (iterator)simplevec<void *>::end (); }
87 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); }
88 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); }
89 };
90 #endif
91
92 inline void *
93 operator new (size_t size) throw (std::bad_alloc)
94 {
95 // TODO: use rxvt_malloc
96 return malloc (size);
97 }
98
99 inline void
100 operator delete (void *p) throw ()
101 {
102 free (p);
103 }
104
105 template<typename T>
106 struct auto_ptr
107 {
108 T *p;
109
110 auto_ptr () : p (0) { }
111
112 explicit
113 auto_ptr (T *a) : p (a) { }
114
115 auto_ptr (auto_ptr &a)
116 {
117 p = a.p;
118 a.p = 0;
119 }
120
121 template<typename A>
122 auto_ptr (auto_ptr<A> &a)
123 {
124 p = a.p;
125 a.p = 0;
126 }
127
128 ~auto_ptr ()
129 {
130 delete p;
131 }
132
133 void reset (T *a)
134 {
135 delete p;
136 p = a;
137 }
138
139 // void because it makes sense in our context
140 void operator =(auto_ptr &a)
141 {
142 reset (a.release ());
143 }
144
145 template<typename A>
146 void operator =(auto_ptr<A> &a)
147 {
148 reset (a.release ());
149 }
150
151 T *operator ->() const { return p; }
152 T &operator *() const { return *p; }
153
154 operator T *() { return p; }
155 T *get () const { return p; }
156
157 T *release()
158 {
159 T *r = p;
160 p = 0;
161 return r;
162 }
163 };
164
165 typedef auto_ptr<char> auto_str;
166
167 #endif
168