ClickHouse/programs/disks/CommandListDisks.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.6 KiB
C++
Raw Normal View History

#include "ICommand.h"
2022-07-20 20:30:16 +00:00
#include <Interpreters/Context.h>
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
class CommandListDisks final : public ICommand
{
public:
CommandListDisks()
{
command_name = "list-disks";
description = "List disks names";
2022-06-16 17:38:33 +00:00
usage = "list-disks [OPTION]";
}
void processOptions(
Poco::Util::LayeredConfiguration &,
2022-06-16 17:38:33 +00:00
po::variables_map &) const override
{}
2022-06-16 17:38:33 +00:00
void execute(
const std::vector<String> & command_arguments,
2023-11-30 03:09:55 +00:00
std::shared_ptr<DiskSelector> &,
Poco::Util::LayeredConfiguration & config) override
{
2022-06-16 17:38:33 +00:00
if (!command_arguments.empty())
{
printHelpMessage();
throw DB::Exception(DB::ErrorCodes::BAD_ARGUMENTS, "Bad Arguments");
}
2023-11-30 03:09:55 +00:00
constexpr auto config_prefix = "storage_configuration.disks";
constexpr auto default_disk_name = "default";
Poco::Util::AbstractConfiguration::Keys keys;
config.keys(config_prefix, keys);
bool has_default_disk = false;
2023-12-02 23:59:46 +00:00
/// For the output to be ordered
std::set<String> disks;
2023-11-30 03:09:55 +00:00
for (const auto & disk_name : keys)
{
if (disk_name == default_disk_name)
has_default_disk = true;
2023-12-02 23:59:46 +00:00
disks.insert(disk_name);
2023-11-30 03:09:55 +00:00
}
if (!has_default_disk)
2023-12-02 23:59:46 +00:00
disks.insert(default_disk_name);
for (const auto & disk : disks)
std::cout << disk << '\n';
}
};
}
std::unique_ptr <DB::ICommand> makeCommandListDisks()
{
return std::make_unique<DB::CommandListDisks>();
}