mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
7b53a0ef33
This reverts commit 1e2616542a
.
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <Disks/DiskFactory.h>
|
|
#include <Disks/IDisk.h>
|
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
|
|
#include <map>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
class DiskSelector;
|
|
using DiskSelectorPtr = std::shared_ptr<const DiskSelector>;
|
|
using DisksMap = std::map<String, DiskPtr>;
|
|
|
|
/// Parse .xml configuration and store information about disks
|
|
/// Mostly used for introspection.
|
|
class DiskSelector
|
|
{
|
|
public:
|
|
DiskSelector(const Poco::Util::AbstractConfiguration & config, const String & config_prefix, const Context & context);
|
|
DiskSelector(const DiskSelector & from) : disks(from.disks) { }
|
|
|
|
DiskSelectorPtr
|
|
updateFromConfig(const Poco::Util::AbstractConfiguration & config, const String & config_prefix, const Context & context) const;
|
|
|
|
/// Get disk by name
|
|
DiskPtr get(const String & name) const;
|
|
|
|
/// Get all disks with names
|
|
const DisksMap & getDisksMap() const { return disks; }
|
|
void addToDiskMap(String name, DiskPtr disk)
|
|
{
|
|
disks.emplace(name, disk);
|
|
}
|
|
|
|
private:
|
|
DisksMap disks;
|
|
};
|
|
|
|
}
|