| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- // Copyright (c) 2006-2018 Maxim Khizhinsky
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
- #include "test_michael_iterable_hp.h"
- #include <cds/container/iterable_kvlist_dhp.h>
- #include <cds/container/michael_map.h>
- namespace {
- namespace cc = cds::container;
- typedef cds::gc::DHP gc_type;
- class MichaelIterableMap_DHP: public cds_test::michael_iterable_hp
- {
- protected:
- typedef cds_test::michael_iterable_hp base_class;
- void SetUp()
- {
- typedef cc::IterableKVList< gc_type, key_type, value_type > list_type;
- typedef cc::MichaelHashMap< gc_type, list_type > map_type;
- cds::gc::dhp::smr::construct( map_type::c_nHazardPtrCount );
- cds::threading::Manager::attachThread();
- }
- void TearDown()
- {
- cds::threading::Manager::detachThread();
- cds::gc::dhp::smr::destruct();
- }
- };
- TEST_F( MichaelIterableMap_DHP, compare )
- {
- typedef cc::IterableKVList< gc_type, key_type, value_type,
- typename cc::iterable_list::make_traits<
- cds::opt::compare< cmp >
- >::type
- > list_type;
- typedef cc::MichaelHashMap< gc_type, list_type,
- typename cc::michael_map::make_traits<
- cds::opt::hash< hash1 >
- >::type
- > map_type;
- map_type m( kSize, 2 );
- test( m );
- }
- TEST_F( MichaelIterableMap_DHP, less )
- {
- typedef cc::IterableKVList< gc_type, key_type, value_type,
- typename cc::iterable_list::make_traits<
- cds::opt::less< less >
- >::type
- > list_type;
- typedef cc::MichaelHashMap< gc_type, list_type,
- typename cc::michael_map::make_traits<
- cds::opt::hash< hash1 >
- >::type
- > map_type;
- map_type m( kSize, 1 );
- test( m );
- }
- TEST_F( MichaelIterableMap_DHP, cmpmix )
- {
- typedef cc::IterableKVList< gc_type, key_type, value_type,
- typename cc::iterable_list::make_traits<
- cds::opt::less< less >
- ,cds::opt::compare< cmp >
- >::type
- > list_type;
- typedef cc::MichaelHashMap< gc_type, list_type,
- typename cc::michael_map::make_traits<
- cds::opt::hash< hash1 >
- >::type
- > map_type;
- map_type m( kSize, 2 );
- test( m );
- }
- TEST_F( MichaelIterableMap_DHP, backoff )
- {
- struct list_traits: public cc::iterable_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::make_exponential_t<cds::backoff::pause, cds::backoff::yield> back_off;
- };
- typedef cc::IterableKVList< gc_type, key_type, value_type, list_traits > list_type;
- struct map_traits: public cc::michael_map::traits
- {
- typedef hash1 hash;
- typedef cds::atomicity::item_counter item_counter;
- };
- typedef cc::MichaelHashMap< gc_type, list_type, map_traits > map_type;
- map_type m( kSize, 4 );
- test( m );
- }
- TEST_F( MichaelIterableMap_DHP, seq_cst )
- {
- struct list_traits: public cc::iterable_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::yield back_off;
- typedef cds::opt::v::sequential_consistent memory_model;
- };
- typedef cc::IterableKVList< gc_type, key_type, value_type, list_traits > list_type;
- struct map_traits: public cc::michael_map::traits
- {
- typedef hash1 hash;
- };
- typedef cc::MichaelHashMap< gc_type, list_type, map_traits > map_type;
- map_type s( kSize, 8 );
- test( s );
- }
- TEST_F( MichaelIterableMap_DHP, stat )
- {
- struct list_traits: public cc::iterable_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::yield back_off;
- typedef cc::iterable_list::stat<> stat;
- };
- typedef cc::IterableKVList< gc_type, key_type, value_type, list_traits > list_type;
- struct map_traits: public cc::michael_map::traits
- {
- typedef hash1 hash;
- };
- typedef cc::MichaelHashMap< gc_type, list_type, map_traits > map_type;
- map_type m( kSize, 8 );
- test( m );
- EXPECT_GE( m.statistics().m_nInsertSuccess, 0u );
- }
- TEST_F( MichaelIterableMap_DHP, wrapped_stat )
- {
- struct list_traits: public cc::iterable_list::traits
- {
- typedef cmp compare;
- typedef cc::iterable_list::wrapped_stat<> stat;
- };
- typedef cc::IterableKVList< gc_type, key_type, value_type, list_traits > list_type;
- struct map_traits: public cc::michael_map::traits
- {
- typedef hash1 hash;
- };
- typedef cc::MichaelHashMap< gc_type, list_type, map_traits > map_type;
- map_type m( kSize, 8 );
- test( m );
- EXPECT_GE( m.statistics().m_nInsertSuccess, 0u );
- }
- } // namespace
|