blob: b5912bc1e1c898301fd9194b140408dc4eb2e18b [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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019/**
20 * An instance of this class represents a connection to the surface
Jeff Brown64a55af2012-08-26 02:47:39 -070021 * flinger, from which you can create one or more Surface instances that will
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022 * be composited to the screen.
23 * {@hide}
24 */
Jeff Brown64a55af2012-08-26 02:47:39 -070025public final class SurfaceSession {
26 // Note: This field is accessed by native code.
Ashok Bhata3850d82014-01-08 15:34:15 +000027 private long mNativeClient; // SurfaceComposerClient*
Jeff Brown0b722fe2012-08-24 22:40:14 -070028
Ashok Bhata3850d82014-01-08 15:34:15 +000029 private static native long nativeCreate();
Robert Carrd5c7dd62017-03-08 10:39:30 -080030 private static native long nativeCreateScoped(long surfacePtr);
Ashok Bhata3850d82014-01-08 15:34:15 +000031 private static native void nativeDestroy(long ptr);
32 private static native void nativeKill(long ptr);
Jeff Brown0b722fe2012-08-24 22:40:14 -070033
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034 /** Create a new connection with the surface flinger. */
35 public SurfaceSession() {
Jeff Brown64a55af2012-08-26 02:47:39 -070036 mNativeClient = nativeCreate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 }
38
Robert Carrd5c7dd62017-03-08 10:39:30 -080039 public SurfaceSession(Surface root) {
40 mNativeClient = nativeCreateScoped(root.mNativeObject);
41 }
42
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043 /* no user serviceable parts here ... */
44 @Override
45 protected void finalize() throws Throwable {
Jeff Brown0b722fe2012-08-24 22:40:14 -070046 try {
Jeff Brown64a55af2012-08-26 02:47:39 -070047 if (mNativeClient != 0) {
48 nativeDestroy(mNativeClient);
49 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070050 } finally {
51 super.finalize();
52 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070054
55 /**
56 * Forcibly detach native resources associated with this object.
57 * Unlike destroy(), after this call any surfaces that were created
Jeff Brown64a55af2012-08-26 02:47:39 -070058 * from the session will no longer work.
Jeff Brown0b722fe2012-08-24 22:40:14 -070059 */
60 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