| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright 2018 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 |  | 
| Midas Chien | bc5f22f | 2018-08-16 15:51:19 +0800 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_GRAPHICS | 
 | 18 |  | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 19 | #include "DispSyncSource.h" | 
 | 20 |  | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 21 | #include <android-base/stringprintf.h> | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 22 | #include <utils/Trace.h> | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 23 | #include <mutex> | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 24 |  | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 25 | #include "EventThread.h" | 
| Ady Abraham | 8cb2188 | 2020-08-26 18:22:05 -0700 | [diff] [blame] | 26 | #include "VsyncController.h" | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 27 |  | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 28 | namespace android::scheduler { | 
| Ady Abraham | 5e7371c | 2020-03-24 14:47:24 -0700 | [diff] [blame] | 29 | using base::StringAppendF; | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 30 | using namespace std::chrono_literals; | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 31 |  | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 32 | class CallbackRepeater { | 
 | 33 | public: | 
 | 34 |     CallbackRepeater(VSyncDispatch& dispatch, VSyncDispatch::Callback cb, const char* name, | 
 | 35 |                      std::chrono::nanoseconds workDuration, std::chrono::nanoseconds readyDuration, | 
 | 36 |                      std::chrono::nanoseconds notBefore) | 
 | 37 |           : mName(name), | 
 | 38 |             mCallback(cb), | 
 | 39 |             mRegistration(dispatch, | 
 | 40 |                           std::bind(&CallbackRepeater::callback, this, std::placeholders::_1, | 
 | 41 |                                     std::placeholders::_2, std::placeholders::_3), | 
 | 42 |                           mName), | 
 | 43 |             mStarted(false), | 
 | 44 |             mWorkDuration(workDuration), | 
 | 45 |             mReadyDuration(readyDuration), | 
 | 46 |             mLastCallTime(notBefore) {} | 
 | 47 |  | 
 | 48 |     ~CallbackRepeater() { | 
 | 49 |         std::lock_guard lock(mMutex); | 
 | 50 |         mRegistration.cancel(); | 
 | 51 |     } | 
 | 52 |  | 
 | 53 |     void start(std::chrono::nanoseconds workDuration, std::chrono::nanoseconds readyDuration) { | 
 | 54 |         std::lock_guard lock(mMutex); | 
 | 55 |         mStarted = true; | 
 | 56 |         mWorkDuration = workDuration; | 
 | 57 |         mReadyDuration = readyDuration; | 
 | 58 |  | 
 | 59 |         auto const scheduleResult = | 
 | 60 |                 mRegistration.schedule({.workDuration = mWorkDuration.count(), | 
 | 61 |                                         .readyDuration = mReadyDuration.count(), | 
 | 62 |                                         .earliestVsync = mLastCallTime.count()}); | 
 | 63 |         LOG_ALWAYS_FATAL_IF((scheduleResult != scheduler::ScheduleResult::Scheduled), | 
 | 64 |                             "Error scheduling callback: rc %X", scheduleResult); | 
 | 65 |     } | 
 | 66 |  | 
 | 67 |     void stop() { | 
 | 68 |         std::lock_guard lock(mMutex); | 
 | 69 |         LOG_ALWAYS_FATAL_IF(!mStarted, "DispSyncInterface misuse: callback already stopped"); | 
 | 70 |         mStarted = false; | 
 | 71 |         mRegistration.cancel(); | 
 | 72 |     } | 
 | 73 |  | 
 | 74 |     void dump(std::string& result) const { | 
 | 75 |         std::lock_guard lock(mMutex); | 
 | 76 |         const auto relativeLastCallTime = | 
 | 77 |                 mLastCallTime - std::chrono::steady_clock::now().time_since_epoch(); | 
 | 78 |         StringAppendF(&result, "\t%s: ", mName.c_str()); | 
 | 79 |         StringAppendF(&result, "mWorkDuration=%.2f mReadyDuration=%.2f last vsync time ", | 
 | 80 |                       mWorkDuration.count() / 1e6f, mReadyDuration.count() / 1e6f); | 
 | 81 |         StringAppendF(&result, "%.2fms relative to now (%s)\n", relativeLastCallTime.count() / 1e6f, | 
 | 82 |                       mStarted ? "running" : "stopped"); | 
 | 83 |     } | 
 | 84 |  | 
 | 85 | private: | 
 | 86 |     void callback(nsecs_t vsyncTime, nsecs_t wakeupTime, nsecs_t readyTime) { | 
 | 87 |         { | 
 | 88 |             std::lock_guard lock(mMutex); | 
 | 89 |             mLastCallTime = std::chrono::nanoseconds(vsyncTime); | 
 | 90 |         } | 
 | 91 |  | 
 | 92 |         mCallback(vsyncTime, wakeupTime, readyTime); | 
 | 93 |  | 
 | 94 |         { | 
 | 95 |             std::lock_guard lock(mMutex); | 
 | 96 |             if (!mStarted) { | 
 | 97 |                 return; | 
 | 98 |             } | 
 | 99 |             auto const scheduleResult = | 
 | 100 |                     mRegistration.schedule({.workDuration = mWorkDuration.count(), | 
 | 101 |                                             .readyDuration = mReadyDuration.count(), | 
 | 102 |                                             .earliestVsync = vsyncTime}); | 
 | 103 |             LOG_ALWAYS_FATAL_IF((scheduleResult != ScheduleResult::Scheduled), | 
 | 104 |                                 "Error rescheduling callback: rc %X", scheduleResult); | 
 | 105 |         } | 
 | 106 |     } | 
 | 107 |  | 
 | 108 |     const std::string mName; | 
 | 109 |     scheduler::VSyncDispatch::Callback mCallback; | 
 | 110 |  | 
 | 111 |     mutable std::mutex mMutex; | 
 | 112 |     VSyncCallbackRegistration mRegistration GUARDED_BY(mMutex); | 
 | 113 |     bool mStarted GUARDED_BY(mMutex) = false; | 
 | 114 |     std::chrono::nanoseconds mWorkDuration GUARDED_BY(mMutex) = 0ns; | 
 | 115 |     std::chrono::nanoseconds mReadyDuration GUARDED_BY(mMutex) = 0ns; | 
 | 116 |     std::chrono::nanoseconds mLastCallTime GUARDED_BY(mMutex) = 0ns; | 
 | 117 | }; | 
 | 118 |  | 
 | 119 | DispSyncSource::DispSyncSource(scheduler::VSyncDispatch& vSyncDispatch, | 
 | 120 |                                std::chrono::nanoseconds workDuration, | 
 | 121 |                                std::chrono::nanoseconds readyDuration, bool traceVsync, | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 122 |                                const char* name) | 
 | 123 |       : mName(name), | 
| Ady Abraham | 50204dd | 2019-07-19 15:47:11 -0700 | [diff] [blame] | 124 |         mValue(base::StringPrintf("VSYNC-%s", name), 0), | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 125 |         mTraceVsync(traceVsync), | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 126 |         mVsyncOnLabel(base::StringPrintf("VsyncOn-%s", name)), | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 127 |         mWorkDuration(base::StringPrintf("VsyncWorkDuration-%s", name), workDuration), | 
 | 128 |         mReadyDuration(readyDuration) { | 
 | 129 |     mCallbackRepeater = | 
 | 130 |             std::make_unique<CallbackRepeater>(vSyncDispatch, | 
 | 131 |                                                std::bind(&DispSyncSource::onVsyncCallback, this, | 
 | 132 |                                                          std::placeholders::_1, | 
 | 133 |                                                          std::placeholders::_2, | 
 | 134 |                                                          std::placeholders::_3), | 
 | 135 |                                                name, workDuration, readyDuration, | 
 | 136 |                                                std::chrono::steady_clock::now().time_since_epoch()); | 
 | 137 | } | 
 | 138 |  | 
 | 139 | DispSyncSource::~DispSyncSource() = default; | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 140 |  | 
 | 141 | void DispSyncSource::setVSyncEnabled(bool enable) { | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 142 |     std::lock_guard lock(mVsyncMutex); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 143 |     if (enable) { | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 144 |         mCallbackRepeater->start(mWorkDuration, mReadyDuration); | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 145 |         // ATRACE_INT(mVsyncOnLabel.c_str(), 1); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 146 |     } else { | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 147 |         mCallbackRepeater->stop(); | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 148 |         // ATRACE_INT(mVsyncOnLabel.c_str(), 0); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 149 |     } | 
 | 150 |     mEnabled = enable; | 
 | 151 | } | 
 | 152 |  | 
 | 153 | void DispSyncSource::setCallback(VSyncSource::Callback* callback) { | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 154 |     std::lock_guard lock(mCallbackMutex); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 155 |     mCallback = callback; | 
 | 156 | } | 
 | 157 |  | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 158 | void DispSyncSource::setDuration(std::chrono::nanoseconds workDuration, | 
 | 159 |                                  std::chrono::nanoseconds readyDuration) { | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 160 |     std::lock_guard lock(mVsyncMutex); | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 161 |     mWorkDuration = workDuration; | 
 | 162 |     mReadyDuration = readyDuration; | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 163 |  | 
 | 164 |     // If we're not enabled, we don't need to mess with the listeners | 
 | 165 |     if (!mEnabled) { | 
 | 166 |         return; | 
 | 167 |     } | 
 | 168 |  | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 169 |     mCallbackRepeater->start(mWorkDuration, mReadyDuration); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 170 | } | 
 | 171 |  | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 172 | void DispSyncSource::onVsyncCallback(nsecs_t vsyncTime, nsecs_t targetWakeupTime, | 
 | 173 |                                      nsecs_t readyTime) { | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 174 |     VSyncSource::Callback* callback; | 
 | 175 |     { | 
| Ana Krulec | 072233f | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 176 |         std::lock_guard lock(mCallbackMutex); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 177 |         callback = mCallback; | 
| Alec Mouri | d7599d8 | 2019-05-22 19:58:00 -0700 | [diff] [blame] | 178 |     } | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 179 |  | 
| Alec Mouri | d7599d8 | 2019-05-22 19:58:00 -0700 | [diff] [blame] | 180 |     if (mTraceVsync) { | 
 | 181 |         mValue = (mValue + 1) % 2; | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 182 |     } | 
 | 183 |  | 
 | 184 |     if (callback != nullptr) { | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 185 |         callback->onVSyncEvent(targetWakeupTime, vsyncTime, readyTime); | 
| Ana Krulec | 241cf83 | 2018-08-10 15:03:23 -0700 | [diff] [blame] | 186 |     } | 
 | 187 | } | 
 | 188 |  | 
| Ady Abraham | 5e7371c | 2020-03-24 14:47:24 -0700 | [diff] [blame] | 189 | void DispSyncSource::dump(std::string& result) const { | 
 | 190 |     std::lock_guard lock(mVsyncMutex); | 
 | 191 |     StringAppendF(&result, "DispSyncSource: %s(%s)\n", mName, mEnabled ? "enabled" : "disabled"); | 
| Ady Abraham | 5e7371c | 2020-03-24 14:47:24 -0700 | [diff] [blame] | 192 | } | 
 | 193 |  | 
| Ady Abraham | 9c53ee7 | 2020-07-22 21:16:18 -0700 | [diff] [blame] | 194 | } // namespace android::scheduler |