~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.h

  • Committer: Jay Pipes
  • Date: 2010-03-09 20:02:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1339.
  • Revision ID: jpipes@serialcoder-20100309200229-dfrliy4fads9vyf4
Fixes Bug #535296 by only incrementing ha_commit_count when its a normal transaction commit.

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 */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
#ifndef PLUGIN_CSV_HA_TINA_H
17
17
#define PLUGIN_CSV_HA_TINA_H
23
23
#include <sys/stat.h>
24
24
#include "transparent_file.h"
25
25
 
 
26
#define DEFAULT_CHAIN_LENGTH 512
26
27
/*
27
28
  Version for file format.
28
29
  1 - Initial Version. That is, the version when the metafile was introduced.
36
37
  TinaShare(const TinaShare &);
37
38
  TinaShare& operator=(const TinaShare &);
38
39
public:
39
 
  explicit TinaShare(const std::string &name);
 
40
  explicit TinaShare(const char *name);
40
41
  ~TinaShare();
41
42
 
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;
45
46
  /*
46
47
    Here we save the length of the file for readers. This is updated by
49
50
  */
50
51
  off_t saved_data_file_length;
51
52
  pthread_mutex_t mutex;
 
53
  drizzled::THR_LOCK lock;
52
54
  bool update_file_opened;
53
55
  bool tina_write_opened;
54
56
  int meta_file;           /* Meta file we use */
58
60
  uint32_t data_file_version;   /* Version of the data file used */
59
61
};
60
62
 
 
63
struct tina_set {
 
64
  off_t begin;
 
65
  off_t end;
 
66
};
 
67
 
61
68
class ha_tina: public drizzled::Cursor
62
69
{
63
70
  drizzled::THR_LOCK_DATA lock;      /* MySQL lock */
73
80
  drizzled::String buffer;
74
81
  /*
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.
78
85
  */
79
 
  std::vector< std::pair<off_t, off_t> > chain;
 
86
  tina_set chain_buffer[DEFAULT_CHAIN_LENGTH];
 
87
  tina_set *chain;
 
88
  tina_set *chain_ptr;
 
89
  unsigned char chain_alloced;
 
90
  uint32_t chain_size;
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;
83
94
 
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();
89
99
 
90
100
public:
91
 
  ha_tina(drizzled::plugin::StorageEngine &engine, drizzled::Table &table_arg);
 
101
  ha_tina(drizzled::plugin::StorageEngine &engine, drizzled::TableShare &table_arg);
92
102
  ~ha_tina()
93
103
  {
 
104
    if (chain_alloced)
 
105
      free(chain);
94
106
    if (file_buff)
95
107
      delete file_buff;
96
108
  }
106
118
  /* The next method will never be called */
107
119
  virtual bool fast_key_read() { return 1;}
108
120
  /*
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
111
123
    as upper bound)
112
124
  */
113
125
  drizzled::ha_rows estimate_rows_upper_bound() { return HA_POS_ERROR; }
114
126
 
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);
117
128
  int close(void);
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);
 
135
  int rnd_end();
 
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);
130
141
  int info(uint);
131
142
  int delete_all_rows(void);
132
 
  void get_auto_increment(uint64_t, uint64_t,
133
 
                          uint64_t,
134
 
                          uint64_t *,
135
 
                          uint64_t *)
136
 
  {}
 
143
 
 
144
  /*
 
145
    These functions used to get/update status of the Cursor.
 
146
    Needed to enable concurrent inserts.
 
147
  */
 
148
  void get_status();
 
149
  void update_status();
137
150
 
138
151
  /* The following methods were added just for TINA */
139
152
  int encode_quote(unsigned char *buf);