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
|
/*
* Copyright Andrey Semashev 2007 - 2015.
* 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)
*/
/*!
* \file util_once_block.cpp
* \author Andrey Semashev
* \date 24.06.2010
*
* \brief This header contains tests for once-blocks implementation.
*
* The test was adopted from test_once.cpp test of Boost.Thread.
*/
#define BOOST_TEST_MODULE util_once_block
#include <boost/log/utility/once_block.hpp>
#include <boost/test/unit_test.hpp>
#if !defined(BOOST_LOG_NO_THREADS)
#include <mutex>
#include <thread>
#include "test_barrier.hpp"
namespace logging = boost::log;
enum config
{
THREAD_COUNT = 20,
LOOP_COUNT = 100
};
std::mutex m;
typedef std::lock_guard< std::mutex > scoped_lock;
logging::once_block_flag flag = BOOST_LOG_ONCE_BLOCK_INIT;
int var_to_init_once_flag = 0;
void initialize_variable()
{
// ensure that if multiple threads get in here, they are serialized, so we can see the effect
scoped_lock lock(m);
++var_to_init_once_flag;
}
void once_block_flag_thread(test_barrier& barrier)
{
int my_once_value = 0;
barrier.arrive_and_wait();
for (unsigned int i = 0; i < LOOP_COUNT; ++i)
{
BOOST_LOG_ONCE_BLOCK_FLAG(flag)
{
initialize_variable();
}
my_once_value = var_to_init_once_flag;
if (my_once_value != 1)
{
break;
}
}
scoped_lock lock(m);
BOOST_CHECK_EQUAL(my_once_value, 1);
}
// The test checks if the BOOST_LOG_ONCE_BLOCK_FLAG macro works
BOOST_AUTO_TEST_CASE(once_block_flag)
{
std::thread threads[THREAD_COUNT];
test_barrier barrier(static_cast< unsigned int >(THREAD_COUNT));
try
{
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
threads[i] = std::thread([&barrier]() { once_block_flag_thread(barrier); });
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
threads[i].join();
}
catch (...)
{
barrier.wake_all();
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
{
if (threads[i].joinable())
threads[i].join();
}
throw;
}
BOOST_CHECK_EQUAL(var_to_init_once_flag, 1);
}
int var_to_init_once = 0;
void once_block_thread(test_barrier& barrier)
{
int my_once_value = 0;
barrier.arrive_and_wait();
for (unsigned int i = 0; i < LOOP_COUNT; ++i)
{
BOOST_LOG_ONCE_BLOCK()
{
scoped_lock lock(m);
++var_to_init_once;
}
my_once_value = var_to_init_once;
if (my_once_value != 1)
{
break;
}
}
scoped_lock lock(m);
BOOST_CHECK_EQUAL(my_once_value, 1);
}
// The test checks if the BOOST_LOG_ONCE_BLOCK macro works
BOOST_AUTO_TEST_CASE(once_block)
{
std::thread threads[THREAD_COUNT];
test_barrier barrier(static_cast< unsigned int >(THREAD_COUNT));
try
{
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
threads[i] = std::thread([&barrier]() { once_block_thread(barrier); });
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
threads[i].join();
}
catch (...)
{
barrier.wake_all();
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
{
if (threads[i].joinable())
threads[i].join();
}
throw;
}
BOOST_CHECK_EQUAL(var_to_init_once, 1);
}
struct my_exception
{
};
unsigned int pass_counter = 0;
unsigned int exception_counter = 0;
void once_block_with_exception_thread(test_barrier& barrier)
{
barrier.arrive_and_wait();
try
{
BOOST_LOG_ONCE_BLOCK()
{
scoped_lock lock(m);
++pass_counter;
if (pass_counter < 3)
{
throw my_exception();
}
}
}
catch (my_exception&)
{
scoped_lock lock(m);
++exception_counter;
}
}
// The test verifies that the once_block flag is not set if an exception is thrown from the once-block
BOOST_AUTO_TEST_CASE(once_block_retried_on_exception)
{
std::thread threads[THREAD_COUNT];
test_barrier barrier(static_cast< unsigned int >(THREAD_COUNT));
try
{
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
threads[i] = std::thread([&barrier]() { once_block_with_exception_thread(barrier); });
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
threads[i].join();
}
catch (...)
{
barrier.wake_all();
for (unsigned int i = 0; i < THREAD_COUNT; ++i)
{
if (threads[i].joinable())
threads[i].join();
}
throw;
}
BOOST_CHECK_EQUAL(pass_counter, 3u);
BOOST_CHECK_EQUAL(exception_counter, 2u);
}
#else // BOOST_LOG_NO_THREADS
namespace logging = boost::log;
enum config
{
LOOP_COUNT = 100
};
logging::once_block_flag flag = BOOST_LOG_ONCE_BLOCK_INIT;
int var_to_init_once_flag = 0;
void initialize_variable()
{
++var_to_init_once_flag;
}
// The test checks if the BOOST_LOG_ONCE_BLOCK_FLAG macro works
BOOST_AUTO_TEST_CASE(once_block_flag)
{
for (unsigned int i = 0; i < LOOP_COUNT; ++i)
{
BOOST_LOG_ONCE_BLOCK_FLAG(flag)
{
initialize_variable();
}
if (var_to_init_once_flag != 1)
{
break;
}
}
BOOST_CHECK_EQUAL(var_to_init_once_flag, 1);
}
int var_to_init_once = 0;
// The test checks if the BOOST_LOG_ONCE_BLOCK macro works
BOOST_AUTO_TEST_CASE(once_block)
{
for (unsigned int i = 0; i < LOOP_COUNT; ++i)
{
BOOST_LOG_ONCE_BLOCK()
{
++var_to_init_once;
}
if (var_to_init_once != 1)
{
break;
}
}
BOOST_CHECK_EQUAL(var_to_init_once, 1);
}
struct my_exception
{
};
unsigned int pass_counter = 0;
unsigned int exception_counter = 0;
// The test verifies that the once_block flag is not set if an exception is thrown from the once-block
BOOST_AUTO_TEST_CASE(once_block_retried_on_exception)
{
for (unsigned int i = 0; i < LOOP_COUNT; ++i)
{
try
{
BOOST_LOG_ONCE_BLOCK()
{
++pass_counter;
if (pass_counter < 3)
{
throw my_exception();
}
}
}
catch (my_exception&)
{
++exception_counter;
}
}
BOOST_CHECK_EQUAL(pass_counter, 3u);
BOOST_CHECK_EQUAL(exception_counter, 2u);
}
#endif // BOOST_LOG_NO_THREADS
|