diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2016-10-21T16·09+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2016-10-21T16·09+0200 |
commit | fdbbcc44924cb4d9028fa68b2f7d423fb5d8670f (patch) | |
tree | e2d5e7ef799cd558d10ab25e05efe8d15728fc2a /src/libstore/binary-cache-store.hh | |
parent | 542ae5c8f804b704101f9d27bd8b2aa62ded899c (diff) |
Remove addPathToAccessor
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r-- | src/libstore/binary-cache-store.hh | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index 333cf08562a0..31878bbb2476 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -93,22 +93,23 @@ public: bool wantMassQuery() override { return wantMassQuery_; } void addToStore(const ValidPathInfo & info, const ref<std::string> & nar, - bool repair = false, bool dontCheckSigs = false) override; + bool repair, bool dontCheckSigs, + std::shared_ptr<FSAccessor> accessor) override; Path addToStore(const string & name, const Path & srcPath, - bool recursive = true, HashType hashAlgo = htSHA256, - PathFilter & filter = defaultPathFilter, bool repair = false) override; + bool recursive, HashType hashAlgo, + PathFilter & filter, bool repair) override; Path addTextToStore(const string & name, const string & s, - const PathSet & references, bool repair = false) override; + const PathSet & references, bool repair) override; void narFromPath(const Path & path, Sink & sink) override; - void buildPaths(const PathSet & paths, BuildMode buildMode = bmNormal) override + void buildPaths(const PathSet & paths, BuildMode buildMode) override { notImpl(); } BuildResult buildDerivation(const Path & drvPath, const BasicDerivation & drv, - BuildMode buildMode = bmNormal) override + BuildMode buildMode) override { notImpl(); } void ensurePath(const Path & path) override @@ -137,10 +138,6 @@ public: ref<FSAccessor> getFSAccessor() override; -private: - - void addPathToAccessor(ref<FSAccessor>, const Path & storePath, const ref<std::string> & data) override; - public: void addSignatures(const Path & storePath, const StringSet & sigs) override |