~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/user_locks/locks.cc

  • Committer: Brian Aker
  • Date: 2010-10-09 17:44:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1853.
  • Revision ID: brian@tangent.org-20101009174413-4cs0q58kw0fjd45y
First pass through adding back user_locks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Brian Aker
 
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; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#include "config.h"
 
22
#include "plugin/user_locks/module.h"
 
23
 
 
24
#include <string>
 
25
 
 
26
namespace user_locks {
 
27
 
 
28
bool Locks::lock(drizzled::session_id_t id_arg, const std::string &arg, int64_t wait_for)
 
29
{
 
30
  (void)wait_for;
 
31
  std::pair<LockMap::iterator, bool> is_locked;
 
32
 
 
33
  boost::unique_lock<boost::mutex> scope(mutex);
 
34
  is_locked= lock_map.insert(std::make_pair(arg, new lock_st(id_arg)));
 
35
 
 
36
  return is_locked.second;
 
37
}
 
38
 
 
39
bool Locks::isUsed(const std::string &arg, drizzled::session_id_t &id_arg)
 
40
{
 
41
  boost::unique_lock<boost::mutex> scope(mutex);
 
42
  
 
43
  LockMap::iterator iter= lock_map.find(arg);
 
44
  
 
45
  if ( iter == lock_map.end())
 
46
    return false;
 
47
 
 
48
  id_arg= (*iter).second->id;
 
49
 
 
50
  return true;
 
51
}
 
52
 
 
53
bool Locks::isFree(const std::string &arg)
 
54
{
 
55
  boost::unique_lock<boost::mutex> scope(mutex);
 
56
 
 
57
  LockMap::iterator iter= lock_map.find(arg);
 
58
  
 
59
  return iter != lock_map.end();
 
60
}
 
61
 
 
62
bool Locks::release(const std::string &arg)
 
63
{
 
64
  boost::unique_lock<boost::mutex> scope(mutex);
 
65
  size_t elements= lock_map.erase(arg);
 
66
 
 
67
  return elements ? true : false;
 
68
}
 
69
 
 
70
} /* namespace user_locks */