2020-10-08 15:36:51 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2020-10-08 15:36:51 +00:00
|
|
|
|
2023-01-30 15:12:44 +00:00
|
|
|
#include <variant>
|
|
|
|
|
|
|
|
#include "hash.hh"
|
2020-10-08 15:36:51 +00:00
|
|
|
#include "path.hh"
|
2023-07-19 18:52:35 +00:00
|
|
|
#include "derived-path.hh"
|
2020-12-08 20:07:52 +00:00
|
|
|
#include <nlohmann/json_fwd.hpp>
|
2021-02-04 14:11:05 +00:00
|
|
|
#include "comparator.hh"
|
2021-03-08 10:56:33 +00:00
|
|
|
#include "crypto.hh"
|
2020-12-14 16:24:30 +00:00
|
|
|
|
2020-10-08 15:36:51 +00:00
|
|
|
namespace nix {
|
|
|
|
|
2023-01-19 13:49:44 +00:00
|
|
|
class Store;
|
2023-01-31 11:51:12 +00:00
|
|
|
struct OutputsSpec;
|
2023-01-19 13:49:44 +00:00
|
|
|
|
2023-04-14 22:18:32 +00:00
|
|
|
/**
|
|
|
|
* A general `Realisation` key.
|
|
|
|
*
|
|
|
|
* This is similar to a `DerivedPath::Opaque`, but the derivation is
|
|
|
|
* identified by its "hash modulo" instead of by its store path.
|
|
|
|
*/
|
2020-10-08 15:36:51 +00:00
|
|
|
struct DrvOutput {
|
2023-04-14 22:18:32 +00:00
|
|
|
/**
|
|
|
|
* The hash modulo of the derivation.
|
|
|
|
*
|
|
|
|
* Computed from the derivation itself for most types of
|
|
|
|
* derivations, but computed from the (fixed) content address of the
|
|
|
|
* output for fixed-output derivations.
|
|
|
|
*/
|
2020-12-09 15:56:56 +00:00
|
|
|
Hash drvHash;
|
2023-04-14 22:18:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the output.
|
|
|
|
*/
|
2020-10-08 15:36:51 +00:00
|
|
|
std::string outputName;
|
|
|
|
|
|
|
|
std::string to_string() const;
|
|
|
|
|
2020-12-09 15:56:56 +00:00
|
|
|
std::string strHash() const
|
|
|
|
{ return drvHash.to_string(Base16, true); }
|
|
|
|
|
2020-10-08 15:36:51 +00:00
|
|
|
static DrvOutput parse(const std::string &);
|
|
|
|
|
2020-12-14 16:24:30 +00:00
|
|
|
GENERATE_CMP(DrvOutput, me->drvHash, me->outputName);
|
2020-10-08 15:36:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Realisation {
|
|
|
|
DrvOutput id;
|
|
|
|
StorePath outPath;
|
|
|
|
|
2021-03-08 10:56:33 +00:00
|
|
|
StringSet signatures;
|
|
|
|
|
2021-05-26 14:09:02 +00:00
|
|
|
/**
|
|
|
|
* The realisations that are required for the current one to be valid.
|
|
|
|
*
|
|
|
|
* When importing this realisation, the store will first check that all its
|
|
|
|
* dependencies exist, and map to the correct output path
|
|
|
|
*/
|
|
|
|
std::map<DrvOutput, StorePath> dependentRealisations;
|
2020-11-10 13:49:25 +00:00
|
|
|
|
2020-12-08 20:07:52 +00:00
|
|
|
nlohmann::json toJSON() const;
|
|
|
|
static Realisation fromJSON(const nlohmann::json& json, const std::string& whence);
|
2020-12-14 16:24:30 +00:00
|
|
|
|
2021-03-08 10:56:33 +00:00
|
|
|
std::string fingerprint() const;
|
|
|
|
void sign(const SecretKey &);
|
|
|
|
bool checkSignature(const PublicKeys & publicKeys, const std::string & sig) const;
|
|
|
|
size_t checkSignatures(const PublicKeys & publicKeys) const;
|
|
|
|
|
2021-06-21 14:37:45 +00:00
|
|
|
static std::set<Realisation> closure(Store &, const std::set<Realisation> &);
|
2021-07-19 13:43:08 +00:00
|
|
|
static void closure(Store &, const std::set<Realisation> &, std::set<Realisation> & res);
|
2021-05-19 08:26:58 +00:00
|
|
|
|
2021-05-19 14:19:46 +00:00
|
|
|
bool isCompatibleWith(const Realisation & other) const;
|
|
|
|
|
2020-12-14 16:24:30 +00:00
|
|
|
StorePath getPath() const { return outPath; }
|
|
|
|
|
|
|
|
GENERATE_CMP(Realisation, me->id, me->outPath);
|
|
|
|
};
|
|
|
|
|
2023-04-14 22:18:32 +00:00
|
|
|
/**
|
|
|
|
* Collection type for a single derivation's outputs' `Realisation`s.
|
|
|
|
*
|
|
|
|
* Since these are the outputs of a single derivation, we know the
|
|
|
|
* output names are unique so we can use them as the map key.
|
|
|
|
*/
|
|
|
|
typedef std::map<std::string, Realisation> SingleDrvOutputs;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Collection type for multiple derivations' outputs' `Realisation`s.
|
|
|
|
*
|
|
|
|
* `DrvOutput` is used because in general the derivations are not all
|
|
|
|
* the same, so we need to identify firstly which derivation, and
|
|
|
|
* secondly which output of that derivation.
|
|
|
|
*/
|
2021-01-26 09:48:41 +00:00
|
|
|
typedef std::map<DrvOutput, Realisation> DrvOutputs;
|
|
|
|
|
2023-01-31 11:51:12 +00:00
|
|
|
/**
|
|
|
|
* Filter a SingleDrvOutputs to include only specific output names
|
|
|
|
*
|
|
|
|
* Moves the `outputs` input.
|
|
|
|
*/
|
|
|
|
SingleDrvOutputs filterDrvOutputs(const OutputsSpec&, SingleDrvOutputs&&);
|
|
|
|
|
|
|
|
|
2020-12-14 16:24:30 +00:00
|
|
|
struct OpaquePath {
|
|
|
|
StorePath path;
|
|
|
|
|
|
|
|
StorePath getPath() const { return path; }
|
|
|
|
|
|
|
|
GENERATE_CMP(OpaquePath, me->path);
|
2020-10-08 15:36:51 +00:00
|
|
|
};
|
|
|
|
|
2020-12-14 16:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A store path with all the history of how it went into the store
|
|
|
|
*/
|
|
|
|
struct RealisedPath {
|
|
|
|
/*
|
|
|
|
* A path is either the result of the realisation of a derivation or
|
|
|
|
* an opaque blob that has been directly added to the store
|
|
|
|
*/
|
|
|
|
using Raw = std::variant<Realisation, OpaquePath>;
|
|
|
|
Raw raw;
|
|
|
|
|
|
|
|
using Set = std::set<RealisedPath>;
|
|
|
|
|
|
|
|
RealisedPath(StorePath path) : raw(OpaquePath{path}) {}
|
|
|
|
RealisedPath(Realisation r) : raw(r) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the raw store path associated to this
|
|
|
|
*/
|
|
|
|
StorePath path() const;
|
|
|
|
|
|
|
|
void closure(Store& store, Set& ret) const;
|
|
|
|
static void closure(Store& store, const Set& startPaths, Set& ret);
|
|
|
|
Set closure(Store& store) const;
|
|
|
|
|
|
|
|
GENERATE_CMP(RealisedPath, me->raw);
|
|
|
|
};
|
2020-10-08 15:36:51 +00:00
|
|
|
|
2023-01-02 16:35:48 +00:00
|
|
|
class MissingRealisation : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MissingRealisation(DrvOutput & outputId)
|
2023-07-19 18:52:35 +00:00
|
|
|
: MissingRealisation(outputId.outputName, outputId.strHash())
|
|
|
|
{}
|
|
|
|
MissingRealisation(std::string_view drv, std::string outputName)
|
|
|
|
: Error( "cannot operate on output '%s' of the "
|
2023-01-02 16:35:48 +00:00
|
|
|
"unbuilt derivation '%s'",
|
2023-07-19 18:52:35 +00:00
|
|
|
outputName,
|
|
|
|
drv)
|
2023-01-02 16:35:48 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2020-10-08 15:36:51 +00:00
|
|
|
}
|