~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session/cache.cc

  • Committer: Patrick Crews
  • Date: 2011-01-29 14:17:35 UTC
  • mto: (2126.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2127.
  • Revision ID: gleebix@gmail.com-20110129141735-3y2658vt5ur0a33o
Fixes to make test-dbqp

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems
 
4
 *  Copyright (C) 2009 Sun Microsystems, Inc.
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
 
22
22
#include <vector>
23
23
 
24
 
#include "drizzled/session_list.h"
 
24
#include "drizzled/session/cache.h"
25
25
#include "drizzled/session.h"
26
26
#include "drizzled/current_session.h"
27
27
#include "drizzled/plugin/authorization.h"
28
28
 
29
 
class Session;
30
 
 
31
 
using namespace std;
 
29
#include <boost/foreach.hpp>
32
30
 
33
31
namespace drizzled
34
32
{
35
33
 
36
 
SessionList session_list;
37
 
 
38
 
vector<Session*> &getSessionList()
39
 
{
40
 
  return session_list;
41
 
}
42
 
 
 
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
void Cache::shutdownFirst()
 
53
{
 
54
  boost::mutex::scoped_lock scopedLock(_mutex);
 
55
  _ready_to_exit= true;
 
56
 
 
57
  /* do the broadcast inside the lock to ensure that my_end() is not called */
 
58
  _end.notify_all();
 
59
}
 
60
 
 
61
  /* Wait until cleanup is done */
 
62
void Cache::shutdownSecond()
 
63
{
 
64
  boost::mutex::scoped_lock scopedLock(_mutex);
 
65
 
 
66
  while (not _ready_to_exit)
 
67
  {
 
68
    _end.wait(scopedLock);
 
69
  }
 
70
}
 
71
 
 
72
size_t Cache::count()
 
73
{
 
74
  boost::mutex::scoped_lock scopedLock(_mutex);
 
75
 
 
76
  return cache.size();
 
77
}
 
78
 
 
79
void Cache::insert(Session::shared_ptr &arg)
 
80
{
 
81
  boost::mutex::scoped_lock scopedLock(_mutex);
 
82
  cache.push_back(arg);
 
83
}
 
84
 
 
85
void Cache::erase(Session::shared_ptr &arg)
 
86
{
 
87
  list::iterator iter= std::find(cache.begin(), cache.end(), arg);
 
88
  assert(iter != cache.end());
 
89
  cache.erase(iter);
 
90
}
 
91
 
 
92
} /* namespace session */
43
93
} /* namespace drizzled */