Merge branch 'flat_combinig_add_stress_and_unint_tests' of https://github.com/mgalimu...
[libcds.git] / test / stress / map / insdelfind / map_insdelfind.cpp
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "map_insdelfind.h"
32
33 namespace map {
34
35     size_t Map_InsDelFind::s_nMapSize = 500000;
36     size_t Map_InsDelFind::s_nThreadCount = 8;
37     size_t Map_InsDelFind::s_nMaxLoadFactor = 8;
38     unsigned int Map_InsDelFind::s_nInsertPercentage = 5;
39     unsigned int Map_InsDelFind::s_nDeletePercentage = 5;
40     unsigned int Map_InsDelFind::s_nDuration = 30;
41
42
43     size_t Map_InsDelFind::s_nCuckooInitialSize = 1024;// initial size for CuckooSet
44     size_t Map_InsDelFind::s_nCuckooProbesetSize = 16; // CuckooSet probeset size (only for list-based probeset)
45     size_t Map_InsDelFind::s_nCuckooProbesetThreshold = 0; // CUckooSet probeset threshold (0 - use default)
46
47     size_t Map_InsDelFind::s_nFeldmanMap_HeadBits = 10;
48     size_t Map_InsDelFind::s_nFeldmanMap_ArrayBits = 4;
49
50     size_t Map_InsDelFind::s_nLoadFactor = 1;
51     Map_InsDelFind::actions Map_InsDelFind::s_arrShuffle[Map_InsDelFind::c_nShuffleSize];
52
53     void Map_InsDelFind::SetUpTestCase()
54     {
55         cds_test::config const& cfg = get_config( "map_insdelfind" );
56
57         s_nMapSize = cfg.get_size_t( "InitialMapSize", s_nMapSize );
58         if ( s_nMapSize < 1000 )
59             s_nMapSize = 1000;
60
61         s_nThreadCount = cfg.get_size_t( "ThreadCount", s_nThreadCount );
62         if ( s_nThreadCount == 0 )
63             s_nThreadCount = std::thread::hardware_concurrency() * 2;
64
65         s_nMaxLoadFactor = cfg.get_size_t( "MaxLoadFactor", s_nMaxLoadFactor );
66         if ( s_nMaxLoadFactor == 0 )
67             s_nMaxLoadFactor = 1;
68
69         s_nInsertPercentage = cfg.get_uint( "InsertPercentage", s_nInsertPercentage );
70         if ( s_nInsertPercentage >= 100 )
71             s_nInsertPercentage = 99;
72
73         s_nDeletePercentage = cfg.get_uint( "DeletePercentage", s_nDeletePercentage );
74         if ( s_nDeletePercentage >= 100 )
75             s_nDeletePercentage = 99;
76
77         if ( s_nInsertPercentage + s_nDeletePercentage > 100 ) {
78             unsigned int total = s_nInsertPercentage + s_nDeletePercentage;
79             s_nInsertPercentage = s_nInsertPercentage * 100 / total;
80             s_nDeletePercentage = s_nDeletePercentage * 100 / total;
81         }
82
83         s_nDuration = cfg.get_uint( "Duration", s_nDuration );
84         if ( s_nDuration < 5 )
85             s_nDuration = 5;
86
87         s_nCuckooInitialSize = cfg.get_size_t( "CuckooInitialSize", s_nCuckooInitialSize );
88         if ( s_nCuckooInitialSize < 256 )
89             s_nCuckooInitialSize = 256;
90
91         s_nCuckooProbesetSize = cfg.get_size_t( "CuckooProbesetSize", s_nCuckooProbesetSize );
92         if ( s_nCuckooProbesetSize < 8 )
93             s_nCuckooProbesetSize = 8;
94
95         s_nCuckooProbesetThreshold = cfg.get_size_t( "CuckooProbesetThreshold", s_nCuckooProbesetThreshold );
96
97         s_nFeldmanMap_HeadBits = cfg.get_size_t( "FeldmanMapHeadBits", s_nFeldmanMap_HeadBits );
98         if ( s_nFeldmanMap_HeadBits == 0 )
99             s_nFeldmanMap_HeadBits = 2;
100
101         s_nFeldmanMap_ArrayBits = cfg.get_size_t( "FeldmanMapArrayBits", s_nFeldmanMap_ArrayBits );
102         if ( s_nFeldmanMap_ArrayBits == 0 )
103             s_nFeldmanMap_ArrayBits = 2;
104
105         actions * pFirst = s_arrShuffle;
106         actions * pLast = s_arrShuffle + s_nInsertPercentage;
107         std::fill( pFirst, pLast, do_insert );
108         pFirst = pLast;
109         pLast += s_nDeletePercentage;
110         std::fill( pFirst, pLast, do_delete );
111         pFirst = pLast;
112         pLast = s_arrShuffle + sizeof( s_arrShuffle ) / sizeof( s_arrShuffle[0] );
113         if ( pFirst < pLast )
114             std::fill( pFirst, pLast, do_find );
115         shuffle( s_arrShuffle, pLast );
116     }
117
118     std::vector<size_t> Map_InsDelFind_LF::get_load_factors()
119     {
120         cds_test::config const& cfg = get_config( "map_insdelfind" );
121
122         s_nMaxLoadFactor = cfg.get_size_t( "MaxLoadFactor", s_nMaxLoadFactor );
123         if ( s_nMaxLoadFactor == 0 )
124             s_nMaxLoadFactor = 1;
125
126         std::vector<size_t> lf;
127         for ( size_t n = 1; n <= s_nMaxLoadFactor; n *= 2 )
128             lf.push_back( n );
129
130         return lf;
131     }
132
133     INSTANTIATE_TEST_CASE_P( a, Map_InsDelFind_LF, ::testing::ValuesIn( Map_InsDelFind_LF::get_load_factors()));
134 } // namespace map