Skip to content

Commit

Permalink
Remove BinaryCacheStoreAccessor
Browse files Browse the repository at this point in the history
Probably as a result of a bad merge in
4b8f1b0, we had both a
BinaryCacheStoreAccessor and a
RemoteFSAccessor. BinaryCacheStore::getFSAccessor() returned the
latter, but BinaryCacheStore::addToStore() checked for the
former. This probably caused hydra-queue-runner to download paths that
it just uploaded.
  • Loading branch information
edolstra committed Oct 17, 2017
1 parent cbc2169 commit 11ba430
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 61 deletions.
62 changes: 1 addition & 61 deletions src/libstore/binary-cache-store.cc
Expand Up @@ -17,66 +17,6 @@

namespace nix {

/* Given requests for a path /nix/store/<x>/<y>, this accessor will
first download the NAR for /nix/store/<x> from the binary cache,
build a NAR accessor for that NAR, and use that to access <y>. */
struct BinaryCacheStoreAccessor : public FSAccessor
{
ref<BinaryCacheStore> store;

std::map<Path, ref<FSAccessor>> nars;

BinaryCacheStoreAccessor(ref<BinaryCacheStore> store)
: store(store)
{
}

std::pair<ref<FSAccessor>, Path> fetch(const Path & path_)
{
auto path = canonPath(path_);

auto storePath = store->toStorePath(path);
std::string restPath = std::string(path, storePath.size());

if (!store->isValidPath(storePath))
throw InvalidPath(format("path '%1%' is not a valid store path") % storePath);

auto i = nars.find(storePath);
if (i != nars.end()) return {i->second, restPath};

StringSink sink;
store->narFromPath(storePath, sink);

auto accessor = makeNarAccessor(sink.s);
nars.emplace(storePath, accessor);
return {accessor, restPath};
}

Stat stat(const Path & path) override
{
auto res = fetch(path);
return res.first->stat(res.second);
}

StringSet readDirectory(const Path & path) override
{
auto res = fetch(path);
return res.first->readDirectory(res.second);
}

std::string readFile(const Path & path) override
{
auto res = fetch(path);
return res.first->readFile(res.second);
}

std::string readLink(const Path & path) override
{
auto res = fetch(path);
return res.first->readLink(res.second);
}
};

BinaryCacheStore::BinaryCacheStore(const Params & params)
: Store(params)
{
Expand Down Expand Up @@ -161,7 +101,7 @@ void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::str
if (info.narHash && info.narHash != narInfo->narHash)
throw Error(format("refusing to copy corrupted path '%1%' to binary cache") % info.path);

auto accessor_ = std::dynamic_pointer_cast<BinaryCacheStoreAccessor>(accessor);
auto accessor_ = std::dynamic_pointer_cast<RemoteFSAccessor>(accessor);

/* Optionally write a JSON file containing a listing of the
contents of the NAR. */
Expand Down
3 changes: 3 additions & 0 deletions src/libstore/remote-fs-accessor.hh
Expand Up @@ -13,6 +13,9 @@ class RemoteFSAccessor : public FSAccessor
std::map<Path, ref<FSAccessor>> nars;

std::pair<ref<FSAccessor>, Path> fetch(const Path & path_);

friend class BinaryCacheStore;

public:

RemoteFSAccessor(ref<Store> store);
Expand Down

0 comments on commit 11ba430

Please sign in to comment.