blob: 701b9f179f9cf6fbf8772f3112d8495b6d06687b [file] [log] [blame]
Jeff Brownfa25bf52012-07-23 19:26:30 -07001/*
2 * Copyright (C) 2012 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 com.android.server.display;
18
Jeff Brownbd6e1502012-08-28 03:27:37 -070019import android.content.Context;
20import android.os.Handler;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -070021import android.view.Display;
Jeff Brownbd6e1502012-08-28 03:27:37 -070022
23import java.io.PrintWriter;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -070024import java.util.concurrent.atomic.AtomicInteger;
Jeff Brownbd6e1502012-08-28 03:27:37 -070025
Jeff Brownfa25bf52012-07-23 19:26:30 -070026/**
Jeff Brown848c2dc2012-08-19 20:18:08 -070027 * A display adapter makes zero or more display devices available to the system
28 * and provides facilities for discovering when displays are connected or disconnected.
Jeff Brownfa25bf52012-07-23 19:26:30 -070029 * <p>
30 * For now, all display adapters are registered in the system server but
31 * in principle it could be done from other processes.
Jeff Brownbd6e1502012-08-28 03:27:37 -070032 * </p><p>
Jeff Brown4ed8fe72012-08-30 18:18:29 -070033 * Display adapters are guarded by the {@link DisplayManagerService.SyncRoot} lock.
Jeff Brownfa25bf52012-07-23 19:26:30 -070034 * </p>
35 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -070036abstract class DisplayAdapter {
37 private final DisplayManagerService.SyncRoot mSyncRoot;
Jeff Brownbd6e1502012-08-28 03:27:37 -070038 private final Context mContext;
Jeff Brownbd6e1502012-08-28 03:27:37 -070039 private final Handler mHandler;
Jeff Brown4ed8fe72012-08-30 18:18:29 -070040 private final Listener mListener;
41 private final String mName;
Jeff Brownbd6e1502012-08-28 03:27:37 -070042
43 public static final int DISPLAY_DEVICE_EVENT_ADDED = 1;
44 public static final int DISPLAY_DEVICE_EVENT_CHANGED = 2;
45 public static final int DISPLAY_DEVICE_EVENT_REMOVED = 3;
46
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -070047 /**
48 * Used to generate globally unique display mode ids.
49 */
50 private static final AtomicInteger NEXT_DISPLAY_MODE_ID = new AtomicInteger(1); // 0 = no mode.
51
Michael Wright58e829f2015-09-15 00:13:26 +010052 /**
53 * Used to generate globally unique color transform ids.
54 *
55 * Valid IDs start at 1 with 0 as the sentinel value for the default mode.
56 */
57 private static final AtomicInteger NEXT_COLOR_TRANSFORM_ID = new AtomicInteger(1);
58
Jeff Brown66692502012-10-18 16:13:44 -070059 // Called with SyncRoot lock held.
Jeff Brown4ed8fe72012-08-30 18:18:29 -070060 public DisplayAdapter(DisplayManagerService.SyncRoot syncRoot,
61 Context context, Handler handler, Listener listener, String name) {
62 mSyncRoot = syncRoot;
Jeff Brownbd6e1502012-08-28 03:27:37 -070063 mContext = context;
Jeff Brown4ed8fe72012-08-30 18:18:29 -070064 mHandler = handler;
65 mListener = listener;
Jeff Brownbd6e1502012-08-28 03:27:37 -070066 mName = name;
Jeff Brownbd6e1502012-08-28 03:27:37 -070067 }
68
Jeff Brown4ed8fe72012-08-30 18:18:29 -070069 /**
70 * Gets the object that the display adapter should synchronize on when handling
71 * calls that come in from outside of the display manager service.
72 */
73 public final DisplayManagerService.SyncRoot getSyncRoot() {
74 return mSyncRoot;
75 }
76
77 /**
78 * Gets the display adapter's context.
79 */
Jeff Brownbd6e1502012-08-28 03:27:37 -070080 public final Context getContext() {
81 return mContext;
82 }
83
Jeff Brown4ed8fe72012-08-30 18:18:29 -070084 /**
85 * Gets a handler that the display adapter may use to post asynchronous messages.
86 */
Jeff Brownbd6e1502012-08-28 03:27:37 -070087 public final Handler getHandler() {
88 return mHandler;
89 }
90
Jeff Brownfa25bf52012-07-23 19:26:30 -070091 /**
Jeff Brown848c2dc2012-08-19 20:18:08 -070092 * Gets the display adapter name for debugging purposes.
Jeff Brownfa25bf52012-07-23 19:26:30 -070093 */
Jeff Brownbd6e1502012-08-28 03:27:37 -070094 public final String getName() {
95 return mName;
96 }
Jeff Brownfa25bf52012-07-23 19:26:30 -070097
Jeff Brown848c2dc2012-08-19 20:18:08 -070098 /**
99 * Registers the display adapter with the display manager.
Jeff Brown848c2dc2012-08-19 20:18:08 -0700100 *
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700101 * The display adapter should register any built-in display devices as soon as possible.
102 * The boot process will wait for the default display to be registered.
103 * Other display devices can be registered dynamically later.
Jeff Brown848c2dc2012-08-19 20:18:08 -0700104 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700105 public void registerLocked() {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700106 }
107
108 /**
109 * Dumps the local state of the display adapter.
110 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700111 public void dumpLocked(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700112 }
113
114 /**
115 * Sends a display device event to the display adapter listener asynchronously.
116 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700117 protected final void sendDisplayDeviceEventLocked(
118 final DisplayDevice device, final int event) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700119 mHandler.post(new Runnable() {
120 @Override
121 public void run() {
122 mListener.onDisplayDeviceEvent(device, event);
123 }
124 });
125 }
Jeff Brown848c2dc2012-08-19 20:18:08 -0700126
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700127 /**
128 * Sends a request to perform traversals.
129 */
130 protected final void sendTraversalRequestLocked() {
131 mHandler.post(new Runnable() {
132 @Override
133 public void run() {
134 mListener.onTraversalRequested();
135 }
136 });
137 }
138
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700139 public static Display.Mode createMode(int width, int height, float refreshRate) {
140 return new Display.Mode(
141 NEXT_DISPLAY_MODE_ID.getAndIncrement(), width, height, refreshRate);
142 }
143
Michael Wright58e829f2015-09-15 00:13:26 +0100144 public static Display.ColorTransform createColorTransform(int colorTransform) {
145 return new Display.ColorTransform(
146 NEXT_COLOR_TRANSFORM_ID.getAndIncrement(), colorTransform);
147 }
148
Jeff Brown848c2dc2012-08-19 20:18:08 -0700149 public interface Listener {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700150 public void onDisplayDeviceEvent(DisplayDevice device, int event);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700151 public void onTraversalRequested();
Jeff Brown848c2dc2012-08-19 20:18:08 -0700152 }
Jeff Brownfa25bf52012-07-23 19:26:30 -0700153}