blob: 0ac025fb01db883a913a744ecc277f8fae14f916 [file] [log] [blame]
Andres Morales06f5bc72015-12-15 15:21:31 -08001/*
2 * Copyright (C) 2016 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#pragma once
18
Jorim Jaggi71db8892021-02-03 23:19:29 +010019#include <utils/Mutex.h>
Andres Morales06f5bc72015-12-15 15:21:31 -080020#include <utils/Log.h>
John Reck1bcacfd2017-11-03 10:12:19 -070021#include <utils/RefBase.h>
Andres Morales06f5bc72015-12-15 15:21:31 -080022
Jorim Jaggi71db8892021-02-03 23:19:29 +010023#include <ui/FatVector.h>
24
Andres Morales06f5bc72015-12-15 15:21:31 -080025#include "FrameInfo.h"
Andres Morales910beb82016-02-02 16:19:40 -080026#include "FrameMetricsObserver.h"
Andres Morales06f5bc72015-12-15 15:21:31 -080027
28#include <string.h>
Jorim Jaggi10f328c2021-01-19 00:08:02 +010029#include <mutex>
Andres Morales06f5bc72015-12-15 15:21:31 -080030
31namespace android {
32namespace uirenderer {
33
Andres Morales910beb82016-02-02 16:19:40 -080034class FrameMetricsReporter {
Andres Morales06f5bc72015-12-15 15:21:31 -080035public:
Andres Morales11f02d72016-02-12 18:19:52 -080036 FrameMetricsReporter() {}
Andres Morales06f5bc72015-12-15 15:21:31 -080037
Jorim Jaggi71db8892021-02-03 23:19:29 +010038 void addObserver(FrameMetricsObserver* observer) {
39 std::lock_guard lock(mObserversLock);
40 mObservers.push_back(observer);
41 }
Andres Morales06f5bc72015-12-15 15:21:31 -080042
Andres Morales910beb82016-02-02 16:19:40 -080043 bool removeObserver(FrameMetricsObserver* observer) {
Jorim Jaggi71db8892021-02-03 23:19:29 +010044 std::lock_guard lock(mObserversLock);
Andres Morales06f5bc72015-12-15 15:21:31 -080045 for (size_t i = 0; i < mObservers.size(); i++) {
46 if (mObservers[i].get() == observer) {
47 mObservers.erase(mObservers.begin() + i);
48 return true;
49 }
50 }
51 return false;
52 }
53
Jorim Jaggi71db8892021-02-03 23:19:29 +010054 bool hasObservers() {
55 std::lock_guard lock(mObserversLock);
56 return mObservers.size() > 0;
57 }
Andres Morales06f5bc72015-12-15 15:21:31 -080058
Siarhei Vishniakouf0cf18d2021-02-26 00:15:04 +000059 /**
60 * Notify observers about the metrics contained in 'stats'.
61 * If an observer is waiting for present time, notify when 'stats' has present time.
62 *
63 * If an observer does not want present time, only notify when 'hasPresentTime' is false.
64 * Never notify both types of observers from the same callback, because the callback with
65 * 'hasPresentTime' is sent at a different time than the one without.
66 */
67 void reportFrameMetrics(const int64_t* stats, bool hasPresentTime) {
Jorim Jaggi71db8892021-02-03 23:19:29 +010068 FatVector<sp<FrameMetricsObserver>, 10> copy;
69 {
70 std::lock_guard lock(mObserversLock);
71 copy.reserve(mObservers.size());
72 for (size_t i = 0; i < mObservers.size(); i++) {
Siarhei Vishniakouf0cf18d2021-02-26 00:15:04 +000073 const bool wantsPresentTime = mObservers[i]->waitForPresentTime();
74 if (hasPresentTime == wantsPresentTime) {
75 copy.push_back(mObservers[i]);
76 }
Jorim Jaggi71db8892021-02-03 23:19:29 +010077 }
78 }
79 for (size_t i = 0; i < copy.size(); i++) {
80 copy[i]->notify(stats);
Andres Morales06f5bc72015-12-15 15:21:31 -080081 }
82 }
83
Andres Morales06f5bc72015-12-15 15:21:31 -080084private:
Jorim Jaggi71db8892021-02-03 23:19:29 +010085 FatVector<sp<FrameMetricsObserver>, 10> mObservers GUARDED_BY(mObserversLock);
86 std::mutex mObserversLock;
Andres Morales06f5bc72015-12-15 15:21:31 -080087};
88
Chris Blume7b8a8082018-11-30 15:51:58 -080089} // namespace uirenderer
90} // namespace android