~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem/filesystemlock.cc

  • Committer: Zimin
  • Date: 2010-07-15 13:10:23 UTC
  • mto: (1675.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1677.
  • Revision ID: ziminq@gmail.com-20100715131023-qf6llrp5v92gbn9m
remove table lock, add FilesystemLock to this storage engine

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (C) 2010 Zimin
 
3
 
 
4
  This program is free software; you can redistribute it and/or
 
5
  modify it under the terms of the GNU General Public License
 
6
  as published by the Free Software Foundation; either version 2
 
7
  of the License, or (at your option) any later version.
 
8
 
 
9
  This program is distributed in the hope that it will be useful,
 
10
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
  GNU General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public License
 
15
  along with this program; if not, write to the Free Software
 
16
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
17
*/
 
18
 
 
19
#include <config.h>
 
20
#include <pthread.h>
 
21
#include <assert.h>
 
22
#include "filesystemlock.h"
 
23
 
 
24
FilesystemLock::FilesystemLock()
 
25
  : scanner_count(0),
 
26
    updater_count(0)
 
27
{
 
28
  pthread_cond_init(&condition, NULL);
 
29
  pthread_mutex_init(&mutex, NULL);
 
30
}
 
31
 
 
32
FilesystemLock::~FilesystemLock()
 
33
{
 
34
  pthread_cond_destroy(&condition);
 
35
  pthread_mutex_destroy(&mutex);
 
36
}
 
37
 
 
38
void FilesystemLock::scan_begin()
 
39
{
 
40
  pthread_mutex_lock(&mutex);
 
41
  while (true)
 
42
  {
 
43
    if (updater_count == 0)
 
44
    {
 
45
      scanner_count++;
 
46
      pthread_mutex_unlock(&mutex);
 
47
      return;
 
48
    }
 
49
    pthread_cond_wait(&condition, &mutex);
 
50
  }
 
51
  pthread_mutex_unlock(&mutex);
 
52
}
 
53
 
 
54
void FilesystemLock::scan_end() {
 
55
  pthread_mutex_lock(&mutex);
 
56
  scanner_count--;
 
57
  assert(scanner_count >= 0);
 
58
  if (scanner_count == 0)
 
59
    pthread_cond_broadcast(&condition);
 
60
  pthread_mutex_unlock(&mutex);
 
61
}
 
62
 
 
63
void FilesystemLock::scan_update_begin()
 
64
{
 
65
  pthread_mutex_lock(&mutex);
 
66
  while (true)
 
67
  {
 
68
    if (scanner_count == 0 && updater_count == 0)
 
69
    {
 
70
      scanner_count++;
 
71
      updater_count++;
 
72
      pthread_mutex_unlock(&mutex);
 
73
      return;
 
74
    }
 
75
    pthread_cond_wait(&condition, &mutex);
 
76
  }
 
77
  pthread_mutex_unlock(&mutex);
 
78
}
 
79
 
 
80
void FilesystemLock::scan_update_end()
 
81
{
 
82
  pthread_mutex_lock(&mutex);
 
83
  scanner_count--;
 
84
  updater_count--;
 
85
  assert(scanner_count >= 0 && updater_count >= 0);
 
86
 
 
87
  pthread_cond_broadcast(&condition);
 
88
  pthread_mutex_unlock(&mutex);
 
89
}