2023-01-11 08:51:14 +02:00
|
|
|
#include "util.hh"
|
2023-01-10 18:27:19 +02:00
|
|
|
#include "outputs-spec.hh"
|
|
|
|
#include "nlohmann/json.hpp"
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2023-01-11 08:51:14 +02:00
|
|
|
std::pair<std::string, OutputsSpec> OutputsSpec::parse(std::string s)
|
2023-01-10 18:27:19 +02:00
|
|
|
{
|
|
|
|
static std::regex regex(R"((.*)\^((\*)|([a-z]+(,[a-z]+)*)))");
|
|
|
|
|
|
|
|
std::smatch match;
|
|
|
|
if (!std::regex_match(s, match, regex))
|
|
|
|
return {s, DefaultOutputs()};
|
|
|
|
|
|
|
|
if (match[3].matched)
|
|
|
|
return {match[1], AllOutputs()};
|
|
|
|
|
|
|
|
return {match[1], tokenizeString<OutputNames>(match[4].str(), ",")};
|
|
|
|
}
|
|
|
|
|
2023-01-11 08:51:14 +02:00
|
|
|
std::string OutputsSpec::to_string() const
|
2023-01-10 18:27:19 +02:00
|
|
|
{
|
2023-01-11 08:51:14 +02:00
|
|
|
return std::visit(overloaded {
|
|
|
|
[&](const OutputsSpec::Default &) -> std::string {
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
[&](const OutputsSpec::All &) -> std::string {
|
|
|
|
return "*";
|
|
|
|
},
|
|
|
|
[&](const OutputsSpec::Names & outputNames) -> std::string {
|
|
|
|
return "^" + concatStringsSep(",", outputNames);
|
|
|
|
},
|
|
|
|
}, raw());
|
2023-01-10 18:27:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void to_json(nlohmann::json & json, const OutputsSpec & outputsSpec)
|
|
|
|
{
|
|
|
|
if (std::get_if<DefaultOutputs>(&outputsSpec))
|
|
|
|
json = nullptr;
|
|
|
|
|
|
|
|
else if (std::get_if<AllOutputs>(&outputsSpec))
|
|
|
|
json = std::vector<std::string>({"*"});
|
|
|
|
|
|
|
|
else if (auto outputNames = std::get_if<OutputNames>(&outputsSpec))
|
|
|
|
json = *outputNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
void from_json(const nlohmann::json & json, OutputsSpec & outputsSpec)
|
|
|
|
{
|
|
|
|
if (json.is_null())
|
|
|
|
outputsSpec = DefaultOutputs();
|
|
|
|
else {
|
|
|
|
auto names = json.get<OutputNames>();
|
|
|
|
if (names == OutputNames({"*"}))
|
|
|
|
outputsSpec = AllOutputs();
|
|
|
|
else
|
|
|
|
outputsSpec = names;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|