blob: 783b0d45ba93262bd77be315782239342ca9810e [file] [log] [blame]
Adrian Roos9b963d32019-02-13 18:39:36 +00001/*
2 * Copyright (C) 2012 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#define LOG_TAG "CompositionSamplingListener"
18
19#include "android_util_Binder.h"
Louis Change67f6542019-03-22 16:26:10 +080020#include "core_jni_helpers.h"
Adrian Roos9b963d32019-02-13 18:39:36 +000021
22#include <nativehelper/JNIHelp.h>
23
24#include <android_runtime/AndroidRuntime.h>
25#include <android_runtime/Log.h>
26#include <utils/Log.h>
27#include <utils/RefBase.h>
28#include <binder/IServiceManager.h>
29
30#include <gui/IRegionSamplingListener.h>
31#include <gui/ISurfaceComposer.h>
Kevin DuBois66ed4f82019-02-18 16:27:11 -080032#include <gui/SurfaceComposerClient.h>
Adrian Roos9b963d32019-02-13 18:39:36 +000033#include <ui/Rect.h>
34
35namespace android {
36
37namespace {
38
39struct {
40 jclass mClass;
41 jmethodID mDispatchOnSampleCollected;
42} gListenerClassInfo;
43
44struct CompositionSamplingListener : public BnRegionSamplingListener {
45 CompositionSamplingListener(JNIEnv* env, jobject listener)
Adrian Roos8c965b82019-02-14 17:55:15 +010046 : mListener(env->NewWeakGlobalRef(listener)) {}
Adrian Roos9b963d32019-02-13 18:39:36 +000047
48 void onSampleCollected(float medianLuma) override {
49 JNIEnv* env = AndroidRuntime::getJNIEnv();
50 LOG_ALWAYS_FATAL_IF(env == nullptr, "Unable to retrieve JNIEnv in onSampleCollected.");
51
Adrian Roos8c965b82019-02-14 17:55:15 +010052 jobject listener = env->NewGlobalRef(mListener);
53 if (listener == NULL) {
54 // Weak reference went out of scope
55 return;
56 }
Adrian Roos9b963d32019-02-13 18:39:36 +000057 env->CallStaticVoidMethod(gListenerClassInfo.mClass,
Adrian Roos8c965b82019-02-14 17:55:15 +010058 gListenerClassInfo.mDispatchOnSampleCollected, listener,
Adrian Roos9b963d32019-02-13 18:39:36 +000059 static_cast<jfloat>(medianLuma));
Adrian Roos8c965b82019-02-14 17:55:15 +010060 env->DeleteGlobalRef(listener);
61
Adrian Roos9b963d32019-02-13 18:39:36 +000062 if (env->ExceptionCheck()) {
63 ALOGE("CompositionSamplingListener.onSampleCollected() failed.");
64 LOGE_EX(env);
65 env->ExceptionClear();
66 }
67 }
68
69protected:
70 virtual ~CompositionSamplingListener() {
71 JNIEnv* env = AndroidRuntime::getJNIEnv();
Adrian Roos8c965b82019-02-14 17:55:15 +010072 env->DeleteWeakGlobalRef(mListener);
Adrian Roos9b963d32019-02-13 18:39:36 +000073 }
74
75private:
Adrian Roos8c965b82019-02-14 17:55:15 +010076 jweak mListener;
Adrian Roos9b963d32019-02-13 18:39:36 +000077};
78
79jlong nativeCreate(JNIEnv* env, jclass clazz, jobject obj) {
80 CompositionSamplingListener* listener = new CompositionSamplingListener(env, obj);
81 listener->incStrong((void*)nativeCreate);
82 return reinterpret_cast<jlong>(listener);
83}
84
85void nativeDestroy(JNIEnv* env, jclass clazz, jlong ptr) {
86 CompositionSamplingListener* listener = reinterpret_cast<CompositionSamplingListener*>(ptr);
87 listener->decStrong((void*)nativeCreate);
88}
89
Vishnu Nair4bcd1522019-06-25 17:29:27 -070090void nativeRegister(JNIEnv* env, jclass clazz, jlong ptr, jlong stopLayerObj,
Adrian Roos9b963d32019-02-13 18:39:36 +000091 jint left, jint top, jint right, jint bottom) {
92 sp<CompositionSamplingListener> listener = reinterpret_cast<CompositionSamplingListener*>(ptr);
Vishnu Nair4bcd1522019-06-25 17:29:27 -070093 auto stopLayer = reinterpret_cast<SurfaceControl*>(stopLayerObj);
94 sp<IBinder> stopLayerHandle = stopLayer != nullptr ? stopLayer->getHandle() : nullptr;
Kevin DuBois66ed4f82019-02-18 16:27:11 -080095 if (SurfaceComposerClient::addRegionSamplingListener(
96 Rect(left, top, right, bottom), stopLayerHandle, listener) != OK) {
97 constexpr auto error_msg = "Couldn't addRegionSamplingListener";
98 ALOGE(error_msg);
99 jniThrowRuntimeException(env, error_msg);
Adrian Roos9b963d32019-02-13 18:39:36 +0000100 }
Adrian Roos9b963d32019-02-13 18:39:36 +0000101}
102
103void nativeUnregister(JNIEnv* env, jclass clazz, jlong ptr) {
104 sp<CompositionSamplingListener> listener = reinterpret_cast<CompositionSamplingListener*>(ptr);
105
Kevin DuBois66ed4f82019-02-18 16:27:11 -0800106 if (SurfaceComposerClient::removeRegionSamplingListener(listener) != OK) {
107 constexpr auto error_msg = "Couldn't removeRegionSamplingListener";
108 ALOGE(error_msg);
109 jniThrowRuntimeException(env, error_msg);
Adrian Roos9b963d32019-02-13 18:39:36 +0000110 }
Adrian Roos9b963d32019-02-13 18:39:36 +0000111}
112
113const JNINativeMethod gMethods[] = {
114 /* name, signature, funcPtr */
115 { "nativeCreate", "(Landroid/view/CompositionSamplingListener;)J",
116 (void*)nativeCreate },
117 { "nativeDestroy", "(J)V",
118 (void*)nativeDestroy },
Vishnu Nair4bcd1522019-06-25 17:29:27 -0700119 { "nativeRegister", "(JJIIII)V",
Adrian Roos9b963d32019-02-13 18:39:36 +0000120 (void*)nativeRegister },
121 { "nativeUnregister", "(J)V",
122 (void*)nativeUnregister }
123};
124
125} // namespace
126
127int register_android_view_CompositionSamplingListener(JNIEnv* env) {
128 int res = jniRegisterNativeMethods(env, "android/view/CompositionSamplingListener",
129 gMethods, NELEM(gMethods));
130 LOG_ALWAYS_FATAL_IF(res < 0, "Unable to register native methods.");
131
132 jclass clazz = env->FindClass("android/view/CompositionSamplingListener");
Louis Change67f6542019-03-22 16:26:10 +0800133 gListenerClassInfo.mClass = MakeGlobalRefOrDie(env, clazz);
Adrian Roos9b963d32019-02-13 18:39:36 +0000134 gListenerClassInfo.mDispatchOnSampleCollected = env->GetStaticMethodID(
135 clazz, "dispatchOnSampleCollected", "(Landroid/view/CompositionSamplingListener;F)V");
136 return 0;
137}
138
139} // namespace android