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 */
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
16
#ifndef PLUGIN_CSV_HA_TINA_H
17
17
#define PLUGIN_CSV_HA_TINA_H
36
37
TinaShare(const TinaShare &);
37
38
TinaShare& operator=(const TinaShare &);
39
explicit TinaShare(const std::string &name);
40
explicit TinaShare(const char *name);
42
43
std::string table_name;
43
std::string data_file_name;
44
char data_file_name[FN_REFLEN];
44
45
uint32_t use_count;
46
47
Here we save the length of the file for readers. This is updated by
73
80
drizzled::String buffer;
75
82
The chain contains "holes" in the file, occured because of
76
deletes/updates. It is used in doEndTableScan() to get rid of them
83
deletes/updates. It is used in rnd_end() to get rid of them
77
84
in the end of the query.
79
std::vector< std::pair<off_t, off_t> > chain;
86
tina_set chain_buffer[DEFAULT_CHAIN_LENGTH];
89
unsigned char chain_alloced;
80
91
uint32_t local_data_file_version; /* Saved version of the data file used */
81
92
bool records_is_known;
82
93
drizzled::memory::Root blobroot;
84
bool get_write_pos(off_t *end_pos,
85
std::vector< std::pair<off_t, off_t> >::iterator &closest_hole);
95
bool get_write_pos(off_t *end_pos, tina_set *closest_hole);
86
96
int open_update_temp_file_if_needed();
87
97
int init_tina_writer();
88
98
int init_data_file();
91
ha_tina(drizzled::plugin::StorageEngine &engine, drizzled::Table &table_arg);
101
ha_tina(drizzled::plugin::StorageEngine &engine, drizzled::TableShare &table_arg);
106
118
/* The next method will never be called */
107
119
virtual bool fast_key_read() { return 1;}
109
@TODO return actual upper bound of number of records in the table.
121
TODO: return actual upper bound of number of records in the table.
110
122
(e.g. save number of records seen on full table scan and/or use file size
113
125
drizzled::ha_rows estimate_rows_upper_bound() { return HA_POS_ERROR; }
115
int doOpen(const drizzled::identifier::Table &identifier, int mode, uint32_t test_if_locked);
116
int open(const char *, int , uint32_t ) { assert(0); return -1; }
127
int open(const char *name, int mode, uint32_t open_options);
118
int doInsertRecord(unsigned char * buf);
119
int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);
120
int doDeleteRecord(const unsigned char * buf);
121
int doStartTableScan(bool scan=1);
129
int write_row(unsigned char * buf);
130
int update_row(const unsigned char * old_data, unsigned char * new_data);
131
int delete_row(const unsigned char * buf);
132
int rnd_init(bool scan=1);
122
133
int rnd_next(unsigned char *buf);
123
134
int rnd_pos(unsigned char * buf, unsigned char *pos);
124
int doEndTableScan();
125
TinaShare *get_share(const std::string &table_name);
136
TinaShare *get_share(const char *table_name);
126
137
int free_share();
127
138
int repair(drizzled::Session* session, drizzled::HA_CHECK_OPT* check_opt);
128
139
/* This is required for SQL layer to know that we support autorepair */
129
140
void position(const unsigned char *record);
131
142
int delete_all_rows(void);
132
void get_auto_increment(uint64_t, uint64_t,
145
These functions used to get/update status of the Cursor.
146
Needed to enable concurrent inserts.
149
void update_status();
138
151
/* The following methods were added just for TINA */
139
152
int encode_quote(unsigned char *buf);