blob: 3cf5af4846259143ddbba5d687c38c6ff36728fd [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();
30 private static native void nativeDestroy(long ptr);
31 private static native void nativeKill(long ptr);
Jeff Brown0b722fe2012-08-24 22:40:14 -070032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 /** Create a new connection with the surface flinger. */
34 public SurfaceSession() {
Jeff Brown64a55af2012-08-26 02:47:39 -070035 mNativeClient = nativeCreate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 }
37
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038 /* no user serviceable parts here ... */
39 @Override
40 protected void finalize() throws Throwable {
Jeff Brown0b722fe2012-08-24 22:40:14 -070041 try {
Jeff Brown64a55af2012-08-26 02:47:39 -070042 if (mNativeClient != 0) {
43 nativeDestroy(mNativeClient);
44 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070045 } finally {
46 super.finalize();
47 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048 }
Jeff Brown0b722fe2012-08-24 22:40:14 -070049
50 /**
51 * Forcibly detach native resources associated with this object.
52 * Unlike destroy(), after this call any surfaces that were created
Jeff Brown64a55af2012-08-26 02:47:39 -070053 * from the session will no longer work.
Jeff Brown0b722fe2012-08-24 22:40:14 -070054 */
55 public void kill() {
Jeff Brown64a55af2012-08-26 02:47:39 -070056 nativeKill(mNativeClient);
Jeff Brown0b722fe2012-08-24 22:40:14 -070057 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058}
59