1
1
/* *
2
- * @Description :
3
- * @Author : chenht2022
4
- * @Date : 2024-07-16 10:43:18
5
- * @Version : 1.0.0
6
- * @LastEditors : chenxl
7
- * @LastEditTime : 2024-08-08 04:23:51
2
+ * @Description :
3
+ * @Author : chenht2022
4
+ * @Date : 2024-07-16 10:43:18
5
+ * @Version : 1.0.0
6
+ * @LastEditors : chenht
7
+ * @LastEditTime : 2024-10-09 11:08:07
8
8
* @Copyright (c) 2024 by KVCache.AI, All Rights Reserved.
9
9
**/
10
10
#ifndef CPUINFER_TASKQUEUE_H
22
22
#endif
23
23
24
24
class custom_mutex {
25
- private:
25
+ private:
26
26
#ifdef _WIN32
27
- HANDLE global_mutex ;
27
+ CRITICAL_SECTION cs ;
28
28
#else
29
- std::mutex global_mutex ;
29
+ std::mutex mtx ;
30
30
#endif
31
-
32
- public:
33
- custom_mutex ()
34
- {
31
+
32
+ public:
33
+ custom_mutex () {
35
34
#ifdef _WIN32
36
- HANDLE global_mutex;
35
+ InitializeCriticalSection (&cs);
36
+ #else
37
+ // No initialization required for std::mutex
37
38
#endif
38
39
}
39
40
40
- void lock ()
41
- {
41
+ ~custom_mutex () {
42
42
#ifdef _WIN32
43
- WaitForSingleObject (global_mutex, INFINITE);
43
+ DeleteCriticalSection (&cs);
44
+ #endif
45
+ }
46
+
47
+ void lock () {
48
+ #ifdef _WIN32
49
+ EnterCriticalSection (&cs);
44
50
#else
45
- global_mutex .lock ();
51
+ mtx .lock ();
46
52
#endif
47
53
}
48
54
49
- void unlock ()
50
- {
55
+ void unlock () {
51
56
#ifdef _WIN32
52
- ReleaseMutex (global_mutex );
57
+ LeaveCriticalSection (&cs );
53
58
#else
54
- global_mutex.unlock ();
59
+ mtx.unlock ();
60
+ #endif
61
+ }
62
+
63
+ #ifdef _WIN32
64
+ CRITICAL_SECTION* get_handle () {
65
+ return &cs;
66
+ }
67
+ #else
68
+ std::mutex* get_handle () {
69
+ return &mtx;
70
+ }
71
+ #endif
72
+ };
73
+
74
+ class custom_condition_variable {
75
+ private:
76
+ #ifdef _WIN32
77
+ CONDITION_VARIABLE cond_var;
78
+ #else
79
+ std::condition_variable cond_var;
80
+ #endif
81
+
82
+ public:
83
+ custom_condition_variable () {
84
+ #ifdef _WIN32
85
+ InitializeConditionVariable (&cond_var);
86
+ #endif
87
+ }
88
+
89
+ template <typename Predicate>
90
+ void wait (custom_mutex& mutex, Predicate pred) {
91
+ #ifdef _WIN32
92
+ while (!pred ()) {
93
+ SleepConditionVariableCS (&cond_var, mutex.get_handle (), INFINITE);
94
+ }
95
+ #else
96
+ std::unique_lock<std::mutex> lock (*mutex.get_handle (), std::adopt_lock);
97
+ cond_var.wait (lock, pred);
98
+ lock.release ();
99
+ #endif
100
+ }
101
+
102
+ void notify_one () {
103
+ #ifdef _WIN32
104
+ WakeConditionVariable (&cond_var);
105
+ #else
106
+ cond_var.notify_one ();
107
+ #endif
108
+ }
109
+
110
+ void notify_all () {
111
+ #ifdef _WIN32
112
+ WakeAllConditionVariable (&cond_var);
113
+ #else
114
+ cond_var.notify_all ();
55
115
#endif
56
116
}
57
117
};
@@ -69,10 +129,10 @@ class TaskQueue {
69
129
void processTasks ();
70
130
71
131
std::queue<std::function<void ()>> tasks;
72
- std::mutex mutex;
73
- std::condition_variable cv;
132
+ custom_mutex mutex;
133
+ custom_condition_variable cv;
74
134
std::thread worker;
75
135
std::atomic<bool > sync_flag;
76
136
std::atomic<bool > exit_flag;
77
137
};
78
- #endif
138
+ #endif
0 commit comments