blob: d517a802086b8898ec4aba926fc20fc095efc129 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
17package android.view;
18
Mathew Inwoode5ad5982018-08-17 15:07:52 +010019import android.annotation.UnsupportedAppUsage;
20
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021/**
22 * An instance of this class represents a connection to the surface
Jeff Brown64a55af2012-08-26 02:47:39 -070023 * flinger, from which you can create one or more Surface instances that will
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024 * be composited to the screen.
25 * {@hide}
26 */
Jeff Brown64a55af2012-08-26 02:47:39 -070027public final class SurfaceSession {
28 // Note: This field is accessed by native code.
Mathew Inwoode5ad5982018-08-17 15:07:52 +010029 @UnsupportedAppUsage
Ashok Bhata3850d82014-01-08 15:34:15 +000030 private long mNativeClient; // SurfaceComposerClient*
Jeff Brown0b722fe2012-08-24 22:40:14 -070031
Ashok Bhata3850d82014-01-08 15:34:15 +000032 private static native long nativeCreate();
Robert Carrd5c7dd62017-03-08 10:39:30 -080033 private static native long nativeCreateScoped(long surfacePtr);
Ashok Bhata3850d82014-01-08 15:34:15 +000034 private static native void nativeDestroy(long ptr);
35 private static native void nativeKill(long ptr);
Jeff Brown0b722fe2012-08-24 22:40:14 -070036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 /** Create a new connection with the surface flinger. */
Mathew Inwoode5ad5982018-08-17 15:07:52 +010038 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 public SurfaceSession() {
Jeff Brown64a55af2012-08-26 02:47:39 -070040 mNativeClient = nativeCreate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041 }
42
Robert Carrd5c7dd62017-03-08 10:39:30 -080043 public SurfaceSession(Surface root) {
44 mNativeClient = nativeCreateScoped(root.mNativeObject);
45 }
46
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 /* no user serviceable parts here ... */
48 @Override
49 protected void finalize() throws Throwable {
Jeff Brown0b722fe2012-08-24 22:40:14 -070050 try {
Jeff Brown64a55af2012-08-26 02:47:39 -070051 if (mNativeClient != 0) {
52 nativeDestroy(mNativeClient);
53 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070054 } finally {
55 super.finalize();
56 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070058
59 /**
60 * Forcibly detach native resources associated with this object.
61 * Unlike destroy(), after this call any surfaces that were created
Jeff Brown64a55af2012-08-26 02:47:39 -070062 * from the session will no longer work.
Jeff Brown0b722fe2012-08-24 22:40:14 -070063 */
Mathew Inwoode5ad5982018-08-17 15:07:52 +010064 @UnsupportedAppUsage
Jeff Brown0b722fe2012-08-24 22:40:14 -070065 public void kill() {
Jeff Brown64a55af2012-08-26 02:47:39 -070066 nativeKill(mNativeClient);
Jeff Brown0b722fe2012-08-24 22:40:14 -070067 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068}
69