/* Copyright (c) 2016, 2024, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is designed to work with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have either included with the program or referenced in the documentation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "sql/dd_sp.h" #include #include #include #include #include #include "lex_string.h" #include "m_string.h" #include "my_alloc.h" #include "my_dbug.h" #include "my_inttypes.h" #include "my_sys.h" #include "mysql/strings/dtoa.h" #include "mysql/strings/m_ctype.h" #include "mysql_com.h" #include "sql/dd/collection.h" #include "sql/dd/properties.h" // Properties #include "sql/dd/string_type.h" // dd::Stringstream_type #include "sql/dd/types/column.h" #include "sql/dd/types/parameter.h" // dd::Parameter #include "sql/dd/types/parameter_type_element.h" // dd::Parameter_type_element #include "sql/dd/types/view.h" #include "sql/dd_table_share.h" // dd_get_mysql_charset, dd_get_old_field_type #include "sql/field.h" #include "sql/gis/srid.h" #include "sql/sp.h" // SP_DEFAULT_ACCESS_MAPPING #include "sql/sql_class.h" // THD #include "sql/sql_lex.h" #include "sql/sql_show.h" #include "sql/system_variables.h" #include "sql/table.h" #include "sql_string.h" #include "string_with_len.h" #include "typelib.h" void prepare_sp_chistics_from_dd_routine(const dd::Routine *routine, st_sp_chistics *sp_chistics) { DBUG_TRACE; sp_chistics->detistic = routine->is_deterministic(); // SQL Data access. switch (routine->sql_data_access()) { case dd::Routine::SDA_NO_SQL: sp_chistics->daccess = SP_NO_SQL; break; case dd::Routine::SDA_CONTAINS_SQL: sp_chistics->daccess = SP_CONTAINS_SQL; break; case dd::Routine::SDA_READS_SQL_DATA: sp_chistics->daccess = SP_READS_SQL_DATA; break; case dd::Routine::SDA_MODIFIES_SQL_DATA: sp_chistics->daccess = SP_MODIFIES_SQL_DATA; break; default: sp_chistics->daccess = SP_DEFAULT_ACCESS_MAPPING; /* purecov: deadcode */ } // External language. if (!routine->external_language().empty()) { sp_chistics->language = {routine->external_language().c_str(), routine->external_language().length()}; } else sp_chistics->language = EMPTY_CSTR; // Security type. sp_chistics->suid = (routine->security_type() == dd::View::ST_INVOKER) ? SP_IS_NOT_SUID : SP_IS_SUID; // comment string. if (!routine->comment().empty()) { sp_chistics->comment = {routine->comment().c_str(), routine->comment().length()}; } else sp_chistics->comment = EMPTY_CSTR; } static Field *make_field(const dd::Parameter ¶m, TABLE_SHARE *share, Field::geometry_type geom_type, TYPELIB *interval) { // Decimals uint numeric_scale = 0; if (param.data_type() == dd::enum_column_types::DECIMAL || param.data_type() == dd::enum_column_types::NEWDECIMAL) numeric_scale = param.numeric_scale(); else if (param.data_type() == dd::enum_column_types::FLOAT || param.data_type() == dd::enum_column_types::DOUBLE) numeric_scale = param.is_numeric_scale_null() ? DECIMAL_NOT_SPECIFIED : param.numeric_scale(); return make_field(*THR_MALLOC, share, nullptr, param.char_length(), nullptr, 0, dd_get_old_field_type(param.data_type()), dd_get_mysql_charset(param.collation_id()), geom_type, Field::NONE, interval, "", false, param.is_zerofill(), param.is_unsigned(), numeric_scale, false, 0, {}, false); } /** Helper method to prepare type in string format from the dd::Parameter's object. This method is called from the prepare_return_type_string_from_dd_routine() and prepare_params_string_from_dd_routine(). @param[in] thd Thread handle. @param[in] param dd::Parameter's object. @param[out] type_str SQL type string prepared from the dd::Parameter's object. */ static void prepare_type_string_from_dd_param(THD *thd, const dd::Parameter *param, String *type_str) { DBUG_TRACE; // ENUM/SET elements. TYPELIB *interval = nullptr; if (param->data_type() == dd::enum_column_types::ENUM || param->data_type() == dd::enum_column_types::SET) { // Allocate space for interval. const size_t interval_parts = param->elements_count(); interval = static_cast(thd->mem_root->Alloc(sizeof(TYPELIB))); interval->type_names = static_cast( thd->mem_root->Alloc((sizeof(char *) * (interval_parts + 1)))); interval->type_names[interval_parts] = nullptr; interval->type_lengths = static_cast( thd->mem_root->Alloc(sizeof(uint) * interval_parts)); interval->count = interval_parts; interval->name = nullptr; for (const dd::Parameter_type_element *pe : param->elements()) { // Read the enum/set element name dd::String_type element_name = pe->name(); uint pos = pe->index() - 1; interval->type_lengths[pos] = static_cast(element_name.length()); interval->type_names[pos] = strmake_root( thd->mem_root, element_name.c_str(), element_name.length()); } } // Geometry sub type Field::geometry_type geom_type = Field::GEOM_GEOMETRY; if (param->data_type() == dd::enum_column_types::GEOMETRY) { uint32 sub_type = 0; param->options().get("geom_type", &sub_type); geom_type = static_cast(sub_type); } // Get type in string format. TABLE table; TABLE_SHARE share; table.in_use = thd; table.s = &share; unique_ptr_destroy_only field( make_field(*param, table.s, geom_type, interval)); field->init(&table); field->sql_type(*type_str); if (field->has_charset()) { type_str->append(STRING_WITH_LEN(" CHARSET ")); type_str->append(field->charset()->csname); if (!(field->charset()->state & MY_CS_PRIMARY)) { type_str->append(STRING_WITH_LEN(" COLLATE ")); type_str->append(field->charset()->m_coll_name); } } } void prepare_return_type_string_from_dd_routine( THD *thd, const dd::Routine *routine, dd::String_type *return_type_str) { DBUG_TRACE; *return_type_str = ""; /* Return type of Stored function is stored as the first parameter in the data dictionary table "Parameters". Stored procedures do not have return type so nothing is done for the stored procedures. */ if (routine->type() == dd::Routine::RT_FUNCTION) { const dd::Routine::Parameter_collection ¶meters = routine->parameters(); if (!parameters.empty()) { const dd::Parameter *param = *parameters.begin(); assert(param->ordinal_position() == 1); String type_str(64); type_str.set_charset(system_charset_info); prepare_type_string_from_dd_param(thd, param, &type_str); *return_type_str = type_str.ptr(); } } } void prepare_params_string_from_dd_routine(THD *thd, const dd::Routine *routine, dd::String_type *params_str) { DBUG_TRACE; *params_str = ""; dd::Stringstream_type params_ss; for (const dd::Parameter *param : routine->parameters()) { /* Return type of stored function is stored as the first parameter. So skip it. */ if (routine->type() == dd::Routine::RT_FUNCTION && param->ordinal_position() == 1) continue; if (params_ss.str().length() > 0) params_ss << ", "; // PARAMETER MODE if (routine->type() == dd::Routine::RT_PROCEDURE) { switch (param->mode()) { case dd::Parameter::PM_IN: params_ss << "IN "; break; case dd::Parameter::PM_OUT: params_ss << "OUT "; break; case dd::Parameter::PM_INOUT: params_ss << "INOUT "; break; } } /* PARAMETER NAME Convert and quote the parameter name if needed. */ String param_str(NAME_LEN + 1); sql_mode_t sql_mode = thd->variables.sql_mode; thd->variables.sql_mode = routine->sql_mode(); append_identifier(thd, ¶m_str, param->name().c_str(), param->name().length()); thd->variables.sql_mode = sql_mode; params_ss << param_str.ptr() << " "; // PARAMETER TYPE String type_str(64); type_str.set_charset(system_charset_info); prepare_type_string_from_dd_param(thd, param, &type_str); params_ss << type_str.ptr(); } if (params_ss.str().length()) *params_str = params_ss.str(); }