blob: 8ec340ab744728c1e052a294371c57bf981e0a8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#pragma once
#include <string>
#include "libutil/ref.hh"
#include "libutil/serialise.hh"
#include "libutil/types.hh"
namespace nix {
struct CompressionSink : BufferedSink {
virtual void finish() = 0;
};
ref<std::string> decompress(const std::string& method, const std::string& in);
ref<CompressionSink> 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);
} // namespace nix
|