2016-02-25 16:57:00 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "fs-accessor.hh"
|
|
|
|
#include "nar-accessor.hh"
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct MixCat : virtual Args
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
|
|
|
void cat(ref<FSAccessor> accessor)
|
|
|
|
{
|
|
|
|
auto st = accessor->stat(path);
|
|
|
|
if (st.type == FSAccessor::Type::tMissing)
|
2017-07-30 11:27:57 +00:00
|
|
|
throw Error(format("path '%1%' does not exist") % path);
|
2016-02-25 16:57:00 +00:00
|
|
|
if (st.type != FSAccessor::Type::tRegular)
|
2017-07-30 11:27:57 +00:00
|
|
|
throw Error(format("path '%1%' is not a regular file") % path);
|
2016-02-25 16:57:00 +00:00
|
|
|
|
|
|
|
std::cout << accessor->readFile(path);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdCatStore : StoreCommand, MixCat
|
|
|
|
{
|
|
|
|
CmdCatStore()
|
|
|
|
{
|
|
|
|
expectArg("path", &path);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2020-05-05 13:18:23 +00:00
|
|
|
return "print the contents of a file in the Nix store on stdout";
|
2016-02-25 16:57:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2016-02-25 16:57:00 +00:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
cat(store->getFSAccessor());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdCatNar : StoreCommand, MixCat
|
|
|
|
{
|
|
|
|
Path narPath;
|
|
|
|
|
|
|
|
CmdCatNar()
|
|
|
|
{
|
|
|
|
expectArg("nar", &narPath);
|
|
|
|
expectArg("path", &path);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2020-05-05 13:18:23 +00:00
|
|
|
return "print the contents of a file inside a NAR file on stdout";
|
2016-02-25 16:57:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2016-02-25 16:57:00 +00:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
cat(makeNarAccessor(make_ref<std::string>(readFile(narPath))));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdCatStore>("cat-store");
|
|
|
|
static auto r2 = registerCommand<CmdCatNar>("cat-nar");
|