blob: a2fd128e22468c916ea44f64cc1a13fb3a1a4937 [file] [log] [blame]
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07001/*
2 * Copyright (C) 2020 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.window;
18
19import android.annotation.NonNull;
20import android.annotation.RequiresPermission;
21import android.annotation.TestApi;
22import android.os.RemoteException;
23import android.util.Singleton;
chaviw7de50002020-04-27 12:33:30 -070024import android.view.SurfaceControl;
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070025
26/**
27 * Interface for WindowManager to delegate control of display areas.
28 * @hide
29 */
30@TestApi
31public class DisplayAreaOrganizer extends WindowOrganizer {
32
33 public static final int FEATURE_UNDEFINED = -1;
34 public static final int FEATURE_SYSTEM_FIRST = 0;
35 // The Root display area on a display
36 public static final int FEATURE_ROOT = FEATURE_SYSTEM_FIRST;
Andrii Kulian44b3c562020-04-01 12:49:56 -070037 // Display area hosting the default task container.
38 public static final int FEATURE_DEFAULT_TASK_CONTAINER = FEATURE_SYSTEM_FIRST + 1;
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070039 // Display area hosting non-activity window tokens.
40 public static final int FEATURE_WINDOW_TOKENS = FEATURE_SYSTEM_FIRST + 2;
41
42 public static final int FEATURE_SYSTEM_LAST = 10_000;
43
44 // Vendor specific display area definition can start with this value.
45 public static final int FEATURE_VENDOR_FIRST = FEATURE_SYSTEM_LAST + 1;
46
47 @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
48 public void registerOrganizer(int displayAreaFeature) {
49 try {
50 getController().registerOrganizer(mInterface, displayAreaFeature);
51 } catch (RemoteException e) {
52 throw e.rethrowFromSystemServer();
53 }
54 }
55
chaviw9d07e622020-04-21 09:16:57 -070056 /**
57 * @hide
58 */
59 @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
60 public void unregisterOrganizer() {
61 try {
62 getController().unregisterOrganizer(mInterface);
63 } catch (RemoteException e) {
64 throw e.rethrowFromSystemServer();
65 }
66 }
67
chaviw7de50002020-04-27 12:33:30 -070068 public void onDisplayAreaAppeared(@NonNull DisplayAreaInfo displayAreaInfo,
69 @NonNull SurfaceControl leash) {}
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070070
chaviwd1a23932020-04-20 17:53:10 -070071 public void onDisplayAreaVanished(@NonNull DisplayAreaInfo displayAreaInfo) {}
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070072
chaviw9d07e622020-04-21 09:16:57 -070073 /**
74 * @hide
75 */
76 public void onDisplayAreaInfoChanged(@NonNull DisplayAreaInfo displayAreaInfo) {}
77
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070078 private final IDisplayAreaOrganizer mInterface = new IDisplayAreaOrganizer.Stub() {
79
80 @Override
chaviw7de50002020-04-27 12:33:30 -070081 public void onDisplayAreaAppeared(@NonNull DisplayAreaInfo displayAreaInfo,
82 @NonNull SurfaceControl leash) {
83 DisplayAreaOrganizer.this.onDisplayAreaAppeared(displayAreaInfo, leash);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070084 }
85
86 @Override
chaviwd1a23932020-04-20 17:53:10 -070087 public void onDisplayAreaVanished(@NonNull DisplayAreaInfo displayAreaInfo) {
88 DisplayAreaOrganizer.this.onDisplayAreaVanished(displayAreaInfo);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070089 }
chaviw9d07e622020-04-21 09:16:57 -070090
91 @Override
92 public void onDisplayAreaInfoChanged(@NonNull DisplayAreaInfo displayAreaInfo) {
93 DisplayAreaOrganizer.this.onDisplayAreaInfoChanged(displayAreaInfo);
94 }
Wale Ogunwaleadf116e2020-03-27 16:36:01 -070095 };
96
97 private static IDisplayAreaOrganizerController getController() {
98 return IDisplayAreaOrganizerControllerSingleton.get();
99 }
100
101 private static final Singleton<IDisplayAreaOrganizerController>
102 IDisplayAreaOrganizerControllerSingleton =
103 new Singleton<IDisplayAreaOrganizerController>() {
104 @Override
105 protected IDisplayAreaOrganizerController create() {
106 try {
107 return getWindowOrganizerController()
108 .getDisplayAreaOrganizerController();
109 } catch (RemoteException e) {
110 return null;
111 }
112 }
113 };
114
115}