2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* CondSh.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
2009-04-16 14:14:13 +03:00
|
|
|
*/
|
2017-07-13 10:26:03 +02:00
|
|
|
#pragma once
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2011-02-22 13:52:36 +02:00
|
|
|
/// Used for multithreading, wraps boost functions
|
2009-04-16 14:14:13 +03:00
|
|
|
template <typename T> struct CondSh
|
|
|
|
{
|
|
|
|
T data;
|
|
|
|
boost::condition_variable cond;
|
|
|
|
boost::mutex mx;
|
2009-08-04 02:53:18 +03:00
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
CondSh(T t) : data(t) {}
|
2009-08-04 02:53:18 +03:00
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
// set data
|
2009-08-04 02:53:18 +03:00
|
|
|
void set(T t)
|
|
|
|
{
|
2016-11-27 18:13:40 +02:00
|
|
|
boost::unique_lock<boost::mutex> lock(mx);
|
2014-08-30 19:45:11 +03:00
|
|
|
data = t;
|
2016-11-27 18:13:40 +02:00
|
|
|
}
|
2009-08-04 02:53:18 +03:00
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
// set data and notify
|
|
|
|
void setn(T t)
|
2009-08-04 02:53:18 +03:00
|
|
|
{
|
2014-08-30 19:45:11 +03:00
|
|
|
set(t);
|
2009-08-04 02:53:18 +03:00
|
|
|
cond.notify_all();
|
|
|
|
};
|
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
// get stored value
|
|
|
|
T get()
|
2009-08-04 02:53:18 +03:00
|
|
|
{
|
2016-11-27 18:13:40 +02:00
|
|
|
boost::unique_lock<boost::mutex> lock(mx);
|
2009-08-04 02:53:18 +03:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
// waits until data is set to false
|
|
|
|
void waitWhileTrue()
|
2009-08-04 02:53:18 +03:00
|
|
|
{
|
|
|
|
boost::unique_lock<boost::mutex> un(mx);
|
|
|
|
while(data)
|
|
|
|
cond.wait(un);
|
|
|
|
}
|
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
// waits while data is set to arg
|
|
|
|
void waitWhile(const T & t)
|
2009-08-04 02:53:18 +03:00
|
|
|
{
|
|
|
|
boost::unique_lock<boost::mutex> un(mx);
|
|
|
|
while(data == t)
|
|
|
|
cond.wait(un);
|
|
|
|
}
|
|
|
|
|
2014-08-30 19:45:11 +03:00
|
|
|
// waits until data is set to arg
|
|
|
|
void waitUntil(const T & t)
|
2009-08-04 02:53:18 +03:00
|
|
|
{
|
|
|
|
boost::unique_lock<boost::mutex> un(mx);
|
|
|
|
while(data != t)
|
|
|
|
cond.wait(un);
|
|
|
|
}
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|