~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

Merge in security refactor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
 
21
 
 
22
20
#ifndef DRIZZLED_SQL_BASE_H
23
21
#define DRIZZLED_SQL_BASE_H
24
22
 
25
23
#include <drizzled/table.h>
26
 
#include <drizzled/table/concurrent.h>
27
 
 
28
 
#include "drizzled/visibility.h"
29
24
 
30
25
namespace drizzled
31
26
{
34
29
 
35
30
void table_cache_free(void);
36
31
bool table_cache_init(void);
 
32
void assign_new_table_id(TableShare *share);
37
33
uint32_t cached_open_tables(void);
38
34
uint32_t cached_table_definitions(void);
39
35
 
40
 
table::Cache &get_open_cache();
41
 
 
42
 
DRIZZLED_API void kill_drizzle(void);
 
36
void kill_drizzle(void);
43
37
 
44
38
/* sql_base.cc */
45
39
void set_item_name(Item *item,char *pos,uint32_t length);
57
51
                               Item *default_value, Item *on_update_value,
58
52
                               LEX_STRING *comment, char *change,
59
53
                               List<String> *interval_list, CHARSET_INFO *cs);
 
54
void store_position_for_column(const char *name);
60
55
bool push_new_name_resolution_context(Session *session,
61
56
                                      TableList *left_op,
62
57
                                      TableList *right_op);
94
89
  RESOLVED_WITH_NO_ALIAS,
95
90
  RESOLVED_AGAINST_ALIAS
96
91
};
97
 
Item ** find_item_in_list(Session *session,
98
 
                          Item *item, List<Item> &items, uint32_t *counter,
 
92
Item ** find_item_in_list(Item *item, List<Item> &items, uint32_t *counter,
99
93
                          find_item_error_report_type report_error,
100
94
                          enum_resolution_type *resolution);
101
95
bool insert_fields(Session *session, Name_resolution_context *context,
135
129
                               const char *table_name);
136
130
TableList *unique_table(TableList *table, TableList *table_list,
137
131
                        bool check_alias= false);
 
132
void remove_db_from_cache(const char *db);
138
133
 
139
 
/* bits for last argument to table::Cache::singleton().removeTable() */
 
134
/* bits for last argument to remove_table_from_cache() */
140
135
#define RTFC_NO_FLAG                0x0000
141
136
#define RTFC_OWNED_BY_Session_FLAG      0x0001
142
137
#define RTFC_WAIT_OTHER_THREAD_FLAG 0x0002
143
138
#define RTFC_CHECK_KILLED_FLAG      0x0004
 
139
bool remove_table_from_cache(Session *session, const char *db, const char *table,
 
140
                             uint32_t flags);
144
141
 
145
142
void mem_alloc_error(size_t size);
146
143
 
147
144
bool fill_record(Session* session, List<Item> &fields, List<Item> &values, bool ignore_errors= false);
148
145
bool fill_record(Session *session, Field **field, List<Item> &values, bool ignore_errors= false);
 
146
bool list_open_tables(const char *db,
 
147
                      const char *wild,
 
148
                      bool(*func)(Table *table,
 
149
                                  open_table_list_st& open_list,
 
150
                                  plugin::InfoSchemaTable *schema_table),
 
151
                      Table *display,
 
152
                      plugin::InfoSchemaTable *schema_table);
 
153
 
149
154
inline TableList *find_table_in_global_list(TableList *table,
150
155
                                             const char *db_name,
151
156
                                             const char *table_name)