1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
4
* Copyright (C) 2008 Sun Microsystems
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
42
THR_LOCK_DATA **getLocks()
47
size_t sizeTable() const
52
void resizeTable(size_t arg)
57
size_t sizeLock() const
67
void setLock(size_t arg)
73
void unlock(uint32_t count);
75
DrizzleLock(size_t table_count_arg)
77
table.resize(table_count_arg);
78
lock_count= table_count_arg * 2;
79
locks.resize(lock_count);
85
std::vector<Table *> table;
86
std::vector<THR_LOCK_DATA *> locks;
87
std::vector<THR_LOCK_DATA *> copy_of;
90
/* lockTables() and open_table() flags bits */
31
typedef struct drizzled_lock_st DRIZZLE_LOCK;
33
DRIZZLE_LOCK *mysql_lock_tables(Session *session, Table **table, uint32_t count,
34
uint32_t flags, bool *need_reopen);
35
/* mysql_lock_tables() and open_table() flags bits */
91
36
#define DRIZZLE_LOCK_IGNORE_GLOBAL_READ_LOCK 0x0001
92
37
#define DRIZZLE_LOCK_IGNORE_FLUSH 0x0002
93
38
#define DRIZZLE_LOCK_NOTIFY_IF_NEED_REOPEN 0x0004
94
39
#define DRIZZLE_OPEN_TEMPORARY_ONLY 0x0008
41
void mysql_unlock_tables(Session *session, DRIZZLE_LOCK *sql_lock);
42
void mysql_unlock_read_tables(Session *session, DRIZZLE_LOCK *sql_lock);
43
void mysql_unlock_some_tables(Session *session, Table **table, uint32_t count);
44
void mysql_lock_remove(Session *session, Table *table);
45
void mysql_lock_abort(Session *session, Table *table);
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,
51
void start_waiting_global_read_lock(Session *session);
52
bool make_global_read_lock_block_commit(Session *session);
53
bool set_protect_against_global_read_lock(void);
54
void unset_protect_against_global_read_lock(void);
55
void broadcast_refresh(void);
57
/* Lock based on name */
58
int lock_table_name(Session *session, TableList *table_list, bool check_in_use);
59
void unlock_table_name(TableList *table_list);
60
bool wait_for_locked_table_names(Session *session, TableList *table_list);
61
bool lock_table_names(Session *session, TableList *table_list);
62
void unlock_table_names(TableList *table_list, TableList *last_table);
63
bool lock_table_names_exclusively(Session *session, TableList *table_list);
96
65
} /* namespace drizzled */
98
67
#endif /* DRIZZLED_LOCK_H */