mirror of
https://github.com/NixOS/nix.git
synced 2025-11-29 21:50:58 +01:00
This will facilitate breaking up Nix into multiple packages for each component with Meson.
86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
#pragma once
|
|
///@file
|
|
|
|
#include "worker.hh"
|
|
#include "store-api.hh"
|
|
#include "goal.hh"
|
|
#include "muxable-pipe.hh"
|
|
#include <coroutine>
|
|
#include <future>
|
|
#include <source_location>
|
|
|
|
namespace nix {
|
|
|
|
struct PathSubstitutionGoal : public Goal
|
|
{
|
|
/**
|
|
* The store path that should be realised through a substitute.
|
|
*/
|
|
StorePath storePath;
|
|
|
|
/**
|
|
* Whether to try to repair a valid path.
|
|
*/
|
|
RepairFlag repair;
|
|
|
|
/**
|
|
* Pipe for the substituter's standard output.
|
|
*/
|
|
MuxablePipe outPipe;
|
|
|
|
/**
|
|
* The substituter thread.
|
|
*/
|
|
std::thread thr;
|
|
|
|
std::unique_ptr<MaintainCount<uint64_t>> maintainExpectedSubstitutions,
|
|
maintainRunningSubstitutions, maintainExpectedNar, maintainExpectedDownload;
|
|
|
|
/**
|
|
* Content address for recomputing store path
|
|
*/
|
|
std::optional<ContentAddress> ca;
|
|
|
|
Done done(
|
|
ExitCode result,
|
|
BuildResult::Status status,
|
|
std::optional<std::string> errorMsg = {});
|
|
|
|
public:
|
|
PathSubstitutionGoal(const StorePath & storePath, Worker & worker, RepairFlag repair = NoRepair, std::optional<ContentAddress> ca = std::nullopt);
|
|
~PathSubstitutionGoal();
|
|
|
|
void timedOut(Error && ex) override { unreachable(); };
|
|
|
|
/**
|
|
* We prepend "a$" to the key name to ensure substitution goals
|
|
* happen before derivation goals.
|
|
*/
|
|
std::string key() override
|
|
{
|
|
return "a$" + std::string(storePath.name()) + "$" + worker.store.printStorePath(storePath);
|
|
}
|
|
|
|
/**
|
|
* The states.
|
|
*/
|
|
Co init() override;
|
|
Co gotInfo();
|
|
Co tryToRun(StorePath subPath, nix::ref<Store> sub, std::shared_ptr<const ValidPathInfo> info, bool & substituterFailed);
|
|
Co finished();
|
|
|
|
/**
|
|
* Callback used by the worker to write to the log.
|
|
*/
|
|
void handleChildOutput(Descriptor fd, std::string_view data) override {};
|
|
void handleEOF(Descriptor fd) override;
|
|
|
|
/* Called by destructor, can't be overridden */
|
|
void cleanup() override final;
|
|
|
|
JobCategory jobCategory() const override {
|
|
return JobCategory::Substitution;
|
|
};
|
|
};
|
|
|
|
}
|