1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-13 01:01:44 +03:00
mariadb/storage/test_sql_discovery/test_sql_discovery.cc
2013-04-09 16:19:10 +02:00

176 lines
4.9 KiB
C++

/*
Copyright (c) 2013 Monty Program Ab
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of
the License.
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 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
*/
/*
a really minimal engine to test table discovery via sql statements.
See the archive engine if you're interested in real-life usable engine that
uses discovery via frm shipping.
*/
#include <mysql_version.h>
#include <handler.h>
#include <table.h>
static MYSQL_THDVAR_STR(statement, PLUGIN_VAR_MEMALLOC,
"The table name and the SQL statement to discover the next table",
NULL, NULL, 0);
static MYSQL_THDVAR_BOOL(write_frm, 0,
"Whether to cache discovered table metadata in frm files",
NULL, NULL, TRUE);
static struct st_mysql_sys_var *sysvars[] = {
MYSQL_SYSVAR(statement),
MYSQL_SYSVAR(write_frm),
NULL
};
typedef struct st_share {
const char *name;
THR_LOCK lock;
uint use_count;
struct st_share *next;
} SHARE;
class ha_tsd: public handler
{
private:
THR_LOCK_DATA lock;
SHARE *share;
public:
ha_tsd(handlerton *hton, TABLE_SHARE *table_arg)
: handler(hton, table_arg) { }
ulonglong table_flags() const
{ // NO_TRANSACTIONS and everything that affects CREATE TABLE
return HA_NO_TRANSACTIONS | HA_CAN_GEOMETRY | HA_NULL_IN_KEY |
HA_CAN_INDEX_BLOBS | HA_AUTO_PART_KEY | HA_CAN_RTREEKEYS |
HA_CAN_FULLTEXT;
}
ulong index_flags(uint inx, uint part, bool all_parts) const { return 0; }
THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
enum thr_lock_type lock_type)
{
if (lock_type != TL_IGNORE && lock.type == TL_UNLOCK)
lock.type = lock_type;
*to ++= &lock;
return to;
}
int rnd_init(bool scan) { return 0; }
int rnd_next(unsigned char *buf) { return HA_ERR_END_OF_FILE; }
void position(const uchar *record) { }
int rnd_pos(uchar *buf, uchar *pos) { return HA_ERR_END_OF_FILE; }
int info(uint flag) { return 0; }
uint max_supported_keys() const { return 16; }
int create(const char *name, TABLE *table_arg,
HA_CREATE_INFO *create_info) { return HA_ERR_WRONG_COMMAND; }
int open(const char *name, int mode, uint test_if_locked);
int close(void);
};
static SHARE *find_or_create_share(const char *table_name, TABLE *table)
{
SHARE *share;
for (share = (SHARE*)table->s->ha_data; share; share = share->next)
if (my_strcasecmp(table_alias_charset, table_name, share->name) == 0)
return share;
share = (SHARE*)alloc_root(&table->s->mem_root, sizeof(*share));
bzero(share, sizeof(*share));
share->name = strdup_root(&table->s->mem_root, table_name);
share->next = (SHARE*)table->s->ha_data;
table->s->ha_data = share;
return share;
}
int ha_tsd::open(const char *name, int mode, uint test_if_locked)
{
mysql_mutex_lock(&table->s->LOCK_ha_data);
share = find_or_create_share(name, table);
if (share->use_count++ == 0)
thr_lock_init(&share->lock);
mysql_mutex_unlock(&table->s->LOCK_ha_data);
thr_lock_data_init(&share->lock,&lock,NULL);
return 0;
}
int ha_tsd::close(void)
{
mysql_mutex_lock(&table->s->LOCK_ha_data);
if (--share->use_count == 0)
thr_lock_delete(&share->lock);
mysql_mutex_unlock(&table->s->LOCK_ha_data);
return 0;
}
static handler *create_handler(handlerton *hton, TABLE_SHARE *table,
MEM_ROOT *mem_root)
{
return new (mem_root) ha_tsd(hton, table);
}
static int discover_table(handlerton *hton, THD* thd, TABLE_SHARE *share)
{
const char *sql= THDVAR(thd, statement);
// the table is discovered if sql starts from "table_name:"
if (!sql ||
strncmp(sql, share->table_name.str, share->table_name.length) ||
sql[share->table_name.length] != ':')
return HA_ERR_NO_SUCH_TABLE;
sql+= share->table_name.length + 1;
return share->init_from_sql_statement_string(thd, THDVAR(thd, write_frm),
sql, strlen(sql));
}
static int init(void *p)
{
handlerton *hton = (handlerton *)p;
hton->create = create_handler;
hton->discover_table = discover_table;
return 0;
}
struct st_mysql_storage_engine descriptor =
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
maria_declare_plugin(test_sql_discovery)
{
MYSQL_STORAGE_ENGINE_PLUGIN,
&descriptor,
"TEST_SQL_DISCOVERY",
"Sergei Golubchik",
"Minimal engine to test table discovery via sql statements",
PLUGIN_LICENSE_GPL,
init,
NULL,
0x0001,
NULL,
sysvars,
"0.1",
MariaDB_PLUGIN_MATURITY_EXPERIMENTAL
}
maria_declare_plugin_end;