#pragma once #include "path.hh" #include "types.hh" #include "hash.hh" #include "content-address.hh" #include #include namespace nix { /* Abstract syntax of derivations. */ struct DerivationOutputInputAddressed { /* Will need to become `std::optional` once input-addressed derivations are allowed to depend on cont-addressed derivations */ StorePath path; }; struct DerivationOutputFixed { FixedOutputHash hash; /* hash used for expected hash computation */ }; struct DerivationOutputFloating { /* information used for expected hash computation */ FileIngestionMethod method; HashType hashType; }; struct DerivationOutput { std::variant< DerivationOutputInputAddressed, DerivationOutputFixed, DerivationOutputFloating > output; std::optional hashAlgoOpt(const Store & store) const; std::optional pathOpt(const Store & store, std::string_view drvName) const; /* DEPRECATED: Remove after CA drvs are fully implemented */ StorePath path(const Store & store, std::string_view drvName) const { auto p = pathOpt(store, drvName); if (!p) throw Error("floating content-addressed derivations are not yet implemented"); return *p; } }; typedef std::map DerivationOutputs; /* For inputs that are sub-derivations, we specify exactly which output IDs we are interested in. */ typedef std::map DerivationInputs; typedef std::map StringPairs; enum struct DerivationType : uint8_t { Regular, CAFixed, }; /* Do the outputs of the derivation have paths calculated from their content, or from the derivation itself? */ bool derivationIsCA(DerivationType); /* Is the content of the outputs fixed a-priori via a hash? Never true for non-CA derivations. */ bool derivationIsFixed(DerivationType); /* Is the derivation impure and needs to access non-deterministic resources, or pure and can be sandboxed? Note that whether or not we actually sandbox the derivation is controlled separately. Never true for non-CA derivations. */ bool derivationIsImpure(DerivationType); struct BasicDerivation { DerivationOutputs outputs; /* keyed on symbolic IDs */ StorePathSet inputSrcs; /* inputs that are sources */ string platform; Path builder; Strings args; StringPairs env; std::string name; BasicDerivation() { } virtual ~BasicDerivation() { }; /* Return the path corresponding to the output identifier `id' in the given derivation. */ const StorePath findOutput(const Store & store, const std::string & id) const; bool isBuiltin() const; /* Return true iff this is a fixed-output derivation. */ DerivationType type() const; /* Return the output paths of a derivation. */ StorePathSet outputPaths(const Store & store) const; /* Return the output names of a derivation. */ StringSet outputNames() const; static std::string_view nameFromPath(const StorePath & storePath); }; struct Derivation : BasicDerivation { DerivationInputs inputDrvs; /* inputs that are sub-derivations */ /* Print a derivation. */ std::string unparse(const Store & store, bool maskOutputs, std::map * actualInputs = nullptr) const; Derivation() { } }; class Store; enum RepairFlag : bool { NoRepair = false, Repair = true }; /* Write a derivation to the Nix store, and return its path. */ StorePath writeDerivation(ref store, const Derivation & drv, std::string_view name, RepairFlag repair = NoRepair); /* Read a derivation from a file. */ Derivation readDerivation(const Store & store, const Path & drvPath, std::string_view name); // FIXME: remove bool isDerivation(const string & fileName); // known CA drv's output hashes, current just for fixed-output derivations // whose output hashes are always known since they are fixed up-front. typedef std::map CaOutputHashes; typedef std::variant< Hash, // regular DRV normalized hash CaOutputHashes > DrvHashModulo; /* Returns hashes with the details of fixed-output subderivations expunged. A fixed-output derivation is a derivation whose outputs have a specified content hash and hash algorithm. (Currently they must have exactly one output (`out'), which is specified using the `outputHash' and `outputHashAlgo' attributes, but the algorithm doesn't assume this.) We don't want changes to such derivations to propagate upwards through the dependency graph, changing output paths everywhere. For instance, if we change the url in a call to the `fetchurl' function, we do not want to rebuild everything depending on it---after all, (the hash of) the file being downloaded is unchanged. So the *output paths* should not change. On the other hand, the *derivation paths* should change to reflect the new dependency graph. For fixed-output derivations, this returns a map from the name of each output to its hash, unique up to the output's contents. For regular derivations, it returns a single hash of the derivation ATerm, after subderivations have been likewise expunged from that derivation. */ DrvHashModulo hashDerivationModulo(Store & store, const Derivation & drv, bool maskOutputs); /* Memoisation of hashDerivationModulo(). */ typedef std::map DrvHashes; extern DrvHashes drvHashes; // FIXME: global, not thread-safe bool wantOutput(const string & output, const std::set & wanted); struct Source; struct Sink; Source & readDerivation(Source & in, const Store & store, BasicDerivation & drv, std::string_view name); void writeDerivation(Sink & out, const Store & store, const BasicDerivation & drv); std::string hashPlaceholder(const std::string & outputName); }