Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2021 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 | |
| 17 | #undef LOG_TAG |
| 18 | #define LOG_TAG "FpsReporter" |
| 19 | #define ATRACE_TAG ATRACE_TAG_GRAPHICS |
| 20 | |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 21 | #include <algorithm> |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 22 | |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 23 | #include "FpsReporter.h" |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 24 | #include "Layer.h" |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 25 | #include "SurfaceFlinger.h" |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 26 | |
| 27 | namespace android { |
| 28 | |
Alec Mouri | 07b27ce | 2021-04-26 16:31:44 -0700 | [diff] [blame] | 29 | FpsReporter::FpsReporter(frametimeline::FrameTimeline& frameTimeline, SurfaceFlinger& flinger, |
| 30 | std::unique_ptr<Clock> clock) |
| 31 | : mFrameTimeline(frameTimeline), mFlinger(flinger), mClock(std::move(clock)) { |
| 32 | LOG_ALWAYS_FATAL_IF(mClock == nullptr, "Passed in null clock when constructing FpsReporter!"); |
| 33 | } |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 34 | |
Alec Mouri | 07b27ce | 2021-04-26 16:31:44 -0700 | [diff] [blame] | 35 | void FpsReporter::dispatchLayerFps() { |
| 36 | const auto now = mClock->now(); |
| 37 | if (now - mLastDispatch < kMinDispatchDuration) { |
| 38 | return; |
| 39 | } |
| 40 | |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 41 | std::vector<TrackedListener> localListeners; |
| 42 | { |
| 43 | std::scoped_lock lock(mMutex); |
| 44 | if (mListeners.empty()) { |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | std::transform(mListeners.begin(), mListeners.end(), std::back_inserter(localListeners), |
| 49 | [](const std::pair<wp<IBinder>, TrackedListener>& entry) { |
| 50 | return entry.second; |
| 51 | }); |
| 52 | } |
| 53 | |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 54 | std::unordered_set<int32_t> seenTasks; |
| 55 | std::vector<std::pair<TrackedListener, sp<Layer>>> listenersAndLayersToReport; |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 56 | |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 57 | mFlinger.mCurrentState.traverse([&](Layer* layer) { |
| 58 | auto& currentState = layer->getCurrentState(); |
| 59 | if (currentState.metadata.has(METADATA_TASK_ID)) { |
| 60 | int32_t taskId = currentState.metadata.getInt32(METADATA_TASK_ID, 0); |
| 61 | if (seenTasks.count(taskId) == 0) { |
| 62 | // localListeners is expected to be tiny |
| 63 | for (TrackedListener& listener : localListeners) { |
| 64 | if (listener.taskId == taskId) { |
| 65 | seenTasks.insert(taskId); |
| 66 | listenersAndLayersToReport.push_back({listener, sp<Layer>(layer)}); |
| 67 | break; |
| 68 | } |
| 69 | } |
| 70 | } |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 71 | } |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 72 | }); |
| 73 | |
| 74 | for (const auto& [listener, layer] : listenersAndLayersToReport) { |
| 75 | std::unordered_set<int32_t> layerIds; |
| 76 | |
| 77 | layer->traverse(LayerVector::StateSet::Current, |
| 78 | [&](Layer* layer) { layerIds.insert(layer->getSequence()); }); |
| 79 | |
| 80 | listener.listener->onFpsReported(mFrameTimeline.computeFps(layerIds)); |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 81 | } |
Alec Mouri | 07b27ce | 2021-04-26 16:31:44 -0700 | [diff] [blame] | 82 | |
| 83 | mLastDispatch = now; |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | void FpsReporter::binderDied(const wp<IBinder>& who) { |
| 87 | std::scoped_lock lock(mMutex); |
| 88 | mListeners.erase(who); |
| 89 | } |
| 90 | |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 91 | void FpsReporter::addListener(const sp<gui::IFpsListener>& listener, int32_t taskId) { |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 92 | sp<IBinder> asBinder = IInterface::asBinder(listener); |
| 93 | asBinder->linkToDeath(this); |
| 94 | std::lock_guard lock(mMutex); |
Alec Mouri | a9a68a6 | 2021-03-04 19:14:50 -0800 | [diff] [blame] | 95 | mListeners.emplace(wp<IBinder>(asBinder), TrackedListener{listener, taskId}); |
Alec Mouri | adebf5c | 2021-01-05 12:57:36 -0800 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | void FpsReporter::removeListener(const sp<gui::IFpsListener>& listener) { |
| 99 | std::lock_guard lock(mMutex); |
| 100 | mListeners.erase(wp<IBinder>(IInterface::asBinder(listener))); |
| 101 | } |
| 102 | |
| 103 | } // namespace android |