2021-03-06 10:51:39 +00:00
|
|
|
#include <functional>
|
2017-11-11 01:04:14 +00:00
|
|
|
#include <iostream>
|
2020-09-26 00:38:59 +00:00
|
|
|
#include <string_view>
|
2017-11-11 01:04:14 +00:00
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
|
|
|
|
#include <IO/ReadBufferFromFileDescriptor.h>
|
|
|
|
#include <IO/ReadHelpers.h>
|
2020-09-26 00:38:59 +00:00
|
|
|
#include <IO/WriteBufferFromFileDescriptor.h>
|
2020-11-09 16:05:40 +00:00
|
|
|
#include <IO/WriteBufferFromOStream.h>
|
2021-02-28 10:59:10 +00:00
|
|
|
#include <Parsers/ASTInsertQuery.h>
|
2017-11-11 01:04:14 +00:00
|
|
|
#include <Parsers/ParserQuery.h>
|
|
|
|
#include <Parsers/formatAST.h>
|
2020-09-26 00:38:59 +00:00
|
|
|
#include <Parsers/obfuscateQueries.h>
|
2021-02-28 10:59:10 +00:00
|
|
|
#include <Parsers/parseQuery.h>
|
|
|
|
#include <Common/ErrorCodes.h>
|
2019-08-23 15:47:27 +00:00
|
|
|
#include <Common/TerminalSize.h>
|
2017-11-11 01:04:14 +00:00
|
|
|
|
2020-09-26 00:38:59 +00:00
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/registerFunctions.h>
|
|
|
|
#include <AggregateFunctions/AggregateFunctionFactory.h>
|
|
|
|
#include <AggregateFunctions/registerAggregateFunctions.h>
|
|
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
#include <TableFunctions/registerTableFunctions.h>
|
|
|
|
#include <Storages/StorageFactory.h>
|
|
|
|
#include <Storages/registerStorages.h>
|
|
|
|
#include <DataTypes/DataTypeFactory.h>
|
|
|
|
|
|
|
|
|
2019-12-15 06:34:43 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-declarations"
|
|
|
|
|
2021-02-28 10:59:10 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int INVALID_FORMAT_INSERT_QUERY_WITH_DATA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-11 01:04:14 +00:00
|
|
|
int mainEntryClickHouseFormat(int argc, char ** argv)
|
|
|
|
{
|
|
|
|
using namespace DB;
|
|
|
|
|
2019-08-23 15:47:27 +00:00
|
|
|
boost::program_options::options_description desc = createOptionsDescription("Allowed options", getTerminalWidth());
|
2017-11-11 01:04:14 +00:00
|
|
|
desc.add_options()
|
|
|
|
("help,h", "produce help message")
|
|
|
|
("hilite", "add syntax highlight with ANSI terminal escape sequences")
|
|
|
|
("oneline", "format in single line")
|
|
|
|
("quiet,q", "just check syntax, no output on success")
|
2020-05-12 14:56:52 +00:00
|
|
|
("multiquery,n", "allow multiple queries in the same file")
|
2020-09-26 00:38:59 +00:00
|
|
|
("obfuscate", "obfuscate instead of formatting")
|
2021-03-06 10:51:39 +00:00
|
|
|
("backslash", "add a backslash at the end of each line of the formatted query")
|
2020-09-26 00:38:59 +00:00
|
|
|
("seed", po::value<std::string>(), "seed (arbitrary string) that determines the result of obfuscation")
|
2017-11-11 01:04:14 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
boost::program_options::variables_map options;
|
|
|
|
boost::program_options::store(boost::program_options::parse_command_line(argc, argv, desc), options);
|
|
|
|
|
|
|
|
if (options.count("help"))
|
|
|
|
{
|
|
|
|
std::cout << "Usage: " << argv[0] << " [options] < query" << std::endl;
|
|
|
|
std::cout << desc << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
bool hilite = options.count("hilite");
|
|
|
|
bool oneline = options.count("oneline");
|
|
|
|
bool quiet = options.count("quiet");
|
2020-05-12 14:56:52 +00:00
|
|
|
bool multiple = options.count("multiquery");
|
2020-09-26 00:38:59 +00:00
|
|
|
bool obfuscate = options.count("obfuscate");
|
2021-03-06 10:51:39 +00:00
|
|
|
bool backslash = options.count("backslash");
|
2020-09-26 00:38:59 +00:00
|
|
|
|
|
|
|
if (quiet && (hilite || oneline || obfuscate))
|
|
|
|
{
|
|
|
|
std::cerr << "Options 'hilite' or 'oneline' or 'obfuscate' have no sense in 'quiet' mode." << std::endl;
|
|
|
|
return 2;
|
|
|
|
}
|
2017-11-11 01:04:14 +00:00
|
|
|
|
2020-09-26 00:38:59 +00:00
|
|
|
if (obfuscate && (hilite || oneline || quiet))
|
2017-11-11 01:04:14 +00:00
|
|
|
{
|
2020-09-26 00:38:59 +00:00
|
|
|
std::cerr << "Options 'hilite' or 'oneline' or 'quiet' have no sense in 'obfuscate' mode." << std::endl;
|
2017-11-11 01:04:14 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
String query;
|
|
|
|
ReadBufferFromFileDescriptor in(STDIN_FILENO);
|
|
|
|
readStringUntilEOF(query, in);
|
|
|
|
|
2020-09-26 00:38:59 +00:00
|
|
|
if (obfuscate)
|
2020-05-12 16:13:34 +00:00
|
|
|
{
|
2020-09-26 00:38:59 +00:00
|
|
|
WordMap obfuscated_words_map;
|
|
|
|
WordSet used_nouns;
|
|
|
|
SipHash hash_func;
|
|
|
|
|
|
|
|
if (options.count("seed"))
|
2020-05-12 14:56:52 +00:00
|
|
|
{
|
2020-09-26 00:38:59 +00:00
|
|
|
std::string seed;
|
|
|
|
hash_func.update(options["seed"].as<std::string>());
|
2020-05-12 14:56:52 +00:00
|
|
|
}
|
2020-09-26 00:38:59 +00:00
|
|
|
|
|
|
|
SharedContextHolder shared_context = Context::createShared();
|
2021-04-10 23:33:54 +00:00
|
|
|
auto context = Context::createGlobal(shared_context.get());
|
|
|
|
context->makeGlobalContext();
|
2020-09-26 00:38:59 +00:00
|
|
|
|
|
|
|
registerFunctions();
|
|
|
|
registerAggregateFunctions();
|
|
|
|
registerTableFunctions();
|
|
|
|
registerStorages();
|
|
|
|
|
|
|
|
std::unordered_set<std::string> additional_names;
|
|
|
|
|
|
|
|
auto all_known_storage_names = StorageFactory::instance().getAllRegisteredNames();
|
|
|
|
auto all_known_data_type_names = DataTypeFactory::instance().getAllRegisteredNames();
|
|
|
|
|
|
|
|
additional_names.insert(all_known_storage_names.begin(), all_known_storage_names.end());
|
|
|
|
additional_names.insert(all_known_data_type_names.begin(), all_known_data_type_names.end());
|
|
|
|
|
|
|
|
KnownIdentifierFunc is_known_identifier = [&](std::string_view name)
|
|
|
|
{
|
|
|
|
std::string what(name);
|
|
|
|
|
|
|
|
return FunctionFactory::instance().tryGet(what, context) != nullptr
|
|
|
|
|| AggregateFunctionFactory::instance().isAggregateFunctionName(what)
|
|
|
|
|| TableFunctionFactory::instance().isTableFunctionName(what)
|
|
|
|
|| additional_names.count(what);
|
|
|
|
};
|
|
|
|
|
|
|
|
WriteBufferFromFileDescriptor out(STDOUT_FILENO);
|
|
|
|
obfuscateQueries(query, out, obfuscated_words_map, used_nouns, hash_func, is_known_identifier);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char * pos = query.data();
|
|
|
|
const char * end = pos + query.size();
|
|
|
|
|
|
|
|
ParserQuery parser(end);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ASTPtr res = parseQueryAndMovePosition(parser, pos, end, "query", multiple, 0, DBMS_DEFAULT_MAX_PARSER_DEPTH);
|
2021-02-28 10:59:10 +00:00
|
|
|
/// For insert query with data(INSERT INTO ... VALUES ...), will lead to format fail,
|
|
|
|
/// should throw exception early and make exception message more readable.
|
|
|
|
if (const auto * insert_query = res->as<ASTInsertQuery>(); insert_query && insert_query->data)
|
|
|
|
{
|
|
|
|
throw Exception(
|
|
|
|
"Can't format ASTInsertQuery with data, since data will be lost",
|
|
|
|
DB::ErrorCodes::INVALID_FORMAT_INSERT_QUERY_WITH_DATA);
|
|
|
|
}
|
2020-09-26 00:38:59 +00:00
|
|
|
if (!quiet)
|
|
|
|
{
|
2021-03-06 10:51:39 +00:00
|
|
|
if (!backslash)
|
|
|
|
{
|
|
|
|
WriteBufferFromOStream res_buf(std::cout, 4096);
|
|
|
|
formatAST(*res, res_buf, hilite, oneline);
|
|
|
|
res_buf.next();
|
|
|
|
if (multiple)
|
|
|
|
std::cout << "\n;\n";
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
/// add additional '\' at the end of each line;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WriteBufferFromOwnString str_buf;
|
|
|
|
formatAST(*res, str_buf, hilite, oneline);
|
|
|
|
|
|
|
|
auto res_string = str_buf.str();
|
|
|
|
WriteBufferFromOStream res_cout(std::cout, 4096);
|
|
|
|
|
|
|
|
const char * s_pos= res_string.data();
|
|
|
|
const char * s_end = s_pos + res_string.size();
|
|
|
|
|
|
|
|
while (s_pos != s_end)
|
|
|
|
{
|
|
|
|
if (*s_pos == '\n')
|
|
|
|
res_cout.write(" \\", 2);
|
|
|
|
res_cout.write(*s_pos++);
|
|
|
|
}
|
|
|
|
|
|
|
|
res_cout.next();
|
|
|
|
if (multiple)
|
|
|
|
std::cout << " \\\n;\n";
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
2020-09-26 00:38:59 +00:00
|
|
|
}
|
2021-03-05 15:44:06 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
/// skip spaces to avoid throw exception after last query
|
|
|
|
while (pos != end && std::isspace(*pos))
|
|
|
|
++pos;
|
|
|
|
|
|
|
|
/// for skip comment after the last query and to not throw exception
|
|
|
|
if (end - pos > 2 && *pos == '-' && *(pos + 1) == '-')
|
|
|
|
{
|
|
|
|
pos += 2;
|
|
|
|
/// skip until the end of the line
|
|
|
|
while (pos != end && *pos != '\n')
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
/// need to parse next sql
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
} while (pos != end);
|
|
|
|
|
2020-09-26 00:38:59 +00:00
|
|
|
} while (multiple && pos != end);
|
|
|
|
}
|
2017-11-11 01:04:14 +00:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2020-12-23 21:18:08 +00:00
|
|
|
std::cerr << getCurrentExceptionMessage(true) << '\n';
|
2017-11-11 01:04:14 +00:00
|
|
|
return getCurrentExceptionCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|