-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move
StorePathWithOutputs
into its own header/file
In the following commits it will become less prevalent.
- Loading branch information
1 parent
ed352e9
commit 3070415
Showing
8 changed files
with
55 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#include "store-api.hh" | ||
|
||
namespace nix { | ||
|
||
std::string StorePathWithOutputs::to_string(const Store & store) const | ||
{ | ||
return outputs.empty() | ||
? store.printStorePath(path) | ||
: store.printStorePath(path) + "!" + concatStringsSep(",", outputs); | ||
} | ||
|
||
|
||
std::pair<std::string_view, StringSet> parsePathWithOutputs(std::string_view s) | ||
{ | ||
size_t n = s.find("!"); | ||
return n == s.npos | ||
? std::make_pair(s, std::set<string>()) | ||
: std::make_pair(((std::string_view) s).substr(0, n), | ||
tokenizeString<std::set<string>>(((std::string_view) s).substr(n + 1), ",")); | ||
} | ||
|
||
|
||
StorePathWithOutputs Store::parsePathWithOutputs(const std::string & s) | ||
{ | ||
auto [path, outputs] = nix::parsePathWithOutputs(s); | ||
return {parseStorePath(path), std::move(outputs)}; | ||
} | ||
|
||
|
||
StorePathWithOutputs Store::followLinksToStorePathWithOutputs(std::string_view path) const | ||
{ | ||
auto [path2, outputs] = nix::parsePathWithOutputs(path); | ||
return StorePathWithOutputs { followLinksToStorePath(path2), std::move(outputs) }; | ||
} | ||
|
||
} |
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,17 @@ | ||
#pragma once | ||
|
||
#include "path.hh" | ||
|
||
namespace nix { | ||
|
||
struct StorePathWithOutputs | ||
{ | ||
StorePath path; | ||
std::set<std::string> outputs; | ||
|
||
std::string to_string(const Store & store) const; | ||
}; | ||
|
||
std::pair<std::string_view, StringSet> parsePathWithOutputs(std::string_view s); | ||
|
||
} |
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