~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/session/cache.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-09 06:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20101209060239-t0ujftvcvd558yno
Tags: upstream-2010.12.05
ImportĀ upstreamĀ versionĀ 2010.12.05

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) 2009 Sun Microsystems
 
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
 
 
20
#include "config.h"
 
21
 
 
22
#include <vector>
 
23
 
 
24
#include "drizzled/session/cache.h"
 
25
#include "drizzled/session.h"
 
26
#include "drizzled/current_session.h"
 
27
#include "drizzled/plugin/authorization.h"
 
28
 
 
29
#include <boost/foreach.hpp>
 
30
 
 
31
namespace drizzled
 
32
{
 
33
 
 
34
namespace session
 
35
{
 
36
 
 
37
Session::shared_ptr Cache::find(const session_id_t &id)
 
38
{
 
39
  boost::mutex::scoped_lock scopedLock(_mutex);
 
40
 
 
41
  BOOST_FOREACH(list::const_reference it, cache)
 
42
  {
 
43
    if (it->thread_id == id)
 
44
    {
 
45
      return it;
 
46
    }
 
47
  }
 
48
 
 
49
  return Session::shared_ptr();
 
50
}
 
51
 
 
52
size_t Cache::count()
 
53
{
 
54
  boost::mutex::scoped_lock scopedLock(_mutex);
 
55
 
 
56
  return cache.size();
 
57
}
 
58
 
 
59
void Cache::erase(Session::Ptr arg)
 
60
{
 
61
  BOOST_FOREACH(list::const_reference it, cache)
 
62
  {
 
63
    if (it.get() == arg)
 
64
    {
 
65
      cache.remove(it);
 
66
      return;
 
67
    }
 
68
  }
 
69
}
 
70
 
 
71
void Cache::insert(Session::shared_ptr &arg)
 
72
{
 
73
  boost::mutex::scoped_lock scopedLock(_mutex);
 
74
  cache.push_back(arg);
 
75
}
 
76
 
 
77
void Cache::erase(Session::shared_ptr &arg)
 
78
{
 
79
  cache.erase(remove(cache.begin(), cache.end(), arg));
 
80
}
 
81
 
 
82
} /* namespace session */
 
83
} /* namespace drizzled */