forked from lix-project/lix
214f1d6791
The `write` name is ambiguous and could lead to some funny bugs like https://github.com/NixOS/nix/pull/8173#issuecomment-1500009480. So rename it to the more explicit `writeUnbuffered`. Besides, this method shouldn't be (and isn't) used outside of the class implementation, so mark it `protected`. This makes it more symetrical to `BufferedSource` which uses a `protected readUnbuffered` method.
32 lines
791 B
C++
32 lines
791 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "ref.hh"
|
|
#include "types.hh"
|
|
#include "serialise.hh"
|
|
|
|
#include <string>
|
|
|
|
namespace nix {
|
|
|
|
struct CompressionSink : BufferedSink, FinishSink
|
|
{
|
|
using BufferedSink::operator ();
|
|
using BufferedSink::writeUnbuffered;
|
|
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);
|
|
|
|
}
|