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/global.h>
23
#include <mysys/hash.h>
24
#include <drizzled/xid.h>
29
bool XID::eq(XID *xid)
31
return eq(xid->gtrid_length, xid->bqual_length, xid->data);
34
bool XID::eq(long g, long b, const char *d)
36
return g == gtrid_length && b == bqual_length && !memcmp(d, data, g+b);
39
void XID::set(XID *xid)
41
memcpy(this, xid, xid->length());
44
void XID::set(long f, const char *g, long gl, const char *b, long bl)
47
memcpy(data, g, gtrid_length= gl);
48
memcpy(data+gl, b, bqual_length= bl);
51
void XID::set(uint64_t xid)
55
set(DRIZZLE_XID_PREFIX_LEN, 0, DRIZZLE_XID_PREFIX);
56
memcpy(data+DRIZZLE_XID_PREFIX_LEN, &server_id, sizeof(server_id));
58
memcpy(data+DRIZZLE_XID_OFFSET, &tmp, sizeof(tmp));
59
gtrid_length=DRIZZLE_XID_GTRID_LEN;
62
void XID::set(long g, long b, const char *d)
72
return formatID == -1;
80
my_xid XID::quick_get_my_xid()
83
memcpy(&tmp, data+DRIZZLE_XID_OFFSET, sizeof(tmp));
87
my_xid XID::get_my_xid()
89
return gtrid_length == DRIZZLE_XID_GTRID_LEN && bqual_length == 0 &&
90
!memcmp(data+DRIZZLE_XID_PREFIX_LEN, &server_id, sizeof(server_id)) &&
91
!memcmp(data, DRIZZLE_XID_PREFIX, DRIZZLE_XID_PREFIX_LEN) ?
92
quick_get_my_xid() : 0;
95
uint32_t XID::length()
97
return sizeof(formatID)+sizeof(gtrid_length)+sizeof(bqual_length)+
98
gtrid_length+bqual_length;
101
unsigned char *XID::key()
103
return (unsigned char *)>rid_length;
106
uint32_t XID::key_length()
108
return sizeof(gtrid_length)+sizeof(bqual_length)+gtrid_length+bqual_length;
111
/***************************************************************************
112
Handling of XA id cacheing
113
***************************************************************************/
114
pthread_mutex_t LOCK_xid_cache;
117
extern "C" unsigned char *xid_get_hash_key(const unsigned char *, size_t *, bool);
118
extern "C" void xid_free_hash(void *);
120
unsigned char *xid_get_hash_key(const unsigned char *ptr, size_t *length,
123
*length=((XID_STATE*)ptr)->xid.key_length();
124
return ((XID_STATE*)ptr)->xid.key();
127
void xid_free_hash(void *ptr)
129
XID_STATE *state= (XID_STATE *)ptr;
130
if (state->in_session == false)
134
bool xid_cache_init()
136
pthread_mutex_init(&LOCK_xid_cache, MY_MUTEX_INIT_FAST);
137
return hash_init(&xid_cache, &my_charset_bin, 100, 0, 0,
138
xid_get_hash_key, xid_free_hash, 0) != 0;
141
void xid_cache_free()
143
if (hash_inited(&xid_cache))
145
hash_free(&xid_cache);
146
pthread_mutex_destroy(&LOCK_xid_cache);
150
XID_STATE *xid_cache_search(XID *xid)
152
pthread_mutex_lock(&LOCK_xid_cache);
153
XID_STATE *res=(XID_STATE *)hash_search(&xid_cache, xid->key(), xid->key_length());
154
pthread_mutex_unlock(&LOCK_xid_cache);
158
bool xid_cache_insert(XID *xid, enum xa_states xa_state)
162
pthread_mutex_lock(&LOCK_xid_cache);
163
if (hash_search(&xid_cache, xid->key(), xid->key_length()))
165
else if ((xs = new XID_STATE) == NULL)
169
xs->xa_state=xa_state;
172
res= my_hash_insert(&xid_cache, (unsigned char*)xs);
174
pthread_mutex_unlock(&LOCK_xid_cache);
178
bool xid_cache_insert(XID_STATE *xid_state)
180
pthread_mutex_lock(&LOCK_xid_cache);
181
bool res=my_hash_insert(&xid_cache, (unsigned char*)xid_state);
182
pthread_mutex_unlock(&LOCK_xid_cache);
186
void xid_cache_delete(XID_STATE *xid_state)
188
pthread_mutex_lock(&LOCK_xid_cache);
189
hash_delete(&xid_cache, (unsigned char *)xid_state);
190
pthread_mutex_unlock(&LOCK_xid_cache);