blob: d18fc2dc8c29eb2b1ddfd94b2daa4c3abd037756 [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"
18
Mathias Agopian3866f0d2013-02-11 22:08:48 -080019#include "android_os_Parcel.h"
20#include "android_util_Binder.h"
John Reckf29ed282015-04-07 07:32:03 -070021#include "android/graphics/Bitmap.h"
Mathias Agopian3866f0d2013-02-11 22:08:48 -080022#include "android/graphics/GraphicsJNI.h"
23#include "android/graphics/Region.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080024#include "core_jni_helpers.h"
Ben Wagner60126ef2015-08-07 12:13:48 -040025
Tom Cherry10fc6272017-07-10 14:31:18 -070026#include <android-base/chrono_utils.h>
Steven Moreland2279b252017-07-19 09:50:45 -070027#include <nativehelper/JNIHelp.h>
28#include <nativehelper/ScopedUtfChars.h>
Mathias Agopian0449a402013-03-01 23:01:51 -080029#include <android_runtime/android_view_Surface.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080030#include <android_runtime/android_view_SurfaceSession.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080031#include <gui/Surface.h>
32#include <gui/SurfaceComposerClient.h>
Ben Wagner60126ef2015-08-07 12:13:48 -040033#include <jni.h>
34#include <memory>
35#include <stdio.h>
Michael Wright1c9977b2016-07-12 13:30:10 -070036#include <system/graphics.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080037#include <ui/DisplayInfo.h>
Hangyu Kuang54ac2192016-04-25 13:22:02 -070038#include <ui/HdrCapabilities.h>
Svetoslav1376d602014-03-13 11:17:26 -070039#include <ui/FrameStats.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080040#include <ui/Rect.h>
41#include <ui/Region.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080042#include <utils/Log.h>
43
Mathias Agopian3866f0d2013-02-11 22:08:48 -080044// ----------------------------------------------------------------------------
45
46namespace android {
47
48static const char* const OutOfResourcesException =
49 "android/view/Surface$OutOfResourcesException";
50
51static struct {
Dan Stoza00101052014-05-02 15:23:40 -070052 jclass clazz;
53 jmethodID ctor;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080054 jfieldID width;
55 jfieldID height;
56 jfieldID refreshRate;
57 jfieldID density;
58 jfieldID xDpi;
59 jfieldID yDpi;
60 jfieldID secure;
Andy McFaddene8b1aeb2014-06-13 14:05:40 -070061 jfieldID appVsyncOffsetNanos;
62 jfieldID presentationDeadlineNanos;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080063} gPhysicalDisplayInfoClassInfo;
64
Dan Stoza9890e3412014-05-22 16:12:54 -070065static struct {
66 jfieldID bottom;
67 jfieldID left;
68 jfieldID right;
69 jfieldID top;
70} gRectClassInfo;
71
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050072// Implements SkMallocPixelRef::ReleaseProc, to delete the screenshot on unref.
73void DeleteScreenshot(void* addr, void* context) {
74 SkASSERT(addr == ((ScreenshotClient*) context)->getPixels());
75 delete ((ScreenshotClient*) context);
76}
Mathias Agopian3866f0d2013-02-11 22:08:48 -080077
Svetoslav1376d602014-03-13 11:17:26 -070078static struct {
79 nsecs_t UNDEFINED_TIME_NANO;
80 jmethodID init;
81} gWindowContentFrameStatsClassInfo;
82
83static struct {
84 nsecs_t UNDEFINED_TIME_NANO;
85 jmethodID init;
86} gWindowAnimationFrameStatsClassInfo;
87
Hangyu Kuang54ac2192016-04-25 13:22:02 -070088static struct {
89 jclass clazz;
90 jmethodID ctor;
91} gHdrCapabilitiesClassInfo;
92
Mathias Agopian3866f0d2013-02-11 22:08:48 -080093// ----------------------------------------------------------------------------
94
Ashok Bhat36bef0b2014-01-20 20:08:01 +000095static jlong nativeCreate(JNIEnv* env, jclass clazz, jobject sessionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -080096 jstring nameStr, jint w, jint h, jint format, jint flags) {
97 ScopedUtfChars name(env, nameStr);
98 sp<SurfaceComposerClient> client(android_view_SurfaceSession_getClient(env, sessionObj));
99 sp<SurfaceControl> surface = client->createSurface(
100 String8(name.c_str()), w, h, format, flags);
101 if (surface == NULL) {
102 jniThrowException(env, OutOfResourcesException, NULL);
103 return 0;
104 }
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800105 surface->incStrong((void *)nativeCreate);
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000106 return reinterpret_cast<jlong>(surface.get());
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800107}
108
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000109static void nativeRelease(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800110 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800111 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800112}
113
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000114static void nativeDestroy(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800115 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
116 ctrl->clear();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800117 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800118}
119
Chong Zhang47e36a32016-02-29 16:44:33 -0800120static void nativeDisconnect(JNIEnv* env, jclass clazz, jlong nativeObject) {
121 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
122 if (ctrl != NULL) {
123 ctrl->disconnect();
124 }
125}
126
Dan Stoza9890e3412014-05-22 16:12:54 -0700127static jobject nativeScreenshotBitmap(JNIEnv* env, jclass clazz,
128 jobject displayTokenObj, jobject sourceCropObj, jint width, jint height,
Riley Andrews1d134062014-08-21 15:47:07 -0700129 jint minLayer, jint maxLayer, bool allLayers, bool useIdentityTransform,
130 int rotation) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800131 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
132 if (displayToken == NULL) {
133 return NULL;
134 }
135
Dan Stoza9890e3412014-05-22 16:12:54 -0700136 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left);
137 int top = env->GetIntField(sourceCropObj, gRectClassInfo.top);
138 int right = env->GetIntField(sourceCropObj, gRectClassInfo.right);
139 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom);
140 Rect sourceCrop(left, top, right, bottom);
141
Ben Wagner60126ef2015-08-07 12:13:48 -0400142 std::unique_ptr<ScreenshotClient> screenshot(new ScreenshotClient());
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500143 status_t res;
Riley Andrews1d134062014-08-21 15:47:07 -0700144 if (allLayers) {
145 minLayer = 0;
Andreas Gampe0f0b4912014-11-12 08:03:48 -0800146 maxLayer = -1;
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500147 }
Riley Andrews1d134062014-08-21 15:47:07 -0700148
149 res = screenshot->update(displayToken, sourceCrop, width, height,
150 minLayer, maxLayer, useIdentityTransform, static_cast<uint32_t>(rotation));
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500151 if (res != NO_ERROR) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800152 return NULL;
153 }
154
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400155 SkColorType colorType;
156 SkAlphaType alphaType;
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500157 switch (screenshot->getFormat()) {
158 case PIXEL_FORMAT_RGBX_8888: {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400159 colorType = kRGBA_8888_SkColorType;
160 alphaType = kOpaque_SkAlphaType;
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500161 break;
162 }
163 case PIXEL_FORMAT_RGBA_8888: {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400164 colorType = kRGBA_8888_SkColorType;
165 alphaType = kPremul_SkAlphaType;
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500166 break;
167 }
168 case PIXEL_FORMAT_RGB_565: {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400169 colorType = kRGB_565_SkColorType;
170 alphaType = kOpaque_SkAlphaType;
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500171 break;
172 }
173 default: {
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500174 return NULL;
175 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800176 }
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400177 SkImageInfo screenshotInfo = SkImageInfo::Make(screenshot->getWidth(),
178 screenshot->getHeight(),
179 colorType, alphaType);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800180
John Reckf29ed282015-04-07 07:32:03 -0700181 const size_t rowBytes =
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500182 screenshot->getStride() * android::bytesPerPixel(screenshot->getFormat());
183
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400184 if (!screenshotInfo.width() || !screenshotInfo.height()) {
John Reckf29ed282015-04-07 07:32:03 -0700185 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800186 }
187
John Reckf29ed282015-04-07 07:32:03 -0700188 Bitmap* bitmap = new Bitmap(
189 (void*) screenshot->getPixels(), (void*) screenshot.get(), DeleteScreenshot,
190 screenshotInfo, rowBytes, nullptr);
Ben Wagner60126ef2015-08-07 12:13:48 -0400191 screenshot.release();
John Reckae2e8b42015-05-06 14:55:05 -0700192 bitmap->peekAtPixelRef()->setImmutable();
John Reckf29ed282015-04-07 07:32:03 -0700193
Chris Craik1abf5d62013-08-16 12:47:03 -0700194 return GraphicsJNI::createBitmap(env, bitmap,
195 GraphicsJNI::kBitmapCreateFlag_Premultiplied, NULL);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800196}
197
Dan Stoza9890e3412014-05-22 16:12:54 -0700198static void nativeScreenshot(JNIEnv* env, jclass clazz, jobject displayTokenObj,
199 jobject surfaceObj, jobject sourceCropObj, jint width, jint height,
200 jint minLayer, jint maxLayer, bool allLayers, bool useIdentityTransform) {
Mathias Agopian0449a402013-03-01 23:01:51 -0800201 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
202 if (displayToken != NULL) {
203 sp<Surface> consumer = android_view_Surface_getSurface(env, surfaceObj);
204 if (consumer != NULL) {
Dan Stoza9890e3412014-05-22 16:12:54 -0700205 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left);
206 int top = env->GetIntField(sourceCropObj, gRectClassInfo.top);
207 int right = env->GetIntField(sourceCropObj, gRectClassInfo.right);
208 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom);
209 Rect sourceCrop(left, top, right, bottom);
210
Mathias Agopian0449a402013-03-01 23:01:51 -0800211 if (allLayers) {
212 minLayer = 0;
213 maxLayer = -1;
214 }
Dan Stoza9890e3412014-05-22 16:12:54 -0700215 ScreenshotClient::capture(displayToken,
216 consumer->getIGraphicBufferProducer(), sourceCrop,
Dan Stoza16ec12a2014-02-14 15:06:55 -0800217 width, height, uint32_t(minLayer), uint32_t(maxLayer),
218 useIdentityTransform);
Mathias Agopian0449a402013-03-01 23:01:51 -0800219 }
220 }
221}
222
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800223static void nativeOpenTransaction(JNIEnv* env, jclass clazz) {
224 SurfaceComposerClient::openGlobalTransaction();
225}
226
Robert Carre9953b12016-05-23 20:52:04 -0700227
228static void nativeCloseTransaction(JNIEnv* env, jclass clazz, jboolean sync) {
229 SurfaceComposerClient::closeGlobalTransaction(sync);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800230}
231
232static void nativeSetAnimationTransaction(JNIEnv* env, jclass clazz) {
233 SurfaceComposerClient::setAnimationTransaction();
234}
235
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000236static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong nativeObject, jint zorder) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800237 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
238 status_t err = ctrl->setLayer(zorder);
239 if (err < 0 && err != NO_INIT) {
240 doThrowIAE(env);
241 }
242}
243
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000244static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong nativeObject, jfloat x, jfloat y) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800245 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
246 status_t err = ctrl->setPosition(x, y);
247 if (err < 0 && err != NO_INIT) {
248 doThrowIAE(env);
249 }
250}
251
Robert Carr6da3cc02016-06-16 15:17:07 -0700252static void nativeSetGeometryAppliesWithResize(JNIEnv* env, jclass clazz,
Robert Carra9408d42016-06-03 13:28:48 -0700253 jlong nativeObject) {
254 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carr6da3cc02016-06-16 15:17:07 -0700255 status_t err = ctrl->setGeometryAppliesWithResize();
Robert Carra9408d42016-06-03 13:28:48 -0700256 if (err < 0 && err != NO_INIT) {
257 doThrowIAE(env);
258 }
259}
260
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000261static void nativeSetSize(JNIEnv* env, jclass clazz, jlong nativeObject, jint w, jint h) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800262 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
263 status_t err = ctrl->setSize(w, h);
264 if (err < 0 && err != NO_INIT) {
265 doThrowIAE(env);
266 }
267}
268
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000269static void nativeSetFlags(JNIEnv* env, jclass clazz, jlong nativeObject, jint flags, jint mask) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800270 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
271 status_t err = ctrl->setFlags(flags, mask);
272 if (err < 0 && err != NO_INIT) {
273 doThrowIAE(env);
274 }
275}
276
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000277static void nativeSetTransparentRegionHint(JNIEnv* env, jclass clazz, jlong nativeObject, jobject regionObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800278 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
279 SkRegion* region = android_graphics_Region_getSkRegion(env, regionObj);
280 if (!region) {
281 doThrowIAE(env);
282 return;
283 }
284
285 const SkIRect& b(region->getBounds());
286 Region reg(Rect(b.fLeft, b.fTop, b.fRight, b.fBottom));
287 if (region->isComplex()) {
288 SkRegion::Iterator it(*region);
289 while (!it.done()) {
290 const SkIRect& r(it.rect());
291 reg.addRectUnchecked(r.fLeft, r.fTop, r.fRight, r.fBottom);
292 it.next();
293 }
294 }
295
296 status_t err = ctrl->setTransparentRegionHint(reg);
297 if (err < 0 && err != NO_INIT) {
298 doThrowIAE(env);
299 }
300}
301
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000302static void nativeSetAlpha(JNIEnv* env, jclass clazz, jlong nativeObject, jfloat alpha) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800303 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
304 status_t err = ctrl->setAlpha(alpha);
305 if (err < 0 && err != NO_INIT) {
306 doThrowIAE(env);
307 }
308}
309
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000310static void nativeSetMatrix(JNIEnv* env, jclass clazz, jlong nativeObject,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800311 jfloat dsdx, jfloat dtdx, jfloat dsdy, jfloat dtdy) {
312 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
313 status_t err = ctrl->setMatrix(dsdx, dtdx, dsdy, dtdy);
314 if (err < 0 && err != NO_INIT) {
315 doThrowIAE(env);
316 }
317}
318
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000319static void nativeSetWindowCrop(JNIEnv* env, jclass clazz, jlong nativeObject,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800320 jint l, jint t, jint r, jint b) {
321 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
322 Rect crop(l, t, r, b);
323 status_t err = ctrl->setCrop(crop);
324 if (err < 0 && err != NO_INIT) {
325 doThrowIAE(env);
326 }
327}
328
Pablo Ceballos27982e62016-03-09 10:50:45 -0800329static void nativeSetFinalCrop(JNIEnv* env, jclass clazz, jlong nativeObject,
330 jint l, jint t, jint r, jint b) {
331 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
332 Rect crop(l, t, r, b);
333 status_t err = ctrl->setFinalCrop(crop);
334 if (err < 0 && err != NO_INIT) {
335 doThrowIAE(env);
336 }
337}
338
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000339static void nativeSetLayerStack(JNIEnv* env, jclass clazz, jlong nativeObject, jint layerStack) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800340 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
341 status_t err = ctrl->setLayerStack(layerStack);
342 if (err < 0 && err != NO_INIT) {
343 doThrowIAE(env);
344 }
345}
346
347static jobject nativeGetBuiltInDisplay(JNIEnv* env, jclass clazz, jint id) {
348 sp<IBinder> token(SurfaceComposerClient::getBuiltInDisplay(id));
349 return javaObjectForIBinder(env, token);
350}
351
352static jobject nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj,
353 jboolean secure) {
354 ScopedUtfChars name(env, nameObj);
355 sp<IBinder> token(SurfaceComposerClient::createDisplay(
356 String8(name.c_str()), bool(secure)));
357 return javaObjectForIBinder(env, token);
358}
359
Jesse Hall6a6bc212013-08-08 12:15:03 -0700360static void nativeDestroyDisplay(JNIEnv* env, jclass clazz, jobject tokenObj) {
361 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
362 if (token == NULL) return;
363 SurfaceComposerClient::destroyDisplay(token);
364}
365
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800366static void nativeSetDisplaySurface(JNIEnv* env, jclass clazz,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000367 jobject tokenObj, jlong nativeSurfaceObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800368 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
369 if (token == NULL) return;
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800370 sp<IGraphicBufferProducer> bufferProducer;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800371 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800372 if (sur != NULL) {
373 bufferProducer = sur->getIGraphicBufferProducer();
374 }
Pablo Ceballosaff2f942016-07-29 14:49:55 -0700375 status_t err = SurfaceComposerClient::setDisplaySurface(token,
376 bufferProducer);
377 if (err != NO_ERROR) {
378 doThrowIAE(env, "Illegal Surface, could not enable async mode. Was this"
379 " Surface created with singleBufferMode?");
380 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800381}
382
383static void nativeSetDisplayLayerStack(JNIEnv* env, jclass clazz,
384 jobject tokenObj, jint layerStack) {
385 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
386 if (token == NULL) return;
387
388 SurfaceComposerClient::setDisplayLayerStack(token, layerStack);
389}
390
391static void nativeSetDisplayProjection(JNIEnv* env, jclass clazz,
392 jobject tokenObj, jint orientation,
393 jint layerStackRect_left, jint layerStackRect_top, jint layerStackRect_right, jint layerStackRect_bottom,
394 jint displayRect_left, jint displayRect_top, jint displayRect_right, jint displayRect_bottom) {
395 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
396 if (token == NULL) return;
397 Rect layerStackRect(layerStackRect_left, layerStackRect_top, layerStackRect_right, layerStackRect_bottom);
398 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
399 SurfaceComposerClient::setDisplayProjection(token, orientation, layerStackRect, displayRect);
400}
401
Michael Wright01e840f2014-06-26 16:03:25 -0700402static void nativeSetDisplaySize(JNIEnv* env, jclass clazz,
403 jobject tokenObj, jint width, jint height) {
404 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
405 if (token == NULL) return;
406 SurfaceComposerClient::setDisplaySize(token, width, height);
407}
408
Dan Stoza00101052014-05-02 15:23:40 -0700409static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz,
410 jobject tokenObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800411 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Dan Stoza00101052014-05-02 15:23:40 -0700412 if (token == NULL) return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800413
Dan Stoza00101052014-05-02 15:23:40 -0700414 Vector<DisplayInfo> configs;
415 if (SurfaceComposerClient::getDisplayConfigs(token, &configs) != NO_ERROR ||
416 configs.size() == 0) {
417 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800418 }
419
Dan Stoza00101052014-05-02 15:23:40 -0700420 jobjectArray configArray = env->NewObjectArray(configs.size(),
421 gPhysicalDisplayInfoClassInfo.clazz, NULL);
422
423 for (size_t c = 0; c < configs.size(); ++c) {
424 const DisplayInfo& info = configs[c];
425 jobject infoObj = env->NewObject(gPhysicalDisplayInfoClassInfo.clazz,
426 gPhysicalDisplayInfoClassInfo.ctor);
427 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.width, info.w);
428 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.height, info.h);
429 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
430 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.density, info.density);
431 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.xDpi, info.xdpi);
432 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.yDpi, info.ydpi);
433 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
Andy McFaddene8b1aeb2014-06-13 14:05:40 -0700434 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos,
435 info.appVsyncOffset);
436 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos,
437 info.presentationDeadline);
Dan Stoza00101052014-05-02 15:23:40 -0700438 env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj);
439 env->DeleteLocalRef(infoObj);
440 }
441
442 return configArray;
443}
444
445static jint nativeGetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj) {
446 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
447 if (token == NULL) return -1;
448 return static_cast<jint>(SurfaceComposerClient::getActiveConfig(token));
449}
450
451static jboolean nativeSetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj, jint id) {
452 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
453 if (token == NULL) return JNI_FALSE;
454 status_t err = SurfaceComposerClient::setActiveConfig(token, static_cast<int>(id));
455 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800456}
457
Michael Wright1c9977b2016-07-12 13:30:10 -0700458static jintArray nativeGetDisplayColorModes(JNIEnv* env, jclass, jobject tokenObj) {
459 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
460 if (token == NULL) return NULL;
461 Vector<android_color_mode_t> colorModes;
462 if (SurfaceComposerClient::getDisplayColorModes(token, &colorModes) != NO_ERROR ||
463 colorModes.isEmpty()) {
464 return NULL;
465 }
466
467 jintArray colorModesArray = env->NewIntArray(colorModes.size());
468 if (colorModesArray == NULL) {
469 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
470 return NULL;
471 }
472 jint* colorModesArrayValues = env->GetIntArrayElements(colorModesArray, 0);
473 for (size_t i = 0; i < colorModes.size(); i++) {
474 colorModesArrayValues[i] = static_cast<jint>(colorModes[i]);
475 }
476 env->ReleaseIntArrayElements(colorModesArray, colorModesArrayValues, 0);
477 return colorModesArray;
478}
479
480static jint nativeGetActiveColorMode(JNIEnv* env, jclass, jobject tokenObj) {
481 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
482 if (token == NULL) return -1;
483 return static_cast<jint>(SurfaceComposerClient::getActiveColorMode(token));
484}
485
486static jboolean nativeSetActiveColorMode(JNIEnv* env, jclass,
487 jobject tokenObj, jint colorMode) {
488 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
489 if (token == NULL) return JNI_FALSE;
490 status_t err = SurfaceComposerClient::setActiveColorMode(token,
491 static_cast<android_color_mode_t>(colorMode));
492 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
493}
494
Prashant Malanic55929a2014-05-25 01:59:21 -0700495static void nativeSetDisplayPowerMode(JNIEnv* env, jclass clazz, jobject tokenObj, jint mode) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800496 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
497 if (token == NULL) return;
498
Tom Cherry10fc6272017-07-10 14:31:18 -0700499 android::base::Timer t;
Prashant Malanic55929a2014-05-25 01:59:21 -0700500 SurfaceComposerClient::setDisplayPowerMode(token, mode);
Tom Cherry10fc6272017-07-10 14:31:18 -0700501 if (t.duration() > 100ms) ALOGD("Excessive delay in setPowerMode()");
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800502}
503
Svetoslav1376d602014-03-13 11:17:26 -0700504static jboolean nativeClearContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject) {
505 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
506 status_t err = ctrl->clearLayerFrameStats();
507
508 if (err < 0 && err != NO_INIT) {
509 doThrowIAE(env);
510 }
511
512 // The other end is not ready, just report we failed.
513 if (err == NO_INIT) {
514 return JNI_FALSE;
515 }
516
517 return JNI_TRUE;
518}
519
520static jboolean nativeGetContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject,
521 jobject outStats) {
522 FrameStats stats;
523
524 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
525 status_t err = ctrl->getLayerFrameStats(&stats);
526 if (err < 0 && err != NO_INIT) {
527 doThrowIAE(env);
528 }
529
530 // The other end is not ready, fine just return empty stats.
531 if (err == NO_INIT) {
532 return JNI_FALSE;
533 }
534
535 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
536 size_t frameCount = stats.desiredPresentTimesNano.size();
537
538 jlongArray postedTimesNanoDst = env->NewLongArray(frameCount);
539 if (postedTimesNanoDst == NULL) {
540 return JNI_FALSE;
541 }
542
543 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
544 if (presentedTimesNanoDst == NULL) {
545 return JNI_FALSE;
546 }
547
548 jlongArray readyTimesNanoDst = env->NewLongArray(frameCount);
549 if (readyTimesNanoDst == NULL) {
550 return JNI_FALSE;
551 }
552
553 nsecs_t postedTimesNanoSrc[frameCount];
554 nsecs_t presentedTimesNanoSrc[frameCount];
555 nsecs_t readyTimesNanoSrc[frameCount];
556
557 for (size_t i = 0; i < frameCount; i++) {
558 nsecs_t postedTimeNano = stats.desiredPresentTimesNano[i];
559 if (postedTimeNano == INT64_MAX) {
560 postedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
561 }
562 postedTimesNanoSrc[i] = postedTimeNano;
563
564 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
565 if (presentedTimeNano == INT64_MAX) {
566 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
567 }
568 presentedTimesNanoSrc[i] = presentedTimeNano;
569
570 nsecs_t readyTimeNano = stats.frameReadyTimesNano[i];
571 if (readyTimeNano == INT64_MAX) {
572 readyTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
573 }
574 readyTimesNanoSrc[i] = readyTimeNano;
575 }
576
577 env->SetLongArrayRegion(postedTimesNanoDst, 0, frameCount, postedTimesNanoSrc);
578 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
579 env->SetLongArrayRegion(readyTimesNanoDst, 0, frameCount, readyTimesNanoSrc);
580
581 env->CallVoidMethod(outStats, gWindowContentFrameStatsClassInfo.init, refreshPeriodNano,
582 postedTimesNanoDst, presentedTimesNanoDst, readyTimesNanoDst);
583
584 if (env->ExceptionCheck()) {
585 return JNI_FALSE;
586 }
587
588 return JNI_TRUE;
589}
590
591static jboolean nativeClearAnimationFrameStats(JNIEnv* env, jclass clazz) {
592 status_t err = SurfaceComposerClient::clearAnimationFrameStats();
593
594 if (err < 0 && err != NO_INIT) {
595 doThrowIAE(env);
596 }
597
598 // The other end is not ready, just report we failed.
599 if (err == NO_INIT) {
600 return JNI_FALSE;
601 }
602
603 return JNI_TRUE;
604}
605
606static jboolean nativeGetAnimationFrameStats(JNIEnv* env, jclass clazz, jobject outStats) {
607 FrameStats stats;
608
609 status_t err = SurfaceComposerClient::getAnimationFrameStats(&stats);
610 if (err < 0 && err != NO_INIT) {
611 doThrowIAE(env);
612 }
613
614 // The other end is not ready, fine just return empty stats.
615 if (err == NO_INIT) {
616 return JNI_FALSE;
617 }
618
619 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
620 size_t frameCount = stats.desiredPresentTimesNano.size();
621
622 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
623 if (presentedTimesNanoDst == NULL) {
624 return JNI_FALSE;
625 }
626
627 nsecs_t presentedTimesNanoSrc[frameCount];
628
629 for (size_t i = 0; i < frameCount; i++) {
Allen Hairac5eda32014-04-24 11:50:37 -0700630 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
Svetoslav1376d602014-03-13 11:17:26 -0700631 if (presentedTimeNano == INT64_MAX) {
632 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
633 }
634 presentedTimesNanoSrc[i] = presentedTimeNano;
635 }
636
637 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
638
639 env->CallVoidMethod(outStats, gWindowAnimationFrameStatsClassInfo.init, refreshPeriodNano,
640 presentedTimesNanoDst);
641
642 if (env->ExceptionCheck()) {
643 return JNI_FALSE;
644 }
645
646 return JNI_TRUE;
647}
648
Rob Carr64e516f2015-10-29 00:20:45 +0000649
650static void nativeDeferTransactionUntil(JNIEnv* env, jclass clazz, jlong nativeObject,
651 jobject handleObject, jlong frameNumber) {
652 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
653 sp<IBinder> handle = ibinderForJavaObject(env, handleObject);
654
655 ctrl->deferTransactionUntil(handle, frameNumber);
656}
657
Robert Carr1ca6a332016-04-11 18:00:43 -0700658static void nativeSetOverrideScalingMode(JNIEnv* env, jclass clazz, jlong nativeObject,
659 jint scalingMode) {
660 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
661
662 ctrl->setOverrideScalingMode(scalingMode);
663}
664
Rob Carr64e516f2015-10-29 00:20:45 +0000665static jobject nativeGetHandle(JNIEnv* env, jclass clazz, jlong nativeObject) {
666 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
667
668 return javaObjectForIBinder(env, ctrl->getHandle());
669}
670
Robert Carr6da3cc02016-06-16 15:17:07 -0700671static jboolean nativeGetTransformToDisplayInverse(JNIEnv* env, jclass clazz, jlong nativeObject) {
672 bool out = false;
673 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
674 status_t status = ctrl->getTransformToDisplayInverse(&out);
675 if (status != NO_ERROR) {
676 return false;
677 }
678 return out;
679}
680
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700681static jobject nativeGetHdrCapabilities(JNIEnv* env, jclass clazz, jobject tokenObject) {
682 sp<IBinder> token(ibinderForJavaObject(env, tokenObject));
683 if (token == NULL) return NULL;
684
685 HdrCapabilities capabilities;
686 SurfaceComposerClient::getHdrCapabilities(token, &capabilities);
687
688 const auto& types = capabilities.getSupportedHdrTypes();
689 auto typesArray = env->NewIntArray(types.size());
690 env->SetIntArrayRegion(typesArray, 0, types.size(), types.data());
691
Michael Wright9ff94c02016-03-30 18:05:40 -0700692 return env->NewObject(gHdrCapabilitiesClassInfo.clazz, gHdrCapabilitiesClassInfo.ctor,
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700693 typesArray, capabilities.getDesiredMaxLuminance(),
694 capabilities.getDesiredMaxAverageLuminance(), capabilities.getDesiredMinLuminance());
695}
696
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800697// ----------------------------------------------------------------------------
698
Daniel Micay76f6a862015-09-19 17:31:01 -0400699static const JNINativeMethod sSurfaceControlMethods[] = {
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000700 {"nativeCreate", "(Landroid/view/SurfaceSession;Ljava/lang/String;IIII)J",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800701 (void*)nativeCreate },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000702 {"nativeRelease", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800703 (void*)nativeRelease },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000704 {"nativeDestroy", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800705 (void*)nativeDestroy },
Chong Zhang47e36a32016-02-29 16:44:33 -0800706 {"nativeDisconnect", "(J)V",
707 (void*)nativeDisconnect },
Riley Andrews1d134062014-08-21 15:47:07 -0700708 {"nativeScreenshot", "(Landroid/os/IBinder;Landroid/graphics/Rect;IIIIZZI)Landroid/graphics/Bitmap;",
Mathias Agopian0449a402013-03-01 23:01:51 -0800709 (void*)nativeScreenshotBitmap },
Dan Stoza9890e3412014-05-22 16:12:54 -0700710 {"nativeScreenshot", "(Landroid/os/IBinder;Landroid/view/Surface;Landroid/graphics/Rect;IIIIZZ)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800711 (void*)nativeScreenshot },
712 {"nativeOpenTransaction", "()V",
713 (void*)nativeOpenTransaction },
Robert Carre9953b12016-05-23 20:52:04 -0700714 {"nativeCloseTransaction", "(Z)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800715 (void*)nativeCloseTransaction },
716 {"nativeSetAnimationTransaction", "()V",
717 (void*)nativeSetAnimationTransaction },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000718 {"nativeSetLayer", "(JI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800719 (void*)nativeSetLayer },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000720 {"nativeSetPosition", "(JFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800721 (void*)nativeSetPosition },
Robert Carr6da3cc02016-06-16 15:17:07 -0700722 {"nativeSetGeometryAppliesWithResize", "(J)V",
723 (void*)nativeSetGeometryAppliesWithResize },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000724 {"nativeSetSize", "(JII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800725 (void*)nativeSetSize },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000726 {"nativeSetTransparentRegionHint", "(JLandroid/graphics/Region;)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800727 (void*)nativeSetTransparentRegionHint },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000728 {"nativeSetAlpha", "(JF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800729 (void*)nativeSetAlpha },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000730 {"nativeSetMatrix", "(JFFFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800731 (void*)nativeSetMatrix },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000732 {"nativeSetFlags", "(JII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800733 (void*)nativeSetFlags },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000734 {"nativeSetWindowCrop", "(JIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800735 (void*)nativeSetWindowCrop },
Pablo Ceballos27982e62016-03-09 10:50:45 -0800736 {"nativeSetFinalCrop", "(JIIII)V",
737 (void*)nativeSetFinalCrop },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000738 {"nativeSetLayerStack", "(JI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800739 (void*)nativeSetLayerStack },
740 {"nativeGetBuiltInDisplay", "(I)Landroid/os/IBinder;",
741 (void*)nativeGetBuiltInDisplay },
742 {"nativeCreateDisplay", "(Ljava/lang/String;Z)Landroid/os/IBinder;",
743 (void*)nativeCreateDisplay },
Jesse Hall6a6bc212013-08-08 12:15:03 -0700744 {"nativeDestroyDisplay", "(Landroid/os/IBinder;)V",
745 (void*)nativeDestroyDisplay },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000746 {"nativeSetDisplaySurface", "(Landroid/os/IBinder;J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800747 (void*)nativeSetDisplaySurface },
748 {"nativeSetDisplayLayerStack", "(Landroid/os/IBinder;I)V",
749 (void*)nativeSetDisplayLayerStack },
750 {"nativeSetDisplayProjection", "(Landroid/os/IBinder;IIIIIIIII)V",
751 (void*)nativeSetDisplayProjection },
Michael Wright01e840f2014-06-26 16:03:25 -0700752 {"nativeSetDisplaySize", "(Landroid/os/IBinder;II)V",
753 (void*)nativeSetDisplaySize },
Dan Stoza00101052014-05-02 15:23:40 -0700754 {"nativeGetDisplayConfigs", "(Landroid/os/IBinder;)[Landroid/view/SurfaceControl$PhysicalDisplayInfo;",
755 (void*)nativeGetDisplayConfigs },
756 {"nativeGetActiveConfig", "(Landroid/os/IBinder;)I",
757 (void*)nativeGetActiveConfig },
758 {"nativeSetActiveConfig", "(Landroid/os/IBinder;I)Z",
759 (void*)nativeSetActiveConfig },
Michael Wright1c9977b2016-07-12 13:30:10 -0700760 {"nativeGetDisplayColorModes", "(Landroid/os/IBinder;)[I",
761 (void*)nativeGetDisplayColorModes},
762 {"nativeGetActiveColorMode", "(Landroid/os/IBinder;)I",
763 (void*)nativeGetActiveColorMode},
764 {"nativeSetActiveColorMode", "(Landroid/os/IBinder;I)Z",
765 (void*)nativeSetActiveColorMode},
Michael Wright9ff94c02016-03-30 18:05:40 -0700766 {"nativeGetHdrCapabilities", "(Landroid/os/IBinder;)Landroid/view/Display$HdrCapabilities;",
767 (void*)nativeGetHdrCapabilities },
Svetoslav1376d602014-03-13 11:17:26 -0700768 {"nativeClearContentFrameStats", "(J)Z",
769 (void*)nativeClearContentFrameStats },
770 {"nativeGetContentFrameStats", "(JLandroid/view/WindowContentFrameStats;)Z",
771 (void*)nativeGetContentFrameStats },
772 {"nativeClearAnimationFrameStats", "()Z",
773 (void*)nativeClearAnimationFrameStats },
774 {"nativeGetAnimationFrameStats", "(Landroid/view/WindowAnimationFrameStats;)Z",
775 (void*)nativeGetAnimationFrameStats },
Prashant Malanic55929a2014-05-25 01:59:21 -0700776 {"nativeSetDisplayPowerMode", "(Landroid/os/IBinder;I)V",
777 (void*)nativeSetDisplayPowerMode },
Rob Carr64e516f2015-10-29 00:20:45 +0000778 {"nativeDeferTransactionUntil", "(JLandroid/os/IBinder;J)V",
779 (void*)nativeDeferTransactionUntil },
Robert Carr1ca6a332016-04-11 18:00:43 -0700780 {"nativeSetOverrideScalingMode", "(JI)V",
781 (void*)nativeSetOverrideScalingMode },
Rob Carr64e516f2015-10-29 00:20:45 +0000782 {"nativeGetHandle", "(J)Landroid/os/IBinder;",
Robert Carr6da3cc02016-06-16 15:17:07 -0700783 (void*)nativeGetHandle },
784 {"nativeGetTransformToDisplayInverse", "(J)Z",
785 (void*)nativeGetTransformToDisplayInverse },
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800786};
787
788int register_android_view_SurfaceControl(JNIEnv* env)
789{
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800790 int err = RegisterMethodsOrDie(env, "android/view/SurfaceControl",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800791 sSurfaceControlMethods, NELEM(sSurfaceControlMethods));
792
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800793 jclass clazz = FindClassOrDie(env, "android/view/SurfaceControl$PhysicalDisplayInfo");
794 gPhysicalDisplayInfoClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
795 gPhysicalDisplayInfoClassInfo.ctor = GetMethodIDOrDie(env,
796 gPhysicalDisplayInfoClassInfo.clazz, "<init>", "()V");
797 gPhysicalDisplayInfoClassInfo.width = GetFieldIDOrDie(env, clazz, "width", "I");
798 gPhysicalDisplayInfoClassInfo.height = GetFieldIDOrDie(env, clazz, "height", "I");
799 gPhysicalDisplayInfoClassInfo.refreshRate = GetFieldIDOrDie(env, clazz, "refreshRate", "F");
800 gPhysicalDisplayInfoClassInfo.density = GetFieldIDOrDie(env, clazz, "density", "F");
801 gPhysicalDisplayInfoClassInfo.xDpi = GetFieldIDOrDie(env, clazz, "xDpi", "F");
802 gPhysicalDisplayInfoClassInfo.yDpi = GetFieldIDOrDie(env, clazz, "yDpi", "F");
803 gPhysicalDisplayInfoClassInfo.secure = GetFieldIDOrDie(env, clazz, "secure", "Z");
804 gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos = GetFieldIDOrDie(env,
805 clazz, "appVsyncOffsetNanos", "J");
806 gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env,
807 clazz, "presentationDeadlineNanos", "J");
Svetoslav1376d602014-03-13 11:17:26 -0700808
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800809 jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect");
810 gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I");
811 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
812 gRectClassInfo.right = GetFieldIDOrDie(env, rectClazz, "right", "I");
813 gRectClassInfo.top = GetFieldIDOrDie(env, rectClazz, "top", "I");
Dan Stoza9890e3412014-05-22 16:12:54 -0700814
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800815 jclass frameStatsClazz = FindClassOrDie(env, "android/view/FrameStats");
816 jfieldID undefined_time_nano_field = GetStaticFieldIDOrDie(env,
817 frameStatsClazz, "UNDEFINED_TIME_NANO", "J");
Svetoslav1376d602014-03-13 11:17:26 -0700818 nsecs_t undefined_time_nano = env->GetStaticLongField(frameStatsClazz, undefined_time_nano_field);
819
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800820 jclass contFrameStatsClazz = FindClassOrDie(env, "android/view/WindowContentFrameStats");
821 gWindowContentFrameStatsClassInfo.init = GetMethodIDOrDie(env,
822 contFrameStatsClazz, "init", "(J[J[J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -0700823 gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
824
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800825 jclass animFrameStatsClazz = FindClassOrDie(env, "android/view/WindowAnimationFrameStats");
826 gWindowAnimationFrameStatsClassInfo.init = GetMethodIDOrDie(env,
827 animFrameStatsClazz, "init", "(J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -0700828 gWindowAnimationFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
829
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700830 jclass hdrCapabilitiesClazz = FindClassOrDie(env, "android/view/Display$HdrCapabilities");
831 gHdrCapabilitiesClassInfo.clazz = MakeGlobalRefOrDie(env, hdrCapabilitiesClazz);
832 gHdrCapabilitiesClassInfo.ctor = GetMethodIDOrDie(env, hdrCapabilitiesClazz, "<init>",
833 "([IFFF)V");
834
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800835 return err;
836}
837
838};