2017-05-04 12:16:26 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "store-api.hh"
|
2020-07-24 19:04:26 +00:00
|
|
|
#include "archive.hh"
|
2017-05-04 12:16:26 +00:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct CmdDumpPath : StorePathCommand
|
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
2020-07-24 19:04:26 +00:00
|
|
|
return "serialise a store path to stdout in NAR format";
|
2017-05-04 12:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
|
|
|
"To get a NAR from the binary cache https://cache.nixos.org/:",
|
2020-07-24 18:38:56 +00:00
|
|
|
"nix store dump-path --store https://cache.nixos.org/ /nix/store/7crrmih8c52r8fbnqb933dxrsp44md93-glibc-2.25"
|
2017-05-04 12:16:26 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void run(ref<Store> store, const StorePath & storePath) override
|
2017-05-04 12:16:26 +00:00
|
|
|
{
|
|
|
|
FdSink sink(STDOUT_FILENO);
|
|
|
|
store->narFromPath(storePath, sink);
|
2018-02-13 11:05:25 +00:00
|
|
|
sink.flush();
|
2017-05-04 12:16:26 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-07-24 19:04:26 +00:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
2020-12-09 18:21:48 +00:00
|
|
|
std::string doc() override
|
2020-07-24 19:04:26 +00:00
|
|
|
{
|
2020-12-09 18:21:48 +00:00
|
|
|
return
|
|
|
|
#include "nar-dump-path.md"
|
|
|
|
;
|
2020-07-24 19:04:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
FdSink sink(STDOUT_FILENO);
|
|
|
|
dumpPath(path, sink);
|
|
|
|
sink.flush();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static auto rDumpPath2 = registerCommand2<CmdDumpPath2>({"nar", "dump-path"});
|