forked from lix-project/lix
03bb8f84e0
Based off on @dtzWill's #2276
31 lines
788 B
C++
31 lines
788 B
C++
#pragma once
|
|
|
|
#include "ref.hh"
|
|
#include "types.hh"
|
|
#include "serialise.hh"
|
|
|
|
#include <string>
|
|
|
|
namespace nix {
|
|
|
|
struct CompressionSink : BufferedSink, FinishSink
|
|
{
|
|
using BufferedSink::operator ();
|
|
using BufferedSink::write;
|
|
using FinishSink::finish;
|
|
};
|
|
|
|
ref<std::string> decompress(const std::string & method, const std::string & in);
|
|
|
|
std::unique_ptr<FinishSink> makeDecompressionSink(const std::string & method, Sink & nextSink);
|
|
|
|
ref<std::string> compress(const std::string & method, const std::string & in, const bool parallel = false, int level = -1);
|
|
|
|
ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & nextSink, const bool parallel = false, int level = -1);
|
|
|
|
MakeError(UnknownCompressionMethod, Error);
|
|
|
|
MakeError(CompressionError, Error);
|
|
|
|
}
|