Nix/src/libstore/machines.hh

52 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
///@file
#include "types.hh"
namespace nix {
class Store;
struct Machine {
2022-02-21 16:37:25 +01:00
const std::string storeUri;
const std::set<std::string> systemTypes;
2022-02-21 16:37:25 +01:00
const std::string sshKey;
const unsigned int maxJobs;
const unsigned int speedFactor;
2022-02-21 16:37:25 +01:00
const std::set<std::string> supportedFeatures;
const std::set<std::string> mandatoryFeatures;
const std::string sshPublicHostKey;
bool enabled = true;
2024-01-23 18:50:48 +01:00
/**
* @return Whether `features` is a subset of the union of `supportedFeatures` and
* `mandatoryFeatures`
*/
2022-02-21 16:37:25 +01:00
bool allSupported(const std::set<std::string> & features) const;
2024-01-23 18:50:48 +01:00
/**
* @return @Whether `mandatoryFeatures` is a subset of `features`
*/
2022-02-21 16:37:25 +01:00
bool mandatoryMet(const std::set<std::string> & features) const;
Machine(decltype(storeUri) storeUri,
decltype(systemTypes) systemTypes,
decltype(sshKey) sshKey,
decltype(maxJobs) maxJobs,
decltype(speedFactor) speedFactor,
decltype(supportedFeatures) supportedFeatures,
decltype(mandatoryFeatures) mandatoryFeatures,
decltype(sshPublicHostKey) sshPublicHostKey);
ref<Store> openStore() const;
};
typedef std::vector<Machine> Machines;
void parseMachines(const std::string & s, Machines & machines);
Machines getMachines();
}