summaryrefslogtreecommitdiff
path: root/cpp/msgpack
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2010-03-26 14:33:49 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2010-03-26 14:33:49 +0900
commit5782ab7ccce243b1eac0fd6e10928d1aedcb552c (patch)
tree4cb7b94be3a677105bdd12cce1c6791d5ffb5c58 /cpp/msgpack
parent72e3f9821300f53d988e546a8dc7e001d9acb717 (diff)
downloadmsgpack-python-5782ab7ccce243b1eac0fd6e10928d1aedcb552c.tar.gz
c,cpp: add msgpack_zbuffer and msgpack::zbuffer
Diffstat (limited to 'cpp/msgpack')
-rw-r--r--cpp/msgpack/zbuffer.hpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/cpp/msgpack/zbuffer.hpp b/cpp/msgpack/zbuffer.hpp
new file mode 100644
index 0000000..278f076
--- /dev/null
+++ b/cpp/msgpack/zbuffer.hpp
@@ -0,0 +1,100 @@
+//
+// MessagePack for C++ deflate buffer implementation
+//
+// Copyright (C) 2010 FURUHASHI Sadayuki
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#ifndef MSGPACK_ZBUFFER_HPP__
+#define MSGPACK_ZBUFFER_HPP__
+
+#include "msgpack/zbuffer.h"
+#include <stdexcept>
+
+namespace msgpack {
+
+
+class zbuffer : public msgpack_zbuffer {
+public:
+ zbuffer(int level = Z_DEFAULT_COMPRESSION,
+ size_t init_size = MSGPACK_ZBUFFER_INIT_SIZE)
+ {
+ msgpack_zbuffer_init(this, level, init_size);
+ }
+
+ ~zbuffer()
+ {
+ msgpack_zbuffer_destroy(this);
+ }
+
+public:
+ void write(const char* buf, unsigned int len)
+ {
+ if(msgpack_zbuffer_write(this, buf, len) < 0) {
+ throw std::bad_alloc();
+ }
+ }
+
+ char* flush()
+ {
+ char* buf = msgpack_zbuffer_flush(this);
+ if(!buf) {
+ throw std::bad_alloc();
+ }
+ return buf;
+ }
+
+ char* data()
+ {
+ return base::data;
+ }
+
+ const char* data() const
+ {
+ return base::data;
+ }
+
+ size_t size() const
+ {
+ return msgpack_zbuffer_size(this);
+ }
+
+ void reset()
+ {
+ if(!msgpack_zbuffer_reset(this)) {
+ throw std::bad_alloc();
+ }
+ }
+
+ void reset_buffer()
+ {
+ msgpack_zbuffer_reset_buffer(this);
+ }
+
+ char* release_buffer()
+ {
+ return msgpack_zbuffer_release_buffer(this);
+ }
+
+private:
+ typedef msgpack_zbuffer base;
+
+private:
+ zbuffer(const zbuffer&);
+};
+
+
+} // namespace msgpack
+
+#endif /* msgpack/zbuffer.hpp */
+