aboutsummaryrefslogtreecommitdiff
path: root/src/nix/app.cc
blob: cf147c6315321c9c1181bd06cc242a3cd0c99c03 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "installables.hh"
#include "store-api.hh"
#include "eval-inline.hh"
#include "eval-cache.hh"
#include "names.hh"

namespace nix {

App Installable::toApp(EvalState & state)
{
    auto [cursor, attrPath] = getCursor(state);

    auto type = cursor->getAttr("type")->getString();

    auto checkProgram = [&](const Path & program)
    {
        if (!state.store->isInStore(program))
            throw Error("app program '%s' is not in the Nix store", program);
    };

    if (type == "app") {
        auto [program, context] = cursor->getAttr("program")->getStringWithContext();

        checkProgram(program);

        std::vector<StorePathWithOutputs> context2;
        for (auto & [path, name] : context)
            context2.push_back({state.store->parseStorePath(path), {name}});

        return App {
            .context = std::move(context2),
            .program = program,
        };
    }

    else if (type == "derivation") {
        auto drvPath = cursor->forceDerivation();
        auto outPath = cursor->getAttr(state.sOutPath)->getString();
        auto outputName = cursor->getAttr(state.sOutputName)->getString();
        auto name = cursor->getAttr(state.sName)->getString();
        auto aMeta = cursor->maybeGetAttr("meta");
        auto aMainProgram = aMeta ? aMeta->maybeGetAttr("mainProgram") : nullptr;
        auto mainProgram =
            aMainProgram
            ? aMainProgram->getString()
            : DrvName(name).name;
        auto program = outPath + "/bin/" + mainProgram;
        checkProgram(program);
        return App {
            .context = { { drvPath, {outputName} } },
            .program = program,
        };
    }

    else
        throw Error("attribute '%s' has unsupported type '%s'", attrPath, type);
}

}