about summary refs log tree commit diff
path: root/src/libutil/compression.hh
blob: e3e6f5a993030ed725bfa59469ea30ce49c9cd9a (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
#pragma once

#include "ref.hh"
#include "types.hh"
#include "serialise.hh"

#include <string>

namespace nix {

ref<std::string> compress(const std::string & method, const std::string & in);

ref<std::string> decompress(const std::string & method, const std::string & in);

struct CompressionSink : BufferedSink
{
    virtual void finish() = 0;
};

ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & nextSink);

MakeError(UnknownCompressionMethod, Error);

MakeError(CompressionError, Error);

}