mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
93efbc390d
Stop linking plugins to the server executable on Windows. Instead, extract whole server functionality into a large DLL, called server.dll. Link both plugins, and small server "stub" exe to it. This eliminates plugin dependency on the name of the server executable. It also reduces the size of the packages (since tiny mysqld.exe and mariadbd.exe are now both linked to one big DLL) Also, simplify the functionality of exporing all symbols from selected static libraries. Rely on WINDOWS_EXPORT_ALL_SYMBOLS, rather than old self-backed solution. fix compile error replace GetProcAddress(GetModuleHandle(NULL), "variable_name") for server exported data with actual variable names. Runtime loading was never required,was error prone , since symbols could be missing at runtime, and now it actually failed, because we do not export symbols from executable anymore, but from a shared library This did require a MYSQL_PLUGIN_IMPORT decoration for the plugin, but made the code more straightforward, and avoids missing symbols at runtime (as mentioned before). The audit plugin is still doing some dynamic loading, as it aims to work cross-version. Now it won't work cross-version on Windows, as it already uses some symbols that are *not* dynamically loaded, e.g fn_format and those symbols now exported from server.dll , when earlier they were exported by mysqld.exe Windows, fixes for storage engine plugin loading after various rebranding stuff Create server.dll containing functionality of the whole server make mariadbd.exe/mysqld.exe a stub that is only calling mysqld_main() fix build
121 lines
5.1 KiB
C++
121 lines
5.1 KiB
C++
/*
|
|
Copyright (c) 2013, Spaempresarial - Brazil, Roberto Spadim
|
|
http://www.spadim.com.br/
|
|
roberto@spadim.com.br
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
* Neither the name of the Roberto Spadim nor the
|
|
names of the contributors may be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL ROBERTO SPADIM BE LIABLE FOR ANY
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <my_global.h>
|
|
#include <sql_class.h> // THD
|
|
#include <sql_i_s.h> // ST_SCHEMA_TABLE
|
|
#include <mysql/plugin.h>
|
|
#include <m_ctype.h>
|
|
#include "sql_locale.h"
|
|
|
|
static MY_LOCALE **locale_list;
|
|
|
|
namespace Show {
|
|
|
|
/* LOCALES */
|
|
static ST_FIELD_INFO locale_info_locale_fields_info[]=
|
|
{
|
|
Column("ID", SLonglong(4), NOT_NULL, "Id"),
|
|
Column("NAME", Varchar(255), NOT_NULL, "Name"),
|
|
Column("DESCRIPTION", Varchar(255), NOT_NULL, "Description"),
|
|
Column("MAX_MONTH_NAME_LENGTH", SLonglong(4), NOT_NULL),
|
|
Column("MAX_DAY_NAME_LENGTH", SLonglong(4), NOT_NULL),
|
|
Column("DECIMAL_POINT", Varchar(2), NOT_NULL),
|
|
Column("THOUSAND_SEP", Varchar(2), NOT_NULL),
|
|
Column("ERROR_MESSAGE_LANGUAGE", Varchar(64), NOT_NULL, "Error_Message_Language"),
|
|
CEnd()
|
|
};
|
|
|
|
} // namespace Show
|
|
|
|
static int locale_info_fill_table_locale(THD* thd, TABLE_LIST* tables, COND* cond)
|
|
{
|
|
TABLE *table= tables->table;
|
|
CHARSET_INFO *cs= system_charset_info;
|
|
|
|
for (MY_LOCALE **loc= locale_list; *loc; loc++)
|
|
{
|
|
/* ID */
|
|
table->field[0]->store((longlong) (*loc)->number, TRUE);
|
|
/* NAME */
|
|
table->field[1]->store((*loc)->name, strlen((*loc)->name), cs);
|
|
/* DESCRIPTION */
|
|
table->field[2]->store((*loc)->description, strlen((*loc)->description), cs);
|
|
/* MAX_MONTH_NAME_LENGTH */
|
|
table->field[3]->store((longlong) (*loc)->max_month_name_length, TRUE);
|
|
/* MAX_DAY_NAME_LENGTH */
|
|
table->field[4]->store((longlong) (*loc)->max_day_name_length, TRUE);
|
|
/* DECIMAL_POINT */
|
|
char decimal= (*loc)->decimal_point;
|
|
table->field[5]->store(&decimal, decimal ? 1 : 0, cs);
|
|
/* THOUSAND_SEP */
|
|
char thousand= (*loc)->thousand_sep;
|
|
table->field[6]->store(&thousand, thousand ? 1 : 0, cs);
|
|
/* ERROR_MESSAGE_LANGUAGE */
|
|
table->field[7]->store((*loc)->errmsgs->language,
|
|
strlen((*loc)->errmsgs->language), cs);
|
|
if (schema_table_store_record(thd, table))
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int locale_info_plugin_init_locales(void *p)
|
|
{
|
|
ST_SCHEMA_TABLE *schema= (ST_SCHEMA_TABLE *)p;
|
|
schema->fields_info= Show::locale_info_locale_fields_info;
|
|
schema->fill_table= locale_info_fill_table_locale;
|
|
|
|
locale_list = my_locales;
|
|
|
|
return 0;
|
|
}
|
|
static struct st_mysql_information_schema locale_info_plugin=
|
|
{ MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION };
|
|
|
|
/*
|
|
Plugin library descriptor
|
|
*/
|
|
|
|
maria_declare_plugin(locales)
|
|
{
|
|
MYSQL_INFORMATION_SCHEMA_PLUGIN, /* the plugin type (see include/mysql/plugin.h) */
|
|
&locale_info_plugin, /* pointer to type-specific plugin descriptor */
|
|
"LOCALES", /* plugin name */
|
|
"Roberto Spadim, Spaempresarial - Brazil", /* plugin author */
|
|
"Lists all locales from server.", /* the plugin description */
|
|
PLUGIN_LICENSE_BSD, /* the plugin license (see include/mysql/plugin.h) */
|
|
locale_info_plugin_init_locales, /* Pointer to plugin initialization function */
|
|
0, /* Pointer to plugin deinitialization function */
|
|
0x0100, /* Numeric version 0xAABB means AA.BB version */
|
|
NULL, /* Status variables */
|
|
NULL, /* System variables */
|
|
"1.0", /* String version representation */
|
|
MariaDB_PLUGIN_MATURITY_STABLE /* Maturity (see include/mysql/plugin.h)*/
|
|
}
|
|
maria_declare_plugin_end;
|