blob: 01be6919757940edfc7963fc1edba68430b1010f [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;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070022import android.app.ActivityTaskManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080023import android.app.IUiModeManager;
24import android.app.Notification;
25import android.app.NotificationManager;
26import android.app.PendingIntent;
27import android.app.StatusBarManager;
28import android.app.UiModeManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080029import android.content.BroadcastReceiver;
30import android.content.Context;
31import android.content.Intent;
32import android.content.IntentFilter;
33import android.content.pm.PackageManager;
34import android.content.res.Configuration;
Alan Viverette4cc1e9e2015-02-12 11:01:06 -080035import android.content.res.Resources;
Mike Lockwoode29db6a2010-03-05 13:45:51 -050036import android.os.BatteryManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080037import android.os.Binder;
Dianne Hackborn7299c412010-03-04 18:41:49 -080038import android.os.Handler;
Mike Lockwoode29db6a2010-03-05 13:45:51 -050039import android.os.PowerManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -080040import android.os.RemoteException;
Alan Viveretteba0d98f2017-01-30 10:36:54 -050041import android.os.ResultReceiver;
Zak Cohen1a705732017-01-09 12:54:34 -080042import android.os.ServiceManager;
Alan Viveretteba0d98f2017-01-30 10:36:54 -050043import android.os.ShellCallback;
44import android.os.ShellCommand;
Jason Monk97a06a12016-11-09 15:53:30 -050045import android.os.SystemProperties;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070046import android.os.UserHandle;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -070047import android.provider.Settings;
Jeff Brown11159e92012-10-11 15:58:37 -070048import android.service.dreams.Sandman;
Zak Cohen1a705732017-01-09 12:54:34 -080049import android.service.vr.IVrManager;
50import android.service.vr.IVrStateCallbacks;
Jason Monk524fb402017-01-25 10:33:31 -050051import android.text.TextUtils;
Dianne Hackborn7299c412010-03-04 18:41:49 -080052import android.util.Slog;
53
Jason Monk524fb402017-01-25 10:33:31 -050054import java.io.File;
Dianne Hackborn7299c412010-03-04 18:41:49 -080055import java.io.FileDescriptor;
56import java.io.PrintWriter;
Jason Monk524fb402017-01-25 10:33:31 -050057import java.util.ArrayList;
58import java.util.Collections;
Dianne Hackborn7299c412010-03-04 18:41:49 -080059
60import com.android.internal.R;
61import com.android.internal.app.DisableCarModeActivity;
Chris Wren282cfef2017-03-27 15:01:44 -040062import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
Geoffrey Pitschaf759c52017-02-15 09:35:38 -050063import com.android.internal.notification.SystemNotificationChannels;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -060064import com.android.internal.util.DumpUtils;
Jason Monk97a06a12016-11-09 15:53:30 -050065import com.android.server.power.ShutdownThread;
Adam Lesinski182f73f2013-12-05 16:48:06 -080066import com.android.server.twilight.TwilightListener;
67import com.android.server.twilight.TwilightManager;
68import com.android.server.twilight.TwilightState;
Dianne Hackborn7299c412010-03-04 18:41:49 -080069
Adam Lesinski182f73f2013-12-05 16:48:06 -080070final class UiModeManagerService extends SystemService {
Dianne Hackborn7299c412010-03-04 18:41:49 -080071 private static final String TAG = UiModeManager.class.getSimpleName();
72 private static final boolean LOG = false;
73
Daniel Sandler11ddf532011-11-16 11:10:03 -080074 // Enable launching of applications when entering the dock.
John Spurlock960779d2012-05-29 14:37:05 -040075 private static final boolean ENABLE_LAUNCH_DESK_DOCK_APP = true;
Daniel Sandler11ddf532011-11-16 11:10:03 -080076
Dianne Hackborn7299c412010-03-04 18:41:49 -080077 final Object mLock = new Object();
Dianne Hackborn7299c412010-03-04 18:41:49 -080078 private int mDockState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Bernd Holzheyba9ab182010-03-12 09:30:29 +010079
Adam Lesinski182f73f2013-12-05 16:48:06 -080080 private int mLastBroadcastState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Alan Viverette4cc1e9e2015-02-12 11:01:06 -080081 private int mNightMode = UiModeManager.MODE_NIGHT_NO;
Adam Lesinski182f73f2013-12-05 16:48:06 -080082
Dianne Hackborn7299c412010-03-04 18:41:49 -080083 private boolean mCarModeEnabled = false;
Mike Lockwoode29db6a2010-03-05 13:45:51 -050084 private boolean mCharging = false;
Lucas Dupin53c6e292018-07-12 18:42:53 -070085 private boolean mPowerSave = false;
Adam Lesinski182f73f2013-12-05 16:48:06 -080086 private int mDefaultUiModeType;
87 private boolean mCarModeKeepsScreenOn;
88 private boolean mDeskModeKeepsScreenOn;
89 private boolean mTelevision;
John Spurlock6c191292014-04-03 16:37:27 -040090 private boolean mWatch;
Zak Cohen1a705732017-01-09 12:54:34 -080091 private boolean mVrHeadset;
Dianne Hackborn7299c412010-03-04 18:41:49 -080092 private boolean mComputedNightMode;
keunyoung1d0a7cc2014-07-28 13:12:50 -070093 private int mCarModeEnableFlags;
Adam Lesinski182f73f2013-12-05 16:48:06 -080094
keunyounga7710492015-09-23 11:33:58 -070095 // flag set by resource, whether to enable Car dock launch when starting car mode.
96 private boolean mEnableCarDockLaunch = true;
97 // flag set by resource, whether to lock UI mode to the default one or not.
98 private boolean mUiModeLocked = false;
99 // flag set by resource, whether to night mode change for normal all or not.
100 private boolean mNightModeLocked = false;
101
Adam Lesinski182f73f2013-12-05 16:48:06 -0800102 int mCurUiMode = 0;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800103 private int mSetUiMode = 0;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800104 private boolean mHoldingConfiguration = false;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800105
Dianne Hackborn7299c412010-03-04 18:41:49 -0800106 private Configuration mConfiguration = new Configuration();
Adam Lesinski182f73f2013-12-05 16:48:06 -0800107 boolean mSystemReady;
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100108
Adam Lesinski182f73f2013-12-05 16:48:06 -0800109 private final Handler mHandler = new Handler();
Dianne Hackborn7299c412010-03-04 18:41:49 -0800110
Adam Lesinski182f73f2013-12-05 16:48:06 -0800111 private TwilightManager mTwilightManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800112 private NotificationManager mNotificationManager;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800113 private StatusBarManager mStatusBarManager;
Jeff Brown9fca9e92012-10-05 14:42:56 -0700114
Adam Lesinski182f73f2013-12-05 16:48:06 -0800115 private PowerManager.WakeLock mWakeLock;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800116
Jeff Brownb880d882014-02-10 19:47:07 -0800117 public UiModeManagerService(Context context) {
118 super(context);
119 }
120
Adam Lesinski182f73f2013-12-05 16:48:06 -0800121 private static Intent buildHomeIntent(String category) {
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700122 Intent intent = new Intent(Intent.ACTION_MAIN);
123 intent.addCategory(category);
124 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
125 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
126 return intent;
127 }
John Spurlock960779d2012-05-29 14:37:05 -0400128
Dianne Hackborn7299c412010-03-04 18:41:49 -0800129 // The broadcast receiver which receives the result of the ordered broadcast sent when
130 // the dock state changes. The original ordered broadcast is sent with an initial result
131 // code of RESULT_OK. If any of the registered broadcast receivers changes this value, e.g.,
132 // to RESULT_CANCELED, then the intent to start a dock app will not be sent.
133 private final BroadcastReceiver mResultReceiver = new BroadcastReceiver() {
134 @Override
135 public void onReceive(Context context, Intent intent) {
136 if (getResultCode() != Activity.RESULT_OK) {
Daniel Sandler69a1da42011-11-04 15:08:30 -0400137 if (LOG) {
John Spurlock960779d2012-05-29 14:37:05 -0400138 Slog.v(TAG, "Handling broadcast result for action " + intent.getAction()
Daniel Sandler69a1da42011-11-04 15:08:30 -0400139 + ": canceled: " + getResultCode());
140 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800141 return;
142 }
143
Jeff Brown62c82e42012-09-26 01:30:41 -0700144 final int enableFlags = intent.getIntExtra("enableFlags", 0);
145 final int disableFlags = intent.getIntExtra("disableFlags", 0);
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800146 synchronized (mLock) {
Jeff Brown62c82e42012-09-26 01:30:41 -0700147 updateAfterBroadcastLocked(intent.getAction(), enableFlags, disableFlags);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800148 }
149 }
150 };
151
Dianne Hackborn7299c412010-03-04 18:41:49 -0800152 private final BroadcastReceiver mDockModeReceiver = new BroadcastReceiver() {
153 @Override
154 public void onReceive(Context context, Intent intent) {
155 int state = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
156 Intent.EXTRA_DOCK_STATE_UNDOCKED);
157 updateDockState(state);
158 }
159 };
160
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500161 private final BroadcastReceiver mBatteryReceiver = new BroadcastReceiver() {
162 @Override
163 public void onReceive(Context context, Intent intent) {
Lucas Dupin53c6e292018-07-12 18:42:53 -0700164 switch (intent.getAction()) {
165 case Intent.ACTION_BATTERY_CHANGED:
166 mCharging = intent.getIntExtra(BatteryManager.EXTRA_PLUGGED, 0) != 0;
167 break;
168 case PowerManager.ACTION_POWER_SAVE_MODE_CHANGING:
169 mPowerSave = intent.getBooleanExtra(PowerManager.EXTRA_POWER_SAVE_MODE, false);
170 break;
171 }
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500172 synchronized (mLock) {
173 if (mSystemReady) {
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700174 updateLocked(0, 0);
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500175 }
176 }
177 }
178 };
179
Adam Lesinski182f73f2013-12-05 16:48:06 -0800180 private final TwilightListener mTwilightListener = new TwilightListener() {
Dianne Hackborn57f45032010-06-17 15:49:33 -0700181 @Override
Justin Klaassen908b86c2016-08-08 09:18:42 -0700182 public void onTwilightStateChanged(@Nullable TwilightState state) {
183 synchronized (mLock) {
184 if (mNightMode == UiModeManager.MODE_NIGHT_AUTO) {
185 updateComputedNightModeLocked();
186 updateLocked(0, 0);
187 }
188 }
Dianne Hackborn57f45032010-06-17 15:49:33 -0700189 }
190 };
191
Zak Cohen1a705732017-01-09 12:54:34 -0800192 private final IVrStateCallbacks mVrStateCallbacks = new IVrStateCallbacks.Stub() {
193 @Override
194 public void onVrStateChanged(boolean enabled) {
195 synchronized (mLock) {
196 mVrHeadset = enabled;
197 if (mSystemReady) {
198 updateLocked(0, 0);
199 }
200 }
201 }
202 };
203
Adam Lesinski182f73f2013-12-05 16:48:06 -0800204 @Override
205 public void onStart() {
206 final Context context = getContext();
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800207
Adam Lesinski182f73f2013-12-05 16:48:06 -0800208 final PowerManager powerManager =
209 (PowerManager) context.getSystemService(Context.POWER_SERVICE);
210 mWakeLock = powerManager.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800211
Adam Lesinski182f73f2013-12-05 16:48:06 -0800212 context.registerReceiver(mDockModeReceiver,
Dianne Hackborn7299c412010-03-04 18:41:49 -0800213 new IntentFilter(Intent.ACTION_DOCK_EVENT));
Lucas Dupin53c6e292018-07-12 18:42:53 -0700214 IntentFilter batteryFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
215 batteryFilter.addAction(PowerManager.ACTION_POWER_SAVE_MODE_CHANGING);
216 context.registerReceiver(mBatteryReceiver, batteryFilter);
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500217
Dianne Hackborn7299c412010-03-04 18:41:49 -0800218 mConfiguration.setToDefaults();
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500219
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800220 final Resources res = context.getResources();
221 mDefaultUiModeType = res.getInteger(
Joe Onorato44fcb832011-12-14 20:59:30 -0800222 com.android.internal.R.integer.config_defaultUiModeType);
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800223 mCarModeKeepsScreenOn = (res.getInteger(
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500224 com.android.internal.R.integer.config_carDockKeepsScreenOn) == 1);
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800225 mDeskModeKeepsScreenOn = (res.getInteger(
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500226 com.android.internal.R.integer.config_deskDockKeepsScreenOn) == 1);
keunyounga7710492015-09-23 11:33:58 -0700227 mEnableCarDockLaunch = res.getBoolean(
228 com.android.internal.R.bool.config_enableCarDockHomeLaunch);
229 mUiModeLocked = res.getBoolean(com.android.internal.R.bool.config_lockUiMode);
230 mNightModeLocked = res.getBoolean(com.android.internal.R.bool.config_lockDayNightMode);
Dianne Hackborn0cf2c8a2012-05-17 17:29:49 -0700231
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800232 final PackageManager pm = context.getPackageManager();
233 mTelevision = pm.hasSystemFeature(PackageManager.FEATURE_TELEVISION)
234 || pm.hasSystemFeature(PackageManager.FEATURE_LEANBACK);
235 mWatch = pm.hasSystemFeature(PackageManager.FEATURE_WATCH);
236
237 final int defaultNightMode = res.getInteger(
238 com.android.internal.R.integer.config_defaultNightMode);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800239 mNightMode = Settings.Secure.getInt(context.getContentResolver(),
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800240 Settings.Secure.UI_NIGHT_MODE, defaultNightMode);
Jeff Brown2416e092012-08-21 22:12:20 -0700241
Adam Lesinski05199e82015-03-19 14:37:11 -0700242 // Update the initial, static configurations.
Fyodor Kupolove29a5a12016-12-16 16:14:17 -0800243 SystemServerInitThreadPool.get().submit(() -> {
244 synchronized (mLock) {
245 updateConfigurationLocked();
246 sendConfigurationLocked();
247 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800248
Fyodor Kupolove29a5a12016-12-16 16:14:17 -0800249 }, TAG + ".onStart");
Adam Lesinski182f73f2013-12-05 16:48:06 -0800250 publishBinderService(Context.UI_MODE_SERVICE, mService);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800251 }
252
Alan Viveretteba0d98f2017-01-30 10:36:54 -0500253 private final IUiModeManager.Stub mService = new IUiModeManager.Stub() {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800254 @Override
255 public void enableCarMode(int flags) {
keunyounga7710492015-09-23 11:33:58 -0700256 if (isUiModeLocked()) {
257 Slog.e(TAG, "enableCarMode while UI mode is locked");
258 return;
259 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800260 final long ident = Binder.clearCallingIdentity();
261 try {
262 synchronized (mLock) {
keunyoung1d0a7cc2014-07-28 13:12:50 -0700263 setCarModeLocked(true, flags);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800264 if (mSystemReady) {
265 updateLocked(flags, 0);
266 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700267 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800268 } finally {
269 Binder.restoreCallingIdentity(ident);
Mike Lockwood924e1642010-03-05 11:56:53 -0500270 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800271 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800272
Adam Lesinski182f73f2013-12-05 16:48:06 -0800273 @Override
274 public void disableCarMode(int flags) {
keunyounga7710492015-09-23 11:33:58 -0700275 if (isUiModeLocked()) {
276 Slog.e(TAG, "disableCarMode while UI mode is locked");
277 return;
278 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800279 final long ident = Binder.clearCallingIdentity();
280 try {
281 synchronized (mLock) {
keunyoung1d0a7cc2014-07-28 13:12:50 -0700282 setCarModeLocked(false, 0);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800283 if (mSystemReady) {
284 updateLocked(0, flags);
285 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700286 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800287 } finally {
288 Binder.restoreCallingIdentity(ident);
Mike Lockwood924e1642010-03-05 11:56:53 -0500289 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700290 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100291
Adam Lesinski182f73f2013-12-05 16:48:06 -0800292 @Override
293 public int getCurrentModeType() {
294 final long ident = Binder.clearCallingIdentity();
295 try {
296 synchronized (mLock) {
297 return mCurUiMode & Configuration.UI_MODE_TYPE_MASK;
Jeff Brown487bb6e2012-10-11 13:35:42 -0700298 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800299 } finally {
300 Binder.restoreCallingIdentity(ident);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800301 }
302 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100303
Adam Lesinski182f73f2013-12-05 16:48:06 -0800304 @Override
305 public void setNightMode(int mode) {
Lucas Dupinc5aaf452018-09-20 16:10:07 -0700306 if (isNightModeLocked() && (getContext().checkCallingOrSelfPermission(
keunyounga7710492015-09-23 11:33:58 -0700307 android.Manifest.permission.MODIFY_DAY_NIGHT_MODE)
308 != PackageManager.PERMISSION_GRANTED)) {
Lucas Dupinc5aaf452018-09-20 16:10:07 -0700309 Slog.e(TAG, "Night mode locked, requires MODIFY_DAY_NIGHT_MODE permission");
keunyounga7710492015-09-23 11:33:58 -0700310 return;
311 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800312 switch (mode) {
313 case UiModeManager.MODE_NIGHT_NO:
314 case UiModeManager.MODE_NIGHT_YES:
315 case UiModeManager.MODE_NIGHT_AUTO:
316 break;
317 default:
318 throw new IllegalArgumentException("Unknown mode: " + mode);
319 }
320
321 final long ident = Binder.clearCallingIdentity();
322 try {
323 synchronized (mLock) {
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800324 if (mNightMode != mode) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800325 Settings.Secure.putInt(getContext().getContentResolver(),
326 Settings.Secure.UI_NIGHT_MODE, mode);
327 mNightMode = mode;
328 updateLocked(0, 0);
329 }
330 }
331 } finally {
332 Binder.restoreCallingIdentity(ident);
333 }
334 }
335
336 @Override
337 public int getNightMode() {
338 synchronized (mLock) {
339 return mNightMode;
340 }
341 }
342
343 @Override
keunyounga7710492015-09-23 11:33:58 -0700344 public boolean isUiModeLocked() {
345 synchronized (mLock) {
346 return mUiModeLocked;
347 }
348 }
349
350 @Override
351 public boolean isNightModeLocked() {
352 synchronized (mLock) {
353 return mNightModeLocked;
354 }
355 }
356
357 @Override
Alan Viveretteba0d98f2017-01-30 10:36:54 -0500358 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err,
359 String[] args, ShellCallback callback, ResultReceiver resultReceiver) {
360 new Shell(mService).exec(mService, in, out, err, args, callback, resultReceiver);
361 }
362
363 @Override
Adam Lesinski182f73f2013-12-05 16:48:06 -0800364 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -0600365 if (!DumpUtils.checkDumpPermission(getContext(), TAG, pw)) return;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800366 dumpImpl(pw);
367 }
368 };
369
370 void dumpImpl(PrintWriter pw) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700371 synchronized (mLock) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800372 pw.println("Current UI Mode Service state:");
373 pw.print(" mDockState="); pw.print(mDockState);
374 pw.print(" mLastBroadcastState="); pw.println(mLastBroadcastState);
375 pw.print(" mNightMode="); pw.print(mNightMode);
keunyounga7710492015-09-23 11:33:58 -0700376 pw.print(" mNightModeLocked="); pw.print(mNightModeLocked);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800377 pw.print(" mCarModeEnabled="); pw.print(mCarModeEnabled);
keunyoung1d0a7cc2014-07-28 13:12:50 -0700378 pw.print(" mComputedNightMode="); pw.print(mComputedNightMode);
keunyounga7710492015-09-23 11:33:58 -0700379 pw.print(" mCarModeEnableFlags="); pw.print(mCarModeEnableFlags);
380 pw.print(" mEnableCarDockLaunch="); pw.println(mEnableCarDockLaunch);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800381 pw.print(" mCurUiMode=0x"); pw.print(Integer.toHexString(mCurUiMode));
keunyounga7710492015-09-23 11:33:58 -0700382 pw.print(" mUiModeLocked="); pw.print(mUiModeLocked);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800383 pw.print(" mSetUiMode=0x"); pw.println(Integer.toHexString(mSetUiMode));
384 pw.print(" mHoldingConfiguration="); pw.print(mHoldingConfiguration);
385 pw.print(" mSystemReady="); pw.println(mSystemReady);
Adam Lesinski05199e82015-03-19 14:37:11 -0700386 if (mTwilightManager != null) {
387 // We may not have a TwilightManager.
Justin Klaassen908b86c2016-08-08 09:18:42 -0700388 pw.print(" mTwilightService.getLastTwilightState()=");
389 pw.println(mTwilightManager.getLastTwilightState());
Adam Lesinski05199e82015-03-19 14:37:11 -0700390 }
Jeff Brown487bb6e2012-10-11 13:35:42 -0700391 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800392 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100393
Adam Lesinski182f73f2013-12-05 16:48:06 -0800394 @Override
395 public void onBootPhase(int phase) {
396 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
397 synchronized (mLock) {
Adam Lesinski05199e82015-03-19 14:37:11 -0700398 mTwilightManager = getLocalService(TwilightManager.class);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800399 mSystemReady = true;
400 mCarModeEnabled = mDockState == Intent.EXTRA_DOCK_STATE_CAR;
401 updateComputedNightModeLocked();
Zak Cohen1a705732017-01-09 12:54:34 -0800402 registerVrStateListener();
Adam Lesinski182f73f2013-12-05 16:48:06 -0800403 updateLocked(0, 0);
404 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800405 }
406 }
407
keunyoung1d0a7cc2014-07-28 13:12:50 -0700408 void setCarModeLocked(boolean enabled, int flags) {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800409 if (mCarModeEnabled != enabled) {
410 mCarModeEnabled = enabled;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800411 }
keunyoung1d0a7cc2014-07-28 13:12:50 -0700412 mCarModeEnableFlags = flags;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800413 }
414
Jeff Brown487bb6e2012-10-11 13:35:42 -0700415 private void updateDockState(int newState) {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800416 synchronized (mLock) {
417 if (newState != mDockState) {
418 mDockState = newState;
keunyoung1d0a7cc2014-07-28 13:12:50 -0700419 setCarModeLocked(mDockState == Intent.EXTRA_DOCK_STATE_CAR, 0);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800420 if (mSystemReady) {
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700421 updateLocked(UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME, 0);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800422 }
423 }
424 }
425 }
Mike Lockwoode29db6a2010-03-05 13:45:51 -0500426
Jeff Brown487bb6e2012-10-11 13:35:42 -0700427 private static boolean isDeskDockState(int state) {
Daniel Sandler69a1da42011-11-04 15:08:30 -0400428 switch (state) {
429 case Intent.EXTRA_DOCK_STATE_DESK:
430 case Intent.EXTRA_DOCK_STATE_LE_DESK:
431 case Intent.EXTRA_DOCK_STATE_HE_DESK:
432 return true;
433 default:
434 return false;
435 }
436 }
437
Jeff Brown487bb6e2012-10-11 13:35:42 -0700438 private void updateConfigurationLocked() {
John Spurlock6c191292014-04-03 16:37:27 -0400439 int uiMode = mDefaultUiModeType;
keunyounga7710492015-09-23 11:33:58 -0700440 if (mUiModeLocked) {
441 // no-op, keeps default one
442 } else if (mTelevision) {
John Spurlock6c191292014-04-03 16:37:27 -0400443 uiMode = Configuration.UI_MODE_TYPE_TELEVISION;
444 } else if (mWatch) {
445 uiMode = Configuration.UI_MODE_TYPE_WATCH;
446 } else if (mCarModeEnabled) {
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800447 uiMode = Configuration.UI_MODE_TYPE_CAR;
Daniel Sandler69a1da42011-11-04 15:08:30 -0400448 } else if (isDeskDockState(mDockState)) {
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800449 uiMode = Configuration.UI_MODE_TYPE_DESK;
Zak Cohen1a705732017-01-09 12:54:34 -0800450 } else if (mVrHeadset) {
451 uiMode = Configuration.UI_MODE_TYPE_VR_HEADSET;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800452 }
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800453
454 if (mNightMode == UiModeManager.MODE_NIGHT_AUTO) {
Justin Klaassen908b86c2016-08-08 09:18:42 -0700455 if (mTwilightManager != null) {
456 mTwilightManager.registerListener(mTwilightListener, mHandler);
457 }
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800458 updateComputedNightModeLocked();
459 uiMode |= mComputedNightMode ? Configuration.UI_MODE_NIGHT_YES
460 : Configuration.UI_MODE_NIGHT_NO;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800461 } else {
Justin Klaassen908b86c2016-08-08 09:18:42 -0700462 if (mTwilightManager != null) {
463 mTwilightManager.unregisterListener(mTwilightListener);
464 }
Alan Viverette4cc1e9e2015-02-12 11:01:06 -0800465 uiMode |= mNightMode << 4;
Daniel Sandler8daf2a42010-04-02 10:15:09 -0400466 }
467
Lucas Dupin53c6e292018-07-12 18:42:53 -0700468 if (mPowerSave && !mNightModeLocked) {
469 uiMode &= ~Configuration.UI_MODE_NIGHT_NO;
470 uiMode |= Configuration.UI_MODE_NIGHT_YES;
471 }
472
Daniel Sandler8daf2a42010-04-02 10:15:09 -0400473 if (LOG) {
John Spurlock960779d2012-05-29 14:37:05 -0400474 Slog.d(TAG,
475 "updateConfigurationLocked: mDockState=" + mDockState
Daniel Sandler8daf2a42010-04-02 10:15:09 -0400476 + "; mCarMode=" + mCarModeEnabled
477 + "; mNightMode=" + mNightMode
478 + "; uiMode=" + uiMode);
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800479 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100480
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800481 mCurUiMode = uiMode;
Jeff Brown62c82e42012-09-26 01:30:41 -0700482 if (!mHoldingConfiguration) {
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700483 mConfiguration.uiMode = uiMode;
Jeff Brown62c82e42012-09-26 01:30:41 -0700484 }
485 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100486
Jeff Brown487bb6e2012-10-11 13:35:42 -0700487 private void sendConfigurationLocked() {
Jeff Brown62c82e42012-09-26 01:30:41 -0700488 if (mSetUiMode != mConfiguration.uiMode) {
489 mSetUiMode = mConfiguration.uiMode;
490
491 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700492 ActivityTaskManager.getService().updateConfiguration(mConfiguration);
Jeff Brown62c82e42012-09-26 01:30:41 -0700493 } catch (RemoteException e) {
494 Slog.w(TAG, "Failure communicating with activity manager", e);
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800495 }
496 }
497 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100498
Adam Lesinski182f73f2013-12-05 16:48:06 -0800499 void updateLocked(int enableFlags, int disableFlags) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700500 String action = null;
501 String oldAction = null;
502 if (mLastBroadcastState == Intent.EXTRA_DOCK_STATE_CAR) {
503 adjustStatusBarCarModeLocked();
504 oldAction = UiModeManager.ACTION_EXIT_CAR_MODE;
505 } else if (isDeskDockState(mLastBroadcastState)) {
506 oldAction = UiModeManager.ACTION_EXIT_DESK_MODE;
507 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100508
Jeff Brown487bb6e2012-10-11 13:35:42 -0700509 if (mCarModeEnabled) {
510 if (mLastBroadcastState != Intent.EXTRA_DOCK_STATE_CAR) {
Tobias Haamel780b2602010-03-15 12:54:45 +0100511 adjustStatusBarCarModeLocked();
Jeff Brown487bb6e2012-10-11 13:35:42 -0700512 if (oldAction != null) {
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700513 sendForegroundBroadcastToAllUsers(oldAction);
Jeff Brown487bb6e2012-10-11 13:35:42 -0700514 }
515 mLastBroadcastState = Intent.EXTRA_DOCK_STATE_CAR;
516 action = UiModeManager.ACTION_ENTER_CAR_MODE;
517 }
518 } else if (isDeskDockState(mDockState)) {
519 if (!isDeskDockState(mLastBroadcastState)) {
520 if (oldAction != null) {
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700521 sendForegroundBroadcastToAllUsers(oldAction);
Jeff Brown487bb6e2012-10-11 13:35:42 -0700522 }
523 mLastBroadcastState = mDockState;
524 action = UiModeManager.ACTION_ENTER_DESK_MODE;
525 }
526 } else {
527 mLastBroadcastState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
528 action = oldAction;
529 }
530
531 if (action != null) {
532 if (LOG) {
533 Slog.v(TAG, String.format(
534 "updateLocked: preparing broadcast: action=%s enable=0x%08x disable=0x%08x",
535 action, enableFlags, disableFlags));
Dianne Hackborn7299c412010-03-04 18:41:49 -0800536 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100537
Jeff Brown487bb6e2012-10-11 13:35:42 -0700538 // Send the ordered broadcast; the result receiver will receive after all
539 // broadcasts have been sent. If any broadcast receiver changes the result
540 // code from the initial value of RESULT_OK, then the result receiver will
541 // not launch the corresponding dock application. This gives apps a chance
542 // to override the behavior and stay in their app even when the device is
543 // placed into a dock.
544 Intent intent = new Intent(action);
545 intent.putExtra("enableFlags", enableFlags);
546 intent.putExtra("disableFlags", disableFlags);
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700547 intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800548 getContext().sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT, null,
Jeff Brown487bb6e2012-10-11 13:35:42 -0700549 mResultReceiver, null, Activity.RESULT_OK, null, null);
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100550
Jeff Brown487bb6e2012-10-11 13:35:42 -0700551 // Attempting to make this transition a little more clean, we are going
552 // to hold off on doing a configuration change until we have finished
553 // the broadcast and started the home activity.
554 mHoldingConfiguration = true;
555 updateConfigurationLocked();
556 } else {
557 String category = null;
558 if (mCarModeEnabled) {
keunyounga7710492015-09-23 11:33:58 -0700559 if (mEnableCarDockLaunch
Jeff Brown487bb6e2012-10-11 13:35:42 -0700560 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
561 category = Intent.CATEGORY_CAR_DOCK;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800562 }
Daniel Sandler69a1da42011-11-04 15:08:30 -0400563 } else if (isDeskDockState(mDockState)) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700564 if (ENABLE_LAUNCH_DESK_DOCK_APP
565 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
566 category = Intent.CATEGORY_DESK_DOCK;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800567 }
568 } else {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700569 if ((disableFlags & UiModeManager.DISABLE_CAR_MODE_GO_HOME) != 0) {
570 category = Intent.CATEGORY_HOME;
571 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800572 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100573
Jeff Brown487bb6e2012-10-11 13:35:42 -0700574 if (LOG) {
575 Slog.v(TAG, "updateLocked: null action, mDockState="
576 + mDockState +", category=" + category);
577 }
Daniel Sandler69a1da42011-11-04 15:08:30 -0400578
Jeff Brown487bb6e2012-10-11 13:35:42 -0700579 sendConfigurationAndStartDreamOrDockAppLocked(category);
580 }
Jeff Brown62c82e42012-09-26 01:30:41 -0700581
Jeff Brown487bb6e2012-10-11 13:35:42 -0700582 // keep screen on when charging and in car mode
583 boolean keepScreenOn = mCharging &&
keunyoung1d0a7cc2014-07-28 13:12:50 -0700584 ((mCarModeEnabled && mCarModeKeepsScreenOn &&
keunyoungc093bf22014-08-11 18:51:15 -0700585 (mCarModeEnableFlags & UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP) == 0) ||
Jeff Brown487bb6e2012-10-11 13:35:42 -0700586 (mCurUiMode == Configuration.UI_MODE_TYPE_DESK && mDeskModeKeepsScreenOn));
587 if (keepScreenOn != mWakeLock.isHeld()) {
588 if (keepScreenOn) {
589 mWakeLock.acquire();
Dianne Hackbornf5c5d222010-04-09 13:14:48 -0700590 } else {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700591 mWakeLock.release();
Dianne Hackborn7299c412010-03-04 18:41:49 -0800592 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800593 }
594 }
595
Adrian Roos2fbf4d52016-10-20 14:40:51 -0700596 private void sendForegroundBroadcastToAllUsers(String action) {
597 getContext().sendBroadcastAsUser(new Intent(action)
598 .addFlags(Intent.FLAG_RECEIVER_FOREGROUND), UserHandle.ALL);
599 }
600
Jeff Brown62c82e42012-09-26 01:30:41 -0700601 private void updateAfterBroadcastLocked(String action, int enableFlags, int disableFlags) {
602 // Launch a dock activity
603 String category = null;
604 if (UiModeManager.ACTION_ENTER_CAR_MODE.equals(action)) {
605 // Only launch car home when car mode is enabled and the caller
606 // has asked us to switch to it.
keunyounga7710492015-09-23 11:33:58 -0700607 if (mEnableCarDockLaunch
Jeff Brown62c82e42012-09-26 01:30:41 -0700608 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
609 category = Intent.CATEGORY_CAR_DOCK;
610 }
611 } else if (UiModeManager.ACTION_ENTER_DESK_MODE.equals(action)) {
612 // Only launch car home when desk mode is enabled and the caller
613 // has asked us to switch to it. Currently re-using the car
614 // mode flag since we don't have a formal API for "desk mode".
615 if (ENABLE_LAUNCH_DESK_DOCK_APP
616 && (enableFlags & UiModeManager.ENABLE_CAR_MODE_GO_CAR_HOME) != 0) {
617 category = Intent.CATEGORY_DESK_DOCK;
618 }
619 } else {
620 // Launch the standard home app if requested.
621 if ((disableFlags & UiModeManager.DISABLE_CAR_MODE_GO_HOME) != 0) {
622 category = Intent.CATEGORY_HOME;
623 }
624 }
625
626 if (LOG) {
627 Slog.v(TAG, String.format(
628 "Handling broadcast result for action %s: enable=0x%08x, disable=0x%08x, "
629 + "category=%s",
630 action, enableFlags, disableFlags, category));
631 }
632
633 sendConfigurationAndStartDreamOrDockAppLocked(category);
634 }
635
636 private void sendConfigurationAndStartDreamOrDockAppLocked(String category) {
637 // Update the configuration but don't send it yet.
638 mHoldingConfiguration = false;
639 updateConfigurationLocked();
640
641 // Start the dock app, if there is one.
642 boolean dockAppStarted = false;
643 if (category != null) {
644 // Now we are going to be careful about switching the
645 // configuration and starting the activity -- we need to
646 // do this in a specific order under control of the
647 // activity manager, to do it cleanly. So compute the
648 // new config, but don't set it yet, and let the
649 // activity manager take care of both the start and config
650 // change.
651 Intent homeIntent = buildHomeIntent(category);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800652 if (Sandman.shouldStartDockApp(getContext(), homeIntent)) {
Jeff Brown11159e92012-10-11 15:58:37 -0700653 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700654 int result = ActivityTaskManager.getService().startActivityWithConfig(
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800655 null, null, homeIntent, null, null, null, 0, 0,
Jeff Brown11159e92012-10-11 15:58:37 -0700656 mConfiguration, null, UserHandle.USER_CURRENT);
Bryce Lee7f936862017-05-09 15:33:18 -0700657 if (ActivityManager.isStartResultSuccessful(result)) {
Jeff Brown11159e92012-10-11 15:58:37 -0700658 dockAppStarted = true;
659 } else if (result != ActivityManager.START_INTENT_NOT_RESOLVED) {
660 Slog.e(TAG, "Could not start dock app: " + homeIntent
661 + ", startActivityWithConfig result " + result);
662 }
663 } catch (RemoteException ex) {
664 Slog.e(TAG, "Could not start dock app: " + homeIntent, ex);
Jeff Brown62c82e42012-09-26 01:30:41 -0700665 }
Jeff Brown62c82e42012-09-26 01:30:41 -0700666 }
667 }
668
669 // Send the new configuration.
670 sendConfigurationLocked();
671
672 // If we did not start a dock app, then start dreaming if supported.
Jeff Brown11159e92012-10-11 15:58:37 -0700673 if (category != null && !dockAppStarted) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800674 Sandman.startDreamWhenDockedIfAppropriate(getContext());
Jeff Brown62c82e42012-09-26 01:30:41 -0700675 }
676 }
677
Dianne Hackborn7299c412010-03-04 18:41:49 -0800678 private void adjustStatusBarCarModeLocked() {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800679 final Context context = getContext();
Dianne Hackborn7299c412010-03-04 18:41:49 -0800680 if (mStatusBarManager == null) {
Jeff Brown487bb6e2012-10-11 13:35:42 -0700681 mStatusBarManager = (StatusBarManager)
Adam Lesinski182f73f2013-12-05 16:48:06 -0800682 context.getSystemService(Context.STATUS_BAR_SERVICE);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800683 }
684
Joe Onorato089de882010-04-12 08:18:45 -0700685 // Fear not: StatusBarManagerService manages a list of requests to disable
Dianne Hackborn7299c412010-03-04 18:41:49 -0800686 // features of the status bar; these are ORed together to form the
687 // active disabled list. So if (for example) the device is locked and
688 // the status bar should be totally disabled, the calls below will
689 // have no effect until the device is unlocked.
690 if (mStatusBarManager != null) {
691 mStatusBarManager.disable(mCarModeEnabled
692 ? StatusBarManager.DISABLE_NOTIFICATION_TICKER
693 : StatusBarManager.DISABLE_NONE);
694 }
695
696 if (mNotificationManager == null) {
697 mNotificationManager = (NotificationManager)
Adam Lesinski182f73f2013-12-05 16:48:06 -0800698 context.getSystemService(Context.NOTIFICATION_SERVICE);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800699 }
700
701 if (mNotificationManager != null) {
702 if (mCarModeEnabled) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800703 Intent carModeOffIntent = new Intent(context, DisableCarModeActivity.class);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800704
Geoffrey Pitschaf759c52017-02-15 09:35:38 -0500705 Notification.Builder n =
706 new Notification.Builder(context, SystemNotificationChannels.CAR_MODE)
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400707 .setSmallIcon(R.drawable.stat_notify_car_mode)
708 .setDefaults(Notification.DEFAULT_LIGHTS)
709 .setOngoing(true)
710 .setWhen(0)
711 .setColor(context.getColor(
712 com.android.internal.R.color.system_notification_accent_color))
713 .setContentTitle(
714 context.getString(R.string.car_mode_disable_notification_title))
715 .setContentText(
716 context.getString(R.string.car_mode_disable_notification_message))
717 .setContentIntent(
718 PendingIntent.getActivityAsUser(context, 0, carModeOffIntent, 0,
719 null, UserHandle.CURRENT));
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700720 mNotificationManager.notifyAsUser(null,
Chris Wren282cfef2017-03-27 15:01:44 -0400721 SystemMessage.NOTE_CAR_MODE_DISABLE, n.build(), UserHandle.ALL);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800722 } else {
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700723 mNotificationManager.cancelAsUser(null,
Chris Wren282cfef2017-03-27 15:01:44 -0400724 SystemMessage.NOTE_CAR_MODE_DISABLE, UserHandle.ALL);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800725 }
726 }
727 }
728
Jeff Brown2416e092012-08-21 22:12:20 -0700729 private void updateComputedNightModeLocked() {
Adam Lesinski05199e82015-03-19 14:37:11 -0700730 if (mTwilightManager != null) {
Justin Klaassen908b86c2016-08-08 09:18:42 -0700731 TwilightState state = mTwilightManager.getLastTwilightState();
Adam Lesinski05199e82015-03-19 14:37:11 -0700732 if (state != null) {
733 mComputedNightMode = state.isNight();
734 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800735 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800736 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100737
Zak Cohen1a705732017-01-09 12:54:34 -0800738 private void registerVrStateListener() {
Craig Donner8deb67c2017-02-07 18:10:32 -0800739 IVrManager vrManager = IVrManager.Stub.asInterface(ServiceManager.getService(
740 Context.VR_SERVICE));
Zak Cohen1a705732017-01-09 12:54:34 -0800741 try {
742 if (vrManager != null) {
743 vrManager.registerListener(mVrStateCallbacks);
744 }
745 } catch (RemoteException e) {
746 Slog.e(TAG, "Failed to register VR mode state listener: " + e);
747 }
748 }
Bernd Holzheyba9ab182010-03-12 09:30:29 +0100749
Alan Viveretteba0d98f2017-01-30 10:36:54 -0500750 /**
751 * Handles "adb shell" commands.
752 */
753 private static class Shell extends ShellCommand {
754 public static final String NIGHT_MODE_STR_YES = "yes";
755 public static final String NIGHT_MODE_STR_NO = "no";
756 public static final String NIGHT_MODE_STR_AUTO = "auto";
757 public static final String NIGHT_MODE_STR_UNKNOWN = "unknown";
758 private final IUiModeManager mInterface;
759
760 Shell(IUiModeManager iface) {
761 mInterface = iface;
762 }
763
764 @Override
765 public void onHelp() {
766 final PrintWriter pw = getOutPrintWriter();
767 pw.println("UiModeManager service (uimode) commands:");
768 pw.println(" help");
769 pw.println(" Print this help text.");
770 pw.println(" night [yes|no|auto]");
771 pw.println(" Set or read night mode.");
772 }
773
774 @Override
775 public int onCommand(String cmd) {
776 if (cmd == null) {
777 return handleDefaultCommands(cmd);
778 }
779
780 try {
781 switch (cmd) {
782 case "night":
783 return handleNightMode();
784 default:
785 return handleDefaultCommands(cmd);
786 }
787 } catch (RemoteException e) {
788 final PrintWriter err = getErrPrintWriter();
789 err.println("Remote exception: " + e);
790 }
791 return -1;
792 }
793
794 private int handleNightMode() throws RemoteException {
795 final PrintWriter err = getErrPrintWriter();
796 final String modeStr = getNextArg();
797 if (modeStr == null) {
798 printCurrentNightMode();
799 return 0;
800 }
801
802 final int mode = strToNightMode(modeStr);
803 if (mode >= 0) {
804 mInterface.setNightMode(mode);
805 printCurrentNightMode();
806 return 0;
807 } else {
808 err.println("Error: mode must be '" + NIGHT_MODE_STR_YES + "', '"
809 + NIGHT_MODE_STR_NO + "', or '" + NIGHT_MODE_STR_AUTO + "'");
810 return -1;
811 }
812 }
813
814 private void printCurrentNightMode() throws RemoteException {
815 final PrintWriter pw = getOutPrintWriter();
816 final int currMode = mInterface.getNightMode();
817 final String currModeStr = nightModeToStr(currMode);
818 pw.println("Night mode: " + currModeStr);
819 }
820
821 private static String nightModeToStr(int mode) {
822 switch (mode) {
823 case UiModeManager.MODE_NIGHT_YES:
824 return NIGHT_MODE_STR_YES;
825 case UiModeManager.MODE_NIGHT_NO:
826 return NIGHT_MODE_STR_NO;
827 case UiModeManager.MODE_NIGHT_AUTO:
828 return NIGHT_MODE_STR_AUTO;
829 default:
830 return NIGHT_MODE_STR_UNKNOWN;
831 }
832 }
833
834 private static int strToNightMode(String modeStr) {
835 switch (modeStr) {
836 case NIGHT_MODE_STR_YES:
837 return UiModeManager.MODE_NIGHT_YES;
838 case NIGHT_MODE_STR_NO:
839 return UiModeManager.MODE_NIGHT_NO;
840 case NIGHT_MODE_STR_AUTO:
841 return UiModeManager.MODE_NIGHT_AUTO;
842 default:
843 return -1;
844 }
845 }
846 }
Dianne Hackborn7299c412010-03-04 18:41:49 -0800847}