nix-super/src/libcmd/installables.hh

135 lines
3.2 KiB
C++
Raw Normal View History

2019-10-14 15:40:16 +03:00
#pragma once
#include "util.hh"
#include "path.hh"
#include "path-with-outputs.hh"
#include "derived-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 App
{
std::vector<StorePathWithOutputs> context;
2019-10-14 15:40:16 +03:00
Path program;
// FIXME: add args, sandbox settings, metadata, ...
};
struct UnresolvedApp
{
App unresolved;
App resolve(ref<Store> evalStore, ref<Store> store);
};
2019-10-14 15:40:16 +03:00
struct Installable
{
virtual ~Installable() { }
virtual std::string what() const = 0;
2019-10-14 15:40:16 +03:00
virtual DerivedPaths toDerivedPaths() = 0;
2019-10-14 15:40:16 +03:00
virtual StorePathSet toDrvPaths(ref<Store> store)
{
throw Error("'%s' cannot be converted to a derivation path", what());
}
DerivedPath toDerivedPath();
2019-10-14 15:40:16 +03:00
UnresolvedApp toApp(EvalState & state);
2019-10-14 15:40:16 +03: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. */
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>>
2020-08-07 15:13:24 +03:00
getCursors(EvalState & state);
std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>
2020-08-07 15:13:24 +03:00
getCursor(EvalState & state);
virtual FlakeRef nixpkgsFlakeRef() const
{
return 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;
2020-08-07 22:09:26 +03:00
std::optional<StorePath> outPath;
2020-04-20 14:13:52 +03:00
std::string outputName;
};
virtual std::vector<DerivationInfo> toDerivations() = 0;
2019-10-14 15:40:16 +03:00
DerivedPaths toDerivedPaths() override;
StorePathSet toDrvPaths(ref<Store> store) override;
2019-10-14 15:40:16 +03:00
};
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(
SourceExprCommand * cmd,
ref<EvalState> state,
FlakeRef && flakeRef,
std::string_view fragment,
Strings attrPaths,
Strings prefixes,
const flake::LockFlags & lockFlags);
2019-10-14 15:40:16 +03:00
std::string what() const 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>>
2020-08-07 15:13:24 +03:00
getCursors(EvalState & state) 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,
2020-08-07 15:13:24 +03:00
std::shared_ptr<flake::LockedFlake> lockedFlake);
2020-04-20 14:13:52 +03:00
2019-10-14 15:40:16 +03:00
}