~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session/cache.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 13:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705131634-f7g1fjro5slibmdj
Add data_ref.h
Use str_ref for append_identifier

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
21
 
 
22
 
#include <vector>
23
 
 
24
 
#include <drizzled/session.h>
 
20
#include <config.h>
25
21
#include <drizzled/session/cache.h>
 
22
 
 
23
#include <boost/foreach.hpp>
26
24
#include <drizzled/current_session.h>
27
25
#include <drizzled/plugin/authorization.h>
28
 
 
29
 
#include <boost/foreach.hpp>
30
 
 
31
 
namespace drizzled
32
 
{
33
 
 
34
 
namespace session
35
 
{
36
 
 
37
 
Cache::session_shared_ptr Cache::find(const session_id_t &id)
 
26
#include <drizzled/session.h>
 
27
#include <vector>
 
28
 
 
29
namespace drizzled {
 
30
namespace session {
 
31
 
 
32
bool volatile Cache::_ready_to_exit= false;
 
33
Cache::list Cache::cache;
 
34
boost::mutex Cache::_mutex;
 
35
boost::condition_variable Cache::_end;
 
36
 
 
37
Cache::session_ptr Cache::find(const session_id_t &id)
38
38
{
39
39
  boost::mutex::scoped_lock scopedLock(_mutex);
40
 
 
41
40
  BOOST_FOREACH(list::const_reference it, cache)
42
41
  {
43
42
    if (it->thread_id == id)
44
 
    {
45
43
      return it;
46
 
    }
47
44
  }
48
 
 
49
 
  return session_shared_ptr();
 
45
  return session_ptr();
50
46
}
51
47
 
52
48
void Cache::shutdownFirst()
76
72
  return cache.size();
77
73
}
78
74
 
79
 
void Cache::insert(session_shared_ptr &arg)
 
75
void Cache::insert(const session_ptr& arg)
80
76
{
81
77
  boost::mutex::scoped_lock scopedLock(_mutex);
82
78
  cache.push_back(arg);
83
79
}
84
80
 
85
 
void Cache::erase(session_shared_ptr &arg)
 
81
void Cache::erase(const session_ptr& arg)
86
82
{
87
83
  list::iterator iter= std::find(cache.begin(), cache.end(), arg);
88
84
  assert(iter != cache.end());