make Buffer copy-, assign- and resize- able

This commit is contained in:
Aleksandar Fabijanic
2009-03-12 22:35:21 +00:00
parent 5f35304974
commit 060e32101b
2 changed files with 143 additions and 8 deletions

View File

@@ -49,9 +49,9 @@ namespace Poco {
template <class T> template <class T>
class Buffer class Buffer
/// A very simple buffer class that allocates a buffer of /// A buffer class that allocates a buffer of a given type and size.
/// a given type and size in the constructor and /// Buffer can be zero-size, resized, copy-constructed and assigned.
/// deallocates the buffer in the destructor. /// Memory allocation, resizing and deallocation is managed automatically.
/// ///
/// This class is useful everywhere where a temporary buffer /// This class is useful everywhere where a temporary buffer
/// is needed. /// is needed.
@@ -59,23 +59,99 @@ class Buffer
public: public:
Buffer(std::size_t size): Buffer(std::size_t size):
_size(size), _size(size),
_ptr(new T[size]) _ptr(size ? new T[size] : 0)
/// Creates and allocates the Buffer. /// Creates and allocates the Buffer.
{ {
} }
Buffer(): _size(0), _ptr(0)
/// Creates the Buffer.
{
}
Buffer(const Buffer& other):
/// Copy constructor.
_size(other._size),
_ptr(other._size ? new T[other._size] : 0)
{
if (_size)
std::memcpy(_ptr, other._ptr, _size * sizeof(T));
}
Buffer& operator = (const Buffer& other)
/// Assignment operator.
{
if (this != &other)
{
Buffer tmp(other);
swap(tmp);
}
return *this;
}
~Buffer() ~Buffer()
/// Destroys the Buffer. /// Destroys the Buffer.
{ {
delete [] _ptr; delete [] _ptr;
} }
void swap(Buffer& other)
/// Swaps the buffer with another one.
{
using std::swap;
swap(_ptr, other._ptr);
swap(_size, other._size);
}
std::size_t size() const std::size_t size() const
/// Returns the size of the buffer. /// Returns the size of the buffer.
{ {
return _size; return _size;
} }
void resize(std::size_t newSize, bool preserve = false)
/// Resizes the buffer. If preserve is true, the contents
/// of the buffer is preserved. If the newSize is smaller
/// than the current size, data truncation will occur.
///
/// For efficiency sake, the default behavior is not to
/// preserve the contents.
{
if (preserve)
{
Buffer tmp;
tmp = *this;
recreate(newSize);
std::size_t size = _size < tmp._size ? _size : tmp._size;
std::memcpy(_ptr, tmp._ptr, size * sizeof(T));
return;
}
recreate(newSize);
}
void append(const T* buf, std::size_t sz)
/// Resizes this buffer and appends the argument buffer.
{
std::size_t oldSize = _size;
resize(_size + sz, true);
std::memcpy(_ptr + oldSize, buf, sz);
}
void append(const Buffer& buf)
/// Resizes this buffer and appends the argument buffer.
{
append(buf.begin(), buf.size());
}
std::size_t byteCount() const
/// Returns the total length of the buffer in bytes .
{
return _size * sizeof(T);
}
T* begin() T* begin()
/// Returns a pointer to the beginning of the buffer. /// Returns a pointer to the beginning of the buffer.
{ {
@@ -115,9 +191,13 @@ public:
} }
private: private:
Buffer();
Buffer(const Buffer&); void recreate(std::size_t newSize)
Buffer& operator = (const Buffer&); {
delete [] _ptr;
_ptr = new T[newSize];
_size = newSize;
}
std::size_t _size; std::size_t _size;
T* _ptr; T* _ptr;

View File

@@ -151,6 +151,7 @@ void CoreTest::testBuffer()
{ {
std::size_t s = 10; std::size_t s = 10;
Buffer<int> b(s); Buffer<int> b(s);
assert (b.size() * sizeof(int) == b.byteCount());
std::vector<int> v; std::vector<int> v;
for (int i = 0; i < s; ++i) for (int i = 0; i < s; ++i)
v.push_back(i); v.push_back(i);
@@ -161,6 +162,60 @@ void CoreTest::testBuffer()
for (int i = 0; i < s; ++i) for (int i = 0; i < s; ++i)
assert (b[i] == i); assert (b[i] == i);
s = 5;
b.resize(s);
assert (b.size() * sizeof(int) == b.byteCount());
v.clear();
for (int i = 0; i < s; ++i)
v.push_back(i);
std::memcpy(b.begin(), &v[0], sizeof(int) * v.size());
assert (s == b.size());
for (int i = 0; i < s; ++i)
assert (b[i] == i);
std::size_t t = s;
s = 50;
b.resize(s, true);
assert (b.size() * sizeof(int) == b.byteCount());
for (int i = 0; i < t; ++i)
assert (b[i] == i);
v.clear();
for (int i = 0; i < s; ++i)
v.push_back(i);
std::memcpy(b.begin(), &v[0], sizeof(int) * v.size());
assert (s == b.size());
for (int i = 0; i < s; ++i)
assert (b[i] == i);
Buffer<int> b0;
b0 = b;
assert (s == b0.size());
for (int i = 0; i < s; ++i)
assert (b0[i] == i);
Buffer<int> b1(b0);
assert (s == b1.size());
for (int i = 0; i < s; ++i)
assert (b1[i] == i);
int* pi = b1.begin();
for (int i = 0; pi != b1.end(); ++pi, ++i)
assert (*pi == i);
b1.append(b0);
assert (s * 2 == b1.size());
int i = 0;
for (; i < s; ++i)
assert (b1[i] == i);
for (int j = 0; i < s; ++i, ++j)
assert (b1[i] == j);
#if ENABLE_BUGCHECK_TEST #if ENABLE_BUGCHECK_TEST
try { int i = b[s]; fail ("must fail"); } try { int i = b[s]; fail ("must fail"); }
catch (Exception&) { } catch (Exception&) { }