mirror of
https://github.com/NixOS/nix.git
synced 2025-11-18 00:12:43 +01:00
The existing header is a bit too big. Now the following use-cases are separated, and get their own headers: - Using or implementing an arbitrary store: remaining `store-api.hh` This is closer to just being about the `Store` (and `StoreConfig`) classes, as one would expect. - Opening a store from a textual description: `store-open.hh` Opening an aribtrary store implementation like this requires some sort of store registration mechanism to exists, but the caller doesn't need to know how it works. This just exposes the functions which use such a mechanism, without exposing the mechanism itself - Registering a store implementation: `store-registration.hh` This requires understanding how the mechanism actually works, and the mechanism in question involves templated machinery in headers we rather not expose to things that don't need it, as it would slow down compilation for no reason.
217 lines
7 KiB
C++
217 lines
7 KiB
C++
#include "nix/store/machines.hh"
|
|
#include "nix/store/globals.hh"
|
|
#include "nix/store/store-open.hh"
|
|
|
|
#include <algorithm>
|
|
|
|
namespace nix {
|
|
|
|
Machine::Machine(
|
|
const std::string & storeUri,
|
|
decltype(systemTypes) systemTypes,
|
|
decltype(sshKey) sshKey,
|
|
decltype(maxJobs) maxJobs,
|
|
decltype(speedFactor) speedFactor,
|
|
decltype(supportedFeatures) supportedFeatures,
|
|
decltype(mandatoryFeatures) mandatoryFeatures,
|
|
decltype(sshPublicHostKey) sshPublicHostKey) :
|
|
storeUri(StoreReference::parse(
|
|
// Backwards compatibility: if the URI is schemeless, is not a path,
|
|
// and is not one of the special store connection words, prepend
|
|
// ssh://.
|
|
storeUri.find("://") != std::string::npos
|
|
|| storeUri.find("/") != std::string::npos
|
|
|| storeUri == "auto"
|
|
|| storeUri == "daemon"
|
|
|| storeUri == "local"
|
|
|| hasPrefix(storeUri, "auto?")
|
|
|| hasPrefix(storeUri, "daemon?")
|
|
|| hasPrefix(storeUri, "local?")
|
|
|| hasPrefix(storeUri, "?")
|
|
? storeUri
|
|
: "ssh://" + storeUri)),
|
|
systemTypes(systemTypes),
|
|
sshKey(sshKey),
|
|
maxJobs(maxJobs),
|
|
speedFactor(speedFactor == 0.0f ? 1.0f : speedFactor),
|
|
supportedFeatures(supportedFeatures),
|
|
mandatoryFeatures(mandatoryFeatures),
|
|
sshPublicHostKey(sshPublicHostKey)
|
|
{
|
|
if (speedFactor < 0.0)
|
|
throw UsageError("speed factor must be >= 0");
|
|
}
|
|
|
|
bool Machine::systemSupported(const std::string & system) const
|
|
{
|
|
return system == "builtin" || (systemTypes.count(system) > 0);
|
|
}
|
|
|
|
bool Machine::allSupported(const StringSet & features) const
|
|
{
|
|
return std::all_of(features.begin(), features.end(),
|
|
[&](const std::string & feature) {
|
|
return supportedFeatures.count(feature) ||
|
|
mandatoryFeatures.count(feature);
|
|
});
|
|
}
|
|
|
|
bool Machine::mandatoryMet(const StringSet & features) const
|
|
{
|
|
return std::all_of(mandatoryFeatures.begin(), mandatoryFeatures.end(),
|
|
[&](const std::string & feature) {
|
|
return features.count(feature);
|
|
});
|
|
}
|
|
|
|
StoreReference Machine::completeStoreReference() const
|
|
{
|
|
auto storeUri = this->storeUri;
|
|
|
|
auto * generic = std::get_if<StoreReference::Specified>(&storeUri.variant);
|
|
|
|
if (generic && generic->scheme == "ssh") {
|
|
storeUri.params["max-connections"] = "1";
|
|
storeUri.params["log-fd"] = "4";
|
|
}
|
|
|
|
if (generic && (generic->scheme == "ssh" || generic->scheme == "ssh-ng")) {
|
|
if (sshKey != "")
|
|
storeUri.params["ssh-key"] = sshKey;
|
|
if (sshPublicHostKey != "")
|
|
storeUri.params["base64-ssh-public-host-key"] = sshPublicHostKey;
|
|
}
|
|
|
|
{
|
|
auto & fs = storeUri.params["system-features"];
|
|
auto append = [&](auto feats) {
|
|
for (auto & f : feats) {
|
|
if (fs.size() > 0) fs += ' ';
|
|
fs += f;
|
|
}
|
|
};
|
|
append(supportedFeatures);
|
|
append(mandatoryFeatures);
|
|
}
|
|
|
|
return storeUri;
|
|
}
|
|
|
|
ref<Store> Machine::openStore() const
|
|
{
|
|
return nix::openStore(completeStoreReference());
|
|
}
|
|
|
|
static std::vector<std::string> expandBuilderLines(const std::string & builders)
|
|
{
|
|
std::vector<std::string> result;
|
|
for (auto line : tokenizeString<std::vector<std::string>>(builders, "\n")) {
|
|
line.erase(std::find(line.begin(), line.end(), '#'), line.end());
|
|
for (auto entry : tokenizeString<std::vector<std::string>>(line, ";")) {
|
|
entry = trim(entry);
|
|
|
|
if (entry.empty()) {
|
|
// skip blank entries
|
|
} else if (entry[0] == '@') {
|
|
const std::string path = trim(std::string_view{entry}.substr(1));
|
|
std::string text;
|
|
try {
|
|
text = readFile(path);
|
|
} catch (const SysError & e) {
|
|
if (e.errNo != ENOENT)
|
|
throw;
|
|
debug("cannot find machines file '%s'", path);
|
|
continue;
|
|
}
|
|
|
|
const auto entrys = expandBuilderLines(text);
|
|
result.insert(end(result), begin(entrys), end(entrys));
|
|
} else {
|
|
result.emplace_back(entry);
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
static Machine parseBuilderLine(const StringSet & defaultSystems, const std::string & line)
|
|
{
|
|
const auto tokens = tokenizeString<std::vector<std::string>>(line);
|
|
|
|
auto isSet = [&](size_t fieldIndex) {
|
|
return tokens.size() > fieldIndex && tokens[fieldIndex] != "" && tokens[fieldIndex] != "-";
|
|
};
|
|
|
|
auto parseUnsignedIntField = [&](size_t fieldIndex) {
|
|
const auto result = string2Int<unsigned int>(tokens[fieldIndex]);
|
|
if (!result) {
|
|
throw FormatError("bad machine specification: failed to convert column #%lu in a row: '%s' to 'unsigned int'", fieldIndex, line);
|
|
}
|
|
return result.value();
|
|
};
|
|
|
|
auto parseFloatField = [&](size_t fieldIndex) {
|
|
const auto result = string2Float<float>(tokens[fieldIndex]);
|
|
if (!result) {
|
|
throw FormatError("bad machine specification: failed to convert column #%lu in a row: '%s' to 'float'", fieldIndex, line);
|
|
}
|
|
return result.value();
|
|
};
|
|
|
|
auto ensureBase64 = [&](size_t fieldIndex) {
|
|
const auto & str = tokens[fieldIndex];
|
|
try {
|
|
base64Decode(str);
|
|
} catch (FormatError & e) {
|
|
e.addTrace({}, "while parsing machine specification at a column #%lu in a row: '%s'", fieldIndex, line);
|
|
throw;
|
|
}
|
|
return str;
|
|
};
|
|
|
|
if (!isSet(0))
|
|
throw FormatError("bad machine specification: store URL was not found at the first column of a row: '%s'", line);
|
|
|
|
// TODO use designated initializers, once C++ supports those with
|
|
// custom constructors.
|
|
return {
|
|
// `storeUri`
|
|
tokens[0],
|
|
// `systemTypes`
|
|
isSet(1) ? tokenizeString<StringSet>(tokens[1], ",") : defaultSystems,
|
|
// `sshKey`
|
|
isSet(2) ? tokens[2] : "",
|
|
// `maxJobs`
|
|
isSet(3) ? parseUnsignedIntField(3) : 1U,
|
|
// `speedFactor`
|
|
isSet(4) ? parseFloatField(4) : 1.0f,
|
|
// `supportedFeatures`
|
|
isSet(5) ? tokenizeString<StringSet>(tokens[5], ",") : StringSet{},
|
|
// `mandatoryFeatures`
|
|
isSet(6) ? tokenizeString<StringSet>(tokens[6], ",") : StringSet{},
|
|
// `sshPublicHostKey`
|
|
isSet(7) ? ensureBase64(7) : ""
|
|
};
|
|
}
|
|
|
|
static Machines parseBuilderLines(const StringSet & defaultSystems, const std::vector<std::string> & builders)
|
|
{
|
|
Machines result;
|
|
std::transform(
|
|
builders.begin(), builders.end(), std::back_inserter(result),
|
|
[&](auto && line) { return parseBuilderLine(defaultSystems, line); });
|
|
return result;
|
|
}
|
|
|
|
Machines Machine::parseConfig(const StringSet & defaultSystems, const std::string & s)
|
|
{
|
|
const auto builderLines = expandBuilderLines(s);
|
|
return parseBuilderLines(defaultSystems, builderLines);
|
|
}
|
|
|
|
Machines getMachines()
|
|
{
|
|
return Machine::parseConfig({settings.thisSystem}, settings.builders);
|
|
}
|
|
|
|
}
|