2021-09-07 23:55:17 +00:00
|
|
|
#include "UserDefinedSQLObjectsLoader.h"
|
2021-08-18 09:29:52 +00:00
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
#include <Common/escapeForFileName.h>
|
|
|
|
#include <Common/quoteString.h>
|
|
|
|
#include <Common/StringUtils/StringUtils.h>
|
|
|
|
|
|
|
|
#include <IO/ReadBufferFromFile.h>
|
|
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
#include <IO/WriteBufferFromFile.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Interpreters/InterpreterCreateFunctionQuery.h>
|
|
|
|
|
|
|
|
#include <Parsers/parseQuery.h>
|
|
|
|
#include <Parsers/ASTCreateFunctionQuery.h>
|
|
|
|
#include <Parsers/formatAST.h>
|
|
|
|
#include <Parsers/ParserCreateFunctionQuery.h>
|
|
|
|
|
|
|
|
#include <Poco/DirectoryIterator.h>
|
|
|
|
#include <Poco/Logger.h>
|
2021-10-02 07:13:14 +00:00
|
|
|
#include <base/logger_useful.h>
|
2021-08-18 09:29:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int OBJECT_ALREADY_STORED_ON_DISK;
|
|
|
|
extern const int OBJECT_WAS_NOT_STORED_ON_DISK;
|
|
|
|
}
|
|
|
|
|
2021-09-07 23:55:17 +00:00
|
|
|
UserDefinedSQLObjectsLoader & UserDefinedSQLObjectsLoader::instance()
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
2021-09-07 23:55:17 +00:00
|
|
|
static UserDefinedSQLObjectsLoader ret;
|
2021-08-18 09:29:52 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-09-07 23:55:17 +00:00
|
|
|
UserDefinedSQLObjectsLoader::UserDefinedSQLObjectsLoader()
|
|
|
|
: log(&Poco::Logger::get("UserDefinedSQLObjectsLoader"))
|
2021-08-18 09:29:52 +00:00
|
|
|
{}
|
|
|
|
|
2021-09-07 23:55:17 +00:00
|
|
|
void UserDefinedSQLObjectsLoader::loadUserDefinedObject(ContextPtr context, UserDefinedSQLObjectType object_type, const std::string_view & name, const String & path)
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
|
|
|
auto name_ref = StringRef(name.data(), name.size());
|
|
|
|
LOG_DEBUG(log, "Loading user defined object {} from file {}", backQuote(name_ref), path);
|
|
|
|
|
|
|
|
/// There is .sql file with user defined object creation statement.
|
2021-08-18 21:54:55 +00:00
|
|
|
ReadBufferFromFile in(path);
|
|
|
|
|
|
|
|
String object_create_query;
|
2021-08-18 09:29:52 +00:00
|
|
|
readStringUntilEOF(object_create_query, in);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch (object_type)
|
|
|
|
{
|
2021-09-07 23:55:17 +00:00
|
|
|
case UserDefinedSQLObjectType::Function:
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
|
|
|
ParserCreateFunctionQuery parser;
|
|
|
|
ASTPtr ast = parseQuery(
|
|
|
|
parser,
|
|
|
|
object_create_query.data(),
|
|
|
|
object_create_query.data() + object_create_query.size(),
|
|
|
|
"in file " + path,
|
|
|
|
0,
|
|
|
|
context->getSettingsRef().max_parser_depth);
|
|
|
|
|
|
|
|
InterpreterCreateFunctionQuery interpreter(ast, context, true /*is internal*/);
|
|
|
|
interpreter.execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception & e)
|
|
|
|
{
|
|
|
|
e.addMessage(fmt::format("while loading user defined objects {} from path {}", backQuote(name_ref), path));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 23:55:17 +00:00
|
|
|
void UserDefinedSQLObjectsLoader::loadObjects(ContextPtr context)
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
|
|
|
LOG_DEBUG(log, "loading user defined objects");
|
|
|
|
|
|
|
|
String dir_path = context->getPath() + "user_defined/";
|
|
|
|
Poco::DirectoryIterator dir_end;
|
|
|
|
for (Poco::DirectoryIterator it(dir_path); it != dir_end; ++it)
|
|
|
|
{
|
|
|
|
if (it->isLink())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const auto & file_name = it.name();
|
|
|
|
|
|
|
|
/// For '.svn', '.gitignore' directory and similar.
|
|
|
|
if (file_name.at(0) == '.')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!it->isDirectory() && endsWith(file_name, ".sql"))
|
|
|
|
{
|
|
|
|
std::string_view object_name = file_name;
|
|
|
|
object_name.remove_suffix(strlen(".sql"));
|
|
|
|
object_name.remove_prefix(strlen("function_"));
|
2021-09-07 23:55:17 +00:00
|
|
|
loadUserDefinedObject(context, UserDefinedSQLObjectType::Function, object_name, dir_path + it.name());
|
2021-08-18 09:29:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 23:55:17 +00:00
|
|
|
void UserDefinedSQLObjectsLoader::storeObject(ContextPtr context, UserDefinedSQLObjectType object_type, const String & object_name, const IAST & ast)
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
|
|
|
String dir_path = context->getPath() + "user_defined/";
|
|
|
|
String file_path;
|
|
|
|
|
|
|
|
switch (object_type)
|
|
|
|
{
|
2021-09-07 23:55:17 +00:00
|
|
|
case UserDefinedSQLObjectType::Function:
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
|
|
|
file_path = dir_path + "function_" + escapeForFileName(object_name) + ".sql";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::filesystem::exists(file_path))
|
|
|
|
throw Exception(ErrorCodes::OBJECT_ALREADY_STORED_ON_DISK, "User defined object {} already stored on disk", backQuote(file_path));
|
|
|
|
|
|
|
|
LOG_DEBUG(log, "Storing object {} to file {}", backQuote(object_name), file_path);
|
|
|
|
|
|
|
|
WriteBufferFromOwnString create_statement_buf;
|
|
|
|
formatAST(ast, create_statement_buf, false);
|
|
|
|
writeChar('\n', create_statement_buf);
|
|
|
|
|
|
|
|
String create_statement = create_statement_buf.str();
|
|
|
|
WriteBufferFromFile out(file_path, create_statement.size(), O_WRONLY | O_CREAT | O_EXCL);
|
|
|
|
writeString(create_statement, out);
|
|
|
|
out.next();
|
|
|
|
if (context->getSettingsRef().fsync_metadata)
|
|
|
|
out.sync();
|
|
|
|
out.close();
|
|
|
|
|
|
|
|
LOG_DEBUG(log, "Stored object {}", backQuote(object_name));
|
|
|
|
}
|
|
|
|
|
2021-09-07 23:55:17 +00:00
|
|
|
void UserDefinedSQLObjectsLoader::removeObject(ContextPtr context, UserDefinedSQLObjectType object_type, const String & object_name)
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
|
|
|
String dir_path = context->getPath() + "user_defined/";
|
|
|
|
LOG_DEBUG(log, "Removing file for user defined object {} from {}", backQuote(object_name), dir_path);
|
|
|
|
|
2021-08-18 21:54:55 +00:00
|
|
|
std::filesystem::path file_path;
|
2021-08-18 09:29:52 +00:00
|
|
|
|
|
|
|
switch (object_type)
|
|
|
|
{
|
2021-09-07 23:55:17 +00:00
|
|
|
case UserDefinedSQLObjectType::Function:
|
2021-08-18 09:29:52 +00:00
|
|
|
{
|
2021-08-18 21:54:55 +00:00
|
|
|
file_path = dir_path + "function_" + escapeForFileName(object_name) + ".sql";
|
2021-08-18 09:29:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!std::filesystem::exists(file_path))
|
|
|
|
throw Exception(ErrorCodes::OBJECT_WAS_NOT_STORED_ON_DISK, "User defined object {} was not stored on disk", backQuote(file_path.string()));
|
|
|
|
|
|
|
|
std::filesystem::remove(file_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|