2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* CThreadHelper.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
|
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2009-04-16 14:14:13 +03:00
|
|
|
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
|
|
|
///DEPRECATED
|
2011-02-22 13:52:36 +02:00
|
|
|
/// Can assign CPU work to other threads/cores
|
2011-12-14 00:35:28 +03:00
|
|
|
class DLL_LINKAGE CThreadHelper
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
|
|
|
public:
|
|
|
|
typedef std::function<void()> Task;
|
|
|
|
CThreadHelper(std::vector<std::function<void()> > *Tasks, int Threads);
|
|
|
|
void run();
|
|
|
|
private:
|
2009-04-16 14:14:13 +03:00
|
|
|
boost::mutex rtinm;
|
|
|
|
int currentTask, amount, threads;
|
|
|
|
std::vector<Task> *tasks;
|
|
|
|
|
|
|
|
|
|
|
|
void processTasks();
|
|
|
|
};
|
|
|
|
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
|
|
|
template<typename Payload>
|
|
|
|
class ThreadPool
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
|
|
|
public:
|
|
|
|
using Task = std::function<void(std::shared_ptr<Payload>)>;
|
|
|
|
using Tasks = std::vector<Task>;
|
|
|
|
|
|
|
|
ThreadPool(Tasks * tasks_, std::vector<std::shared_ptr<Payload>> context_)
|
|
|
|
: currentTask(0),
|
|
|
|
amount(tasks_->size()),
|
|
|
|
threads(context_.size()),
|
|
|
|
tasks(tasks_),
|
|
|
|
context(context_)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void run()
|
|
|
|
{
|
|
|
|
boost::thread_group grupa;
|
|
|
|
for(size_t i=0; i<threads; i++)
|
|
|
|
{
|
|
|
|
std::shared_ptr<Payload> payload = context.at(i);
|
|
|
|
|
|
|
|
grupa.create_thread(std::bind(&ThreadPool::processTasks, this, payload));
|
|
|
|
}
|
|
|
|
|
|
|
|
grupa.join_all();
|
|
|
|
|
|
|
|
//thread group deletes threads, do not free manually
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
boost::mutex rtinm;
|
|
|
|
size_t currentTask, amount, threads;
|
|
|
|
Tasks * tasks;
|
|
|
|
std::vector<std::shared_ptr<Payload>> context;
|
|
|
|
|
|
|
|
void processTasks(std::shared_ptr<Payload> payload)
|
|
|
|
{
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
size_t pom;
|
|
|
|
{
|
|
|
|
boost::unique_lock<boost::mutex> lock(rtinm);
|
|
|
|
if((pom = currentTask) >= amount)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
++currentTask;
|
|
|
|
}
|
|
|
|
(*tasks)[pom](payload);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2012-06-27 23:44:01 +03:00
|
|
|
void DLL_LINKAGE setThreadName(const std::string &name);
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|