//@cond
namespace cds { namespace intrusive { namespace striped_set {
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename P1, typename P2, typename P3, typename P4, typename P5, typename... Options>
+ class adapt< boost::intrusive::avl_set< T, P1, P2, P3, P4, P5 >, Options... >
+ {
+ public:
+ typedef boost::intrusive::avl_set< T > container_type; ///< underlying intrusive container type
+
+ public:
+ typedef details::boost_intrusive_set_adapter<container_type> type; ///< Result of the metafunction
+ };
+#else
template <typename T, typename... BIOptons, typename... Options>
class adapt< boost::intrusive::avl_set< T, BIOptons... >, Options... >
{
public:
typedef details::boost_intrusive_set_adapter<container_type> type ; ///< Result of the metafunction
-
};
+#endif
+
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
- template <typename T, typename... BIOptons, typename... Options>
- class adapt< boost::intrusive::list< T, BIOptons... >, Options... >
- {
- public:
- typedef boost::intrusive::list< T, BIOptons... > container_type ; ///< underlying intrusive container type
-
- private:
- /// Adapted intrusive container
- class adapted_container: public cds::intrusive::striped_set::adapted_sequential_container
+ namespace details {
+ template <typename List, typename... Options >
+ class adapt_boost_list
{
public:
- typedef typename container_type::value_type value_type ; ///< value type stored in the container
- typedef typename container_type::iterator iterator ; ///< container iterator
- typedef typename container_type::const_iterator const_iterator ; ///< container const iterator
- typedef typename cds::opt::details::make_comparator_from_option_list< value_type, Options... >::type key_comparator;
+ typedef List container_type; ///< underlying intrusive container type
private:
- struct find_predicate
+ /// Adapted intrusive container
+ class adapted_container : public cds::intrusive::striped_set::adapted_sequential_container
{
- bool operator()( value_type const& i1, value_type const& i2) const
+ public:
+ typedef typename container_type::value_type value_type; ///< value type stored in the container
+ typedef typename container_type::iterator iterator; ///< container iterator
+ typedef typename container_type::const_iterator const_iterator; ///< container const iterator
+ typedef typename cds::opt::details::make_comparator_from_option_list< value_type, Options... >::type key_comparator;
+
+ private:
+ struct find_predicate
{
- return key_comparator()( i1, i2 ) < 0;
- }
-
- template <typename Q>
- bool operator()( Q const& i1, value_type const& i2) const
+ bool operator()( value_type const& i1, value_type const& i2 ) const
+ {
+ return key_comparator()(i1, i2) < 0;
+ }
+
+ template <typename Q>
+ bool operator()( Q const& i1, value_type const& i2 ) const
+ {
+ return key_comparator()(i1, i2) < 0;
+ }
+
+ template <typename Q>
+ bool operator()( value_type const& i1, Q const& i2 ) const
+ {
+ return key_comparator()(i1, i2) < 0;
+ }
+ };
+
+ template <typename Q, typename Pred>
+ iterator find_key( Q const& key, Pred pred )
{
- return key_comparator()( i1, i2 ) < 0;
+ iterator itEnd = m_List.end();
+ iterator it;
+ for ( it = m_List.begin(); it != itEnd; ++it ) {
+ if ( !pred( *it, key ) )
+ break;
+ }
+ return it;
}
- template <typename Q>
- bool operator()( value_type const& i1, Q const& i2) const
- {
- return key_comparator()( i1, i2 ) < 0;
- }
- };
+ private:
+ container_type m_List;
- template <typename Q, typename Pred>
- iterator find_key( Q const& key, Pred pred)
- {
- iterator itEnd = m_List.end();
- iterator it;
- for ( it = m_List.begin(); it != itEnd; ++it ) {
- if ( !pred( *it, key ) )
- break;
- }
- return it;
- }
+ public:
+ adapted_container()
+ {}
- private:
- container_type m_List;
+ container_type& base_container()
+ {
+ return m_List;
+ }
- public:
- adapted_container()
- {}
+ template <typename Func>
+ bool insert( value_type& val, Func f )
+ {
+ iterator it = find_key( val, find_predicate() );
+ if ( it == m_List.end() || key_comparator()(val, *it) != 0 ) {
+ m_List.insert( it, val );
+ f( val );
- container_type& base_container()
- {
- return m_List;
- }
+ return true;
+ }
- template <typename Func>
- bool insert( value_type& val, Func f )
- {
- iterator it = find_key( val, find_predicate() );
- if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
- m_List.insert( it, val );
- f( val );
-
- return true;
+ // key already exists
+ return false;
}
- // key already exists
- return false;
- }
-
- template <typename Func>
- std::pair<bool, bool> ensure( value_type& val, Func f )
- {
- iterator it = find_key( val, find_predicate() );
- if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
- // insert new
- m_List.insert( it, val );
- f( true, val, val );
- return std::make_pair( true, true );
- }
- else {
- // already exists
- f( false, *it, val );
- return std::make_pair( true, false );
+ template <typename Func>
+ std::pair<bool, bool> ensure( value_type& val, Func f )
+ {
+ iterator it = find_key( val, find_predicate() );
+ if ( it == m_List.end() || key_comparator()(val, *it) != 0 ) {
+ // insert new
+ m_List.insert( it, val );
+ f( true, val, val );
+ return std::make_pair( true, true );
+ }
+ else {
+ // already exists
+ f( false, *it, val );
+ return std::make_pair( true, false );
+ }
}
- }
- bool unlink( value_type& val )
- {
- iterator it = find_key( val, find_predicate() );
- if ( it == m_List.end() || &(*it) != &val )
- return false;
+ bool unlink( value_type& val )
+ {
+ iterator it = find_key( val, find_predicate() );
+ if ( it == m_List.end() || &(*it) != &val )
+ return false;
- m_List.erase( it );
- return true;
- }
+ m_List.erase( it );
+ return true;
+ }
- template <typename Q, typename Func>
- value_type * erase( Q const& key, Func f )
- {
- iterator it = find_key( key, find_predicate() );
- if ( it == m_List.end() || key_comparator()( key, *it ) != 0 )
- return nullptr;
+ template <typename Q, typename Func>
+ value_type * erase( Q const& key, Func f )
+ {
+ iterator it = find_key( key, find_predicate() );
+ if ( it == m_List.end() || key_comparator()(key, *it) != 0 )
+ return nullptr;
- // key exists
- value_type& val = *it;
- f( val );
- m_List.erase( it );
+ // key exists
+ value_type& val = *it;
+ f( val );
+ m_List.erase( it );
- return &val;
- }
+ return &val;
+ }
- template <typename Q, typename Less, typename Func>
- value_type * erase( Q const& key, Less pred, Func f )
- {
- iterator it = find_key( key, pred );
- if ( it == m_List.end() || pred( key, *it ) || pred( *it, key ) )
- return nullptr;
+ template <typename Q, typename Less, typename Func>
+ value_type * erase( Q const& key, Less pred, Func f )
+ {
+ iterator it = find_key( key, pred );
+ if ( it == m_List.end() || pred( key, *it ) || pred( *it, key ) )
+ return nullptr;
- // key exists
- value_type& val = *it;
- f( val );
- m_List.erase( it );
+ // key exists
+ value_type& val = *it;
+ f( val );
+ m_List.erase( it );
- return &val;
- }
+ return &val;
+ }
- template <typename Q, typename Func>
- bool find( Q& key, Func f )
- {
- return find( key, find_predicate(), f );
- }
+ template <typename Q, typename Func>
+ bool find( Q& key, Func f )
+ {
+ return find( key, find_predicate(), f );
+ }
- template <typename Q, typename Less, typename Func>
- bool find( Q& key, Less pred, Func f )
- {
- iterator it = find_key( key, pred );
- if ( it == m_List.end() || pred( key, *it ) || pred( *it, key ))
- return false;
+ template <typename Q, typename Less, typename Func>
+ bool find( Q& key, Less pred, Func f )
+ {
+ iterator it = find_key( key, pred );
+ if ( it == m_List.end() || pred( key, *it ) || pred( *it, key ) )
+ return false;
- // key exists
- f( *it, key );
- return true;
- }
+ // key exists
+ f( *it, key );
+ return true;
+ }
- void clear()
- {
- m_List.clear();
- }
+ void clear()
+ {
+ m_List.clear();
+ }
- template <typename Disposer>
- void clear( Disposer disposer )
- {
- m_List.clear_and_dispose( disposer );
- }
+ template <typename Disposer>
+ void clear( Disposer disposer )
+ {
+ m_List.clear_and_dispose( disposer );
+ }
- iterator begin() { return m_List.begin(); }
- const_iterator begin() const { return m_List.begin(); }
- iterator end() { return m_List.end(); }
- const_iterator end() const { return m_List.end(); }
+ iterator begin() { return m_List.begin(); }
+ const_iterator begin() const { return m_List.begin(); }
+ iterator end() { return m_List.end(); }
+ const_iterator end() const { return m_List.end(); }
- size_t size() const
- {
- return (size_t) m_List.size();
- }
+ size_t size() const
+ {
+ return (size_t)m_List.size();
+ }
- void move_item( adapted_container& from, iterator itWhat )
- {
- value_type& val = *itWhat;
- from.base_container().erase( itWhat );
- insert( val, []( value_type& ) {} );
- }
+ void move_item( adapted_container& from, iterator itWhat )
+ {
+ value_type& val = *itWhat;
+ from.base_container().erase( itWhat );
+ insert( val, []( value_type& ) {} );
+ }
+ };
+ public:
+ typedef adapted_container type; ///< Result of the metafunction
};
- public:
- typedef adapted_container type ; ///< Result of the metafunction
- };
+ } // namespace details
+
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename P1, typename P2, typename P3, typename P4, typename... Options>
+ class adapt< boost::intrusive::list< T, P1, P2, P3, P4 >, Options... >
+ : public details::adapt_boost_list< boost::intrusive::list< T, P1, P2, P3, P4 >, Options... >
+ {};
+#else
+ template <typename T, typename... BIOptions, typename... Options>
+ class adapt< boost::intrusive::list< T, BIOptions... >, Options... >
+ : public details::adapt_boost_list< boost::intrusive::list< T, BIOptions... >, Options... >
+ {};
+#endif
+
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename O1, typename O2, typename O3, typename O4, typename... Options>
+ class adapt< boost::intrusive::set< T, O1, O2, O3, O4 >, Options... >
+ {
+ public:
+ typedef boost::intrusive::set< T, O1, O2, O3, O4 > container_type; ///< underlying intrusive container type
+
+ public:
+ typedef details::boost_intrusive_set_adapter<container_type> type; ///< Result of the metafunction
+ };
+#else
template <typename T, typename... BIOptons, typename... Options>
class adapt< boost::intrusive::set< T, BIOptons... >, Options... >
{
public:
typedef details::boost_intrusive_set_adapter<container_type> type ; ///< Result of the metafunction
-
};
+#endif
+
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename O1, typename O2, typename O3, typename O4, typename... Options>
+ class adapt< boost::intrusive::sg_set< T, O1, O2, O3, O4 >, Options... >
+ {
+ public:
+ typedef boost::intrusive::sg_set< T, O1, O2, O3, O4 > container_type; ///< underlying intrusive container type
+
+ public:
+ typedef details::boost_intrusive_set_adapter<container_type> type; ///< Result of the metafunction
+ };
+#else
template <typename T, typename... BIOptons, typename... Options>
class adapt< boost::intrusive::sg_set< T, BIOptons... >, Options... >
{
public:
typedef details::boost_intrusive_set_adapter<container_type> type ; ///< Result of the metafunction
-
};
+#endif
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
- template <typename T, typename... BIOptons, typename... Options>
- class adapt< boost::intrusive::slist< T, BIOptons... >, Options... >
- {
- public:
- typedef boost::intrusive::slist< T, BIOptons... > container_type ; ///< underlying intrusive container type
-
- private:
- /// Adapted intrusive container
- class adapted_container: public cds::intrusive::striped_set::adapted_sequential_container
+ namespace details {
+ template <class List, typename... Options>
+ class adapt_boost_slist< List, Options... >
{
public:
- typedef typename container_type::value_type value_type ; ///< value type stored in the container
- typedef typename container_type::iterator iterator ; ///< container iterator
- typedef typename container_type::const_iterator const_iterator ; ///< container const iterator
-
- typedef typename cds::opt::details::make_comparator_from_option_list< value_type, Options... >::type key_comparator;
+ typedef List container_type; ///< underlying intrusive container type
private:
+ /// Adapted intrusive container
+ class adapted_container : public cds::intrusive::striped_set::adapted_sequential_container
+ {
+ public:
+ typedef typename container_type::value_type value_type; ///< value type stored in the container
+ typedef typename container_type::iterator iterator; ///< container iterator
+ typedef typename container_type::const_iterator const_iterator; ///< container const iterator
+
+ typedef typename cds::opt::details::make_comparator_from_option_list< value_type, Options... >::type key_comparator;
+
+ private:
+
+ template <typename Q, typename Less>
+ std::pair< iterator, bool > find_prev_item( Q const& key, Less pred )
+ {
+ iterator itPrev = m_List.before_begin();
+ iterator itEnd = m_List.end();
+ for ( iterator it = m_List.begin(); it != itEnd; ++it ) {
+ if ( pred( key, *it ) )
+ itPrev = it;
+ else if ( pred( *it, key ) )
+ break;
+ else
+ return std::make_pair( itPrev, true );
+ }
+ return std::make_pair( itPrev, false );
+ }
- template <typename Q, typename Less>
- std::pair< iterator, bool > find_prev_item( Q const& key, Less pred )
- {
- iterator itPrev = m_List.before_begin();
- iterator itEnd = m_List.end();
- for ( iterator it = m_List.begin(); it != itEnd; ++it ) {
- if ( pred( key, *it ) )
- itPrev = it;
- else if ( pred( *it, key ) )
- break;
- else
- return std::make_pair( itPrev, true );
- }
- return std::make_pair( itPrev, false );
- }
-
- template <typename Q>
- std::pair< iterator, bool > find_prev_item( Q const& key )
- {
- return find_prev_item_cmp( key, key_comparator() );
- }
+ template <typename Q>
+ std::pair< iterator, bool > find_prev_item( Q const& key )
+ {
+ return find_prev_item_cmp( key, key_comparator() );
+ }
- template <typename Q, typename Compare>
- std::pair< iterator, bool > find_prev_item_cmp( Q const& key, Compare cmp )
- {
- iterator itPrev = m_List.before_begin();
- iterator itEnd = m_List.end();
- for ( iterator it = m_List.begin(); it != itEnd; ++it ) {
- int nCmp = cmp( key, *it );
- if ( nCmp < 0 )
- itPrev = it;
- else if ( nCmp > 0 )
- break;
- else
- return std::make_pair( itPrev, true );
- }
- return std::make_pair( itPrev, false );
- }
-
- template <typename Q, typename Compare, typename Func>
- value_type * erase_( Q const& key, Compare cmp, Func f )
- {
- std::pair< iterator, bool > pos = find_prev_item_cmp( key, cmp );
- if ( !pos.second )
- return nullptr;
+ template <typename Q, typename Compare>
+ std::pair< iterator, bool > find_prev_item_cmp( Q const& key, Compare cmp )
+ {
+ iterator itPrev = m_List.before_begin();
+ iterator itEnd = m_List.end();
+ for ( iterator it = m_List.begin(); it != itEnd; ++it ) {
+ int nCmp = cmp( key, *it );
+ if ( nCmp < 0 )
+ itPrev = it;
+ else if ( nCmp > 0 )
+ break;
+ else
+ return std::make_pair( itPrev, true );
+ }
+ return std::make_pair( itPrev, false );
+ }
- // key exists
- iterator it = pos.first;
- value_type& val = *(++it);
- f( val );
- m_List.erase_after( pos.first );
+ template <typename Q, typename Compare, typename Func>
+ value_type * erase_( Q const& key, Compare cmp, Func f )
+ {
+ std::pair< iterator, bool > pos = find_prev_item_cmp( key, cmp );
+ if ( !pos.second )
+ return nullptr;
- return &val;
- }
+ // key exists
+ iterator it = pos.first;
+ value_type& val = *(++it);
+ f( val );
+ m_List.erase_after( pos.first );
- private:
- container_type m_List;
+ return &val;
+ }
- public:
- adapted_container()
- {}
+ private:
+ container_type m_List;
- container_type& base_container()
- {
- return m_List;
- }
+ public:
+ adapted_container()
+ {}
- template <typename Func>
- bool insert( value_type& val, Func f )
- {
- std::pair< iterator, bool > pos = find_prev_item( val );
- if ( !pos.second ) {
- m_List.insert_after( pos.first, val );
- f( val );
- return true;
+ container_type& base_container()
+ {
+ return m_List;
}
- // key already exists
- return false;
- }
-
- template <typename Func>
- std::pair<bool, bool> ensure( value_type& val, Func f )
- {
- std::pair< iterator, bool > pos = find_prev_item( val );
- if ( !pos.second ) {
- // insert new
- m_List.insert_after( pos.first, val );
- f( true, val, val );
- return std::make_pair( true, true );
+ template <typename Func>
+ bool insert( value_type& val, Func f )
+ {
+ std::pair< iterator, bool > pos = find_prev_item( val );
+ if ( !pos.second ) {
+ m_List.insert_after( pos.first, val );
+ f( val );
+ return true;
+ }
+
+ // key already exists
+ return false;
}
- else {
- // already exists
- f( false, *(++pos.first), val );
- return std::make_pair( true, false );
+
+ template <typename Func>
+ std::pair<bool, bool> ensure( value_type& val, Func f )
+ {
+ std::pair< iterator, bool > pos = find_prev_item( val );
+ if ( !pos.second ) {
+ // insert new
+ m_List.insert_after( pos.first, val );
+ f( true, val, val );
+ return std::make_pair( true, true );
+ }
+ else {
+ // already exists
+ f( false, *(++pos.first), val );
+ return std::make_pair( true, false );
+ }
}
- }
- bool unlink( value_type& val )
- {
- std::pair< iterator, bool > pos = find_prev_item( val );
- if ( !pos.second )
- return false;
+ bool unlink( value_type& val )
+ {
+ std::pair< iterator, bool > pos = find_prev_item( val );
+ if ( !pos.second )
+ return false;
- ++pos.first;
- if ( &(*pos.first) != &val )
- return false;
+ ++pos.first;
+ if ( &(*pos.first) != &val )
+ return false;
- m_List.erase( pos.first );
- return true;
- }
+ m_List.erase( pos.first );
+ return true;
+ }
- template <typename Q, typename Func>
- value_type * erase( Q const& key, Func f )
- {
- return erase_( key, key_comparator(), f );
- }
+ template <typename Q, typename Func>
+ value_type * erase( Q const& key, Func f )
+ {
+ return erase_( key, key_comparator(), f );
+ }
- template <typename Q, typename Less, typename Func>
- value_type * erase( Q const& key, Less pred, Func f )
- {
- return erase_( key, cds::opt::details::make_comparator_from_less<Less>(), f );
- }
+ template <typename Q, typename Less, typename Func>
+ value_type * erase( Q const& key, Less pred, Func f )
+ {
+ return erase_( key, cds::opt::details::make_comparator_from_less<Less>(), f );
+ }
- template <typename Q, typename Func>
- bool find( Q& key, Func f )
- {
- std::pair< iterator, bool > pos = find_prev_item( key );
- if ( !pos.second )
- return false;
+ template <typename Q, typename Func>
+ bool find( Q& key, Func f )
+ {
+ std::pair< iterator, bool > pos = find_prev_item( key );
+ if ( !pos.second )
+ return false;
- // key exists
- f( *(++pos.first), key );
- return true;
- }
+ // key exists
+ f( *(++pos.first), key );
+ return true;
+ }
- template <typename Q, typename Less, typename Func>
- bool find( Q& key, Less pred, Func f )
- {
- std::pair< iterator, bool > pos = find_prev_item( key, pred );
- if ( !pos.second )
- return false;
+ template <typename Q, typename Less, typename Func>
+ bool find( Q& key, Less pred, Func f )
+ {
+ std::pair< iterator, bool > pos = find_prev_item( key, pred );
+ if ( !pos.second )
+ return false;
- // key exists
- f( *(++pos.first), key );
- return true;
- }
+ // key exists
+ f( *(++pos.first), key );
+ return true;
+ }
- void clear()
- {
- m_List.clear();
- }
+ void clear()
+ {
+ m_List.clear();
+ }
- template <typename Disposer>
- void clear( Disposer disposer )
- {
- m_List.clear_and_dispose( disposer );
- }
+ template <typename Disposer>
+ void clear( Disposer disposer )
+ {
+ m_List.clear_and_dispose( disposer );
+ }
- iterator begin() { return m_List.begin(); }
- const_iterator begin() const { return m_List.begin(); }
- iterator end() { return m_List.end(); }
- const_iterator end() const { return m_List.end(); }
+ iterator begin() { return m_List.begin(); }
+ const_iterator begin() const { return m_List.begin(); }
+ iterator end() { return m_List.end(); }
+ const_iterator end() const { return m_List.end(); }
- size_t size() const
- {
- return (size_t) m_List.size();
- }
+ size_t size() const
+ {
+ return (size_t)m_List.size();
+ }
- void move_item( adapted_container& from, iterator itWhat )
- {
- value_type& val = *itWhat;
- from.base_container().erase( itWhat );
- insert( val, []( value_type& ) {} );
- }
+ void move_item( adapted_container& from, iterator itWhat )
+ {
+ value_type& val = *itWhat;
+ from.base_container().erase( itWhat );
+ insert( val, []( value_type& ) {} );
+ }
+ };
+ public:
+ typedef adapted_container type; ///< Result of the metafunction
};
- public:
- typedef adapted_container type ; ///< Result of the metafunction
- };
+ } // namespace details
+
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename P1, typename P2, typename P3, typename P4, typename P5, typename... Options>
+ class adapt< boost::intrusive::slist< T, P1, P2, P3, P4, P5 >, Options... >
+ : public details::adapt_boost_slist< boost::intrusive::slist< T, P1, P2, P3, P4, P5 >, Options... >
+ {};
+#else
+ template <typename T, typename... BIOptions, typename... Options>
+ class adapt< boost::intrusive::slist< T, BIOptions... >, Options... >
+ : public details::adapt_boost_slist< boost::intrusive::slist< T, BIOptions... >, Options... >
+ {};
+#endif
+
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename O1, typename O2, typename O3, typename O4, typename... Options>
+ class adapt< boost::intrusive::splay_set< T, O1, O2, O3, O4 >, Options... >
+ {
+ public:
+ typedef boost::intrusive::splay_set< T, O1, O2, O3, O4 > container_type; ///< underlying intrusive container type
+
+ public:
+ typedef details::boost_intrusive_set_adapter<container_type> type; ///< Result of the metafunction
+
+ };
+#else
template <typename T, typename... BIOptons, typename... Options>
class adapt< boost::intrusive::splay_set< T, BIOptons... >, Options... >
{
public:
- typedef boost::intrusive::splay_set< T, BIOptons... > container_type ; ///< underlying intrusive container type
+ typedef boost::intrusive::splay_set< T, BIOptons... > container_type ; ///< underlying intrusive container type
public:
- typedef details::boost_intrusive_set_adapter<container_type> type ; ///< Result of the metafunction
+ typedef details::boost_intrusive_set_adapter<container_type> type ; ///< Result of the metafunction
};
+#endif
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
- template <typename T, typename... BIOptons, typename... Options>
- class adapt< boost::intrusive::treap_set< T, BIOptons... >, Options... >
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T, typename O1, typename O2, typename O3, typename O4, typename... Options>
+ class adapt< boost::intrusive::treap_set< T, O1, O2, O3, O4 >, Options... >
{
public:
- typedef boost::intrusive::treap_set< T, BIOptons... > container_type ; ///< underlying intrusive container type
+ typedef boost::intrusive::treap_set< T, O1, O2, O3, O4 > container_type ; ///< underlying intrusive container type
public:
typedef details::boost_intrusive_set_adapter<container_type> type ; ///< Result of the metafunction
+ };
+#else
+ template <typename T, typename... BIOptons, typename... Options>
+ class adapt< boost::intrusive::treap_set< T, BIOptons... >, Options... >
+ {
+ public:
+ typedef boost::intrusive::treap_set< T, BIOptons... > container_type; ///< underlying intrusive container type
+ public:
+ typedef details::boost_intrusive_set_adapter<container_type> type; ///< Result of the metafunction
};
+#endif
}}} // namespace cds::intrusive::striped_set
//@endcond
//@cond
namespace cds { namespace intrusive { namespace striped_set {
- template <typename T, typename... BIOptons, typename... Options>
- class adapt< boost::intrusive::unordered_set< T, BIOptons... >, Options... >
- {
- public:
- typedef boost::intrusive::unordered_set< T, BIOptons... > container_type ; ///< underlying intrusive container type
-
- private:
- class adapted_container
+ namespace details {
+ template <class Set, typename... Options>
+ class adapt_boost_unordered_set
{
public:
- typedef typename container_type::value_type value_type ; ///< value type stored in the container
- typedef typename container_type::iterator iterator ; ///< container iterator
- typedef typename container_type::const_iterator const_iterator ; ///< container const iterator
-
- typedef typename opt::value<
- typename opt::find_option<
- opt::buffer< opt::v::static_buffer< cds::any_type, 256 > >,
- Options...
- >::type
- >::buffer initial_buffer_type;
- typedef typename initial_buffer_type::template rebind< typename container_type::bucket_type >::other buffer_type;
- typedef cds::intrusive::striped_set::load_factor_resizing<256> default_resizing_policy;
+ typedef Set container_type; ///< underlying intrusive container type
private:
- template <typename Compare>
- struct equal_from_compare
+ class adapted_container
{
- Compare& m_cmp;
- equal_from_compare( Compare& cmp )
- : m_cmp( cmp )
- {}
+ public:
+ typedef typename container_type::value_type value_type; ///< value type stored in the container
+ typedef typename container_type::iterator iterator; ///< container iterator
+ typedef typename container_type::const_iterator const_iterator; ///< container const iterator
- equal_from_compare( equal_from_compare const& src )
- : m_cmp( src.m_cmp )
+ typedef typename opt::value <
+ typename opt::find_option <
+ opt::buffer< opt::v::static_buffer< cds::any_type, 256 > >,
+ Options...
+ > ::type
+ > ::buffer initial_buffer_type;
+ typedef typename initial_buffer_type::template rebind< typename container_type::bucket_type >::other buffer_type;
+ typedef cds::intrusive::striped_set::load_factor_resizing<256> default_resizing_policy;
+
+ private:
+ template <typename Compare>
+ struct equal_from_compare
+ {
+ Compare& m_cmp;
+ equal_from_compare( Compare& cmp )
+ : m_cmp( cmp )
+ {}
+
+ equal_from_compare( equal_from_compare const& src )
+ : m_cmp( src.m_cmp )
+ {}
+
+ template <typename A, typename B>
+ bool operator()( A& a, B& b ) const
+ {
+ return !m_cmp( a, b ) && !m_cmp( b, a );
+ }
+
+ template <typename A, typename B>
+ bool operator()( A& a, B& b )
+ {
+ return !m_cmp( a, b ) && !m_cmp( b, a );
+ }
+ };
+
+ buffer_type m_Buckets; // buffer should be declared first since it is used in m_Set ctor.
+ container_type m_Set;
+
+ public:
+ adapted_container()
+ : m_Set( typename container_type::bucket_traits( m_Buckets.buffer(), m_Buckets.capacity() ) )
{}
- template <typename A, typename B>
- bool operator()( A& a, B& b ) const
+ container_type& base_container()
{
- return !m_cmp( a, b ) && !m_cmp( b, a );
+ return m_Set;
}
- template <typename A, typename B>
- bool operator()( A& a, B& b )
+ template <typename Func>
+ bool insert( value_type& val, Func f )
{
- return !m_cmp( a, b ) && !m_cmp( b, a );
+ std::pair<iterator, bool> res = m_Set.insert( val );
+ if ( res.second )
+ f( val );
+ return res.second;
}
- };
- buffer_type m_Buckets ; // buffer should be declared first since it is used in m_Set ctor.
- container_type m_Set;
+ template <typename Func>
+ std::pair<bool, bool> ensure( value_type& val, Func f )
+ {
+ std::pair<iterator, bool> res = m_Set.insert( val );
+ f( res.second, *res.first, val );
+ return std::make_pair( true, res.second );
+ }
- public:
- adapted_container()
- : m_Set( typename container_type::bucket_traits( m_Buckets.buffer(), m_Buckets.capacity() ))
- {}
+ bool unlink( value_type& val )
+ {
+ iterator it = m_Set.find( value_type( val ) );
+ if ( it == m_Set.end() || &(*it) != &val )
+ return false;
+ m_Set.erase( it );
+ return true;
+ }
- container_type& base_container()
- {
- return m_Set;
- }
+ template <typename Q, typename Func>
+ value_type * erase( Q const& key, Func f )
+ {
+ iterator it = m_Set.find( key, typename container_type::hasher(), typename container_type::key_equal() );
+ if ( it == m_Set.end() )
+ return nullptr;
+ value_type& val = *it;
+ f( val );
+ m_Set.erase( it );
+ return &val;
+ }
- template <typename Func>
- bool insert( value_type& val, Func f )
- {
- std::pair<iterator, bool> res = m_Set.insert( val );
- if ( res.second )
+ template <typename Q, typename Less, typename Func>
+ value_type * erase( Q const& key, Less pred, Func f )
+ {
+ iterator it = m_Set.find( key, typename container_type::hasher(), equal_from_compare<Less>( pred ) );
+ if ( it == m_Set.end() )
+ return nullptr;
+ value_type& val = *it;
f( val );
- return res.second;
- }
+ m_Set.erase( it );
+ return &val;
+ }
- template <typename Func>
- std::pair<bool, bool> ensure( value_type& val, Func f )
- {
- std::pair<iterator, bool> res = m_Set.insert( val );
- f( res.second, *res.first, val );
- return std::make_pair( true, res.second );
- }
+ template <typename Q, typename Func>
+ bool find( Q& key, Func f )
+ {
+ iterator it = m_Set.find( key, typename container_type::hasher(), typename container_type::key_equal() );
+ if ( it == m_Set.end() )
+ return false;
+ f( *it, key );
+ return true;
+ }
- bool unlink( value_type& val )
- {
- iterator it = m_Set.find( value_type(val) );
- if ( it == m_Set.end() || &(*it) != &val )
- return false;
- m_Set.erase( it );
- return true;
- }
-
- template <typename Q, typename Func>
- value_type * erase( Q const& key, Func f )
- {
- iterator it = m_Set.find( key, typename container_type::hasher(), typename container_type::key_equal() );
- if ( it == m_Set.end() )
- return nullptr;
- value_type& val = *it;
- f( val );
- m_Set.erase( it );
- return &val;
- }
-
- template <typename Q, typename Less, typename Func>
- value_type * erase( Q const& key, Less pred, Func f )
- {
- iterator it = m_Set.find( key, typename container_type::hasher(), equal_from_compare<Less>(pred) );
- if ( it == m_Set.end() )
- return nullptr;
- value_type& val = *it;
- f( val );
- m_Set.erase( it );
- return &val;
- }
-
- template <typename Q, typename Func>
- bool find( Q& key, Func f )
- {
- iterator it = m_Set.find( key, typename container_type::hasher(), typename container_type::key_equal() );
- if ( it == m_Set.end() )
- return false;
- f( *it, key );
- return true;
- }
-
- template <typename Q, typename Less, typename Func>
- bool find( Q& key, Less pred, Func f )
- {
- iterator it = m_Set.find( key, typename container_type::hasher(), equal_from_compare<Less>(pred) );
- if ( it == m_Set.end() )
- return false;
- f( *it, key );
- return true;
- }
-
- void clear()
- {
- m_Set.clear();
- }
+ template <typename Q, typename Less, typename Func>
+ bool find( Q& key, Less pred, Func f )
+ {
+ iterator it = m_Set.find( key, typename container_type::hasher(), equal_from_compare<Less>( pred ) );
+ if ( it == m_Set.end() )
+ return false;
+ f( *it, key );
+ return true;
+ }
- template <typename Disposer>
- void clear( Disposer disposer )
- {
- m_Set.clear_and_dispose( disposer );
- }
+ void clear()
+ {
+ m_Set.clear();
+ }
- iterator begin() { return m_Set.begin(); }
- const_iterator begin() const { return m_Set.begin(); }
- iterator end() { return m_Set.end(); }
- const_iterator end() const { return m_Set.end(); }
+ template <typename Disposer>
+ void clear( Disposer disposer )
+ {
+ m_Set.clear_and_dispose( disposer );
+ }
- size_t size() const
- {
- return (size_t) m_Set.size();
- }
+ iterator begin() { return m_Set.begin(); }
+ const_iterator begin() const { return m_Set.begin(); }
+ iterator end() { return m_Set.end(); }
+ const_iterator end() const { return m_Set.end(); }
- void move_item( adapted_container& from, iterator itWhat )
- {
- value_type& val = *itWhat;
- from.base_container().erase( itWhat );
- insert( val, []( value_type& ) {} );
- }
- };
+ size_t size() const
+ {
+ return (size_t)m_Set.size();
+ }
+
+ void move_item( adapted_container& from, iterator itWhat )
+ {
+ value_type& val = *itWhat;
+ from.base_container().erase( itWhat );
+ insert( val, []( value_type& ) {} );
+ }
+ };
- public:
- typedef adapted_container type ; ///< Result of the metafunction
+ public:
+ typedef adapted_container type; ///< Result of the metafunction
+ };
+ } // namespace details
+
+#if CDS_COMPILER == CDS_COMPILER_INTEL && CDS_COMPILER_VERSION <= 1500
+ template <typename T,
+ typename O1, typename O2, typename O3, typename O4, typename O5,
+ typename O6, typename O7, typename O8, typename O9, typename O10,
+ typename... Options
+ >
+ class adapt < boost::intrusive::unordered_set< T, O1, O2, O3, O4, O5, O6, O7, O8, O9, O10 >, Options... >
+ : public details::adapt_boost_unordered_set < boost::intrusive::unordered_set< T, O1, O2, O3, O4, O5, O6, O7, O8, O9, O10 >, Options... >
+ {};
+#else
+ template <typename T, typename... BIOptons, typename... Options>
+ class adapt < boost::intrusive::unordered_set< T, BIOptons... >, Options... >
+ : public details::adapt_boost_unordered_set < boost::intrusive::unordered_set< T, BIOptons... >, Options... >
+ {};
+#endif
- };
}}} // namespace cds::intrusive::striped_set
//@endcond