~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.h

  • Committer: Monty Taylor
  • Date: 2008-11-16 06:29:53 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116062953-ivdltjmfe009b5fr
Moved stuff into item/

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
  along with this program; if not, write to the Free Software
14
14
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#ifndef PLUGIN_ARCHIVE_HA_ARCHIVE_H
17
 
#define PLUGIN_ARCHIVE_HA_ARCHIVE_H
 
16
 
 
17
#include <inttypes.h>
 
18
#include <zlib.h>
 
19
#include "azio.h"
 
20
#include <mysys/thr_lock.h>
18
21
 
19
22
/*
20
23
  Please read ha_archive.cc first. If you are looking for more general
22
25
  ha_example.h.
23
26
*/
24
27
 
25
 
class ArchiveShare {
26
 
public:
27
 
  ArchiveShare();
28
 
  ArchiveShare(const char *name);
29
 
  ~ArchiveShare();
30
 
 
31
 
  bool prime(uint64_t *auto_increment);
32
 
 
33
 
  std::string table_name;
34
 
  std::string data_file_name;
35
 
  uint32_t use_count;
36
 
  pthread_mutex_t _mutex;
37
 
  drizzled::THR_LOCK _lock;
 
28
typedef struct st_archive_record_buffer {
 
29
  unsigned char *buffer;
 
30
  uint32_t length;
 
31
} archive_record_buffer;
 
32
 
 
33
 
 
34
typedef struct st_archive_share {
 
35
  char *table_name;
 
36
  char data_file_name[FN_REFLEN];
 
37
  uint32_t table_name_length,use_count;
 
38
  pthread_mutex_t mutex;
 
39
  THR_LOCK lock;
38
40
  azio_stream archive_write;     /* Archive file we are working with */
39
41
  bool archive_write_open;
40
42
  bool dirty;               /* Flag for if a flush should occur */
41
43
  bool crashed;             /* Meta file is crashed */
 
44
  ha_rows rows_recorded;    /* Number of rows in tables */
42
45
  uint64_t mean_rec_length;
43
46
  char real_path[FN_REFLEN];
44
 
  uint64_t  version;
45
 
  drizzled::ha_rows rows_recorded;    /* Number of rows in tables */
46
 
  drizzled::ha_rows version_rows;
47
 
 
48
 
  pthread_mutex_t &mutex()
49
 
  {
50
 
    return _mutex;
51
 
  }
52
 
};
 
47
  unsigned int  version;
 
48
  ha_rows version_rows;
 
49
} ARCHIVE_SHARE;
53
50
 
54
51
/*
55
52
  Version for file format.
59
56
*/
60
57
#define ARCHIVE_VERSION 3
61
58
 
62
 
class ha_archive: public drizzled::Cursor
 
59
class ha_archive: public handler
63
60
{
64
 
  drizzled::THR_LOCK_DATA lock;        /* MySQL lock */
65
 
  ArchiveShare *share;      /* Shared lock info */
66
 
 
 
61
  THR_LOCK_DATA lock;        /* MySQL lock */
 
62
  ARCHIVE_SHARE *share;      /* Shared lock info */
 
63
  
67
64
  azio_stream archive;            /* Archive file we are working with */
68
 
  drizzled::internal::my_off_t current_position;  /* The position of the row we just read */
 
65
  my_off_t current_position;  /* The position of the row we just read */
69
66
  unsigned char byte_buffer[IO_SIZE]; /* Initial buffer for our string */
70
 
  drizzled::String buffer;             /* Buffer used for blob storage */
71
 
  drizzled::ha_rows scan_rows;         /* Number of rows left in scan */
 
67
  String buffer;             /* Buffer used for blob storage */
 
68
  ha_rows scan_rows;         /* Number of rows left in scan */
72
69
  bool delayed_insert;       /* If the insert is delayed */
73
70
  bool bulk_insert;          /* If we are performing a bulk insert */
74
71
  const unsigned char *current_key;
75
72
  uint32_t current_key_len;
76
73
  uint32_t current_k_offset;
77
 
  std::vector <unsigned char> record_buffer;
 
74
  archive_record_buffer *record_buffer;
78
75
  bool archive_reader_open;
79
76
 
 
77
  archive_record_buffer *create_record_buffer(unsigned int length);
 
78
  void destroy_record_buffer(archive_record_buffer *r);
 
79
 
80
80
public:
81
 
  ha_archive(drizzled::plugin::StorageEngine &engine_arg,
82
 
             drizzled::TableShare &table_arg);
 
81
  ha_archive(handlerton *hton, TABLE_SHARE *table_arg);
83
82
  ~ha_archive()
84
 
  { }
85
 
 
86
 
  const char *index_type(uint32_t)
 
83
  {
 
84
  }
 
85
  const char *table_type() const { return "ARCHIVE"; }
 
86
  const char *index_type(uint32_t inx __attribute__((unused)))
87
87
  { return "NONE"; }
88
 
  void get_auto_increment(uint64_t, uint64_t, uint64_t,
89
 
                          uint64_t *first_value, uint64_t *nb_reserved_values);
90
 
  drizzled::ha_rows records() { return share->rows_recorded; }
91
 
  int doStartIndexScan(uint32_t keynr, bool sorted);
 
88
  const char **bas_ext() const;
 
89
  uint64_t table_flags() const
 
90
  {
 
91
    return (HA_NO_TRANSACTIONS | HA_REC_NOT_IN_SEQ |
 
92
            HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE |
 
93
            HA_STATS_RECORDS_IS_EXACT |
 
94
            HA_HAS_RECORDS |
 
95
            HA_FILE_BASED);
 
96
  }
 
97
  uint32_t index_flags(uint32_t idx __attribute__((unused)),
 
98
                       uint32_t part __attribute__((unused)),
 
99
                       bool all_parts __attribute__((unused))) const
 
100
  {
 
101
    return HA_ONLY_WHOLE_INDEX;
 
102
  }
 
103
  virtual void get_auto_increment(uint64_t offset, uint64_t increment,
 
104
                                  uint64_t nb_desired_values,
 
105
                                  uint64_t *first_value,
 
106
                                  uint64_t *nb_reserved_values);
 
107
  uint32_t max_supported_keys()          const { return 1; }
 
108
  uint32_t max_supported_key_length()    const { return sizeof(uint64_t); }
 
109
  uint32_t max_supported_key_part_length() const { return sizeof(uint64_t); }
 
110
  ha_rows records() { return share->rows_recorded; }
 
111
  int index_init(uint32_t keynr, bool sorted);
92
112
  virtual int index_read(unsigned char * buf, const unsigned char * key,
93
 
                         uint32_t key_len,
94
 
                         drizzled::ha_rkey_function find_flag);
 
113
                         uint32_t key_len, enum ha_rkey_function find_flag);
 
114
  virtual int index_read_idx(unsigned char * buf, uint32_t index, const unsigned char * key,
 
115
                             uint32_t key_len, enum ha_rkey_function find_flag);
95
116
  int index_next(unsigned char * buf);
96
 
  int doOpen(const drizzled::TableIdentifier &identifier, int mode, uint32_t test_if_locked);
97
117
  int open(const char *name, int mode, uint32_t test_if_locked);
98
118
  int close(void);
99
 
  int doInsertRecord(unsigned char * buf);
 
119
  int write_row(unsigned char * buf);
100
120
  int real_write_row(unsigned char *buf, azio_stream *writer);
101
121
  int delete_all_rows();
102
 
  int doStartTableScan(bool scan=1);
 
122
  int rnd_init(bool scan=1);
103
123
  int rnd_next(unsigned char *buf);
104
124
  int rnd_pos(unsigned char * buf, unsigned char *pos);
105
 
  ArchiveShare *get_share(const char *table_name, int *rc);
 
125
  int get_row(azio_stream *file_to_read, unsigned char *buf);
 
126
  int get_row_version2(azio_stream *file_to_read, unsigned char *buf);
 
127
  int get_row_version3(azio_stream *file_to_read, unsigned char *buf);
 
128
  ARCHIVE_SHARE *get_share(const char *table_name, int *rc);
106
129
  int free_share();
107
130
  int init_archive_writer();
108
131
  int init_archive_reader();
 
132
  bool auto_repair() const { return 1; } // For the moment we just do this
 
133
  int read_data_header(azio_stream *file_to_read);
109
134
  void position(const unsigned char *record);
110
135
  int info(uint);
111
 
private:
112
 
  int get_row(azio_stream *file_to_read, unsigned char *buf);
113
 
  int get_row_version2(azio_stream *file_to_read, unsigned char *buf);
114
 
  int get_row_version3(azio_stream *file_to_read, unsigned char *buf);
115
 
  int read_data_header(azio_stream *file_to_read);
116
 
  int optimize();
117
 
  int repair();
118
 
public:
119
 
  void start_bulk_insert(drizzled::ha_rows rows);
 
136
  void update_create_info(HA_CREATE_INFO *create_info);
 
137
  int create(const char *name, Table *form, HA_CREATE_INFO *create_info);
 
138
  int optimize(Session* session, HA_CHECK_OPT* check_opt);
 
139
  int repair(Session* session, HA_CHECK_OPT* check_opt);
 
140
  void start_bulk_insert(ha_rows rows);
120
141
  int end_bulk_insert();
121
 
 
122
 
  drizzled::THR_LOCK_DATA **store_lock(drizzled::Session *session,
123
 
                                       drizzled::THR_LOCK_DATA **to,
124
 
                                       drizzled::thr_lock_type lock_type);
125
 
  int check(drizzled::Session* session);
126
 
  bool check_and_repair(drizzled::Session *session);
 
142
  enum row_type get_row_type() const 
 
143
  { 
 
144
    return ROW_TYPE_COMPRESSED;
 
145
  }
 
146
  THR_LOCK_DATA **store_lock(Session *session, THR_LOCK_DATA **to,
 
147
                             enum thr_lock_type lock_type);
 
148
  bool is_crashed() const;
 
149
  int check(Session* session, HA_CHECK_OPT* check_opt);
 
150
  bool check_and_repair(Session *session);
127
151
  uint32_t max_row_length(const unsigned char *buf);
128
152
  bool fix_rec_buff(unsigned int length);
129
153
  int unpack_row(azio_stream *file_to_read, unsigned char *record);
130
154
  unsigned int pack_row(unsigned char *record);
131
155
};
132
156
 
133
 
#endif /* PLUGIN_ARCHIVE_HA_ARCHIVE_H */