2016-09-02 21:24:34 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "fs-accessor.hh"
|
|
|
|
#include "ref.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
class RemoteFSAccessor : public FSAccessor
|
|
|
|
{
|
|
|
|
ref<Store> store;
|
|
|
|
|
|
|
|
std::map<Path, ref<FSAccessor>> nars;
|
|
|
|
|
2017-10-17 22:15:33 +03:00
|
|
|
Path cacheDir;
|
|
|
|
|
2016-09-02 21:24:34 +03:00
|
|
|
std::pair<ref<FSAccessor>, Path> fetch(const Path & path_);
|
2017-10-17 21:51:42 +03:00
|
|
|
|
|
|
|
friend class BinaryCacheStore;
|
|
|
|
|
2016-09-02 21:24:34 +03:00
|
|
|
public:
|
|
|
|
|
2017-10-17 22:15:33 +03:00
|
|
|
RemoteFSAccessor(ref<Store> store,
|
|
|
|
const /* FIXME: use std::optional */ Path & cacheDir = "");
|
2016-09-02 21:24:34 +03:00
|
|
|
|
|
|
|
Stat stat(const Path & path) override;
|
|
|
|
|
|
|
|
StringSet readDirectory(const Path & path) override;
|
|
|
|
|
|
|
|
std::string readFile(const Path & path) override;
|
|
|
|
|
|
|
|
std::string readLink(const Path & path) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|