blob: 95ca77e487f378345dbd97d6020536e073efaa61 [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.
Pablo Gamito88660d72021-08-09 14:37:56 +000066 *
67 * The 'frameNumber' and 'surfaceControlId' associated to the frame whose's stats are being
68 * reported are used to determine whether or not the stats should be reported. We won't report
69 * stats of frames that are from "old" surfaces (i.e. with surfaceControlIds older than the one
70 * the observer was attached on) nor those that are from "old" frame numbers.
Siarhei Vishniakouf0cf18d2021-02-26 00:15:04 +000071 */
Pablo Gamito88660d72021-08-09 14:37:56 +000072 void reportFrameMetrics(const int64_t* stats, bool hasPresentTime, int64_t frameNumber,
73 int32_t surfaceControlId);
Andres Morales06f5bc72015-12-15 15:21:31 -080074
Andres Morales06f5bc72015-12-15 15:21:31 -080075private:
Jorim Jaggi71db8892021-02-03 23:19:29 +010076 FatVector<sp<FrameMetricsObserver>, 10> mObservers GUARDED_BY(mObserversLock);
77 std::mutex mObserversLock;
Andres Morales06f5bc72015-12-15 15:21:31 -080078};
79
Chris Blume7b8a8082018-11-30 15:51:58 -080080} // namespace uirenderer
81} // namespace android