Otclient  14/8/2020
asyncdispatcher.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef ASYNCDISPATCHER_H
24 #define ASYNCDISPATCHER_H
25 
26 #include "declarations.h"
28 
30 public:
31  void init();
32  void terminate();
33 
34  void spawn_thread();
35  void stop();
36 
37  template<class F>
38  boost::shared_future<typename std::result_of<F()>::type> schedule(const F& task) {
39  std::lock_guard<std::mutex> lock(m_mutex);
40  auto prom = std::make_shared<boost::promise<typename std::result_of<F()>::type>>();
41  m_tasks.push_back([=]() { prom->set_value(task()); });
42  m_condition.notify_all();
43  return boost::shared_future<typename std::result_of<F()>::type>(prom->get_future());
44  }
45 
46 protected:
47  void exec_loop();
48 
49 private:
50  std::list<std::function<void()>> m_tasks;
51  std::list<std::thread> m_threads;
52  std::mutex m_mutex;
53  std::condition_variable m_condition;
54  stdext::boolean<false> m_running;
55 };
56 
58 
59 #endif
AsyncDispatcher
Definition: asyncdispatcher.h:29
AsyncDispatcher::schedule
boost::shared_future< typename std::result_of< F()>::type > schedule(const F &task)
Definition: asyncdispatcher.h:38
stdext::boolean< false >
AsyncDispatcher::stop
void stop()
Definition: asyncdispatcher.cpp:44
AsyncDispatcher::spawn_thread
void spawn_thread()
Definition: asyncdispatcher.cpp:38
stdext::make_shared
stdext::shared_ptr< T > make_shared(Args... args)
Definition: shared_ptr.h:212
declarations.h
g_asyncDispatcher
AsyncDispatcher g_asyncDispatcher
Definition: asyncdispatcher.cpp:25
AsyncDispatcher::exec_loop
void exec_loop()
Definition: asyncdispatcher.cpp:55
AsyncDispatcher::terminate
void terminate()
Definition: asyncdispatcher.cpp:32
thread.h
AsyncDispatcher::init
void init()
Definition: asyncdispatcher.cpp:27