ConcurrentMap.h
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
19 #pragma once
20 
21 #include <gtsam/global_includes.h>
22 
23 // Change class depending on whether we are using TBB
24 #ifdef GTSAM_USE_TBB
25 
26 // Include TBB header
27 # include <tbb/concurrent_unordered_map.h>
28 # undef min // TBB seems to include Windows.h which defines these macros that cause problems
29 # undef max
30 # undef ERROR
31 
32 #include <functional> // std::hash()
33 
34 // Use TBB concurrent_unordered_map for ConcurrentMap
35 template <typename KEY, typename VALUE>
36 using ConcurrentMapBase = tbb::concurrent_unordered_map<
37  KEY,
38  VALUE,
39  std::hash<KEY>
40  >;
41 
42 #else
43 
44 // If we're not using TBB, use a FastMap for ConcurrentMap
45 #include <gtsam/base/FastMap.h>
46 template <typename KEY, typename VALUE>
48 
49 #endif
50 
51 #include <boost/serialization/nvp.hpp>
52 #include <boost/serialization/split_member.hpp>
53 #include <boost/static_assert.hpp>
54 
55 #include <gtsam/base/FastVector.h>
56 
57 namespace gtsam {
58 
67 template<typename KEY, typename VALUE>
68 class ConcurrentMap : public ConcurrentMapBase<KEY,VALUE> {
69 
70 public:
71 
73 
76 
78  template<typename INPUTITERATOR>
79  ConcurrentMap(INPUTITERATOR first, INPUTITERATOR last) : Base(first, last) {}
80 
83 
85  ConcurrentMap(const Base& x) : Base(x) {}
86 
88  bool exists(const KEY& e) const { return this->count(e); }
89 
90 #ifndef GTSAM_USE_TBB
91  // If we're not using TBB and this is actually a FastMap, we need to add these functions and hide
92  // the original erase functions.
93  void unsafe_erase(typename Base::iterator position) { ((Base*)this)->erase(position); }
94  typename Base::size_type unsafe_erase(const KEY& k) { return ((Base*)this)->erase(k); }
95  void unsafe_erase(typename Base::iterator first, typename Base::iterator last) {
96  return ((Base*)this)->erase(first, last); }
97 private:
98  void erase() {}
99 public:
100 #endif
101 
102 private:
104  friend class boost::serialization::access;
105  template<class Archive>
106  void save(Archive& ar, const unsigned int /*version*/) const
107  {
108  // Copy to an STL container and serialize that
109  FastVector<std::pair<KEY, VALUE> > map(this->size());
110  std::copy(this->begin(), this->end(), map.begin());
111  ar & BOOST_SERIALIZATION_NVP(map);
112  }
113  template<class Archive>
114  void load(Archive& ar, const unsigned int /*version*/)
115  {
116  // Load into STL container and then fill our map
118  ar & BOOST_SERIALIZATION_NVP(map);
119  this->insert(map.begin(), map.end());
120  }
121  BOOST_SERIALIZATION_SPLIT_MEMBER()
122 };
123 
124 }
constexpr int last(int, int result)
A insert(1, 2)=0
void unsafe_erase(typename Base::iterator first, typename Base::iterator last)
Definition: ConcurrentMap.h:95
ConcurrentMap(const ConcurrentMap< KEY, VALUE > &x)
Definition: ConcurrentMap.h:82
ConcurrentMap(const Base &x)
Definition: ConcurrentMap.h:85
bool exists(const KEY &e) const
Definition: ConcurrentMap.h:88
Included from all GTSAM files.
ConcurrentMap(INPUTITERATOR first, INPUTITERATOR last)
Definition: ConcurrentMap.h:79
Scalar Scalar int size
Definition: benchVecAdd.cpp:17
constexpr int first(int i)
Implementation details for constexpr functions.
Array< double, 1, 3 > e(1./3., 0.5, 2.)
A thin wrapper around std::vector that uses a custom allocator.
traits
Definition: chartTesting.h:28
void save(Archive &ar, const unsigned int) const
A thin wrapper around std::map that uses boost&#39;s fast_pool_allocator.
void unsafe_erase(typename Base::iterator position)
Definition: ConcurrentMap.h:93
Base::size_type unsafe_erase(const KEY &k)
Definition: ConcurrentMap.h:94
Point3_ position(const NavState_ &X)
std::vector< T, typename internal::FastDefaultVectorAllocator< T >::type > FastVector
Definition: FastVector.h:34
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
ConcurrentMapBase< KEY, VALUE > Base
Definition: ConcurrentMap.h:72
void load(Archive &ar, const unsigned int)


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:41:50