blob: ac13025728c29bcc36dda572b7a07032163f2d5c [file] [log] [blame]
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001/*
2 * Copyright (C) 2013 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 "SurfaceControl"
Robert Carr6486d312017-01-09 19:48:29 -080018#define LOG_NDEBUG 0
Mathias Agopian3866f0d2013-02-11 22:08:48 -080019
Mathias Agopian3866f0d2013-02-11 22:08:48 -080020#include "android_os_Parcel.h"
21#include "android_util_Binder.h"
Robert Carr788f5742018-07-30 17:46:45 -070022#include "android_hardware_input_InputWindowHandle.h"
John Reckf29ed282015-04-07 07:32:03 -070023#include "android/graphics/Bitmap.h"
Mathias Agopian3866f0d2013-02-11 22:08:48 -080024#include "android/graphics/GraphicsJNI.h"
25#include "android/graphics/Region.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080026#include "core_jni_helpers.h"
Ben Wagner60126ef2015-08-07 12:13:48 -040027
Tom Cherry8ed74bb2017-07-10 14:31:18 -070028#include <android-base/chrono_utils.h>
Steven Moreland2279b252017-07-19 09:50:45 -070029#include <nativehelper/JNIHelp.h>
30#include <nativehelper/ScopedUtfChars.h>
Mathias Agopian0449a402013-03-01 23:01:51 -080031#include <android_runtime/android_view_Surface.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080032#include <android_runtime/android_view_SurfaceSession.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080033#include <gui/Surface.h>
34#include <gui/SurfaceComposerClient.h>
Ben Wagner60126ef2015-08-07 12:13:48 -040035#include <jni.h>
36#include <memory>
37#include <stdio.h>
Michael Wright1c9977b2016-07-12 13:30:10 -070038#include <system/graphics.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080039#include <ui/DisplayInfo.h>
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070040#include <ui/DisplayedFrameStats.h>
Svetoslav1376d602014-03-13 11:17:26 -070041#include <ui/FrameStats.h>
Peiyong Linb88549e2018-03-28 12:03:45 -070042#include <ui/GraphicTypes.h>
Peiyong Lin371b98f2018-03-14 17:29:10 -070043#include <ui/HdrCapabilities.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080044#include <ui/Rect.h>
45#include <ui/Region.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080046#include <utils/Log.h>
47
Mathias Agopian3866f0d2013-02-11 22:08:48 -080048// ----------------------------------------------------------------------------
49
50namespace android {
51
52static const char* const OutOfResourcesException =
53 "android/view/Surface$OutOfResourcesException";
54
55static struct {
Dan Stoza00101052014-05-02 15:23:40 -070056 jclass clazz;
57 jmethodID ctor;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080058 jfieldID width;
59 jfieldID height;
60 jfieldID refreshRate;
61 jfieldID density;
62 jfieldID xDpi;
63 jfieldID yDpi;
64 jfieldID secure;
Andy McFaddene8b1aeb2014-06-13 14:05:40 -070065 jfieldID appVsyncOffsetNanos;
66 jfieldID presentationDeadlineNanos;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080067} gPhysicalDisplayInfoClassInfo;
68
Dan Stoza9890e3412014-05-22 16:12:54 -070069static struct {
70 jfieldID bottom;
71 jfieldID left;
72 jfieldID right;
73 jfieldID top;
74} gRectClassInfo;
75
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050076// Implements SkMallocPixelRef::ReleaseProc, to delete the screenshot on unref.
77void DeleteScreenshot(void* addr, void* context) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050078 delete ((ScreenshotClient*) context);
79}
Mathias Agopian3866f0d2013-02-11 22:08:48 -080080
Svetoslav1376d602014-03-13 11:17:26 -070081static struct {
82 nsecs_t UNDEFINED_TIME_NANO;
83 jmethodID init;
84} gWindowContentFrameStatsClassInfo;
85
86static struct {
87 nsecs_t UNDEFINED_TIME_NANO;
88 jmethodID init;
89} gWindowAnimationFrameStatsClassInfo;
90
Hangyu Kuang54ac2192016-04-25 13:22:02 -070091static struct {
92 jclass clazz;
93 jmethodID ctor;
94} gHdrCapabilitiesClassInfo;
95
Robert Carr6486d312017-01-09 19:48:29 -080096static struct {
97 jclass clazz;
98 jmethodID builder;
99} gGraphicBufferClassInfo;
100
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700101static struct {
102 jclass clazz;
103 jmethodID ctor;
104} gDisplayedContentSampleClassInfo;
105
106static struct {
107 jclass clazz;
108 jmethodID ctor;
109} gDisplayedContentSamplingAttributesClassInfo;
110
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800111// ----------------------------------------------------------------------------
112
Robert Carre13b58e2017-08-31 14:50:44 -0700113static jlong nativeCreateTransaction(JNIEnv* env, jclass clazz) {
114 return reinterpret_cast<jlong>(new SurfaceComposerClient::Transaction);
115}
116
117static void releaseTransaction(SurfaceComposerClient::Transaction* t) {
118 delete t;
119}
120
121static jlong nativeGetNativeTransactionFinalizer(JNIEnv* env, jclass clazz) {
122 return static_cast<jlong>(reinterpret_cast<uintptr_t>(&releaseTransaction));
123}
124
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000125static jlong nativeCreate(JNIEnv* env, jclass clazz, jobject sessionObj,
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500126 jstring nameStr, jint w, jint h, jint format, jint flags, jlong parentObject,
127 jint windowType, jint ownerUid) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800128 ScopedUtfChars name(env, nameStr);
129 sp<SurfaceComposerClient> client(android_view_SurfaceSession_getClient(env, sessionObj));
Robert Carr838120c2016-11-01 18:31:12 -0700130 SurfaceControl *parent = reinterpret_cast<SurfaceControl*>(parentObject);
Robert Carrb0f39362018-03-14 13:52:25 -0700131 sp<SurfaceControl> surface;
132 status_t err = client->createSurfaceChecked(
133 String8(name.c_str()), w, h, format, &surface, flags, parent, windowType, ownerUid);
134 if (err == NAME_NOT_FOUND) {
135 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
136 return 0;
137 } else if (err != NO_ERROR) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800138 jniThrowException(env, OutOfResourcesException, NULL);
139 return 0;
140 }
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500141
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800142 surface->incStrong((void *)nativeCreate);
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000143 return reinterpret_cast<jlong>(surface.get());
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800144}
145
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000146static void nativeRelease(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800147 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800148 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800149}
150
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000151static void nativeDestroy(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800152 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
153 ctrl->clear();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800154 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800155}
156
Chong Zhang47e36a32016-02-29 16:44:33 -0800157static void nativeDisconnect(JNIEnv* env, jclass clazz, jlong nativeObject) {
158 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
159 if (ctrl != NULL) {
160 ctrl->disconnect();
161 }
162}
163
Robert Carr6486d312017-01-09 19:48:29 -0800164static Rect rectFromObj(JNIEnv* env, jobject rectObj) {
165 int left = env->GetIntField(rectObj, gRectClassInfo.left);
166 int top = env->GetIntField(rectObj, gRectClassInfo.top);
167 int right = env->GetIntField(rectObj, gRectClassInfo.right);
168 int bottom = env->GetIntField(rectObj, gRectClassInfo.bottom);
169 return Rect(left, top, right, bottom);
170}
171
chaviw08520a02018-09-10 16:44:56 -0700172static jobject nativeScreenshot(JNIEnv* env, jclass clazz,
Robert Carr6486d312017-01-09 19:48:29 -0800173 jobject displayTokenObj, jobject sourceCropObj, jint width, jint height,
chaviw08520a02018-09-10 16:44:56 -0700174 bool useIdentityTransform, int rotation) {
Robert Carr6486d312017-01-09 19:48:29 -0800175 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
176 if (displayToken == NULL) {
177 return NULL;
178 }
179 Rect sourceCrop = rectFromObj(env, sourceCropObj);
Robert Carr6486d312017-01-09 19:48:29 -0800180 sp<GraphicBuffer> buffer;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700181 status_t res = ScreenshotClient::capture(displayToken, ui::Dataspace::V0_SRGB,
182 ui::PixelFormat::RGBA_8888,
183 sourceCrop, width, height,
184 useIdentityTransform, rotation, &buffer);
Robert Carr6486d312017-01-09 19:48:29 -0800185 if (res != NO_ERROR) {
186 return NULL;
187 }
188
189 return env->CallStaticObjectMethod(gGraphicBufferClassInfo.clazz,
190 gGraphicBufferClassInfo.builder,
191 buffer->getWidth(),
192 buffer->getHeight(),
193 buffer->getPixelFormat(),
Mathias Agopian113fd302017-05-25 18:31:04 -0700194 (jint)buffer->getUsage(),
Patrik Torstensson511a8082017-03-27 15:04:11 +0100195 (jlong)buffer.get());
Robert Carr6486d312017-01-09 19:48:29 -0800196}
197
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000198static jobject nativeCaptureLayers(JNIEnv* env, jclass clazz, jobject layerHandleToken,
chaviwfbe47df2017-11-10 16:14:49 -0800199 jobject sourceCropObj, jfloat frameScale) {
200
201 sp<IBinder> layerHandle = ibinderForJavaObject(env, layerHandleToken);
202 if (layerHandle == NULL) {
203 return NULL;
204 }
205
206 Rect sourceCrop;
207 if (sourceCropObj != NULL) {
208 sourceCrop = rectFromObj(env, sourceCropObj);
209 }
210
211 sp<GraphicBuffer> buffer;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700212 status_t res = ScreenshotClient::captureChildLayers(layerHandle, ui::Dataspace::V0_SRGB,
213 ui::PixelFormat::RGBA_8888, sourceCrop,
214 frameScale, &buffer);
chaviwfbe47df2017-11-10 16:14:49 -0800215 if (res != NO_ERROR) {
216 return NULL;
217 }
218
219 return env->CallStaticObjectMethod(gGraphicBufferClassInfo.clazz,
220 gGraphicBufferClassInfo.builder,
221 buffer->getWidth(),
222 buffer->getHeight(),
223 buffer->getPixelFormat(),
224 (jint)buffer->getUsage(),
225 (jlong)buffer.get());
chaviw1cda84c2017-10-23 16:47:10 -0700226}
227
Robert Carre13b58e2017-08-31 14:50:44 -0700228static void nativeApplyTransaction(JNIEnv* env, jclass clazz, jlong transactionObj, jboolean sync) {
229 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
230 transaction->apply(sync);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800231}
232
Robert Carrb1579c82017-09-05 14:54:47 -0700233static void nativeMergeTransaction(JNIEnv* env, jclass clazz,
234 jlong transactionObj, jlong otherTransactionObj) {
235 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
236 auto otherTransaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(
237 otherTransactionObj);
238 transaction->merge(std::move(*otherTransaction));
239}
240
Robert Carre13b58e2017-08-31 14:50:44 -0700241static void nativeSetAnimationTransaction(JNIEnv* env, jclass clazz, jlong transactionObj) {
242 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
243 transaction->setAnimationTransaction();
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800244}
245
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100246static void nativeSetEarlyWakeup(JNIEnv* env, jclass clazz, jlong transactionObj) {
247 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
248 transaction->setEarlyWakeup();
249}
250
Robert Carre13b58e2017-08-31 14:50:44 -0700251static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
252 jlong nativeObject, jint zorder) {
253 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800254
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800255 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700256 transaction->setLayer(ctrl, zorder);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800257}
258
Robert Carre13b58e2017-08-31 14:50:44 -0700259static void nativeSetRelativeLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
260 jlong nativeObject,
Robert Carraf422a82017-04-10 18:34:33 -0700261 jobject relativeTo, jint zorder) {
Robert Carre13b58e2017-08-31 14:50:44 -0700262
Robert Carraf422a82017-04-10 18:34:33 -0700263 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
264 sp<IBinder> handle = ibinderForJavaObject(env, relativeTo);
265
Robert Carre13b58e2017-08-31 14:50:44 -0700266 {
267 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
268 transaction->setRelativeLayer(ctrl, handle, zorder);
269 }
Robert Carraf422a82017-04-10 18:34:33 -0700270}
271
Robert Carre13b58e2017-08-31 14:50:44 -0700272static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong transactionObj,
273 jlong nativeObject, jfloat x, jfloat y) {
274 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
275
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800276 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700277 transaction->setPosition(ctrl, x, y);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800278}
279
Robert Carr6da3cc02016-06-16 15:17:07 -0700280static void nativeSetGeometryAppliesWithResize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700281jlong transactionObj,
Robert Carra9408d42016-06-03 13:28:48 -0700282 jlong nativeObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700283 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
284
Robert Carra9408d42016-06-03 13:28:48 -0700285 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700286 transaction->setGeometryAppliesWithResize(ctrl);
Robert Carra9408d42016-06-03 13:28:48 -0700287}
288
Robert Carre13b58e2017-08-31 14:50:44 -0700289static void nativeSetSize(JNIEnv* env, jclass clazz, jlong transactionObj,
290 jlong nativeObject, jint w, jint h) {
291 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
292
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800293 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700294 transaction->setSize(ctrl, w, h);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800295}
296
Robert Carre13b58e2017-08-31 14:50:44 -0700297static void nativeSetFlags(JNIEnv* env, jclass clazz, jlong transactionObj,
298 jlong nativeObject, jint flags, jint mask) {
299 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
300
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800301 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700302 transaction->setFlags(ctrl, flags, mask);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800303}
304
Robert Carre13b58e2017-08-31 14:50:44 -0700305static void nativeSetTransparentRegionHint(JNIEnv* env, jclass clazz, jlong transactionObj,
306 jlong nativeObject, jobject regionObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800307 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
308 SkRegion* region = android_graphics_Region_getSkRegion(env, regionObj);
309 if (!region) {
310 doThrowIAE(env);
311 return;
312 }
313
314 const SkIRect& b(region->getBounds());
315 Region reg(Rect(b.fLeft, b.fTop, b.fRight, b.fBottom));
316 if (region->isComplex()) {
317 SkRegion::Iterator it(*region);
318 while (!it.done()) {
319 const SkIRect& r(it.rect());
320 reg.addRectUnchecked(r.fLeft, r.fTop, r.fRight, r.fBottom);
321 it.next();
322 }
323 }
324
Robert Carre13b58e2017-08-31 14:50:44 -0700325 {
326 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
327 transaction->setTransparentRegionHint(ctrl, reg);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800328 }
329}
330
Robert Carre13b58e2017-08-31 14:50:44 -0700331static void nativeSetAlpha(JNIEnv* env, jclass clazz, jlong transactionObj,
332 jlong nativeObject, jfloat alpha) {
333 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
334
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800335 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700336 transaction->setAlpha(ctrl, alpha);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800337}
338
Robert Carr788f5742018-07-30 17:46:45 -0700339static void nativeSetInputWindowInfo(JNIEnv* env, jclass clazz, jlong transactionObj,
340 jlong nativeObject, jobject inputWindow) {
341 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
342
343 sp<NativeInputWindowHandle> handle = android_server_InputWindowHandle_getHandle(
344 env, inputWindow);
345 handle->updateInfo();
346
347 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
348 transaction->setInputWindowInfo(ctrl, *handle->getInfo());
349}
350
chaviw59f532e2018-12-26 15:34:59 -0800351static void nativeTransferTouchFocus(JNIEnv* env, jclass clazz, jlong transactionObj,
352 jobject fromTokenObj, jobject toTokenObj) {
353 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
354
355 sp<IBinder> fromToken(ibinderForJavaObject(env, fromTokenObj));
356 sp<IBinder> toToken(ibinderForJavaObject(env, toTokenObj));
357 transaction->transferTouchFocus(fromToken, toToken);
358}
359
Robert Carre13b58e2017-08-31 14:50:44 -0700360static void nativeSetColor(JNIEnv* env, jclass clazz, jlong transactionObj,
361 jlong nativeObject, jfloatArray fColor) {
362 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
chaviw0dd03f52017-08-25 12:15:26 -0700363 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700364
chaviw0dd03f52017-08-25 12:15:26 -0700365 float* floatColors = env->GetFloatArrayElements(fColor, 0);
366 half3 color(floatColors[0], floatColors[1], floatColors[2]);
Robert Carre13b58e2017-08-31 14:50:44 -0700367 transaction->setColor(ctrl, color);
chaviw0dd03f52017-08-25 12:15:26 -0700368}
369
Robert Carre13b58e2017-08-31 14:50:44 -0700370static void nativeSetMatrix(JNIEnv* env, jclass clazz, jlong transactionObj,
371 jlong nativeObject,
Robert Carr0edf18f2017-02-21 20:01:47 -0800372 jfloat dsdx, jfloat dtdx, jfloat dtdy, jfloat dsdy) {
Robert Carre13b58e2017-08-31 14:50:44 -0700373 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
374
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800375 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700376 transaction->setMatrix(ctrl, dsdx, dtdx, dtdy, dsdy);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800377}
378
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700379static void nativeSetColorTransform(JNIEnv* env, jclass clazz, jlong transactionObj,
380 jlong nativeObject, jfloatArray fMatrix, jfloatArray fTranslation) {
381 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
382 SurfaceControl* const surfaceControl = reinterpret_cast<SurfaceControl*>(nativeObject);
383 float* floatMatrix = env->GetFloatArrayElements(fMatrix, 0);
384 mat3 matrix(static_cast<float const*>(floatMatrix));
385 float* floatTranslation = env->GetFloatArrayElements(fTranslation, 0);
386 vec3 translation(floatTranslation[0], floatTranslation[1], floatTranslation[2]);
387 transaction->setColorTransform(surfaceControl, matrix, translation);
388}
389
Robert Carre13b58e2017-08-31 14:50:44 -0700390static void nativeSetWindowCrop(JNIEnv* env, jclass clazz, jlong transactionObj,
391 jlong nativeObject,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800392 jint l, jint t, jint r, jint b) {
Robert Carre13b58e2017-08-31 14:50:44 -0700393 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
394
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800395 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
396 Rect crop(l, t, r, b);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700397 transaction->setCrop_legacy(ctrl, crop);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800398}
399
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700400static void nativeSetCornerRadius(JNIEnv* env, jclass clazz, jlong transactionObj,
401 jlong nativeObject, jfloat cornerRadius) {
402 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
403
404 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
405 transaction->setCornerRadius(ctrl, cornerRadius);
406}
407
Robert Carre13b58e2017-08-31 14:50:44 -0700408static void nativeSetLayerStack(JNIEnv* env, jclass clazz, jlong transactionObj,
409 jlong nativeObject, jint layerStack) {
410 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
411
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800412 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700413 transaction->setLayerStack(ctrl, layerStack);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800414}
415
416static jobject nativeGetBuiltInDisplay(JNIEnv* env, jclass clazz, jint id) {
417 sp<IBinder> token(SurfaceComposerClient::getBuiltInDisplay(id));
418 return javaObjectForIBinder(env, token);
419}
420
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700421static jobject nativeGetDisplayedContentSamplingAttributes(JNIEnv* env, jclass clazz,
422 jobject tokenObj) {
423 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
424
425 ui::PixelFormat format;
426 ui::Dataspace dataspace;
427 uint8_t componentMask;
428 status_t err = SurfaceComposerClient::getDisplayedContentSamplingAttributes(
429 token, &format, &dataspace, &componentMask);
430 if (err != OK) {
431 return nullptr;
432 }
433 return env->NewObject(gDisplayedContentSamplingAttributesClassInfo.clazz,
434 gDisplayedContentSamplingAttributesClassInfo.ctor,
435 format, dataspace, componentMask);
436}
437
438static jboolean nativeSetDisplayedContentSamplingEnabled(JNIEnv* env, jclass clazz,
439 jobject tokenObj, jboolean enable, jint componentMask, jint maxFrames) {
440 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Kevin DuBois205a6802019-01-07 17:04:46 -0800441 status_t rc = SurfaceComposerClient::setDisplayContentSamplingEnabled(
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700442 token, enable, componentMask, maxFrames);
Kevin DuBois205a6802019-01-07 17:04:46 -0800443 return rc == OK;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700444}
445
446static jobject nativeGetDisplayedContentSample(JNIEnv* env, jclass clazz, jobject tokenObj,
447 jlong maxFrames, jlong timestamp) {
448 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
449
450 DisplayedFrameStats stats;
451 status_t err = SurfaceComposerClient::getDisplayedContentSample(
452 token, maxFrames, timestamp, &stats);
453 if (err != OK) {
454 return nullptr;
455 }
456
457 jlongArray histogramComponent0 = env->NewLongArray(stats.component_0_sample.size());
458 jlongArray histogramComponent1 = env->NewLongArray(stats.component_1_sample.size());
459 jlongArray histogramComponent2 = env->NewLongArray(stats.component_2_sample.size());
460 jlongArray histogramComponent3 = env->NewLongArray(stats.component_3_sample.size());
461 if ((histogramComponent0 == nullptr) ||
462 (histogramComponent1 == nullptr) ||
463 (histogramComponent2 == nullptr) ||
464 (histogramComponent3 == nullptr)) {
465 return JNI_FALSE;
466 }
467
468 env->SetLongArrayRegion(histogramComponent0, 0,
469 stats.component_0_sample.size(),
470 reinterpret_cast<jlong*>(stats.component_0_sample.data()));
471 env->SetLongArrayRegion(histogramComponent1, 0,
472 stats.component_1_sample.size(),
473 reinterpret_cast<jlong*>(stats.component_1_sample.data()));
474 env->SetLongArrayRegion(histogramComponent2, 0,
475 stats.component_2_sample.size(),
476 reinterpret_cast<jlong*>(stats.component_2_sample.data()));
477 env->SetLongArrayRegion(histogramComponent3, 0,
478 stats.component_3_sample.size(),
479 reinterpret_cast<jlong*>(stats.component_3_sample.data()));
480 return env->NewObject(gDisplayedContentSampleClassInfo.clazz,
481 gDisplayedContentSampleClassInfo.ctor,
482 stats.numFrames,
483 histogramComponent0,
484 histogramComponent1,
485 histogramComponent2,
486 histogramComponent3);
487}
488
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800489static jobject nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj,
490 jboolean secure) {
491 ScopedUtfChars name(env, nameObj);
492 sp<IBinder> token(SurfaceComposerClient::createDisplay(
493 String8(name.c_str()), bool(secure)));
494 return javaObjectForIBinder(env, token);
495}
496
Jesse Hall6a6bc212013-08-08 12:15:03 -0700497static void nativeDestroyDisplay(JNIEnv* env, jclass clazz, jobject tokenObj) {
498 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
499 if (token == NULL) return;
500 SurfaceComposerClient::destroyDisplay(token);
501}
502
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800503static void nativeSetDisplaySurface(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700504 jlong transactionObj,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000505 jobject tokenObj, jlong nativeSurfaceObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800506 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
507 if (token == NULL) return;
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800508 sp<IGraphicBufferProducer> bufferProducer;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800509 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800510 if (sur != NULL) {
511 bufferProducer = sur->getIGraphicBufferProducer();
512 }
Robert Carre13b58e2017-08-31 14:50:44 -0700513
514
515 status_t err = NO_ERROR;
516 {
517 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
518 err = transaction->setDisplaySurface(token,
519 bufferProducer);
520 }
Pablo Ceballosaff2f942016-07-29 14:49:55 -0700521 if (err != NO_ERROR) {
522 doThrowIAE(env, "Illegal Surface, could not enable async mode. Was this"
523 " Surface created with singleBufferMode?");
524 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800525}
526
527static void nativeSetDisplayLayerStack(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700528 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800529 jobject tokenObj, jint layerStack) {
Robert Carre13b58e2017-08-31 14:50:44 -0700530
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800531 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
532 if (token == NULL) return;
533
Robert Carre13b58e2017-08-31 14:50:44 -0700534 {
535 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
536 transaction->setDisplayLayerStack(token, layerStack);
537 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800538}
539
540static void nativeSetDisplayProjection(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700541 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800542 jobject tokenObj, jint orientation,
543 jint layerStackRect_left, jint layerStackRect_top, jint layerStackRect_right, jint layerStackRect_bottom,
544 jint displayRect_left, jint displayRect_top, jint displayRect_right, jint displayRect_bottom) {
545 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
546 if (token == NULL) return;
547 Rect layerStackRect(layerStackRect_left, layerStackRect_top, layerStackRect_right, layerStackRect_bottom);
548 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
Robert Carre13b58e2017-08-31 14:50:44 -0700549
550 {
551 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
552 transaction->setDisplayProjection(token, orientation, layerStackRect, displayRect);
553 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800554}
555
Michael Wright01e840f2014-06-26 16:03:25 -0700556static void nativeSetDisplaySize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700557 jlong transactionObj,
Michael Wright01e840f2014-06-26 16:03:25 -0700558 jobject tokenObj, jint width, jint height) {
559 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
560 if (token == NULL) return;
Robert Carre13b58e2017-08-31 14:50:44 -0700561
562 {
563 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
564 transaction->setDisplaySize(token, width, height);
565 }
Michael Wright01e840f2014-06-26 16:03:25 -0700566}
567
Dan Stoza00101052014-05-02 15:23:40 -0700568static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz,
569 jobject tokenObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800570 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Dan Stoza00101052014-05-02 15:23:40 -0700571 if (token == NULL) return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800572
Dan Stoza00101052014-05-02 15:23:40 -0700573 Vector<DisplayInfo> configs;
574 if (SurfaceComposerClient::getDisplayConfigs(token, &configs) != NO_ERROR ||
575 configs.size() == 0) {
576 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800577 }
578
Dan Stoza00101052014-05-02 15:23:40 -0700579 jobjectArray configArray = env->NewObjectArray(configs.size(),
580 gPhysicalDisplayInfoClassInfo.clazz, NULL);
581
582 for (size_t c = 0; c < configs.size(); ++c) {
583 const DisplayInfo& info = configs[c];
584 jobject infoObj = env->NewObject(gPhysicalDisplayInfoClassInfo.clazz,
585 gPhysicalDisplayInfoClassInfo.ctor);
586 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.width, info.w);
587 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.height, info.h);
588 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
589 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.density, info.density);
590 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.xDpi, info.xdpi);
591 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.yDpi, info.ydpi);
592 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
Andy McFaddene8b1aeb2014-06-13 14:05:40 -0700593 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos,
594 info.appVsyncOffset);
595 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos,
596 info.presentationDeadline);
Dan Stoza00101052014-05-02 15:23:40 -0700597 env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj);
598 env->DeleteLocalRef(infoObj);
599 }
600
601 return configArray;
602}
603
604static jint nativeGetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj) {
605 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
606 if (token == NULL) return -1;
607 return static_cast<jint>(SurfaceComposerClient::getActiveConfig(token));
608}
609
610static jboolean nativeSetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj, jint id) {
611 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
612 if (token == NULL) return JNI_FALSE;
613 status_t err = SurfaceComposerClient::setActiveConfig(token, static_cast<int>(id));
614 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800615}
616
Michael Wright1c9977b2016-07-12 13:30:10 -0700617static jintArray nativeGetDisplayColorModes(JNIEnv* env, jclass, jobject tokenObj) {
618 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
619 if (token == NULL) return NULL;
Peiyong Linb88549e2018-03-28 12:03:45 -0700620 Vector<ui::ColorMode> colorModes;
Michael Wright1c9977b2016-07-12 13:30:10 -0700621 if (SurfaceComposerClient::getDisplayColorModes(token, &colorModes) != NO_ERROR ||
622 colorModes.isEmpty()) {
623 return NULL;
624 }
625
626 jintArray colorModesArray = env->NewIntArray(colorModes.size());
627 if (colorModesArray == NULL) {
628 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
629 return NULL;
630 }
631 jint* colorModesArrayValues = env->GetIntArrayElements(colorModesArray, 0);
632 for (size_t i = 0; i < colorModes.size(); i++) {
633 colorModesArrayValues[i] = static_cast<jint>(colorModes[i]);
634 }
635 env->ReleaseIntArrayElements(colorModesArray, colorModesArrayValues, 0);
636 return colorModesArray;
637}
638
639static jint nativeGetActiveColorMode(JNIEnv* env, jclass, jobject tokenObj) {
640 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
641 if (token == NULL) return -1;
642 return static_cast<jint>(SurfaceComposerClient::getActiveColorMode(token));
643}
644
645static jboolean nativeSetActiveColorMode(JNIEnv* env, jclass,
646 jobject tokenObj, jint colorMode) {
647 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
648 if (token == NULL) return JNI_FALSE;
649 status_t err = SurfaceComposerClient::setActiveColorMode(token,
Peiyong Linb88549e2018-03-28 12:03:45 -0700650 static_cast<ui::ColorMode>(colorMode));
Michael Wright1c9977b2016-07-12 13:30:10 -0700651 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
652}
653
Prashant Malanic55929a2014-05-25 01:59:21 -0700654static void nativeSetDisplayPowerMode(JNIEnv* env, jclass clazz, jobject tokenObj, jint mode) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800655 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
656 if (token == NULL) return;
657
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700658 android::base::Timer t;
Prashant Malanic55929a2014-05-25 01:59:21 -0700659 SurfaceComposerClient::setDisplayPowerMode(token, mode);
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700660 if (t.duration() > 100ms) ALOGD("Excessive delay in setPowerMode()");
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800661}
662
Peiyong Lin0ddb7d42019-01-16 13:25:09 -0800663static jboolean nativeGetProtectedContentSupport(JNIEnv* env, jclass) {
664 return static_cast<jboolean>(SurfaceComposerClient::getProtectedContentSupport());
665}
666
Svetoslav1376d602014-03-13 11:17:26 -0700667static jboolean nativeClearContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject) {
668 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
669 status_t err = ctrl->clearLayerFrameStats();
670
671 if (err < 0 && err != NO_INIT) {
672 doThrowIAE(env);
673 }
674
675 // The other end is not ready, just report we failed.
676 if (err == NO_INIT) {
677 return JNI_FALSE;
678 }
679
680 return JNI_TRUE;
681}
682
683static jboolean nativeGetContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject,
684 jobject outStats) {
685 FrameStats stats;
686
687 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
688 status_t err = ctrl->getLayerFrameStats(&stats);
689 if (err < 0 && err != NO_INIT) {
690 doThrowIAE(env);
691 }
692
693 // The other end is not ready, fine just return empty stats.
694 if (err == NO_INIT) {
695 return JNI_FALSE;
696 }
697
698 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
699 size_t frameCount = stats.desiredPresentTimesNano.size();
700
701 jlongArray postedTimesNanoDst = env->NewLongArray(frameCount);
702 if (postedTimesNanoDst == NULL) {
703 return JNI_FALSE;
704 }
705
706 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
707 if (presentedTimesNanoDst == NULL) {
708 return JNI_FALSE;
709 }
710
711 jlongArray readyTimesNanoDst = env->NewLongArray(frameCount);
712 if (readyTimesNanoDst == NULL) {
713 return JNI_FALSE;
714 }
715
716 nsecs_t postedTimesNanoSrc[frameCount];
717 nsecs_t presentedTimesNanoSrc[frameCount];
718 nsecs_t readyTimesNanoSrc[frameCount];
719
720 for (size_t i = 0; i < frameCount; i++) {
721 nsecs_t postedTimeNano = stats.desiredPresentTimesNano[i];
722 if (postedTimeNano == INT64_MAX) {
723 postedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
724 }
725 postedTimesNanoSrc[i] = postedTimeNano;
726
727 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
728 if (presentedTimeNano == INT64_MAX) {
729 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
730 }
731 presentedTimesNanoSrc[i] = presentedTimeNano;
732
733 nsecs_t readyTimeNano = stats.frameReadyTimesNano[i];
734 if (readyTimeNano == INT64_MAX) {
735 readyTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
736 }
737 readyTimesNanoSrc[i] = readyTimeNano;
738 }
739
740 env->SetLongArrayRegion(postedTimesNanoDst, 0, frameCount, postedTimesNanoSrc);
741 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
742 env->SetLongArrayRegion(readyTimesNanoDst, 0, frameCount, readyTimesNanoSrc);
743
744 env->CallVoidMethod(outStats, gWindowContentFrameStatsClassInfo.init, refreshPeriodNano,
745 postedTimesNanoDst, presentedTimesNanoDst, readyTimesNanoDst);
746
747 if (env->ExceptionCheck()) {
748 return JNI_FALSE;
749 }
750
751 return JNI_TRUE;
752}
753
754static jboolean nativeClearAnimationFrameStats(JNIEnv* env, jclass clazz) {
755 status_t err = SurfaceComposerClient::clearAnimationFrameStats();
756
757 if (err < 0 && err != NO_INIT) {
758 doThrowIAE(env);
759 }
760
761 // The other end is not ready, just report we failed.
762 if (err == NO_INIT) {
763 return JNI_FALSE;
764 }
765
766 return JNI_TRUE;
767}
768
769static jboolean nativeGetAnimationFrameStats(JNIEnv* env, jclass clazz, jobject outStats) {
770 FrameStats stats;
771
772 status_t err = SurfaceComposerClient::getAnimationFrameStats(&stats);
773 if (err < 0 && err != NO_INIT) {
774 doThrowIAE(env);
775 }
776
777 // The other end is not ready, fine just return empty stats.
778 if (err == NO_INIT) {
779 return JNI_FALSE;
780 }
781
782 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
783 size_t frameCount = stats.desiredPresentTimesNano.size();
784
785 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
786 if (presentedTimesNanoDst == NULL) {
787 return JNI_FALSE;
788 }
789
790 nsecs_t presentedTimesNanoSrc[frameCount];
791
792 for (size_t i = 0; i < frameCount; i++) {
Allen Hairac5eda32014-04-24 11:50:37 -0700793 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
Svetoslav1376d602014-03-13 11:17:26 -0700794 if (presentedTimeNano == INT64_MAX) {
795 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
796 }
797 presentedTimesNanoSrc[i] = presentedTimeNano;
798 }
799
800 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
801
802 env->CallVoidMethod(outStats, gWindowAnimationFrameStatsClassInfo.init, refreshPeriodNano,
803 presentedTimesNanoDst);
804
805 if (env->ExceptionCheck()) {
806 return JNI_FALSE;
807 }
808
809 return JNI_TRUE;
810}
811
Robert Carre13b58e2017-08-31 14:50:44 -0700812static void nativeDeferTransactionUntil(JNIEnv* env, jclass clazz, jlong transactionObj,
813 jlong nativeObject,
Rob Carr64e516f2015-10-29 00:20:45 +0000814 jobject handleObject, jlong frameNumber) {
815 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
816 sp<IBinder> handle = ibinderForJavaObject(env, handleObject);
817
Robert Carre13b58e2017-08-31 14:50:44 -0700818 {
819 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700820 transaction->deferTransactionUntil_legacy(ctrl, handle, frameNumber);
Robert Carre13b58e2017-08-31 14:50:44 -0700821 }
Rob Carr64e516f2015-10-29 00:20:45 +0000822}
823
Robert Carre13b58e2017-08-31 14:50:44 -0700824static void nativeDeferTransactionUntilSurface(JNIEnv* env, jclass clazz, jlong transactionObj,
825 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -0800826 jlong surfaceObject, jlong frameNumber) {
Robert Carre13b58e2017-08-31 14:50:44 -0700827 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
828
Robert Carrd5c7dd62017-03-08 10:39:30 -0800829 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
830 sp<Surface> barrier = reinterpret_cast<Surface *>(surfaceObject);
831
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700832 transaction->deferTransactionUntil_legacy(ctrl, barrier, frameNumber);
Robert Carrd5c7dd62017-03-08 10:39:30 -0800833}
834
Robert Carre13b58e2017-08-31 14:50:44 -0700835static void nativeReparentChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
836 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -0800837 jobject newParentObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700838
Robert Carrd5c7dd62017-03-08 10:39:30 -0800839 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
840 sp<IBinder> handle = ibinderForJavaObject(env, newParentObject);
841
Robert Carre13b58e2017-08-31 14:50:44 -0700842 {
843 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
844 transaction->reparentChildren(ctrl, handle);
845 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800846}
847
Robert Carre13b58e2017-08-31 14:50:44 -0700848static void nativeReparent(JNIEnv* env, jclass clazz, jlong transactionObj,
849 jlong nativeObject,
chaviw76431402017-09-18 16:50:05 -0700850 jobject newParentObject) {
chaviw63542382017-08-17 17:39:29 -0700851 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
852 sp<IBinder> parentHandle = ibinderForJavaObject(env, newParentObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700853
854 {
855 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
856 transaction->reparent(ctrl, parentHandle);
857 }
chaviw63542382017-08-17 17:39:29 -0700858}
859
Robert Carre13b58e2017-08-31 14:50:44 -0700860static void nativeSeverChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
861 jlong nativeObject) {
862 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
863
Robert Carrd5c7dd62017-03-08 10:39:30 -0800864 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700865 transaction->detachChildren(ctrl);
Robert Carrd5c7dd62017-03-08 10:39:30 -0800866}
867
Robert Carre13b58e2017-08-31 14:50:44 -0700868static void nativeSetOverrideScalingMode(JNIEnv* env, jclass clazz, jlong transactionObj,
869 jlong nativeObject,
Robert Carr1ca6a332016-04-11 18:00:43 -0700870 jint scalingMode) {
Robert Carre13b58e2017-08-31 14:50:44 -0700871 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr1ca6a332016-04-11 18:00:43 -0700872
Robert Carre13b58e2017-08-31 14:50:44 -0700873 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
874 transaction->setOverrideScalingMode(ctrl, scalingMode);
Robert Carr1ca6a332016-04-11 18:00:43 -0700875}
876
Rob Carr64e516f2015-10-29 00:20:45 +0000877static jobject nativeGetHandle(JNIEnv* env, jclass clazz, jlong nativeObject) {
878 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Rob Carr64e516f2015-10-29 00:20:45 +0000879 return javaObjectForIBinder(env, ctrl->getHandle());
880}
881
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700882static jobject nativeGetHdrCapabilities(JNIEnv* env, jclass clazz, jobject tokenObject) {
883 sp<IBinder> token(ibinderForJavaObject(env, tokenObject));
884 if (token == NULL) return NULL;
885
886 HdrCapabilities capabilities;
887 SurfaceComposerClient::getHdrCapabilities(token, &capabilities);
888
889 const auto& types = capabilities.getSupportedHdrTypes();
Peiyong Lin3a0c6e12018-04-16 11:05:29 -0700890 std::vector<int32_t> intTypes;
891 for (auto type : types) {
892 intTypes.push_back(static_cast<int32_t>(type));
893 }
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700894 auto typesArray = env->NewIntArray(types.size());
Peiyong Lin3a0c6e12018-04-16 11:05:29 -0700895 env->SetIntArrayRegion(typesArray, 0, intTypes.size(), intTypes.data());
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700896
Michael Wright9ff94c02016-03-30 18:05:40 -0700897 return env->NewObject(gHdrCapabilitiesClassInfo.clazz, gHdrCapabilitiesClassInfo.ctor,
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700898 typesArray, capabilities.getDesiredMaxLuminance(),
899 capabilities.getDesiredMaxAverageLuminance(), capabilities.getDesiredMinLuminance());
900}
901
Jorim Jaggi06975df2017-12-01 14:52:13 +0100902static jlong nativeReadFromParcel(JNIEnv* env, jclass clazz, jobject parcelObj) {
903 Parcel* parcel = parcelForJavaObject(env, parcelObj);
904 if (parcel == NULL) {
905 doThrowNPE(env);
906 return 0;
907 }
908 sp<SurfaceControl> surface = SurfaceControl::readFromParcel(parcel);
909 if (surface == nullptr) {
910 return 0;
911 }
912 surface->incStrong((void *)nativeCreate);
913 return reinterpret_cast<jlong>(surface.get());
914}
915
chaviwbeb7a0c2018-12-05 13:49:54 -0800916static jlong nativeCopyFromSurfaceControl(JNIEnv* env, jclass clazz, jlong surfaceControlNativeObj) {
917 sp<SurfaceControl> surface(reinterpret_cast<SurfaceControl *>(surfaceControlNativeObj));
918 if (surface == nullptr) {
919 return 0;
920 }
Robert Carr5fea55b2018-12-10 13:05:52 -0800921
922 sp<SurfaceControl> newSurface = new SurfaceControl(surface);
923 newSurface->incStrong((void *)nativeCreate);
924 return reinterpret_cast<jlong>(newSurface.get());
chaviwbeb7a0c2018-12-05 13:49:54 -0800925}
926
Jorim Jaggi06975df2017-12-01 14:52:13 +0100927static void nativeWriteToParcel(JNIEnv* env, jclass clazz,
928 jlong nativeObject, jobject parcelObj) {
929 Parcel* parcel = parcelForJavaObject(env, parcelObj);
930 if (parcel == NULL) {
931 doThrowNPE(env);
932 return;
933 }
934 SurfaceControl* const self = reinterpret_cast<SurfaceControl *>(nativeObject);
chaviwbeb7a0c2018-12-05 13:49:54 -0800935 if (self != nullptr) {
936 self->writeToParcel(parcel);
937 }
Jorim Jaggi06975df2017-12-01 14:52:13 +0100938}
939
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800940// ----------------------------------------------------------------------------
941
Daniel Micay76f6a862015-09-19 17:31:01 -0400942static const JNINativeMethod sSurfaceControlMethods[] = {
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500943 {"nativeCreate", "(Landroid/view/SurfaceSession;Ljava/lang/String;IIIIJII)J",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800944 (void*)nativeCreate },
Jorim Jaggi06975df2017-12-01 14:52:13 +0100945 {"nativeReadFromParcel", "(Landroid/os/Parcel;)J",
946 (void*)nativeReadFromParcel },
chaviwbeb7a0c2018-12-05 13:49:54 -0800947 {"nativeCopyFromSurfaceControl", "(J)J" ,
948 (void*)nativeCopyFromSurfaceControl },
Jorim Jaggi06975df2017-12-01 14:52:13 +0100949 {"nativeWriteToParcel", "(JLandroid/os/Parcel;)V",
950 (void*)nativeWriteToParcel },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000951 {"nativeRelease", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800952 (void*)nativeRelease },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000953 {"nativeDestroy", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800954 (void*)nativeDestroy },
Chong Zhang47e36a32016-02-29 16:44:33 -0800955 {"nativeDisconnect", "(J)V",
956 (void*)nativeDisconnect },
Robert Carre13b58e2017-08-31 14:50:44 -0700957 {"nativeCreateTransaction", "()J",
958 (void*)nativeCreateTransaction },
959 {"nativeApplyTransaction", "(JZ)V",
960 (void*)nativeApplyTransaction },
961 {"nativeGetNativeTransactionFinalizer", "()J",
962 (void*)nativeGetNativeTransactionFinalizer },
Robert Carrb1579c82017-09-05 14:54:47 -0700963 {"nativeMergeTransaction", "(JJ)V",
964 (void*)nativeMergeTransaction },
Robert Carre13b58e2017-08-31 14:50:44 -0700965 {"nativeSetAnimationTransaction", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800966 (void*)nativeSetAnimationTransaction },
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100967 {"nativeSetEarlyWakeup", "(J)V",
968 (void*)nativeSetEarlyWakeup },
Robert Carre13b58e2017-08-31 14:50:44 -0700969 {"nativeSetLayer", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800970 (void*)nativeSetLayer },
Robert Carre13b58e2017-08-31 14:50:44 -0700971 {"nativeSetRelativeLayer", "(JJLandroid/os/IBinder;I)V",
Robert Carraf422a82017-04-10 18:34:33 -0700972 (void*)nativeSetRelativeLayer },
Robert Carre13b58e2017-08-31 14:50:44 -0700973 {"nativeSetPosition", "(JJFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800974 (void*)nativeSetPosition },
Robert Carre13b58e2017-08-31 14:50:44 -0700975 {"nativeSetGeometryAppliesWithResize", "(JJ)V",
Robert Carr6da3cc02016-06-16 15:17:07 -0700976 (void*)nativeSetGeometryAppliesWithResize },
Robert Carre13b58e2017-08-31 14:50:44 -0700977 {"nativeSetSize", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800978 (void*)nativeSetSize },
Robert Carre13b58e2017-08-31 14:50:44 -0700979 {"nativeSetTransparentRegionHint", "(JJLandroid/graphics/Region;)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800980 (void*)nativeSetTransparentRegionHint },
Robert Carre13b58e2017-08-31 14:50:44 -0700981 {"nativeSetAlpha", "(JJF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800982 (void*)nativeSetAlpha },
Robert Carre13b58e2017-08-31 14:50:44 -0700983 {"nativeSetColor", "(JJ[F)V",
chaviw0dd03f52017-08-25 12:15:26 -0700984 (void*)nativeSetColor },
Robert Carre13b58e2017-08-31 14:50:44 -0700985 {"nativeSetMatrix", "(JJFFFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800986 (void*)nativeSetMatrix },
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700987 {"nativeSetColorTransform", "(JJ[F[F)V",
988 (void*)nativeSetColorTransform },
Robert Carre13b58e2017-08-31 14:50:44 -0700989 {"nativeSetFlags", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800990 (void*)nativeSetFlags },
Robert Carre13b58e2017-08-31 14:50:44 -0700991 {"nativeSetWindowCrop", "(JJIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800992 (void*)nativeSetWindowCrop },
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700993 {"nativeSetCornerRadius", "(JJF)V",
994 (void*)nativeSetCornerRadius },
Robert Carre13b58e2017-08-31 14:50:44 -0700995 {"nativeSetLayerStack", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800996 (void*)nativeSetLayerStack },
997 {"nativeGetBuiltInDisplay", "(I)Landroid/os/IBinder;",
998 (void*)nativeGetBuiltInDisplay },
999 {"nativeCreateDisplay", "(Ljava/lang/String;Z)Landroid/os/IBinder;",
1000 (void*)nativeCreateDisplay },
Jesse Hall6a6bc212013-08-08 12:15:03 -07001001 {"nativeDestroyDisplay", "(Landroid/os/IBinder;)V",
1002 (void*)nativeDestroyDisplay },
Robert Carre13b58e2017-08-31 14:50:44 -07001003 {"nativeSetDisplaySurface", "(JLandroid/os/IBinder;J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001004 (void*)nativeSetDisplaySurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001005 {"nativeSetDisplayLayerStack", "(JLandroid/os/IBinder;I)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001006 (void*)nativeSetDisplayLayerStack },
Robert Carre13b58e2017-08-31 14:50:44 -07001007 {"nativeSetDisplayProjection", "(JLandroid/os/IBinder;IIIIIIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001008 (void*)nativeSetDisplayProjection },
Robert Carre13b58e2017-08-31 14:50:44 -07001009 {"nativeSetDisplaySize", "(JLandroid/os/IBinder;II)V",
Michael Wright01e840f2014-06-26 16:03:25 -07001010 (void*)nativeSetDisplaySize },
Dan Stoza00101052014-05-02 15:23:40 -07001011 {"nativeGetDisplayConfigs", "(Landroid/os/IBinder;)[Landroid/view/SurfaceControl$PhysicalDisplayInfo;",
1012 (void*)nativeGetDisplayConfigs },
1013 {"nativeGetActiveConfig", "(Landroid/os/IBinder;)I",
1014 (void*)nativeGetActiveConfig },
1015 {"nativeSetActiveConfig", "(Landroid/os/IBinder;I)Z",
1016 (void*)nativeSetActiveConfig },
Michael Wright1c9977b2016-07-12 13:30:10 -07001017 {"nativeGetDisplayColorModes", "(Landroid/os/IBinder;)[I",
1018 (void*)nativeGetDisplayColorModes},
1019 {"nativeGetActiveColorMode", "(Landroid/os/IBinder;)I",
1020 (void*)nativeGetActiveColorMode},
1021 {"nativeSetActiveColorMode", "(Landroid/os/IBinder;I)Z",
1022 (void*)nativeSetActiveColorMode},
Michael Wright9ff94c02016-03-30 18:05:40 -07001023 {"nativeGetHdrCapabilities", "(Landroid/os/IBinder;)Landroid/view/Display$HdrCapabilities;",
1024 (void*)nativeGetHdrCapabilities },
Svetoslav1376d602014-03-13 11:17:26 -07001025 {"nativeClearContentFrameStats", "(J)Z",
1026 (void*)nativeClearContentFrameStats },
1027 {"nativeGetContentFrameStats", "(JLandroid/view/WindowContentFrameStats;)Z",
1028 (void*)nativeGetContentFrameStats },
1029 {"nativeClearAnimationFrameStats", "()Z",
1030 (void*)nativeClearAnimationFrameStats },
1031 {"nativeGetAnimationFrameStats", "(Landroid/view/WindowAnimationFrameStats;)Z",
1032 (void*)nativeGetAnimationFrameStats },
Prashant Malanic55929a2014-05-25 01:59:21 -07001033 {"nativeSetDisplayPowerMode", "(Landroid/os/IBinder;I)V",
1034 (void*)nativeSetDisplayPowerMode },
Peiyong Lin0ddb7d42019-01-16 13:25:09 -08001035 {"nativeGetProtectedContentSupport", "()Z",
1036 (void*)nativeGetProtectedContentSupport },
Robert Carre13b58e2017-08-31 14:50:44 -07001037 {"nativeDeferTransactionUntil", "(JJLandroid/os/IBinder;J)V",
Rob Carr64e516f2015-10-29 00:20:45 +00001038 (void*)nativeDeferTransactionUntil },
Robert Carre13b58e2017-08-31 14:50:44 -07001039 {"nativeDeferTransactionUntilSurface", "(JJJJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001040 (void*)nativeDeferTransactionUntilSurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001041 {"nativeReparentChildren", "(JJLandroid/os/IBinder;)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001042 (void*)nativeReparentChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001043 {"nativeReparent", "(JJLandroid/os/IBinder;)V",
chaviw76431402017-09-18 16:50:05 -07001044 (void*)nativeReparent },
Robert Carre13b58e2017-08-31 14:50:44 -07001045 {"nativeSeverChildren", "(JJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001046 (void*)nativeSeverChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001047 {"nativeSetOverrideScalingMode", "(JJI)V",
Robert Carr1ca6a332016-04-11 18:00:43 -07001048 (void*)nativeSetOverrideScalingMode },
Rob Carr64e516f2015-10-29 00:20:45 +00001049 {"nativeGetHandle", "(J)Landroid/os/IBinder;",
Robert Carr6da3cc02016-06-16 15:17:07 -07001050 (void*)nativeGetHandle },
chaviw08520a02018-09-10 16:44:56 -07001051 {"nativeScreenshot", "(Landroid/os/IBinder;Landroid/graphics/Rect;IIZI)Landroid/graphics/GraphicBuffer;",
1052 (void*)nativeScreenshot },
Chavi Weingartenea2eb5a2017-11-29 21:26:24 +00001053 {"nativeCaptureLayers", "(Landroid/os/IBinder;Landroid/graphics/Rect;F)Landroid/graphics/GraphicBuffer;",
Chavi Weingartend7ec64c2017-11-30 01:52:01 +00001054 (void*)nativeCaptureLayers },
Robert Carr788f5742018-07-30 17:46:45 -07001055 {"nativeSetInputWindowInfo", "(JJLandroid/view/InputWindowHandle;)V",
chaviw59f532e2018-12-26 15:34:59 -08001056 (void*)nativeSetInputWindowInfo },
1057 {"nativeTransferTouchFocus", "(JLandroid/os/IBinder;Landroid/os/IBinder;)V",
1058 (void*)nativeTransferTouchFocus },
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001059 {"nativeGetDisplayedContentSamplingAttributes",
1060 "(Landroid/os/IBinder;)Landroid/hardware/display/DisplayedContentSamplingAttributes;",
1061 (void*)nativeGetDisplayedContentSamplingAttributes },
1062 {"nativeSetDisplayedContentSamplingEnabled", "(Landroid/os/IBinder;ZII)Z",
1063 (void*)nativeSetDisplayedContentSamplingEnabled },
1064 {"nativeGetDisplayedContentSample",
1065 "(Landroid/os/IBinder;JJ)Landroid/hardware/display/DisplayedContentSample;",
1066 (void*)nativeGetDisplayedContentSample },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001067};
1068
1069int register_android_view_SurfaceControl(JNIEnv* env)
1070{
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001071 int err = RegisterMethodsOrDie(env, "android/view/SurfaceControl",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001072 sSurfaceControlMethods, NELEM(sSurfaceControlMethods));
1073
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001074 jclass clazz = FindClassOrDie(env, "android/view/SurfaceControl$PhysicalDisplayInfo");
1075 gPhysicalDisplayInfoClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
1076 gPhysicalDisplayInfoClassInfo.ctor = GetMethodIDOrDie(env,
1077 gPhysicalDisplayInfoClassInfo.clazz, "<init>", "()V");
1078 gPhysicalDisplayInfoClassInfo.width = GetFieldIDOrDie(env, clazz, "width", "I");
1079 gPhysicalDisplayInfoClassInfo.height = GetFieldIDOrDie(env, clazz, "height", "I");
1080 gPhysicalDisplayInfoClassInfo.refreshRate = GetFieldIDOrDie(env, clazz, "refreshRate", "F");
1081 gPhysicalDisplayInfoClassInfo.density = GetFieldIDOrDie(env, clazz, "density", "F");
1082 gPhysicalDisplayInfoClassInfo.xDpi = GetFieldIDOrDie(env, clazz, "xDpi", "F");
1083 gPhysicalDisplayInfoClassInfo.yDpi = GetFieldIDOrDie(env, clazz, "yDpi", "F");
1084 gPhysicalDisplayInfoClassInfo.secure = GetFieldIDOrDie(env, clazz, "secure", "Z");
1085 gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos = GetFieldIDOrDie(env,
1086 clazz, "appVsyncOffsetNanos", "J");
1087 gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env,
1088 clazz, "presentationDeadlineNanos", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001089
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001090 jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect");
1091 gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I");
1092 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
1093 gRectClassInfo.right = GetFieldIDOrDie(env, rectClazz, "right", "I");
1094 gRectClassInfo.top = GetFieldIDOrDie(env, rectClazz, "top", "I");
Dan Stoza9890e3412014-05-22 16:12:54 -07001095
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001096 jclass frameStatsClazz = FindClassOrDie(env, "android/view/FrameStats");
1097 jfieldID undefined_time_nano_field = GetStaticFieldIDOrDie(env,
1098 frameStatsClazz, "UNDEFINED_TIME_NANO", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001099 nsecs_t undefined_time_nano = env->GetStaticLongField(frameStatsClazz, undefined_time_nano_field);
1100
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001101 jclass contFrameStatsClazz = FindClassOrDie(env, "android/view/WindowContentFrameStats");
1102 gWindowContentFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1103 contFrameStatsClazz, "init", "(J[J[J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001104 gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1105
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001106 jclass animFrameStatsClazz = FindClassOrDie(env, "android/view/WindowAnimationFrameStats");
1107 gWindowAnimationFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1108 animFrameStatsClazz, "init", "(J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001109 gWindowAnimationFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1110
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001111 jclass hdrCapabilitiesClazz = FindClassOrDie(env, "android/view/Display$HdrCapabilities");
1112 gHdrCapabilitiesClassInfo.clazz = MakeGlobalRefOrDie(env, hdrCapabilitiesClazz);
1113 gHdrCapabilitiesClassInfo.ctor = GetMethodIDOrDie(env, hdrCapabilitiesClazz, "<init>",
1114 "([IFFF)V");
1115
Robert Carr6486d312017-01-09 19:48:29 -08001116 jclass graphicsBufferClazz = FindClassOrDie(env, "android/graphics/GraphicBuffer");
1117 gGraphicBufferClassInfo.clazz = MakeGlobalRefOrDie(env, graphicsBufferClazz);
1118 gGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env, graphicsBufferClazz,
1119 "createFromExisting", "(IIIIJ)Landroid/graphics/GraphicBuffer;");
1120
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001121 jclass displayedContentSampleClazz = FindClassOrDie(env,
1122 "android/hardware/display/DisplayedContentSample");
1123 gDisplayedContentSampleClassInfo.clazz = MakeGlobalRefOrDie(env, displayedContentSampleClazz);
1124 gDisplayedContentSampleClassInfo.ctor = GetMethodIDOrDie(env,
1125 displayedContentSampleClazz, "<init>", "(J[J[J[J[J)V");
1126
1127 jclass displayedContentSamplingAttributesClazz = FindClassOrDie(env,
1128 "android/hardware/display/DisplayedContentSamplingAttributes");
1129 gDisplayedContentSamplingAttributesClassInfo.clazz = MakeGlobalRefOrDie(env,
1130 displayedContentSamplingAttributesClazz);
1131 gDisplayedContentSamplingAttributesClassInfo.ctor = GetMethodIDOrDie(env,
1132 displayedContentSamplingAttributesClazz, "<init>", "(III)V");
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001133 return err;
1134}
1135
1136};