ha_ndbcluster.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   This file defines the NDB Cluster handler: the interface between MySQL and
  15.   NDB Cluster
  16. */
  17. /* The class defining a handle to an NDB Cluster table */
  18. #ifdef USE_PRAGMA_INTERFACE
  19. #pragma interface                       /* gcc class implementation */
  20. #endif
  21. #include <ndbapi_limits.h>
  22. class Ndb;             // Forward declaration
  23. class NdbOperation;    // Forward declaration
  24. class NdbConnection;   // Forward declaration
  25. class NdbRecAttr;      // Forward declaration
  26. class NdbResultSet;    // Forward declaration
  27. class NdbScanOperation; 
  28. class NdbIndexScanOperation; 
  29. class NdbBlob;
  30. // connectstring to cluster if given by mysqld
  31. extern const char *ndbcluster_connectstring;
  32. typedef enum ndb_index_type {
  33.   UNDEFINED_INDEX = 0,
  34.   PRIMARY_KEY_INDEX = 1,
  35.   PRIMARY_KEY_ORDERED_INDEX = 2,
  36.   UNIQUE_INDEX = 3,
  37.   UNIQUE_ORDERED_INDEX = 4,
  38.   ORDERED_INDEX = 5
  39. } NDB_INDEX_TYPE;
  40. typedef struct ndb_index_data {
  41.   NDB_INDEX_TYPE type;
  42.   void *index;
  43.   void *unique_index;
  44.   unsigned char *unique_index_attrid_map;
  45. } NDB_INDEX_DATA;
  46. typedef struct st_ndbcluster_share {
  47.   THR_LOCK lock;
  48.   pthread_mutex_t mutex;
  49.   char *table_name;
  50.   uint table_name_length,use_count;
  51. } NDB_SHARE;
  52. /*
  53.   Place holder for ha_ndbcluster thread specific data
  54. */
  55. class Thd_ndb {
  56.  public:
  57.   Thd_ndb();
  58.   ~Thd_ndb();
  59.   Ndb *ndb;
  60.   ulong count;
  61.   uint lock_count;
  62.   int error;
  63. };
  64. class ha_ndbcluster: public handler
  65. {
  66.  public:
  67.   ha_ndbcluster(TABLE *table);
  68.   ~ha_ndbcluster();
  69.   int open(const char *name, int mode, uint test_if_locked);
  70.   int close(void);
  71.   int write_row(byte *buf);
  72.   int update_row(const byte *old_data, byte *new_data);
  73.   int delete_row(const byte *buf);
  74.   int index_init(uint index);
  75.   int index_end();
  76.   int index_read(byte *buf, const byte *key, uint key_len, 
  77.  enum ha_rkey_function find_flag);
  78.   int index_read_idx(byte *buf, uint index, const byte *key, uint key_len, 
  79.      enum ha_rkey_function find_flag);
  80.   int index_next(byte *buf);
  81.   int index_prev(byte *buf);
  82.   int index_first(byte *buf);
  83.   int index_last(byte *buf);
  84.   int rnd_init(bool scan);
  85.   int rnd_end();
  86.   int rnd_next(byte *buf);
  87.   int rnd_pos(byte *buf, byte *pos);
  88.   void position(const byte *record);
  89.   int read_range_first(const key_range *start_key,
  90.        const key_range *end_key,
  91.        bool eq_range, bool sorted);
  92.   int read_range_first_to_buf(const key_range *start_key,
  93.       const key_range *end_key,
  94.       bool eq_range, bool sorted,
  95.       byte* buf);
  96.   int read_range_next();
  97.   bool get_error_message(int error, String *buf);
  98.   void info(uint);
  99.   int extra(enum ha_extra_function operation);
  100.   int extra_opt(enum ha_extra_function operation, ulong cache_size);
  101.   int reset();
  102.   int external_lock(THD *thd, int lock_type);
  103.   int start_stmt(THD *thd);
  104.   const char * table_type() const;
  105.   const char ** bas_ext() const;
  106.   ulong table_flags(void) const;
  107.   ulong index_flags(uint idx, uint part, bool all_parts) const;
  108.   uint max_supported_record_length() const;
  109.   uint max_supported_keys() const;
  110.   uint max_supported_key_parts() const;
  111.   uint max_supported_key_length() const;
  112.   int rename_table(const char *from, const char *to);
  113.   int delete_table(const char *name);
  114.   int create(const char *name, TABLE *form, HA_CREATE_INFO *info);
  115.   THR_LOCK_DATA **store_lock(THD *thd,
  116.      THR_LOCK_DATA **to,
  117.      enum thr_lock_type lock_type);
  118.   bool low_byte_first() const;
  119.   bool has_transactions();
  120.   const char* index_type(uint key_number);
  121.   double scan_time();
  122.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  123.   void start_bulk_insert(ha_rows rows);
  124.   int end_bulk_insert();
  125.   static Thd_ndb* seize_thd_ndb();
  126.   static void release_thd_ndb(Thd_ndb* thd_ndb);
  127.   uint8 table_cache_type();
  128.  
  129.   static void set_dbname(const char *pathname, char *dbname);
  130.   static void set_tabname(const char *pathname, char *tabname);
  131.    
  132.  private:
  133.   int alter_table_name(const char *to);
  134.   int drop_table();
  135.   int create_index(const char *name, KEY *key_info, bool unique);
  136.   int create_ordered_index(const char *name, KEY *key_info);
  137.   int create_unique_index(const char *name, KEY *key_info);
  138.   int initialize_autoincrement(const void *table);
  139.   enum ILBP {ILBP_CREATE = 0, ILBP_OPEN = 1}; // Index List Build Phase
  140.   int build_index_list(Ndb *ndb, TABLE *tab, enum ILBP phase);
  141.   int get_metadata(const char* path);
  142.   void release_metadata();
  143.   NDB_INDEX_TYPE get_index_type(uint idx_no) const;
  144.   NDB_INDEX_TYPE get_index_type_from_table(uint index_no) const;
  145.   int check_index_fields_not_null(uint index_no);
  146.   int pk_read(const byte *key, uint key_len, byte *buf);
  147.   int complemented_pk_read(const byte *old_data, byte *new_data);
  148.   int peek_row(const byte *record);
  149.   int unique_index_read(const byte *key, uint key_len, 
  150. byte *buf);
  151.   int ordered_index_scan(const key_range *start_key,
  152.  const key_range *end_key,
  153.  bool sorted, byte* buf);
  154.   int full_table_scan(byte * buf);
  155.   int next_result(byte *buf); 
  156.   int define_read_attrs(byte* buf, NdbOperation* op);
  157.   int filtered_scan(const byte *key, uint key_len, 
  158.     byte *buf,
  159.     enum ha_rkey_function find_flag);
  160.   int close_scan();
  161.   void unpack_record(byte *buf);
  162.   int get_ndb_lock_type(enum thr_lock_type type);
  163.   void set_dbname(const char *pathname);
  164.   void set_tabname(const char *pathname);
  165.   bool set_hidden_key(NdbOperation*,
  166.       uint fieldnr, const byte* field_ptr);
  167.   int set_ndb_key(NdbOperation*, Field *field,
  168.   uint fieldnr, const byte* field_ptr);
  169.   int set_ndb_value(NdbOperation*, Field *field, uint fieldnr, bool *set_blob_value= 0);
  170.   int get_ndb_value(NdbOperation*, Field *field, uint fieldnr, byte*);
  171.   friend int g_get_ndb_blobs_value(NdbBlob *ndb_blob, void *arg);
  172.   int get_ndb_blobs_value(NdbBlob *last_ndb_blob);
  173.   int set_primary_key(NdbOperation *op, const byte *key);
  174.   int set_primary_key_from_record(NdbOperation *op, const byte *record);
  175.   int set_bounds(NdbIndexScanOperation *ndb_op, const key_range *keys[2]);
  176.   int key_cmp(uint keynr, const byte * old_row, const byte * new_row);
  177.   void print_results();
  178.   longlong get_auto_increment();
  179.   void invalidate_dictionary_cache(bool global);
  180.   int ndb_err(NdbConnection*);
  181.   bool uses_blob_value(bool all_fields);
  182.   int write_ndb_file();
  183.  private:
  184.   int check_ndb_connection();
  185.   NdbConnection *m_active_trans;
  186.   NdbResultSet *m_active_cursor;
  187.   void *m_table;
  188.   int m_table_version;
  189.   void *m_table_info;
  190.   char m_dbname[FN_HEADLEN];
  191.   //char m_schemaname[FN_HEADLEN];
  192.   char m_tabname[FN_HEADLEN];
  193.   ulong m_table_flags;
  194.   THR_LOCK_DATA m_lock;
  195.   NDB_SHARE *m_share;
  196.   NDB_INDEX_DATA  m_index[MAX_KEY];
  197.   // NdbRecAttr has no reference to blob
  198.   typedef union { NdbRecAttr *rec; NdbBlob *blob; void *ptr; } NdbValue;
  199.   NdbValue m_value[NDB_MAX_ATTRIBUTES_IN_TABLE];
  200.   bool m_use_write;
  201.   bool m_ignore_dup_key;
  202.   bool m_primary_key_update;
  203.   bool m_retrieve_all_fields;
  204.   bool m_retrieve_primary_key;
  205.   ha_rows m_rows_to_insert;
  206.   ha_rows m_rows_inserted;
  207.   ha_rows m_bulk_insert_rows;
  208.   bool m_bulk_insert_not_flushed;
  209.   ha_rows m_ops_pending;
  210.   bool m_skip_auto_increment;
  211.   bool m_blobs_pending;
  212.   // memory for blobs in one tuple
  213.   char *m_blobs_buffer;
  214.   uint32 m_blobs_buffer_size;
  215.   uint m_dupkey;
  216.   // set from thread variables at external lock
  217.   bool m_ha_not_exact_count;
  218.   bool m_force_send;
  219.   ha_rows m_autoincrement_prefetch;
  220.   bool m_transaction_on;
  221.   bool m_use_local_query_cache;
  222.   Ndb *get_ndb();
  223.   void set_rec_per_key();
  224.   void records_update();
  225.   void no_uncommitted_rows_execute_failure();
  226.   void no_uncommitted_rows_update(int);
  227.   void no_uncommitted_rows_init(THD *);
  228.   void no_uncommitted_rows_reset(THD *);
  229.   friend int execute_no_commit(ha_ndbcluster*, NdbConnection*);
  230.   friend int execute_commit(ha_ndbcluster*, NdbConnection*);
  231.   friend int execute_no_commit_ie(ha_ndbcluster*, NdbConnection*);
  232. };
  233. bool ndbcluster_init(void);
  234. bool ndbcluster_end(void);
  235. int ndbcluster_commit(THD *thd, void* ndb_transaction);
  236. int ndbcluster_rollback(THD *thd, void* ndb_transaction);
  237. void ndbcluster_close_connection(THD *thd);
  238. int ndbcluster_discover(THD* thd, const char* dbname, const char* name,
  239. const void** frmblob, uint* frmlen);
  240. int ndbcluster_find_files(THD *thd,const char *db,const char *path,
  241.   const char *wild, bool dir, List<char> *files);
  242. int ndbcluster_table_exists_in_engine(THD* thd,
  243.                                       const char *db, const char *name);
  244. int ndbcluster_drop_database(const char* path);
  245. void ndbcluster_print_error(int error, const NdbOperation *error_op);
  246. int ndbcluster_show_status(THD*);