blob: 361ac932758e54b74fd66bd3984bff77e7745fb4 [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 Inwooda570dee2018-08-17 14:56:00 +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 Inwooda570dee2018-08-17 14:56:00 +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();
33 private static native void nativeDestroy(long ptr);
34 private static native void nativeKill(long ptr);
Jeff Brown0b722fe2012-08-24 22:40:14 -070035
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 /** Create a new connection with the surface flinger. */
Mathew Inwooda570dee2018-08-17 14:56:00 +010037 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038 public SurfaceSession() {
Jeff Brown64a55af2012-08-26 02:47:39 -070039 mNativeClient = nativeCreate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040 }
41
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042 /* no user serviceable parts here ... */
43 @Override
44 protected void finalize() throws Throwable {
Jeff Brown0b722fe2012-08-24 22:40:14 -070045 try {
Jeff Brown64a55af2012-08-26 02:47:39 -070046 if (mNativeClient != 0) {
47 nativeDestroy(mNativeClient);
48 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070049 } finally {
50 super.finalize();
51 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070053
54 /**
55 * Forcibly detach native resources associated with this object.
56 * Unlike destroy(), after this call any surfaces that were created
Jeff Brown64a55af2012-08-26 02:47:39 -070057 * from the session will no longer work.
Jeff Brown0b722fe2012-08-24 22:40:14 -070058 */
Mathew Inwooda570dee2018-08-17 14:56:00 +010059 @UnsupportedAppUsage
Jeff Brown0b722fe2012-08-24 22:40:14 -070060 public void kill() {
Jeff Brown64a55af2012-08-26 02:47:39 -070061 nativeKill(mNativeClient);
Jeff Brown0b722fe2012-08-24 22:40:14 -070062 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063}
64