-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathprocessor.cpp
42 lines (32 loc) · 1005 Bytes
/
processor.cpp
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
/**
* Copyright (c) 2020 Paul-Louis Ageneau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include "processor.hpp"
namespace rtc::impl {
Processor::Processor(size_t limit) : mTasks(limit) {}
Processor::~Processor() { join(); }
void Processor::join() {
std::unique_lock lock(mMutex);
mCondition.wait(lock, [this]() { return !mPending && mTasks.empty(); });
}
void Processor::schedule() {
std::unique_lock lock(mMutex);
if (auto next = mTasks.pop()) {
ThreadPool::Instance().enqueue(std::move(*next));
} else {
// No more tasks
mPending = false;
mCondition.notify_all();
}
}
TearDownProcessor &TearDownProcessor::Instance() {
static TearDownProcessor *instance = new TearDownProcessor;
return *instance;
}
TearDownProcessor::TearDownProcessor() {}
TearDownProcessor::~TearDownProcessor() {}
} // namespace rtc::impl