mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 09:49:36 +01:00
* It is tough to contribute to a project that doesn't use a formatter, * It is extra hard to contribute to a project which has configured the formatter, but ignores it for some files * Code formatting makes it harder to hide obscure / weird bugs by accident or on purpose, Let's rip the bandaid off? Note that PRs currently in flight should be able to be merged relatively easily by applying `clang-format` to their tip prior to merge.
50 lines
1.9 KiB
C++
50 lines
1.9 KiB
C++
#include "nix/store/downstream-placeholder.hh"
|
|
#include "nix/store/derivations.hh"
|
|
|
|
namespace nix {
|
|
|
|
std::string DownstreamPlaceholder::render() const
|
|
{
|
|
return "/" + hash.to_string(HashFormat::Nix32, false);
|
|
}
|
|
|
|
DownstreamPlaceholder DownstreamPlaceholder::unknownCaOutput(
|
|
const StorePath & drvPath, OutputNameView outputName, const ExperimentalFeatureSettings & xpSettings)
|
|
{
|
|
xpSettings.require(Xp::CaDerivations);
|
|
auto drvNameWithExtension = drvPath.name();
|
|
auto drvName = drvNameWithExtension.substr(0, drvNameWithExtension.size() - 4);
|
|
auto clearText =
|
|
"nix-upstream-output:" + std::string{drvPath.hashPart()} + ":" + outputPathName(drvName, outputName);
|
|
return DownstreamPlaceholder{hashString(HashAlgorithm::SHA256, clearText)};
|
|
}
|
|
|
|
DownstreamPlaceholder DownstreamPlaceholder::unknownDerivation(
|
|
const DownstreamPlaceholder & placeholder,
|
|
OutputNameView outputName,
|
|
const ExperimentalFeatureSettings & xpSettings)
|
|
{
|
|
xpSettings.require(Xp::DynamicDerivations);
|
|
auto compressed = compressHash(placeholder.hash, 20);
|
|
auto clearText =
|
|
"nix-computed-output:" + compressed.to_string(HashFormat::Nix32, false) + ":" + std::string{outputName};
|
|
return DownstreamPlaceholder{hashString(HashAlgorithm::SHA256, clearText)};
|
|
}
|
|
|
|
DownstreamPlaceholder DownstreamPlaceholder::fromSingleDerivedPathBuilt(
|
|
const SingleDerivedPath::Built & b, const ExperimentalFeatureSettings & xpSettings)
|
|
{
|
|
return std::visit(
|
|
overloaded{
|
|
[&](const SingleDerivedPath::Opaque & o) {
|
|
return DownstreamPlaceholder::unknownCaOutput(o.path, b.output, xpSettings);
|
|
},
|
|
[&](const SingleDerivedPath::Built & b2) {
|
|
return DownstreamPlaceholder::unknownDerivation(
|
|
DownstreamPlaceholder::fromSingleDerivedPathBuilt(b2, xpSettings), b.output, xpSettings);
|
|
},
|
|
},
|
|
b.drvPath->raw());
|
|
}
|
|
|
|
} // namespace nix
|