nix-super/src/nix/ls.cc

166 lines
4.5 KiB
C++
Raw Normal View History

#include "command.hh"
#include "store-api.hh"
#include "fs-accessor.hh"
#include "nar-accessor.hh"
2017-11-14 15:23:53 +02:00
#include "common-args.hh"
#include "json.hh"
using namespace nix;
2017-11-14 15:23:53 +02:00
struct MixLs : virtual Args, MixJSON
{
std::string path;
bool recursive = false;
bool verbose = false;
bool showDirectory = false;
MixLs()
{
2021-01-27 13:06:03 +02:00
addFlag({
.longName = "recursive",
.shortName = 'R',
.description = "List subdirectories recursively.",
.handler = {&recursive, true},
});
addFlag({
.longName = "long",
.shortName = 'l',
.description = "Show detailed file information.",
.handler = {&verbose, true},
});
addFlag({
.longName = "directory",
.shortName = 'd',
.description = "Show directories rather than their contents.",
.handler = {&showDirectory, true},
});
}
2017-11-14 15:23:53 +02:00
void listText(ref<FSAccessor> accessor)
{
std::function<void(const FSAccessor::Stat &, const Path &, const std::string &, bool)> doPath;
auto showFile = [&](const Path & curPath, const std::string & relPath) {
if (verbose) {
auto st = accessor->stat(curPath);
std::string tp =
st.type == FSAccessor::Type::tRegular ?
(st.isExecutable ? "-r-xr-xr-x" : "-r--r--r--") :
st.type == FSAccessor::Type::tSymlink ? "lrwxrwxrwx" :
"dr-xr-xr-x";
auto line = fmt("%s %20d %s", tp, st.fileSize, relPath);
if (st.type == FSAccessor::Type::tSymlink)
line += " -> " + accessor->readLink(curPath);
logger->cout(line);
if (recursive && st.type == FSAccessor::Type::tDirectory)
doPath(st, curPath, relPath, false);
} else {
logger->cout(relPath);
if (recursive) {
auto st = accessor->stat(curPath);
if (st.type == FSAccessor::Type::tDirectory)
doPath(st, curPath, relPath, false);
}
}
};
2017-09-10 23:36:32 +03:00
doPath = [&](const FSAccessor::Stat & st, const Path & curPath,
const std::string & relPath, bool showDirectory)
{
if (st.type == FSAccessor::Type::tDirectory && !showDirectory) {
auto names = accessor->readDirectory(curPath);
for (auto & name : names)
showFile(curPath + "/" + name, relPath + "/" + name);
} else
showFile(curPath, relPath);
};
auto st = accessor->stat(path);
if (st.type == FSAccessor::Type::tMissing)
throw Error("path '%1%' does not exist", path);
doPath(st, path,
st.type == FSAccessor::Type::tDirectory ? "." : std::string(baseNameOf(path)),
showDirectory);
}
2017-11-14 15:23:53 +02:00
void list(ref<FSAccessor> accessor)
{
if (path == "/") path = "";
if (json) {
2017-11-14 15:27:01 +02:00
JSONPlaceholder jsonRoot(std::cout);
2020-12-09 20:21:48 +02:00
if (showDirectory)
throw UsageError("'--directory' is useless with '--json'");
2017-11-14 15:31:28 +02:00
listNar(jsonRoot, accessor, path, recursive);
2017-11-14 15:23:53 +02:00
} else
listText(accessor);
}
};
struct CmdLsStore : StoreCommand, MixLs
{
CmdLsStore()
{
2020-05-11 16:46:18 +03:00
expectArgs({
.label = "path",
.handler = {&path},
.completer = completePath
});
}
2020-12-09 21:06:19 +02:00
std::string description() override
{
2020-12-09 21:06:19 +02:00
return "show information about a path in the Nix store";
}
2020-12-09 21:06:19 +02:00
std::string doc() override
{
2020-12-09 21:06:19 +02:00
return
#include "store-ls.md"
;
}
void run(ref<Store> store) override
{
list(store->getFSAccessor());
}
};
struct CmdLsNar : Command, MixLs
{
Path narPath;
CmdLsNar()
{
2020-05-11 16:46:18 +03:00
expectArgs({
.label = "nar",
.handler = {&narPath},
.completer = completePath
});
expectArg("path", &path);
}
2020-12-09 20:21:48 +02:00
std::string doc() override
{
2020-12-09 20:21:48 +02:00
return
#include "nar-ls.md"
;
}
std::string description() override
{
2020-05-05 16:18:23 +03:00
return "show information about a path inside a NAR file";
}
void run() override
{
list(makeNarAccessor(make_ref<std::string>(readFile(narPath))));
}
};
2020-07-24 21:42:24 +03:00
static auto rCmdLsStore = registerCommand2<CmdLsStore>({"store", "ls"});
static auto rCmdLsNar = registerCommand2<CmdLsNar>({"nar", "ls"});