ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/util.h
(Generate patch)

Comparing deliantra/server/include/util.h (file contents):
Revision 1.11 by root, Tue Sep 12 20:55:40 2006 UTC vs.
Revision 1.25 by root, Sat Dec 30 10:16:10 2006 UTC

6#else 6#else
7# define is_constant(c) 0 7# define is_constant(c) 0
8#endif 8#endif
9 9
10#include <cstddef> 10#include <cstddef>
11#include <new>
12#include <vector>
11 13
12#include <glib.h> 14#include <glib.h>
15
16#include <shstr.h>
17#include <traits.h>
18
19// use a gcc extension for auto declarations until ISO C++ sanctifies them
20#define AUTODECL(var,expr) typeof(expr) var = (expr)
13 21
14// makes dynamically allocated objects zero-initialised 22// makes dynamically allocated objects zero-initialised
15struct zero_initialised 23struct zero_initialised
16{ 24{
17 void *operator new (size_t s, void *p) 25 void *operator new (size_t s, void *p)
39 { 47 {
40 g_slice_free1 (s, p); 48 g_slice_free1 (s, p);
41 } 49 }
42}; 50};
43 51
44void throw_bad_alloc () throw (std::bad_alloc); 52void *salloc_ (int n) throw (std::bad_alloc);
45
46void *alloc (int s) throw (std::bad_alloc); 53void *salloc_ (int n, void *src) throw (std::bad_alloc);
47void dealloc (void *p, int s) throw (); 54
55// strictly the same as g_slice_alloc, but never returns 0
56template<typename T>
57inline T *salloc (int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T)); }
58
59// also copies src into the new area, like "memdup"
60// if src is 0, clears the memory
61template<typename T>
62inline T *salloc (int n, T *src) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), (void *)src); }
63
64// clears the memory
65template<typename T>
66inline T *salloc0(int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), 0); }
67
68// for symmetry
69template<typename T>
70inline void sfree (T *ptr, int n = 1) throw ()
71{
72 g_slice_free1 (n * sizeof (T), (void *)ptr);
73}
48 74
49// a STL-compatible allocator that uses g_slice 75// a STL-compatible allocator that uses g_slice
50// boy, this is verbose 76// boy, this is verbose
51template<typename Tp> 77template<typename Tp>
52struct slice_allocator 78struct slice_allocator
75 pointer address (reference x) const { return &x; } 101 pointer address (reference x) const { return &x; }
76 const_pointer address (const_reference x) const { return &x; } 102 const_pointer address (const_reference x) const { return &x; }
77 103
78 pointer allocate (size_type n, const_pointer = 0) 104 pointer allocate (size_type n, const_pointer = 0)
79 { 105 {
80 return static_cast<pointer>(alloc (n * sizeof (Tp))); 106 return salloc<Tp> (n);
81 } 107 }
82 108
83 void deallocate (pointer p, size_type n) 109 void deallocate (pointer p, size_type n)
84 { 110 {
85 dealloc (static_cast<void *>(p), n); 111 sfree<Tp> (p, n);
86 } 112 }
87 113
88 size_type max_size ()const throw () 114 size_type max_size ()const throw ()
89 { 115 {
90 return size_t (-1) / sizeof (Tp); 116 return size_t (-1) / sizeof (Tp);
97 123
98 void destroy (pointer p) 124 void destroy (pointer p)
99 { 125 {
100 p->~Tp (); 126 p->~Tp ();
101 } 127 }
102};
103
104struct refcounted
105{
106 mutable int refcnt;
107 refcounted () : refcnt (0) { }
108 void refcnt_inc () { ++refcnt; }
109 void refcnt_dec () { --refcnt;
110 if (refcnt < 0)abort();}//D
111}; 128};
112 129
113template<class T> 130template<class T>
114struct refptr 131struct refptr
115{ 132{
138 T &operator * () const { return *p; } 155 T &operator * () const { return *p; }
139 T *operator ->() const { return p; } 156 T *operator ->() const { return p; }
140 157
141 operator T *() const { return p; } 158 operator T *() const { return p; }
142}; 159};
160
161typedef refptr<maptile> maptile_ptr;
162typedef refptr<object> object_ptr;
163typedef refptr<archetype> arch_ptr;
164typedef refptr<client> client_ptr;
165typedef refptr<player> player_ptr;
143 166
144struct str_hash 167struct str_hash
145{ 168{
146 std::size_t operator ()(const char *s) const 169 std::size_t operator ()(const char *s) const
147 { 170 {
173 { 196 {
174 return !strcmp (a, b); 197 return !strcmp (a, b);
175 } 198 }
176}; 199};
177 200
178#include <vector>
179
180template<class obj> 201template<class obj>
181struct unordered_vector : std::vector<obj, slice_allocator<obj> > 202struct unordered_vector : std::vector<obj, slice_allocator<obj> >
182{ 203{
183 typedef typename unordered_vector::iterator iterator; 204 typedef typename unordered_vector::iterator iterator;
184 205
210inline void assign (char (&dst)[N], const char *src) 231inline void assign (char (&dst)[N], const char *src)
211{ 232{
212 assign ((char *)&dst, src, N); 233 assign ((char *)&dst, src, N);
213} 234}
214 235
236typedef double tstamp;
237
238// return current time as timestampe
239tstamp now ();
240
241int similar_direction (int a, int b);
242
215#endif 243#endif
216 244

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines