1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#pragma once
///@file

#include "lix/libexpr/eval-error.hh"
#include "lix/libexpr/eval.hh"
#include "lix/libutil/args.hh"
#include "lix/libmain/common-args.hh"
#include "lix/libexpr/search-path.hh"

namespace nix {

class Store;
class EvalState;
class Bindings;
struct SourcePath;

struct StringArgument
{
    std::string value;
};
struct ExprArgument
{
    std::string expr;
};

struct MixEvalArgs : virtual Args, virtual MixRepair
{
    static constexpr auto category = "Common evaluation options";

    MixEvalArgs();

    Bindings * getAutoArgs(Evaluator & state);

    SearchPath searchPath;

    std::optional<std::string> evalStoreUrl;

private:
    std::map<std::string, std::variant<StringArgument, ExprArgument>> autoArgs;
};

/** @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.
 */
kj::Promise<Result<EvalPaths::PathResult<SourcePath, ThrownError>>>
lookupFileArg(Evaluator & state, std::string_view fileArg);

}