~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/thr_lock.h

Removed reference to aio.h - we don't reference its use anywhere.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
/* For use with thr_locks */
17
 
 
18
 
#ifndef DRIZZLED_THR_LOCK_H
19
 
#define DRIZZLED_THR_LOCK_H
20
 
 
21
 
#include <boost/thread/mutex.hpp>
22
 
#include <boost/thread/condition_variable.hpp>
23
 
#include <pthread.h>
24
 
 
25
 
namespace drizzled
26
 
{
27
 
 
28
 
extern uint64_t max_write_lock_count;
29
 
extern uint64_t table_lock_wait_timeout;
30
 
 
 
16
/* For use with thr_lock:s */
 
17
 
 
18
#ifndef _thr_lock_h
 
19
#define _thr_lock_h
 
20
#ifdef  __cplusplus
 
21
extern "C" {
 
22
#endif
 
23
 
 
24
#include <my_pthread.h>
 
25
#include <my_list.h>
 
26
 
 
27
struct st_thr_lock;
 
28
extern ulong locks_immediate,locks_waited ;
 
29
extern pthread_mutex_t THR_LOCK_lock;
31
30
 
32
31
enum thr_lock_type { TL_IGNORE=-1,
33
 
                     /* UNLOCK ANY LOCK */
34
 
                     TL_UNLOCK,
35
 
                     /* Read lock */
36
 
                     TL_READ,
37
 
                     TL_READ_WITH_SHARED_LOCKS,
38
 
                     /* READ, Don't allow concurrent insert */
39
 
                     TL_READ_NO_INSERT,
40
 
                     /*
41
 
                       Write lock, but allow other threads to read / write.
42
 
                       Used by BDB tables in MySQL to mark that someone is
43
 
                       reading/writing to the table.
44
 
                     */
45
 
                     TL_WRITE_ALLOW_WRITE,
46
 
                     /*
47
 
                       Write lock, but allow other threads to read.
48
 
                       Used by ALTER TABLE in MySQL to allow readers
49
 
                       to use the table until ALTER TABLE is finished.
50
 
                     */
51
 
                     TL_WRITE_ALLOW_READ,
52
 
                     /*
53
 
                       WRITE lock used by concurrent insert. Will allow
54
 
                       READ, if one could use concurrent insert on table.
55
 
                     */
56
 
                     TL_WRITE_CONCURRENT_INSERT,
57
 
                     /*
58
 
                       parser only! Late bound low_priority flag.
 
32
                     TL_UNLOCK,                 /* UNLOCK ANY LOCK */
 
33
                     TL_READ,                   /* Read lock */
 
34
                     TL_READ_WITH_SHARED_LOCKS,
 
35
                     /* High prior. than TL_WRITE. Allow concurrent insert */
 
36
                     TL_READ_HIGH_PRIORITY,
 
37
                     /* READ, Don't allow concurrent insert */
 
38
                     TL_READ_NO_INSERT,
 
39
                     /* 
 
40
                        Write lock, but allow other threads to read / write.
 
41
                        Used by BDB tables in MySQL to mark that someone is
 
42
                        reading/writing to the table.
 
43
                      */
 
44
                     TL_WRITE_ALLOW_WRITE,
 
45
                     /*
 
46
                        Write lock, but allow other threads to read.
 
47
                        Used by ALTER TABLE in MySQL to allow readers
 
48
                        to use the table until ALTER TABLE is finished.
 
49
                     */
 
50
                     TL_WRITE_ALLOW_READ,
 
51
                     /*
 
52
                       WRITE lock used by concurrent insert. Will allow
 
53
                       READ, if one could use concurrent insert on table.
 
54
                     */
 
55
                     TL_WRITE_CONCURRENT_INSERT,
 
56
                     /* Write used by INSERT DELAYED.  Allows READ locks */
 
57
                     TL_WRITE_DELAYED,
 
58
                     /* 
 
59
                       parser only! Late bound low_priority flag. 
59
60
                       At open_tables() becomes thd->update_lock_default.
60
61
                     */
61
62
                     TL_WRITE_DEFAULT,
62
 
                     /* Normal WRITE lock */
63
 
                     TL_WRITE,
64
 
                     /* Abort new lock request with an error */
65
 
                     TL_WRITE_ONLY};
 
63
                     /* WRITE lock that has lower priority than TL_READ */
 
64
                     TL_WRITE_LOW_PRIORITY,
 
65
                     /* Normal WRITE lock */
 
66
                     TL_WRITE,
 
67
                     /* Abort new lock request with an error */
 
68
                     TL_WRITE_ONLY};
66
69
 
67
70
enum enum_thr_lock_result { THR_LOCK_SUCCESS= 0, THR_LOCK_ABORTED= 1,
68
71
                            THR_LOCK_WAIT_TIMEOUT= 2, THR_LOCK_DEADLOCK= 3 };
 
72
 
 
73
 
 
74
extern ulong max_write_lock_count;
 
75
extern ulong table_lock_wait_timeout;
 
76
extern my_bool thr_lock_inited;
 
77
extern enum thr_lock_type thr_upgraded_concurrent_insert_lock;
 
78
 
69
79
/*
70
80
  A description of the thread which owns the lock. The address
71
81
  of an instance of this structure is used to uniquely identify the thread.
72
82
*/
73
83
 
74
 
struct THR_LOCK_INFO
 
84
typedef struct st_thr_lock_info
75
85
{
76
86
  pthread_t thread;
77
 
  uint64_t thread_id;
78
 
  uint32_t n_cursors;
79
 
 
80
 
  THR_LOCK_INFO() : 
81
 
    thread(0),
82
 
    thread_id(0),
83
 
    n_cursors(0)
84
 
  { }
85
 
 
86
 
  void init();
87
 
 
88
 
};
 
87
  my_thread_id thread_id;
 
88
  ulong n_cursors;
 
89
} THR_LOCK_INFO;
89
90
 
90
91
/*
91
92
  Lock owner identifier. Globally identifies the lock owner within the
93
94
  structure is used as id.
94
95
*/
95
96
 
96
 
struct THR_LOCK_OWNER
 
97
typedef struct st_thr_lock_owner
97
98
{
98
99
  THR_LOCK_INFO *info;
99
 
 
100
 
  THR_LOCK_OWNER() :
101
 
    info(0)
102
 
  { }
103
 
 
104
 
};
105
 
 
106
 
struct THR_LOCK;
107
 
struct THR_LOCK_DATA;
108
 
 
109
 
struct THR_LOCK_DATA {
 
100
} THR_LOCK_OWNER;
 
101
 
 
102
 
 
103
typedef struct st_thr_lock_data {
110
104
  THR_LOCK_OWNER *owner;
111
 
  struct THR_LOCK_DATA *next,**prev;
112
 
  struct THR_LOCK *lock;
113
 
  boost::condition_variable *cond;
 
105
  struct st_thr_lock_data *next,**prev;
 
106
  struct st_thr_lock *lock;
 
107
  pthread_cond_t *cond;
114
108
  enum thr_lock_type type;
115
109
  void *status_param;                   /* Param to status functions */
116
 
 
117
 
  THR_LOCK_DATA() :
118
 
    owner(0),
119
 
    next(0),
120
 
    prev(0),
121
 
    lock(0),
122
 
    cond(0),
123
 
    type(TL_UNLOCK),
124
 
    status_param(0)
125
 
  { }
126
 
 
127
 
  void init(THR_LOCK *lock,
128
 
            void *status_param= NULL);
129
 
};
 
110
  void *debug_print_param;
 
111
} THR_LOCK_DATA;
130
112
 
131
113
struct st_lock_list {
132
114
  THR_LOCK_DATA *data,**last;
133
 
 
134
 
  st_lock_list() :
135
 
    data(0),
136
 
    last(0)
137
 
  { }
138
115
};
139
116
 
140
 
struct THR_LOCK {
141
 
private:
142
 
  boost::mutex mutex;
143
 
public:
 
117
typedef struct st_thr_lock {
 
118
  LIST list;
 
119
  pthread_mutex_t mutex;
144
120
  struct st_lock_list read_wait;
145
121
  struct st_lock_list read;
146
122
  struct st_lock_list write_wait;
147
123
  struct st_lock_list write;
148
124
  /* write_lock_count is incremented for write locks and reset on read locks */
149
 
  uint32_t write_lock_count;
150
 
  uint32_t read_no_write_count;
151
 
 
152
 
  THR_LOCK() :
153
 
    write_lock_count(0),
154
 
    read_no_write_count(0)
155
 
  { }
156
 
 
157
 
  ~THR_LOCK()
158
 
  { }
159
 
 
160
 
  void abort_locks();
161
 
  bool abort_locks_for_thread(uint64_t thread);
162
 
 
163
 
  void lock()
164
 
  {
165
 
    mutex.lock();
166
 
  }
167
 
 
168
 
  void unlock()
169
 
  {
170
 
    mutex.unlock();
171
 
  }
172
 
 
173
 
  void init()
174
 
  {
175
 
  }
176
 
 
177
 
  void deinit()
178
 
  {
179
 
  }
180
 
 
181
 
  boost::mutex *native_handle()
182
 
  {
183
 
    return &mutex;
184
 
  }
185
 
};
186
 
 
187
 
 
 
125
  ulong write_lock_count;
 
126
  uint read_no_write_count;
 
127
  void (*get_status)(void*, int);       /* When one gets a lock */
 
128
  void (*copy_status)(void*,void*);
 
129
  void (*update_status)(void*);         /* Before release of write */
 
130
  void (*restore_status)(void*);         /* Before release of read */
 
131
  my_bool (*check_status)(void *);
 
132
} THR_LOCK;
 
133
 
 
134
 
 
135
extern LIST *thr_lock_thread_list;
 
136
 
 
137
my_bool init_thr_lock(void);            /* Must be called once/thread */
188
138
#define thr_lock_owner_init(owner, info_arg) (owner)->info= (info_arg)
189
139
void thr_lock_info_init(THR_LOCK_INFO *info);
190
140
void thr_lock_init(THR_LOCK *lock);
 
141
void thr_lock_delete(THR_LOCK *lock);
 
142
void thr_lock_data_init(THR_LOCK *lock,THR_LOCK_DATA *data,
 
143
                        void *status_param);
 
144
enum enum_thr_lock_result thr_lock(THR_LOCK_DATA *data,
 
145
                                   THR_LOCK_OWNER *owner,
 
146
                                   enum thr_lock_type lock_type);
 
147
void thr_unlock(THR_LOCK_DATA *data);
191
148
enum enum_thr_lock_result thr_multi_lock(THR_LOCK_DATA **data,
192
 
                                         uint32_t count, THR_LOCK_OWNER *owner);
193
 
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
194
 
 
195
 
} /* namespace drizzled */
196
 
 
197
 
#endif /* DRIZZLED_THR_LOCK_H */
 
149
                                         uint count, THR_LOCK_OWNER *owner);
 
150
void thr_multi_unlock(THR_LOCK_DATA **data,uint count);
 
151
void thr_abort_locks(THR_LOCK *lock, my_bool upgrade_lock);
 
152
my_bool thr_abort_locks_for_thread(THR_LOCK *lock, my_thread_id thread);
 
153
void thr_print_locks(void);             /* For debugging */
 
154
my_bool thr_upgrade_write_delay_lock(THR_LOCK_DATA *data);
 
155
void    thr_downgrade_write_lock(THR_LOCK_DATA *data,
 
156
                                 enum thr_lock_type new_lock_type);
 
157
my_bool thr_reschedule_write_lock(THR_LOCK_DATA *data);
 
158
#ifdef  __cplusplus
 
159
}
 
160
#endif
 
161
#endif /* _thr_lock_h */