Nix/src/nix/ls.cc

167 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 14:23:53 +01:00
#include "common-args.hh"
#include <nlohmann/json.hpp>
using namespace nix;
2017-11-14 14:23:53 +01:00
struct MixLs : virtual Args, MixJSON
{
std::string path;
bool recursive = false;
bool verbose = false;
bool showDirectory = false;
MixLs()
{
2021-01-27 12:06:03 +01: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 14:23:53 +01: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);
assert(st);
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.value_or(0), 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);
assert(st);
if (st->type == FSAccessor::Type::tDirectory)
doPath(*st, curPath, relPath, false);
}
}
};
2017-09-10 22:36:32 +02: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);
2023-11-01 15:33:19 +01:00
for (auto & [name, type] : names)
showFile(curPath + "/" + name, relPath + "/" + name);
} else
showFile(curPath, relPath);
};
auto st = accessor->stat(path);
if (!st)
throw Error("path '%1%' does not exist", path);
doPath(*st, path,
st->type == FSAccessor::Type::tDirectory ? "." : std::string(baseNameOf(path)),
showDirectory);
}
2017-11-14 14:23:53 +01:00
void list(ref<FSAccessor> accessor)
{
if (path == "/") path = "";
if (json) {
2020-12-09 19:21:48 +01:00
if (showDirectory)
throw UsageError("'--directory' is useless with '--json'");
logger->cout("%s", listNar(accessor, path, recursive));
2017-11-14 14:23:53 +01:00
} else
listText(accessor);
}
};
struct CmdLsStore : StoreCommand, MixLs
{
CmdLsStore()
{
2020-05-11 15:46:18 +02:00
expectArgs({
.label = "path",
.handler = {&path},
.completer = completePath
});
}
2020-12-09 20:06:19 +01:00
std::string description() override
{
2020-12-09 20:06:19 +01:00
return "show information about a path in the Nix store";
}
2020-12-09 20:06:19 +01:00
std::string doc() override
{
2020-12-09 20:06:19 +01: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 15:46:18 +02:00
expectArgs({
.label = "nar",
.handler = {&narPath},
.completer = completePath
});
expectArg("path", &path);
}
2020-12-09 19:21:48 +01:00
std::string doc() override
{
2020-12-09 19:21:48 +01:00
return
#include "nar-ls.md"
;
}
std::string description() override
{
2020-05-05 15:18:23 +02:00
return "show information about a path inside a NAR file";
}
void run() override
{
list(makeNarAccessor(readFile(narPath)));
}
};
2020-07-24 20:42:24 +02:00
static auto rCmdLsStore = registerCommand2<CmdLsStore>({"store", "ls"});
static auto rCmdLsNar = registerCommand2<CmdLsNar>({"nar", "ls"});