From 97a389b0bee7baf2d445121afa6ec84bef3a4bd7 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Fri, 26 Jul 2024 13:28:29 +0200 Subject: libstore: move Goal::getBuildResult to BuildResult there are no other uses for this yet, but asking for just a subset of outputs does seem at least somewhat useful to have as a generic thing Change-Id: I30ff5055a666c351b1b086b8d05b9d7c9fb1c77a --- src/libstore/build/goal.cc | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'src/libstore/build/goal.cc') diff --git a/src/libstore/build/goal.cc b/src/libstore/build/goal.cc index f4973efc9..4db6af6e6 100644 --- a/src/libstore/build/goal.cc +++ b/src/libstore/build/goal.cc @@ -11,29 +11,6 @@ bool CompareGoalPtrs::operator() (const GoalPtr & a, const GoalPtr & b) const { } -BuildResult Goal::getBuildResult(const DerivedPath & req) const { - BuildResult res { buildResult }; - - if (auto pbp = std::get_if(&req)) { - auto & bp = *pbp; - - /* Because goals are in general shared between derived paths - that share the same derivation, we need to filter their - results to get back just the results we care about. - */ - - for (auto it = res.builtOutputs.begin(); it != res.builtOutputs.end();) { - if (bp.outputs.contains(it->first)) - ++it; - else - it = res.builtOutputs.erase(it); - } - } - - return res; -} - - void Goal::addWaitee(GoalPtr waitee) { waitees.insert(waitee); -- cgit v1.2.3