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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
|
// Copyright (C) 2001-2003
// William E. Kempf
// Copyright (C) 2007 Anthony Williams
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#define BOOST_THREAD_VERSION 2
#define BOOST_THREAD_PROVIDES_INTERRUPTIONS
#define BOOST_TEST_MODULE Boost.Threads: tss test suite
#include <boost/thread/detail/config.hpp>
#include <boost/predef/platform.h>
#include <boost/thread/tss.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/thread.hpp>
#include <boost/test/unit_test.hpp>
#include "./util.inl"
#include <iostream>
#if defined(BOOST_THREAD_PLATFORM_WIN32)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
boost::mutex check_mutex;
boost::mutex tss_mutex;
int tss_instances = 0;
int tss_total = 0;
struct tss_value_t
{
tss_value_t()
{
boost::unique_lock<boost::mutex> lock(tss_mutex);
++tss_instances;
++tss_total;
value = 0;
}
~tss_value_t()
{
boost::unique_lock<boost::mutex> lock(tss_mutex);
--tss_instances;
}
int value;
};
boost::thread_specific_ptr<tss_value_t> tss_value;
void test_tss_thread()
{
tss_value.reset(new tss_value_t());
for (int i=0; i<1000; ++i)
{
int& n = tss_value->value;
// Don't call BOOST_CHECK_EQUAL directly, as it doesn't appear to
// be thread safe. Must evaluate further.
if (n != i)
{
boost::unique_lock<boost::mutex> lock(check_mutex);
BOOST_CHECK_EQUAL(n, i);
}
++n;
}
}
#if defined(BOOST_THREAD_PLATFORM_WIN32)
#if BOOST_PLAT_WINDOWS_RUNTIME
typedef std::shared_ptr<std::thread> native_thread_t;
BOOST_AUTO_TEST_CASE(test_tss_thread_native)
{
test_tss_thread();
}
native_thread_t create_native_thread()
{
return std::make_shared<std::thread>(test_tss_thread_native);
}
void join_native_thread(native_thread_t thread)
{
thread->join();
}
#else
typedef HANDLE native_thread_t;
DWORD WINAPI test_tss_thread_native(LPVOID /*lpParameter*/)
{
test_tss_thread();
return 0;
}
native_thread_t create_native_thread(void)
{
native_thread_t const res=CreateThread(
0, //security attributes (0 = not inheritable)
0, //stack size (0 = default)
&test_tss_thread_native, //function to execute
0, //parameter to pass to function
0, //creation flags (0 = run immediately)
0 //thread id (0 = thread id not returned)
);
BOOST_CHECK(res!=0);
return res;
}
void join_native_thread(native_thread_t thread)
{
DWORD res = WaitForSingleObject(thread, INFINITE);
BOOST_CHECK(res == WAIT_OBJECT_0);
res = CloseHandle(thread);
BOOST_CHECK(SUCCEEDED(res));
}
#endif
#elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
typedef pthread_t native_thread_t;
extern "C"
{
void* test_tss_thread_native(void* )
{
test_tss_thread();
return 0;
}
}
native_thread_t create_native_thread()
{
native_thread_t thread_handle;
int const res = pthread_create(&thread_handle, 0, &test_tss_thread_native, 0);
BOOST_CHECK(!res);
return thread_handle;
}
void join_native_thread(native_thread_t thread)
{
void* result=0;
int const res=pthread_join(thread,&result);
BOOST_CHECK(!res);
}
#endif
void do_test_tss()
{
tss_instances = 0;
tss_total = 0;
const int NUMTHREADS=5;
boost::thread_group threads;
try
{
for (int i=0; i<NUMTHREADS; ++i)
threads.create_thread(&test_tss_thread);
threads.join_all();
}
catch(...)
{
threads.interrupt_all();
threads.join_all();
throw;
}
std::cout
<< "tss_instances = " << tss_instances
<< "; tss_total = " << tss_total
<< "\n";
std::cout.flush();
BOOST_CHECK_EQUAL(tss_instances, 0);
BOOST_CHECK_EQUAL(tss_total, 5);
tss_instances = 0;
tss_total = 0;
native_thread_t thread1 = create_native_thread();
native_thread_t thread2 = create_native_thread();
native_thread_t thread3 = create_native_thread();
native_thread_t thread4 = create_native_thread();
native_thread_t thread5 = create_native_thread();
join_native_thread(thread5);
join_native_thread(thread4);
join_native_thread(thread3);
join_native_thread(thread2);
join_native_thread(thread1);
std::cout
<< "tss_instances = " << tss_instances
<< "; tss_total = " << tss_total
<< "\n";
std::cout.flush();
// The following is not really an error. TSS cleanup support still is available for boost threads.
// Also this usually will be triggered only when bound to the static version of thread lib.
// 2006-10-02 Roland Schwarz
//BOOST_CHECK_EQUAL(tss_instances, 0);
#if !defined(__MINGW32__)
// This fails on MinGW, when using the static lib
BOOST_CHECK_MESSAGE(tss_instances == 0, "Support of automatic tss cleanup for native threading API not available");
#endif
BOOST_CHECK_EQUAL(tss_total, 5);
}
BOOST_AUTO_TEST_CASE(test_tss)
{
timed_test(&do_test_tss, 2);
}
bool tss_void_cleanup_called=false;
void tss_void_custom_cleanup(void* d)
{
std::cout << d << std::endl;
delete reinterpret_cast<tss_value_t*>(d);
tss_void_cleanup_called=true;
}
boost::thread_specific_ptr<void> tss_void(tss_void_custom_cleanup);
void test_tss_void_thread()
{
tss_void.reset(new tss_value_t());
for (int i=0; i<10; ++i)
{
int& n = static_cast<tss_value_t*>(tss_value.get())->value;
*tss_value;
// Don't call BOOST_CHECK_EQUAL directly, as it doesn't appear to
// be thread safe. Must evaluate further.
if (n != i)
{
boost::unique_lock<boost::mutex> lock(check_mutex);
BOOST_CHECK_EQUAL(n, i);
}
++n;
}
}
void do_test_tss_void()
{
tss_instances = 0;
tss_total = 0;
const int NUMTHREADS=5;
boost::thread_group threads;
try
{
for (int i=0; i<NUMTHREADS; ++i)
threads.create_thread(&test_tss_void_thread);
threads.join_all();
}
catch(...)
{
threads.interrupt_all();
threads.join_all();
throw;
}
std::cout
<< "tss_instances = " << tss_instances
<< "; tss_total = " << tss_total
<< "\n";
std::cout.flush();
BOOST_CHECK_EQUAL(tss_instances, 0);
BOOST_CHECK_EQUAL(tss_total, 5);
// tss_instances = 0;
// tss_total = 0;
//
// native_thread_t thread1 = create_native_thread();
// native_thread_t thread2 = create_native_thread();
// native_thread_t thread3 = create_native_thread();
// native_thread_t thread4 = create_native_thread();
// native_thread_t thread5 = create_native_thread();
//
// join_native_thread(thread5);
// join_native_thread(thread4);
// join_native_thread(thread3);
// join_native_thread(thread2);
// join_native_thread(thread1);
//
// std::cout
// << "tss_instances = " << tss_instances
// << "; tss_total = " << tss_total
// << "\n";
// std::cout.flush();
//
// // The following is not really an error. TSS cleanup support still is available for boost threads.
// // Also this usually will be triggered only when bound to the static version of thread lib.
// // 2006-10-02 Roland Schwarz
// //BOOST_CHECK_EQUAL(tss_instances, 0);
// BOOST_CHECK_MESSAGE(tss_instances == 0, "Support of automatic tss cleanup for native threading API not available");
// BOOST_CHECK_EQUAL(tss_total, 5);
}
//BOOST_AUTO_TEST_CASE(test_tss_void)
//{
// timed_test(&do_test_tss_void, 2);
//}
boost::thread_specific_ptr<void> tss_void_with_cleanup(tss_void_custom_cleanup);
void tss_void_thread_with_custom_cleanup()
{
tss_void_with_cleanup.reset(new tss_value_t);
}
void do_test_tss_void_with_custom_cleanup()
{
boost::thread t(tss_void_thread_with_custom_cleanup);
try
{
t.join();
}
catch(...)
{
t.interrupt();
t.join();
throw;
}
BOOST_CHECK(tss_void_cleanup_called);
}
BOOST_AUTO_TEST_CASE(test_tss_void_with_custom_cleanup)
{
timed_test(&do_test_tss_void_with_custom_cleanup, 2);
}
bool tss_cleanup_called=false;
struct Dummy
{};
void tss_custom_cleanup(Dummy* d)
{
delete d;
tss_cleanup_called=true;
}
boost::thread_specific_ptr<Dummy> tss_with_cleanup(tss_custom_cleanup);
void tss_thread_with_custom_cleanup()
{
tss_with_cleanup.reset(new Dummy);
}
void do_test_tss_with_custom_cleanup()
{
boost::thread t(tss_thread_with_custom_cleanup);
try
{
t.join();
}
catch(...)
{
t.interrupt();
t.join();
throw;
}
BOOST_CHECK(tss_cleanup_called);
}
BOOST_AUTO_TEST_CASE(test_tss_with_custom_cleanup)
{
timed_test(&do_test_tss_with_custom_cleanup, 2);
}
Dummy* tss_object=new Dummy;
void tss_thread_with_custom_cleanup_and_release()
{
tss_with_cleanup.reset(tss_object);
tss_with_cleanup.release();
}
void do_test_tss_does_no_cleanup_after_release()
{
tss_cleanup_called=false;
boost::thread t(tss_thread_with_custom_cleanup_and_release);
try
{
t.join();
}
catch(...)
{
t.interrupt();
t.join();
throw;
}
BOOST_CHECK(!tss_cleanup_called);
if(!tss_cleanup_called)
{
delete tss_object;
}
}
struct dummy_class_tracks_deletions
{
static unsigned deletions;
~dummy_class_tracks_deletions()
{
++deletions;
}
};
unsigned dummy_class_tracks_deletions::deletions=0;
boost::thread_specific_ptr<dummy_class_tracks_deletions> tss_with_null_cleanup(NULL);
void tss_thread_with_null_cleanup(dummy_class_tracks_deletions* delete_tracker)
{
tss_with_null_cleanup.reset(delete_tracker);
}
void do_test_tss_does_no_cleanup_with_null_cleanup_function()
{
dummy_class_tracks_deletions* delete_tracker=new dummy_class_tracks_deletions;
boost::thread t(tss_thread_with_null_cleanup,delete_tracker);
try
{
t.join();
}
catch(...)
{
t.interrupt();
t.join();
throw;
}
BOOST_CHECK(!dummy_class_tracks_deletions::deletions);
if(!dummy_class_tracks_deletions::deletions)
{
delete delete_tracker;
}
}
BOOST_AUTO_TEST_CASE(test_tss_does_no_cleanup_after_release)
{
timed_test(&do_test_tss_does_no_cleanup_after_release, 2);
}
BOOST_AUTO_TEST_CASE(test_tss_does_no_cleanup_with_null_cleanup_function)
{
timed_test(&do_test_tss_does_no_cleanup_with_null_cleanup_function, 2);
}
void thread_with_local_tss_ptr()
{
{
boost::thread_specific_ptr<Dummy> local_tss(tss_custom_cleanup);
local_tss.reset(new Dummy);
}
BOOST_CHECK(tss_cleanup_called);
tss_cleanup_called=false;
}
BOOST_AUTO_TEST_CASE(test_tss_does_not_call_cleanup_after_ptr_destroyed)
{
boost::thread t(thread_with_local_tss_ptr);
t.join();
BOOST_CHECK(!tss_cleanup_called);
}
BOOST_AUTO_TEST_CASE(test_tss_cleanup_not_called_for_null_pointer)
{
boost::thread_specific_ptr<Dummy> local_tss(tss_custom_cleanup);
local_tss.reset(new Dummy);
tss_cleanup_called=false;
local_tss.reset(0);
BOOST_CHECK(tss_cleanup_called);
tss_cleanup_called=false;
local_tss.reset(new Dummy);
BOOST_CHECK(!tss_cleanup_called);
}
//BOOST_AUTO_TEST_CASE(test_tss_at_the_same_adress)
//{
// for(int i=0; i<2; i++)
// {
// boost::thread_specific_ptr<Dummy> local_tss(tss_custom_cleanup);
// local_tss.reset(new Dummy);
// tss_cleanup_called=false;
// BOOST_CHECK(tss_cleanup_called);
// tss_cleanup_called=false;
// BOOST_CHECK(!tss_cleanup_called);
// }
//}
|