Sha256: ec6f67ec198887eb0fd8ca83f6db5551f126b46b5c151b606ef5813e6e72a52a

Contents?: true

Size: 1.82 KB

Versions: 36

Compression:

Stored size: 1.82 KB

Contents

//
// 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 "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 */

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
rroonga-4.0.3-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.3-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.2-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.2-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.1-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.1-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.0-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-4.0.0-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.1.2-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.1.2-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.1.1-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.1.1-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.1.0-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.1.0-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.0.9-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.0.9-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.0.8-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.0.8-x64-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.0.7-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp
rroonga-3.0.6-x86-mingw32 vendor/local/include/msgpack/zbuffer.hpp