mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
689 lines
19 KiB
C++
689 lines
19 KiB
C++
#include <Poco/File.h>
|
||
#include <Poco/Net/NetworkInterface.h>
|
||
|
||
#include <DB/Common/escapeForFileName.h>
|
||
#include <DB/IO/ReadBufferFromFile.h>
|
||
#include <DB/IO/WriteBufferFromString.h>
|
||
#include <DB/IO/copyData.h>
|
||
#include <DB/Parsers/ASTCreateQuery.h>
|
||
#include <DB/Parsers/ParserCreateQuery.h>
|
||
#include <DB/Interpreters/Context.h>
|
||
#include <DB/Client/ConnectionPoolWithFailover.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
String Context::getPath() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return shared->path;
|
||
}
|
||
|
||
String Context::getTemporaryPath() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return shared->tmp_path;
|
||
}
|
||
|
||
|
||
void Context::setPath(const String & path)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
shared->path = path;
|
||
}
|
||
|
||
void Context::setTemporaryPath(const String & path)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
shared->tmp_path = path;
|
||
}
|
||
|
||
|
||
void Context::setUsersConfig(ConfigurationPtr config)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
shared->users_config = config;
|
||
shared->users.loadFromConfig(*shared->users_config);
|
||
shared->quotas.loadFromConfig(*shared->users_config);
|
||
}
|
||
|
||
ConfigurationPtr Context::getUsersConfig()
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return shared->users_config;
|
||
}
|
||
|
||
|
||
void Context::setUser(const String & name, const String & password, const Poco::Net::IPAddress & address, const String & quota_key)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
const User & user_props = shared->users.get(name, password, address);
|
||
setSetting("profile", user_props.profile);
|
||
setQuota(user_props.quota, quota_key, name, address);
|
||
|
||
user = name;
|
||
ip_address = address;
|
||
}
|
||
|
||
|
||
void Context::setQuota(const String & name, const String & quota_key, const String & user_name, const Poco::Net::IPAddress & address)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
quota = shared->quotas.get(name, quota_key, user_name, address);
|
||
}
|
||
|
||
|
||
QuotaForIntervals & Context::getQuota()
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return *quota;
|
||
}
|
||
|
||
void Context::addDependency(const DatabaseAndTableName & from, const DatabaseAndTableName & where)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
shared->view_dependencies[from].insert(where);
|
||
}
|
||
|
||
void Context::removeDependency(const DatabaseAndTableName & from, const DatabaseAndTableName & where)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
shared->view_dependencies[from].erase(where);
|
||
}
|
||
|
||
Dependencies Context::getDependencies(const String & database_name, const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
ViewDependencies::const_iterator iter = shared->view_dependencies.find(DatabaseAndTableName(db, table_name));
|
||
if (iter == shared->view_dependencies.end())
|
||
return {};
|
||
|
||
return Dependencies(iter->second.begin(), iter->second.end());
|
||
}
|
||
|
||
bool Context::isTableExist(const String & database_name, const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
Databases::const_iterator it;
|
||
return shared->databases.end() != (it = shared->databases.find(db))
|
||
&& it->second.end() != it->second.find(table_name);
|
||
}
|
||
|
||
|
||
bool Context::isDatabaseExist(const String & database_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
return shared->databases.end() != shared->databases.find(db);
|
||
}
|
||
|
||
|
||
void Context::assertTableExists(const String & database_name, const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
Databases::const_iterator it = shared->databases.find(db);
|
||
if (shared->databases.end() == it)
|
||
throw Exception("Database " + db + " doesn't exist", ErrorCodes::UNKNOWN_DATABASE);
|
||
|
||
if (it->second.end() == it->second.find(table_name))
|
||
throw Exception("Table " + db + "." + table_name + " doesn't exist.", ErrorCodes::UNKNOWN_TABLE);
|
||
}
|
||
|
||
|
||
void Context::assertTableDoesntExist(const String & database_name, const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
Databases::const_iterator it;
|
||
if (shared->databases.end() != (it = shared->databases.find(db))
|
||
&& it->second.end() != it->second.find(table_name))
|
||
throw Exception("Table " + db + "." + table_name + " already exists.", ErrorCodes::TABLE_ALREADY_EXISTS);
|
||
}
|
||
|
||
|
||
void Context::assertDatabaseExists(const String & database_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
if (shared->databases.end() == shared->databases.find(db))
|
||
throw Exception("Database " + db + " doesn't exist", ErrorCodes::UNKNOWN_DATABASE);
|
||
}
|
||
|
||
|
||
void Context::assertDatabaseDoesntExist(const String & database_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
if (shared->databases.end() != shared->databases.find(db))
|
||
throw Exception("Database " + db + " already exists.", ErrorCodes::DATABASE_ALREADY_EXISTS);
|
||
}
|
||
|
||
|
||
Tables Context::getExternalTables() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
Tables res = external_tables;
|
||
if (session_context && session_context != this)
|
||
{
|
||
Tables buf = session_context->getExternalTables();
|
||
res.insert(buf.begin(), buf.end());
|
||
}
|
||
else if (global_context && global_context != this)
|
||
{
|
||
Tables buf = global_context->getExternalTables();
|
||
res.insert(buf.begin(), buf.end());
|
||
}
|
||
return res;
|
||
}
|
||
|
||
|
||
StoragePtr Context::tryGetExternalTable(const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
Tables::const_iterator jt = external_tables.find(table_name);
|
||
if (external_tables.end() == jt)
|
||
return StoragePtr();
|
||
|
||
return jt->second;
|
||
}
|
||
|
||
|
||
StoragePtr Context::getTable(const String & database_name, const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (database_name.empty())
|
||
{
|
||
StoragePtr res;
|
||
if ((res = tryGetExternalTable(table_name)))
|
||
return res;
|
||
if (session_context && (res = session_context->tryGetExternalTable(table_name)))
|
||
return res;
|
||
if (global_context && (res = global_context->tryGetExternalTable(table_name)))
|
||
return res;
|
||
}
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
Databases::const_iterator it = shared->databases.find(db);
|
||
if (shared->databases.end() == it)
|
||
throw Exception("Database " + db + " doesn't exist", ErrorCodes::UNKNOWN_DATABASE);
|
||
|
||
Tables::const_iterator jt = it->second.find(table_name);
|
||
if (it->second.end() == jt)
|
||
throw Exception("Table " + db + "." + table_name + " doesn't exist.", ErrorCodes::UNKNOWN_TABLE);
|
||
|
||
return jt->second;
|
||
}
|
||
|
||
|
||
StoragePtr Context::tryGetTable(const String & database_name, const String & table_name) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (database_name.empty())
|
||
{
|
||
StoragePtr res;
|
||
if ((res = tryGetExternalTable(table_name)))
|
||
return res;
|
||
if (session_context && (res = session_context->tryGetExternalTable(table_name)))
|
||
return res;
|
||
if (global_context && (res = global_context->tryGetExternalTable(table_name)))
|
||
return res;
|
||
}
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
Databases::const_iterator it = shared->databases.find(db);
|
||
if (shared->databases.end() == it)
|
||
return StoragePtr();
|
||
|
||
Tables::const_iterator jt = it->second.find(table_name);
|
||
if (it->second.end() == jt)
|
||
return StoragePtr();
|
||
|
||
return jt->second;
|
||
}
|
||
|
||
|
||
void Context::addExternalTable(const String & table_name, StoragePtr storage)
|
||
{
|
||
if (external_tables.end() != external_tables.find(table_name))
|
||
throw Exception("Temporary table " + table_name + " already exists.", ErrorCodes::TABLE_ALREADY_EXISTS);
|
||
external_tables[table_name] = storage;
|
||
}
|
||
|
||
|
||
void Context::addTable(const String & database_name, const String & table_name, StoragePtr table)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
assertDatabaseExists(db);
|
||
assertTableDoesntExist(db, table_name);
|
||
shared->databases[db][table_name] = table;
|
||
}
|
||
|
||
|
||
void Context::addDatabase(const String & database_name)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
assertDatabaseDoesntExist(db);
|
||
shared->databases[db];
|
||
}
|
||
|
||
|
||
StoragePtr Context::detachTable(const String & database_name, const String & table_name)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
assertTableExists(db, table_name);
|
||
Tables::iterator it = shared->databases[db].find(table_name);
|
||
StoragePtr res = it->second;
|
||
shared->databases[db].erase(it);
|
||
return res;
|
||
}
|
||
|
||
|
||
void Context::detachDatabase(const String & database_name)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
String db = database_name.empty() ? current_database : database_name;
|
||
|
||
assertDatabaseExists(db);
|
||
shared->databases.erase(db);
|
||
}
|
||
|
||
|
||
ASTPtr Context::getCreateQuery(const String & database_name, const String & table_name) const
|
||
{
|
||
StoragePtr table;
|
||
String db;
|
||
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
db = database_name.empty() ? current_database : database_name;
|
||
table = getTable(db, table_name);
|
||
}
|
||
|
||
auto table_lock = table->lockStructure(false);
|
||
|
||
/// Здесь хранится определение таблицы
|
||
String metadata_path = shared->path + "metadata/" + escapeForFileName(db) + "/" + escapeForFileName(table_name) + ".sql";
|
||
|
||
if (!Poco::File(metadata_path).exists())
|
||
{
|
||
try
|
||
{
|
||
/// Если файл .sql не предусмотрен (например, для таблиц типа ChunkRef), то движок может сам предоставить запрос CREATE.
|
||
return table->getCustomCreateQuery(*this);
|
||
}
|
||
catch (...)
|
||
{
|
||
throw Exception("Metadata file " + metadata_path + " for table " + db + "." + table_name + " doesn't exist.",
|
||
ErrorCodes::TABLE_METADATA_DOESNT_EXIST);
|
||
}
|
||
}
|
||
|
||
StringPtr query = new String();
|
||
{
|
||
ReadBufferFromFile in(metadata_path);
|
||
WriteBufferFromString out(*query);
|
||
copyData(in, out);
|
||
}
|
||
|
||
const char * begin = query->data();
|
||
const char * end = begin + query->size();
|
||
const char * pos = begin;
|
||
|
||
ParserCreateQuery parser;
|
||
ASTPtr ast;
|
||
Expected expected = "";
|
||
bool parse_res = parser.parse(pos, end, ast, expected);
|
||
|
||
/// Распарсенный запрос должен заканчиваться на конец входных данных или на точку с запятой.
|
||
if (!parse_res || (pos != end && *pos != ';'))
|
||
throw Exception(getSyntaxErrorMessage(parse_res, begin, end, pos, expected, "in file " + metadata_path),
|
||
DB::ErrorCodes::SYNTAX_ERROR);
|
||
|
||
ASTCreateQuery & ast_create_query = typeid_cast<ASTCreateQuery &>(*ast);
|
||
ast_create_query.attach = false;
|
||
ast_create_query.database = db;
|
||
ast_create_query.query_string = query;
|
||
|
||
return ast;
|
||
}
|
||
|
||
|
||
Settings Context::getSettings() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return settings;
|
||
}
|
||
|
||
|
||
Limits Context::getLimits() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return settings.limits;
|
||
}
|
||
|
||
|
||
void Context::setSettings(const Settings & settings_)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
settings = settings_;
|
||
}
|
||
|
||
|
||
void Context::setSetting(const String & name, const Field & value)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
if (name == "profile")
|
||
settings.setProfile(value.safeGet<String>(), *shared->users_config);
|
||
else
|
||
settings.set(name, value);
|
||
}
|
||
|
||
|
||
void Context::setSetting(const String & name, const std::string & value)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
if (name == "profile")
|
||
settings.setProfile(value, *shared->users_config);
|
||
else
|
||
settings.set(name, value);
|
||
}
|
||
|
||
|
||
String Context::getCurrentDatabase() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return current_database;
|
||
}
|
||
|
||
|
||
String Context::getCurrentQueryId() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return current_query_id;
|
||
}
|
||
|
||
|
||
void Context::setCurrentDatabase(const String & name)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
assertDatabaseExists(name);
|
||
current_database = name;
|
||
}
|
||
|
||
|
||
void Context::setCurrentQueryId(const String & query_id)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
current_query_id = query_id;
|
||
}
|
||
|
||
|
||
String Context::getDefaultFormat() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
return default_format.empty() ? "TabSeparated" : default_format;
|
||
}
|
||
|
||
|
||
void Context::setDefaultFormat(const String & name)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
default_format = name;
|
||
}
|
||
|
||
const Macros& Context::getMacros() const
|
||
{
|
||
return shared->macros;
|
||
}
|
||
|
||
void Context::setMacros(Macros && macros)
|
||
{
|
||
/// Полагаемся, что это присваивание происходит один раз при старте сервера. Если это не так, нужно использовать мьютекс.
|
||
shared->macros = macros;
|
||
}
|
||
|
||
|
||
Context & Context::getSessionContext()
|
||
{
|
||
if (!session_context)
|
||
throw Exception("There is no session", ErrorCodes::THERE_IS_NO_SESSION);
|
||
return *session_context;
|
||
}
|
||
|
||
|
||
Context & Context::getGlobalContext()
|
||
{
|
||
if (!global_context)
|
||
throw Exception("Logical error: there is no global context", ErrorCodes::LOGICAL_ERROR);
|
||
return *global_context;
|
||
}
|
||
|
||
|
||
const Dictionaries & Context::getDictionaries() const
|
||
{
|
||
return getDictionariesImpl(false);
|
||
}
|
||
|
||
|
||
const ExternalDictionaries & Context::getExternalDictionaries() const
|
||
{
|
||
return getExternalDictionariesImpl(false);
|
||
}
|
||
|
||
|
||
const Dictionaries & Context::getDictionariesImpl(const bool throw_on_error) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (!shared->dictionaries)
|
||
shared->dictionaries = new Dictionaries{throw_on_error};
|
||
|
||
return *shared->dictionaries;
|
||
}
|
||
|
||
|
||
const ExternalDictionaries & Context::getExternalDictionariesImpl(const bool throw_on_error) const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (!shared->external_dictionaries)
|
||
{
|
||
if (!this->global_context)
|
||
throw Exception("Logical error: there is no global context", ErrorCodes::LOGICAL_ERROR);
|
||
shared->external_dictionaries = new ExternalDictionaries{*this->global_context, throw_on_error};
|
||
}
|
||
|
||
return *shared->external_dictionaries;
|
||
}
|
||
|
||
|
||
void Context::tryCreateDictionaries() const
|
||
{
|
||
static_cast<void>(getDictionariesImpl(true));
|
||
}
|
||
|
||
|
||
void Context::tryCreateExternalDictionaries() const
|
||
{
|
||
static_cast<void>(getExternalDictionariesImpl(true));
|
||
}
|
||
|
||
|
||
void Context::setProgressCallback(ProgressCallback callback)
|
||
{
|
||
/// Колбек устанавливается на сессию или на запрос. В сессии одновременно обрабатывается только один запрос. Поэтому блокировка не нужна.
|
||
progress_callback = callback;
|
||
}
|
||
|
||
ProgressCallback Context::getProgressCallback() const
|
||
{
|
||
return progress_callback;
|
||
}
|
||
|
||
|
||
void Context::setProcessListElement(ProcessList::Element * elem)
|
||
{
|
||
/// Устанавливается на сессию или на запрос. В сессии одновременно обрабатывается только один запрос. Поэтому блокировка не нужна.
|
||
process_list_elem = elem;
|
||
}
|
||
|
||
ProcessList::Element * Context::getProcessListElement()
|
||
{
|
||
return process_list_elem;
|
||
}
|
||
|
||
|
||
void Context::setUncompressedCache(size_t max_size_in_bytes)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (shared->uncompressed_cache)
|
||
throw Exception("Uncompressed cache has been already created.", ErrorCodes::LOGICAL_ERROR);
|
||
|
||
shared->uncompressed_cache = new UncompressedCache(max_size_in_bytes);
|
||
}
|
||
|
||
|
||
UncompressedCachePtr Context::getUncompressedCache() const
|
||
{
|
||
/// Исходим из допущения, что функция setUncompressedCache, если вызывалась, то раньше. Иначе поставьте mutex.
|
||
return shared->uncompressed_cache;
|
||
}
|
||
|
||
void Context::setMarkCache(size_t cache_size_in_bytes)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (shared->mark_cache)
|
||
throw Exception("Uncompressed cache has been already created.", ErrorCodes::LOGICAL_ERROR);
|
||
|
||
shared->mark_cache = new MarkCache(cache_size_in_bytes);
|
||
}
|
||
|
||
MarkCachePtr Context::getMarkCache() const
|
||
{
|
||
/// Исходим из допущения, что функция setMarksCache, если вызывалась, то раньше. Иначе поставьте mutex.
|
||
return shared->mark_cache;
|
||
}
|
||
|
||
BackgroundProcessingPool & Context::getBackgroundPool()
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
if (!shared->background_pool)
|
||
shared->background_pool = new BackgroundProcessingPool(settings.background_pool_size);
|
||
return *shared->background_pool;
|
||
}
|
||
|
||
void Context::resetCaches() const
|
||
{
|
||
/// Исходим из допущения, что функции setUncompressedCache, setMarkCache, если вызывались, то раньше (при старте сервера). Иначе поставьте mutex.
|
||
|
||
if (shared->uncompressed_cache)
|
||
shared->uncompressed_cache->reset();
|
||
|
||
if (shared->mark_cache)
|
||
shared->mark_cache->reset();
|
||
}
|
||
|
||
void Context::setZooKeeper(zkutil::ZooKeeperPtr zookeeper)
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (shared->zookeeper)
|
||
throw Exception("ZooKeeper client has already been set.", ErrorCodes::LOGICAL_ERROR);
|
||
|
||
shared->zookeeper = zookeeper;
|
||
}
|
||
|
||
zkutil::ZooKeeperPtr Context::getZooKeeper() const
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (shared->zookeeper && shared->zookeeper->expired())
|
||
shared->zookeeper = shared->zookeeper->startNewSession();
|
||
|
||
return shared->zookeeper;
|
||
}
|
||
|
||
|
||
void Context::setInterserverIOAddress(const String & host, UInt16 port)
|
||
{
|
||
shared->interserver_io_host = host;
|
||
shared->interserver_io_port = port;
|
||
}
|
||
|
||
|
||
std::pair<String, UInt16> Context::getInterserverIOAddress() const
|
||
{
|
||
if (shared->interserver_io_host.empty() || shared->interserver_io_port == 0)
|
||
throw Exception("Parameter 'interserver_http_port' required for replication is not specified in configuration file.",
|
||
ErrorCodes::NO_ELEMENTS_IN_CONFIG);
|
||
|
||
return { shared->interserver_io_host, shared->interserver_io_port };
|
||
}
|
||
|
||
|
||
void Context::initClusters()
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
if (!shared->clusters)
|
||
shared->clusters = new Clusters(settings, shared->data_type_factory);
|
||
}
|
||
|
||
Cluster & Context::getCluster(const std::string & cluster_name)
|
||
{
|
||
if (!shared->clusters)
|
||
throw Poco::Exception("Clusters have not been initialized yet.");
|
||
|
||
Clusters::Impl::iterator it = shared->clusters->impl.find(cluster_name);
|
||
if (it != shared->clusters->impl.end())
|
||
return it->second;
|
||
else
|
||
throw Poco::Exception("Failed to find cluster with name = " + cluster_name);
|
||
}
|
||
|
||
|
||
Compiler & Context::getCompiler()
|
||
{
|
||
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
||
|
||
if (!shared->compiler)
|
||
shared->compiler.reset(new Compiler{ shared->path + "build/", 1 });
|
||
|
||
return *shared->compiler;
|
||
}
|
||
|
||
|
||
}
|