2013-07-13 15:28:29 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2013-07-13 15:28:29 +10:00
|
|
|
*
|
|
|
|
* Copyright 2013 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_ZLIB_HPP
|
|
|
|
#define __UTIL_ZLIB_HPP
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <zlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace util {
|
|
|
|
namespace zlib {
|
|
|
|
extern const char* version (void);
|
2013-07-30 01:41:54 +10:00
|
|
|
extern const char* code_to_string (int);
|
2013-07-13 15:28:29 +10:00
|
|
|
|
|
|
|
extern void compress (uint8_t *dst, size_t dst_len,
|
|
|
|
const uint8_t *src, size_t src_len,
|
|
|
|
int level);
|
|
|
|
|
|
|
|
extern size_t compress_bound (size_t len);
|
|
|
|
|
|
|
|
extern size_t uncompress (uint8_t *dst, size_t dst_len,
|
|
|
|
const uint8_t *src, size_t src_len);
|
|
|
|
|
|
|
|
|
|
|
|
class stream {
|
|
|
|
public:
|
|
|
|
|
|
|
|
public:
|
|
|
|
stream();
|
|
|
|
~stream();
|
|
|
|
|
|
|
|
int deflate (bool flush = false);
|
|
|
|
int inflate (bool flush = false);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class error : public std::runtime_error {
|
|
|
|
public:
|
|
|
|
static void try_code (int code);
|
|
|
|
static void throw_code (int code);
|
|
|
|
|
2015-06-04 22:18:43 +10:00
|
|
|
explicit error(const std::string&);
|
2013-07-13 15:28:29 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <int CODE>
|
|
|
|
class code_error : public error {
|
|
|
|
public:
|
2013-07-30 01:42:12 +10:00
|
|
|
code_error(void):
|
|
|
|
error (code_to_string (CODE))
|
|
|
|
{ ; }
|
2013-07-13 15:28:29 +10:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|