mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
101 lines
2.8 KiB
C++
101 lines
2.8 KiB
C++
|
|
#if !defined(ARCADIA_BUILD)
|
|
# include "config_core.h"
|
|
#endif
|
|
|
|
#if USE_NLP
|
|
|
|
#include <Common/Exception.h>
|
|
#include <Interpreters/Lemmatizers.h>
|
|
#include <RdrLemmatizer.h>
|
|
|
|
#include <vector>
|
|
#include <filesystem>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int UNKNOWN_ELEMENT_IN_CONFIG;
|
|
extern const int INVALID_CONFIG_PARAMETER;
|
|
}
|
|
|
|
|
|
class Lemmatizer : public ILemmatizer
|
|
{
|
|
private:
|
|
RdrLemmatizer lemmatizer;
|
|
|
|
public:
|
|
explicit Lemmatizer(const String & path) : lemmatizer(path.data()) {}
|
|
|
|
TokenPtr lemmatize(const char * token) override
|
|
{
|
|
return TokenPtr(lemmatizer.Lemmatize(token));
|
|
}
|
|
};
|
|
|
|
/// Duplicate of code from StringUtils.h. Copied here for less dependencies.
|
|
static bool startsWith(const std::string & s, const char * prefix)
|
|
{
|
|
return s.size() >= strlen(prefix) && 0 == memcmp(s.data(), prefix, strlen(prefix));
|
|
}
|
|
|
|
Lemmatizers::Lemmatizers(const Poco::Util::AbstractConfiguration & config)
|
|
{
|
|
String prefix = "lemmatizers";
|
|
Poco::Util::AbstractConfiguration::Keys keys;
|
|
|
|
if (!config.has(prefix))
|
|
throw Exception(ErrorCodes::INVALID_CONFIG_PARAMETER, "No lemmatizers specified in server config on prefix '{}'", prefix);
|
|
|
|
config.keys(prefix, keys);
|
|
|
|
for (const auto & key : keys)
|
|
{
|
|
if (startsWith(key, "lemmatizer"))
|
|
{
|
|
const auto & lemm_name = config.getString(prefix + "." + key + ".lang", "");
|
|
const auto & lemm_path = config.getString(prefix + "." + key + ".path", "");
|
|
|
|
if (lemm_name.empty())
|
|
throw Exception("Lemmatizer language in config is not specified here: " + prefix + "." + key + ".lang",
|
|
ErrorCodes::INVALID_CONFIG_PARAMETER);
|
|
if (lemm_path.empty())
|
|
throw Exception("Path to lemmatizer in config is not specified here: " + prefix + "." + key + ".path",
|
|
ErrorCodes::INVALID_CONFIG_PARAMETER);
|
|
|
|
paths[lemm_name] = lemm_path;
|
|
}
|
|
else
|
|
throw Exception("Unknown element in config: " + prefix + "." + key + ", must be 'lemmatizer'",
|
|
ErrorCodes::UNKNOWN_ELEMENT_IN_CONFIG);
|
|
}
|
|
}
|
|
|
|
Lemmatizers::LemmPtr Lemmatizers::getLemmatizer(const String & name)
|
|
{
|
|
std::lock_guard guard(mutex);
|
|
|
|
if (lemmatizers.find(name) != lemmatizers.end())
|
|
return lemmatizers[name];
|
|
|
|
if (paths.find(name) != paths.end())
|
|
{
|
|
if (!std::filesystem::exists(paths[name]))
|
|
throw Exception("Incorrect path to lemmatizer: " + paths[name],
|
|
ErrorCodes::INVALID_CONFIG_PARAMETER);
|
|
|
|
lemmatizers[name] = std::make_shared<Lemmatizer>(paths[name]);
|
|
return lemmatizers[name];
|
|
}
|
|
|
|
throw Exception("Lemmatizer named: '" + name + "' is not found",
|
|
ErrorCodes::INVALID_CONFIG_PARAMETER);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|