mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
4720853129
This seems more correct. It also means one can specify the features a store should support with --store and remote-store=..., which is useful. I use this to clean up the build remotes test.
43 lines
1 KiB
C++
43 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
class Store;
|
|
|
|
struct Machine {
|
|
|
|
const string storeUri;
|
|
const std::vector<string> systemTypes;
|
|
const string sshKey;
|
|
const unsigned int maxJobs;
|
|
const unsigned int speedFactor;
|
|
const std::set<string> supportedFeatures;
|
|
const std::set<string> mandatoryFeatures;
|
|
const std::string sshPublicHostKey;
|
|
bool enabled = true;
|
|
|
|
bool allSupported(const std::set<string> & features) const;
|
|
|
|
bool mandatoryMet(const std::set<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();
|
|
|
|
}
|