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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "lix/libcmd/installable-derived-path.hh"
#include "lix/libstore/derivations.hh"

namespace nix {

std::string InstallableDerivedPath::what() const
{
    return derivedPath.to_string(*store);
}

DerivedPathsWithInfo InstallableDerivedPath::toDerivedPaths(EvalState & state)
{
    return {{
        .path = derivedPath,
        .info = make_ref<ExtraPathInfo>(),
    }};
}

std::optional<StorePath> InstallableDerivedPath::getStorePath()
{
    return derivedPath.getBaseStorePath();
}

InstallableDerivedPath InstallableDerivedPath::parse(
    ref<Store> store,
    std::string_view prefix,
    ExtendedOutputsSpec extendedOutputsSpec)
{
    auto derivedPath = std::visit(
        overloaded{
            // If the user did not use ^, we treat the output more
            // liberally: we accept a symlink chain or an actual
            // store path.
            [&](const ExtendedOutputsSpec::Default &) -> DerivedPath {
                return DerivedPath::Opaque{
                    .path = store->followLinksToStorePath(prefix),
                };
            },
            // If the user did use ^, we just do exactly what is written.
            [&](const ExtendedOutputsSpec::Explicit & outputSpec) -> DerivedPath {
                auto drv = DerivedPathOpaque::parse(*store, prefix);
                return DerivedPath::Built{
                    .drvPath = std::move(drv),
                    .outputs = outputSpec,
                };
            },
        },
        extendedOutputsSpec.raw
    );
    return InstallableDerivedPath {
        store,
        std::move(derivedPath),
    };
}

}