blob: 440ac90a99d8ab903a008a84b3b02bda2f364f24 [file] [log] [blame]
Dianne Hackborn7299c412010-03-04 18:41:49 -08001/*
2 * Copyright (C) 2008 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;
18
Justin Klaassen908b86c2016-08-08 09:18:42 -070019import android.annotation.Nullable;
Dianne Hackborn7299c412010-03-04 18:41:49 -080020import android.app.Activity;
Jeff Brown62c82e42012-09-26 01:30:41 -070021import android.app.ActivityManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080022import android.app.IUiModeManager;
23import android.app.Notification;
24import android.app.NotificationManager;
25import android.app.PendingIntent;
26import android.app.StatusBarManager;
27import android.app.UiModeManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080028import android.content.BroadcastReceiver;
29import android.content.Context;
30import android.content.Intent;
31import android.content.IntentFilter;
32import android.content.pm.PackageManager;
33import android.content.res.Configuration;
Alan Viverette4cc1e9e2015-02-12 11:01:06 -080034import android.content.res.Resources;
Mike Lockwoode29db6a2010-03-05 13:45:51 -050035import android.os.BatteryManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080036import android.os.Binder;
Dianne Hackborn7299c412010-03-04 18:41:49 -080037import android.os.Handler;
Adam Lesinski182f73f2013-12-05 16:48:06 -080038import android.os.IBinder;
Mike Lockwoode29db6a2010-03-05 13:45:51 -050039import android.os.PowerManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080040import android.os.RemoteException;
Zak Cohen1a705732017-01-09 12:54:34 -080041import android.os.ServiceManager;
Jason Monk97a06a12016-11-09 15:53:30 -050042import android.os.SystemProperties;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070043import android.os.UserHandle;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -070044import android.provider.Settings;
Jeff Brown11159e92012-10-11 15:58:37 -070045import android.service.dreams.Sandman;
Zak Cohen1a705732017-01-09 12:54:34 -080046import android.service.vr.IVrManager;
47import android.service.vr.IVrStateCallbacks;
Dianne Hackborn7299c412010-03-04 18:41:49 -080048import android.util.Slog;
Jason Monk97a06a12016-11-09 15:53:30 -050049import android.view.WindowManagerInternal;
50import android.view.WindowManagerPolicy;
Dianne Hackborn7299c412010-03-04 18:41:49 -080051
52import java.io.FileDescriptor;
53import java.io.PrintWriter;
54
55import com.android.internal.R;
56import com.android.internal.app.DisableCarModeActivity;
Jason Monk97a06a12016-11-09 15:53:30 -050057import com.android.server.power.ShutdownThread;
Adam Lesinski182f73f2013-12-05 16:48:06 -080058import com.android.server.twilight.TwilightListener;
59import com.android.server.twilight.TwilightManager;
60import com.android.server.twilight.TwilightState;
Jason Monk97a06a12016-11-09 15:53:30 -050061import com.android.server.wm.WindowManagerService;
Dianne Hackborn7299c412010-03-04 18:41:49 -080062
Adam Lesinski182f73f2013-12-05 16:48:06 -080063final class UiModeManagerService extends SystemService {
Dianne Hackborn7299c412010-03-04 18:41:49 -080064 private static final String TAG = UiModeManager.class.getSimpleName();
65 private static final boolean LOG = false;
66
Daniel Sandler11ddf532011-11-16 11:10:03 -080067 // Enable launching of applications when entering the dock.
John Spurlock960779d2012-05-29 14:37:05 -040068 private static final boolean ENABLE_LAUNCH_DESK_DOCK_APP = true;
Daniel Sandler11ddf532011-11-16 11:10:03 -080069
Dianne Hackborn7299c412010-03-04 18:41:49 -080070 final Object mLock = new Object();
Dianne Hackborn7299c412010-03-04 18:41:49 -080071 private int mDockState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Bernd Holzheyba9ab182010-03-12 09:30:29 +010072
Adam Lesinski182f73f2013-12-05 16:48:06 -080073 private int mLastBroadcastState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Alan Viverette4cc1e9e2015-02-12 11:01:06 -080074 private int mNightMode = UiModeManager.MODE_NIGHT_NO;
Adam Lesinski182f73f2013-12-05 16:48:06 -080075
Dianne Hackborn7299c412010-03-04 18:41:49 -080076 private boolean mCarModeEnabled = false;
Mike Lockwoode29db6a2010-03-05 13:45:51 -050077 private boolean mCharging = false;
Adam Lesinski182f73f2013-12-05 16:48:06 -080078 private int mDefaultUiModeType;
79 private boolean mCarModeKeepsScreenOn;
80 private boolean mDeskModeKeepsScreenOn;
81 private boolean mTelevision;
John Spurlock6c191292014-04-03 16:37:27 -040082 private boolean mWatch;
Zak Cohen1a705732017-01-09 12:54:34 -080083 private boolean mVrHeadset;
Dianne Hackborn7299c412010-03-04 18:41:49 -080084 private boolean mComputedNightMode;
keunyoung1d0a7cc2014-07-28 13:12:50 -070085 private int mCarModeEnableFlags;
Adam Lesinski182f73f2013-12-05 16:48:06 -080086
keunyounga7710492015-09-23 11:33:58 -070087 // flag set by resource, whether to enable Car dock launch when starting car mode.
88 private boolean mEnableCarDockLaunch = true;
89 // flag set by resource, whether to lock UI mode to the default one or not.
90 private boolean mUiModeLocked = false;
91 // flag set by resource, whether to night mode change for normal all or not.
92 private boolean mNightModeLocked = false;
93
Adam Lesinski182f73f2013-12-05 16:48:06 -080094 int mCurUiMode = 0;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -080095 private int mSetUiMode = 0;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -080096 private boolean mHoldingConfiguration = false;
Adam Lesinski182f73f2013-12-05 16:48:06 -080097
Dianne Hackborn7299c412010-03-04 18:41:49 -080098 private Configuration mConfiguration = new Configuration();
Adam Lesinski182f73f2013-12-05 16:48:06 -080099 boolean mSystemReady;
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100100
Adam Lesinski182f73f2013-12-05 16:48:06 -0800101 private final Handler mHandler = new Handler();
Dianne Hackborn7299c412010-03-04 18:41:49 -0800102
Adam Lesinski182f73f2013-12-05 16:48:06 -0800103 private TwilightManager mTwilightManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800104 private NotificationManager mNotificationManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800105 private StatusBarManager mStatusBarManager;
Jeff Brown9fca9e92012-10-05 14:42:56 -0700106
Adam Lesinski182f73f2013-12-05 16:48:06 -0800107 private PowerManager.WakeLock mWakeLock;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800108
Jeff Brownb880d882014-02-10 19:47:07 -0800109 public UiModeManagerService(Context context) {
110 super(context);
111 }
112
Adam Lesinski182f73f2013-12-05 16:48:06 -0800113 private static Intent buildHomeIntent(String category) {
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700114 Intent intent = new Intent(Intent.ACTION_MAIN);
115 intent.addCategory(category);
116 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
117 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
118 return intent;
119 }
John Spurlock960779d2012-05-29 14:37:05 -0400120
Dianne Hackborn7299c412010-03-04 18:41:49 -0800121 // The broadcast receiver which receives the result of the ordered broadcast sent when
122 // the dock state changes. The original ordered broadcast is sent with an initial result
123 // code of RESULT_OK. If any of the registered broadcast receivers changes this value, e.g.,
124 // to RESULT_CANCELED, then the intent to start a dock app will not be sent.
125 private final BroadcastReceiver mResultReceiver = new BroadcastReceiver() {
126 @Override
127 public void onReceive(Context context, Intent intent) {
128 if (getResultCode() != Activity.RESULT_OK) {
Daniel Sandler69a1da42011-11-04 15:08:30 -0400129 if (LOG) {
John Spurlock960779d2012-05-29 14:37:05 -0400130 Slog.v(TAG, "Handling broadcast result for action " + intent.getAction()
Daniel Sandler69a1da42011-11-04 15:08:30 -0400131 + ": canceled: " + getResultCode());
132 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800133 return;
134 }
135
Jeff Brown62c82e42012-09-26 01:30:41 -0700136 final int enableFlags = intent.getIntExtra("enableFlags", 0);
137 final int disableFlags = intent.getIntExtra("disableFlags", 0);
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800138 synchronized (mLock) {
Jeff Brown62c82e42012-09-26 01:30:41 -0700139 updateAfterBroadcastLocked(intent.getAction(), enableFlags, disableFlags);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800140 }
141 }
142 };
143
Dianne Hackborn7299c412010-03-04 18:41:49 -0800144 private final BroadcastReceiver mDockModeReceiver = new BroadcastReceiver() {
145 @Override
146 public void onReceive(Context context, Intent intent) {
147 int state = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
148 Intent.EXTRA_DOCK_STATE_UNDOCKED);
149 updateDockState(state);
150 }
151 };
152
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500153 private final BroadcastReceiver mBatteryReceiver = new BroadcastReceiver() {
154 @Override
155 public void onReceive(Context context, Intent intent) {
156 mCharging = (intent.getIntExtra(BatteryManager.EXTRA_PLUGGED, 0) != 0);
157 synchronized (mLock) {
158 if (mSystemReady) {
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700159 updateLocked(0, 0);
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500160 }
161 }
162 }
163 };
164
Adam Lesinski182f73f2013-12-05 16:48:06 -0800165 private final TwilightListener mTwilightListener = new TwilightListener() {
Dianne Hackborn57f45032010-06-17 15:49:33 -0700166 @Override
Justin Klaassen908b86c2016-08-08 09:18:42 -0700167 public void onTwilightStateChanged(@Nullable TwilightState state) {
168 synchronized (mLock) {
169 if (mNightMode == UiModeManager.MODE_NIGHT_AUTO) {
170 updateComputedNightModeLocked();
171 updateLocked(0, 0);
172 }
173 }
Dianne Hackborn57f45032010-06-17 15:49:33 -0700174 }
175 };
176
Zak Cohen1a705732017-01-09 12:54:34 -0800177 private final IVrStateCallbacks mVrStateCallbacks = new IVrStateCallbacks.Stub() {
178 @Override
179 public void onVrStateChanged(boolean enabled) {
180 synchronized (mLock) {
181 mVrHeadset = enabled;
182 if (mSystemReady) {
183 updateLocked(0, 0);
184 }
185 }
186 }
187 };
188
Adam Lesinski182f73f2013-12-05 16:48:06 -0800189 @Override
190 public void onStart() {
191 final Context context = getContext();
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800192
Adam Lesinski182f73f2013-12-05 16:48:06 -0800193 final PowerManager powerManager =
194 (PowerManager) context.getSystemService(Context.POWER_SERVICE);
195 mWakeLock = powerManager.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800196
Adam Lesinski182f73f2013-12-05 16:48:06 -0800197 context.registerReceiver(mDockModeReceiver,
Dianne Hackborn7299c412010-03-04 18:41:49 -0800198 new IntentFilter(Intent.ACTION_DOCK_EVENT));
Adam Lesinski182f73f2013-12-05 16:48:06 -0800199 context.registerReceiver(mBatteryReceiver,
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500200 new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
201
Dianne Hackborn7299c412010-03-04 18:41:49 -0800202 mConfiguration.setToDefaults();
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500203
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800204 final Resources res = context.getResources();
205 mDefaultUiModeType = res.getInteger(
Joe Onorato44fcb832011-12-14 20:59:30 -0800206 com.android.internal.R.integer.config_defaultUiModeType);
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800207 mCarModeKeepsScreenOn = (res.getInteger(
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500208 com.android.internal.R.integer.config_carDockKeepsScreenOn) == 1);
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800209 mDeskModeKeepsScreenOn = (res.getInteger(
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500210 com.android.internal.R.integer.config_deskDockKeepsScreenOn) == 1);
keunyounga7710492015-09-23 11:33:58 -0700211 mEnableCarDockLaunch = res.getBoolean(
212 com.android.internal.R.bool.config_enableCarDockHomeLaunch);
213 mUiModeLocked = res.getBoolean(com.android.internal.R.bool.config_lockUiMode);
214 mNightModeLocked = res.getBoolean(com.android.internal.R.bool.config_lockDayNightMode);
Dianne Hackborn0cf2c8a2012-05-17 17:29:49 -0700215
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800216 final PackageManager pm = context.getPackageManager();
217 mTelevision = pm.hasSystemFeature(PackageManager.FEATURE_TELEVISION)
218 || pm.hasSystemFeature(PackageManager.FEATURE_LEANBACK);
219 mWatch = pm.hasSystemFeature(PackageManager.FEATURE_WATCH);
220
221 final int defaultNightMode = res.getInteger(
222 com.android.internal.R.integer.config_defaultNightMode);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800223 mNightMode = Settings.Secure.getInt(context.getContentResolver(),
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800224 Settings.Secure.UI_NIGHT_MODE, defaultNightMode);
Jeff Brown2416e092012-08-21 22:12:20 -0700225
Adam Lesinski05199e82015-03-19 14:37:11 -0700226 // Update the initial, static configurations.
Fyodor Kupolove29a5a12016-12-16 16:14:17 -0800227 SystemServerInitThreadPool.get().submit(() -> {
228 synchronized (mLock) {
229 updateConfigurationLocked();
230 sendConfigurationLocked();
231 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800232
Fyodor Kupolove29a5a12016-12-16 16:14:17 -0800233 }, TAG + ".onStart");
Adam Lesinski182f73f2013-12-05 16:48:06 -0800234 publishBinderService(Context.UI_MODE_SERVICE, mService);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800235 }
236
Adam Lesinski182f73f2013-12-05 16:48:06 -0800237 private final IBinder mService = new IUiModeManager.Stub() {
238 @Override
239 public void enableCarMode(int flags) {
keunyounga7710492015-09-23 11:33:58 -0700240 if (isUiModeLocked()) {
241 Slog.e(TAG, "enableCarMode while UI mode is locked");
242 return;
243 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800244 final long ident = Binder.clearCallingIdentity();
245 try {
246 synchronized (mLock) {
keunyoung1d0a7cc2014-07-28 13:12:50 -0700247 setCarModeLocked(true, flags);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800248 if (mSystemReady) {
249 updateLocked(flags, 0);
250 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700251 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800252 } finally {
253 Binder.restoreCallingIdentity(ident);
Mike Lockwood924e1642010-03-05 11:56:53 -0500254 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800255 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800256
Adam Lesinski182f73f2013-12-05 16:48:06 -0800257 @Override
258 public void disableCarMode(int flags) {
keunyounga7710492015-09-23 11:33:58 -0700259 if (isUiModeLocked()) {
260 Slog.e(TAG, "disableCarMode while UI mode is locked");
261 return;
262 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800263 final long ident = Binder.clearCallingIdentity();
264 try {
265 synchronized (mLock) {
keunyoung1d0a7cc2014-07-28 13:12:50 -0700266 setCarModeLocked(false, 0);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800267 if (mSystemReady) {
268 updateLocked(0, flags);
269 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700270 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800271 } finally {
272 Binder.restoreCallingIdentity(ident);
Mike Lockwood924e1642010-03-05 11:56:53 -0500273 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700274 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100275
Adam Lesinski182f73f2013-12-05 16:48:06 -0800276 @Override
277 public int getCurrentModeType() {
278 final long ident = Binder.clearCallingIdentity();
279 try {
280 synchronized (mLock) {
281 return mCurUiMode & Configuration.UI_MODE_TYPE_MASK;
Jeff Brown487bb6e2012-10-11 13:35:42 -0700282 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800283 } finally {
284 Binder.restoreCallingIdentity(ident);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800285 }
286 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100287
Adam Lesinski182f73f2013-12-05 16:48:06 -0800288 @Override
289 public void setNightMode(int mode) {
keunyounga7710492015-09-23 11:33:58 -0700290 if (isNightModeLocked() && (getContext().checkCallingOrSelfPermission(
291 android.Manifest.permission.MODIFY_DAY_NIGHT_MODE)
292 != PackageManager.PERMISSION_GRANTED)) {
293 Slog.e(TAG,
294 "Night mode locked, requires MODIFY_DAY_NIGHT_MODE permission");
295 return;
296 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800297 switch (mode) {
298 case UiModeManager.MODE_NIGHT_NO:
299 case UiModeManager.MODE_NIGHT_YES:
300 case UiModeManager.MODE_NIGHT_AUTO:
301 break;
302 default:
303 throw new IllegalArgumentException("Unknown mode: " + mode);
304 }
305
306 final long ident = Binder.clearCallingIdentity();
307 try {
308 synchronized (mLock) {
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800309 if (mNightMode != mode) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800310 Settings.Secure.putInt(getContext().getContentResolver(),
311 Settings.Secure.UI_NIGHT_MODE, mode);
312 mNightMode = mode;
313 updateLocked(0, 0);
314 }
315 }
316 } finally {
317 Binder.restoreCallingIdentity(ident);
318 }
319 }
320
321 @Override
Jason Monk97a06a12016-11-09 15:53:30 -0500322 public void setTheme(String theme) {
323 if (getContext().checkCallingOrSelfPermission(
324 android.Manifest.permission.MODIFY_THEME_OVERLAY)
325 != PackageManager.PERMISSION_GRANTED) {
326 Slog.e(TAG, "setTheme requires MODIFY_THEME_OVERLAY permission");
327 return;
328 }
329 SystemProperties.set("persist.vendor.overlay.theme", theme);
330 mHandler.post(() -> ShutdownThread.reboot(getContext(),
331 PowerManager.SHUTDOWN_USER_REQUESTED, false));
332 }
333
334 @Override
335 public String getTheme() {
336 if (getContext().checkCallingOrSelfPermission(
337 android.Manifest.permission.MODIFY_THEME_OVERLAY)
338 != PackageManager.PERMISSION_GRANTED) {
339 Slog.e(TAG, "setTheme requires MODIFY_THEME_OVERLAY permission");
340 return null;
341 }
342 return SystemProperties.get("persist.vendor.overlay.theme");
343 }
344
345 @Override
Adam Lesinski182f73f2013-12-05 16:48:06 -0800346 public int getNightMode() {
347 synchronized (mLock) {
348 return mNightMode;
349 }
350 }
351
352 @Override
keunyounga7710492015-09-23 11:33:58 -0700353 public boolean isUiModeLocked() {
354 synchronized (mLock) {
355 return mUiModeLocked;
356 }
357 }
358
359 @Override
360 public boolean isNightModeLocked() {
361 synchronized (mLock) {
362 return mNightModeLocked;
363 }
364 }
365
366 @Override
Adam Lesinski182f73f2013-12-05 16:48:06 -0800367 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
368 if (getContext().checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
369 != PackageManager.PERMISSION_GRANTED) {
370
371 pw.println("Permission Denial: can't dump uimode service from from pid="
372 + Binder.getCallingPid()
373 + ", uid=" + Binder.getCallingUid());
374 return;
375 }
376
377 dumpImpl(pw);
378 }
379 };
380
381 void dumpImpl(PrintWriter pw) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700382 synchronized (mLock) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800383 pw.println("Current UI Mode Service state:");
384 pw.print(" mDockState="); pw.print(mDockState);
385 pw.print(" mLastBroadcastState="); pw.println(mLastBroadcastState);
386 pw.print(" mNightMode="); pw.print(mNightMode);
keunyounga7710492015-09-23 11:33:58 -0700387 pw.print(" mNightModeLocked="); pw.print(mNightModeLocked);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800388 pw.print(" mCarModeEnabled="); pw.print(mCarModeEnabled);
keunyoung1d0a7cc2014-07-28 13:12:50 -0700389 pw.print(" mComputedNightMode="); pw.print(mComputedNightMode);
keunyounga7710492015-09-23 11:33:58 -0700390 pw.print(" mCarModeEnableFlags="); pw.print(mCarModeEnableFlags);
391 pw.print(" mEnableCarDockLaunch="); pw.println(mEnableCarDockLaunch);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800392 pw.print(" mCurUiMode=0x"); pw.print(Integer.toHexString(mCurUiMode));
keunyounga7710492015-09-23 11:33:58 -0700393 pw.print(" mUiModeLocked="); pw.print(mUiModeLocked);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800394 pw.print(" mSetUiMode=0x"); pw.println(Integer.toHexString(mSetUiMode));
395 pw.print(" mHoldingConfiguration="); pw.print(mHoldingConfiguration);
396 pw.print(" mSystemReady="); pw.println(mSystemReady);
Adam Lesinski05199e82015-03-19 14:37:11 -0700397 if (mTwilightManager != null) {
398 // We may not have a TwilightManager.
Justin Klaassen908b86c2016-08-08 09:18:42 -0700399 pw.print(" mTwilightService.getLastTwilightState()=");
400 pw.println(mTwilightManager.getLastTwilightState());
Adam Lesinski05199e82015-03-19 14:37:11 -0700401 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700402 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800403 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100404
Adam Lesinski182f73f2013-12-05 16:48:06 -0800405 @Override
406 public void onBootPhase(int phase) {
407 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
408 synchronized (mLock) {
Adam Lesinski05199e82015-03-19 14:37:11 -0700409 mTwilightManager = getLocalService(TwilightManager.class);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800410 mSystemReady = true;
411 mCarModeEnabled = mDockState == Intent.EXTRA_DOCK_STATE_CAR;
412 updateComputedNightModeLocked();
Zak Cohen1a705732017-01-09 12:54:34 -0800413 registerVrStateListener();
Adam Lesinski182f73f2013-12-05 16:48:06 -0800414 updateLocked(0, 0);
415 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800416 }
417 }
418
keunyoung1d0a7cc2014-07-28 13:12:50 -0700419 void setCarModeLocked(boolean enabled, int flags) {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800420 if (mCarModeEnabled != enabled) {
421 mCarModeEnabled = enabled;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800422 }
keunyoung1d0a7cc2014-07-28 13:12:50 -0700423 mCarModeEnableFlags = flags;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800424 }
425
Jeff Brown487bb6e2012-10-11 13:35:42 -0700426 private void updateDockState(int newState) {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800427 synchronized (mLock) {
428 if (newState != mDockState) {
429 mDockState = newState;
keunyoung1d0a7cc2014-07-28 13:12:50 -0700430 setCarModeLocked(mDockState == Intent.EXTRA_DOCK_STATE_CAR, 0);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800431 if (mSystemReady) {
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700432 updateLocked(UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME, 0);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800433 }
434 }
435 }
436 }
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500437
Jeff Brown487bb6e2012-10-11 13:35:42 -0700438 private static boolean isDeskDockState(int state) {
Daniel Sandler69a1da42011-11-04 15:08:30 -0400439 switch (state) {
440 case Intent.EXTRA_DOCK_STATE_DESK:
441 case Intent.EXTRA_DOCK_STATE_LE_DESK:
442 case Intent.EXTRA_DOCK_STATE_HE_DESK:
443 return true;
444 default:
445 return false;
446 }
447 }
448
Jeff Brown487bb6e2012-10-11 13:35:42 -0700449 private void updateConfigurationLocked() {
John Spurlock6c191292014-04-03 16:37:27 -0400450 int uiMode = mDefaultUiModeType;
keunyounga7710492015-09-23 11:33:58 -0700451 if (mUiModeLocked) {
452 // no-op, keeps default one
453 } else if (mTelevision) {
John Spurlock6c191292014-04-03 16:37:27 -0400454 uiMode = Configuration.UI_MODE_TYPE_TELEVISION;
455 } else if (mWatch) {
456 uiMode = Configuration.UI_MODE_TYPE_WATCH;
457 } else if (mCarModeEnabled) {
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800458 uiMode = Configuration.UI_MODE_TYPE_CAR;
Daniel Sandler69a1da42011-11-04 15:08:30 -0400459 } else if (isDeskDockState(mDockState)) {
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800460 uiMode = Configuration.UI_MODE_TYPE_DESK;
Zak Cohen1a705732017-01-09 12:54:34 -0800461 } else if (mVrHeadset) {
462 uiMode = Configuration.UI_MODE_TYPE_VR_HEADSET;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800463 }
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800464
465 if (mNightMode == UiModeManager.MODE_NIGHT_AUTO) {
Justin Klaassen908b86c2016-08-08 09:18:42 -0700466 if (mTwilightManager != null) {
467 mTwilightManager.registerListener(mTwilightListener, mHandler);
468 }
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800469 updateComputedNightModeLocked();
470 uiMode |= mComputedNightMode ? Configuration.UI_MODE_NIGHT_YES
471 : Configuration.UI_MODE_NIGHT_NO;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800472 } else {
Justin Klaassen908b86c2016-08-08 09:18:42 -0700473 if (mTwilightManager != null) {
474 mTwilightManager.unregisterListener(mTwilightListener);
475 }
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800476 uiMode |= mNightMode << 4;
Daniel Sandler8daf2a42010-04-02 10:15:09 -0400477 }
478
479 if (LOG) {
John Spurlock960779d2012-05-29 14:37:05 -0400480 Slog.d(TAG,
481 "updateConfigurationLocked: mDockState=" + mDockState
Daniel Sandler8daf2a42010-04-02 10:15:09 -0400482 + "; mCarMode=" + mCarModeEnabled
483 + "; mNightMode=" + mNightMode
484 + "; uiMode=" + uiMode);
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800485 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100486
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800487 mCurUiMode = uiMode;
Jeff Brown62c82e42012-09-26 01:30:41 -0700488 if (!mHoldingConfiguration) {
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700489 mConfiguration.uiMode = uiMode;
Jeff Brown62c82e42012-09-26 01:30:41 -0700490 }
491 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100492
Jeff Brown487bb6e2012-10-11 13:35:42 -0700493 private void sendConfigurationLocked() {
Jeff Brown62c82e42012-09-26 01:30:41 -0700494 if (mSetUiMode != mConfiguration.uiMode) {
495 mSetUiMode = mConfiguration.uiMode;
496
497 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800498 ActivityManager.getService().updateConfiguration(mConfiguration);
Jeff Brown62c82e42012-09-26 01:30:41 -0700499 } catch (RemoteException e) {
500 Slog.w(TAG, "Failure communicating with activity manager", e);
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800501 }
502 }
503 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100504
Adam Lesinski182f73f2013-12-05 16:48:06 -0800505 void updateLocked(int enableFlags, int disableFlags) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700506 String action = null;
507 String oldAction = null;
508 if (mLastBroadcastState == Intent.EXTRA_DOCK_STATE_CAR) {
509 adjustStatusBarCarModeLocked();
510 oldAction = UiModeManager.ACTION_EXIT_CAR_MODE;
511 } else if (isDeskDockState(mLastBroadcastState)) {
512 oldAction = UiModeManager.ACTION_EXIT_DESK_MODE;
513 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100514
Jeff Brown487bb6e2012-10-11 13:35:42 -0700515 if (mCarModeEnabled) {
516 if (mLastBroadcastState != Intent.EXTRA_DOCK_STATE_CAR) {
Tobias Haamel780b2602010-03-15 12:54:45 +0100517 adjustStatusBarCarModeLocked();
Jeff Brown487bb6e2012-10-11 13:35:42 -0700518 if (oldAction != null) {
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700519 sendForegroundBroadcastToAllUsers(oldAction);
Jeff Brown487bb6e2012-10-11 13:35:42 -0700520 }
521 mLastBroadcastState = Intent.EXTRA_DOCK_STATE_CAR;
522 action = UiModeManager.ACTION_ENTER_CAR_MODE;
523 }
524 } else if (isDeskDockState(mDockState)) {
525 if (!isDeskDockState(mLastBroadcastState)) {
526 if (oldAction != null) {
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700527 sendForegroundBroadcastToAllUsers(oldAction);
Jeff Brown487bb6e2012-10-11 13:35:42 -0700528 }
529 mLastBroadcastState = mDockState;
530 action = UiModeManager.ACTION_ENTER_DESK_MODE;
531 }
532 } else {
533 mLastBroadcastState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
534 action = oldAction;
535 }
536
537 if (action != null) {
538 if (LOG) {
539 Slog.v(TAG, String.format(
540 "updateLocked: preparing broadcast: action=%s enable=0x%08x disable=0x%08x",
541 action, enableFlags, disableFlags));
Dianne Hackborn7299c412010-03-04 18:41:49 -0800542 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100543
Jeff Brown487bb6e2012-10-11 13:35:42 -0700544 // Send the ordered broadcast; the result receiver will receive after all
545 // broadcasts have been sent. If any broadcast receiver changes the result
546 // code from the initial value of RESULT_OK, then the result receiver will
547 // not launch the corresponding dock application. This gives apps a chance
548 // to override the behavior and stay in their app even when the device is
549 // placed into a dock.
550 Intent intent = new Intent(action);
551 intent.putExtra("enableFlags", enableFlags);
552 intent.putExtra("disableFlags", disableFlags);
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700553 intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800554 getContext().sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT, null,
Jeff Brown487bb6e2012-10-11 13:35:42 -0700555 mResultReceiver, null, Activity.RESULT_OK, null, null);
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100556
Jeff Brown487bb6e2012-10-11 13:35:42 -0700557 // Attempting to make this transition a little more clean, we are going
558 // to hold off on doing a configuration change until we have finished
559 // the broadcast and started the home activity.
560 mHoldingConfiguration = true;
561 updateConfigurationLocked();
562 } else {
563 String category = null;
564 if (mCarModeEnabled) {
keunyounga7710492015-09-23 11:33:58 -0700565 if (mEnableCarDockLaunch
Jeff Brown487bb6e2012-10-11 13:35:42 -0700566 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
567 category = Intent.CATEGORY_CAR_DOCK;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800568 }
Daniel Sandler69a1da42011-11-04 15:08:30 -0400569 } else if (isDeskDockState(mDockState)) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700570 if (ENABLE_LAUNCH_DESK_DOCK_APP
571 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
572 category = Intent.CATEGORY_DESK_DOCK;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800573 }
574 } else {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700575 if ((disableFlags & UiModeManager.DISABLE_CAR_MODE_GO_HOME) != 0) {
576 category = Intent.CATEGORY_HOME;
577 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800578 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100579
Jeff Brown487bb6e2012-10-11 13:35:42 -0700580 if (LOG) {
581 Slog.v(TAG, "updateLocked: null action, mDockState="
582 + mDockState +", category=" + category);
583 }
Daniel Sandler69a1da42011-11-04 15:08:30 -0400584
Jeff Brown487bb6e2012-10-11 13:35:42 -0700585 sendConfigurationAndStartDreamOrDockAppLocked(category);
586 }
Jeff Brown62c82e42012-09-26 01:30:41 -0700587
Jeff Brown487bb6e2012-10-11 13:35:42 -0700588 // keep screen on when charging and in car mode
589 boolean keepScreenOn = mCharging &&
keunyoung1d0a7cc2014-07-28 13:12:50 -0700590 ((mCarModeEnabled && mCarModeKeepsScreenOn &&
keunyoungc093bf22014-08-11 18:51:15 -0700591 (mCarModeEnableFlags & UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP) == 0) ||
Jeff Brown487bb6e2012-10-11 13:35:42 -0700592 (mCurUiMode == Configuration.UI_MODE_TYPE_DESK && mDeskModeKeepsScreenOn));
593 if (keepScreenOn != mWakeLock.isHeld()) {
594 if (keepScreenOn) {
595 mWakeLock.acquire();
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700596 } else {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700597 mWakeLock.release();
Dianne Hackborn7299c412010-03-04 18:41:49 -0800598 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800599 }
600 }
601
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700602 private void sendForegroundBroadcastToAllUsers(String action) {
603 getContext().sendBroadcastAsUser(new Intent(action)
604 .addFlags(Intent.FLAG_RECEIVER_FOREGROUND), UserHandle.ALL);
605 }
606
Jeff Brown62c82e42012-09-26 01:30:41 -0700607 private void updateAfterBroadcastLocked(String action, int enableFlags, int disableFlags) {
608 // Launch a dock activity
609 String category = null;
610 if (UiModeManager.ACTION_ENTER_CAR_MODE.equals(action)) {
611 // Only launch car home when car mode is enabled and the caller
612 // has asked us to switch to it.
keunyounga7710492015-09-23 11:33:58 -0700613 if (mEnableCarDockLaunch
Jeff Brown62c82e42012-09-26 01:30:41 -0700614 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
615 category = Intent.CATEGORY_CAR_DOCK;
616 }
617 } else if (UiModeManager.ACTION_ENTER_DESK_MODE.equals(action)) {
618 // Only launch car home when desk mode is enabled and the caller
619 // has asked us to switch to it. Currently re-using the car
620 // mode flag since we don't have a formal API for "desk mode".
621 if (ENABLE_LAUNCH_DESK_DOCK_APP
622 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
623 category = Intent.CATEGORY_DESK_DOCK;
624 }
625 } else {
626 // Launch the standard home app if requested.
627 if ((disableFlags & UiModeManager.DISABLE_CAR_MODE_GO_HOME) != 0) {
628 category = Intent.CATEGORY_HOME;
629 }
630 }
631
632 if (LOG) {
633 Slog.v(TAG, String.format(
634 "Handling broadcast result for action %s: enable=0x%08x, disable=0x%08x, "
635 + "category=%s",
636 action, enableFlags, disableFlags, category));
637 }
638
639 sendConfigurationAndStartDreamOrDockAppLocked(category);
640 }
641
642 private void sendConfigurationAndStartDreamOrDockAppLocked(String category) {
643 // Update the configuration but don't send it yet.
644 mHoldingConfiguration = false;
645 updateConfigurationLocked();
646
647 // Start the dock app, if there is one.
648 boolean dockAppStarted = false;
649 if (category != null) {
650 // Now we are going to be careful about switching the
651 // configuration and starting the activity -- we need to
652 // do this in a specific order under control of the
653 // activity manager, to do it cleanly. So compute the
654 // new config, but don't set it yet, and let the
655 // activity manager take care of both the start and config
656 // change.
657 Intent homeIntent = buildHomeIntent(category);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800658 if (Sandman.shouldStartDockApp(getContext(), homeIntent)) {
Jeff Brown11159e92012-10-11 15:58:37 -0700659 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800660 int result = ActivityManager.getService().startActivityWithConfig(
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800661 null, null, homeIntent, null, null, null, 0, 0,
Jeff Brown11159e92012-10-11 15:58:37 -0700662 mConfiguration, null, UserHandle.USER_CURRENT);
663 if (result >= ActivityManager.START_SUCCESS) {
664 dockAppStarted = true;
665 } else if (result != ActivityManager.START_INTENT_NOT_RESOLVED) {
666 Slog.e(TAG, "Could not start dock app: " + homeIntent
667 + ", startActivityWithConfig result " + result);
668 }
669 } catch (RemoteException ex) {
670 Slog.e(TAG, "Could not start dock app: " + homeIntent, ex);
Jeff Brown62c82e42012-09-26 01:30:41 -0700671 }
Jeff Brown62c82e42012-09-26 01:30:41 -0700672 }
673 }
674
675 // Send the new configuration.
676 sendConfigurationLocked();
677
678 // If we did not start a dock app, then start dreaming if supported.
Jeff Brown11159e92012-10-11 15:58:37 -0700679 if (category != null && !dockAppStarted) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800680 Sandman.startDreamWhenDockedIfAppropriate(getContext());
Jeff Brown62c82e42012-09-26 01:30:41 -0700681 }
682 }
683
Dianne Hackborn7299c412010-03-04 18:41:49 -0800684 private void adjustStatusBarCarModeLocked() {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800685 final Context context = getContext();
Dianne Hackborn7299c412010-03-04 18:41:49 -0800686 if (mStatusBarManager == null) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700687 mStatusBarManager = (StatusBarManager)
Adam Lesinski182f73f2013-12-05 16:48:06 -0800688 context.getSystemService(Context.STATUS_BAR_SERVICE);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800689 }
690
Joe Onorato089de882010-04-12 08:18:45 -0700691 // Fear not: StatusBarManagerService manages a list of requests to disable
Dianne Hackborn7299c412010-03-04 18:41:49 -0800692 // features of the status bar; these are ORed together to form the
693 // active disabled list. So if (for example) the device is locked and
694 // the status bar should be totally disabled, the calls below will
695 // have no effect until the device is unlocked.
696 if (mStatusBarManager != null) {
697 mStatusBarManager.disable(mCarModeEnabled
698 ? StatusBarManager.DISABLE_NOTIFICATION_TICKER
699 : StatusBarManager.DISABLE_NONE);
700 }
701
702 if (mNotificationManager == null) {
703 mNotificationManager = (NotificationManager)
Adam Lesinski182f73f2013-12-05 16:48:06 -0800704 context.getSystemService(Context.NOTIFICATION_SERVICE);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800705 }
706
707 if (mNotificationManager != null) {
708 if (mCarModeEnabled) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800709 Intent carModeOffIntent = new Intent(context, DisableCarModeActivity.class);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800710
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400711 Notification.Builder n = new Notification.Builder(context)
712 .setSmallIcon(R.drawable.stat_notify_car_mode)
713 .setDefaults(Notification.DEFAULT_LIGHTS)
714 .setOngoing(true)
715 .setWhen(0)
716 .setColor(context.getColor(
717 com.android.internal.R.color.system_notification_accent_color))
718 .setContentTitle(
719 context.getString(R.string.car_mode_disable_notification_title))
720 .setContentText(
721 context.getString(R.string.car_mode_disable_notification_message))
722 .setContentIntent(
723 PendingIntent.getActivityAsUser(context, 0, carModeOffIntent, 0,
724 null, UserHandle.CURRENT));
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700725 mNotificationManager.notifyAsUser(null,
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400726 R.string.car_mode_disable_notification_title, n.build(), UserHandle.ALL);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800727 } else {
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700728 mNotificationManager.cancelAsUser(null,
729 R.string.car_mode_disable_notification_title, UserHandle.ALL);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800730 }
731 }
732 }
733
Jeff Brown2416e092012-08-21 22:12:20 -0700734 private void updateComputedNightModeLocked() {
Adam Lesinski05199e82015-03-19 14:37:11 -0700735 if (mTwilightManager != null) {
Justin Klaassen908b86c2016-08-08 09:18:42 -0700736 TwilightState state = mTwilightManager.getLastTwilightState();
Adam Lesinski05199e82015-03-19 14:37:11 -0700737 if (state != null) {
738 mComputedNightMode = state.isNight();
739 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800740 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800741 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100742
Zak Cohen1a705732017-01-09 12:54:34 -0800743 private void registerVrStateListener() {
744 IVrManager vrManager = IVrManager.Stub.asInterface(ServiceManager.getService("vrmanager"));
745 try {
746 if (vrManager != null) {
747 vrManager.registerListener(mVrStateCallbacks);
748 }
749 } catch (RemoteException e) {
750 Slog.e(TAG, "Failed to register VR mode state listener: " + e);
751 }
752 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100753
Dianne Hackborn7299c412010-03-04 18:41:49 -0800754}