-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGraphicsThread.cpp
84 lines (66 loc) · 1.72 KB
/
GraphicsThread.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
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
// SPDX-License-Identifier: Apache-2.0
// Copyright (C) 2019 Stephan Gerhold
#define LOG_TAG "drmfb-thread"
#include <android-base/logging.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <system/graphics.h>
#include "GraphicsThread.h"
namespace android {
namespace hardware {
namespace graphics {
namespace composer {
namespace V2_1 {
namespace drmfb {
GraphicsThread::GraphicsThread(std::string name)
: mName(std::move(name)) {}
GraphicsThread::~GraphicsThread() {
stop();
}
void GraphicsThread::enable() {
{
std::scoped_lock lock{mMutex};
mEnabled = true;
if (!mStarted) {
mStarted = true;
mThread = std::thread(&GraphicsThread::main, this);
return;
}
}
mCondition.notify_all();
}
void GraphicsThread::disable() {
std::scoped_lock lock{mMutex};
mEnabled = false;
}
void GraphicsThread::stop() {
{
std::scoped_lock lock{mMutex};
if (!mStarted)
return;
mEnabled = false;
mStarted = false;
}
mCondition.notify_all();
mThread.join();
}
void GraphicsThread::main() {
setpriority(PRIO_PROCESS, 0, HAL_PRIORITY_URGENT_DISPLAY);
prctl(PR_SET_NAME, mName.c_str(), 0, 0, 0);
LOG(DEBUG) << "Starting thread " << mName;
std::unique_lock lock{mMutex};
while (mStarted) {
work(lock);
mCondition.wait(lock, [this] { return mEnabled || !mStarted; });
}
LOG(DEBUG) << "Stopping thread " << mName;
}
void GraphicsThread::work(std::unique_lock<std::mutex>& lock) {
loop(lock, [this] { run(); });
}
} // namespace drmfb
} // namespace V2_1
} // namespace composer
} // namespace graphics
} // namespace hardware
} // namespace android