aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/store-api.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-02-29 16:11:11 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-02 15:46:07 +0100
commit68a541498258949231e35544501e11c6003f2dce (patch)
tree30328e65d6201d3c98ead5b48d6c74b30b8da27c /src/libstore/store-api.cc
parent6055d84bebe6eecc061ef295c1fd21ceb77e7674 (diff)
Make store implementations pluggable
This for instance allows hydra-queue-runner to add the S3 backend at runtime.
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r--src/libstore/store-api.cc43
1 files changed, 24 insertions, 19 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index 24c05b8b4..378233654 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -314,27 +314,38 @@ void Store::exportPaths(const Paths & paths,
#include "local-store.hh"
#include "remote-store.hh"
-#include "local-binary-cache-store.hh"
namespace nix {
+RegisterStoreImplementation::Implementations * RegisterStoreImplementation::implementations = 0;
+
+
ref<Store> openStoreAt(const std::string & uri)
{
- if (std::string(uri, 0, 7) == "file://") {
- auto store = make_ref<LocalBinaryCacheStore>(std::shared_ptr<Store>(0),
- "", "", // FIXME: allow the signing key to be set
- std::string(uri, 7));
- store->init();
- return store;
+ for (auto fun : *RegisterStoreImplementation::implementations) {
+ auto store = fun(uri);
+ if (store) return ref<Store>(store);
}
+ throw Error(format("don't know how to open Nix store ā€˜%sā€™") % uri);
+}
+
+
+ref<Store> openStore()
+{
+ return openStoreAt(getEnv("NIX_REMOTE"));
+}
+
+
+static RegisterStoreImplementation regStore([](const std::string & uri) -> std::shared_ptr<Store> {
enum { mDaemon, mLocal, mAuto } mode;
- mode =
- uri == "daemon" ? mDaemon :
- uri == "local" ? mLocal : mAuto;
+ if (uri == "daemon") mode = mDaemon;
+ else if (uri == "local") mode = mLocal;
+ else if (uri == "") mode = mAuto;
+ else return 0;
if (mode == mAuto) {
if (LocalStore::haveWriteAccess())
@@ -346,15 +357,9 @@ ref<Store> openStoreAt(const std::string & uri)
}
return mode == mDaemon
- ? (ref<Store>) make_ref<RemoteStore>()
- : (ref<Store>) make_ref<LocalStore>();
-}
-
-
-ref<Store> openStore()
-{
- return openStoreAt(getEnv("NIX_REMOTE"));
-}
+ ? std::shared_ptr<Store>(std::make_shared<RemoteStore>())
+ : std::shared_ptr<Store>(std::make_shared<LocalStore>());
+});
}