blob: 7f9db9ca2dc1a12ed4997b1b04b47f369c02035f [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
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080017// TODO(b/129481165): remove the #pragma below and fix conversion issues
18#pragma clang diagnostic push
19#pragma clang diagnostic ignored "-Wconversion"
20
Lloyd Pique755e3192018-01-31 16:46:15 -080021#include <pthread.h>
22#include <sched.h>
23#include <sys/resource.h>
24
25#include <cutils/sched_policy.h>
26#include <log/log.h>
27#include <system/thread_defs.h>
28
Jamie Gennisd1700752013-10-14 12:22:52 -070029#include "EventControlThread.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070030
31namespace android {
32
Lloyd Pique379adc12018-01-22 17:31:47 -080033EventControlThread::~EventControlThread() = default;
34
35namespace impl {
36
Lloyd Pique755e3192018-01-31 16:46:15 -080037EventControlThread::EventControlThread(EventControlThread::SetVSyncEnabledFunction function)
Dominik Laskowski98041832019-08-01 18:35:59 -070038 : mSetVSyncEnabled(std::move(function)) {
Lloyd Pique755e3192018-01-31 16:46:15 -080039 pthread_setname_np(mThread.native_handle(), "EventControlThread");
Jamie Gennisd1700752013-10-14 12:22:52 -070040
Lloyd Pique755e3192018-01-31 16:46:15 -080041 pid_t tid = pthread_gettid_np(mThread.native_handle());
42 setpriority(PRIO_PROCESS, tid, ANDROID_PRIORITY_URGENT_DISPLAY);
43 set_sched_policy(tid, SP_FOREGROUND);
Jamie Gennisd1700752013-10-14 12:22:52 -070044}
45
Lloyd Pique755e3192018-01-31 16:46:15 -080046EventControlThread::~EventControlThread() {
47 {
48 std::lock_guard<std::mutex> lock(mMutex);
49 mKeepRunning = false;
50 mCondition.notify_all();
Jamie Gennisd1700752013-10-14 12:22:52 -070051 }
Lloyd Pique755e3192018-01-31 16:46:15 -080052 mThread.join();
53}
Jamie Gennisd1700752013-10-14 12:22:52 -070054
Lloyd Pique755e3192018-01-31 16:46:15 -080055void EventControlThread::setVsyncEnabled(bool enabled) {
56 std::lock_guard<std::mutex> lock(mMutex);
57 mVsyncEnabled = enabled;
58 mCondition.notify_all();
59}
60
61// Unfortunately std::unique_lock gives warnings with -Wthread-safety
62void EventControlThread::threadMain() NO_THREAD_SAFETY_ANALYSIS {
63 auto keepRunning = true;
64 auto currentVsyncEnabled = false;
65
66 while (keepRunning) {
67 mSetVSyncEnabled(currentVsyncEnabled);
68
69 std::unique_lock<std::mutex> lock(mMutex);
70 mCondition.wait(lock, [this, currentVsyncEnabled, keepRunning]() NO_THREAD_SAFETY_ANALYSIS {
71 return currentVsyncEnabled != mVsyncEnabled || keepRunning != mKeepRunning;
72 });
73 currentVsyncEnabled = mVsyncEnabled;
74 keepRunning = mKeepRunning;
75 }
Jamie Gennisd1700752013-10-14 12:22:52 -070076}
77
Lloyd Pique379adc12018-01-22 17:31:47 -080078} // namespace impl
Jamie Gennisd1700752013-10-14 12:22:52 -070079} // namespace android
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080080
81// TODO(b/129481165): remove the #pragma below and fix conversion issues
82#pragma clang diagnostic pop // ignored "-Wconversion"