opensurgsim
ThreadPool-inl.h
1 // This file is a part of the OpenSurgSim project.
2 // Copyright 2013, SimQuest Solutions Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 
16 #ifndef SURGSIM_FRAMEWORK_THREADPOOL_INL_H
17 #define SURGSIM_FRAMEWORK_THREADPOOL_INL_H
18 
19 
20 namespace SurgSim
21 {
22 namespace Framework
23 {
24 
26 {
27 public:
28  virtual void execute() = 0;
29 
30  virtual ~TaskBase() {}
31 };
32 
33 template<class R>
35 {
36 public:
37  explicit Task(std::function<R()> function) :
38  m_task(function)
39  {
40  }
41 
42  void execute() override
43  {
44  m_task();
45  }
46 
47  std::future<R> getFuture()
48  {
49  return m_task.get_future();
50  }
51 
52 private:
53  std::packaged_task<R()> m_task;
54 };
55 
56 template <class R>
57 std::future<R> ThreadPool::enqueue(std::function<R()> function)
58 {
59  std::unique_ptr<Task<R>> task = std::unique_ptr<Task<R>>(new Task<R>(function));
60  std::future<R> future = task->getFuture();
61  {
62  boost::unique_lock<boost::mutex> lock(m_mutex);
63  m_tasks.push(std::move(task));
64  }
65  m_threadSignaler.notify_one();
66  return future;
67 }
68 
69 };
70 };
71 
72 #endif //SURGSIM_FRAMEWORK_THREADPOOL_INL_H
73 
74 
Wraps glewInit() to separate the glew opengl definitions from the osg opengl definitions only imgui n...
Definition: AddRandomSphereBehavior.cpp:36
Actual tasks, with typed return type.
Definition: ThreadPool-inl.h:34
Definition: ThreadPool-inl.h:25
std::future< R > enqueue(std::function< R()> function)
Queue a task to be run by the ThreadPool.
Definition: ThreadPool-inl.h:57