aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/get-drvs.hh7
-rw-r--r--src/libexpr/primops.cc6
2 files changed, 12 insertions, 1 deletions
diff --git a/src/libexpr/get-drvs.hh b/src/libexpr/get-drvs.hh
index 879dc8dbb..25d8baa55 100644
--- a/src/libexpr/get-drvs.hh
+++ b/src/libexpr/get-drvs.hh
@@ -31,6 +31,8 @@ private:
bool metaInfoRead;
MetaInfo meta;
+
+ bool failed; // set if we get an AssertionError
public:
string name;
@@ -40,7 +42,7 @@ public:
/* !!! make this private */
Bindings * attrs;
- DrvInfo() : metaInfoRead(false), attrs(0) { };
+ DrvInfo() : metaInfoRead(false), failed(false), attrs(0) { };
string queryDrvPath(EvalState & state) const;
string queryOutPath(EvalState & state) const;
@@ -58,6 +60,9 @@ public:
}
void setMetaInfo(const MetaInfo & meta);
+
+ void setFailed() { failed = true; };
+ bool hasFailed() { return failed; };
};
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index 0d4efc47e..5c011c43e 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -51,6 +51,12 @@ static void prim_import(EvalState & state, Value * * args, Value & v)
% path % ctx);
if (isDerivation(ctx))
try {
+ /* For performance, prefetch all substitute info. */
+ PathSet willBuild, willSubstitute, unknown;
+ unsigned long long downloadSize, narSize;
+ queryMissing(*store, singleton<PathSet>(ctx),
+ willBuild, willSubstitute, unknown, downloadSize, narSize);
+
/* !!! If using a substitute, we only need to fetch
the selected output of this derivation. */
store->buildPaths(singleton<PathSet>(ctx));