aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/references.hh
blob: f0f467190f9cbb1e45cc6c4f0a38cd291b995bfe (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#pragma once
///@file

#include "hash.hh"

namespace nix {

class RefScanSink : public Sink
{
    StringSet hashes;
    StringSet seen;

    std::string tail;

public:

    RefScanSink(StringSet && hashes) : hashes(hashes)
    { }

    StringSet & getResult()
    { return seen; }

    void operator () (std::string_view data) override;
};

struct RewritingSource : Source
{
    const std::string::size_type maxRewriteSize;
    const std::string initials;
    const StringMap rewrites;
    std::string rewritten, buffered;
    std::string_view unreturned;
    Source * inner;

    static constexpr struct may_change_size_t {
        explicit may_change_size_t() = default;
    } may_change_size{};

    RewritingSource(const std::string & from, const std::string & to, Source & inner);
    RewritingSource(StringMap rewrites, Source & inner);
    RewritingSource(may_change_size_t, StringMap rewrites, Source & inner);

    size_t read(char * data, size_t len) override;
};

HashResult computeHashModulo(HashType ht, const std::string & modulus, Source & source);

}