From d64e0c1b64dc20b02fae335397213d1ca17d9d56 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 2 Jun 2016 18:43:36 +0200 Subject: Make derivationFromPath work on diverted stores --- src/libstore/local-fs-store.cc | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'src/libstore/local-fs-store.cc') diff --git a/src/libstore/local-fs-store.cc b/src/libstore/local-fs-store.cc index a19e4ce5dbc9..b1b9dc29e40d 100644 --- a/src/libstore/local-fs-store.cc +++ b/src/libstore/local-fs-store.cc @@ -13,20 +13,21 @@ LocalFSStore::LocalFSStore(const Params & params) struct LocalStoreAccessor : public FSAccessor { - ref store; + ref store; - LocalStoreAccessor(ref store) : store(store) { } + LocalStoreAccessor(ref store) : store(store) { } - void assertStore(const Path & path) + Path toRealPath(const Path & path) { Path storePath = store->toStorePath(path); if (!store->isValidPath(storePath)) throw Error(format("path ‘%1%’ is not a valid store path") % storePath); + return store->getRealStoreDir() + std::string(path, store->storeDir.size()); } FSAccessor::Stat stat(const Path & path) override { - assertStore(path); + auto realPath = toRealPath(path); struct stat st; if (lstat(path.c_str(), &st)) { @@ -47,7 +48,7 @@ struct LocalStoreAccessor : public FSAccessor StringSet readDirectory(const Path & path) override { - assertStore(path); + auto realPath = toRealPath(path); auto entries = nix::readDirectory(path); @@ -60,20 +61,18 @@ struct LocalStoreAccessor : public FSAccessor std::string readFile(const Path & path) override { - assertStore(path); - return nix::readFile(path); + return nix::readFile(toRealPath(path)); } std::string readLink(const Path & path) override { - assertStore(path); - return nix::readLink(path); + return nix::readLink(toRealPath(path)); } }; ref LocalFSStore::getFSAccessor() { - return make_ref(ref(shared_from_this())); + return make_ref(ref(std::dynamic_pointer_cast(shared_from_this()))); } void LocalFSStore::narFromPath(const Path & path, Sink & sink) -- cgit 1.4.1