File: conformance_concurrent_unordered_map.cpp

package info (click to toggle)
onetbb 2022.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,440 kB
  • sloc: cpp: 129,228; ansic: 9,745; python: 808; xml: 183; objc: 176; makefile: 66; sh: 66; awk: 41; javascript: 37
file content (386 lines) | stat: -rw-r--r-- 18,313 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/*
    Copyright (c) 2005-2021 Intel Corporation

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

#if __INTEL_COMPILER && _MSC_VER
#pragma warning(disable : 2586) // decorated name length exceeded, name was truncated
#endif

#include "oneapi/tbb/concurrent_unordered_map.h"
#include <common/test.h>
#include <common/utils.h>
#include <common/concurrent_unordered_common.h>
#include <memory>
#include <type_traits>

//! \file conformance_concurrent_unordered_map.cpp
//! \brief Test for [containers.concurrent_unordered_map containers.concurrent_unordered_multimap] specifications

template <typename... Args>
struct AllowMultimapping<oneapi::tbb::concurrent_unordered_multimap<Args...>> : std::true_type {};

template <typename Key, typename Mapped>
using Allocator = LocalCountingAllocator<std::allocator<std::pair<const Key, Mapped>>>;

using map_type = oneapi::tbb::concurrent_unordered_map<int, int, std::hash<int>, std::equal_to<int>, Allocator<int, int>>;
using multimap_type = oneapi::tbb::concurrent_unordered_multimap<int, int, std::hash<int>, std::equal_to<int>, Allocator<int, int>>;

template <>
struct SpecialTests<map_type> {
    static void Test() {
        SpecialMapTests<map_type>();
    }
};

template <>
struct SpecialTests<multimap_type> {
    static void Test() {
        SpecialMultiMapTests<multimap_type>();
    }
};

template <template <typename... > class ContainerType>
void test_member_types() {
    using default_container_type = ContainerType<int, int>;
    static_assert(std::is_same<typename default_container_type::hasher, std::hash<int>>::value,
                  "Incorrect default template hasher");
    static_assert(std::is_same<typename default_container_type::key_equal, std::equal_to<int>>::value,
                  "Incorrect default template key equality");
    static_assert(std::is_same<typename default_container_type::allocator_type,
                               oneapi::tbb::tbb_allocator<std::pair<const int, int>>>::value,
                  "Incorrect default template allocator");

    auto test_hasher = [](const int&)->std::size_t { return 0; };
    auto test_equality = [](const int&, const int&)->bool { return true; };
    using test_allocator_type = std::allocator<std::pair<const int, int>>;

    using container_type = ContainerType<int, int, decltype(test_hasher),
                                         decltype(test_equality), test_allocator_type>;

    static_assert(std::is_same<typename container_type::key_type, int>::value,
                  "Incorrect container key_type member type");
    static_assert(std::is_same<typename container_type::mapped_type, int>::value,
                  "Incorrect container mapped_type member type");
    static_assert(std::is_same<typename container_type::value_type, std::pair<const int, int>>::value,
                  "Incorrect container value_type member type");

    static_assert(std::is_unsigned<typename container_type::size_type>::value,
                  "Incorrect container size_type member type");
    static_assert(std::is_signed<typename container_type::difference_type>::value,
                  "Incorrect container difference_type member type");

    static_assert(std::is_same<typename container_type::hasher, decltype(test_hasher)>::value,
                  "Incorrect container hasher member type");
    static_assert(std::is_same<typename container_type::key_equal, decltype(test_equality)>::value,
                  "Incorrect container key_equal member type");

    using transparent_container_type = ContainerType<int, int, hasher_with_transparent_key_equal,
                                                     std::equal_to<int>, test_allocator_type>;

    static_assert(std::is_same<typename transparent_container_type::key_equal, transparent_key_equality>::value,
                  "Incorrect container key_equal member type");
    static_assert(std::is_same<typename container_type::allocator_type, test_allocator_type>::value,
                  "Incorrect container allocator_type member type");

    using value_type = typename container_type::value_type;
    static_assert(std::is_same<typename container_type::reference, value_type&>::value,
                  "Incorrect container reference member type");
    static_assert(std::is_same<typename container_type::const_reference, const value_type&>::value,
                  "Incorrect container const_reference member type");
    using allocator_type = typename container_type::allocator_type;
    static_assert(std::is_same<typename container_type::pointer, typename std::allocator_traits<allocator_type>::pointer>::value,
                  "Incorrect container pointer member type");
    static_assert(std::is_same<typename container_type::const_pointer, typename std::allocator_traits<allocator_type>::const_pointer>::value,
                  "Incorrect container const_pointer member type");

    static_assert(utils::is_forward_iterator<typename container_type::iterator>::value,
                  "Incorrect container iterator member type");
    static_assert(!std::is_const<typename container_type::iterator::value_type>::value,
                  "Incorrect container iterator member type");
    static_assert(utils::is_forward_iterator<typename container_type::const_iterator>::value,
                  "Incorrect container const_iterator member type");
    static_assert(std::is_const<typename container_type::const_iterator::value_type>::value,
                  "Incorrect container iterator member type");
    static_assert(utils::is_forward_iterator<typename container_type::local_iterator>::value,
                  "Incorrect container local_iterator member type");
    static_assert(!std::is_const<typename container_type::local_iterator::value_type>::value,
                  "Incorrect container local_iterator member type");
    static_assert(utils::is_forward_iterator<typename container_type::const_local_iterator>::value,
                  "Incorrect container const_local_iterator member type");
    static_assert(std::is_const<typename container_type::const_local_iterator::value_type>::value,
                  "Incorrect container const_local_iterator member type");
}

#if __TBB_CPP17_DEDUCTION_GUIDES_PRESENT
template <template <typename...> typename TMap>
void test_deduction_guides() {
    using ComplexType = std::pair<int, std::string>;
    using ComplexTypeConst = std::pair<const int, std::string>;
    std::vector<ComplexType> v;
    auto l = { ComplexTypeConst(1, "one"), ComplexTypeConst(2, "two")};
    using custom_allocator_type = std::allocator<ComplexTypeConst>;

    // check TMap(InputIterator, InputIterator)
    TMap m0(v.begin(), v.end());
    static_assert(std::is_same<decltype(m0), TMap<int, std::string>>::value);

    // check TMap(InputIterator, InputIterator, size_t)
    TMap m1(v.begin(), v.end(), 1);
    static_assert(std::is_same<decltype(m1), TMap<int, std::string>>::value);

    // check TMap(InputIterator, InputIterator, size_t, Hasher)
    TMap m2(v.begin(), v.end(), 4, degenerate_hash<int>());
    static_assert(std::is_same<decltype(m2), TMap<int, std::string, degenerate_hash<int>>>::value);

    // check TMap(InputIterator, InputIterator, size_t, Hasher, Equality)
    TMap m3(v.begin(), v.end(), 4, degenerate_hash<int>(), std::less<int>());
    static_assert(std::is_same<decltype(m3), TMap<int, std::string, degenerate_hash<int>, std::less<int>>>::value);

    // check TMap(InputIterator, InputIterator, size_t, Hasher, Equality, Allocator)
    TMap m4(v.begin(), v.end(), 4, degenerate_hash<int>(), std::less<int>(), custom_allocator_type{});
    static_assert(std::is_same<decltype(m4), TMap<int, std::string, degenerate_hash<int>,
        std::less<int>, custom_allocator_type>>::value);

    // check TMap(InputIterator, InputIterator, size_t, Allocator)
    TMap m5(v.begin(), v.end(), 5, custom_allocator_type{});
    static_assert(std::is_same<decltype(m5), TMap<int, std::string, std::hash<int>,
        std::equal_to<int>, custom_allocator_type>>::value);

    // check TMap(InputIterator, InputIterator, size_t, Hasher, Allocator)
    TMap m6(v.begin(), v.end(), 4, degenerate_hash<int>(), custom_allocator_type{});
    static_assert(std::is_same<decltype(m6), TMap<int, std::string, degenerate_hash<int>,
        std::equal_to<int>, custom_allocator_type>>::value);

    // check TMap(std::initializer_list)
    TMap m7(l);
    static_assert(std::is_same<decltype(m7), TMap<int, std::string>>::value);

    // check TMap(std::initializer_list, size_t)
    TMap m8(l, 1);
    static_assert(std::is_same<decltype(m8), TMap<int, std::string>>::value);

    // check TMap(std::initializer_list, size_t, Hasher)
    TMap m9(l, 4, degenerate_hash<int>());
    static_assert(std::is_same<decltype(m9), TMap<int, std::string, degenerate_hash<int>>>::value);

    // check TMap(std::initializer_list, size_t, Hasher, Equality)
    TMap m10(l, 4, degenerate_hash<int>(), std::less<int>());
    static_assert(std::is_same<decltype(m10), TMap<int, std::string, degenerate_hash<int>, std::less<int>>>::value);

    // check TMap(std::initializer_list, size_t, Hasher, Equality, Allocator)
    TMap m11(l, 4, degenerate_hash<int>(), std::less<int>(), custom_allocator_type{});
    static_assert(std::is_same<decltype(m11), TMap<int, std::string, degenerate_hash<int>,
        std::less<int>, custom_allocator_type>>::value);

    // check TMap(std::initializer_list, size_t, Allocator)
    TMap m12(l, 4, custom_allocator_type{});
    static_assert(std::is_same<decltype(m12), TMap<int, std::string, std::hash<int>,
        std::equal_to<int>, custom_allocator_type>>::value);

    // check TMap(std::initializer_list, size_t, Hasher, Allocator)
    TMap m13(l, 4, degenerate_hash<int>(), custom_allocator_type{});
    static_assert(std::is_same<decltype(m13), TMap<int, std::string, degenerate_hash<int>,
        std::equal_to<int>, custom_allocator_type>>::value);

    // check TMap(TMap &)
    TMap m14(m1);
    static_assert(std::is_same<decltype(m14), decltype(m1)>::value);

    // check TMap(TMap &, Allocator)
    // TODO: investigate why no implicit deduction guides generated for this ctor
    TMap m15(m5, custom_allocator_type{});
    static_assert(std::is_same<decltype(m15), decltype(m5)>::value);

    // check TMap(TMap &&)
    TMap m16(std::move(m1));
    static_assert(std::is_same<decltype(m16), decltype(m1)>::value);

    // check TMap(TMap &&, Allocator)
    // TODO: investigate why no implicit deduction guides generated for this ctor
    TMap m17(std::move(m5), custom_allocator_type{});
    static_assert(std::is_same<decltype(m17), decltype(m5)>::value);
}
#endif

void test_heterogeneous_functions() {
    check_heterogeneous_functions_key_int<oneapi::tbb::concurrent_unordered_map, int, int>();
    check_heterogeneous_functions_key_int<oneapi::tbb::concurrent_unordered_multimap, int, int>();
    check_heterogeneous_functions_key_string<oneapi::tbb::concurrent_unordered_map, std::string, std::string>();
    check_heterogeneous_functions_key_string<oneapi::tbb::concurrent_unordered_multimap, std::string, std::string>();
}

struct CumapTraits : UnorderedMoveTraitsBase {
    template <typename T, typename Allocator>
    using container_type = oneapi::tbb::concurrent_unordered_map<T, T, std::hash<T>, std::equal_to<T>, Allocator>;

    template <typename T>
    using container_value_type = std::pair<const T, T>;

    using init_iterator_type = move_support_tests::FooPairIterator;
}; // struct CumapTraits

struct CumultimapTraits : UnorderedMoveTraitsBase {
    template <typename T, typename Allocator>
    using container_type = oneapi::tbb::concurrent_unordered_multimap<T, T, std::hash<T>, std::equal_to<T>, Allocator>;

    template <typename T>
    using container_value_type = std::pair<const T, T>;

    using init_iterator_type = move_support_tests::FooPairIterator;
}; // struct CumultimapTraits

//! Testing concurrent_unordered_map member types
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_map member types") {
    test_member_types<oneapi::tbb::concurrent_unordered_map>();
}

//! Testing requirements of concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_map requirements") {
    test_basic<map_type>();
}

//! Testing multithreading support in concurrent_unordered_map
//! \brief \ref requirement
TEST_CASE("concurrent_unordered_map multithreading support") {
    test_concurrent<map_type>();
}

//! Testing move constructors and assignment operator in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_map move semantics support") {
    test_rvalue_ref_support<CumapTraits>();
}

//! Testing std::initializer_list constructors and modifiers in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("std::initializer_list support in concurrent_unordered_map") {
    test_initializer_list_support<map_type>({{1, 1}, {2, 2}, {3, 3}, {4, 4}});
}

//! Testing node handling in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("node handling support in concurrent_unordered_map") {
    node_handling_tests::test_node_handling_support<map_type>();
}

//! Testing std::allocator_traits support in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("std::allocator_traits support in concurrent_unordered_map") {
    test_allocator_traits_support<CumapTraits>();
}

//! Testing heterogeneous overloads in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("heterogeneous overloads in concurrent_unordered_map") {
    check_heterogeneous_functions_key_int<oneapi::tbb::concurrent_unordered_map, int, int>();
    check_heterogeneous_functions_key_string<oneapi::tbb::concurrent_unordered_map, std::string, std::string>();
}

//! Testing insert overloads with generic pair in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("insertion by generic pair in concurrent_unordered_map") {
    test_insert_by_generic_pair<oneapi::tbb::concurrent_unordered_map>();
}

#if __TBB_CPP17_DEDUCTION_GUIDES_PRESENT
//! Testing Class Template Argument Deduction in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("CTAD support in concurrent_unordered_map") {
    test_deduction_guides<oneapi::tbb::concurrent_unordered_map>();
}
#endif

//! Testing comparisons in concurrent_unordered_map
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_map comparisons") {
    test_map_comparisons<oneapi::tbb::concurrent_unordered_map>();
}

//! Testing concurrent_unordered_multimap member types
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_multimap member types") {
    test_member_types<oneapi::tbb::concurrent_unordered_multimap>();
}

//! Testing requirements of concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_multimap requirements") {
    test_basic<multimap_type>();
}

//! Testing multithreading support in concurrent_unordered_multimap
//! \brief \ref requirement
TEST_CASE("concurrent_unordered_multimap multithreading support") {
    test_concurrent<multimap_type>();
}

//! Testing move constructors and assignment operator in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_multimap move semantics support") {
    test_rvalue_ref_support<CumultimapTraits>();
}

//! Testing std::initializer_list constructors and modifiers in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("std::initializer_list support in concurrent_unordered_multimap") {
    test_initializer_list_support<multimap_type>({{1, 1}, {2, 2}, {3, 3}, {4, 4}, {4, 40}});
}

//! Testing node handling support in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("node handling support in concurrent_unordered_multimap") {
    node_handling_tests::test_node_handling_support<multimap_type>();
}

//! Testing std::allocator_traits support in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("std::allocator_traits support in concurrent_unordered_multimap") {
    test_allocator_traits_support<CumultimapTraits>();
}

//! Testing heterogeneous overloads in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("heterogeneous overloads in concurrent_unordered_multimap") {
    check_heterogeneous_functions_key_int<oneapi::tbb::concurrent_unordered_multimap, int, int>();
    check_heterogeneous_functions_key_string<oneapi::tbb::concurrent_unordered_multimap, std::string, std::string>();
}

//! Testing insert overloads with generic pair in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("insertion by generic pair in concurrent_unordered_multimap") {
    test_insert_by_generic_pair<oneapi::tbb::concurrent_unordered_multimap>();
}

#if __TBB_CPP17_DEDUCTION_GUIDES_PRESENT
//! Testing Class Template Argument Deduction in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("CTAD support in concurrent_unordered_multimap") {
    test_deduction_guides<oneapi::tbb::concurrent_unordered_multimap>();
}
#endif

//! Testing comparisons in concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("concurrent_unordered_multimap comparisons") {
    test_map_comparisons<oneapi::tbb::concurrent_unordered_multimap>();
}

//! Testing of merge operations in concurrent_unordered_map and concurrent_unordered_multimap
//! \brief \ref interface \ref requirement
TEST_CASE("merge operations") {
    node_handling_tests::test_merge<map_type, multimap_type>(1000);
}