2001-05-23 15:26:42 +02:00
|
|
|
#ifndef INCLUDE_FB_BLK
|
|
|
|
#define INCLUDE_FB_BLK
|
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
//#include <vector>
|
2003-01-16 18:47:10 +01:00
|
|
|
#include "../common/classes/alloc.h"
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
struct blk
|
|
|
|
{
|
|
|
|
};
|
|
|
|
typedef blk* BLK;
|
|
|
|
|
|
|
|
|
|
|
|
//typedef PtrWrapper<BLK> BlkPtr;
|
|
|
|
typedef blk* BlkPtr;
|
|
|
|
|
2002-12-16 22:19:51 +01:00
|
|
|
template<SSHORT BLOCK_TYPE = 0>
|
2001-12-24 03:51:06 +01:00
|
|
|
class pool_alloc : public blk
|
|
|
|
{
|
|
|
|
public:
|
2002-09-25 19:12:16 +02:00
|
|
|
#ifdef DEBUG_GDS_ALLOC
|
|
|
|
void* operator new(size_t s, MemoryPool& p, char* file, int line)
|
2003-01-16 18:47:10 +01:00
|
|
|
{ return p.calloc(s, BLOCK_TYPE, file, line); }
|
2002-09-25 19:12:16 +02:00
|
|
|
void* operator new[](size_t s, MemoryPool& p, char* file, int line)
|
2003-01-16 18:47:10 +01:00
|
|
|
{ return p.calloc(s, BLOCK_TYPE, file, line); }
|
2002-09-25 19:12:16 +02:00
|
|
|
#else
|
2001-12-24 03:51:06 +01:00
|
|
|
void* operator new(size_t s, MemoryPool& p )
|
2003-01-16 18:47:10 +01:00
|
|
|
{ return p.calloc(s, BLOCK_TYPE); }
|
2001-12-24 03:51:06 +01:00
|
|
|
void* operator new[](size_t s, MemoryPool& p)
|
2003-01-16 18:47:10 +01:00
|
|
|
{ return p.calloc(s, BLOCK_TYPE); }
|
2002-09-25 19:12:16 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void operator delete(void* mem, MemoryPool& p)
|
|
|
|
{ if (mem) p.deallocate(mem); }
|
2001-12-24 03:51:06 +01:00
|
|
|
void operator delete[](void* mem, MemoryPool& p)
|
2002-04-04 07:38:26 +02:00
|
|
|
{ if (mem) p.deallocate(mem); }
|
2001-12-24 03:51:06 +01:00
|
|
|
|
2003-01-16 18:47:10 +01:00
|
|
|
void operator delete(void* mem) { if (mem) MemoryPool::globalFree(mem); }
|
|
|
|
void operator delete[](void* mem) { if (mem) MemoryPool::globalFree(mem); }
|
2001-12-24 03:51:06 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
/* These operators are off-limits */
|
|
|
|
void* operator new(size_t s) { return 0; }
|
|
|
|
void* operator new[](size_t s) { return 0; }
|
|
|
|
};
|
|
|
|
|
2002-12-16 22:19:51 +01:00
|
|
|
template<class RPT, SSHORT BLOCK_TYPE = 0>
|
2001-12-24 03:51:06 +01:00
|
|
|
class pool_alloc_rpt : public blk
|
|
|
|
{
|
|
|
|
public:
|
2002-09-25 19:12:16 +02:00
|
|
|
#ifdef DEBUG_GDS_ALLOC
|
|
|
|
void* operator new(size_t s, MemoryPool& p, int rpt, char *file, int line)
|
2003-01-16 18:47:10 +01:00
|
|
|
{ return p.calloc(s + sizeof(RPT)*rpt, BLOCK_TYPE, file, line); }
|
2002-09-25 19:12:16 +02:00
|
|
|
#else
|
2001-12-24 03:51:06 +01:00
|
|
|
void* operator new(size_t s, MemoryPool& p, int rpt)
|
2003-01-16 18:47:10 +01:00
|
|
|
{ return p.calloc(s + sizeof(RPT)*rpt, BLOCK_TYPE); }
|
2002-09-25 19:12:16 +02:00
|
|
|
#endif
|
2001-12-24 03:51:06 +01:00
|
|
|
void operator delete(void* mem, MemoryPool& p,int rpt)
|
2002-04-04 07:38:26 +02:00
|
|
|
{ if (mem) p.deallocate(mem); }
|
2003-01-16 18:47:10 +01:00
|
|
|
void operator delete(void* mem) { if (mem) MemoryPool::globalFree(mem); }
|
2001-12-24 03:51:06 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
// These operations are not supported on static repeat-base objects
|
|
|
|
void* operator new[](size_t s, MemoryPool& p)
|
|
|
|
{ return 0; }
|
|
|
|
void operator delete[](void* mem, MemoryPool& p)
|
|
|
|
{ }
|
|
|
|
void operator delete[](void* mem) { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
/* These operators are off-limits */
|
|
|
|
void* operator new(size_t s) { return 0; }
|
|
|
|
void* operator new[](size_t s) { return 0; }
|
|
|
|
};
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2002-12-16 22:19:51 +01:00
|
|
|
/* template<class BASE, class RPT, UCHAR BLOCK_TYPE>
|
2001-12-24 03:51:06 +01:00
|
|
|
class vector_rpt : public BASE
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
2001-12-24 03:51:06 +01:00
|
|
|
private:
|
|
|
|
MemoryPool::allocator<RPT> rptAllocator;
|
|
|
|
vector_rpt(int size, MemoryPool& pool)
|
2002-12-16 22:19:51 +01:00
|
|
|
: rptAllocator(pool, BLOCK_TYPE), rpt(size, rptAllocator) {}
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
public:
|
|
|
|
std::vector<RPT> rpt;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2002-12-16 22:19:51 +01:00
|
|
|
static vector_rpt<BASE,RPT,BLOCK_TYPE>* allocate(int size, MemoryPool& p)
|
|
|
|
{ return new(p) vector_rpt<BASE,RPT,BLOCK_TYPE>(size,p); }
|
2001-12-24 03:51:06 +01:00
|
|
|
}; */
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
#endif /* INCLUDE_FB_BLK */
|