--- deliantra/server/include/util.h 2006/09/12 18:15:34 1.9 +++ deliantra/server/include/util.h 2006/12/16 03:08:26 1.17 @@ -7,23 +7,121 @@ # define is_constant(c) 0 #endif +#include + +#include + +// use a gcc extension for auto declarations until ISO C++ sanctifies them +#define AUTODECL(var,expr) typeof(expr) var = (expr) + // makes dynamically allocated objects zero-initialised struct zero_initialised { - void *operator new (size_t s, void *); - void *operator new (size_t s); - void *operator new [] (size_t s); - void operator delete (void *p, size_t s); - void operator delete [] (void *p, size_t s); + void *operator new (size_t s, void *p) + { + memset (p, 0, s); + return p; + } + + void *operator new (size_t s) + { + return g_slice_alloc0 (s); + } + + void *operator new[] (size_t s) + { + return g_slice_alloc0 (s); + } + + void operator delete (void *p, size_t s) + { + g_slice_free1 (s, p); + } + + void operator delete[] (void *p, size_t s) + { + g_slice_free1 (s, p); + } +}; + +// strictly the same as g_slice_alloc, but never returns 0 +void *salloc (int size) throw (std::bad_alloc); +// also copies src into the new area, like "memdup" +void *salloc (int size, void *src) throw (std::bad_alloc); +// for symmetry +inline void sfree (void *ptr, int size) throw () +{ + g_slice_free1 (size, ptr); +} + +// a STL-compatible allocator that uses g_slice +// boy, this is verbose +template +struct slice_allocator +{ + typedef size_t size_type; + typedef ptrdiff_t difference_type; + typedef Tp *pointer; + typedef const Tp *const_pointer; + typedef Tp &reference; + typedef const Tp &const_reference; + typedef Tp value_type; + + template + struct rebind + { + typedef slice_allocator other; + }; + + slice_allocator () throw () { } + slice_allocator (const slice_allocator &o) throw () { } + template + slice_allocator (const slice_allocator &) throw () { } + + ~slice_allocator () { } + + pointer address (reference x) const { return &x; } + const_pointer address (const_reference x) const { return &x; } + + pointer allocate (size_type n, const_pointer = 0) + { + return static_cast(salloc (n * sizeof (Tp))); + } + + void deallocate (pointer p, size_type n) + { + sfree (static_cast(p), n * sizeof (Tp)); + } + + size_type max_size ()const throw () + { + return size_t (-1) / sizeof (Tp); + } + + void construct (pointer p, const Tp &val) + { + ::new (p) Tp (val); + } + + void destroy (pointer p) + { + p->~Tp (); + } }; struct refcounted { - mutable int refcnt; refcounted () : refcnt (0) { } +// virtual ~refcounted (); void refcnt_inc () { ++refcnt; } - void refcnt_dec () { --refcnt; - if (refcnt < 0)abort();}//D + void refcnt_dec () { --refcnt; } + bool dead () { return refcnt == 0; } + mutable int refcnt; +#if 0 +private: + static refcounted *rc_first; + refcounted *rc_next; +#endif }; template @@ -94,9 +192,9 @@ #include template -struct unordered_vector : std::vector +struct unordered_vector : std::vector > { - typedef typename std::vector::iterator iterator; + typedef typename unordered_vector::iterator iterator; void erase (unsigned int pos) { @@ -118,14 +216,20 @@ template static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; } -// basically does what strncpy should do +// basically does what strncpy should do, but appends "..." to strings exceeding length +void assign (char *dst, const char *src, int maxlen); + +// type-safe version of assign template inline void assign (char (&dst)[N], const char *src) { - // should be optimised at some point, maybe should also add "..." - // when buffer is too small. - snprintf (dst, N, "%s", src); + assign ((char *)&dst, src, N); } +typedef double tstamp; + +// return current time as timestampe +tstamp now (); + #endif