-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make clear that
StorePathWithOutputs
is a deprecated type
- Add a comment - Put `OutputsSpec` in a different header (First part of #6815) - Make a few stray uses of it in new code use `DerivedPath` instead.
- Loading branch information
1 parent
1c98daf
commit da64f02
Showing
11 changed files
with
124 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#include "outputs-spec.hh" | ||
#include "nlohmann/json.hpp" | ||
|
||
#include <regex> | ||
|
||
namespace nix { | ||
|
||
std::pair<std::string, OutputsSpec> parseOutputsSpec(const std::string & s) | ||
{ | ||
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(), ",")}; | ||
} | ||
|
||
std::string printOutputsSpec(const OutputsSpec & outputsSpec) | ||
{ | ||
if (std::get_if<DefaultOutputs>(&outputsSpec)) | ||
return ""; | ||
|
||
if (std::get_if<AllOutputs>(&outputsSpec)) | ||
return "^*"; | ||
|
||
if (auto outputNames = std::get_if<OutputNames>(&outputsSpec)) | ||
return "^" + concatStringsSep(",", *outputNames); | ||
|
||
assert(false); | ||
} | ||
|
||
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; | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#pragma once | ||
|
||
#include <variant> | ||
|
||
#include "util.hh" | ||
|
||
#include "nlohmann/json_fwd.hpp" | ||
|
||
namespace nix { | ||
|
||
typedef std::set<std::string> OutputNames; | ||
|
||
struct AllOutputs { | ||
bool operator < (const AllOutputs & _) const { return false; } | ||
}; | ||
|
||
struct DefaultOutputs { | ||
bool operator < (const DefaultOutputs & _) const { return false; } | ||
}; | ||
|
||
typedef std::variant<DefaultOutputs, AllOutputs, OutputNames> OutputsSpec; | ||
|
||
/* Parse a string of the form 'prefix^output1,...outputN' or | ||
'prefix^*', returning the prefix and the outputs spec. */ | ||
std::pair<std::string, OutputsSpec> parseOutputsSpec(const std::string & s); | ||
|
||
std::string printOutputsSpec(const OutputsSpec & outputsSpec); | ||
|
||
void to_json(nlohmann::json &, const OutputsSpec &); | ||
void from_json(const nlohmann::json &, OutputsSpec &); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/libstore/tests/path-with-outputs.cc → src/libstore/tests/outputs-spec.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "path-with-outputs.hh" | ||
#include "outputs-spec.hh" | ||
|
||
#include <gtest/gtest.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters