2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
//
|
|
|
|
// See port_example.h for documentation for the following types/functions.
|
|
|
|
|
|
|
|
#ifndef STORAGE_LEVELDB_PORT_PORT_POSIX_H_
|
|
|
|
#define STORAGE_LEVELDB_PORT_PORT_POSIX_H_
|
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
#undef PLATFORM_IS_LITTLE_ENDIAN
|
2012-03-05 19:35:46 +01:00
|
|
|
#if defined(OS_MACOSX)
|
2011-06-29 02:30:50 +02:00
|
|
|
#include <machine/endian.h>
|
2012-08-27 08:45:35 +02:00
|
|
|
#if defined(__DARWIN_LITTLE_ENDIAN) && defined(__DARWIN_BYTE_ORDER)
|
|
|
|
#define PLATFORM_IS_LITTLE_ENDIAN \
|
|
|
|
(__DARWIN_BYTE_ORDER == __DARWIN_LITTLE_ENDIAN)
|
|
|
|
#endif
|
2011-06-29 02:30:50 +02:00
|
|
|
#elif defined(OS_SOLARIS)
|
|
|
|
#include <sys/isa_defs.h>
|
|
|
|
#ifdef _LITTLE_ENDIAN
|
2012-08-27 08:45:35 +02:00
|
|
|
#define PLATFORM_IS_LITTLE_ENDIAN true
|
2011-06-29 02:30:50 +02:00
|
|
|
#else
|
2012-08-27 08:45:35 +02:00
|
|
|
#define PLATFORM_IS_LITTLE_ENDIAN false
|
2011-06-29 02:30:50 +02:00
|
|
|
#endif
|
2012-03-05 19:35:46 +01:00
|
|
|
#elif defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_NETBSD) ||\
|
2012-08-27 08:45:35 +02:00
|
|
|
defined(OS_DRAGONFLYBSD) || defined(OS_ANDROID)
|
2012-03-05 19:35:46 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/endian.h>
|
2011-06-29 02:30:50 +02:00
|
|
|
#else
|
|
|
|
#include <endian.h>
|
|
|
|
#endif
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <pthread.h>
|
2011-06-22 04:36:45 +02:00
|
|
|
#ifdef SNAPPY
|
|
|
|
#include <snappy.h>
|
|
|
|
#endif
|
2012-06-29 04:26:43 +02:00
|
|
|
|
2012-06-28 08:41:33 +02:00
|
|
|
#ifdef ZLIB
|
|
|
|
#include <zlib.h>
|
|
|
|
#endif
|
2012-06-29 04:26:43 +02:00
|
|
|
|
|
|
|
#ifdef BZIP2
|
|
|
|
#include <bzlib.h>
|
|
|
|
#endif
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
2012-06-28 08:41:33 +02:00
|
|
|
#include <string.h>
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/options.h"
|
2011-06-29 02:30:50 +02:00
|
|
|
#include "port/atomic_pointer.h"
|
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
#ifndef PLATFORM_IS_LITTLE_ENDIAN
|
|
|
|
#define PLATFORM_IS_LITTLE_ENDIAN (__BYTE_ORDER == __LITTLE_ENDIAN)
|
2011-06-29 02:30:50 +02:00
|
|
|
#endif
|
|
|
|
|
2012-03-05 19:35:46 +01:00
|
|
|
#if defined(OS_MACOSX) || defined(OS_SOLARIS) || defined(OS_FREEBSD) ||\
|
2012-08-27 08:45:35 +02:00
|
|
|
defined(OS_NETBSD) || defined(OS_OPENBSD) || defined(OS_DRAGONFLYBSD) ||\
|
|
|
|
defined(OS_ANDROID)
|
2012-03-05 19:35:46 +01:00
|
|
|
// Use fread/fwrite/fflush on platforms without _unlocked variants
|
2011-06-29 02:30:50 +02:00
|
|
|
#define fread_unlocked fread
|
|
|
|
#define fwrite_unlocked fwrite
|
|
|
|
#define fflush_unlocked fflush
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 19:35:46 +01:00
|
|
|
#if defined(OS_MACOSX) || defined(OS_FREEBSD) ||\
|
|
|
|
defined(OS_OPENBSD) || defined(OS_DRAGONFLYBSD)
|
|
|
|
// Use fsync() on platforms without fdatasync()
|
2011-06-29 02:30:50 +02:00
|
|
|
#define fdatasync fsync
|
|
|
|
#endif
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
#if defined(OS_ANDROID) && __ANDROID_API__ < 9
|
|
|
|
// fdatasync() was only introduced in API level 9 on Android. Use fsync()
|
|
|
|
// when targetting older platforms.
|
|
|
|
#define fdatasync fsync
|
|
|
|
#endif
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
namespace port {
|
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
static const bool kLittleEndian = PLATFORM_IS_LITTLE_ENDIAN;
|
|
|
|
#undef PLATFORM_IS_LITTLE_ENDIAN
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
class CondVar;
|
|
|
|
|
|
|
|
class Mutex {
|
|
|
|
public:
|
2013-06-19 01:57:42 +02:00
|
|
|
/* implicit */ Mutex(bool adaptive = false);
|
2011-03-18 23:37:00 +01:00
|
|
|
~Mutex();
|
|
|
|
|
|
|
|
void Lock();
|
|
|
|
void Unlock();
|
|
|
|
void AssertHeld() { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class CondVar;
|
|
|
|
pthread_mutex_t mu_;
|
|
|
|
|
|
|
|
// No copying
|
|
|
|
Mutex(const Mutex&);
|
|
|
|
void operator=(const Mutex&);
|
|
|
|
};
|
|
|
|
|
2012-10-02 06:58:36 +02:00
|
|
|
class RWMutex {
|
|
|
|
public:
|
|
|
|
RWMutex();
|
|
|
|
~RWMutex();
|
|
|
|
|
|
|
|
void ReadLock();
|
|
|
|
void WriteLock();
|
|
|
|
void Unlock();
|
|
|
|
void AssertHeld() { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
pthread_rwlock_t mu_; // the underlying platform mutex
|
|
|
|
|
|
|
|
// No copying allowed
|
|
|
|
RWMutex(const RWMutex&);
|
|
|
|
void operator=(const RWMutex&);
|
|
|
|
};
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
class CondVar {
|
|
|
|
public:
|
|
|
|
explicit CondVar(Mutex* mu);
|
|
|
|
~CondVar();
|
|
|
|
void Wait();
|
|
|
|
void Signal();
|
|
|
|
void SignalAll();
|
|
|
|
private:
|
|
|
|
pthread_cond_t cv_;
|
|
|
|
Mutex* mu_;
|
|
|
|
};
|
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
typedef pthread_once_t OnceType;
|
|
|
|
#define LEVELDB_ONCE_INIT PTHREAD_ONCE_INIT
|
|
|
|
extern void InitOnce(OnceType* once, void (*initializer)());
|
|
|
|
|
2012-11-01 18:50:08 +01:00
|
|
|
inline bool Snappy_Compress(const CompressionOptions& opts, const char* input,
|
|
|
|
size_t length, ::std::string* output) {
|
2011-06-22 04:36:45 +02:00
|
|
|
#ifdef SNAPPY
|
2011-07-21 04:40:18 +02:00
|
|
|
output->resize(snappy::MaxCompressedLength(length));
|
2011-06-22 04:36:45 +02:00
|
|
|
size_t outlen;
|
2011-07-21 04:40:18 +02:00
|
|
|
snappy::RawCompress(input, length, &(*output)[0], &outlen);
|
2011-06-22 04:36:45 +02:00
|
|
|
output->resize(outlen);
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
|
2011-03-23 00:24:02 +01:00
|
|
|
return false;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2011-07-21 04:40:18 +02:00
|
|
|
inline bool Snappy_GetUncompressedLength(const char* input, size_t length,
|
|
|
|
size_t* result) {
|
2011-06-22 04:36:45 +02:00
|
|
|
#ifdef SNAPPY
|
2011-07-21 04:40:18 +02:00
|
|
|
return snappy::GetUncompressedLength(input, length, result);
|
|
|
|
#else
|
|
|
|
return false;
|
2011-06-22 04:36:45 +02:00
|
|
|
#endif
|
2011-07-21 04:40:18 +02:00
|
|
|
}
|
2011-06-22 04:36:45 +02:00
|
|
|
|
2011-07-21 04:40:18 +02:00
|
|
|
inline bool Snappy_Uncompress(const char* input, size_t length,
|
|
|
|
char* output) {
|
|
|
|
#ifdef SNAPPY
|
|
|
|
return snappy::RawUncompress(input, length, output);
|
|
|
|
#else
|
2011-03-23 00:24:02 +01:00
|
|
|
return false;
|
2011-07-21 04:40:18 +02:00
|
|
|
#endif
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2012-11-01 18:50:08 +01:00
|
|
|
inline bool Zlib_Compress(const CompressionOptions& opts, const char* input,
|
|
|
|
size_t length, ::std::string* output) {
|
2012-06-28 08:41:33 +02:00
|
|
|
#ifdef ZLIB
|
|
|
|
// The memLevel parameter specifies how much memory should be allocated for
|
|
|
|
// the internal compression state.
|
|
|
|
// memLevel=1 uses minimum memory but is slow and reduces compression ratio.
|
|
|
|
// memLevel=9 uses maximum memory for optimal speed.
|
|
|
|
// The default value is 8. See zconf.h for more details.
|
|
|
|
static const int memLevel = 8;
|
|
|
|
z_stream _stream;
|
|
|
|
memset(&_stream, 0, sizeof(z_stream));
|
2012-11-01 18:50:08 +01:00
|
|
|
int st = deflateInit2(&_stream, opts.level, Z_DEFLATED, opts.window_bits,
|
|
|
|
memLevel, opts.strategy);
|
2012-06-28 08:41:33 +02:00
|
|
|
if (st != Z_OK) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resize output to be the plain data length.
|
|
|
|
// This may not be big enough if the compression actually expands data.
|
|
|
|
output->resize(length);
|
|
|
|
|
|
|
|
// Compress the input, and put compressed data in output.
|
|
|
|
_stream.next_in = (Bytef *)input;
|
|
|
|
_stream.avail_in = length;
|
|
|
|
|
|
|
|
// Initialize the output size.
|
|
|
|
_stream.avail_out = length;
|
|
|
|
_stream.next_out = (Bytef *)&(*output)[0];
|
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
int old_sz =0, new_sz =0, new_sz_delta =0;
|
|
|
|
bool done = false;
|
|
|
|
while (!done) {
|
2012-06-28 08:41:33 +02:00
|
|
|
int st = deflate(&_stream, Z_FINISH);
|
|
|
|
switch (st) {
|
|
|
|
case Z_STREAM_END:
|
2013-06-19 01:57:42 +02:00
|
|
|
done = true;
|
2012-06-28 08:41:33 +02:00
|
|
|
break;
|
|
|
|
case Z_OK:
|
|
|
|
// No output space. Increase the output space by 20%.
|
|
|
|
// (Should we fail the compression since it expands the size?)
|
|
|
|
old_sz = output->size();
|
2013-06-19 01:57:42 +02:00
|
|
|
new_sz_delta = (int)(output->size() * 0.2);
|
|
|
|
new_sz = output->size() + (new_sz_delta < 10 ? 10 : new_sz_delta);
|
2012-06-28 08:41:33 +02:00
|
|
|
output->resize(new_sz);
|
|
|
|
// Set more output.
|
|
|
|
_stream.next_out = (Bytef *)&(*output)[old_sz];
|
|
|
|
_stream.avail_out = new_sz - old_sz;
|
|
|
|
break;
|
|
|
|
case Z_BUF_ERROR:
|
|
|
|
default:
|
|
|
|
deflateEnd(&_stream);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output->resize(output->size() - _stream.avail_out);
|
|
|
|
deflateEnd(&_stream);
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline char* Zlib_Uncompress(const char* input_data, size_t input_length,
|
Do not enable checksums for zlib compression.
Summary:
Leveldb code already calculates checksums for each block. There
is no need to generate checksums inside zlib. This patch switches-off checksum generation/checking in zlib library.
(The Inno support for zlib uses windowsBits=14 as well.)
pfabricator marks this file as binary. But here is the diff
diff --git a/port/port_posix.h b/port/port_posix.h
index 86a0927..db4e0b8 100644
--- a/port/port_posix.h
+++ b/port/port_posix.h
@@ -163,7 +163,7 @@ inline bool Snappy_Uncompress(const char* input, size_t length,
}
inline bool Zlib_Compress(const char* input, size_t length,
- ::std::string* output, int windowBits = 15, int level = -1,
+ ::std::string* output, int windowBits = -14, int level = -1,
int strategy = 0) {
#ifdef ZLIB
// The memLevel parameter specifies how much memory should be allocated for
@@ -223,7 +223,7 @@ inline bool Zlib_Compress(const char* input, size_t length,
}
inline char* Zlib_Uncompress(const char* input_data, size_t input_length,
- int* decompress_size, int windowBits = 15) {
+ int* decompress_size, int windowBits = -14) {
#ifdef ZLIB
z_stream _stream;
memset(&_stream, 0, sizeof(z_stream));
Test Plan: run db_bench with zlib compression.
Reviewers: heyongqiang, MarkCallaghan
Reviewed By: heyongqiang
Differential Revision: https://reviews.facebook.net/D6105
2012-10-19 23:43:18 +02:00
|
|
|
int* decompress_size, int windowBits = -14) {
|
2012-06-28 08:41:33 +02:00
|
|
|
#ifdef ZLIB
|
|
|
|
z_stream _stream;
|
|
|
|
memset(&_stream, 0, sizeof(z_stream));
|
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
// For raw inflate, the windowBits should be -8..-15.
|
2012-06-28 08:41:33 +02:00
|
|
|
// If windowBits is bigger than zero, it will use either zlib
|
|
|
|
// header or gzip header. Adding 32 to it will do automatic detection.
|
|
|
|
int st = inflateInit2(&_stream,
|
|
|
|
windowBits > 0 ? windowBits + 32 : windowBits);
|
|
|
|
if (st != Z_OK) {
|
2013-06-19 01:57:42 +02:00
|
|
|
return nullptr;
|
2012-06-28 08:41:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_stream.next_in = (Bytef *)input_data;
|
|
|
|
_stream.avail_in = input_length;
|
|
|
|
|
|
|
|
// Assume the decompressed data size will 5x of compressed size.
|
|
|
|
int output_len = input_length * 5;
|
|
|
|
char* output = new char[output_len];
|
|
|
|
int old_sz = output_len;
|
|
|
|
|
|
|
|
_stream.next_out = (Bytef *)output;
|
|
|
|
_stream.avail_out = output_len;
|
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
char* tmp = nullptr;
|
|
|
|
int output_len_delta;
|
|
|
|
bool done = false;
|
2012-06-28 08:41:33 +02:00
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
//while(_stream.next_in != nullptr && _stream.avail_in != 0) {
|
|
|
|
while (!done) {
|
2012-06-28 08:41:33 +02:00
|
|
|
int st = inflate(&_stream, Z_SYNC_FLUSH);
|
|
|
|
switch (st) {
|
|
|
|
case Z_STREAM_END:
|
2013-06-19 01:57:42 +02:00
|
|
|
done = true;
|
2012-06-28 08:41:33 +02:00
|
|
|
break;
|
|
|
|
case Z_OK:
|
|
|
|
// No output space. Increase the output space by 20%.
|
|
|
|
old_sz = output_len;
|
2013-06-19 01:57:42 +02:00
|
|
|
output_len_delta = (int)(output_len * 0.2);
|
|
|
|
output_len += output_len_delta < 10 ? 10 : output_len_delta;
|
2012-06-28 08:41:33 +02:00
|
|
|
tmp = new char[output_len];
|
|
|
|
memcpy(tmp, output, old_sz);
|
|
|
|
delete[] output;
|
|
|
|
output = tmp;
|
|
|
|
|
|
|
|
// Set more output.
|
|
|
|
_stream.next_out = (Bytef *)(output + old_sz);
|
|
|
|
_stream.avail_out = output_len - old_sz;
|
|
|
|
break;
|
|
|
|
case Z_BUF_ERROR:
|
|
|
|
default:
|
|
|
|
delete[] output;
|
|
|
|
inflateEnd(&_stream);
|
2013-06-19 01:57:42 +02:00
|
|
|
return nullptr;
|
2012-06-28 08:41:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*decompress_size = output_len - _stream.avail_out;
|
|
|
|
inflateEnd(&_stream);
|
|
|
|
return output;
|
|
|
|
#endif
|
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
return nullptr;
|
2012-06-28 08:41:33 +02:00
|
|
|
}
|
|
|
|
|
2012-11-01 18:50:08 +01:00
|
|
|
inline bool BZip2_Compress(const CompressionOptions& opts, const char* input,
|
|
|
|
size_t length, ::std::string* output) {
|
2012-06-29 04:26:43 +02:00
|
|
|
#ifdef BZIP2
|
|
|
|
bz_stream _stream;
|
|
|
|
memset(&_stream, 0, sizeof(bz_stream));
|
|
|
|
|
|
|
|
// Block size 1 is 100K.
|
|
|
|
// 0 is for silent.
|
|
|
|
// 30 is the default workFactor
|
|
|
|
int st = BZ2_bzCompressInit(&_stream, 1, 0, 30);
|
|
|
|
if (st != BZ_OK) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resize output to be the plain data length.
|
|
|
|
// This may not be big enough if the compression actually expands data.
|
|
|
|
output->resize(length);
|
|
|
|
|
|
|
|
// Compress the input, and put compressed data in output.
|
|
|
|
_stream.next_in = (char *)input;
|
|
|
|
_stream.avail_in = length;
|
|
|
|
|
|
|
|
// Initialize the output size.
|
|
|
|
_stream.next_out = (char *)&(*output)[0];
|
|
|
|
_stream.avail_out = length;
|
|
|
|
|
|
|
|
int old_sz =0, new_sz =0;
|
2013-06-19 01:57:42 +02:00
|
|
|
while(_stream.next_in != nullptr && _stream.avail_in != 0) {
|
2012-06-29 04:26:43 +02:00
|
|
|
int st = BZ2_bzCompress(&_stream, BZ_FINISH);
|
|
|
|
switch (st) {
|
|
|
|
case BZ_STREAM_END:
|
|
|
|
break;
|
|
|
|
case BZ_FINISH_OK:
|
|
|
|
// No output space. Increase the output space by 20%.
|
|
|
|
// (Should we fail the compression since it expands the size?)
|
|
|
|
old_sz = output->size();
|
2012-07-03 02:30:32 +02:00
|
|
|
new_sz = (int)(output->size() * 1.2);
|
2012-06-29 04:26:43 +02:00
|
|
|
output->resize(new_sz);
|
|
|
|
// Set more output.
|
|
|
|
_stream.next_out = (char *)&(*output)[old_sz];
|
|
|
|
_stream.avail_out = new_sz - old_sz;
|
|
|
|
break;
|
|
|
|
case Z_BUF_ERROR:
|
|
|
|
default:
|
|
|
|
BZ2_bzCompressEnd(&_stream);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output->resize(output->size() - _stream.avail_out);
|
|
|
|
BZ2_bzCompressEnd(&_stream);
|
|
|
|
return true;
|
|
|
|
return output;
|
|
|
|
#endif
|
2012-09-06 02:44:13 +02:00
|
|
|
return false;
|
2012-06-29 04:26:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline char* BZip2_Uncompress(const char* input_data, size_t input_length,
|
|
|
|
int* decompress_size) {
|
|
|
|
#ifdef BZIP2
|
|
|
|
bz_stream _stream;
|
|
|
|
memset(&_stream, 0, sizeof(bz_stream));
|
|
|
|
|
|
|
|
int st = BZ2_bzDecompressInit(&_stream, 0, 0);
|
|
|
|
if (st != BZ_OK) {
|
2013-06-19 01:57:42 +02:00
|
|
|
return nullptr;
|
2012-06-29 04:26:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_stream.next_in = (char *)input_data;
|
|
|
|
_stream.avail_in = input_length;
|
|
|
|
|
|
|
|
// Assume the decompressed data size will be 5x of compressed size.
|
|
|
|
int output_len = input_length * 5;
|
|
|
|
char* output = new char[output_len];
|
|
|
|
int old_sz = output_len;
|
|
|
|
|
|
|
|
_stream.next_out = (char *)output;
|
|
|
|
_stream.avail_out = output_len;
|
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
char* tmp = nullptr;
|
2012-06-29 04:26:43 +02:00
|
|
|
|
2013-06-19 01:57:42 +02:00
|
|
|
while(_stream.next_in != nullptr && _stream.avail_in != 0) {
|
2012-06-29 04:26:43 +02:00
|
|
|
int st = BZ2_bzDecompress(&_stream);
|
|
|
|
switch (st) {
|
|
|
|
case BZ_STREAM_END:
|
|
|
|
break;
|
|
|
|
case Z_OK:
|
|
|
|
// No output space. Increase the output space by 20%.
|
|
|
|
old_sz = output_len;
|
2012-07-03 02:30:32 +02:00
|
|
|
output_len = (int)(output_len * 1.2);
|
2012-06-29 04:26:43 +02:00
|
|
|
tmp = new char[output_len];
|
|
|
|
memcpy(tmp, output, old_sz);
|
|
|
|
delete[] output;
|
|
|
|
output = tmp;
|
|
|
|
|
|
|
|
// Set more output.
|
|
|
|
_stream.next_out = (char *)(output + old_sz);
|
|
|
|
_stream.avail_out = output_len - old_sz;
|
|
|
|
break;
|
|
|
|
case Z_BUF_ERROR:
|
|
|
|
default:
|
|
|
|
delete[] output;
|
|
|
|
BZ2_bzDecompressEnd(&_stream);
|
2013-06-19 01:57:42 +02:00
|
|
|
return nullptr;
|
2012-06-29 04:26:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*decompress_size = output_len - _stream.avail_out;
|
|
|
|
BZ2_bzDecompressEnd(&_stream);
|
|
|
|
return output;
|
|
|
|
#endif
|
2013-06-19 01:57:42 +02:00
|
|
|
return nullptr;
|
2012-06-29 04:26:43 +02:00
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
inline bool GetHeapProfile(void (*func)(void*, const char*, int), void* arg) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-29 02:30:50 +02:00
|
|
|
} // namespace port
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
#endif // STORAGE_LEVELDB_PORT_PORT_POSIX_H_
|