2016-09-02 18:24:34 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2016-09-02 18:24:34 +00:00
|
|
|
|
|
|
|
#include "fs-accessor.hh"
|
|
|
|
#include "ref.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
class RemoteFSAccessor : public FSAccessor
|
|
|
|
{
|
|
|
|
ref<Store> store;
|
|
|
|
|
2020-07-13 14:19:37 +00:00
|
|
|
std::map<std::string, ref<FSAccessor>> nars;
|
2016-09-02 18:24:34 +00:00
|
|
|
|
2017-10-17 19:15:33 +00:00
|
|
|
Path cacheDir;
|
|
|
|
|
2020-12-15 09:54:24 +00:00
|
|
|
std::pair<ref<FSAccessor>, Path> fetch(const Path & path_, bool requireValidPath = true);
|
2017-10-17 18:51:42 +00:00
|
|
|
|
|
|
|
friend class BinaryCacheStore;
|
|
|
|
|
2020-07-13 14:19:37 +00:00
|
|
|
Path makeCacheFile(std::string_view hashPart, const std::string & ext);
|
2017-10-17 19:39:48 +00:00
|
|
|
|
2022-01-17 21:20:05 +00:00
|
|
|
ref<FSAccessor> addToCache(std::string_view hashPart, std::string && nar);
|
2017-10-17 19:39:48 +00:00
|
|
|
|
2016-09-02 18:24:34 +00:00
|
|
|
public:
|
|
|
|
|
2017-10-17 19:15:33 +00:00
|
|
|
RemoteFSAccessor(ref<Store> store,
|
|
|
|
const /* FIXME: use std::optional */ Path & cacheDir = "");
|
2016-09-02 18:24:34 +00:00
|
|
|
|
|
|
|
Stat stat(const Path & path) override;
|
|
|
|
|
|
|
|
StringSet readDirectory(const Path & path) override;
|
|
|
|
|
2020-12-15 09:54:24 +00:00
|
|
|
std::string readFile(const Path & path, bool requireValidPath = true) override;
|
2016-09-02 18:24:34 +00:00
|
|
|
|
|
|
|
std::string readLink(const Path & path) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|