#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace DB::ErrorCodes { extern const int NOT_IMPLEMENTED; } namespace { void skipSpacesAndComments(const char*& pos, const char* end, bool print_comments) { do { /// skip spaces to avoid throw exception after last query while (pos != end && std::isspace(*pos)) ++pos; const char * comment_begin = 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; if (print_comments) std::cout << std::string_view(comment_begin, pos - comment_begin) << "\n"; } /// need to parse next sql else break; } while (pos != end); } } #pragma clang diagnostic ignored "-Wunused-function" #pragma clang diagnostic ignored "-Wmissing-declarations" extern const char * auto_time_zones[]; int mainEntryClickHouseFormat(int argc, char ** argv) { using namespace DB; try { boost::program_options::options_description desc = createOptionsDescription("Allowed options", getTerminalWidth()); desc.add_options() ("query", po::value(), "query to format") ("help,h", "produce help message") ("comments", "keep comments in the output") ("hilite", "add syntax highlight with ANSI terminal escape sequences") ("oneline", "format in single line") ("max_line_length", po::value()->default_value(0), "format in single line queries with length less than specified") ("quiet,q", "just check syntax, no output on success") ("multiquery,n", "allow multiple queries in the same file") ("obfuscate", "obfuscate instead of formatting") ("backslash", "add a backslash at the end of each line of the formatted query") ("allow_settings_after_format_in_insert", "Allow SETTINGS after FORMAT, but note, that this is not always safe") ("seed", po::value(), "seed (arbitrary string) that determines the result of obfuscation") ; Settings cmd_settings; for (const auto & field : cmd_settings.all()) { std::string_view name = field.getName(); if (name == "max_parser_depth" || name == "max_query_size") addProgramOption(cmd_settings, desc, name, field); } boost::program_options::variables_map options; boost::program_options::store(boost::program_options::parse_command_line(argc, argv, desc), options); po::notify(options); if (options.count("help")) { std::cout << "Usage: " << argv[0] << " [options] < query" << std::endl; std::cout << desc << std::endl; return 1; } bool hilite = options.count("hilite"); bool oneline = options.count("oneline"); bool quiet = options.count("quiet"); bool multiple = options.count("multiquery"); bool print_comments = options.count("comments"); size_t max_line_length = options["max_line_length"].as(); bool obfuscate = options.count("obfuscate"); bool backslash = options.count("backslash"); bool allow_settings_after_format_in_insert = options.count("allow_settings_after_format_in_insert"); if (quiet && (hilite || oneline || obfuscate)) { std::cerr << "Options 'hilite' or 'oneline' or 'obfuscate' have no sense in 'quiet' mode." << std::endl; return 2; } if (obfuscate && (hilite || oneline || quiet)) { std::cerr << "Options 'hilite' or 'oneline' or 'quiet' have no sense in 'obfuscate' mode." << std::endl; return 2; } if (oneline && max_line_length) { std::cerr << "Options 'oneline' and 'max_line_length' are mutually exclusive." << std::endl; return 2; } if (max_line_length > 255) { std::cerr << "Option 'max_line_length' must be less than 256." << std::endl; return 2; } String query; if (options.count("query")) { query = options["query"].as(); } else { ReadBufferFromFileDescriptor in(STDIN_FILENO); readStringUntilEOF(query, in); } if (obfuscate) { WordMap obfuscated_words_map; WordSet used_nouns; SipHash hash_func; if (options.count("seed")) { hash_func.update(options["seed"].as()); } registerInterpreters(); registerFunctions(); registerAggregateFunctions(); registerTableFunctions(); registerDatabases(); registerStorages(); registerFormats(); std::unordered_set additional_names; auto all_known_storage_names = StorageFactory::instance().getAllRegisteredNames(); auto all_known_data_type_names = DataTypeFactory::instance().getAllRegisteredNames(); auto all_known_settings = Settings().getAllRegisteredNames(); auto all_known_merge_tree_settings = MergeTreeSettings().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()); additional_names.insert(all_known_settings.begin(), all_known_settings.end()); additional_names.insert(all_known_merge_tree_settings.begin(), all_known_merge_tree_settings.end()); for (auto * it = auto_time_zones; *it; ++it) { String time_zone_name = *it; /// Example: Europe/Amsterdam Strings split; boost::split(split, time_zone_name, [](char c){ return c == '/'; }); for (const auto & word : split) if (!word.empty()) additional_names.insert(word); } KnownIdentifierFunc is_known_identifier = [&](std::string_view name) { std::string what(name); return FunctionFactory::instance().has(what) || AggregateFunctionFactory::instance().isAggregateFunctionName(what) || TableFunctionFactory::instance().isTableFunctionName(what) || FormatFactory::instance().isOutputFormat(what) || FormatFactory::instance().isInputFormat(what) || additional_names.contains(what); }; WriteBufferFromFileDescriptor out(STDOUT_FILENO); obfuscateQueries(query, out, obfuscated_words_map, used_nouns, hash_func, is_known_identifier); out.finalize(); } else { const char * pos = query.data(); const char * end = pos + query.size(); skipSpacesAndComments(pos, end, print_comments); ParserQuery parser(end, allow_settings_after_format_in_insert); while (pos != end) { size_t approx_query_length = multiple ? find_first_symbols<';'>(pos, end) - pos : end - pos; ASTPtr res = parseQueryAndMovePosition( parser, pos, end, "query", multiple, cmd_settings.max_query_size, cmd_settings.max_parser_depth, cmd_settings.max_parser_backtracks); std::unique_ptr insert_query_payload; /// If the query is INSERT ... VALUES, then we will try to parse the data. if (auto * insert_query = res->as(); insert_query && insert_query->data) { if ("Values" != insert_query->format) throw Exception(DB::ErrorCodes::NOT_IMPLEMENTED, "Can't format INSERT query with data format '{}'", insert_query->format); /// Reset format to default to have `INSERT INTO table VALUES` instead of `INSERT INTO table VALUES FORMAT Values` insert_query->format = {}; /// We assume that data ends with a newline character (same as client does) const char * this_query_end = find_first_symbols<'\n'>(insert_query->data, end); insert_query->end = this_query_end; pos = this_query_end; insert_query_payload = getReadBufferFromASTInsertQuery(res); } if (!quiet) { if (!backslash) { WriteBufferFromOwnString str_buf; formatAST(*res, str_buf, hilite, oneline || approx_query_length < max_line_length); if (insert_query_payload) { str_buf.write(' '); copyData(*insert_query_payload, str_buf); } String res_string = str_buf.str(); const char * s_pos = res_string.data(); const char * s_end = s_pos + res_string.size(); /// remove trailing spaces while (s_end > s_pos && isWhitespaceASCIIOneLine(*(s_end - 1))) --s_end; WriteBufferFromOStream res_cout(std::cout, 4096); /// For multiline queries we print ';' at new line, /// but for single line queries we print ';' at the same line bool has_multiple_lines = false; while (s_pos != s_end) { if (*s_pos == '\n') has_multiple_lines = true; res_cout.write(*s_pos++); } res_cout.finalize(); if (multiple && !insert_query_payload) { if (oneline || !has_multiple_lines) std::cout << ";\n"; else std::cout << "\n;\n"; } else if (multiple && insert_query_payload) /// Do not need to add ; because it's already in the insert_query_payload std::cout << "\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.finalize(); if (multiple) std::cout << " \\\n;\n"; std::cout << std::endl; } } skipSpacesAndComments(pos, end, print_comments); if (!multiple) break; } } } catch (...) { std::cerr << getCurrentExceptionMessage(true) << '\n'; return getCurrentExceptionCode(); } return 0; }