2012-08-17 19:53:11 +00:00
|
|
|
|
#include <Poco/File.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>
|
2012-08-02 17:33:31 +00:00
|
|
|
|
#include <DB/Interpreters/Context.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
String Context::getPath() const
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
return shared->path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Context::setPath(const String & path)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
shared->path = path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-08-10 07:46:45 +00:00
|
|
|
|
void Context::initUsersFromConfig()
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
shared->users.initFromConfig();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Context::setUser(const String & name, const String & password, const Poco::Net::IPAddress & address)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
|
|
|
|
|
const User & user_props = shared->users.get(name, password, address);
|
|
|
|
|
setSetting("profile", user_props.profile);
|
|
|
|
|
|
|
|
|
|
user = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
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;
|
|
|
|
|
if (shared->databases.end() == (it = shared->databases.find(db)))
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StoragePtr Context::getTable(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)))
|
|
|
|
|
throw Exception("Database " + db + " doesn't exist", ErrorCodes::UNKNOWN_DATABASE);
|
|
|
|
|
|
|
|
|
|
Tables::const_iterator jt;
|
|
|
|
|
if (it->second.end() == (jt = it->second.find(table_name)))
|
|
|
|
|
throw Exception("Table " + db + "." + table_name + " doesn't exist.", ErrorCodes::UNKNOWN_TABLE);
|
|
|
|
|
|
|
|
|
|
return jt->second;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-06 10:31:35 +00:00
|
|
|
|
StoragePtr Context::tryGetTable(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)))
|
|
|
|
|
return StoragePtr();
|
|
|
|
|
|
|
|
|
|
Tables::const_iterator jt;
|
|
|
|
|
if (it->second.end() == (jt = it->second.find(table_name)))
|
|
|
|
|
return StoragePtr();
|
|
|
|
|
|
|
|
|
|
return jt->second;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
|
|
|
|
|
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];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void 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);
|
|
|
|
|
shared->databases[db].erase(shared->databases[db].find(table_name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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(shared->databases.find(db));
|
2013-02-05 13:03:35 +00:00
|
|
|
|
shared->database_droppers.erase(db);
|
2012-08-02 17:33:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-17 19:53:11 +00:00
|
|
|
|
ASTPtr Context::getCreateQuery(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;
|
|
|
|
|
|
|
|
|
|
assertDatabaseExists(db);
|
|
|
|
|
assertTableExists(db, table_name);
|
|
|
|
|
|
|
|
|
|
/// Здесь хранится определение таблицы
|
|
|
|
|
String metadata_path = shared->path + "metadata/" + escapeForFileName(db) + "/" + escapeForFileName(table_name) + ".sql";
|
2013-06-17 07:01:31 +00:00
|
|
|
|
|
2012-08-17 19:53:11 +00:00
|
|
|
|
if (!Poco::File(metadata_path).exists())
|
2013-06-17 07:01:31 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
/// Если файл .sql не предусмотрен (например, для таблиц типа ChunkRef), то движок может сам предоставить запрос CREATE.
|
|
|
|
|
return getTable(database_name, table_name)->getCustomCreateQuery(*this);
|
|
|
|
|
}
|
|
|
|
|
catch (...)
|
|
|
|
|
{
|
|
|
|
|
throw Exception("Metadata file " + metadata_path + " for table " + db + "." + table_name + " doesn't exist.",
|
|
|
|
|
ErrorCodes::TABLE_METADATA_DOESNT_EXIST);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-17 19:53:11 +00:00
|
|
|
|
|
2013-02-11 11:22:15 +00:00
|
|
|
|
StringPtr query = new String();
|
2012-08-17 19:53:11 +00:00
|
|
|
|
{
|
|
|
|
|
ReadBufferFromFile in(metadata_path);
|
2013-02-11 11:22:15 +00:00
|
|
|
|
WriteBufferFromString out(*query);
|
2012-08-17 19:53:11 +00:00
|
|
|
|
copyData(in, out);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-11 11:22:15 +00:00
|
|
|
|
const char * begin = query->data();
|
|
|
|
|
const char * end = begin + query->size();
|
2012-08-17 19:53:11 +00:00
|
|
|
|
const char * pos = begin;
|
|
|
|
|
|
|
|
|
|
ParserCreateQuery parser;
|
|
|
|
|
ASTPtr ast;
|
|
|
|
|
String expected;
|
|
|
|
|
bool parse_res = parser.parse(pos, end, ast, expected);
|
|
|
|
|
|
|
|
|
|
/// Распарсенный запрос должен заканчиваться на конец входных данных или на точку с запятой.
|
|
|
|
|
if (!parse_res || (pos != end && *pos != ';'))
|
|
|
|
|
throw DB::Exception("Syntax error while parsing query from file " + metadata_path + ": failed at position "
|
2013-06-21 20:34:19 +00:00
|
|
|
|
+ toString(pos - begin) + ": "
|
2012-08-17 19:53:11 +00:00
|
|
|
|
+ std::string(pos, std::min(SHOW_CHARS_ON_SYNTAX_ERROR, end - pos))
|
|
|
|
|
+ ", expected " + (parse_res ? "end of query" : expected) + ".",
|
|
|
|
|
DB::ErrorCodes::SYNTAX_ERROR);
|
|
|
|
|
|
|
|
|
|
ASTCreateQuery & ast_create_query = dynamic_cast<ASTCreateQuery &>(*ast);
|
|
|
|
|
ast_create_query.attach = false;
|
|
|
|
|
ast_create_query.database = db;
|
2013-02-11 11:22:15 +00:00
|
|
|
|
ast_create_query.query_string = query;
|
2012-08-17 19:53:11 +00:00
|
|
|
|
|
|
|
|
|
return ast;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-02-05 13:03:35 +00:00
|
|
|
|
DatabaseDropperPtr Context::getDatabaseDropper(const String & name)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
|
|
|
|
|
String db = name.empty() ? current_database : name;
|
|
|
|
|
|
|
|
|
|
if (shared->databases.count(db) == 0)
|
|
|
|
|
throw Exception("Database " + db + " doesn't exist", ErrorCodes::UNKNOWN_DATABASE);
|
|
|
|
|
|
|
|
|
|
if (shared->database_droppers.count(db) == 0)
|
|
|
|
|
shared->database_droppers[db] = DatabaseDropperPtr(new DatabaseDropper(shared->path + "data/" + escapeForFileName(db)));
|
|
|
|
|
|
|
|
|
|
return shared->database_droppers[db];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
Settings Context::getSettings() const
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
return settings;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-05-05 20:07:11 +00:00
|
|
|
|
Limits Context::getLimits() const
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
return settings.limits;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
void Context::setSettings(const Settings & settings_)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
settings = settings_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-02 19:03:32 +00:00
|
|
|
|
void Context::setSetting(const String & name, const Field & value)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
settings.set(name, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
String Context::getCurrentDatabase() const
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
return current_database;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Context::setCurrentDatabase(const String & name)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
assertDatabaseExists(name);
|
|
|
|
|
current_database = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-29 18:03:57 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-19 20:15:15 +00:00
|
|
|
|
|
2012-12-21 19:48:47 +00:00
|
|
|
|
const Dictionaries & Context::getDictionaries() const
|
2012-12-19 20:15:15 +00:00
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(shared->mutex);
|
|
|
|
|
|
|
|
|
|
if (!shared->dictionaries)
|
|
|
|
|
shared->dictionaries = new Dictionaries;
|
|
|
|
|
|
|
|
|
|
return *shared->dictionaries;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-16 14:55:14 +00:00
|
|
|
|
|
|
|
|
|
void Context::setProgressCallback(ProgressCallback callback)
|
|
|
|
|
{
|
|
|
|
|
/// Колбек устанавливается на сессию или на запрос. В сессии одновременно обрабатывается только один запрос. Поэтому блокировка не нужна.
|
|
|
|
|
progress_callback = callback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProgressCallback Context::getProgressCallback() const
|
|
|
|
|
{
|
|
|
|
|
return progress_callback;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 17:33:31 +00:00
|
|
|
|
}
|