~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/registry.h

  • Committer: Brian Aker
  • Date: 2009-04-09 15:03:26 UTC
  • mfrom: (971.1.44 mordred)
  • Revision ID: brian@gaz-20090409150326-cu50yn12esijpy1c
Merge Monty

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) 2008 Sun Microsystems
 
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; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef DRIZZLED_REGISTRY_H
 
21
#define DRIZZLED_REGISTRY_H
 
22
 
 
23
#include <map>
 
24
#include <set>
 
25
#include <string>
 
26
 
 
27
namespace drizzled {
 
28
 
 
29
template<class T>
 
30
class Registry
 
31
{
 
32
  std::map<std::string, T> item_map;
 
33
  std::set<T> item_set;
 
34
 
 
35
  bool addItemEntry(std::string name, T item)
 
36
  {
 
37
    if (item_map.count(name) == 0)
 
38
    {
 
39
      item_map[name]= item;
 
40
      return false;
 
41
    }
 
42
    return true;
 
43
  }
 
44
 
 
45
  bool addItem(std::string name, T item)
 
46
  {
 
47
 
 
48
    /* First, add with no transform */
 
49
    if (addItemEntry(name, item))
 
50
      return true;
 
51
 
 
52
    /* Transform to lower, then add */ 
 
53
    transform(name.begin(), name.end(),
 
54
              name.begin(), ::tolower);
 
55
    /* Ignore failures here - the original name could be all lower */
 
56
    addItemEntry(name, item);
 
57
 
 
58
    return false;
 
59
  }
 
60
 
 
61
  void removeItem(std::string name)
 
62
  {
 
63
 
 
64
    /* First, remove with no transform */
 
65
    item_map.erase(name);
 
66
 
 
67
    /* Transform to lower, then remove */ 
 
68
    transform(name.begin(), name.end(),
 
69
              name.begin(), ::tolower);
 
70
    item_map.erase(name);
 
71
  }
 
72
 
 
73
public:
 
74
 
 
75
  typedef typename std::set<T>::const_iterator const_iterator;
 
76
  typedef typename std::set<T>::iterator iterator;
 
77
 
 
78
  T find(const char *name, size_t length)
 
79
  {
 
80
    std::string find_str(name, length);
 
81
    return find(find_str);
 
82
  }
 
83
 
 
84
  T find(std::string name)
 
85
  {
 
86
 
 
87
    typename std::map<std::string, T>::iterator find_iter;
 
88
    find_iter=  item_map.find(name);
 
89
    if (find_iter != item_map.end())
 
90
      return (*find_iter).second;
 
91
    
 
92
    transform(name.begin(), name.end(),
 
93
              name.begin(), ::tolower);
 
94
    find_iter=  item_map.find(name);
 
95
    if (find_iter != item_map.end())
 
96
      return (*find_iter).second;
 
97
 
 
98
    return NULL;
 
99
  }
 
100
 
 
101
  /**
 
102
   * True == failure
 
103
   */
 
104
  bool add(T item)
 
105
  {
 
106
    bool failed= false;
 
107
 
 
108
    if (item_set.insert(item).second == false)
 
109
      return true;
 
110
 
 
111
    if (addItem(item->getName(), item))
 
112
      failed= true;
 
113
 
 
114
    const std::vector<std::string>& aliases= item->getAliases();
 
115
    if (!(failed) && (aliases.size() > 0))
 
116
    {
 
117
      typename std::vector<std::string>::const_iterator iter= aliases.begin();
 
118
      while (iter != aliases.end())
 
119
      {
 
120
        if(addItem(*iter, item))
 
121
          failed= true;
 
122
        ++iter;
 
123
      }
 
124
    }
 
125
   
 
126
    if (failed == true)
 
127
      remove(item);
 
128
    return failed; 
 
129
  }
 
130
 
 
131
  /**
 
132
   * Remove an item from the registry. We don't care about failure
 
133
   */
 
134
  void remove(T item)
 
135
  {
 
136
    removeItem(item->getName());
 
137
 
 
138
    const std::vector<std::string>& aliases= item->getAliases();
 
139
    if (aliases.size() > 0)
 
140
    {
 
141
      std::vector<std::string>::const_iterator iter= aliases.begin();
 
142
      while (iter != aliases.end())
 
143
      {
 
144
        removeItem(*iter);
 
145
        ++iter;
 
146
      }
 
147
    }
 
148
  }
 
149
 
 
150
  const_iterator begin()
 
151
  {
 
152
    return item_set.begin();
 
153
  }
 
154
 
 
155
  const_iterator end()
 
156
  {
 
157
    return item_set.end();
 
158
  }
 
159
 
 
160
};
 
161
 
 
162
} /* namespace drizzled */
 
163
 
 
164
#endif /* DRIZZLED_REGISTRY_H */
 
165