aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-01-22 20:00:58 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-01-22 20:00:58 +0100
commitb5c9dbc84f31a1e9d1e5b6642b1716daa13c18ed (patch)
tree9c064107d9c9a81bb7f4ce821e55b522a2ca048d /src/libstore
parent90d55ed275220962f7239f4869905b0237dd24fb (diff)
Fix --override-flake and add a test
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/fetchers/registry.cc26
-rw-r--r--src/libstore/fetchers/registry.hh8
2 files changed, 22 insertions, 12 deletions
diff --git a/src/libstore/fetchers/registry.cc b/src/libstore/fetchers/registry.cc
index dd74e16c1..9c74f118d 100644
--- a/src/libstore/fetchers/registry.cc
+++ b/src/libstore/fetchers/registry.cc
@@ -11,11 +11,10 @@ namespace nix::fetchers {
std::shared_ptr<Registry> Registry::read(
const Path & path, RegistryType type)
{
- auto registry = std::make_shared<Registry>();
- registry->type = type;
+ auto registry = std::make_shared<Registry>(type);
if (!pathExists(path))
- return std::make_shared<Registry>();
+ return std::make_shared<Registry>(type);
auto json = nlohmann::json::parse(readFile(path));
@@ -74,17 +73,20 @@ std::shared_ptr<Registry> getUserRegistry()
return Registry::read(getUserRegistryPath(), Registry::User);
}
-#if 0
-std::shared_ptr<Registry> getFlagRegistry(RegistryOverrides registryOverrides)
+static std::shared_ptr<Registry> flagRegistry =
+ std::make_shared<Registry>(Registry::Flag);
+
+std::shared_ptr<Registry> getFlagRegistry()
{
- auto flagRegistry = std::make_shared<Registry>();
- for (auto const & x : registryOverrides)
- flagRegistry->entries.insert_or_assign(
- parseFlakeRef2(x.first),
- parseFlakeRef2(x.second));
return flagRegistry;
}
-#endif
+
+void overrideRegistry(
+ const std::shared_ptr<const Input> & from,
+ const std::shared_ptr<const Input> & to)
+{
+ flagRegistry->add(from, to);
+}
static std::shared_ptr<Registry> getGlobalRegistry(ref<Store> store)
{
@@ -107,7 +109,7 @@ static std::shared_ptr<Registry> getGlobalRegistry(ref<Store> store)
Registries getRegistries(ref<Store> store)
{
Registries registries;
- //registries.push_back(getFlagRegistry(registryOverrides));
+ registries.push_back(getFlagRegistry());
registries.push_back(getUserRegistry());
registries.push_back(getGlobalRegistry(store));
return registries;
diff --git a/src/libstore/fetchers/registry.hh b/src/libstore/fetchers/registry.hh
index 1757ce323..e29f78486 100644
--- a/src/libstore/fetchers/registry.hh
+++ b/src/libstore/fetchers/registry.hh
@@ -20,6 +20,10 @@ struct Registry
std::vector<std::pair<std::shared_ptr<const Input>, std::shared_ptr<const Input>>> entries;
+ Registry(RegistryType type)
+ : type(type)
+ { }
+
static std::shared_ptr<Registry> read(
const Path & path, RegistryType type);
@@ -40,6 +44,10 @@ Path getUserRegistryPath();
Registries getRegistries(ref<Store> store);
+void overrideRegistry(
+ const std::shared_ptr<const Input> & from,
+ const std::shared_ptr<const Input> & to);
+
std::shared_ptr<const Input> lookupInRegistries(
ref<Store> store,
std::shared_ptr<const Input> input);