1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 07:33:16 +02:00

Factor out machines.conf parsing

This allows hydra-queue-runner to use it.
This commit is contained in:
Eelco Dolstra 2017-05-02 13:17:37 +02:00
parent 174b68a2a2
commit ebc9f36a81
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 108 additions and 87 deletions

35
src/libstore/machines.hh Normal file
View file

@ -0,0 +1,35 @@
#pragma once
#include "types.hh"
namespace nix {
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;
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);
};
typedef std::vector<Machine> Machines;
void parseMachines(const std::string & s, Machines & machines);
}