forked from lix-project/lix
5385755227
This function doesn't support all compression methods (i.e. 'none' and 'br') so it shouldn't be exposed. Also restore the original decompress() as a wrapper around makeDecompressionSink().
31 lines
756 B
C++
31 lines
756 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);
|
|
|
|
ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & nextSink, const bool parallel = false);
|
|
|
|
MakeError(UnknownCompressionMethod, Error);
|
|
|
|
MakeError(CompressionError, Error);
|
|
|
|
}
|