mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
d62a9390fc
These were needed back in the pre-C++11 era because we didn't have move semantics. But now we do.
30 lines
772 B
C++
30 lines
772 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;
|
|
};
|
|
|
|
std::string decompress(const std::string & method, std::string_view in);
|
|
|
|
std::unique_ptr<FinishSink> makeDecompressionSink(const std::string & method, Sink & nextSink);
|
|
|
|
std::string compress(const std::string & method, std::string_view 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);
|
|
|
|
}
|