blob: 508d897955694b107a42db290f3a0d46acb752b7 [file] [log] [blame]
Jeff Brown64a55af2012-08-26 02:47:39 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "SurfaceSession"
18
19#include "JNIHelp.h"
20
21#include <android_runtime/AndroidRuntime.h>
22#include <android_runtime/android_view_SurfaceSession.h>
23#include <utils/Log.h>
24#include <utils/RefBase.h>
25
26#include <gui/SurfaceComposerClient.h>
Robert Carrd5c7dd62017-03-08 10:39:30 -080027#include <gui/Surface.h>
Jeff Brown64a55af2012-08-26 02:47:39 -070028
29namespace android {
30
31static struct {
32 jfieldID mNativeClient;
33} gSurfaceSessionClassInfo;
34
35
36sp<SurfaceComposerClient> android_view_SurfaceSession_getClient(
37 JNIEnv* env, jobject surfaceSessionObj) {
38 return reinterpret_cast<SurfaceComposerClient*>(
Ashok Bhata3850d82014-01-08 15:34:15 +000039 env->GetLongField(surfaceSessionObj, gSurfaceSessionClassInfo.mNativeClient));
Jeff Brown64a55af2012-08-26 02:47:39 -070040}
41
42
Ashok Bhata3850d82014-01-08 15:34:15 +000043static jlong nativeCreate(JNIEnv* env, jclass clazz) {
Jeff Brown64a55af2012-08-26 02:47:39 -070044 SurfaceComposerClient* client = new SurfaceComposerClient();
Mathias Agopianb1d90c82013-03-06 17:45:42 -080045 client->incStrong((void*)nativeCreate);
Ashok Bhata3850d82014-01-08 15:34:15 +000046 return reinterpret_cast<jlong>(client);
Jeff Brown64a55af2012-08-26 02:47:39 -070047}
48
Robert Carrd5c7dd62017-03-08 10:39:30 -080049static jlong nativeCreateScoped(JNIEnv* env, jclass clazz, jlong surfaceObject) {
50 Surface *parent = reinterpret_cast<Surface*>(surfaceObject);
51 SurfaceComposerClient* client = new SurfaceComposerClient(parent->getIGraphicBufferProducer());
52 client->incStrong((void*)nativeCreate);
53 return reinterpret_cast<jlong>(client);
54}
55
Ashok Bhata3850d82014-01-08 15:34:15 +000056static void nativeDestroy(JNIEnv* env, jclass clazz, jlong ptr) {
Jeff Brown64a55af2012-08-26 02:47:39 -070057 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr);
Mathias Agopianb1d90c82013-03-06 17:45:42 -080058 client->decStrong((void*)nativeCreate);
Jeff Brown64a55af2012-08-26 02:47:39 -070059}
60
Ashok Bhata3850d82014-01-08 15:34:15 +000061static void nativeKill(JNIEnv* env, jclass clazz, jlong ptr) {
Jeff Brown64a55af2012-08-26 02:47:39 -070062 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr);
63 client->dispose();
64}
65
Daniel Micay76f6a862015-09-19 17:31:01 -040066static const JNINativeMethod gMethods[] = {
Jeff Brown64a55af2012-08-26 02:47:39 -070067 /* name, signature, funcPtr */
Ashok Bhata3850d82014-01-08 15:34:15 +000068 { "nativeCreate", "()J",
Jeff Brown64a55af2012-08-26 02:47:39 -070069 (void*)nativeCreate },
Robert Carrd5c7dd62017-03-08 10:39:30 -080070 { "nativeCreateScoped", "(J)J",
71 (void*)nativeCreateScoped },
Ashok Bhata3850d82014-01-08 15:34:15 +000072 { "nativeDestroy", "(J)V",
Jeff Brown64a55af2012-08-26 02:47:39 -070073 (void*)nativeDestroy },
Ashok Bhata3850d82014-01-08 15:34:15 +000074 { "nativeKill", "(J)V",
Jeff Brown64a55af2012-08-26 02:47:39 -070075 (void*)nativeKill }
76};
77
78int register_android_view_SurfaceSession(JNIEnv* env) {
79 int res = jniRegisterNativeMethods(env, "android/view/SurfaceSession",
80 gMethods, NELEM(gMethods));
81 LOG_ALWAYS_FATAL_IF(res < 0, "Unable to register native methods.");
82
83 jclass clazz = env->FindClass("android/view/SurfaceSession");
Ashok Bhata3850d82014-01-08 15:34:15 +000084 gSurfaceSessionClassInfo.mNativeClient = env->GetFieldID(clazz, "mNativeClient", "J");
Jeff Brown64a55af2012-08-26 02:47:39 -070085 return 0;
86}
87
88} // namespace android