~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Andrew Hutchings
  • Date: 2011-01-04 20:16:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2057.
  • Revision ID: andrew@linuxjedi.co.uk-20110104201655-fm6splh5wqpv8wnb
Revert join_cache buffer cleanup, causes valgrind problems and as much as I don't like it I think the current implementation seems to work

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define DRIZZLED_PLUGIN_STORAGE_ENGINE_H
22
22
 
23
23
 
24
 
#include <drizzled/cached_directory.h>
25
24
#include <drizzled/definitions.h>
26
 
#include <drizzled/error_t.h>
 
25
#include <drizzled/plugin.h>
27
26
#include <drizzled/handler_structs.h>
28
 
#include <drizzled/identifier.h>
29
27
#include <drizzled/message.h>
30
28
#include <drizzled/message/cache.h>
31
 
#include <drizzled/plugin.h>
32
 
#include <drizzled/plugin/monitored_in_transaction.h>
33
 
#include <drizzled/plugin/plugin.h>
34
 
#include <drizzled/sql_string.h>
 
29
#include "drizzled/plugin/plugin.h"
 
30
#include "drizzled/sql_string.h"
 
31
#include "drizzled/identifier.h"
 
32
#include "drizzled/cached_directory.h"
 
33
#include "drizzled/plugin/monitored_in_transaction.h"
35
34
 
36
35
#include <bitset>
37
36
#include <string>
38
37
#include <vector>
39
38
#include <set>
40
39
 
41
 
#include <drizzled/visibility.h>
42
 
 
43
40
namespace drizzled
44
41
{
45
42
 
49
46
typedef struct st_hash HASH;
50
47
 
51
48
class TableShare;
 
49
typedef drizzle_lex_string LEX_STRING;
52
50
typedef bool (stat_print_fn)(Session *session, const char *type, uint32_t type_len,
53
51
                             const char *file, uint32_t file_len,
54
52
                             const char *status, uint32_t status_len);
124
122
typedef std::set<std::string> TableNameList;
125
123
 
126
124
extern const std::string UNKNOWN_STRING;
127
 
extern DRIZZLED_API const std::string DEFAULT_DEFINITION_FILE_EXT;
 
125
extern const std::string DEFAULT_DEFINITION_FILE_EXT;
128
126
 
129
127
 
130
128
/*
136
134
 
137
135
  static StorageEngine { ... } xxx_engine;
138
136
*/
139
 
class DRIZZLED_API StorageEngine :
140
 
  public Plugin,
141
 
  public MonitoredInTransaction
 
137
class StorageEngine : public Plugin,
 
138
                      public MonitoredInTransaction
142
139
{
143
140
  friend class SEAPITester;
144
141
public:
145
142
  typedef uint64_t Table_flags;
146
143
 
147
144
private:
 
145
  const std::bitset<HTON_BIT_SIZE> flags; /* global Cursor flags */
 
146
 
148
147
  static EngineVector &getSchemaEngines();
149
 
  const std::bitset<HTON_BIT_SIZE> flags; /* global Cursor flags */
150
 
 
151
148
 
152
149
  virtual void setTransactionReadWrite(Session& session);
153
150
 
204
201
  pthread_mutex_t proto_cache_mutex;
205
202
 
206
203
public:
 
204
 
207
205
  StorageEngine(const std::string name_arg,
208
206
                const std::bitset<HTON_BIT_SIZE> &flags_arg= HTON_NO_FLAGS);
209
207
 
211
209
 
212
210
protected:
213
211
  virtual int doGetTableDefinition(Session &session,
214
 
                                   const drizzled::identifier::Table &identifier,
 
212
                                   const drizzled::TableIdentifier &identifier,
215
213
                                   message::Table &table_message)
216
214
  {
217
215
    (void)session;
222
220
  }
223
221
 
224
222
  /* Old style cursor errors */
225
 
  void print_keydup_error(uint32_t key_nr, const char *msg, const Table &table) const;
226
 
  virtual bool get_error_message(int error, String *buf) const;
227
 
 
 
223
  void print_keydup_error(uint32_t key_nr, const char *msg, Table &table);
 
224
  void print_error(int error, myf errflag, Table *table= NULL);
 
225
  virtual bool get_error_message(int error, String *buf);
228
226
public:
229
 
  virtual void print_error(int error, myf errflag, const Table& table) const;
 
227
  virtual void print_error(int error, myf errflag, Table& table);
230
228
 
231
229
  bool is_user_selectable() const
232
230
  {
281
279
protected:
282
280
  virtual int doCreateTable(Session &session,
283
281
                            Table &table_arg,
284
 
                            const drizzled::identifier::Table &identifier,
 
282
                            const drizzled::TableIdentifier &identifier,
285
283
                            message::Table &message)= 0;
286
284
 
287
285
  virtual int doRenameTable(Session &session,
288
 
                            const drizzled::identifier::Table &from, const drizzled::identifier::Table &to)= 0;
 
286
                            const drizzled::TableIdentifier &from, const drizzled::TableIdentifier &to)= 0;
289
287
 
290
288
  virtual int doDropTable(Session &session,
291
 
                          const drizzled::identifier::Table &identifier)= 0;
 
289
                          const drizzled::TableIdentifier &identifier)= 0;
292
290
 
293
291
  virtual void doGetTableIdentifiers(CachedDirectory &directory,
294
 
                                     const drizzled::identifier::Schema &schema_identifier,
295
 
                                     identifier::Table::vector &set_of_identifiers)= 0;
296
 
 
297
 
  virtual bool doDoesTableExist(Session& session, const drizzled::identifier::Table &identifier);
298
 
 
299
 
  virtual bool doCanCreateTable(const drizzled::identifier::Table &identifier)
 
292
                                     const drizzled::SchemaIdentifier &schema_identifier,
 
293
                                     TableIdentifier::vector &set_of_identifiers)= 0;
 
294
 
 
295
  virtual bool doDoesTableExist(Session& session, const drizzled::TableIdentifier &identifier);
 
296
 
 
297
  virtual bool doCanCreateTable(const drizzled::TableIdentifier &identifier)
300
298
  { (void)identifier;  return true; }
301
299
 
302
300
public:
315
313
  friend class StorageEngineDoesTableExist;
316
314
  friend class StorageEngineGetSchemaDefinition;
317
315
  friend class StorageEngineGetTableDefinition;
318
 
  friend class DropTableByIdentifier;
319
316
 
320
 
  int renameTable(Session &session, const drizzled::identifier::Table &from, const drizzled::identifier::Table &to);
 
317
  int renameTable(Session &session, const drizzled::TableIdentifier &from, const drizzled::TableIdentifier &to);
321
318
 
322
319
  /* Class Methods for operating on plugin */
323
320
  static bool addPlugin(plugin::StorageEngine *engine);
324
321
  static void removePlugin(plugin::StorageEngine *engine);
325
322
 
326
 
  static message::table::shared_ptr getTableMessage(Session& session,
327
 
                                                    const drizzled::identifier::Table &identifier,
328
 
                                                    bool include_temporary_tables= true);
 
323
  static int getTableDefinition(Session& session,
 
324
                                const drizzled::TableIdentifier &identifier,
 
325
                                message::table::shared_ptr &table_proto,
 
326
                                bool include_temporary_tables= true);
329
327
  static bool doesTableExist(Session &session,
330
 
                             const drizzled::identifier::Table &identifier,
 
328
                             const drizzled::TableIdentifier &identifier,
331
329
                             bool include_temporary_tables= true);
332
330
 
333
331
  static plugin::StorageEngine *findByName(const std::string &find_str);
336
334
  static void closeConnection(Session* session);
337
335
  static void dropDatabase(char* path);
338
336
  static bool flushLogs(plugin::StorageEngine *db_type);
339
 
 
340
 
  static bool dropTable(Session& session,
341
 
                        const drizzled::identifier::Table &identifier);
342
 
  static bool dropTable(Session& session,
343
 
                        const drizzled::identifier::Table &identifier,
344
 
                        drizzled::error_t &error);
345
 
 
346
 
  static bool dropTable(Session& session,
347
 
                        StorageEngine &engine,
348
 
                        identifier::Table::const_reference identifier,
349
 
                        drizzled::error_t &error);
350
 
 
 
337
  static int dropTable(Session& session,
 
338
                       const drizzled::TableIdentifier &identifier);
 
339
  static int dropTable(Session& session,
 
340
                       StorageEngine &engine,
 
341
                       const drizzled::TableIdentifier &identifier);
351
342
  static void getIdentifiers(Session &session,
352
 
                             const identifier::Schema &schema_identifier,
353
 
                             identifier::Table::vector &set_of_identifiers);
 
343
                             const SchemaIdentifier &schema_identifier,
 
344
                             TableIdentifier::vector &set_of_identifiers);
354
345
 
355
346
  // Check to see if any SE objects to creation.
356
 
  static bool canCreateTable(const drizzled::identifier::Table &identifier);
 
347
  static bool canCreateTable(const drizzled::TableIdentifier &identifier);
357
348
 
358
349
  // @note All schema methods defined here
359
 
  static void getIdentifiers(Session &session, identifier::Schema::vector &schemas);
360
 
  static message::schema::shared_ptr getSchemaDefinition(const drizzled::identifier::Table &identifier);
361
 
  static message::schema::shared_ptr getSchemaDefinition(const drizzled::identifier::Schema &identifier);
362
 
  static bool doesSchemaExist(const drizzled::identifier::Schema &identifier);
363
 
  static const CHARSET_INFO *getSchemaCollation(const drizzled::identifier::Schema &identifier);
 
350
  static void getIdentifiers(Session &session, SchemaIdentifier::vector &schemas);
 
351
  static bool getSchemaDefinition(const drizzled::TableIdentifier &identifier, message::schema::shared_ptr &proto);
 
352
  static bool getSchemaDefinition(const drizzled::SchemaIdentifier &identifier, message::schema::shared_ptr &proto);
 
353
  static bool doesSchemaExist(const drizzled::SchemaIdentifier &identifier);
 
354
  static const CHARSET_INFO *getSchemaCollation(const drizzled::SchemaIdentifier &identifier);
364
355
  static bool createSchema(const drizzled::message::Schema &schema_message);
365
 
  static bool dropSchema(Session &session,
366
 
                         identifier::Schema::const_reference identifier,
367
 
                         message::schema::const_reference schema_message);
 
356
  static bool dropSchema(const drizzled::SchemaIdentifier &identifier);
368
357
  static bool alterSchema(const drizzled::message::Schema &schema_message);
369
358
 
370
359
  // @note make private/protected
371
360
protected:
372
 
  virtual void doGetSchemaIdentifiers(identifier::Schema::vector&)
 
361
  virtual void doGetSchemaIdentifiers(SchemaIdentifier::vector&)
373
362
  { }
374
363
 
375
 
  virtual drizzled::message::schema::shared_ptr doGetSchemaDefinition(const drizzled::identifier::Schema&)
 
364
  virtual bool doGetSchemaDefinition(const drizzled::SchemaIdentifier&, drizzled::message::schema::shared_ptr&)
376
365
  { 
377
 
    return drizzled::message::schema::shared_ptr(); 
 
366
    return false; 
378
367
  }
379
368
 
380
369
  virtual bool doCreateSchema(const drizzled::message::Schema&)
383
372
  virtual bool doAlterSchema(const drizzled::message::Schema&)
384
373
  { return false; }
385
374
 
386
 
  virtual bool doDropSchema(const drizzled::identifier::Schema&)
 
375
  virtual bool doDropSchema(const drizzled::SchemaIdentifier&)
387
376
  { return false; }
388
377
 
389
378
public:
392
381
    return engine == NULL ? UNKNOWN_STRING : engine->getName();
393
382
  }
394
383
 
395
 
  static bool createTable(Session &session,
396
 
                          const identifier::Table &identifier,
397
 
                          message::Table& table_message);
 
384
  static int createTable(Session& session,
 
385
                         const drizzled::TableIdentifier &identifier,
 
386
                         message::Table& table_proto);
398
387
 
399
388
  static void removeLostTemporaryTables(Session &session, const char *directory);
400
389
 
401
390
  Cursor *getCursor(Table &share);
402
391
 
403
392
  uint32_t max_record_length() const
404
 
  { return std::min(HA_MAX_REC_LENGTH, max_supported_record_length()); }
 
393
  { return std::min((unsigned int)HA_MAX_REC_LENGTH, max_supported_record_length()); }
405
394
  uint32_t max_keys() const
406
 
  { return std::min(MAX_KEY, max_supported_keys()); }
 
395
  { return std::min((unsigned int)MAX_KEY, max_supported_keys()); }
407
396
  uint32_t max_key_parts() const
408
 
  { return std::min(MAX_REF_PARTS, max_supported_key_parts()); }
 
397
  { return std::min((unsigned int)MAX_REF_PARTS, max_supported_key_parts()); }
409
398
  uint32_t max_key_length() const
410
 
  { return std::min(MAX_KEY_LENGTH, max_supported_key_length()); }
 
399
  { return std::min((unsigned int)MAX_KEY_LENGTH, max_supported_key_length()); }
411
400
  uint32_t max_key_part_length(void) const
412
 
  { return std::min(MAX_KEY_LENGTH, max_supported_key_part_length()); }
 
401
  { return std::min((unsigned int)MAX_KEY_LENGTH, max_supported_key_part_length()); }
413
402
 
414
403
  virtual uint32_t max_supported_record_length(void) const
415
404
  { return HA_MAX_REC_LENGTH; }
419
408
  virtual uint32_t max_supported_key_part_length(void) const { return 255; }
420
409
 
421
410
  /* TODO-> Make private */
422
 
protected:
423
 
  static int deleteDefinitionFromPath(const drizzled::identifier::Table &identifier);
424
 
  static int renameDefinitionFromPath(const drizzled::identifier::Table &dest, const drizzled::identifier::Table &src);
425
 
  static int writeDefinitionFromPath(const drizzled::identifier::Table &identifier, message::Table &proto);
 
411
  static int deleteDefinitionFromPath(const drizzled::TableIdentifier &identifier);
 
412
  static int renameDefinitionFromPath(const drizzled::TableIdentifier &dest, const drizzled::TableIdentifier &src);
 
413
  static int writeDefinitionFromPath(const drizzled::TableIdentifier &identifier, message::Table &proto);
426
414
  static bool readTableFile(const std::string &path, message::Table &table_message);
427
415
 
428
416
public:
460
448
  }
461
449
};
462
450
 
463
 
std::ostream& operator<<(std::ostream& output, const StorageEngine &engine);
464
 
 
465
451
} /* namespace plugin */
466
452
} /* namespace drizzled */
467
453