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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include "lix/libcmd/command.hh"
#include "lix/libmain/common-args.hh"
#include "lix/libmain/shared.hh"
#include "lix/libstore/store-api.hh"
#include "lix/libstore/log-store.hh"
#include "log.hh"

namespace nix {

struct CmdLog : InstallableCommand
{
    std::string description() override
    {
        return "show the build log of the specified packages or paths, if available";
    }

    std::string doc() override
    {
        return
          #include "log.md"
          ;
    }

    Category category() override { return catSecondary; }

    void run(ref<Store> store, ref<Installable> installable) override
    {
        settings.readOnlyMode = true;

        auto subs = aio().blockOn(getDefaultSubstituters());

        subs.push_front(store);

        auto b = installable->toDerivedPath(*getEvaluator()->begin(aio()));

        // For compat with CLI today, TODO revisit
        auto path = std::visit(overloaded {
            [&](const DerivedPath::Opaque & bo) {
                return bo.path;
            },
            [&](const DerivedPath::Built & bfd) {
                return bfd.drvPath.path;
            },
        }, b.path.raw());

        withPager([&](Pager & pager) {
            for (auto & sub : subs) {
                auto * logSubP = dynamic_cast<LogStore *>(&*sub);
                if (!logSubP) {
                    printInfo("Skipped '%s' which does not support retrieving build logs", sub->getUri());
                    continue;
                }
                auto & logSub = *logSubP;

                auto log = aio().blockOn(logSub.getBuildLog(path));
                if (!log) {
                    continue;
                }
                logger->pause();
                printInfo("got build log for '%s' from '%s'", installable->what(), logSub.getUri());
                pager << *log;
                return;
            }

            throw Error("build log of '%s' is not available", installable->what());
        });
    }
};

void registerNixLog()
{
    registerCommand<CmdLog>("log");
}

}