~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session/property_map.h

  • Committer: Monty Taylor
  • Date: 2008-11-16 05:36:13 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116053613-bld4rqxhlkb49c02
Split out cache_row and type_holder.

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) 2011 Brian Aker
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; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#ifndef DRIZZLED_SESSION_PROPERTY_MAP_H
22
 
#define DRIZZLED_SESSION_PROPERTY_MAP_H
23
 
 
24
 
#include <drizzled/util/string.h>
25
 
#include <boost/unordered_map.hpp>
26
 
 
27
 
namespace drizzled
28
 
{
29
 
 
30
 
class Session;
31
 
 
32
 
namespace session
33
 
{
34
 
 
35
 
class PropertyMap {
36
 
private:
37
 
  typedef boost::unordered_map<std::string, util::Storable *, util::insensitive_hash, util::insensitive_equal_to> Map;
38
 
 
39
 
public:
40
 
  typedef Map::iterator iterator;
41
 
  typedef Map::const_iterator const_iterator;
42
 
 
43
 
  drizzled::util::Storable *getProperty(const std::string &arg)
44
 
  {
45
 
    return _properties[arg];
46
 
  }
47
 
 
48
 
  template<class T>
49
 
  bool setProperty(const std::string &arg, T *value)
50
 
  {
51
 
    _properties[arg]= value;
52
 
 
53
 
    return true;
54
 
  }
55
 
 
56
 
  iterator begin()
57
 
  {
58
 
    return _properties.begin();
59
 
  }
60
 
 
61
 
  iterator end()
62
 
  {
63
 
    return _properties.end();
64
 
  }
65
 
 
66
 
  const_iterator begin() const
67
 
  {
68
 
    return _properties.begin();
69
 
  }
70
 
 
71
 
  const_iterator end() const
72
 
  {
73
 
    return _properties.end();
74
 
  }
75
 
 
76
 
  ~PropertyMap()
77
 
  {
78
 
    for (iterator iter= _properties.begin(); iter != _properties.end(); iter++)
79
 
    {
80
 
      boost::checked_delete((*iter).second);
81
 
    }
82
 
    _properties.clear();
83
 
  }
84
 
 
85
 
private:
86
 
  Map _properties;
87
 
};
88
 
 
89
 
} /* namespace session */
90
 
} /* namespace drizzled */
91
 
 
92
 
#endif /* DRIZZLED_SESSION_PROPERTY_MAP_H */