diff options
author | zimbatm <zimbatm@zimbatm.com> | 2019-10-23 17:21:10 +0200 |
---|---|---|
committer | zimbatm <zimbatm@zimbatm.com> | 2019-10-23 17:21:16 +0200 |
commit | 59c72497696eaafa294c34699795788d24d68c68 (patch) | |
tree | c3f1bbb3c270dc265d52f6bd657bfe5e9364e717 /src/libexpr/attr-path.cc | |
parent | 207a537343ace1d39ac125059456d832a5237f2e (diff) |
libexpr: add findDerivationFilename
extract the derivation to filename:lineno heuristic
Diffstat (limited to 'src/libexpr/attr-path.cc')
-rw-r--r-- | src/libexpr/attr-path.cc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/libexpr/attr-path.cc b/src/libexpr/attr-path.cc index b0f80db32..7a6d8dfd0 100644 --- a/src/libexpr/attr-path.cc +++ b/src/libexpr/attr-path.cc @@ -93,4 +93,32 @@ Value * findAlongAttrPath(EvalState & state, const string & attrPath, } +std::tuple<std::string, int> findDerivationFilename(EvalState & state, Value & v, std::string what) +{ + Value * v2; + try { + auto dummyArgs = state.allocBindings(0); + v2 = findAlongAttrPath(state, "meta.position", *dummyArgs, v); + } catch (Error &) { + throw Error("package '%s' has no source location information", what); + } + + auto pos = state.forceString(*v2); + + auto colon = pos.rfind(':'); + if (colon == std::string::npos) + throw Error("cannot parse meta.position attribute '%s'", pos); + + std::string filename(pos, 0, colon); + int lineno; + try { + lineno = std::stoi(std::string(pos, colon + 1)); + } catch (std::invalid_argument & e) { + throw Error("cannot parse line number '%s'", pos); + } + + return std::make_tuple(filename, lineno); +} + + } |