1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
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.
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.
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
20
#include <drizzled/server_includes.h>
22
#include <drizzled/functions/lock.h>
23
#include <mysys/hash.h>
24
#include <drizzled/session.h>
30
pthread_mutex_t LOCK_user_locks;
31
static HASH hash_user_locks;
42
my_thread_id thread_id;
43
void set_thread(Session *session) { thread_id= session->thread_id; }
45
User_level_lock(const unsigned char *key_arg,uint32_t length, ulong id)
46
:key_length(length),count(1),locked(1), thread_id(id)
48
key= (unsigned char*) my_memdup(key_arg,length,MYF(0));
49
pthread_cond_init(&cond,NULL);
52
if (my_hash_insert(&hash_user_locks,(unsigned char*) this))
63
hash_delete(&hash_user_locks,(unsigned char*) this);
66
pthread_cond_destroy(&cond);
68
inline bool initialized() { return key != 0; }
70
friend void item_user_lock_release(User_level_lock *ull);
71
friend unsigned char *ull_get_key(const User_level_lock *ull, size_t *length,
75
unsigned char *ull_get_key(const User_level_lock *ull, size_t *length,
76
bool not_used __attribute__((unused)))
78
*length= ull->key_length;
83
void item_user_lock_release(User_level_lock *ull)
88
pthread_cond_signal(&ull->cond);
96
Check a user level lock.
98
Sets null_value=true on error.
103
0 Already taken, or error
106
int64_t Item_func_is_free_lock::val_int()
109
String *res=args[0]->val_str(&value);
110
User_level_lock *ull;
113
if (!res || !res->length())
119
pthread_mutex_lock(&LOCK_user_locks);
120
ull= (User_level_lock *) hash_search(&hash_user_locks, (unsigned char*) res->ptr(),
121
(size_t) res->length());
122
pthread_mutex_unlock(&LOCK_user_locks);
123
if (!ull || !ull->locked)
128
int64_t Item_func_is_used_lock::val_int()
131
String *res=args[0]->val_str(&value);
132
User_level_lock *ull;
135
if (!res || !res->length())
138
pthread_mutex_lock(&LOCK_user_locks);
139
ull= (User_level_lock *) hash_search(&hash_user_locks, (unsigned char*) res->ptr(),
140
(size_t) res->length());
141
pthread_mutex_unlock(&LOCK_user_locks);
142
if (!ull || !ull->locked)
146
return ull->thread_id;