diff options
author | regnat <rg@regnat.ovh> | 2020-09-09 11:29:17 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2020-09-16 13:53:08 +0200 |
commit | 3b57181f8ed94cfa149ad4319ba96d41c5fbc30e (patch) | |
tree | 76482159f03ceb75eab14c3f4a682eae22d6fe14 /src/libstore/local-binary-cache-store.cc | |
parent | fa32560169ffa55b9e0b6d5f04c3792acf0c544a (diff) |
Separate the instantiation and initialisation of the stores
Add a new `init()` method to the `Store` class that is supposed to
handle all the effectful initialisation needed to set-up the store.
The constructor should remain side-effect free and just initialize the
c++ data structure.
The goal behind that is that we can create “dummy” instances of each
store to query static properties about it (the parameters it accepts for
example)
Diffstat (limited to 'src/libstore/local-binary-cache-store.cc')
-rw-r--r-- | src/libstore/local-binary-cache-store.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstore/local-binary-cache-store.cc b/src/libstore/local-binary-cache-store.cc index 808a1338f..bcd23eb82 100644 --- a/src/libstore/local-binary-cache-store.cc +++ b/src/libstore/local-binary-cache-store.cc @@ -13,6 +13,12 @@ private: public: LocalBinaryCacheStore( + const Params & params) + : LocalBinaryCacheStore("dummy", params) + { + } + + LocalBinaryCacheStore( const Path & binaryCacheDir, const Params & params) : BinaryCacheStore(params) |