~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/ha_heap.h

  • Committer: Monty Taylor
  • Date: 2010-09-28 07:45:44 UTC
  • mto: (1799.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1800.
  • Revision ID: mordred@inaugust.com-20100928074544-s3ujnv6s8wro74l2
Added BSD copying file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
/* class for the the heap Cursor */
19
19
 
20
 
#ifndef PLUGIN_HEAP_HA_HEAP_H
21
 
#define PLUGIN_HEAP_HA_HEAP_H
 
20
#ifndef PLUGIN_MEMORY_HA_HEAP_H
 
21
#define PLUGIN_MEMORY_HA_HEAP_H
22
22
 
23
23
#include <drizzled/cursor.h>
24
24
#include <drizzled/thr_lock.h>
30
30
class ha_heap: public drizzled::Cursor
31
31
{
32
32
  HP_INFO *file;
33
 
  drizzled::key_map btree_keys;
34
33
  /* number of records changed since last statistics update */
35
34
  uint32_t    records_changed;
36
35
  uint32_t    key_stat_version;
41
40
  Cursor *clone(drizzled::memory::Root *mem_root);
42
41
 
43
42
  const char *index_type(uint32_t inx);
44
 
  drizzled::row_type get_row_type() const;
45
 
  const drizzled::key_map *keys_to_use_for_scanning() { return &btree_keys; }
 
43
 
46
44
  double scan_time()
47
45
  { return (double) (stats.records+stats.deleted) / 20.0+10; }
48
46
  double read_time(uint32_t, uint32_t,
49
47
                   drizzled::ha_rows rows)
50
48
  { return (double) rows /  20.0+1; }
51
49
 
52
 
  int open(const char *name, int mode, uint32_t test_if_locked);
 
50
  int doOpen(const drizzled::TableIdentifier &identifier, int mode, uint32_t test_if_locked);
53
51
  int close(void);
54
52
  void set_keys_for_scanning(void);
55
 
  int write_row(unsigned char * buf);
56
 
  int update_row(const unsigned char * old_data, unsigned char * new_data);
57
 
  int delete_row(const unsigned char * buf);
 
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);
58
56
  virtual void get_auto_increment(uint64_t offset, uint64_t increment,
59
57
                                  uint64_t nb_desired_values,
60
58
                                  uint64_t *first_value,
72
70
  int index_prev(unsigned char * buf);
73
71
  int index_first(unsigned char * buf);
74
72
  int index_last(unsigned char * buf);
75
 
  int rnd_init(bool scan);
 
73
  int doStartTableScan(bool scan);
76
74
  int rnd_next(unsigned char *buf);
77
75
  int rnd_pos(unsigned char * buf, unsigned char *pos);
78
76
  void position(const unsigned char *record);
91
89
  int cmp_ref(const unsigned char *ref1, const unsigned char *ref2);
92
90
  int reset_auto_increment(uint64_t value)
93
91
  {
94
 
    file->s->auto_increment= value;
 
92
    file->getShare()->auto_increment= value;
95
93
    return 0;
96
94
  }
97
95
private:
98
96
  void update_key_stats();
99
97
};
100
98
 
101
 
#endif /* PLUGIN_HEAP_HA_HEAP_H */
 
99
#endif /* PLUGIN_MEMORY_HA_HEAP_H */