blob: 69809a2f0f56831704327e2cc57708f4b3a0efc3 [file] [log] [blame]
John Spurlockd06aa572014-09-10 10:40:49 -04001/*
2 * Copyright (C) 2014 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.systemui.statusbar.phone;
18
19import android.content.Context;
20import android.os.SystemProperties;
Adrian Roosb7e4e102016-10-14 13:03:45 -070021import android.os.UserHandle;
Adrian Roosebea7a72016-10-26 12:51:26 -070022import android.provider.Settings;
John Spurlockd06aa572014-09-10 10:40:49 -040023import android.text.TextUtils;
John Spurlockd06aa572014-09-10 10:40:49 -040024import android.util.MathUtils;
Adrian Roos5753f052016-07-13 10:30:37 -070025import android.util.SparseBooleanArray;
John Spurlockd06aa572014-09-10 10:40:49 -040026
Adrian Roos0261fb22017-03-07 20:20:35 +000027import com.android.internal.hardware.AmbientDisplayConfiguration;
John Spurlockd06aa572014-09-10 10:40:49 -040028import com.android.systemui.R;
29
30import java.io.PrintWriter;
John Spurlockd06aa572014-09-10 10:40:49 -040031
32public class DozeParameters {
Selim Cinekbb998c92015-09-22 10:05:29 +020033 private static final int MAX_DURATION = 60 * 1000;
Adrian Roos7a1654e2017-02-14 14:06:29 +010034 public static final String DOZE_SENSORS_WAKE_UP_FULLY = "doze_sensors_wake_up_fully";
John Spurlockd06aa572014-09-10 10:40:49 -040035
36 private final Context mContext;
Adrian Roos0261fb22017-03-07 20:20:35 +000037 private final AmbientDisplayConfiguration mAmbientDisplayConfiguration;
John Spurlockd06aa572014-09-10 10:40:49 -040038
Adrian Roos5753f052016-07-13 10:30:37 -070039 private static IntInOutMatcher sPickupSubtypePerformsProxMatcher;
40
John Spurlockd06aa572014-09-10 10:40:49 -040041 public DozeParameters(Context context) {
42 mContext = context;
Adrian Roos0261fb22017-03-07 20:20:35 +000043 mAmbientDisplayConfiguration = new AmbientDisplayConfiguration(mContext);
John Spurlockd06aa572014-09-10 10:40:49 -040044 }
45
46 public void dump(PrintWriter pw) {
47 pw.println(" DozeParameters:");
John Spurlock190d0262014-09-14 15:39:13 -040048 pw.print(" getDisplayStateSupported(): "); pw.println(getDisplayStateSupported());
Lucas Dupin9e3fa102017-11-08 17:16:55 -080049 pw.print(" getPulseDuration(): "); pw.println(getPulseDuration());
50 pw.print(" getPulseInDuration(): "); pw.println(getPulseInDuration());
John Spurlockd06aa572014-09-10 10:40:49 -040051 pw.print(" getPulseInVisibleDuration(): "); pw.println(getPulseVisibleDuration());
52 pw.print(" getPulseOutDuration(): "); pw.println(getPulseOutDuration());
John Spurlock190d0262014-09-14 15:39:13 -040053 pw.print(" getPulseOnSigMotion(): "); pw.println(getPulseOnSigMotion());
54 pw.print(" getVibrateOnSigMotion(): "); pw.println(getVibrateOnSigMotion());
John Spurlock190d0262014-09-14 15:39:13 -040055 pw.print(" getVibrateOnPickup(): "); pw.println(getVibrateOnPickup());
John Spurlock686e4d52014-11-20 21:48:09 -050056 pw.print(" getProxCheckBeforePulse(): "); pw.println(getProxCheckBeforePulse());
John Spurlock50a8ea62014-09-16 09:12:03 -040057 pw.print(" getPickupVibrationThreshold(): "); pw.println(getPickupVibrationThreshold());
Adrian Roos5753f052016-07-13 10:30:37 -070058 pw.print(" getPickupSubtypePerformsProxCheck(): ");pw.println(
59 dumpPickupSubtypePerformsProxCheck());
60 }
61
62 private String dumpPickupSubtypePerformsProxCheck() {
63 // Refresh sPickupSubtypePerformsProxMatcher
64 getPickupSubtypePerformsProxCheck(0);
65
66 if (sPickupSubtypePerformsProxMatcher == null) {
67 return "fallback: " + mContext.getResources().getBoolean(
68 R.bool.doze_pickup_performs_proximity_check);
69 } else {
70 return "spec: " + sPickupSubtypePerformsProxMatcher.mSpec;
71 }
John Spurlock190d0262014-09-14 15:39:13 -040072 }
73
74 public boolean getDisplayStateSupported() {
75 return getBoolean("doze.display.supported", R.bool.doze_display_state_supported);
John Spurlockd06aa572014-09-10 10:40:49 -040076 }
77
Adrian Roosa1e6b312017-03-28 16:20:34 -070078 public boolean getDozeSuspendDisplayStateSupported() {
79 return mContext.getResources().getBoolean(R.bool.doze_suspend_display_state_supported);
80 }
81
Lucas Dupin9e3fa102017-11-08 17:16:55 -080082 public int getPulseDuration() {
83 return getPulseInDuration() + getPulseVisibleDuration() + getPulseOutDuration();
John Spurlockd06aa572014-09-10 10:40:49 -040084 }
85
Lucas Dupin7517b5d2017-08-22 12:51:25 -070086 public float getScreenBrightnessDoze() {
87 return mContext.getResources().getInteger(
88 com.android.internal.R.integer.config_screenBrightnessDoze) / 255f;
89 }
90
Lucas Dupin9e3fa102017-11-08 17:16:55 -080091 public int getPulseInDuration() {
92 return getInt("doze.pulse.duration.in", R.integer.doze_pulse_duration_in);
John Spurlockd06aa572014-09-10 10:40:49 -040093 }
94
95 public int getPulseVisibleDuration() {
96 return getInt("doze.pulse.duration.visible", R.integer.doze_pulse_duration_visible);
97 }
98
99 public int getPulseOutDuration() {
100 return getInt("doze.pulse.duration.out", R.integer.doze_pulse_duration_out);
101 }
102
John Spurlock190d0262014-09-14 15:39:13 -0400103 public boolean getPulseOnSigMotion() {
104 return getBoolean("doze.pulse.sigmotion", R.bool.doze_pulse_on_significant_motion);
John Spurlockd06aa572014-09-10 10:40:49 -0400105 }
106
John Spurlock190d0262014-09-14 15:39:13 -0400107 public boolean getVibrateOnSigMotion() {
108 return SystemProperties.getBoolean("doze.vibrate.sigmotion", false);
109 }
110
John Spurlock190d0262014-09-14 15:39:13 -0400111 public boolean getVibrateOnPickup() {
112 return SystemProperties.getBoolean("doze.vibrate.pickup", false);
113 }
114
John Spurlock686e4d52014-11-20 21:48:09 -0500115 public boolean getProxCheckBeforePulse() {
116 return getBoolean("doze.pulse.proxcheck", R.bool.doze_proximity_check_before_pulse);
117 }
118
John Spurlock50a8ea62014-09-16 09:12:03 -0400119 public int getPickupVibrationThreshold() {
120 return getInt("doze.pickup.vibration.threshold", R.integer.doze_pickup_vibration_threshold);
121 }
122
Lucas Dupin7517b5d2017-08-22 12:51:25 -0700123 /**
124 * Checks if always on is available and enabled for the current user.
125 * @return {@code true} if enabled and available.
126 */
Adrian Roosebea7a72016-10-26 12:51:26 -0700127 public boolean getAlwaysOn() {
Adrian Roos0261fb22017-03-07 20:20:35 +0000128 return mAmbientDisplayConfiguration.alwaysOnEnabled(UserHandle.USER_CURRENT);
Adrian Roosebea7a72016-10-26 12:51:26 -0700129 }
130
Lucas Dupin43d0d732017-11-16 11:23:49 -0800131 /**
132 * Some screens need to be completely black before changing the display power mode,
133 * unexpected behavior might happen if this parameter isn't respected.
134 *
Lucas Dupin7517b5d2017-08-22 12:51:25 -0700135 * @return {@code true} if screen needs to be completely black before a power transition.
Lucas Dupin43d0d732017-11-16 11:23:49 -0800136 */
137 public boolean getDisplayNeedsBlanking() {
138 return mContext.getResources().getBoolean(
139 com.android.internal.R.bool.config_displayBlanksAfterDoze);
140 }
141
142 /**
143 * Whether we can implement our own screen off animation or if we need
144 * to rely on DisplayPowerManager to dim the display.
145 *
Lucas Dupin7517b5d2017-08-22 12:51:25 -0700146 * @return {@code true} if SystemUI can control the screen off animation.
Lucas Dupin43d0d732017-11-16 11:23:49 -0800147 */
148 public boolean getCanControlScreenOffAnimation() {
149 return !mContext.getResources().getBoolean(
150 com.android.internal.R.bool.config_dozeAfterScreenOff);
151 }
152
John Spurlock190d0262014-09-14 15:39:13 -0400153 private boolean getBoolean(String propName, int resId) {
154 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId));
John Spurlockd06aa572014-09-10 10:40:49 -0400155 }
156
157 private int getInt(String propName, int resId) {
158 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId));
159 return MathUtils.constrain(value, 0, MAX_DURATION);
160 }
161
162 private String getString(String propName, int resId) {
163 return SystemProperties.get(propName, mContext.getString(resId));
164 }
165
Adrian Roos5753f052016-07-13 10:30:37 -0700166 public boolean getPickupSubtypePerformsProxCheck(int subType) {
167 String spec = getString("doze.pickup.proxcheck",
168 R.string.doze_pickup_subtype_performs_proximity_check);
169
170 if (TextUtils.isEmpty(spec)) {
171 // Fall back to non-subtype based property.
172 return mContext.getResources().getBoolean(R.bool.doze_pickup_performs_proximity_check);
173 }
174
175 if (sPickupSubtypePerformsProxMatcher == null
176 || !TextUtils.equals(spec, sPickupSubtypePerformsProxMatcher.mSpec)) {
177 sPickupSubtypePerformsProxMatcher = new IntInOutMatcher(spec);
178 }
179
180 return sPickupSubtypePerformsProxMatcher.isIn(subType);
181 }
182
Adrian Roos67cca742017-04-13 16:52:51 -0700183 public int getPulseVisibleDurationExtended() {
184 return 2 * getPulseVisibleDuration();
185 }
186
Adrian Roos44198f52017-06-02 12:50:38 -0700187 public boolean doubleTapReportsTouchCoordinates() {
188 return mContext.getResources().getBoolean(R.bool.doze_double_tap_reports_touch_coordinates);
189 }
190
Adrian Roos5753f052016-07-13 10:30:37 -0700191
192 /**
193 * Parses a spec of the form `1,2,3,!5,*`. The resulting object will match numbers that are
194 * listed, will not match numbers that are listed with a ! prefix, and will match / not match
195 * unlisted numbers depending on whether * or !* is present.
196 *
197 * * -> match any numbers that are not explicitly listed
198 * !* -> don't match any numbers that are not explicitly listed
199 * 2 -> match 2
200 * !3 -> don't match 3
201 *
202 * It is illegal to specify:
203 * - an empty spec
204 * - a spec containing that are empty, or a lone !
205 * - a spec for anything other than numbers or *
206 * - multiple terms for the same number / multiple *s
207 */
208 public static class IntInOutMatcher {
209 private static final String WILDCARD = "*";
210 private static final char OUT_PREFIX = '!';
211
212 private final SparseBooleanArray mIsIn;
213 private final boolean mDefaultIsIn;
214 final String mSpec;
215
216 public IntInOutMatcher(String spec) {
217 if (TextUtils.isEmpty(spec)) {
218 throw new IllegalArgumentException("Spec must not be empty");
219 }
220
221 boolean defaultIsIn = false;
222 boolean foundWildcard = false;
223
224 mSpec = spec;
225 mIsIn = new SparseBooleanArray();
226
227 for (String itemPrefixed : spec.split(",", -1)) {
228 if (itemPrefixed.length() == 0) {
229 throw new IllegalArgumentException(
230 "Illegal spec, must not have zero-length items: `" + spec + "`");
231 }
232 boolean isIn = itemPrefixed.charAt(0) != OUT_PREFIX;
233 String item = isIn ? itemPrefixed : itemPrefixed.substring(1);
234
235 if (itemPrefixed.length() == 0) {
236 throw new IllegalArgumentException(
237 "Illegal spec, must not have zero-length items: `" + spec + "`");
238 }
239
240 if (WILDCARD.equals(item)) {
241 if (foundWildcard) {
242 throw new IllegalArgumentException("Illegal spec, `" + WILDCARD +
243 "` must not appear multiple times in `" + spec + "`");
244 }
245 defaultIsIn = isIn;
246 foundWildcard = true;
247 } else {
248 int key = Integer.parseInt(item);
249 if (mIsIn.indexOfKey(key) >= 0) {
250 throw new IllegalArgumentException("Illegal spec, `" + key +
251 "` must not appear multiple times in `" + spec + "`");
252 }
253 mIsIn.put(key, isIn);
254 }
255 }
256
257 if (!foundWildcard) {
258 throw new IllegalArgumentException("Illegal spec, must specify either * or !*");
259 }
260
261 mDefaultIsIn = defaultIsIn;
262 }
263
264 public boolean isIn(int value) {
265 return (mIsIn.get(value, mDefaultIsIn));
266 }
267 }
John Spurlockd06aa572014-09-10 10:40:49 -0400268}