8e78a763b2784605ecaf9f7fb2b393bcc48f7cc1
[libcds.git] / tests / unit / set2 / set_delodd.cpp
1 //$$CDS-header$$
2
3 #include "cppunit/thread.h"
4 #include "set2/set_types.h"
5 #include <algorithm> // random_shuffle
6
7 namespace set2 {
8
9 #    define TEST_SET(X)         void X() { test<SetTypes<key_type, value_type>::X >()    ; }
10 #    define TEST_SET_EXTRACT(X) void X() { test_extract<SetTypes<key_type, value_type>::X >()    ; }
11 #    define TEST_SET_NOLF(X)    void X() { test_nolf<SetTypes<key_type, value_type>::X >()    ; }
12 #    define TEST_SET_NOLF_EXTRACT(X)    void X() { test_nolf_extract<SetTypes<key_type, value_type>::X >()    ; }
13
14     namespace {
15         static size_t  c_nSetSize = 1000000         ;  // max set size
16         static size_t  c_nInsThreadCount = 4        ;  // insert thread count
17         static size_t  c_nDelThreadCount = 4        ;  // delete thread count
18         static size_t  c_nExtractThreadCount = 4    ;  // extract thread count
19         static size_t  c_nMaxLoadFactor = 8         ;  // maximum load factor
20         static bool    c_bPrintGCState = true;
21     }
22
23     namespace {
24         struct key_thread
25         {
26             size_t  nKey;
27             size_t  nThread;
28
29             key_thread( size_t key, size_t threadNo )
30                 : nKey( key )
31                 , nThread( threadNo )
32             {}
33
34             key_thread()
35             {}
36         };
37
38         typedef SetTypes<key_thread, size_t>::key_val     key_value_pair;
39     }
40
41     template <>
42     struct cmp<key_thread> {
43         int operator ()(key_thread const& k1, key_thread const& k2) const
44         {
45             if ( k1.nKey < k2.nKey )
46                 return -1;
47             if ( k1.nKey > k2.nKey )
48                 return 1;
49             if ( k1.nThread < k2.nThread )
50                 return -1;
51             if ( k1.nThread > k2.nThread )
52                 return 1;
53             return 0;
54         }
55         int operator ()(key_thread const& k1, size_t k2) const
56         {
57             if ( k1.nKey < k2 )
58                 return -1;
59             if ( k1.nKey > k2 )
60                 return 1;
61             return 0;
62         }
63         int operator ()(size_t k1, key_thread const& k2) const
64         {
65             if ( k1 < k2.nKey )
66                 return -1;
67             if ( k1 > k2.nKey )
68                 return 1;
69             return 0;
70         }
71     };
72
73 } // namespace set2
74
75 namespace std {
76     template <>
77     struct less<set2::key_thread>
78     {
79         bool operator()(set2::key_thread const& k1, set2::key_thread const& k2) const
80         {
81             if ( k1.nKey <= k2.nKey )
82                 return k1.nKey < k2.nKey || k1.nThread < k2.nThread;
83             return false;
84         }
85     };
86
87     template <>
88     struct hash<set2::key_thread>
89     {
90         typedef size_t              result_type;
91         typedef set2::key_thread    argument_type;
92
93         size_t operator()( set2::key_thread const& k ) const
94         {
95             return std::hash<size_t>()(k.nKey);
96         }
97         size_t operator()( size_t k ) const
98         {
99             return std::hash<size_t>()(k);
100         }
101     };
102
103 } // namespace std
104
105 namespace boost {
106     inline size_t hash_value( set2::key_thread const& k )
107     {
108         return std::hash<size_t>()( k.nKey );
109     }
110
111     template <>
112     struct hash<set2::key_thread>
113     {
114         typedef size_t              result_type;
115         typedef set2::key_thread    argument_type;
116
117         size_t operator()(set2::key_thread const& k) const
118         {
119             return boost::hash<size_t>()( k.nKey );
120         }
121         size_t operator()(size_t k) const
122         {
123             return boost::hash<size_t>()( k );
124         }
125     };
126 } // namespace boost
127
128 namespace set2 {
129
130     template <typename Set>
131     static inline void check_before_clear( Set& s )
132     {}
133
134     template <typename GC, typename Key, typename T, typename Traits>
135     static inline void check_before_clear( cds::container::EllenBinTreeSet<GC, Key, T, Traits>& s )
136     {
137         CPPUNIT_CHECK_CURRENT( s.check_consistency() );
138     }
139
140     class Set_DelOdd: public CppUnitMini::TestCase
141     {
142         std::vector<size_t>     m_arrData;
143
144     protected:
145         typedef key_thread  key_type;
146         typedef size_t      value_type;
147
148         atomics::atomic<size_t>      m_nInsThreadCount;
149
150         // Inserts keys from [0..N)
151         template <class Set>
152         class InsertThread: public CppUnitMini::TestThread
153         {
154             Set&     m_Set;
155
156             virtual InsertThread *    clone()
157             {
158                 return new InsertThread( *this );
159             }
160
161             struct ensure_func
162             {
163                 template <typename Q>
164                 void operator()( bool bNew, key_value_pair const&, Q const& )
165                 {}
166             };
167         public:
168             size_t  m_nInsertSuccess;
169             size_t  m_nInsertFailed;
170
171         public:
172             InsertThread( CppUnitMini::ThreadPool& pool, Set& rMap )
173                 : CppUnitMini::TestThread( pool )
174                 , m_Set( rMap )
175             {}
176             InsertThread( InsertThread& src )
177                 : CppUnitMini::TestThread( src )
178                 , m_Set( src.m_Set )
179             {}
180
181             Set_DelOdd&  getTest()
182             {
183                 return reinterpret_cast<Set_DelOdd&>( m_Pool.m_Test );
184             }
185
186             virtual void init() { cds::threading::Manager::attachThread()   ; }
187             virtual void fini() { cds::threading::Manager::detachThread()   ; }
188
189             virtual void test()
190             {
191                 Set& rSet = m_Set;
192
193                 m_nInsertSuccess =
194                     m_nInsertFailed = 0;
195
196                 std::vector<size_t>& arrData = getTest().m_arrData;
197                 for ( size_t i = 0; i < arrData.size(); ++i ) {
198                     if ( rSet.insert( key_type( arrData[i], m_nThreadNo )))
199                         ++m_nInsertSuccess;
200                     else
201                         ++m_nInsertFailed;
202                 }
203
204                 ensure_func f;
205                 for ( size_t i = arrData.size() - 1; i > 0; --i ) {
206                     if ( arrData[i] & 1 ) {
207                         rSet.ensure( key_type( arrData[i], m_nThreadNo ), f );
208                     }
209                 }
210
211                 getTest().m_nInsThreadCount.fetch_sub( 1, atomics::memory_order_release );
212             }
213         };
214
215         struct key_equal {
216             bool operator()( key_type const& k1, key_type const& k2 ) const
217             {
218                 return k1.nKey == k2.nKey;
219             }
220             bool operator()( size_t k1, key_type const& k2 ) const
221             {
222                 return k1 == k2.nKey;
223             }
224             bool operator()( key_type const& k1, size_t k2 ) const
225             {
226                 return k1.nKey == k2;
227             }
228             bool operator ()( key_value_pair const& k1, key_value_pair const& k2 ) const
229             {
230                 return operator()( k1.key, k2.key );
231             }
232             bool operator ()( key_value_pair const& k1, key_type const& k2 ) const
233             {
234                 return operator()( k1.key, k2 );
235             }
236             bool operator ()( key_type const& k1, key_value_pair const& k2 ) const
237             {
238                 return operator()( k1, k2.key );
239             }
240             bool operator ()( key_value_pair const& k1, size_t k2 ) const
241             {
242                 return operator()( k1.key, k2 );
243             }
244             bool operator ()( size_t k1, key_value_pair const& k2 ) const
245             {
246                 return operator()( k1, k2.key );
247             }
248         };
249
250         struct key_less {
251             bool operator()( key_type const& k1, key_type const& k2 ) const
252             {
253                 return k1.nKey < k2.nKey;
254             }
255             bool operator()( size_t k1, key_type const& k2 ) const
256             {
257                 return k1 < k2.nKey;
258             }
259             bool operator()( key_type const& k1, size_t k2 ) const
260             {
261                 return k1.nKey < k2;
262             }
263             bool operator ()( key_value_pair const& k1, key_value_pair const& k2 ) const
264             {
265                 return operator()( k1.key, k2.key );
266             }
267             bool operator ()( key_value_pair const& k1, key_type const& k2 ) const
268             {
269                 return operator()( k1.key, k2 );
270             }
271             bool operator ()( key_type const& k1, key_value_pair const& k2 ) const
272             {
273                 return operator()( k1, k2.key );
274             }
275             bool operator ()( key_value_pair const& k1, size_t k2 ) const
276             {
277                 return operator()( k1.key, k2 );
278             }
279             bool operator ()( size_t k1, key_value_pair const& k2 ) const
280             {
281                 return operator()( k1, k2.key );
282             }
283
284             typedef key_equal   equal_to;
285         };
286
287         // Deletes odd keys from [0..N)
288         template <class Set>
289         class DeleteThread: public CppUnitMini::TestThread
290         {
291             Set&     m_Set;
292
293             virtual DeleteThread *    clone()
294             {
295                 return new DeleteThread( *this );
296             }
297         public:
298             size_t  m_nDeleteSuccess;
299             size_t  m_nDeleteFailed;
300
301         public:
302             DeleteThread( CppUnitMini::ThreadPool& pool, Set& rMap )
303                 : CppUnitMini::TestThread( pool )
304                 , m_Set( rMap )
305             {}
306             DeleteThread( DeleteThread& src )
307                 : CppUnitMini::TestThread( src )
308                 , m_Set( src.m_Set )
309             {}
310
311             Set_DelOdd&  getTest()
312             {
313                 return reinterpret_cast<Set_DelOdd&>( m_Pool.m_Test );
314             }
315
316             virtual void init() { cds::threading::Manager::attachThread()   ; }
317             virtual void fini() { cds::threading::Manager::detachThread()   ; }
318
319             virtual void test()
320             {
321                 Set& rSet = m_Set;
322
323                 m_nDeleteSuccess =
324                     m_nDeleteFailed = 0;
325
326                 std::vector<size_t>& arrData = getTest().m_arrData;
327                 if ( m_nThreadNo & 1 ) {
328                     for ( size_t k = 0; k < c_nInsThreadCount; ++k ) {
329                         for ( size_t i = 0; i < arrData.size(); ++i ) {
330                             if ( arrData[i] & 1 ) {
331                                 if ( rSet.erase_with( arrData[i], key_less() ))
332                                     ++m_nDeleteSuccess;
333                                 else
334                                     ++m_nDeleteFailed;
335                             }
336                         }
337                         if ( getTest().m_nInsThreadCount.load( atomics::memory_order_acquire ) == 0 )
338                             break;
339                     }
340                 }
341                 else {
342                     for ( size_t k = 0; k < c_nInsThreadCount; ++k ) {
343                         for ( size_t i = arrData.size() - 1; i > 0; --i ) {
344                             if ( arrData[i] & 1 ) {
345                                 if ( rSet.erase_with( arrData[i], key_less() ))
346                                     ++m_nDeleteSuccess;
347                                 else
348                                     ++m_nDeleteFailed;
349                             }
350                         }
351                         if ( getTest().m_nInsThreadCount.load( atomics::memory_order_acquire ) == 0 )
352                             break;
353                     }
354                 }
355             }
356         };
357
358         // Extracts odd keys from [0..N)
359         template <typename GC, class Set>
360         class ExtractThread: public CppUnitMini::TestThread
361         {
362             Set&     m_Set;
363
364             virtual ExtractThread *    clone()
365             {
366                 return new ExtractThread( *this );
367             }
368         public:
369             size_t  m_nExtractSuccess;
370             size_t  m_nExtractFailed;
371
372         public:
373             ExtractThread( CppUnitMini::ThreadPool& pool, Set& rMap )
374                 : CppUnitMini::TestThread( pool )
375                 , m_Set( rMap )
376             {}
377             ExtractThread( ExtractThread& src )
378                 : CppUnitMini::TestThread( src )
379                 , m_Set( src.m_Set )
380             {}
381
382             Set_DelOdd&  getTest()
383             {
384                 return reinterpret_cast<Set_DelOdd&>( m_Pool.m_Test );
385             }
386
387             virtual void init() { cds::threading::Manager::attachThread()   ; }
388             virtual void fini() { cds::threading::Manager::detachThread()   ; }
389
390             virtual void test()
391             {
392                 Set& rSet = m_Set;
393
394                 m_nExtractSuccess =
395                     m_nExtractFailed = 0;
396
397                 typename Set::guarded_ptr gp;
398
399                 std::vector<size_t>& arrData = getTest().m_arrData;
400                 if ( m_nThreadNo & 1 ) {
401                     for ( size_t k = 0; k < c_nInsThreadCount; ++k ) {
402                         for ( size_t i = 0; i < arrData.size(); ++i ) {
403                             if ( arrData[i] & 1 ) {
404                                 gp = rSet.extract_with( arrData[i], key_less());
405                                 if ( gp )
406                                     ++m_nExtractSuccess;
407                                 else
408                                     ++m_nExtractFailed;
409                             }
410                         }
411                         if ( getTest().m_nInsThreadCount.load( atomics::memory_order_acquire ) == 0 )
412                             break;
413                     }
414                 }
415                 else {
416                     for ( size_t k = 0; k < c_nInsThreadCount; ++k ) {
417                         for ( size_t i = arrData.size() - 1; i > 0; --i ) {
418                             if ( arrData[i] & 1 ) {
419                                 gp = rSet.extract_with( arrData[i], key_less());
420                                 if ( gp )
421                                     ++m_nExtractSuccess;
422                                 else
423                                     ++m_nExtractFailed;
424                             }
425                         }
426                         if ( getTest().m_nInsThreadCount.load( atomics::memory_order_acquire ) == 0 )
427                             break;
428                     }
429                 }
430             }
431         };
432
433         template <typename RCU, class Set>
434         class ExtractThread< cds::urcu::gc<RCU>, Set >: public CppUnitMini::TestThread
435         {
436             Set&     m_Set;
437
438             virtual ExtractThread *    clone()
439             {
440                 return new ExtractThread( *this );
441             }
442         public:
443             size_t  m_nExtractSuccess;
444             size_t  m_nExtractFailed;
445
446         public:
447             ExtractThread( CppUnitMini::ThreadPool& pool, Set& rMap )
448                 : CppUnitMini::TestThread( pool )
449                 , m_Set( rMap )
450             {}
451             ExtractThread( ExtractThread& src )
452                 : CppUnitMini::TestThread( src )
453                 , m_Set( src.m_Set )
454             {}
455
456             Set_DelOdd&  getTest()
457             {
458                 return reinterpret_cast<Set_DelOdd&>( m_Pool.m_Test );
459             }
460
461             virtual void init() { cds::threading::Manager::attachThread()   ; }
462             virtual void fini() { cds::threading::Manager::detachThread()   ; }
463
464             virtual void test()
465             {
466                 Set& rSet = m_Set;
467
468                 m_nExtractSuccess =
469                     m_nExtractFailed = 0;
470
471                 typename Set::exempt_ptr xp;
472
473                 std::vector<size_t>& arrData = getTest().m_arrData;
474                 if ( m_nThreadNo & 1 ) {
475                     for ( size_t k = 0; k < c_nInsThreadCount; ++k ) {
476                         for ( size_t i = 0; i < arrData.size(); ++i ) {
477                             if ( arrData[i] & 1 ) {
478                                 if ( Set::c_bExtractLockExternal ) {
479                                     typename Set::rcu_lock l;
480                                     xp = rSet.extract_with( arrData[i], key_less() );
481                                     if ( xp )
482                                         ++m_nExtractSuccess;
483                                     else
484                                         ++m_nExtractFailed;
485                                 }
486                                 else {
487                                     xp = rSet.extract_with( arrData[i], key_less() );
488                                     if ( xp )
489                                         ++m_nExtractSuccess;
490                                     else
491                                         ++m_nExtractFailed;
492                                 }
493                                 xp.release();
494                             }
495                         }
496                         if ( getTest().m_nInsThreadCount.load( atomics::memory_order_acquire ) == 0 )
497                             break;
498                     }
499                 }
500                 else {
501                     for ( size_t k = 0; k < c_nInsThreadCount; ++k ) {
502                         for ( size_t i = arrData.size() - 1; i > 0; --i ) {
503                             if ( arrData[i] & 1 ) {
504                                 if ( Set::c_bExtractLockExternal ) {
505                                     typename Set::rcu_lock l;
506                                     xp = rSet.extract_with( arrData[i], key_less() );
507                                     if ( xp )
508                                         ++m_nExtractSuccess;
509                                     else
510                                         ++m_nExtractFailed;
511                                 }
512                                 else {
513                                     xp = rSet.extract_with( arrData[i], key_less() );
514                                     if ( xp )
515                                         ++m_nExtractSuccess;
516                                     else
517                                         ++m_nExtractFailed;
518                                 }
519                                 xp.release();
520                             }
521                         }
522                         if ( getTest().m_nInsThreadCount.load( atomics::memory_order_acquire ) == 0 )
523                             break;
524                     }
525                 }
526             }
527         };
528
529     protected:
530         template <class Set>
531         void do_test( size_t nLoadFactor )
532         {
533             Set  testSet( c_nSetSize, nLoadFactor );
534             do_test_with( testSet );
535             analyze( testSet );
536         }
537
538         template <class Set>
539         void do_test_extract( size_t nLoadFactor )
540         {
541             Set  testSet( c_nSetSize, nLoadFactor );
542             do_test_extract_with( testSet );
543             analyze( testSet );
544         }
545
546         template <class Set>
547         void do_test_with( Set& testSet )
548         {
549             typedef InsertThread<Set> insert_thread;
550             typedef DeleteThread<Set> delete_thread;
551
552             m_nInsThreadCount.store( c_nInsThreadCount, atomics::memory_order_release );
553
554             CppUnitMini::ThreadPool pool( *this );
555             pool.add( new insert_thread( pool, testSet ), c_nInsThreadCount );
556             pool.add( new delete_thread( pool, testSet ), c_nDelThreadCount ? c_nDelThreadCount : cds::OS::topology::processor_count());
557             pool.run();
558             CPPUNIT_MSG( "   Duration=" << pool.avgDuration() );
559
560             size_t nInsertSuccess = 0;
561             size_t nInsertFailed = 0;
562             size_t nDeleteSuccess = 0;
563             size_t nDeleteFailed = 0;
564             for ( CppUnitMini::ThreadPool::iterator it = pool.begin(); it != pool.end(); ++it ) {
565                 insert_thread * pThread = dynamic_cast<insert_thread *>( *it );
566                 if ( pThread ) {
567                     nInsertSuccess += pThread->m_nInsertSuccess;
568                     nInsertFailed += pThread->m_nInsertFailed;
569                 }
570                 else {
571                     delete_thread * p = static_cast<delete_thread *>( *it );
572                     nDeleteSuccess += p->m_nDeleteSuccess;
573                     nDeleteFailed += p->m_nDeleteFailed;
574                 }
575             }
576
577             CPPUNIT_CHECK( nInsertSuccess == c_nSetSize * c_nInsThreadCount );
578             CPPUNIT_CHECK( nInsertFailed == 0 );
579
580             CPPUNIT_MSG( "  Totals (success/failed): \n\t"
581                       << "      Insert=" << nInsertSuccess << '/' << nInsertFailed << "\n\t"
582                       << "      Delete=" << nDeleteSuccess << '/' << nDeleteFailed << "\n\t"
583             );
584         }
585
586         template <class Set>
587         void do_test_extract_with( Set& testSet )
588         {
589             typedef InsertThread<Set> insert_thread;
590             typedef DeleteThread<Set> delete_thread;
591             typedef ExtractThread< typename Set::gc, Set > extract_thread;
592
593             m_nInsThreadCount.store( c_nInsThreadCount, atomics::memory_order_release );
594
595             CppUnitMini::ThreadPool pool( *this );
596             pool.add( new insert_thread( pool, testSet ), c_nInsThreadCount );
597             if ( c_nDelThreadCount )
598                 pool.add( new delete_thread( pool, testSet ), c_nDelThreadCount );
599             if ( c_nExtractThreadCount )
600                 pool.add( new extract_thread( pool, testSet ), c_nExtractThreadCount );
601             pool.run();
602             CPPUNIT_MSG( "   Duration=" << pool.avgDuration() );
603
604             size_t nInsertSuccess = 0;
605             size_t nInsertFailed = 0;
606             size_t nDeleteSuccess = 0;
607             size_t nDeleteFailed = 0;
608             size_t nExtractSuccess = 0;
609             size_t nExtractFailed = 0;
610             for ( CppUnitMini::ThreadPool::iterator it = pool.begin(); it != pool.end(); ++it ) {
611                 insert_thread * pThread = dynamic_cast<insert_thread *>( *it );
612                 if ( pThread ) {
613                     nInsertSuccess += pThread->m_nInsertSuccess;
614                     nInsertFailed += pThread->m_nInsertFailed;
615                 }
616                 else {
617                     delete_thread * p = dynamic_cast<delete_thread *>( *it );
618                     if ( p ) {
619                         nDeleteSuccess += p->m_nDeleteSuccess;
620                         nDeleteFailed += p->m_nDeleteFailed;
621                     }
622                     else {
623                         extract_thread * pExt = dynamic_cast<extract_thread *>( *it );
624                         assert( pExt );
625                         nExtractSuccess += pExt->m_nExtractSuccess;
626                         nExtractFailed += pExt->m_nExtractFailed;
627                     }
628                 }
629             }
630
631             CPPUNIT_CHECK( nInsertSuccess == c_nSetSize * c_nInsThreadCount );
632             CPPUNIT_CHECK( nInsertFailed == 0 );
633
634             CPPUNIT_MSG( "  Totals (success/failed): \n\t"
635                 << "      Insert=" << nInsertSuccess << '/' << nInsertFailed << "\n\t"
636                 << "      Delete=" << nDeleteSuccess << '/' << nDeleteFailed << "\n\t"
637                 << "      Extract=" << nExtractSuccess << '/' << nExtractFailed << "\n\t"
638                 );
639         }
640
641         template <typename Set>
642         void analyze( Set& testSet )
643         {
644             // All even keys must be in the set
645             {
646                 CPPUNIT_MSG( "  Check even keys..." );
647                 size_t nErrorCount = 0;
648                 for ( size_t n = 0; n < c_nSetSize; n +=2 ) {
649                     for ( size_t i = 0; i < c_nInsThreadCount; ++i ) {
650                         if ( !testSet.find( key_type(n, i) ) ) {
651                             if ( ++nErrorCount < 10 ) {
652                                 CPPUNIT_MSG( "key " << n << "-" << i << " is not found!");
653                             }
654                         }
655                     }
656                 }
657                 CPPUNIT_CHECK_EX( nErrorCount == 0, "Totals: " << nErrorCount << " keys is not found");
658             }
659
660             check_before_clear( testSet );
661
662             CPPUNIT_MSG( "  Clear map (single-threaded)..." );
663             cds::OS::Timer    timer;
664             testSet.clear();
665             CPPUNIT_MSG( "   Duration=" << timer.duration() );
666             CPPUNIT_CHECK_EX( testSet.empty(), ((long long) testSet.size()) );
667
668             additional_check( testSet );
669             print_stat( testSet );
670             additional_cleanup( testSet );
671         }
672
673         template <class Set>
674         void test()
675         {
676             CPPUNIT_MSG( "Insert thread count=" << c_nInsThreadCount
677                 << " delete thread count=" << c_nDelThreadCount
678                 << " set size=" << c_nSetSize
679                 );
680
681             for ( size_t nLoadFactor = 1; nLoadFactor <= c_nMaxLoadFactor; nLoadFactor *= 2 ) {
682                 CPPUNIT_MSG( "Load factor=" << nLoadFactor );
683                 do_test<Set>( nLoadFactor );
684                 if ( c_bPrintGCState )
685                     print_gc_state();
686             }
687         }
688
689         template <class Set>
690         void test_extract()
691         {
692             CPPUNIT_MSG( "Insert thread count=" << c_nInsThreadCount
693                 << " delete thread count=" << c_nDelThreadCount
694                 << " extract thread count=" << c_nExtractThreadCount
695                 << " set size=" << c_nSetSize
696                 );
697
698             for ( size_t nLoadFactor = 1; nLoadFactor <= c_nMaxLoadFactor; nLoadFactor *= 2 ) {
699                 CPPUNIT_MSG( "Load factor=" << nLoadFactor );
700                 do_test_extract<Set>( nLoadFactor );
701                 if ( c_bPrintGCState )
702                     print_gc_state();
703             }
704         }
705
706         template <class Set>
707         void test_nolf()
708         {
709             CPPUNIT_MSG( "Insert thread count=" << c_nInsThreadCount
710                 << " delete thread count=" << c_nDelThreadCount
711                 << " set size=" << c_nSetSize
712                 );
713
714             {
715                 Set s;
716                 do_test_with( s );
717                 analyze( s );
718             }
719
720             if ( c_bPrintGCState )
721                 print_gc_state();
722         }
723
724         template <class Set>
725         void test_nolf_extract()
726         {
727             CPPUNIT_MSG( "Insert thread count=" << c_nInsThreadCount
728                 << " delete thread count=" << c_nDelThreadCount
729                 << " extract thread count=" << c_nExtractThreadCount
730                 << " set size=" << c_nSetSize
731                 );
732
733             {
734                 Set s;
735                 do_test_extract_with( s );
736                 analyze( s );
737             }
738
739             if ( c_bPrintGCState )
740                 print_gc_state();
741         }
742
743         void setUpParams( const CppUnitMini::TestCfg& cfg ) {
744             c_nSetSize = cfg.getULong("MapSize", static_cast<unsigned long>(c_nSetSize) );
745             c_nInsThreadCount = cfg.getULong("InsThreadCount", static_cast<unsigned long>(c_nInsThreadCount) );
746             c_nDelThreadCount = cfg.getULong("DelThreadCount", static_cast<unsigned long>(c_nDelThreadCount) );
747             c_nExtractThreadCount = cfg.getULong("ExtractThreadCount", static_cast<unsigned long>(c_nExtractThreadCount) );
748             c_nMaxLoadFactor = cfg.getULong("MaxLoadFactor", static_cast<unsigned long>(c_nMaxLoadFactor) );
749             c_bPrintGCState = cfg.getBool("PrintGCStateFlag", true );
750
751             if ( c_nInsThreadCount == 0 )
752                 c_nInsThreadCount = cds::OS::topology::processor_count();
753             if ( c_nDelThreadCount == 0 && c_nExtractThreadCount == 0 ) {
754                 c_nExtractThreadCount = cds::OS::topology::processor_count() / 2;
755                 c_nDelThreadCount = cds::OS::topology::processor_count() - c_nExtractThreadCount;
756             }
757
758             m_arrData.resize( c_nSetSize );
759             for ( size_t i = 0; i < c_nSetSize; ++i )
760                 m_arrData[i] = i;
761             std::random_shuffle( m_arrData.begin(), m_arrData.end() );
762         }
763
764 #   include "set2/set_defs.h"
765         CDSUNIT_DECLARE_MichaelSet
766         CDSUNIT_DECLARE_SplitList
767         //CDSUNIT_DECLARE_StripedSet
768         //CDSUNIT_DECLARE_RefinableSet
769         CDSUNIT_DECLARE_CuckooSet
770         CDSUNIT_DECLARE_SkipListSet
771         CDSUNIT_DECLARE_EllenBinTreeSet
772         //CDSUNIT_DECLARE_StdSet
773
774         CPPUNIT_TEST_SUITE_( Set_DelOdd, "Map_DelOdd" )
775             CDSUNIT_TEST_MichaelSet
776             CDSUNIT_TEST_SplitList
777             CDSUNIT_TEST_SkipListSet
778             CDSUNIT_TEST_EllenBinTreeSet
779             //CDSUNIT_TEST_StripedSet
780             //CDSUNIT_TEST_RefinableSet
781             CDSUNIT_TEST_CuckooSet
782             //CDSUNIT_TEST_StdSet
783         CPPUNIT_TEST_SUITE_END()
784     };
785
786     CPPUNIT_TEST_SUITE_REGISTRATION( Set_DelOdd );
787 } // namespace set2