~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.h

  • Committer: Monty Taylor
  • Date: 2010-06-26 03:52:47 UTC
  • mfrom: (1637.1.5 staging)
  • Revision ID: mordred@inaugust.com-20100626035247-i0iq4sd6wqzfisyy
Merged in staging changes: Mark's syslog patch and vijay's program_options.

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
36
36
  TinaShare(const TinaShare &);
37
37
  TinaShare& operator=(const TinaShare &);
38
38
public:
39
 
  explicit TinaShare(const std::string &name);
 
39
  explicit TinaShare(const char *name);
40
40
  ~TinaShare();
41
41
 
42
42
  std::string table_name;
43
 
  std::string data_file_name;
 
43
  char data_file_name[FN_REFLEN];
44
44
  uint32_t use_count;
45
45
  /*
46
46
    Here we save the length of the file for readers. This is updated by
49
49
  */
50
50
  off_t saved_data_file_length;
51
51
  pthread_mutex_t mutex;
 
52
  drizzled::THR_LOCK lock;
52
53
  bool update_file_opened;
53
54
  bool tina_write_opened;
54
55
  int meta_file;           /* Meta file we use */
88
89
  int init_data_file();
89
90
 
90
91
public:
91
 
  ha_tina(drizzled::plugin::StorageEngine &engine, drizzled::Table &table_arg);
 
92
  ha_tina(drizzled::plugin::StorageEngine &engine, drizzled::TableShare &table_arg);
92
93
  ~ha_tina()
93
94
  {
94
95
    if (file_buff)
106
107
  /* The next method will never be called */
107
108
  virtual bool fast_key_read() { return 1;}
108
109
  /*
109
 
    @TODO return actual upper bound of number of records in the table.
 
110
    TODO: return actual upper bound of number of records in the table.
110
111
    (e.g. save number of records seen on full table scan and/or use file size
111
112
    as upper bound)
112
113
  */
113
114
  drizzled::ha_rows estimate_rows_upper_bound() { return HA_POS_ERROR; }
114
115
 
115
 
  int doOpen(const drizzled::identifier::Table &identifier, int mode, uint32_t test_if_locked);
 
116
  int doOpen(const drizzled::TableIdentifier &identifier, int mode, uint32_t test_if_locked);
116
117
  int open(const char *, int , uint32_t ) { assert(0); return -1; }
117
118
  int close(void);
118
119
  int doInsertRecord(unsigned char * buf);
122
123
  int rnd_next(unsigned char *buf);
123
124
  int rnd_pos(unsigned char * buf, unsigned char *pos);
124
125
  int doEndTableScan();
125
 
  TinaShare *get_share(const std::string &table_name);
 
126
  TinaShare *get_share(const char *table_name);
126
127
  int free_share();
127
128
  int repair(drizzled::Session* session, drizzled::HA_CHECK_OPT* check_opt);
128
129
  /* This is required for SQL layer to know that we support autorepair */
135
136
                          uint64_t *)
136
137
  {}
137
138
 
 
139
  /*
 
140
    These functions used to get/update status of the Cursor.
 
141
    Needed to enable concurrent inserts.
 
142
  */
 
143
  void get_status();
 
144
  void update_status();
 
145
 
138
146
  /* The following methods were added just for TINA */
139
147
  int encode_quote(unsigned char *buf);
140
148
  int find_current_row(unsigned char *buf);