Nix/src/nix/ls.cc

149 lines
4.2 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 "json.hh"
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()
{
mkFlag('R', "recursive", "List subdirectories recursively.", &recursive);
mkFlag('l', "long", "Show detailed file information.", &verbose);
mkFlag('d', "directory", "Show directories rather than their contents.", &showDirectory);
}
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);
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 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);
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 14:23:53 +01:00
void list(ref<FSAccessor> accessor)
{
if (path == "/") path = "";
if (json) {
2017-11-14 14:27:01 +01:00
JSONPlaceholder jsonRoot(std::cout);
2020-12-09 19:21:48 +01:00
if (showDirectory)
throw UsageError("'--directory' is useless with '--json'");
2017-11-14 14:31:28 +01:00
listNar(jsonRoot, 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(make_ref<std::string>(readFile(narPath))));
}
};
2020-07-24 20:42:24 +02:00
static auto rCmdLsStore = registerCommand2<CmdLsStore>({"store", "ls"});
static auto rCmdLsNar = registerCommand2<CmdLsNar>({"nar", "ls"});