about summary refs log tree commit diff
path: root/src/nix/log.cc
blob: d8a3830e91c8914c0ae7fe032ad342146a2b017e (plain) (blame)
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
#include "command.hh"
#include "common-args.hh"
#include "installables.hh"
#include "shared.hh"
#include "store-api.hh"

using namespace nix;

struct CmdLog : StoreCommand, MixInstallables
{
    CmdLog()
    {
    }

    std::string name() override
    {
        return "log";
    }

    std::string description() override
    {
        return "show the build log of the specified packages or paths";
    }

    void run(ref<Store> store) override
    {
        auto elems = evalInstallables(store);

        PathSet paths;

        for (auto & elem : elems) {
            if (elem.isDrv)
                paths.insert(elem.drvPath);
            else
                paths.insert(elem.outPaths.begin(), elem.outPaths.end());
        }

        auto subs = getDefaultSubstituters();

        subs.push_front(store);

        for (auto & path : paths) {
            bool found = false;
            for (auto & sub : subs) {
                auto log = sub->getBuildLog(path);
                if (!log) continue;
                std::cout << *log;
                found = true;
                break;
            }
            if (!found)
                throw Error("build log of path ‘%s’ is not available", path);
        }
    }
};

static RegisterCommand r1(make_ref<CmdLog>());