Vulkan SDK for Android 1.1.1 Mali Developer Center
All Classes Functions Variables Enumerations Enumerator Pages
thread_pool.hpp
1 /* Copyright (c) 2016-2017, ARM Limited and Contributors
2  *
3  * SPDX-License-Identifier: MIT
4  *
5  * Permission is hereby granted, free of charge,
6  * to any person obtaining a copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
9  * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
14  * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
17  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19  */
20 
21 #ifndef FRAMEWORK_THREAD_POOL_HPP
22 #define FRAMEWORK_THREAD_POOL_HPP
23 
24 #include <condition_variable>
25 #include <functional>
26 #include <memory>
27 #include <mutex>
28 #include <queue>
29 #include <thread>
30 
31 namespace MaliSDK
32 {
33 
40 {
41 public:
49  void setWorkerThreadCount(unsigned workerThreadCount);
50 
52  unsigned getWorkerThreadCount() const
53  {
54  return workerThreads.size();
55  }
56 
62  void pushWorkToThread(unsigned threadIndex, std::function<void()> func);
63 
66  void waitIdle();
67 
68 private:
69  class Worker
70  {
71  public:
72  Worker();
73  ~Worker();
74 
75  void pushWork(std::function<void()> func);
76  void waitIdle();
77 
78  private:
79  std::thread workerThread;
80  std::mutex lock;
81  std::condition_variable cond;
82 
83  std::queue<std::function<void()>> workQueue;
84  bool threadIsAlive = true;
85 
86  void threadEntry();
87  };
88 
89  std::vector<std::unique_ptr<Worker>> workerThreads;
90 };
91 }
92 
93 #endif
void setWorkerThreadCount(unsigned workerThreadCount)
Sets the number of worker threads to spawn.
Definition: thread_pool.cpp:28
unsigned getWorkerThreadCount() const
Gets the current number of worker threads.
Definition: thread_pool.hpp:52
Implements a simple thread pool which can be used to submit rendering work to multiple threads...
Definition: thread_pool.hpp:39
void pushWorkToThread(unsigned threadIndex, std::function< void()> func)
Pushes a bundle of work to a thread.
Definition: thread_pool.cpp:35
void waitIdle()
Waits for all worker threads to complete all work they have been assigned.
Definition: thread_pool.cpp:40