2021-03-02 00:47:00 +00:00
|
|
|
#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);
|
|
|
|
|
2021-03-02 01:06:08 +00:00
|
|
|
class Store;
|
|
|
|
|
|
|
|
/* Split a string specifying a derivation and a set of outputs
|
|
|
|
(/nix/store/hash-foo!out1,out2,...) into the derivation path
|
|
|
|
and the outputs. */
|
|
|
|
StorePathWithOutputs parsePathWithOutputs(const Store & store, std::string_view pathWithOutputs);
|
|
|
|
|
|
|
|
StorePathWithOutputs followLinksToStorePathWithOutputs(const Store & store, std::string_view pathWithOutputs);
|
|
|
|
|
2021-03-02 00:47:00 +00:00
|
|
|
}
|