1 Star 0 Fork 512

dominiciic / sequoiasql-mysql

forked from SequoiaDB / sequoiasql-mysql 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ha_sdb.h 10.66 KB
一键复制 编辑 原始数据 按行查看 历史
Mars 提交于 2019-03-14 15:24 . Improve alteration of indexes. (#43)
/* Copyright (c) 2018, SequoiaDB and/or its affiliates. All rights reserved.
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 */
#include <handler.h>
#include <mysql_version.h>
#include <client.hpp>
#include <vector>
#include "sdb_def.h"
#include "sdb_cl.h"
#include "sdb_util.h"
#include "sdb_lock.h"
/*
Stats that can be retrieved from SequoiaDB.
*/
struct Sdb_statistics {
int32 page_size;
int32 total_data_pages;
int32 total_index_pages;
int64 total_data_free_space;
int64 total_records;
Sdb_statistics() {
page_size = 0;
total_data_pages = 0;
total_index_pages = 0;
total_data_free_space = 0;
total_records = ~(int64)0;
}
};
struct Sdb_share {
char *table_name;
uint table_name_length;
uint use_count;
THR_LOCK lock;
Sdb_mutex mutex;
Sdb_statistics stat;
};
class ha_sdb : public handler {
public:
ha_sdb(handlerton *hton, TABLE_SHARE *table_arg);
~ha_sdb();
/** @brief
The name that will be used for display purposes.
*/
const char *table_type() const { return "SEQUOIADB"; }
/** @brief
The name of the index type that will be used for display.
Don't implement this method unless you really have indexes.
*/
const char *index_type(uint key_number) { return ("BTREE"); }
/** @brief
The file extensions.
*/
const char **bas_ext() const;
/** @brief
This is a list of flags that indicate what functionality the storage engine
implements. The current table flags are documented in handler.h
*/
ulonglong table_flags() const;
/** @brief
This is a bitmap of flags that indicates how the storage engine
implements indexes. The current index flags are documented in
handler.h. If you do not implement indexes, just return zero here.
@details
part is the key part to check. First key part is 0.
If all_parts is set, MySQL wants to know the flags for the combined
index, up to and including 'part'.
*/
ulong index_flags(uint inx, uint part, bool all_parts) const;
/** @brief
unireg.cc will call max_supported_record_length(), max_supported_keys(),
max_supported_key_parts(), uint max_supported_key_length()
to make sure that the storage engine can handle the data it is about to
send. Return *real* limits of your storage engine here; MySQL will do
min(your_limits, MySQL_limits) automatically.
*/
uint max_supported_record_length() const;
/** @brief
unireg.cc will call this to make sure that the storage engine can handle
the data it is about to send. Return *real* limits of your storage engine
here; MySQL will do min(your_limits, MySQL_limits) automatically.
@details
There is no need to implement ..._key_... methods if your engine doesn't
support indexes.
*/
uint max_supported_keys() const;
/** @brief
unireg.cc will call this to make sure that the storage engine can handle
the data it is about to send. Return *real* limits of your storage engine
here; MySQL will do min(your_limits, MySQL_limits) automatically.
@details
There is no need to implement ..._key_... methods if your engine doesn't
support indexes.
*/
#if MYSQL_VERSION_ID >= 50723
uint max_supported_key_part_length(HA_CREATE_INFO *create_info) const;
#else
uint max_supported_key_part_length() const;
#endif
/** @brief
unireg.cc will call this to make sure that the storage engine can handle
the data it is about to send. Return *real* limits of your storage engine
here; MySQL will do min(your_limits, MySQL_limits) automatically.
@details
There is no need to implement ..._key_... methods if your engine doesn't
support indexes.
*/
uint max_supported_key_length() const;
/*
Everything below are methods that we implement in ha_example.cc.
Most of these methods are not obligatory, skip them and
MySQL will treat them as not implemented
*/
/** @brief
We implement this in ha_example.cc; it's a required method.
*/
int open(const char *name, int mode, uint test_if_locked);
/** @brief
We implement this in ha_example.cc; it's a required method.
*/
int close(void);
int reset();
/**
@brief Prepares the storage engine for bulk inserts.
@param[in] rows estimated number of rows in bulk insert
or 0 if unknown.
@details Initializes memory structures required for bulk insert.
*/
void start_bulk_insert(ha_rows rows);
/**
@brief End bulk insert.
@details This method will send any remaining rows to the remote server.
Finally, it will deinitialize the bulk insert data structure.
@return Operation status
@retval 0 No error
@retval != 0 Error occured at remote server. Also sets my_errno.
*/
int end_bulk_insert();
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int write_row(uchar *buf);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int update_row(const uchar *old_data, uchar *new_data);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int delete_row(const uchar *buf);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int index_read_map(uchar *buf, const uchar *key_ptr, key_part_map keypart_map,
enum ha_rkey_function find_flag);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int index_next(uchar *buf);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int index_prev(uchar *buf);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int index_first(uchar *buf);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;
skip it and and MySQL will treat it as not implemented.
*/
int index_last(uchar *buf);
// int index_read(uchar *buf, const uchar *key_ptr, uint key_len,
// enum ha_rkey_function find_flage);
int index_init(uint idx, bool sorted);
int index_end();
uint lock_count(void) const { return 0; }
/** @brief
Unlike index_init(), rnd_init() can be called two consecutive times
without rnd_end() in between (it only makes sense if scan=1). In this
case, the second call should prepare for the new table scan (e.g if
rnd_init() allocates the cursor, the second call should position the
cursor to the start of the table; no need to deallocate and allocate
it again. This is a required method.
*/
int rnd_init(bool scan);
int rnd_end();
int rnd_next(uchar *buf);
int rnd_pos(uchar *buf, uchar *pos);
void position(const uchar *record);
int info(uint);
int extra(enum ha_extra_function operation);
int external_lock(THD *thd, int lock_type);
int start_statement(THD *thd, uint table_count);
int delete_all_rows(void);
int truncate();
int analyze(THD *thd, HA_CHECK_OPT *check_opt);
ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
int delete_table(const char *from);
int rename_table(const char *from, const char *to);
int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
enum thr_lock_type lock_type);
void unlock_row();
int start_stmt(THD *thd, thr_lock_type lock_type);
bool prepare_inplace_alter_table(TABLE *altered_table,
Alter_inplace_info *ha_alter_info);
bool inplace_alter_table(TABLE *altered_table,
Alter_inplace_info *ha_alter_info);
enum_alter_inplace_result check_if_supported_inplace_alter(
TABLE *altered_table, Alter_inplace_info *ha_alter_info);
const Item *cond_push(const Item *cond);
Item *idx_cond_push(uint keyno, Item *idx_cond);
private:
int ensure_collection(THD *thd);
int obj_to_row(bson::BSONObj &obj, uchar *buf);
int bson_element_to_field(const bson::BSONElement elem, Field *field);
int row_to_obj(uchar *buf, bson::BSONObj &obj, bool gen_oid, bool output_null,
bson::BSONObj &null_obj);
int field_to_obj(Field *field, bson::BSONObjBuilder &obj_builder);
int get_update_obj(const uchar *old_data, uchar *new_data, bson::BSONObj &obj,
bson::BSONObj &null_obj);
int next_row(bson::BSONObj &obj, uchar *buf);
int cur_row(uchar *buf);
int flush_bulk_insert(bool ignore_dup_key);
int create_index(Sdb_cl &cl, Alter_inplace_info *ha_alter_info,
Bitmap<MAX_INDEXES> &ignored_keys);
int drop_index(Sdb_cl &cl, Alter_inplace_info *ha_alter_info,
Bitmap<MAX_INDEXES> &ignored_keys);
int get_cl_options(TABLE *form, HA_CREATE_INFO *create_info,
bson::BSONObj &options, my_bool use_partition);
int get_sharding_key(TABLE *form, bson::BSONObj &options);
int index_read_one(bson::BSONObj condition, int order_direction, uchar *buf);
my_bool get_unique_key_cond(const uchar *rec_row, bson::BSONObj &cond);
my_bool get_cond_from_key(const KEY *unique_key, bson::BSONObj &cond);
int get_query_flag(const uint sql_command, enum thr_lock_type lock_type);
int update_stats(THD *thd, bool do_read_stat);
private:
THR_LOCK_DATA lock_data;
enum thr_lock_type m_lock_type;
Sdb_cl *collection;
bool first_read;
bson::BSONObj cur_rec;
bson::BSONObj pushed_condition;
Sdb_share *share;
char db_name[SDB_CS_NAME_MAX_SIZE + 1];
char table_name[SDB_CL_NAME_MAX_SIZE + 1];
time_t last_count_time;
int count_times;
MEM_ROOT blobroot;
int idx_order_direction;
bool m_use_bulk_insert;
std::vector<bson::BSONObj> m_bulk_insert_rows;
Sdb_obj_cache<bson::BSONElement> m_bson_element_cache;
};
C++
1
https://gitee.com/dominiciica/sequoiasql-mysql.git
git@gitee.com:dominiciica/sequoiasql-mysql.git
dominiciica
sequoiasql-mysql
sequoiasql-mysql
master

搜索帮助