| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/opt/cpanel/ea-ruby24/src/passenger-release-6.0.20/test/oxt/ |
Upload File : |
#ifndef _COUNTER_HPP_
#define _COUNTER_HPP_
#include <boost/shared_ptr.hpp>
#include <boost/thread.hpp>
#include <boost/thread/thread_time.hpp>
struct Counter;
typedef boost::shared_ptr<Counter> CounterPtr;
/**
* A synchronization mechanism with counter-like properties.
*
* To avoid memory corruption when unit tests fail, one should
* never store Counter objects on the stack. Instead, one should
* create them on the heap and use CounterPtr smart pointers.
*/
struct Counter {
struct timeout_expired { };
unsigned int value;
boost::mutex mutex;
boost::condition_variable cond;
static CounterPtr create_ptr() {
return CounterPtr(new Counter());
}
Counter() {
value = 0;
}
/**
* Wait until other threads have increment this counter to at least wanted_value.
* If this doesn't happen within <tt>timeout</tt> miliseconds, then a timeout_expired
* exception will be thrown.
*/
void wait_until(unsigned int wanted_value, unsigned int timeout = 1000) {
boost::unique_lock<boost::mutex> l(mutex);
while (value < wanted_value) {
if (!cond.timed_wait(l, boost::get_system_time() + boost::posix_time::milliseconds(timeout))) {
throw timeout_expired();
}
}
}
/** Increment the counter by one. */
void increment() {
boost::unique_lock<boost::mutex> l(mutex);
value++;
cond.notify_all();
}
};
#endif /* _COUNTER_HPP_ */