ClickHouse/src/Common/FileCacheFactory.h

47 lines
1.1 KiB
C++
Raw Normal View History

2022-01-13 11:57:56 +00:00
#pragma once
#include <Common/FileCache_fwd.h>
2022-03-21 13:56:38 +00:00
#include <Common/FileCacheSettings.h>
2022-01-13 11:57:56 +00:00
#include <boost/noncopyable.hpp>
#include <unordered_map>
#include <mutex>
2022-01-13 11:57:56 +00:00
namespace DB
{
/**
* Creates a FileCache object for cache_base_path.
*/
class FileCacheFactory final : private boost::noncopyable
{
2022-03-21 13:56:38 +00:00
struct CacheData
{
FileCachePtr cache;
FileCacheSettings settings;
CacheData(FileCachePtr cache_, const FileCacheSettings & settings_) : cache(cache_), settings(settings_) {}
};
using CacheByBasePath = std::unordered_map<std::string, CacheData>;
2022-01-13 11:57:56 +00:00
public:
static FileCacheFactory & instance();
FileCachePtr getOrCreate(const std::string & cache_base_path, const FileCacheSettings & file_cache_settings);
2022-01-13 11:57:56 +00:00
FileCachePtr get(const std::string & cache_base_path);
CacheByBasePath getAll();
2022-03-21 13:56:38 +00:00
const FileCacheSettings & getSettings(const std::string & cache_base_path);
2022-01-13 11:57:56 +00:00
private:
2022-03-21 13:56:38 +00:00
CacheData * getImpl(const std::string & cache_base_path, std::lock_guard<std::mutex> &);
2022-01-13 11:57:56 +00:00
std::mutex mutex;
CacheByBasePath caches;
2022-01-13 11:57:56 +00:00
};
}