-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitThreadHelper.h
58 lines (46 loc) · 1.09 KB
/
GitThreadHelper.h
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
#pragma once
#include <functional>
#include <mutex>
#include <string>
#include <thread>
#include <vector>
namespace Git
{
using namespace std;
class MultiThreadTask
{
mutex lockObj;
size_t capacity;
vector<thread> pool;
public:
MultiThreadTask(size_t capacity)
: lockObj()
, capacity(capacity)
{
pool.reserve(capacity);
}
void Add(std::function<bool(const string& str)> func, const string& str)
{
lock_guard<mutex> lock(lockObj);
if (pool.size() >= capacity)
{
WaitForComplete_NeedLock();
}
pool.emplace_back([func](const string& str) { func(str); }, str);
}
void WaitForComplete()
{
lock_guard<mutex> lock(lockObj);
WaitForComplete_NeedLock();
}
private:
void WaitForComplete_NeedLock()
{
for (auto& thread : pool)
{
thread.join();
}
pool.clear();
}
};
}