mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
52 lines
955 B
C++
52 lines
955 B
C++
#pragma once
|
|
|
|
#include <common/types.h>
|
|
#include <Poco/Util/Application.h>
|
|
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <string_view>
|
|
#include <vector>
|
|
#include <unordered_map>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ISynonymsExtension
|
|
{
|
|
public:
|
|
using Synset = std::vector<String>;
|
|
|
|
//ISynonymsExtension(const String & path);
|
|
|
|
virtual Synset * getSynonyms(const std::string_view & token) const = 0;
|
|
|
|
virtual ~ISynonymsExtension() = default;
|
|
};
|
|
|
|
class SynonymsExtensions
|
|
{
|
|
public:
|
|
using ExtPtr = std::shared_ptr<ISynonymsExtension>;
|
|
|
|
SynonymsExtensions(const Poco::Util::AbstractConfiguration & config);
|
|
|
|
ExtPtr getExtension(const String & name);
|
|
|
|
private:
|
|
struct Info
|
|
{
|
|
String path;
|
|
String type;
|
|
};
|
|
|
|
using ExtContainer = std::unordered_map<String, ExtPtr>;
|
|
using InfoContainer = std::unordered_map<String, Info>;
|
|
|
|
std::mutex mutex;
|
|
ExtContainer extentions;
|
|
InfoContainer info;
|
|
};
|
|
|
|
}
|