2021-03-02 02:47:00 +02:00
|
|
|
#pragma once
|
|
|
|
|
2021-03-02 05:50:41 +02:00
|
|
|
#include <variant>
|
|
|
|
|
2021-03-02 02:47:00 +02:00
|
|
|
#include "path.hh"
|
2021-04-05 17:33:28 +03:00
|
|
|
#include "derived-path.hh"
|
2022-05-03 15:37:28 +03:00
|
|
|
#include "nlohmann/json_fwd.hpp"
|
2021-03-02 02:47:00 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct StorePathWithOutputs
|
|
|
|
{
|
|
|
|
StorePath path;
|
|
|
|
std::set<std::string> outputs;
|
|
|
|
|
|
|
|
std::string to_string(const Store & store) const;
|
2021-03-02 05:50:41 +02:00
|
|
|
|
2021-04-05 16:48:18 +03:00
|
|
|
DerivedPath toDerivedPath() const;
|
2021-03-02 05:50:41 +02:00
|
|
|
|
2021-04-05 16:48:18 +03:00
|
|
|
static std::variant<StorePathWithOutputs, StorePath> tryFromDerivedPath(const DerivedPath &);
|
2021-03-02 02:47:00 +02:00
|
|
|
};
|
|
|
|
|
2021-04-05 16:48:18 +03:00
|
|
|
std::vector<DerivedPath> toDerivedPaths(const std::vector<StorePathWithOutputs>);
|
2021-03-02 05:50:41 +02:00
|
|
|
|
2021-03-02 02:47:00 +02:00
|
|
|
std::pair<std::string_view, StringSet> parsePathWithOutputs(std::string_view s);
|
|
|
|
|
2021-03-02 03:06:08 +02: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);
|
|
|
|
|
2022-04-22 16:17:01 +03:00
|
|
|
typedef std::set<std::string> OutputNames;
|
|
|
|
|
2022-05-03 15:37:28 +03:00
|
|
|
struct AllOutputs {
|
|
|
|
bool operator < (const AllOutputs & _) const { return false; }
|
|
|
|
};
|
2022-04-22 16:17:01 +03:00
|
|
|
|
2022-05-03 15:37:28 +03:00
|
|
|
struct DefaultOutputs {
|
|
|
|
bool operator < (const DefaultOutputs & _) const { return false; }
|
|
|
|
};
|
2022-04-22 16:17:01 +03:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2022-05-03 15:37:28 +03:00
|
|
|
std::string printOutputsSpec(const OutputsSpec & outputsSpec);
|
|
|
|
|
|
|
|
void to_json(nlohmann::json &, const OutputsSpec &);
|
|
|
|
void from_json(const nlohmann::json &, OutputsSpec &);
|
|
|
|
|
2021-03-02 02:47:00 +02:00
|
|
|
}
|