diff options
author | Qyriad <qyriad@qyriad.me> | 2024-05-20 13:16:09 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-05-23 14:11:10 -0600 |
commit | 3a597f1d0bd1719423d71b7b7b029690b84b58a9 (patch) | |
tree | e846cab24b4d6fa02a324920ff2914cbc8014b33 | |
parent | 0565f97e78f9ebd97849f79a3327f51e2157fc53 (diff) |
add docstring to lookupFileArg
Change-Id: Ifc149764f5a15725d3d630677c6da29def4b0f3e
-rw-r--r-- | src/libcmd/common-eval-args.hh | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/src/libcmd/common-eval-args.hh b/src/libcmd/common-eval-args.hh index 6359b2579..08a4b65e4 100644 --- a/src/libcmd/common-eval-args.hh +++ b/src/libcmd/common-eval-args.hh @@ -28,6 +28,26 @@ private: std::map<std::string, std::string> autoArgs; }; -SourcePath lookupFileArg(EvalState & state, std::string_view s); +/** @brief Resolve an argument that is generally a file, but could be something that + * is easy to resolve to a file, like a <lookup path> or a tarball URL. + * + * In particular, this will resolve and fetch pseudo-URLs starting with + * @c channel:, flakerefs starting with @c flake:, and anything that + * @ref nix::fetchers::downloadTarball() can take. + * + * Non-absolute files are looked up relative to the current directory(?) + * FIXME: the process's current directory or EvalState's current directory? + * + * @param state The nix::EvalState to base settings, store, and nixPath from. + * + * @param fileArg The the path-ish to resolve. + * + * @return A nix::SourcePath to the resolved and fetched file. + * + * @exception nix::FileTransferError from nix::fetchers::downloadTarball(). Probably others. + * + * @exception nix::ThrownError for failed search path lookup. Probably others. + */ +SourcePath lookupFileArg(EvalState & state, std::string_view fileArg); } |