~skinny.moey/drizzle/server_uuid_repl

« back to all changes in this revision

Viewing changes to drizzled/session/property_map.h

  • Committer: Brian Aker
  • Date: 2011-04-21 21:09:08 UTC
  • mfrom: (2281.4.3 prune)
  • Revision ID: brian@tangent.org-20110421210908-qfoyfsfmqn6b1ocd
Merge in Olaf prune tree (with comment on set_db)

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
 
#pragma once
22
 
 
23
 
#include <drizzled/util/storable.h>
24
 
#include <drizzled/util/string.h>
25
 
#include <boost/unordered_map.hpp>
26
 
 
27
 
namespace drizzled {
28
 
namespace session {
29
 
 
30
 
class PropertyMap {
31
 
private:
32
 
  typedef boost::unordered_map<std::string, util::Storable *, util::insensitive_hash, util::insensitive_equal_to> Map;
33
 
 
34
 
public:
35
 
  typedef Map::iterator iterator;
36
 
  typedef Map::const_iterator const_iterator;
37
 
 
38
 
  drizzled::util::Storable *getProperty(const std::string &arg)
39
 
  {
40
 
    return _properties[arg];
41
 
  }
42
 
 
43
 
  template<class T>
44
 
  bool setProperty(const std::string &arg, T *value)
45
 
  {
46
 
    // assert(not _properties.count(arg));
47
 
    _properties[arg]= value;
48
 
 
49
 
    return true;
50
 
  }
51
 
 
52
 
  iterator begin()
53
 
  {
54
 
    return _properties.begin();
55
 
  }
56
 
 
57
 
  iterator end()
58
 
  {
59
 
    return _properties.end();
60
 
  }
61
 
 
62
 
  const_iterator begin() const
63
 
  {
64
 
    return _properties.begin();
65
 
  }
66
 
 
67
 
  const_iterator end() const
68
 
  {
69
 
    return _properties.end();
70
 
  }
71
 
 
72
 
  ~PropertyMap()
73
 
  {
74
 
    for (iterator iter= _properties.begin(); iter != _properties.end(); iter++)
75
 
    {
76
 
      boost::checked_delete(iter->second);
77
 
    }
78
 
    _properties.clear();
79
 
  }
80
 
 
81
 
private:
82
 
  Map _properties;
83
 
};
84
 
 
85
 
} /* namespace session */
86
 
} /* namespace drizzled */
87