blob: ac540593609c2a2a920e8242e48405cffca7b7f3 [file] [log] [blame]
Jamie Gennisd1700752013-10-14 12:22:52 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Lloyd Pique755e3192018-01-31 16:46:15 -080017#include <pthread.h>
18#include <sched.h>
19#include <sys/resource.h>
20
21#include <cutils/sched_policy.h>
22#include <log/log.h>
23#include <system/thread_defs.h>
24
Jamie Gennisd1700752013-10-14 12:22:52 -070025#include "EventControlThread.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070026
27namespace android {
28
Lloyd Pique755e3192018-01-31 16:46:15 -080029EventControlThread::EventControlThread(EventControlThread::SetVSyncEnabledFunction function)
30 : mSetVSyncEnabled(function) {
31 pthread_setname_np(mThread.native_handle(), "EventControlThread");
Jamie Gennisd1700752013-10-14 12:22:52 -070032
Lloyd Pique755e3192018-01-31 16:46:15 -080033 pid_t tid = pthread_gettid_np(mThread.native_handle());
34 setpriority(PRIO_PROCESS, tid, ANDROID_PRIORITY_URGENT_DISPLAY);
35 set_sched_policy(tid, SP_FOREGROUND);
Jamie Gennisd1700752013-10-14 12:22:52 -070036}
37
Lloyd Pique755e3192018-01-31 16:46:15 -080038EventControlThread::~EventControlThread() {
39 {
40 std::lock_guard<std::mutex> lock(mMutex);
41 mKeepRunning = false;
42 mCondition.notify_all();
Jamie Gennisd1700752013-10-14 12:22:52 -070043 }
Lloyd Pique755e3192018-01-31 16:46:15 -080044 mThread.join();
45}
Jamie Gennisd1700752013-10-14 12:22:52 -070046
Lloyd Pique755e3192018-01-31 16:46:15 -080047void EventControlThread::setVsyncEnabled(bool enabled) {
48 std::lock_guard<std::mutex> lock(mMutex);
49 mVsyncEnabled = enabled;
50 mCondition.notify_all();
51}
52
53// Unfortunately std::unique_lock gives warnings with -Wthread-safety
54void EventControlThread::threadMain() NO_THREAD_SAFETY_ANALYSIS {
55 auto keepRunning = true;
56 auto currentVsyncEnabled = false;
57
58 while (keepRunning) {
59 mSetVSyncEnabled(currentVsyncEnabled);
60
61 std::unique_lock<std::mutex> lock(mMutex);
62 mCondition.wait(lock, [this, currentVsyncEnabled, keepRunning]() NO_THREAD_SAFETY_ANALYSIS {
63 return currentVsyncEnabled != mVsyncEnabled || keepRunning != mKeepRunning;
64 });
65 currentVsyncEnabled = mVsyncEnabled;
66 keepRunning = mKeepRunning;
67 }
Jamie Gennisd1700752013-10-14 12:22:52 -070068}
69
70} // namespace android