summaryrefslogtreecommitdiff
path: root/libcult/cult/mm/buffer.hxx
diff options
context:
space:
mode:
authorJörg Frings-Fürst <jff@merkur>2014-05-18 16:08:14 +0200
committerJörg Frings-Fürst <jff@merkur>2014-05-18 16:08:14 +0200
commita15cf65c44d5c224169c32ef5495b68c758134b7 (patch)
tree3419f58fc8e1b315ba8171910ee044c5d467c162 /libcult/cult/mm/buffer.hxx
Imported Upstream version 3.3.0.2upstream/3.3.0.2
Diffstat (limited to 'libcult/cult/mm/buffer.hxx')
-rw-r--r--libcult/cult/mm/buffer.hxx80
1 files changed, 80 insertions, 0 deletions
diff --git a/libcult/cult/mm/buffer.hxx b/libcult/cult/mm/buffer.hxx
new file mode 100644
index 0000000..d50c824
--- /dev/null
+++ b/libcult/cult/mm/buffer.hxx
@@ -0,0 +1,80 @@
+// file : cult/mm/buffer.hxx
+// author : Boris Kolpackov <boris@kolpackov.net>
+// copyright : Copyright (c) 2005-2010 Boris Kolpackov
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef CULT_MM_BUFFER_HXX
+#define CULT_MM_BUFFER_HXX
+
+#include <cult/types/fundamental.hxx>
+
+#include <cult/mm/exception.hxx>
+
+namespace Cult
+{
+ namespace MM
+ {
+ //@@ why can't capacity be zero?
+ //
+
+ class Buffer
+ {
+ public:
+ struct Bounds: virtual Exception {};
+ struct ZeroCapacity: virtual Exception {};
+
+ public:
+ virtual
+ ~Buffer ();
+
+ Buffer (Size capacity, Size size = 0)
+ throw (ZeroCapacity, Bounds, BadAlloc);
+
+ Buffer (Void const*, Size size);
+
+ Buffer (Buffer const& other);
+
+ private:
+ Buffer&
+ operator= (Buffer const&);
+
+ public:
+ Size
+ capacity () const throw ();
+
+ // Returns true if the underlying buffer has been moved.
+ //
+ Boolean
+ capacity (Size capacity) throw (ZeroCapacity, Bounds, BadAlloc);
+
+ public:
+ Size
+ size () const throw ();
+
+ Void
+ size (Size size) throw (Bounds);
+
+ public:
+ Index
+ position () const throw ();
+
+ Void
+ position (Index) throw (Bounds);
+
+ public:
+ Char const*
+ data () const;
+
+ Char*
+ data ();
+
+ private:
+ Void* b_;
+ Size c_, s_, p_;
+ };
+ }
+
+ using MM::Buffer;
+}
+
+#endif // CULT_MM_BUFFER_HXX