12
12
You should have received a copy of the GNU General Public License
13
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
16
/* For use with thr_locks */
18
#ifndef DRIZZLED_THR_LOCK_H
19
#define DRIZZLED_THR_LOCK_H
21
#include <boost/thread/mutex.hpp>
22
#include <boost/thread/shared_mutex.hpp>
23
#include <boost/thread/condition_variable.hpp>
25
#include "drizzled/visibility.h"
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
/* For use with thr_lock:s */
24
#include <mysys/my_pthread.h>
25
#include <mysys/definitions.h>
28
extern uint32_t locks_immediate,locks_waited ;
29
extern pthread_mutex_t THR_LOCK_lock;
30
32
extern uint64_t max_write_lock_count;
31
33
extern uint64_t table_lock_wait_timeout;
34
enum thr_lock_type { TL_IGNORE=-1,
39
TL_READ_WITH_SHARED_LOCKS,
40
/* READ, Don't allow concurrent insert */
43
Write lock, but allow other threads to read / write.
44
Used by BDB tables in MySQL to mark that someone is
45
reading/writing to the table.
49
Write lock, but allow other threads to read.
50
Used by ALTER TABLE in MySQL to allow readers
51
to use the table until ALTER TABLE is finished.
55
WRITE lock used by concurrent insert. Will allow
56
READ, if one could use concurrent insert on table.
58
TL_WRITE_CONCURRENT_INSERT,
60
parser only! Late bound low_priority flag.
61
At open_tables() becomes thd->update_lock_default.
64
/* Normal WRITE lock */
66
/* Abort new lock request with an error */
69
enum enum_thr_lock_result { THR_LOCK_SUCCESS= 0, THR_LOCK_ABORTED= 1,
70
THR_LOCK_WAIT_TIMEOUT= 2, THR_LOCK_DEADLOCK= 3 };
34
extern bool thr_lock_inited;
35
extern enum thr_lock_type thr_upgraded_concurrent_insert_lock;
72
38
A description of the thread which owns the lock. The address
73
39
of an instance of this structure is used to uniquely identify the thread.
42
typedef struct st_thr_lock_info
45
my_thread_id thread_id;
79
46
uint32_t n_cursors;
91
50
Lock owner identifier. Globally identifies the lock owner within the
93
52
structure is used as id.
55
typedef struct st_thr_lock_owner
98
57
THR_LOCK_INFO *info;
107
struct THR_LOCK_DATA;
109
struct DRIZZLED_API THR_LOCK_DATA {
61
typedef struct st_thr_lock_data {
110
62
THR_LOCK_OWNER *owner;
111
struct THR_LOCK_DATA *next,**prev;
112
struct THR_LOCK *lock;
113
boost::condition_variable_any *cond;
63
struct st_thr_lock_data *next,**prev;
64
struct st_thr_lock *lock;
114
66
enum thr_lock_type type;
115
67
void *status_param; /* Param to status functions */
127
void init(THR_LOCK *lock,
128
void *status_param= NULL);
131
70
struct st_lock_list {
132
71
THR_LOCK_DATA *data,**last;
74
typedef struct st_thr_lock {
75
pthread_mutex_t mutex;
144
76
struct st_lock_list read_wait;
145
77
struct st_lock_list read;
146
78
struct st_lock_list write_wait;
148
80
/* write_lock_count is incremented for write locks and reset on read locks */
149
81
uint32_t write_lock_count;
150
82
uint32_t read_no_write_count;
154
read_no_write_count(0)
161
bool abort_locks_for_thread(uint64_t thread);
181
boost::mutex *native_handle()
83
void (*get_status)(void*, int); /* When one gets a lock */
84
void (*copy_status)(void*,void*);
85
void (*update_status)(void*); /* Before release of write */
86
void (*restore_status)(void*); /* Before release of read */
87
bool (*check_status)(void *);
91
bool init_thr_lock(void); /* Must be called once/thread */
189
92
#define thr_lock_owner_init(owner, info_arg) (owner)->info= (info_arg)
190
DRIZZLED_API void thr_lock_init(THR_LOCK *lock);
191
enum enum_thr_lock_result thr_multi_lock(Session &session, THR_LOCK_DATA **data,
93
void thr_lock_info_init(THR_LOCK_INFO *info);
94
void thr_lock_init(THR_LOCK *lock);
95
void thr_lock_delete(THR_LOCK *lock);
96
void thr_lock_data_init(THR_LOCK *lock,THR_LOCK_DATA *data,
98
enum enum_thr_lock_result thr_lock(THR_LOCK_DATA *data,
99
THR_LOCK_OWNER *owner,
100
enum thr_lock_type lock_type);
101
void thr_unlock(THR_LOCK_DATA *data);
102
enum enum_thr_lock_result thr_multi_lock(THR_LOCK_DATA **data,
192
103
uint32_t count, THR_LOCK_OWNER *owner);
193
104
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
195
} /* namespace drizzled */
197
#endif /* DRIZZLED_THR_LOCK_H */
105
void thr_abort_locks(THR_LOCK *lock);
106
bool thr_abort_locks_for_thread(THR_LOCK *lock, my_thread_id thread);
110
#endif /* _thr_lock_h */