2016-02-25 18:57:00 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "nar-accessor.hh"
|
2017-11-14 15:23:53 +02:00
|
|
|
#include "common-args.hh"
|
2022-11-16 17:49:49 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
2016-02-25 18:57:00 +02:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-11-14 15:23:53 +02:00
|
|
|
struct MixLs : virtual Args, MixJSON
|
2016-02-25 18:57:00 +02:00
|
|
|
{
|
|
|
|
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},
|
|
|
|
});
|
2016-02-25 18:57:00 +02:00
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
void listText(ref<SourceAccessor> accessor)
|
2016-02-25 18:57:00 +02:00
|
|
|
{
|
2023-11-01 18:09:28 +02:00
|
|
|
std::function<void(const SourceAccessor::Stat &, const CanonPath &, std::string_view, bool)> doPath;
|
2016-02-25 18:57:00 +02:00
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
auto showFile = [&](const CanonPath & curPath, std::string_view relPath) {
|
2016-02-25 18:57:00 +02:00
|
|
|
if (verbose) {
|
2023-11-01 18:09:28 +02:00
|
|
|
auto st = accessor->lstat(curPath);
|
2016-02-25 18:57:00 +02:00
|
|
|
std::string tp =
|
2023-11-01 18:09:28 +02:00
|
|
|
st.type == SourceAccessor::Type::tRegular ?
|
|
|
|
(st.isExecutable ? "-r-xr-xr-x" : "-r--r--r--") :
|
|
|
|
st.type == SourceAccessor::Type::tSymlink ? "lrwxrwxrwx" :
|
2016-02-25 18:57:00 +02:00
|
|
|
"dr-xr-xr-x";
|
2023-11-01 18:09:28 +02:00
|
|
|
auto line = fmt("%s %20d %s", tp, st.fileSize.value_or(0), relPath);
|
|
|
|
if (st.type == SourceAccessor::Type::tSymlink)
|
2020-04-16 14:46:37 +03:00
|
|
|
line += " -> " + accessor->readLink(curPath);
|
2020-09-25 18:30:04 +03:00
|
|
|
logger->cout(line);
|
2023-11-01 18:09:28 +02:00
|
|
|
if (recursive && st.type == SourceAccessor::Type::tDirectory)
|
|
|
|
doPath(st, curPath, relPath, false);
|
2016-02-25 18:57:00 +02:00
|
|
|
} else {
|
2020-09-25 18:30:04 +03:00
|
|
|
logger->cout(relPath);
|
2016-02-25 18:57:00 +02:00
|
|
|
if (recursive) {
|
2023-11-01 18:09:28 +02:00
|
|
|
auto st = accessor->lstat(curPath);
|
|
|
|
if (st.type == SourceAccessor::Type::tDirectory)
|
|
|
|
doPath(st, curPath, relPath, false);
|
2016-02-25 18:57:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
doPath = [&](const SourceAccessor::Stat & st, const CanonPath & curPath,
|
|
|
|
std::string_view relPath, bool showDirectory)
|
2016-02-25 18:57:00 +02:00
|
|
|
{
|
2023-11-01 18:09:28 +02:00
|
|
|
if (st.type == SourceAccessor::Type::tDirectory && !showDirectory) {
|
2016-02-25 18:57:00 +02:00
|
|
|
auto names = accessor->readDirectory(curPath);
|
2023-11-01 16:33:19 +02:00
|
|
|
for (auto & [name, type] : names)
|
2024-02-05 16:13:11 +02:00
|
|
|
showFile(curPath / name, relPath + "/" + name);
|
2016-02-25 18:57:00 +02:00
|
|
|
} else
|
|
|
|
showFile(curPath, relPath);
|
|
|
|
};
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
auto path2 = CanonPath(path);
|
|
|
|
auto st = accessor->lstat(path2);
|
|
|
|
doPath(st, path2,
|
|
|
|
st.type == SourceAccessor::Type::tDirectory ? "." : path2.baseName().value_or(""),
|
2016-02-25 18:57:00 +02:00
|
|
|
showDirectory);
|
|
|
|
}
|
2017-11-14 15:23:53 +02:00
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
void list(ref<SourceAccessor> accessor)
|
2017-11-14 15:23:53 +02:00
|
|
|
{
|
|
|
|
if (json) {
|
2020-12-09 20:21:48 +02:00
|
|
|
if (showDirectory)
|
|
|
|
throw UsageError("'--directory' is useless with '--json'");
|
2023-11-01 18:09:28 +02:00
|
|
|
logger->cout("%s", listNar(accessor, CanonPath(path), recursive));
|
2017-11-14 15:23:53 +02:00
|
|
|
} else
|
|
|
|
listText(accessor);
|
|
|
|
}
|
2016-02-25 18:57:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdLsStore : StoreCommand, MixLs
|
|
|
|
{
|
|
|
|
CmdLsStore()
|
|
|
|
{
|
2020-05-11 16:46:18 +03:00
|
|
|
expectArgs({
|
|
|
|
.label = "path",
|
|
|
|
.handler = {&path},
|
|
|
|
.completer = completePath
|
|
|
|
});
|
2016-02-25 18:57:00 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 21:06:19 +02:00
|
|
|
std::string description() override
|
2018-02-19 21:38:06 +02:00
|
|
|
{
|
2020-12-09 21:06:19 +02:00
|
|
|
return "show information about a path in the Nix store";
|
2018-02-19 21:38:06 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 21:06:19 +02:00
|
|
|
std::string doc() override
|
2016-02-25 18:57:00 +02:00
|
|
|
{
|
2020-12-09 21:06:19 +02:00
|
|
|
return
|
|
|
|
#include "store-ls.md"
|
|
|
|
;
|
2016-02-25 18:57:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
});
|
2016-02-25 18:57:00 +02:00
|
|
|
expectArg("path", &path);
|
|
|
|
}
|
|
|
|
|
2020-12-09 20:21:48 +02:00
|
|
|
std::string doc() override
|
2018-02-19 21:38:06 +02:00
|
|
|
{
|
2020-12-09 20:21:48 +02:00
|
|
|
return
|
|
|
|
#include "nar-ls.md"
|
|
|
|
;
|
2018-02-19 21:38:06 +02:00
|
|
|
}
|
|
|
|
|
2016-02-25 18:57:00 +02:00
|
|
|
std::string description() override
|
|
|
|
{
|
2020-05-05 16:18:23 +03:00
|
|
|
return "show information about a path inside a NAR file";
|
2016-02-25 18:57:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
2022-01-17 23:20:05 +02:00
|
|
|
list(makeNarAccessor(readFile(narPath)));
|
2016-02-25 18:57:00 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-07-24 21:42:24 +03:00
|
|
|
static auto rCmdLsStore = registerCommand2<CmdLsStore>({"store", "ls"});
|
|
|
|
static auto rCmdLsNar = registerCommand2<CmdLsNar>({"nar", "ls"});
|