~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session_list.cc

  • Committer: Brian Aker
  • Date: 2010-11-19 20:09:58 UTC
  • mfrom: (1938.2.1 bug673579)
  • Revision ID: brian@tangent.org-20101119200958-anlloqi9va5gu4c7
Merge in Monty

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, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
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.h>
25
 
#include <drizzled/session/cache.h>
26
 
#include <drizzled/current_session.h>
27
 
#include <drizzled/plugin/authorization.h>
 
24
#include "drizzled/session_list.h"
 
25
#include "drizzled/session.h"
 
26
#include "drizzled/current_session.h"
 
27
#include "drizzled/plugin/authorization.h"
28
28
 
29
 
#include <boost/foreach.hpp>
 
29
using namespace std;
30
30
 
31
31
namespace drizzled
32
32
{
34
34
namespace session
35
35
{
36
36
 
37
 
Cache::session_shared_ptr Cache::find(const session_id_t &id)
 
37
Session::shared_ptr Cache::find(const session_id_t &id)
38
38
{
39
39
  boost::mutex::scoped_lock scopedLock(_mutex);
40
 
 
41
 
  BOOST_FOREACH(list::const_reference it, cache)
 
40
  for (List::iterator it= cache.begin(); it != cache.end(); ++it )
42
41
  {
43
 
    if (it->thread_id == id)
 
42
    if ((*it)->thread_id == id)
44
43
    {
45
 
      return it;
 
44
      return *it;
46
45
    }
47
46
  }
48
47
 
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
 
  }
 
48
  return Session::shared_ptr();
70
49
}
71
50
 
72
51
size_t Cache::count()
76
55
  return cache.size();
77
56
}
78
57
 
79
 
void Cache::insert(session_shared_ptr &arg)
 
58
void Cache::erase(Session::Ptr arg)
 
59
{
 
60
  for (List::iterator it= cache.begin(); it != cache.end(); it++)
 
61
  {
 
62
    if ((*it).get() == arg)
 
63
    {
 
64
      cache.erase(it);
 
65
      return;
 
66
    }
 
67
  }
 
68
}
 
69
 
 
70
void Cache::insert(Session::shared_ptr &arg)
80
71
{
81
72
  boost::mutex::scoped_lock scopedLock(_mutex);
82
73
  cache.push_back(arg);
83
74
}
84
75
 
85
 
void Cache::erase(session_shared_ptr &arg)
 
76
void Cache::erase(Session::shared_ptr &arg)
86
77
{
87
 
  list::iterator iter= std::find(cache.begin(), cache.end(), arg);
88
 
  assert(iter != cache.end());
89
 
  cache.erase(iter);
 
78
  cache.erase(remove(cache.begin(), cache.end(), arg));
90
79
}
91
80
 
92
81
} /* namespace session */