mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "ICommand.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
class CommandList : public ICommand
|
|
{
|
|
public:
|
|
CommandList()
|
|
{
|
|
command_name = "list";
|
|
command_option_description.emplace(createOptionsDescription("Allowed options", getTerminalWidth()));
|
|
description = "List files (the default disk is used by default)\nPath should be in format './' or './path' or 'path'";
|
|
usage = "list [OPTION]... <PATH>...";
|
|
}
|
|
|
|
void processOptions(
|
|
Poco::Util::LayeredConfiguration &,
|
|
po::variables_map &) const override{}
|
|
|
|
void execute(
|
|
const std::vector<String> & command_arguments,
|
|
DB::ContextMutablePtr & global_context,
|
|
Poco::Util::LayeredConfiguration & config) override
|
|
{
|
|
if (command_arguments.size() != 1)
|
|
{
|
|
printHelpMessage();
|
|
throw DB::Exception("Bad Arguments", DB::ErrorCodes::BAD_ARGUMENTS);
|
|
}
|
|
|
|
String disk_name = config.getString("disk", "default");
|
|
|
|
String path = command_arguments[0];
|
|
|
|
std::vector<String> file_names;
|
|
DiskPtr disk = global_context->getDisk(disk_name);
|
|
|
|
String full_path = fullPathWithValidate(disk, path);
|
|
|
|
disk->listFiles(full_path, file_names);
|
|
|
|
for (const auto & file_name : file_names)
|
|
std::cout << file_name << '\n';
|
|
}
|
|
};
|
|
}
|
|
|
|
std::unique_ptr <DB::ICommand> makeCommandList()
|
|
{
|
|
return std::make_unique<DB::CommandList>();
|
|
}
|