1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
#ifndef INCLUDED_PLACEMENTALLOC_H_
#define INCLUDED_PLACEMENTALLOC_H_
#include <ostream>
template<typename Data>
class PlacementAlloc: public std::allocator<Data>
{
template<typename IData>
friend std::ostream &operator<<(std::ostream &out,
PlacementAlloc<IData> const &alloc);
Data *d_data;
static char s_commonPool[];
static char *s_free;
public:
PlacementAlloc();
PlacementAlloc(Data const &data);
PlacementAlloc(PlacementAlloc<Data> const &other);
~PlacementAlloc();
operator Data &();
PlacementAlloc &operator=(Data const &data);
private:
char *request();
};
template<typename Data>
char PlacementAlloc<Data>::s_commonPool[1000];
template<typename Data>
char *PlacementAlloc<Data>::s_free =
PlacementAlloc<Data>::s_commonPool;
template<typename Data>
PlacementAlloc<Data>::PlacementAlloc()
:
d_data(0)
{}
template<typename Data>
PlacementAlloc<Data>::PlacementAlloc(Data const &data)
:
d_data(new(request()) Data(data))
{}
template<typename Data>
PlacementAlloc<Data>::PlacementAlloc(PlacementAlloc<Data> const &other)
:
d_data(new(request()) Data(*other.d_data))
{}
template<typename Data>
PlacementAlloc<Data>::~PlacementAlloc()
{
d_data->~Data();
}
template<typename Data>
PlacementAlloc<Data>::operator Data &()
{
return *d_data;
}
template<typename Data>
PlacementAlloc<Data> &PlacementAlloc<Data>::operator=(Data const &data)
{
*d_data = data;
}
template<typename Data>
char *PlacementAlloc<Data>::request()
{
char *cp = s_free;
s_free += sizeof(Data);
return cp;
}
template<typename IData>
inline std::ostream &operator<<(std::ostream &out,
PlacementAlloc<IData> const &alloc)
{
return out << *alloc.d_data;
}
#endif
|