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
|
#pragma once
///@file
#include "lix/libstore/fs-accessor.hh"
#include "lix/libutil/ref.hh"
#include "lix/libstore/store-api.hh"
namespace nix {
class RemoteFSAccessor : public FSAccessor
{
ref<Store> store;
std::map<std::string, ref<FSAccessor>> nars;
Path cacheDir;
kj::Promise<Result<std::pair<ref<FSAccessor>, Path>>>
fetch(const Path & path_, bool requireValidPath = true);
friend class BinaryCacheStore;
Path makeCacheFile(std::string_view hashPart, const std::string & ext);
kj::Promise<Result<ref<FSAccessor>>> addToCache(std::string_view hashPart, std::string && nar);
public:
RemoteFSAccessor(ref<Store> store,
const /* FIXME: use std::optional */ Path & cacheDir = "");
kj::Promise<Result<Stat>> stat(const Path & path) override;
kj::Promise<Result<StringSet>> readDirectory(const Path & path) override;
kj::Promise<Result<std::string>>
readFile(const Path & path, bool requireValidPath = true) override;
kj::Promise<Result<std::string>> readLink(const Path & path) override;
};
}
|