~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_lock.h

  • Committer: Brian Aker
  • Date: 2009-02-10 00:14:40 UTC
  • Revision ID: brian@tangent.org-20090210001440-qjg8eofh3h93064b
Adding Multi-threaded Scheduler into the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
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 */
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/shared_mutex.hpp>
23
 
#include <boost/thread/condition_variable.hpp>
24
 
 
25
 
#include <drizzled/visibility.h>
26
 
 
27
 
namespace drizzled
28
 
{
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
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 <mysys/my_pthread.h>
 
25
#include <mysys/my_list.h>
 
26
#include <mysys/definitions.h>
 
27
 
 
28
struct st_thr_lock;
 
29
extern uint32_t locks_immediate,locks_waited ;
 
30
extern pthread_mutex_t THR_LOCK_lock;
 
31
 
29
32
 
30
33
extern uint64_t max_write_lock_count;
31
34
extern uint64_t table_lock_wait_timeout;
32
 
 
33
 
 
34
 
enum thr_lock_type { TL_IGNORE=-1,
35
 
                     /* UNLOCK ANY LOCK */
36
 
                     TL_UNLOCK,
37
 
                     /* Read lock */
38
 
                     TL_READ,
39
 
                     TL_READ_WITH_SHARED_LOCKS,
40
 
                     /* READ, Don't allow concurrent insert */
41
 
                     TL_READ_NO_INSERT,
42
 
                     /*
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.
46
 
                     */
47
 
                     TL_WRITE_ALLOW_WRITE,
48
 
                     /*
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.
52
 
                     */
53
 
                     TL_WRITE_ALLOW_READ,
54
 
                     /*
55
 
                       WRITE lock used by concurrent insert. Will allow
56
 
                       READ, if one could use concurrent insert on table.
57
 
                     */
58
 
                     TL_WRITE_CONCURRENT_INSERT,
59
 
                     /*
60
 
                       parser only! Late bound low_priority flag.
61
 
                       At open_tables() becomes thd->update_lock_default.
62
 
                     */
63
 
                     TL_WRITE_DEFAULT,
64
 
                     /* Normal WRITE lock */
65
 
                     TL_WRITE,
66
 
                     /* Abort new lock request with an error */
67
 
                     TL_WRITE_ONLY};
68
 
 
69
 
enum enum_thr_lock_result { THR_LOCK_SUCCESS= 0, THR_LOCK_ABORTED= 1,
70
 
                            THR_LOCK_WAIT_TIMEOUT= 2, THR_LOCK_DEADLOCK= 3 };
 
35
extern bool thr_lock_inited;
 
36
extern enum thr_lock_type thr_upgraded_concurrent_insert_lock;
 
37
 
71
38
/*
72
39
  A description of the thread which owns the lock. The address
73
40
  of an instance of this structure is used to uniquely identify the thread.
74
41
*/
75
42
 
76
 
struct THR_LOCK_INFO
 
43
typedef struct st_thr_lock_info
77
44
{
78
 
  uint64_t thread_id;
 
45
  pthread_t thread;
 
46
  my_thread_id thread_id;
79
47
  uint32_t n_cursors;
80
 
 
81
 
  THR_LOCK_INFO() : 
82
 
    thread_id(0),
83
 
    n_cursors(0)
84
 
  { }
85
 
 
86
 
  void init();
87
 
 
88
 
};
 
48
} THR_LOCK_INFO;
89
49
 
90
50
/*
91
51
  Lock owner identifier. Globally identifies the lock owner within the
93
53
  structure is used as id.
94
54
*/
95
55
 
96
 
struct THR_LOCK_OWNER
 
56
typedef struct st_thr_lock_owner
97
57
{
98
58
  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 DRIZZLED_API THR_LOCK_DATA {
 
59
} THR_LOCK_OWNER;
 
60
 
 
61
 
 
62
typedef struct st_thr_lock_data {
110
63
  THR_LOCK_OWNER *owner;
111
 
  struct THR_LOCK_DATA *next,**prev;
112
 
  struct THR_LOCK *lock;
113
 
  boost::condition_variable_any *cond;
 
64
  struct st_thr_lock_data *next,**prev;
 
65
  struct st_thr_lock *lock;
 
66
  pthread_cond_t *cond;
114
67
  enum thr_lock_type type;
115
68
  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);
 
69
} THR_LOCK_DATA;
 
70
 
 
71
/* A helper type for transactional locking. */
 
72
struct st_table_lock_info
 
73
{
 
74
  enum thr_lock_type lock_type;
 
75
  int           lock_timeout;
 
76
  bool          lock_transactional;
129
77
};
130
78
 
131
79
struct st_lock_list {
132
80
  THR_LOCK_DATA *data,**last;
133
 
 
134
 
  st_lock_list() :
135
 
    data(0),
136
 
    last(0)
137
 
  { }
138
81
};
139
82
 
140
 
struct THR_LOCK {
141
 
private:
142
 
  boost::mutex mutex;
143
 
public:
 
83
typedef struct st_thr_lock {
 
84
  LIST list;
 
85
  pthread_mutex_t mutex;
144
86
  struct st_lock_list read_wait;
145
87
  struct st_lock_list read;
146
88
  struct st_lock_list write_wait;
148
90
  /* write_lock_count is incremented for write locks and reset on read locks */
149
91
  uint32_t write_lock_count;
150
92
  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
 
class Session; 
188
 
 
 
93
  void (*get_status)(void*, int);       /* When one gets a lock */
 
94
  void (*copy_status)(void*,void*);
 
95
  void (*update_status)(void*);         /* Before release of write */
 
96
  void (*restore_status)(void*);         /* Before release of read */
 
97
  bool (*check_status)(void *);
 
98
} THR_LOCK;
 
99
 
 
100
 
 
101
extern LIST *thr_lock_thread_list;
 
102
 
 
103
bool init_thr_lock(void);               /* Must be called once/thread */
189
104
#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,
 
105
void thr_lock_info_init(THR_LOCK_INFO *info);
 
106
void thr_lock_init(THR_LOCK *lock);
 
107
void thr_lock_delete(THR_LOCK *lock);
 
108
void thr_lock_data_init(THR_LOCK *lock,THR_LOCK_DATA *data,
 
109
                        void *status_param);
 
110
enum enum_thr_lock_result thr_lock(THR_LOCK_DATA *data,
 
111
                                   THR_LOCK_OWNER *owner,
 
112
                                   enum thr_lock_type lock_type);
 
113
void thr_unlock(THR_LOCK_DATA *data);
 
114
enum enum_thr_lock_result thr_multi_lock(THR_LOCK_DATA **data,
192
115
                                         uint32_t count, THR_LOCK_OWNER *owner);
193
116
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
194
 
 
195
 
} /* namespace drizzled */
196
 
 
197
 
#endif /* DRIZZLED_THR_LOCK_H */
 
117
void thr_abort_locks(THR_LOCK *lock, bool upgrade_lock);
 
118
bool thr_abort_locks_for_thread(THR_LOCK *lock, my_thread_id thread);
 
119
bool thr_upgrade_write_delay_lock(THR_LOCK_DATA *data);
 
120
void    thr_downgrade_write_lock(THR_LOCK_DATA *data,
 
121
                                 enum thr_lock_type new_lock_type);
 
122
bool thr_reschedule_write_lock(THR_LOCK_DATA *data);
 
123
#ifdef  __cplusplus
 
124
}
 
125
#endif
 
126
#endif /* _thr_lock_h */