~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.h

  • Committer: Jay Pipes
  • Date: 2009-04-10 17:06:58 UTC
  • mto: (971.1.47 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: jpipes@serialcoder-20090410170658-d3azdnas1fn8v68l
Removal of log.cc (binlog), added Applier plugin and fixed up Replicator
plugin.  New transaction_services.cc class implementation of the API for
converting between internal formats and GPB Command Messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
 
 
16
 
 
17
 
 
18
 
/* class for the the heap Cursor */
19
 
 
20
 
#ifndef PLUGIN_MEMORY_HA_HEAP_H
21
 
#define PLUGIN_MEMORY_HA_HEAP_H
22
 
 
23
 
#include <drizzled/cursor.h>
24
 
#include <drizzled/thr_lock.h>
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
 
 
17
 
 
18
/* class for the the heap handler */
 
19
 
 
20
#ifndef STORAGE_HEAP_HA_HEAP_H
 
21
#define STORAGE_HEAP_HA_HEAP_H
 
22
 
 
23
#include <drizzled/handler.h>
 
24
#include <mysys/thr_lock.h>
25
25
 
26
26
typedef struct st_heap_info HP_INFO;
 
27
typedef struct st_heap_share HEAP_SHARE;
27
28
typedef unsigned char *HEAP_PTR;
28
29
 
29
30
 
30
 
class ha_heap: public drizzled::Cursor
 
31
class ha_heap: public handler
31
32
{
32
33
  HP_INFO *file;
 
34
  HP_SHARE *internal_share;
 
35
  key_map btree_keys;
33
36
  /* number of records changed since last statistics update */
34
37
  uint32_t    records_changed;
35
38
  uint32_t    key_stat_version;
36
39
  bool internal_table;
37
40
public:
38
 
  ha_heap(drizzled::plugin::StorageEngine &engine, drizzled::Table &table);
 
41
  ha_heap(StorageEngine *engine, TABLE_SHARE *table);
39
42
  ~ha_heap() {}
40
 
  Cursor *clone(drizzled::memory::Root *mem_root);
41
 
 
 
43
  handler *clone(MEM_ROOT *mem_root);
 
44
  const char *table_type() const
 
45
  {
 
46
    return "MEMORY";
 
47
  }
42
48
  const char *index_type(uint32_t inx);
43
 
 
 
49
  enum row_type get_row_type() const;
 
50
  const char **bas_ext() const;
 
51
  uint64_t table_flags() const
 
52
  {
 
53
    return (HA_FAST_KEY_READ | HA_NO_BLOBS | HA_NULL_IN_KEY |
 
54
            HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE |
 
55
            HA_REC_NOT_IN_SEQ | HA_NO_TRANSACTIONS |
 
56
            HA_HAS_RECORDS | HA_STATS_RECORDS_IS_EXACT);
 
57
  }
 
58
  uint32_t index_flags(uint32_t inx, uint32_t part, bool all_parts) const;
 
59
  const key_map *keys_to_use_for_scanning() { return &btree_keys; }
 
60
  uint32_t max_supported_keys()          const { return MAX_KEY; }
 
61
  uint32_t max_supported_key_part_length() const { return MAX_KEY_LENGTH; }
44
62
  double scan_time()
45
63
  { return (double) (stats.records+stats.deleted) / 20.0+10; }
46
64
  double read_time(uint32_t, uint32_t,
47
 
                   drizzled::ha_rows rows)
 
65
                   ha_rows rows)
48
66
  { return (double) rows /  20.0+1; }
49
67
 
50
 
  int doOpen(const drizzled::identifier::Table &identifier, int mode, uint32_t test_if_locked);
 
68
  int open(const char *name, int mode, uint32_t test_if_locked);
51
69
  int close(void);
52
70
  void set_keys_for_scanning(void);
53
 
  int doInsertRecord(unsigned char * buf);
54
 
  int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);
55
 
  int doDeleteRecord(const unsigned char * buf);
 
71
  int write_row(unsigned char * buf);
 
72
  int update_row(const unsigned char * old_data, unsigned char * new_data);
 
73
  int delete_row(const unsigned char * buf);
56
74
  virtual void get_auto_increment(uint64_t offset, uint64_t increment,
57
75
                                  uint64_t nb_desired_values,
58
76
                                  uint64_t *first_value,
59
77
                                  uint64_t *nb_reserved_values);
60
78
  int index_read_map(unsigned char * buf, const unsigned char * key,
61
 
                     drizzled::key_part_map keypart_map,
62
 
                     enum drizzled::ha_rkey_function find_flag);
 
79
                     key_part_map keypart_map,
 
80
                     enum ha_rkey_function find_flag);
63
81
  int index_read_last_map(unsigned char *buf, const unsigned char *key,
64
 
                          drizzled::key_part_map keypart_map);
 
82
                          key_part_map keypart_map);
65
83
  int index_read_idx_map(unsigned char * buf, uint32_t index,
66
84
                         const unsigned char * key,
67
 
                         drizzled::key_part_map keypart_map,
68
 
                         enum drizzled::ha_rkey_function find_flag);
 
85
                         key_part_map keypart_map,
 
86
                         enum ha_rkey_function find_flag);
69
87
  int index_next(unsigned char * buf);
70
88
  int index_prev(unsigned char * buf);
71
89
  int index_first(unsigned char * buf);
72
90
  int index_last(unsigned char * buf);
73
 
  int doStartTableScan(bool scan);
 
91
  int rnd_init(bool scan);
74
92
  int rnd_next(unsigned char *buf);
75
93
  int rnd_pos(unsigned char * buf, unsigned char *pos);
76
94
  void position(const unsigned char *record);
77
95
  int info(uint);
78
 
  int extra(enum drizzled::ha_extra_function operation);
 
96
  int extra(enum ha_extra_function operation);
79
97
  int reset();
 
98
  int external_lock(Session *session, int lock_type);
80
99
  int delete_all_rows(void);
81
100
  int disable_indexes(uint32_t mode);
82
101
  int enable_indexes(uint32_t mode);
83
102
  int indexes_are_disabled(void);
84
 
  drizzled::ha_rows records_in_range(uint32_t inx,
85
 
                                     drizzled::key_range *min_key,
86
 
                                     drizzled::key_range *max_key);
 
103
  ha_rows records_in_range(uint32_t inx, key_range *min_key, key_range *max_key);
 
104
  int delete_table(const char *from);
87
105
  void drop_table(const char *name);
 
106
  int rename_table(const char * from, const char * to);
 
107
  int create(const char *name, Table *form, HA_CREATE_INFO *create_info);
 
108
  void update_create_info(HA_CREATE_INFO *create_info);
88
109
 
 
110
  THR_LOCK_DATA **store_lock(Session *session, THR_LOCK_DATA **to,
 
111
                             enum thr_lock_type lock_type);
89
112
  int cmp_ref(const unsigned char *ref1, const unsigned char *ref2);
90
 
  int reset_auto_increment(uint64_t value)
91
 
  {
92
 
    file->getShare()->auto_increment= value;
93
 
    return 0;
94
 
  }
 
113
  bool check_if_incompatible_data(HA_CREATE_INFO *info, uint32_t table_changes);
95
114
private:
96
115
  void update_key_stats();
97
116
};
98
117
 
99
 
#endif /* PLUGIN_MEMORY_HA_HEAP_H */
 
118
#endif /* STORAGE_HEAP_HA_HEAP_H */