blob: 358e06ac939f9387241f42b3e7a5db24e606e38d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#pragma once
#include "Program.hpp"
#include <thread>
#include <future>
#include <mutex>
namespace QuickMedia {
template <class T, class... Args>
class AsyncTask {
public:
using CallbackFunc = std::function<T(Args&&... args)>;
AsyncTask() = default;
AsyncTask(CallbackFunc callback_func, Args&&... args) {
std::lock_guard<std::mutex> lock(mutex);
std::promise<T> promise;
future = promise.get_future();
thread = std::thread(&AsyncTask::thread_handler, this, std::move(promise), std::move(callback_func), std::forward<Args>(args)...);
}
AsyncTask(AsyncTask &&other) noexcept {
cancel();
std::lock_guard<std::mutex> lock(mutex);
thread = std::move(other.thread);
future = std::move(other.future);
}
AsyncTask& operator=(AsyncTask &&other) noexcept {
cancel();
std::lock_guard<std::mutex> lock(mutex);
thread = std::move(other.thread);
future = std::move(other.future);
return *this;
}
~AsyncTask() {
cancel();
}
bool valid() {
std::lock_guard<std::mutex> lock(mutex);
return future.valid();
}
bool ready() {
std::lock_guard<std::mutex> lock(mutex);
return future.valid() && future.wait_for(std::chrono::seconds(0)) == std::future_status::ready;
}
T get() {
std::lock_guard<std::mutex> lock(mutex);
if constexpr(std::is_same<T, void>::value) {
if(thread.joinable()) {
thread.join();
future.get();
}
} else {
T result = T();
if(thread.joinable()) {
thread.join();
result = std::move(future.get());
}
return result;
}
}
void cancel() {
std::lock_guard<std::mutex> lock(mutex);
if(future.valid()) {
program_kill_in_thread(thread.get_id());
if(thread.joinable()) {
thread.join();
future.get();
}
}
}
private:
void thread_handler(std::promise<T> &&promise, CallbackFunc callback_func, Args&&... args) {
if constexpr(std::is_same<T, void>::value) {
callback_func(std::forward<Args>(args)...);
promise.set_value();
} else {
promise.set_value(callback_func(std::forward<Args>(args)...));
}
}
private:
std::thread thread;
std::future<T> future;
std::mutex mutex;
};
}
|