aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/path-with-outputs.hh
blob: 870cac08e37b4b0b4bdd76ab36062b58d73a0209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once

#include <variant>

#include "path.hh"
#include "buildable.hh"

namespace nix {

struct StorePathWithOutputs
{
    StorePath path;
    std::set<std::string> outputs;

    std::string to_string(const Store & store) const;

    BuildableReq toBuildableReq() const;

    static std::variant<StorePathWithOutputs, StorePath> tryFromBuildableReq(const BuildableReq &);
};

std::vector<BuildableReq> toBuildableReqs(const std::vector<StorePathWithOutputs>);

std::pair<std::string_view, StringSet> parsePathWithOutputs(std::string_view s);

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);

}