IndexMap.h
1 /* Copyright (C) 2012-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 #ifndef HELIB_INDEXMAP_H
13 #define HELIB_INDEXMAP_H
14 
19 #include <unordered_map>
20 #include <helib/IndexSet.h>
21 #include <helib/clonedPtr.h>
22 
23 namespace helib {
24 
26 template <typename T>
28 {
29 public:
31  virtual void init(T&) = 0;
32 
34  virtual IndexMapInit<T>* clone() const = 0;
35  virtual ~IndexMapInit() {} // ensure that derived destructor is called
36 };
37 
42 template <typename T>
43 class IndexMap
44 {
45 
46  std::unordered_map<long, T> map;
47 
48  IndexSet indexSet;
49  cloned_ptr<IndexMapInit<T>> init;
50 
51 public:
54 
63  explicit IndexMap(IndexMapInit<T>* _init) : init(_init) {}
64 
66  const IndexSet& getIndexSet() const { return indexSet; }
67 
70  T& operator[](long j)
71  {
72  assertTrue(indexSet.contains(j), "Key not found");
73  return map[j];
74  }
75  const T& operator[](long j) const
76  {
77  assertTrue(indexSet.contains(j), "Key not found");
78  // unordered_map does not support a const [] operator,
79  // so we have to artificially strip away the const-ness here
80  std::unordered_map<long, T>& map1 =
81  const_cast<std::unordered_map<long, T>&>(map);
82  return map1[j];
83  }
84 
88  void insert(long j)
89  {
90  if (!indexSet.contains(j)) {
91  indexSet.insert(j);
92  if (!init.null())
93  init->init(map[j]);
94  }
95  }
96  void insert(const IndexSet& s)
97  {
98  for (long i = s.first(); i <= s.last(); i = s.next(i))
99  insert(i);
100  }
101 
103  void remove(long j)
104  {
105  indexSet.remove(j);
106  map.erase(j);
107  }
108  void remove(const IndexSet& s)
109  {
110  for (long i = s.first(); i <= s.last(); i = s.next(i))
111  map.erase(i);
112  indexSet.remove(s);
113  }
114 
115  void clear()
116  {
117  map.clear();
118  indexSet.clear();
119  }
120 };
121 
123 template <typename T>
124 bool operator==(const IndexMap<T>& map1, const IndexMap<T>& map2)
125 {
126  if (map1.getIndexSet() != map2.getIndexSet())
127  return false;
128  const IndexSet& s = map1.getIndexSet();
129  for (long i = s.first(); i <= s.last(); i = s.next(i)) {
130  if (map1[i] == map2[i])
131  continue;
132  return false;
133  }
134  return true;
135 }
136 
137 template <typename T>
138 bool operator!=(const IndexMap<T>& map1, const IndexMap<T>& map2)
139 {
140  return !(map1 == map2);
141 }
142 
143 } // namespace helib
144 
145 #endif // ifndef HELIB_INDEXMAP_H
bool operator==(const IndexMap< T > &map1, const IndexMap< T > &map2)
Comparing maps, by comparing all the elements.
Definition: IndexMap.h:124
virtual IndexMapInit< T > * clone() const =0
Cloning a pointer, override with code to create a fresh copy.
void assertTrue(const T &value, const std::string &message)
Definition: assertions.h:61
bool contains(long j) const
Returns true iff the set contains j.
Definition: IndexSet.cpp:76
long last() const
Returns the last element, -1 if the set is empty.
Definition: IndexSet.h:71
const T & operator[](long j) const
Definition: IndexMap.h:75
const IndexSet & getIndexSet() const
Get the underlying index set.
Definition: IndexMap.h:66
virtual ~IndexMapInit()
Definition: IndexMap.h:35
IndexMap<T> implements a generic map indexed by a dynamic index set.
Definition: IndexMap.h:44
A dynamic set of non-negative integers.
Definition: IndexSet.h:31
void insert(long j)
Insert indexes to the IndexSet. Insertion will cause new T objects to be created, using the default c...
Definition: IndexMap.h:88
void insert(long j)
Add j to the set.
Definition: IndexSet.cpp:128
bool operator!=(const IndexMap< T > &map1, const IndexMap< T > &map2)
Definition: IndexMap.h:138
long next(long j) const
Returns the next element after j, if any; otherwise j+1.
Definition: IndexSet.cpp:48
void remove(const IndexSet &s)
Definition: IndexMap.h:108
void insert(const IndexSet &s)
Definition: IndexMap.h:96
Definition: apiAttributes.h:21
void clear()
Set to the empty set.
Definition: IndexSet.cpp:120
long first() const
Returns the first element, 0 if the set is empty.
Definition: IndexSet.h:68
void remove(long j)
Remove j from the set.
Definition: IndexSet.cpp:154
virtual void init(T &)=0
Initialization function, override with initialization code.
void remove(long j)
Delete indexes from IndexSet, may cause objects to be destroyed.
Definition: IndexMap.h:103
T & operator[](long j)
Access functions: will raise an error if j does not belong to the current index set.
Definition: IndexMap.h:70
Initializing elements in an IndexMap.
Definition: IndexMap.h:28
void clear()
Definition: IndexMap.h:115
IndexMap(IndexMapInit< T > *_init)
A map with an initialization object. This associates a method for initializing new elements in the ma...
Definition: IndexMap.h:63
IndexMap()
The empty map.