[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/118: findFile: Realise the context of the path attributes
From: |
Ludovic Courtès |
Subject: |
23/118: findFile: Realise the context of the path attributes |
Date: |
Tue, 19 May 2015 14:45:21 +0000 |
civodul pushed a commit to branch nix
in repository guix.
commit 718f20da6d79466f91c49849bcf91a688aaa871e
Author: Shea Levy <address@hidden>
Date: Fri May 30 15:43:31 2014 -0400
findFile: Realise the context of the path attributes
---
src/libexpr/nixexpr.hh | 1 +
src/libexpr/primops.cc | 62 ++++++++++++++++++++++++++++++++++--------------
2 files changed, 45 insertions(+), 18 deletions(-)
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh
index 3df9dd4..b8d0929 100644
--- a/src/libexpr/nixexpr.hh
+++ b/src/libexpr/nixexpr.hh
@@ -16,6 +16,7 @@ MakeError(ThrownError, AssertionError)
MakeError(Abort, EvalError)
MakeError(TypeError, EvalError)
MakeError(ImportError, EvalError) // error building an imported derivation
+MakeError(FindError, EvalError) // error building a nix-path component
MakeError(UndefinedVarError, Error)
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index f270ca3..fecaf37 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -37,36 +37,52 @@ std::pair<string, string> decodeContext(const string & s)
}
-/* Load and evaluate an expression from path specified by the
- argument. */
-static void prim_scopedImport(EvalState & state, const Pos & pos, Value * *
args, Value & v)
+struct InvalidPathError : EvalError
{
- PathSet context;
- Path path = state.coerceToPath(pos, *args[1], context);
+ Path path;
+ InvalidPathError(const Path & path) :
+ EvalError(format("path `%1%' is not valid") % path), path(path) {};
+};
+
+static void realiseContext(const PathSet & context)
+{
PathSet drvs;
for (auto & i : context) {
std::pair<string, string> decoded = decodeContext(i);
Path ctx = decoded.first;
assert(isStorePath(ctx));
if (!store->isValidPath(ctx))
- throw EvalError(format("cannot import `%1%', since path `%2%' is
not valid, at %3%")
- % path % ctx % pos);
+ throw InvalidPathError(ctx);
if (isDerivation(ctx))
drvs.insert(decoded.first + "!" + decoded.second);
}
if (!drvs.empty()) {
- try {
- /* For performance, prefetch all substitute info. */
- PathSet willBuild, willSubstitute, unknown;
- unsigned long long downloadSize, narSize;
- queryMissing(*store, drvs,
- willBuild, willSubstitute, unknown, downloadSize, narSize);
+ /* For performance, prefetch all substitute info. */
+ PathSet willBuild, willSubstitute, unknown;
+ unsigned long long downloadSize, narSize;
+ queryMissing(*store, drvs,
+ willBuild, willSubstitute, unknown, downloadSize, narSize);
- store->buildPaths(drvs);
- } catch (Error & e) {
- throw ImportError(e.msg());
- }
+ store->buildPaths(drvs);
+ }
+}
+
+
+/* Load and evaluate an expression from path specified by the
+ argument. */
+static void prim_scopedImport(EvalState & state, const Pos & pos, Value * *
args, Value & v)
+{
+ PathSet context;
+ Path path = state.coerceToPath(pos, *args[1], context);
+
+ try {
+ realiseContext(context);
+ } catch (InvalidPathError & e) {
+ throw EvalError(format("cannot import `%1%', since path `%2%' is not
valid, at %3%")
+ % path % e.path % pos);
+ } catch (Error & e) {
+ throw ImportError(e.msg());
}
if (isStorePath(path) && store->isValidPath(path) && isDerivation(path)) {
@@ -660,6 +676,7 @@ static void prim_findFile(EvalState & state, const Pos &
pos, Value * * args, Va
SearchPath searchPath;
+ PathSet context;
for (unsigned int n = 0; n < args[0]->list.length; ++n) {
Value & v2(*args[0]->list.elems[n]);
state.forceAttrs(v2, pos);
@@ -672,13 +689,22 @@ static void prim_findFile(EvalState & state, const Pos &
pos, Value * * args, Va
i = v2.attrs->find(state.symbols.create("path"));
if (i == v2.attrs->end())
throw EvalError(format("attribute `path' missing, at %1%") % pos);
- PathSet context;
string path = state.coerceToPath(pos, *i->value, context);
searchPath.push_back(std::pair<string, Path>(prefix, path));
}
string path = state.forceStringNoCtx(*args[1], pos);
+
+ try {
+ realiseContext(context);
+ } catch (InvalidPathError & e) {
+ throw EvalError(format("cannot find `%1%', since path `%2%' is not
valid, at %3%")
+ % path % e.path % pos);
+ } catch (Error & e) {
+ throw FindError(e.msg());
+ }
+
mkPath(v, state.findFile(searchPath, path).c_str());
}
- 15/118: Sort nixPath attributes, (continued)
- 15/118: Sort nixPath attributes, Ludovic Courtès, 2015/05/19
- 10/118: Remove ExprBuiltin, Ludovic Courtès, 2015/05/19
- 09/118: Make the Nix search path declarative, Ludovic Courtès, 2015/05/19
- 04/118: Ugly hack to allow --argstr values starting with a dash, Ludovic Courtès, 2015/05/19
- 19/118: Report daemon OOM better, Ludovic Courtès, 2015/05/19
- 06/118: Add primop ‘scopedImport’, Ludovic Courtès, 2015/05/19
- 21/118: Add autoloads, make code more concise & idiomatic, Ludovic Courtès, 2015/05/19
- 25/118: Fix bogus warnings about dumping large paths, Ludovic Courtès, 2015/05/19
- 20/118: == operator: Ignore string context, Ludovic Courtès, 2015/05/19
- 17/118: nix-env -qa --json: Generate valid JSON even if there are invalid meta attrs, Ludovic Courtès, 2015/05/19
- 23/118: findFile: Realise the context of the path attributes,
Ludovic Courtès <=
- 11/118: Rephrase @ operator description, Ludovic Courtès, 2015/05/19
- 29/118: Merge branch 'shlevy-import-native', Ludovic Courtès, 2015/05/19
- 12/118: dev-shell is a bash script, not sh, Ludovic Courtès, 2015/05/19
- 22/118: Share code between scopedImport and import, Ludovic Courtès, 2015/05/19
- 26/118: Don't use member initialisers, Ludovic Courtès, 2015/05/19
- 31/118: Add `--json` argument to `nix-instantiate`, Ludovic Courtès, 2015/05/19
- 18/118: Print a warning when loading a large path into memory, Ludovic Courtès, 2015/05/19
- 27/118: Add importNative primop, Ludovic Courtès, 2015/05/19
- 24/118: Drop ImportError and FindError, Ludovic Courtès, 2015/05/19
- 28/118: Only add the importNative primop if the allow-arbitrary-code-during-evaluation option is true (default false), Ludovic Courtès, 2015/05/19