From 74bd3bbc7edf0c067ba9eafe51b463d2e0e121bd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 28 Mar 2011 11:40:14 +0200 Subject: Factor out common buffer implementation --- sqlite/types/test.hxx | 79 +------------------------------------------------ sqlite/types/traits.hxx | 2 +- 2 files changed, 2 insertions(+), 79 deletions(-) (limited to 'sqlite') diff --git a/sqlite/types/test.hxx b/sqlite/types/test.hxx index 971a89f..37190a0 100644 --- a/sqlite/types/test.hxx +++ b/sqlite/types/test.hxx @@ -9,87 +9,10 @@ #include #include #include // std::auto_ptr -#include // std::size_t -#include // std::{memcmp,memcpy} #include -struct buffer -{ - ~buffer () - { - delete[] data_; - } - - buffer () - : data_ (0), size_ (0) - { - } - - buffer (const void* data, std::size_t size) - : data_ (0), size_ (size) - { - data_ = new char[size_]; - std::memcpy (data_, data, size_); - } - - buffer (const buffer& y) - : data_ (0), size_ (0) - { - assign (y.data_, y.size_); - } - - buffer& - operator= (const buffer& y) - { - if (this != &y) - assign (y.data_, y.size_); - - return *this; - } - - void - assign (const void* data, std::size_t size) - { - if (size_ < size) - { - char* p (new char[size]); - delete[] data_; - data_ = p; - } - - std::memcpy (data_, data, size); - size_ = size; - } - - char* - data () - { - return data_; - } - - const char* - data () const - { - return data_; - } - - std::size_t - size () const - { - return size_; - } - - bool - operator== (const buffer& y) const - { - return size_ == y.size_ && std::memcmp (data_, y.data_, size_) == 0; - } - -private: - char* data_; - std::size_t size_; -}; +#include typedef std::auto_ptr string_ptr; diff --git a/sqlite/types/traits.hxx b/sqlite/types/traits.hxx index 0f9c253..13eef34 100644 --- a/sqlite/types/traits.hxx +++ b/sqlite/types/traits.hxx @@ -10,7 +10,7 @@ #include -#include "test.hxx" // buffer +#include "test.hxx" // buffer, string_ptr namespace odb { -- cgit v1.1