aboutsummaryrefslogtreecommitdiff
path: root/src/nix/dump-path.cc
blob: 661438a3deac3a701918d9e24ff6e03c127a11ae (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
60
61
62
63
64
65
66
#include "command.hh"
#include "store-api.hh"
#include "archive.hh"

using namespace nix;

struct CmdDumpPath : StorePathCommand
{
    std::string description() override
    {
        return "serialise a store path to stdout in NAR format";
    }

    std::string doc() override
    {
        return
          #include "store-dump-path.md"
          ;
    }

    void run(ref<Store> store, const StorePath & storePath) override
    {
        logger->pause();
        FdSink sink(STDOUT_FILENO);
        sink << store->narFromPath(storePath);
        sink.flush();
    }
};

static auto rDumpPath = registerCommand2<CmdDumpPath>({"store", "dump-path"});

struct CmdDumpPath2 : Command
{
    Path path;

    CmdDumpPath2()
    {
        expectArgs({
            .label = "path",
            .handler = {&path},
            .completer = completePath
        });
    }

    std::string description() override
    {
        return "serialise a path to stdout in NAR format";
    }

    std::string doc() override
    {
        return
          #include "nar-dump-path.md"
          ;
    }

    void run() override
    {
        logger->pause();
        FdSink sink(STDOUT_FILENO);
        sink << dumpPath(path);
        sink.flush();
    }
};

static auto rDumpPath2 = registerCommand2<CmdDumpPath2>({"nar", "dump-path"});