~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 *
 *  Copyright (C) 2009 - 2010 Toru Maesaka
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; version 2 of the License.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"
#include "ha_blitz.h"

using namespace drizzled;

BlitzLock::BlitzLock() : scanner_count(0), updater_count(0) {
  pthread_cond_init(&condition, NULL);
  pthread_mutex_init(&mutex, NULL);

  for (int i = 0; i < BLITZ_LOCK_SLOTS; i++)
    pthread_mutex_init(&slots[i], NULL);
}

BlitzLock::~BlitzLock() {
  pthread_cond_destroy(&condition);
  pthread_mutex_destroy(&mutex);

  for (int i = 0; i < BLITZ_LOCK_SLOTS; i++)
    pthread_mutex_destroy(&slots[i]);
}

uint32_t BlitzLock::slot_id(const void *data, size_t len) {
  uint64_t hash = 14695981039346656037ULL;
  const unsigned char *rp = (unsigned char *)data;
  const unsigned char *ep = rp + len;

  while (rp < ep)
    hash = (hash ^ *(rp++)) * 109951162811ULL;

  return (uint32_t)(hash % BLITZ_LOCK_SLOTS);
}

int BlitzLock::slotted_lock(const uint32_t id) {
  return pthread_mutex_lock(&slots[id]);
}

int BlitzLock::slotted_unlock(const uint32_t id) {
  return pthread_mutex_unlock(&slots[id]);
}

void BlitzLock::update_begin() {
  pthread_mutex_lock(&mutex);
  while (true) {
    if (scanner_count < 1) {
      updater_count++;
      pthread_mutex_unlock(&mutex);
      return;
    }
    pthread_cond_wait(&condition, &mutex);
  }
  pthread_mutex_unlock(&mutex);
}

void BlitzLock::update_end() {
  pthread_mutex_lock(&mutex);
  updater_count--;
  assert(updater_count >= 0);
  if (updater_count == 0)
    pthread_cond_broadcast(&condition);
  pthread_mutex_unlock(&mutex);
}

void BlitzLock::scan_begin() {
  pthread_mutex_lock(&mutex);
  while (true) {
    if (updater_count == 0) {
      scanner_count++;
      pthread_mutex_unlock(&mutex);
      return;
    }
    pthread_cond_wait(&condition, &mutex);
  }
  pthread_mutex_unlock(&mutex);
}

void BlitzLock::scan_end() {
  pthread_mutex_lock(&mutex);
  scanner_count--;
  assert(scanner_count >= 0);
  if (scanner_count == 0)
    pthread_cond_broadcast(&condition);
  pthread_mutex_unlock(&mutex);
}

void BlitzLock::scan_update_begin() {
  pthread_mutex_lock(&mutex);
  while (true) {
    if (scanner_count == 0 && updater_count == 0) {
      scanner_count++;
      updater_count++;
      pthread_mutex_unlock(&mutex);
      return;
    }
    pthread_cond_wait(&condition, &mutex);
  }
  pthread_mutex_unlock(&mutex);
}

void BlitzLock::scan_update_end() {
  pthread_mutex_lock(&mutex);
  scanner_count--;
  updater_count--;
  assert(scanner_count >= 0 && updater_count >= 0);

  /* All other threads are guaranteed to be
     waiting so broadcast regardless. */
  pthread_cond_broadcast(&condition);
  pthread_mutex_unlock(&mutex);
}

int ha_blitz::blitz_optimal_lock() {
  if (sql_command_type == SQLCOM_ALTER_TABLE ||
      sql_command_type == SQLCOM_UPDATE ||
      sql_command_type == SQLCOM_DELETE ||
      sql_command_type == SQLCOM_REPLACE ||
      sql_command_type == SQLCOM_REPLACE_SELECT) {
    share->blitz_lock.scan_update_begin();
  } else {
    share->blitz_lock.scan_begin();
  }
  thread_locked = true;
  return 0;
}

int ha_blitz::blitz_optimal_unlock() {
  if (sql_command_type == SQLCOM_ALTER_TABLE ||
      sql_command_type == SQLCOM_UPDATE ||
      sql_command_type == SQLCOM_DELETE ||
      sql_command_type == SQLCOM_REPLACE ||
      sql_command_type == SQLCOM_REPLACE_SELECT) {
    share->blitz_lock.scan_update_end();
  } else {
    share->blitz_lock.scan_end();
  }
  thread_locked = false;
  return 0;
}