~drizzle-trunk/drizzle/development

670.2.4 by Monty Taylor
Removed more stuff from the headers.
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_LOCK_H
21
#define DRIZZLED_LOCK_H
22
1241.9.43 by Monty Taylor
Merged trunk. Also renamed thr_lock. Doh. I hate it when I do both.
23
#include "drizzled/thr_lock.h"
670.2.4 by Monty Taylor
Removed more stuff from the headers.
24
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
25
namespace drizzled
26
{
27
670.2.4 by Monty Taylor
Removed more stuff from the headers.
28
class Session;
29
class Table;
30
class TableList;
1711.6.1 by Brian Aker
Style on structure cleanup
31
class DrizzleLock;
670.2.4 by Monty Taylor
Removed more stuff from the headers.
32
1711.6.1 by Brian Aker
Style on structure cleanup
33
DrizzleLock *mysql_lock_tables(Session *session, Table **table, uint32_t count,
34
                               uint32_t flags, bool *need_reopen);
670.2.4 by Monty Taylor
Removed more stuff from the headers.
35
/* mysql_lock_tables() and open_table() flags bits */
36
#define DRIZZLE_LOCK_IGNORE_GLOBAL_READ_LOCK      0x0001
37
#define DRIZZLE_LOCK_IGNORE_FLUSH                 0x0002
38
#define DRIZZLE_LOCK_NOTIFY_IF_NEED_REOPEN        0x0004
39
#define DRIZZLE_OPEN_TEMPORARY_ONLY               0x0008
40
1711.6.1 by Brian Aker
Style on structure cleanup
41
void mysql_unlock_tables(Session *session, DrizzleLock *sql_lock);
42
void mysql_unlock_read_tables(Session *session, DrizzleLock *sql_lock);
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
43
void mysql_unlock_some_tables(Session *session, Table **table, uint32_t count);
44
void mysql_lock_remove(Session *session, Table *table);
1113.1.2 by Brian Aker
Refactor/kill some dead lock code.
45
void mysql_lock_abort(Session *session, Table *table);
670.2.4 by Monty Taylor
Removed more stuff from the headers.
46
bool mysql_lock_abort_for_thread(Session *session, Table *table);
47
bool lock_global_read_lock(Session *session);
48
void unlock_global_read_lock(Session *session);
49
bool wait_if_global_read_lock(Session *session, bool abort_on_refresh,
50
                              bool is_not_commit);
51
void start_waiting_global_read_lock(Session *session);
52
bool make_global_read_lock_block_commit(Session *session);
53
void broadcast_refresh(void);
54
55
/* Lock based on name */
1017 by Brian Aker
Drop dead session pass
56
void unlock_table_name(TableList *table_list);
670.2.4 by Monty Taylor
Removed more stuff from the headers.
57
bool wait_for_locked_table_names(Session *session, TableList *table_list);
1019.1.1 by Brian Aker
Merge (also removes session from show variables).
58
void unlock_table_names(TableList *table_list, TableList *last_table);
670.2.4 by Monty Taylor
Removed more stuff from the headers.
59
bool lock_table_names_exclusively(Session *session, TableList *table_list);
60
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
61
} /* namespace drizzled */
62
670.2.4 by Monty Taylor
Removed more stuff from the headers.
63
#endif /* DRIZZLED_LOCK_H */