2019-10-14 15:40:16 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "util.hh"
|
2019-12-11 15:53:30 +02:00
|
|
|
#include "path.hh"
|
2023-01-10 18:27:19 +02:00
|
|
|
#include "outputs-spec.hh"
|
2021-04-05 17:33:28 +03:00
|
|
|
#include "derived-path.hh"
|
2020-02-07 15:22:01 +02:00
|
|
|
#include "eval.hh"
|
2022-03-02 14:54:08 +02:00
|
|
|
#include "store-api.hh"
|
2020-04-20 14:13:52 +03:00
|
|
|
#include "flake/flake.hh"
|
2022-11-21 11:49:01 +02:00
|
|
|
#include "build-result.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 App
|
|
|
|
{
|
2023-01-10 18:27:19 +02:00
|
|
|
std::vector<DerivedPath> context;
|
2019-10-14 15:40:16 +03:00
|
|
|
Path program;
|
|
|
|
// FIXME: add args, sandbox settings, metadata, ...
|
|
|
|
};
|
|
|
|
|
2021-05-17 18:49:20 +03:00
|
|
|
struct UnresolvedApp
|
|
|
|
{
|
|
|
|
App unresolved;
|
2021-07-16 17:04:47 +03:00
|
|
|
App resolve(ref<Store> evalStore, ref<Store> store);
|
2021-05-17 18:49:20 +03:00
|
|
|
};
|
|
|
|
|
2022-03-02 14:54:08 +02:00
|
|
|
enum class Realise {
|
|
|
|
/* Build the derivation. Postcondition: the
|
|
|
|
derivation outputs exist. */
|
|
|
|
Outputs,
|
|
|
|
/* Don't build the derivation. Postcondition: the store derivation
|
|
|
|
exists. */
|
|
|
|
Derivation,
|
|
|
|
/* Evaluate in dry-run mode. Postcondition: nothing. */
|
|
|
|
// FIXME: currently unused, but could be revived if we can
|
|
|
|
// evaluate derivations in-memory.
|
|
|
|
Nothing
|
|
|
|
};
|
|
|
|
|
|
|
|
/* How to handle derivations in commands that operate on store paths. */
|
|
|
|
enum class OperateOn {
|
|
|
|
/* Operate on the output path. */
|
|
|
|
Output,
|
|
|
|
/* Operate on the .drv path. */
|
|
|
|
Derivation
|
|
|
|
};
|
|
|
|
|
2023-01-10 15:52:49 +02:00
|
|
|
struct ExtraPathInfo
|
2022-12-15 23:09:32 +02:00
|
|
|
{
|
|
|
|
std::optional<NixInt> priority;
|
|
|
|
std::optional<FlakeRef> originalRef;
|
|
|
|
std::optional<FlakeRef> resolvedRef;
|
|
|
|
std::optional<std::string> attrPath;
|
|
|
|
// FIXME: merge with DerivedPath's 'outputs' field?
|
2023-01-11 09:00:44 +02:00
|
|
|
std::optional<ExtendedOutputsSpec> extendedOutputsSpec;
|
2022-12-15 23:09:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* A derived path with any additional info that commands might
|
|
|
|
need from the derivation. */
|
|
|
|
struct DerivedPathWithInfo
|
|
|
|
{
|
|
|
|
DerivedPath path;
|
2023-01-10 15:52:49 +02:00
|
|
|
ExtraPathInfo info;
|
2022-12-15 23:09:32 +02:00
|
|
|
};
|
|
|
|
|
2022-11-21 11:49:01 +02:00
|
|
|
struct BuiltPathWithResult
|
|
|
|
{
|
|
|
|
BuiltPath path;
|
2023-01-10 15:52:49 +02:00
|
|
|
ExtraPathInfo info;
|
2022-11-21 11:49:01 +02:00
|
|
|
std::optional<BuildResult> result;
|
|
|
|
};
|
|
|
|
|
2022-12-15 23:09:32 +02:00
|
|
|
typedef std::vector<DerivedPathWithInfo> DerivedPathsWithInfo;
|
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
struct Installable
|
|
|
|
{
|
|
|
|
virtual ~Installable() { }
|
|
|
|
|
2022-01-18 18:28:18 +02:00
|
|
|
virtual std::string what() const = 0;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2022-12-15 23:09:32 +02:00
|
|
|
virtual DerivedPathsWithInfo toDerivedPaths() = 0;
|
2022-01-18 18:28:18 +02:00
|
|
|
|
2022-12-15 23:09:32 +02:00
|
|
|
DerivedPathWithInfo toDerivedPath();
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2021-05-17 18:49:20 +03:00
|
|
|
UnresolvedApp toApp(EvalState & state);
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
virtual std::pair<Value *, PosIdx> 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
|
|
|
|
2023-01-30 17:56:27 +02:00
|
|
|
/* Get a cursor to each value this Installable could refer to. However
|
|
|
|
if none exists, throw exception instead of returning empty vector. */
|
2022-04-14 15:04:19 +03:00
|
|
|
virtual std::vector<ref<eval_cache::AttrCursor>>
|
2020-08-07 15:13:24 +03:00
|
|
|
getCursors(EvalState & state);
|
2020-06-04 21:02:50 +03:00
|
|
|
|
2023-01-30 17:56:27 +02:00
|
|
|
/* Get the first and most preferred cursor this Installable could refer
|
|
|
|
to, or throw an exception if none exists. */
|
2022-04-14 15:04:19 +03:00
|
|
|
virtual ref<eval_cache::AttrCursor>
|
2020-08-07 15:13:24 +03:00
|
|
|
getCursor(EvalState & state);
|
2020-05-05 19:49:39 +03:00
|
|
|
|
|
|
|
virtual FlakeRef nixpkgsFlakeRef() const
|
|
|
|
{
|
2020-09-08 15:50:23 +03:00
|
|
|
return FlakeRef::fromAttrs({{"type","indirect"}, {"id", "nixpkgs"}});
|
2020-05-05 19:49:39 +03:00
|
|
|
}
|
2022-03-02 14:54:08 +02:00
|
|
|
|
2022-11-21 11:49:01 +02:00
|
|
|
static std::vector<BuiltPathWithResult> build(
|
2022-03-02 14:54:08 +02:00
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
BuildMode bMode = bmNormal);
|
|
|
|
|
2022-11-21 11:49:01 +02:00
|
|
|
static std::vector<std::pair<std::shared_ptr<Installable>, BuiltPathWithResult>> build2(
|
2022-03-28 15:21:35 +03:00
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
BuildMode bMode = bmNormal);
|
|
|
|
|
2022-03-02 14:54:08 +02:00
|
|
|
static std::set<StorePath> toStorePaths(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
OperateOn operateOn,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables);
|
|
|
|
|
|
|
|
static StorePath toStorePath(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
OperateOn operateOn,
|
|
|
|
std::shared_ptr<Installable> installable);
|
|
|
|
|
|
|
|
static std::set<StorePath> toDerivations(
|
|
|
|
ref<Store> store,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
bool useDeriver = false);
|
|
|
|
|
|
|
|
static BuiltPaths toBuiltPaths(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
OperateOn operateOn,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables);
|
2019-10-14 15:40:16 +03:00
|
|
|
};
|
2022-05-20 08:48:24 +03:00
|
|
|
|
2022-03-11 20:26:08 +02:00
|
|
|
typedef std::vector<std::shared_ptr<Installable>> Installables;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
|
|
|
struct InstallableValue : Installable
|
|
|
|
{
|
2020-05-09 18:35:33 +03:00
|
|
|
ref<EvalState> state;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2020-05-09 18:35:33 +03:00
|
|
|
InstallableValue(ref<EvalState> state) : state(state) {}
|
2019-10-14 15:40:16 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InstallableFlake : InstallableValue
|
|
|
|
{
|
|
|
|
FlakeRef flakeRef;
|
|
|
|
Strings attrPaths;
|
|
|
|
Strings prefixes;
|
2023-01-11 09:00:44 +02:00
|
|
|
ExtendedOutputsSpec extendedOutputsSpec;
|
2020-05-09 18:35:33 +03:00
|
|
|
const flake::LockFlags & lockFlags;
|
2020-05-13 08:45:45 +03:00
|
|
|
mutable std::shared_ptr<flake::LockedFlake> _lockedFlake;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2021-02-17 18:32:10 +02:00
|
|
|
InstallableFlake(
|
|
|
|
SourceExprCommand * cmd,
|
|
|
|
ref<EvalState> state,
|
|
|
|
FlakeRef && flakeRef,
|
2022-02-14 21:39:44 +02:00
|
|
|
std::string_view fragment,
|
2023-01-11 09:00:44 +02:00
|
|
|
ExtendedOutputsSpec extendedOutputsSpec,
|
2022-02-14 21:39:44 +02:00
|
|
|
Strings attrPaths,
|
|
|
|
Strings prefixes,
|
2021-02-17 18:32:10 +02:00
|
|
|
const flake::LockFlags & lockFlags);
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2022-01-18 18:28:18 +02: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();
|
|
|
|
|
2020-01-22 21:59:59 +02:00
|
|
|
Value * getFlakeOutputs(EvalState & state, const flake::LockedFlake & lockedFlake);
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2022-12-15 23:09:32 +02:00
|
|
|
DerivedPathsWithInfo toDerivedPaths() override;
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
std::pair<Value *, PosIdx> toValue(EvalState & state) override;
|
2020-04-20 16:27:09 +03:00
|
|
|
|
2023-01-30 17:56:27 +02:00
|
|
|
/* Get a cursor to every attrpath in getActualAttrPaths()
|
|
|
|
that exists. However if none exists, throw an exception. */
|
2022-04-14 15:04:19 +03:00
|
|
|
std::vector<ref<eval_cache::AttrCursor>>
|
2020-08-07 15:13:24 +03:00
|
|
|
getCursors(EvalState & state) override;
|
2020-05-05 19:49:39 +03:00
|
|
|
|
2020-05-13 08:45:45 +03:00
|
|
|
std::shared_ptr<flake::LockedFlake> getLockedFlake() const;
|
|
|
|
|
2020-05-05 19:49:39 +03:00
|
|
|
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
|
|
|
}
|