mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-16 03:06:17 +02:00
5e3986f59c
To avoid dealing with an optional `drvPath` (because we might not know it yet) everywhere, make an `CreateDerivationAndRealiseGoal`. This goal just builds/substitutes the derivation file, and then kicks of a build for that obtained derivation; in other words it does the chaining of goals when the drv file is missing (as can already be the case) or computed (new case). This also means the `getDerivation` state can be removed from `DerivationGoal`, which makes the `BasicDerivation` / in memory case and `Derivation` / drv file file case closer together. The map type is factored out for clarity, and because we will soon hvae a second use for it (`Derivation` itself). Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
#pragma once
|
|
///@file
|
|
|
|
#include "store-api.hh"
|
|
#include "goal.hh"
|
|
#include "realisation.hh"
|
|
#include <thread>
|
|
#include <future>
|
|
|
|
namespace nix {
|
|
|
|
class Worker;
|
|
|
|
/**
|
|
* Substitution of a derivation output.
|
|
* This is done in three steps:
|
|
* 1. Fetch the output info from a substituter
|
|
* 2. Substitute the corresponding output path
|
|
* 3. Register the output info
|
|
*/
|
|
class DrvOutputSubstitutionGoal : public Goal {
|
|
|
|
/**
|
|
* The drv output we're trying to substitute
|
|
*/
|
|
DrvOutput id;
|
|
|
|
/**
|
|
* The realisation corresponding to the given output id.
|
|
* Will be filled once we can get it.
|
|
*/
|
|
std::shared_ptr<const Realisation> outputInfo;
|
|
|
|
/**
|
|
* The remaining substituters.
|
|
*/
|
|
std::list<ref<Store>> subs;
|
|
|
|
/**
|
|
* The current substituter.
|
|
*/
|
|
std::shared_ptr<Store> sub;
|
|
|
|
struct DownloadState
|
|
{
|
|
Pipe outPipe;
|
|
std::promise<std::shared_ptr<const Realisation>> promise;
|
|
};
|
|
|
|
std::shared_ptr<DownloadState> downloadState;
|
|
|
|
/**
|
|
* Whether a substituter failed.
|
|
*/
|
|
bool substituterFailed = false;
|
|
|
|
public:
|
|
DrvOutputSubstitutionGoal(const DrvOutput& id, Worker & worker, RepairFlag repair = NoRepair, std::optional<ContentAddress> ca = std::nullopt);
|
|
|
|
typedef void (DrvOutputSubstitutionGoal::*GoalState)();
|
|
GoalState state;
|
|
|
|
void init();
|
|
void tryNext();
|
|
void realisationFetched();
|
|
void outPathValid();
|
|
void finished();
|
|
|
|
void timedOut(Error && ex) override { abort(); };
|
|
|
|
std::string key() override;
|
|
|
|
void work() override;
|
|
void handleEOF(int fd) override;
|
|
|
|
JobCategory jobCategory() const override {
|
|
return JobCategory::Substitution;
|
|
};
|
|
};
|
|
|
|
}
|