2019-10-14 15:40:16 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "util.hh"
|
2019-12-11 15:53:30 +02:00
|
|
|
#include "path.hh"
|
2020-02-07 15:22:01 +02:00
|
|
|
#include "eval.hh"
|
2020-04-20 14:13:52 +03:00
|
|
|
#include "flake/flake.hh"
|
2019-10-14 15:40:16 +03:00
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-10-22 01:21:58 +03:00
|
|
|
struct DrvInfo;
|
2019-12-04 01:36:04 +02:00
|
|
|
struct SourceExprCommand;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2020-04-20 16:27:09 +03:00
|
|
|
namespace eval_cache { class EvalCache; class AttrCursor; }
|
2020-04-20 14:13:52 +03:00
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
struct Buildable
|
|
|
|
{
|
2019-12-11 15:53:30 +02:00
|
|
|
std::optional<StorePath> drvPath;
|
|
|
|
std::map<std::string, StorePath> outputs;
|
2019-10-14 15:40:16 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Buildable> Buildables;
|
|
|
|
|
|
|
|
struct App
|
|
|
|
{
|
|
|
|
PathSet context;
|
|
|
|
Path program;
|
|
|
|
// FIXME: add args, sandbox settings, metadata, ...
|
|
|
|
|
|
|
|
App(EvalState & state, Value & vApp);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Installable
|
|
|
|
{
|
|
|
|
virtual ~Installable() { }
|
|
|
|
|
|
|
|
virtual std::string what() = 0;
|
|
|
|
|
|
|
|
virtual Buildables toBuildables()
|
|
|
|
{
|
|
|
|
throw Error("argument '%s' cannot be built", what());
|
|
|
|
}
|
|
|
|
|
|
|
|
Buildable toBuildable();
|
|
|
|
|
|
|
|
App toApp(EvalState & state);
|
|
|
|
|
2020-02-07 15:22:01 +02:00
|
|
|
virtual std::pair<Value *, Pos> toValue(EvalState & state)
|
2019-10-14 15:40:16 +03:00
|
|
|
{
|
|
|
|
throw Error("argument '%s' cannot be evaluated", what());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a value only if this installable is a store path or a
|
|
|
|
symlink to it. */
|
2019-12-11 15:53:30 +02:00
|
|
|
virtual std::optional<StorePath> getStorePath()
|
2019-10-14 15:40:16 +03:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
2020-04-20 16:27:09 +03:00
|
|
|
|
|
|
|
virtual std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>>
|
|
|
|
getCursor(EvalState & state, bool useEvalCache);
|
2019-10-14 15:40:16 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InstallableValue : Installable
|
|
|
|
{
|
|
|
|
SourceExprCommand & cmd;
|
|
|
|
|
|
|
|
InstallableValue(SourceExprCommand & cmd) : cmd(cmd) { }
|
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
struct DerivationInfo
|
|
|
|
{
|
|
|
|
StorePath drvPath;
|
|
|
|
StorePath outPath;
|
|
|
|
std::string outputName;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual std::vector<DerivationInfo> toDerivations();
|
2019-10-14 15:40:16 +03:00
|
|
|
|
|
|
|
Buildables toBuildables() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct InstallableFlake : InstallableValue
|
|
|
|
{
|
|
|
|
FlakeRef flakeRef;
|
|
|
|
Strings attrPaths;
|
|
|
|
Strings prefixes;
|
|
|
|
|
|
|
|
InstallableFlake(SourceExprCommand & cmd, FlakeRef && flakeRef,
|
2020-01-21 17:27:53 +02:00
|
|
|
Strings && attrPaths, Strings && prefixes)
|
|
|
|
: InstallableValue(cmd), flakeRef(flakeRef), attrPaths(attrPaths),
|
2019-10-14 15:40:16 +03:00
|
|
|
prefixes(prefixes)
|
|
|
|
{ }
|
|
|
|
|
2019-10-20 17:43:00 +03:00
|
|
|
std::string what() override { return flakeRef.to_string() + "#" + *attrPaths.begin(); }
|
2019-10-14 15:40:16 +03:00
|
|
|
|
|
|
|
std::vector<std::string> getActualAttrPaths();
|
|
|
|
|
2020-01-22 21:59:59 +02:00
|
|
|
Value * getFlakeOutputs(EvalState & state, const flake::LockedFlake & lockedFlake);
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
std::tuple<std::string, FlakeRef, DerivationInfo> toDerivation();
|
2019-10-22 01:21:58 +03:00
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
std::vector<DerivationInfo> toDerivations() override;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2020-02-07 15:22:01 +02:00
|
|
|
std::pair<Value *, Pos> toValue(EvalState & state) override;
|
2020-04-20 16:27:09 +03:00
|
|
|
|
|
|
|
std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>>
|
|
|
|
getCursor(EvalState & state, bool useEvalCache) override;
|
2019-10-14 15:40:16 +03:00
|
|
|
};
|
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
ref<eval_cache::EvalCache> openEvalCache(
|
|
|
|
EvalState & state,
|
2020-04-20 16:27:09 +03:00
|
|
|
std::shared_ptr<flake::LockedFlake> lockedFlake,
|
2020-04-20 14:13:52 +03:00
|
|
|
bool useEvalCache);
|
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
}
|