~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session_list.cc

  • Committer: Stewart Smith
  • Date: 2010-02-15 01:56:32 UTC
  • mto: (1273.13.96 build)
  • mto: This revision was merged to the branch mainline in revision 1308.
  • Revision ID: stewart@flamingspork.com-20100215015632-pm7lnxfq5j5uh8kj
move DATABASE() to function plugin. modify parser so that it looks for a function named 'database' when DATABASE() is called. Special case still needed in parser due to hilarity of not-really-reserved words.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include <vector>
23
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>
 
24
#include "drizzled/session_list.h"
 
25
 
 
26
class Session;
 
27
 
 
28
using namespace std;
30
29
 
31
30
namespace drizzled
32
31
{
33
32
 
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 */
 
33
vector<Session*> session_list;
 
34
 
 
35
vector<Session*> &getSessionList()
 
36
{
 
37
  return session_list;
 
38
}
 
39
 
83
40
} /* namespace drizzled */