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
|
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// Copyright (C) 2017 Austin J. Beer
//
// 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)
// <boost/thread/condition_variable>
// class condition_variable;
// condition_variable(const condition_variable&) = delete;
#include <iostream>
#include <boost/thread/condition_variable.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/thread.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <cassert>
// Summary of each test:
// 1. Start the test thread and wait for it to start up.
// The test thread waits for the flag to be set using a large timeout.
// 2. The main thread takes the lock and then sleeps for a long time while holding
// the lock before setting the flag and calling notify_one(). If the wait
// function being tested is polling pthread_cond_timedwait() internally, any
// notifications sent after pthread_cond_timedwait() times out but before it can
// reacquire the lock may be "lost". pthread_cond_timedwait() will report that
// it timed out and the wait function may incorrectly assume that no
// notification was received. This test ensures that that doesn't happen.
// 3. Measure how it takes the test thread to return. If it received the
// notification, it will return fairly quickly. If it missed the notification,
// the test thread won't return until the wait function being tested times out.
//------------------------------------------------------------------------------
boost::condition_variable_any cv;
boost::mutex mut;
bool flag;
bool waiting;
bool flagIsSet()
{
return flag;
}
bool threadIsWaiting()
{
return waiting;
}
//------------------------------------------------------------------------------
#ifdef BOOST_THREAD_USES_DATETIME
boost::posix_time::milliseconds posix_wait_time(1000);
template <typename F>
void test_posix_wait_function(F f)
{
flag = false;
waiting = false;
boost::thread t(f);
while (!threadIsWaiting())
{
boost::this_thread::sleep(boost::posix_time::milliseconds(1));
}
boost::unique_lock<boost::mutex> lk(mut);
boost::this_thread::sleep(boost::posix_time::milliseconds(500));
boost::posix_time::ptime t0 = boost::posix_time::microsec_clock::universal_time();
flag = true;
cv.notify_one();
lk.unlock();
t.join();
boost::posix_time::ptime t1 = boost::posix_time::microsec_clock::universal_time();
BOOST_TEST(t1 - t0 < boost::posix_time::milliseconds(250));
}
//------------------------------------------------------------------------------
void timed_wait_absolute_without_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
while (!flagIsSet())
{
cv.timed_wait(lk, boost::posix_time::microsec_clock::universal_time() + posix_wait_time);
}
}
void timed_wait_absolute_with_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
cv.timed_wait(lk, boost::posix_time::microsec_clock::universal_time() + posix_wait_time, flagIsSet);
}
//------------------------------------------------------------------------------
void timed_wait_relative_without_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
while (!flagIsSet())
{
cv.timed_wait(lk, posix_wait_time);
}
}
void timed_wait_relative_with_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
cv.timed_wait(lk, posix_wait_time, flagIsSet);
}
#else
#error "Test not applicable: BOOST_THREAD_USES_DATETIME not defined for this platform as not supported"
#endif
//------------------------------------------------------------------------------
#ifdef BOOST_THREAD_USES_CHRONO
boost::chrono::milliseconds chrono_wait_time(1000);
template <typename F>
void test_chrono_wait_function(F f)
{
flag = false;
waiting = false;
boost::thread t(f);
while (!threadIsWaiting())
{
boost::this_thread::sleep_for(boost::chrono::milliseconds(1));
}
boost::unique_lock<boost::mutex> lk(mut);
boost::this_thread::sleep_for(boost::chrono::milliseconds(500));
boost::chrono::steady_clock::time_point t0 = boost::chrono::steady_clock::now();
flag = true;
cv.notify_one();
lk.unlock();
t.join();
boost::chrono::steady_clock::time_point t1 = boost::chrono::steady_clock::now();
BOOST_TEST(t1 - t0 < boost::chrono::milliseconds(250));
}
//------------------------------------------------------------------------------
void wait_until_system_without_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
while (!flagIsSet())
{
cv.wait_until(lk, boost::chrono::system_clock::now() + chrono_wait_time);
}
}
void wait_until_system_with_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
cv.wait_until(lk, boost::chrono::system_clock::now() + chrono_wait_time, flagIsSet);
}
//------------------------------------------------------------------------------
void wait_until_steady_without_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
while (!flagIsSet())
{
cv.wait_until(lk, boost::chrono::steady_clock::now() + chrono_wait_time);
}
}
void wait_until_steady_with_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
cv.wait_until(lk, boost::chrono::steady_clock::now() + chrono_wait_time, flagIsSet);
}
//------------------------------------------------------------------------------
void wait_for_without_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
while (!flagIsSet())
{
cv.wait_for(lk, chrono_wait_time);
}
}
void wait_for_with_pred()
{
boost::unique_lock<boost::mutex> lk(mut);
waiting = true;
cv.wait_for(lk, chrono_wait_time, flagIsSet);
}
#else
#error "Test not applicable: BOOST_THREAD_USES_CHRONO not defined for this platform as not supported"
#endif
//------------------------------------------------------------------------------
int main()
{
#ifdef BOOST_THREAD_USES_DATETIME
test_posix_wait_function(timed_wait_absolute_without_pred);
test_posix_wait_function(timed_wait_absolute_with_pred);
test_posix_wait_function(timed_wait_relative_without_pred);
test_posix_wait_function(timed_wait_relative_with_pred);
#endif
#ifdef BOOST_THREAD_USES_CHRONO
test_chrono_wait_function(wait_until_system_without_pred);
test_chrono_wait_function(wait_until_system_with_pred);
test_chrono_wait_function(wait_until_steady_without_pred);
test_chrono_wait_function(wait_until_steady_with_pred);
test_chrono_wait_function(wait_for_without_pred);
test_chrono_wait_function(wait_for_with_pred);
#endif
return boost::report_errors();
}
|