aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/flake/flake.cc
diff options
context:
space:
mode:
authorMatthew Kenigsberg <matthewkenigsberg@gmail.com>2020-06-01 01:39:15 -0600
committerMatthew Kenigsberg <matthewkenigsberg@gmail.com>2020-06-01 02:57:22 -0600
commitff1320b85072b5c2ab28143a45a49f06d3545a8f (patch)
tree199e64e90924ca2f74aba8d22b7b1bede1514d11 /src/libexpr/flake/flake.cc
parent89e0b3e2d62f72e48bdda63b77a086c69b314113 (diff)
fetchOrSubstituteTree improvements
Caches tree in addition to lockedRef, and explicitly writes out the logic for different combinations of cached/uncached flakes and indirect/resolved/locked flakes. This eliminates uneccessary calls to lookupInFlakeCache, fetchTree, maybeLookupFlake, and flakeCache.push_back
Diffstat (limited to 'src/libexpr/flake/flake.cc')
-rw-r--r--src/libexpr/flake/flake.cc54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/libexpr/flake/flake.cc b/src/libexpr/flake/flake.cc
index 54282d40f..c94924371 100644
--- a/src/libexpr/flake/flake.cc
+++ b/src/libexpr/flake/flake.cc
@@ -12,25 +12,10 @@ using namespace flake;
namespace flake {
-/* If 'allowLookup' is true, then resolve 'flakeRef' using the
- registries. */
-static FlakeRef maybeLookupFlake(
- ref<Store> store,
- const FlakeRef & flakeRef,
- bool allowLookup)
-{
- if (!flakeRef.input.isDirect()) {
- if (allowLookup)
- return flakeRef.resolve(store);
- else
- throw Error("'%s' is an indirect flake reference, but registry lookups are not allowed", flakeRef);
- } else
- return flakeRef;
-}
+typedef std::pair<Tree, FlakeRef> FetchedFlake;
+typedef std::vector<std::pair<FlakeRef, FetchedFlake>> FlakeCache;
-typedef std::vector<std::pair<FlakeRef, FlakeRef>> FlakeCache;
-
-static FlakeRef lookupInFlakeCache(
+static std::optional<FetchedFlake> lookupInFlakeCache(
const FlakeCache & flakeCache,
const FlakeRef & flakeRef)
{
@@ -38,12 +23,12 @@ static FlakeRef lookupInFlakeCache(
for (auto & i : flakeCache) {
if (flakeRef == i.first) {
debug("mapping '%s' to previously seen input '%s' -> '%s",
- flakeRef, i.first, i.second);
+ flakeRef, i.first, i.second.second);
return i.second;
}
}
- return flakeRef;
+ return std::nullopt;
}
static std::tuple<fetchers::Tree, FlakeRef, FlakeRef> fetchOrSubstituteTree(
@@ -52,17 +37,32 @@ static std::tuple<fetchers::Tree, FlakeRef, FlakeRef> fetchOrSubstituteTree(
bool allowLookup,
FlakeCache & flakeCache)
{
- auto resolvedRef = lookupInFlakeCache(flakeCache,
- maybeLookupFlake(state.store,
- lookupInFlakeCache(flakeCache, originalRef), allowLookup));
-
- auto [tree, lockedRef] = resolvedRef.fetchTree(state.store);
+ auto fetched = lookupInFlakeCache(flakeCache, originalRef);
+ FlakeRef resolvedRef = originalRef;
+
+ if (!fetched) {
+ if (originalRef.input.isDirect()) {
+ fetched.emplace(originalRef.fetchTree(state.store));
+ } else {
+ if (allowLookup) {
+ resolvedRef = originalRef.resolve(state.store);
+ auto fetchedResolved = lookupInFlakeCache(flakeCache, originalRef);
+ if (!fetchedResolved) fetchedResolved.emplace(resolvedRef.fetchTree(state.store));
+ flakeCache.push_back({resolvedRef, fetchedResolved.value()});
+ fetched.emplace(fetchedResolved.value());
+ }
+ else {
+ throw Error("'%s' is an indirect flake reference, but registry lookups are not allowed", originalRef);
+ }
+ }
+ flakeCache.push_back({originalRef, fetched.value()});
+ }
+
+ auto [tree, lockedRef] = fetched.value();
debug("got tree '%s' from '%s'",
state.store->printStorePath(tree.storePath), lockedRef);
- flakeCache.push_back({originalRef, lockedRef});
- flakeCache.push_back({resolvedRef, lockedRef});
if (state.allowedPaths)
state.allowedPaths->insert(tree.actualPath);