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
|
#include "lix/libcmd/command.hh"
#include "lix/libstore/store-api.hh"
#include "lix/libutil/archive.hh"
#include "dump-path.hh"
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);
aio().blockOn(aio().blockOn(store->narFromPath(storePath))->drainInto(sink));
sink.flush();
}
};
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();
}
};
void registerNixStoreDumpPath()
{
registerCommand2<CmdDumpPath>({"store", "dump-path"});
registerCommand2<CmdDumpPath2>({"nar", "dump-path"});
}
}
|