~drizzle-trunk/drizzle/development

520.4.31 by Monty Taylor
Removed server_id from common_includes.
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
520.4.31 by Monty Taylor
Removed server_id from common_includes.
5
 *
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.
9
 *
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.
14
 *
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
18
 */
19
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
20
#include <config.h>
2225.2.1 by Olaf van der Spek
x
21
#include <cstring>
934.2.15 by Jay Pipes
Pulls remainder of XID and xid_cache implementation into xid.cc and xid.h from drizzled/session.cc.
22
520.4.31 by Monty Taylor
Removed server_id from common_includes.
23
#include <drizzled/xid.h>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
24
#include <drizzled/charset.h>
1689.2.14 by Brian Aker
LOCK_xid_cache now converted to boost.
25
2221.6.1 by Olaf van der Spek
Refactor
26
namespace drizzled {
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
27
520.4.31 by Monty Taylor
Removed server_id from common_includes.
28
void XID::set(uint64_t xid)
29
{
30
  formatID= 1;
31
  set(DRIZZLE_XID_PREFIX_LEN, 0, DRIZZLE_XID_PREFIX);
2221.6.1 by Olaf van der Spek
Refactor
32
  memcpy(data + DRIZZLE_XID_PREFIX_LEN, &server_id, sizeof(server_id));
33
  my_xid tmp= xid;
34
  memcpy(data + DRIZZLE_XID_OFFSET, &tmp, sizeof(tmp));
35
  gtrid_length= DRIZZLE_XID_GTRID_LEN;
520.4.31 by Monty Taylor
Removed server_id from common_includes.
36
}
37
38
void XID::set(long g, long b, const char *d)
39
{
40
  formatID= 1;
41
  gtrid_length= g;
42
  bqual_length= b;
43
  memcpy(data, d, g+b);
44
}
45
2318.8.8 by Olaf van der Spek
Refactor Scoreboard
46
bool XID::is_null() const
520.4.31 by Monty Taylor
Removed server_id from common_includes.
47
{
48
  return formatID == -1;
49
}
50
2281.4.7 by Olaf van der Spek
XID
51
void XID::set_null()
520.4.31 by Monty Taylor
Removed server_id from common_includes.
52
{
53
  formatID= -1;
54
}
55
56
my_xid XID::quick_get_my_xid()
57
{
58
  my_xid tmp;
2221.6.1 by Olaf van der Spek
Refactor
59
  memcpy(&tmp, data + DRIZZLE_XID_OFFSET, sizeof(tmp));
520.4.31 by Monty Taylor
Removed server_id from common_includes.
60
  return tmp;
61
}
62
63
my_xid XID::get_my_xid()
64
{
65
  return gtrid_length == DRIZZLE_XID_GTRID_LEN && bqual_length == 0 &&
66
    !memcmp(data+DRIZZLE_XID_PREFIX_LEN, &server_id, sizeof(server_id)) &&
67
    !memcmp(data, DRIZZLE_XID_PREFIX, DRIZZLE_XID_PREFIX_LEN) ?
68
    quick_get_my_xid() : 0;
69
}
70
2221.6.1 by Olaf van der Spek
Refactor
71
uint32_t XID::length() const
520.4.31 by Monty Taylor
Removed server_id from common_includes.
72
{
73
  return sizeof(formatID)+sizeof(gtrid_length)+sizeof(bqual_length)+
74
    gtrid_length+bqual_length;
75
}
76
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
77
} /* namespace drizzled */