nix-super/src/nix/installables.hh

126 lines
3.1 KiB
C++
Raw Normal View History

2019-10-14 15:40:16 +03:00
#pragma once
#include "util.hh"
#include "path.hh"
#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;
struct SourceExprCommand;
2019-10-14 15:40:16 +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
{
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
{
std::vector<StorePathWithOutputs> context;
2019-10-14 15:40:16 +03:00
Path program;
// FIXME: add args, sandbox settings, metadata, ...
};
struct Installable
{
virtual ~Installable() { }
virtual std::string what() = 0;
virtual Buildables toBuildables() = 0;
2019-10-14 15:40:16 +03:00
Buildable toBuildable();
App toApp(EvalState & state);
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. */
virtual std::optional<StorePath> getStorePath()
2019-10-14 15:40:16 +03:00
{
return {};
}
virtual std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>>
getCursors(EvalState & state, bool useEvalCache);
std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>
getCursor(EvalState & state, bool useEvalCache);
virtual FlakeRef nixpkgsFlakeRef() const
{
return std::move(FlakeRef::fromAttrs({{"type","indirect"}, {"id", "nixpkgs"}}));
}
2019-10-14 15:40:16 +03:00
};
struct InstallableValue : Installable
{
ref<EvalState> state;
2019-10-14 15:40:16 +03:00
InstallableValue(ref<EvalState> state) : state(state) {}
2019-10-14 15:40:16 +03:00
2020-04-20 14:13:52 +03:00
struct DerivationInfo
{
StorePath drvPath;
StorePath outPath;
std::string outputName;
};
virtual std::vector<DerivationInfo> toDerivations() = 0;
2019-10-14 15:40:16 +03:00
Buildables toBuildables() override;
};
struct InstallableFlake : InstallableValue
{
FlakeRef flakeRef;
Strings attrPaths;
Strings prefixes;
const flake::LockFlags & lockFlags;
mutable std::shared_ptr<flake::LockedFlake> _lockedFlake;
2019-10-14 15:40:16 +03:00
InstallableFlake(ref<EvalState> state, FlakeRef && flakeRef,
Strings && attrPaths, Strings && prefixes, const flake::LockFlags & lockFlags)
: InstallableValue(state), flakeRef(flakeRef), attrPaths(attrPaths),
prefixes(prefixes), lockFlags(lockFlags)
2019-10-14 15:40:16 +03:00
{ }
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();
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
std::pair<Value *, Pos> toValue(EvalState & state) override;
std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>>
getCursors(EvalState & state, bool useEvalCache) override;
std::shared_ptr<flake::LockedFlake> getLockedFlake() const;
FlakeRef nixpkgsFlakeRef() const override;
2019-10-14 15:40:16 +03:00
};
2020-04-20 14:13:52 +03:00
ref<eval_cache::EvalCache> openEvalCache(
EvalState & state,
std::shared_ptr<flake::LockedFlake> lockedFlake,
2020-04-20 14:13:52 +03:00
bool useEvalCache);
2019-10-14 15:40:16 +03:00
}