~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handlerton.h

  • Committer: Monty Taylor
  • Date: 2008-11-04 18:01:26 UTC
  • mto: (575.1.7 fix-headers)
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081104180126-88cfh3g4q1szu7us
Moved some stuff out of handler.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef DRIZZLED_HANDLERTON_H
 
21
#define DRIZZLED_HANDLERTON_H
 
22
 
 
23
#include CSTDINT_H
 
24
 
 
25
class TableList;
 
26
typedef struct st_table_share TABLE_SHARE;
 
27
typedef bool (stat_print_fn)(Session *session, const char *type, uint32_t type_len,
 
28
                             const char *file, uint32_t file_len,
 
29
                             const char *status, uint32_t status_len);
 
30
enum ha_stat_type { HA_ENGINE_STATUS, HA_ENGINE_LOGS, HA_ENGINE_MUTEX };
 
31
extern st_plugin_int *hton2plugin[MAX_HA];
 
32
 
 
33
/*
 
34
  handlerton is a singleton structure - one instance per storage engine -
 
35
  to provide access to storage engine functionality that works on the
 
36
  "global" level (unlike handler class that works on a per-table basis)
 
37
 
 
38
  usually handlerton instance is defined statically in ha_xxx.cc as
 
39
 
 
40
  static handlerton { ... } xxx_hton;
 
41
 
 
42
  savepoint_*, prepare, recover, and *_by_xid pointers can be 0.
 
43
*/
 
44
struct handlerton
 
45
{
 
46
  /*
 
47
    Historical marker for if the engine is available of not
 
48
  */
 
49
  SHOW_COMP_OPTION state;
 
50
 
 
51
  /*
 
52
    Historical number used for frm file to determine the correct storage engine.
 
53
    This is going away and new engines will just use "name" for this.
 
54
  */
 
55
  enum legacy_db_type db_type;
 
56
  /*
 
57
    each storage engine has it's own memory area (actually a pointer)
 
58
    in the session, for storing per-connection information.
 
59
    It is accessed as
 
60
 
 
61
      session->ha_data[xxx_hton.slot]
 
62
 
 
63
   slot number is initialized by MySQL after xxx_init() is called.
 
64
   */
 
65
   uint32_t slot;
 
66
   /*
 
67
     to store per-savepoint data storage engine is provided with an area
 
68
     of a requested size (0 is ok here).
 
69
     savepoint_offset must be initialized statically to the size of
 
70
     the needed memory to store per-savepoint information.
 
71
     After xxx_init it is changed to be an offset to savepoint storage
 
72
     area and need not be used by storage engine.
 
73
     see binlog_hton and binlog_savepoint_set/rollback for an example.
 
74
   */
 
75
   uint32_t savepoint_offset;
 
76
   /*
 
77
     handlerton methods:
 
78
 
 
79
     close_connection is only called if
 
80
     session->ha_data[xxx_hton.slot] is non-zero, so even if you don't need
 
81
     this storage area - set it to something, so that MySQL would know
 
82
     this storage engine was accessed in this connection
 
83
   */
 
84
   int  (*close_connection)(handlerton *hton, Session *session);
 
85
   /*
 
86
     sv points to an uninitialized storage area of requested size
 
87
     (see savepoint_offset description)
 
88
   */
 
89
   int  (*savepoint_set)(handlerton *hton, Session *session, void *sv);
 
90
   /*
 
91
     sv points to a storage area, that was earlier passed
 
92
     to the savepoint_set call
 
93
   */
 
94
   int  (*savepoint_rollback)(handlerton *hton, Session *session, void *sv);
 
95
   int  (*savepoint_release)(handlerton *hton, Session *session, void *sv);
 
96
   /*
 
97
     'all' is true if it's a real commit, that makes persistent changes
 
98
     'all' is false if it's not in fact a commit but an end of the
 
99
     statement that is part of the transaction.
 
100
     NOTE 'all' is also false in auto-commit mode where 'end of statement'
 
101
     and 'real commit' mean the same event.
 
102
   */
 
103
   int  (*commit)(handlerton *hton, Session *session, bool all);
 
104
   int  (*rollback)(handlerton *hton, Session *session, bool all);
 
105
   int  (*prepare)(handlerton *hton, Session *session, bool all);
 
106
   int  (*recover)(handlerton *hton, XID *xid_list, uint32_t len);
 
107
   int  (*commit_by_xid)(handlerton *hton, XID *xid);
 
108
   int  (*rollback_by_xid)(handlerton *hton, XID *xid);
 
109
   void *(*create_cursor_read_view)(handlerton *hton, Session *session);
 
110
   void (*set_cursor_read_view)(handlerton *hton, Session *session, void *read_view);
 
111
   void (*close_cursor_read_view)(handlerton *hton, Session *session, void *read_view);
 
112
   handler *(*create)(handlerton *hton, TABLE_SHARE *table, MEM_ROOT *mem_root);
 
113
   void (*drop_database)(handlerton *hton, char* path);
 
114
   int (*start_consistent_snapshot)(handlerton *hton, Session *session);
 
115
   bool (*flush_logs)(handlerton *hton);
 
116
   bool (*show_status)(handlerton *hton, Session *session, stat_print_fn *print, enum ha_stat_type stat);
 
117
   int (*fill_files_table)(handlerton *hton, Session *session,
 
118
                           TableList *tables,
 
119
                           class Item *cond);
 
120
   uint32_t flags;                                /* global handler flags */
 
121
   int (*release_temporary_latches)(handlerton *hton, Session *session);
 
122
 
 
123
   int (*discover)(handlerton *hton, Session* session, const char *db, 
 
124
                   const char *name,
 
125
                   unsigned char **frmblob, 
 
126
                   size_t *frmlen);
 
127
   int (*table_exists_in_engine)(handlerton *hton, Session* session, const char *db,
 
128
                                 const char *name);
 
129
   uint32_t license; /* Flag for Engine License */
 
130
   void *data; /* Location for engines to keep personal structures */
 
131
};
 
132
 
 
133
 
 
134
 
 
135
#endif /* DRIZZLED_HANDLERTON_H */