blob: 3f57c2f9384f1ba9a5964f437f998ebd32ddca4f [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 Dupin9e3fa102017-11-08 17:16:55 -080086 public int getPulseInDuration() {
87 return getInt("doze.pulse.duration.in", R.integer.doze_pulse_duration_in);
John Spurlockd06aa572014-09-10 10:40:49 -040088 }
89
90 public int getPulseVisibleDuration() {
91 return getInt("doze.pulse.duration.visible", R.integer.doze_pulse_duration_visible);
92 }
93
94 public int getPulseOutDuration() {
95 return getInt("doze.pulse.duration.out", R.integer.doze_pulse_duration_out);
96 }
97
John Spurlock190d0262014-09-14 15:39:13 -040098 public boolean getPulseOnSigMotion() {
99 return getBoolean("doze.pulse.sigmotion", R.bool.doze_pulse_on_significant_motion);
John Spurlockd06aa572014-09-10 10:40:49 -0400100 }
101
John Spurlock190d0262014-09-14 15:39:13 -0400102 public boolean getVibrateOnSigMotion() {
103 return SystemProperties.getBoolean("doze.vibrate.sigmotion", false);
104 }
105
John Spurlock190d0262014-09-14 15:39:13 -0400106 public boolean getVibrateOnPickup() {
107 return SystemProperties.getBoolean("doze.vibrate.pickup", false);
108 }
109
John Spurlock686e4d52014-11-20 21:48:09 -0500110 public boolean getProxCheckBeforePulse() {
111 return getBoolean("doze.pulse.proxcheck", R.bool.doze_proximity_check_before_pulse);
112 }
113
John Spurlock50a8ea62014-09-16 09:12:03 -0400114 public int getPickupVibrationThreshold() {
115 return getInt("doze.pickup.vibration.threshold", R.integer.doze_pickup_vibration_threshold);
116 }
117
Adrian Roosebea7a72016-10-26 12:51:26 -0700118 public boolean getAlwaysOn() {
Adrian Roos0261fb22017-03-07 20:20:35 +0000119 return mAmbientDisplayConfiguration.alwaysOnEnabled(UserHandle.USER_CURRENT);
Adrian Roosebea7a72016-10-26 12:51:26 -0700120 }
121
John Spurlock190d0262014-09-14 15:39:13 -0400122 private boolean getBoolean(String propName, int resId) {
123 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId));
John Spurlockd06aa572014-09-10 10:40:49 -0400124 }
125
126 private int getInt(String propName, int resId) {
127 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId));
128 return MathUtils.constrain(value, 0, MAX_DURATION);
129 }
130
131 private String getString(String propName, int resId) {
132 return SystemProperties.get(propName, mContext.getString(resId));
133 }
134
Adrian Roos5753f052016-07-13 10:30:37 -0700135 public boolean getPickupSubtypePerformsProxCheck(int subType) {
136 String spec = getString("doze.pickup.proxcheck",
137 R.string.doze_pickup_subtype_performs_proximity_check);
138
139 if (TextUtils.isEmpty(spec)) {
140 // Fall back to non-subtype based property.
141 return mContext.getResources().getBoolean(R.bool.doze_pickup_performs_proximity_check);
142 }
143
144 if (sPickupSubtypePerformsProxMatcher == null
145 || !TextUtils.equals(spec, sPickupSubtypePerformsProxMatcher.mSpec)) {
146 sPickupSubtypePerformsProxMatcher = new IntInOutMatcher(spec);
147 }
148
149 return sPickupSubtypePerformsProxMatcher.isIn(subType);
150 }
151
Adrian Roos67cca742017-04-13 16:52:51 -0700152 public int getPulseVisibleDurationExtended() {
153 return 2 * getPulseVisibleDuration();
154 }
155
Adrian Roos44198f52017-06-02 12:50:38 -0700156 public boolean doubleTapReportsTouchCoordinates() {
157 return mContext.getResources().getBoolean(R.bool.doze_double_tap_reports_touch_coordinates);
158 }
159
Adrian Roos5753f052016-07-13 10:30:37 -0700160
161 /**
162 * Parses a spec of the form `1,2,3,!5,*`. The resulting object will match numbers that are
163 * listed, will not match numbers that are listed with a ! prefix, and will match / not match
164 * unlisted numbers depending on whether * or !* is present.
165 *
166 * * -> match any numbers that are not explicitly listed
167 * !* -> don't match any numbers that are not explicitly listed
168 * 2 -> match 2
169 * !3 -> don't match 3
170 *
171 * It is illegal to specify:
172 * - an empty spec
173 * - a spec containing that are empty, or a lone !
174 * - a spec for anything other than numbers or *
175 * - multiple terms for the same number / multiple *s
176 */
177 public static class IntInOutMatcher {
178 private static final String WILDCARD = "*";
179 private static final char OUT_PREFIX = '!';
180
181 private final SparseBooleanArray mIsIn;
182 private final boolean mDefaultIsIn;
183 final String mSpec;
184
185 public IntInOutMatcher(String spec) {
186 if (TextUtils.isEmpty(spec)) {
187 throw new IllegalArgumentException("Spec must not be empty");
188 }
189
190 boolean defaultIsIn = false;
191 boolean foundWildcard = false;
192
193 mSpec = spec;
194 mIsIn = new SparseBooleanArray();
195
196 for (String itemPrefixed : spec.split(",", -1)) {
197 if (itemPrefixed.length() == 0) {
198 throw new IllegalArgumentException(
199 "Illegal spec, must not have zero-length items: `" + spec + "`");
200 }
201 boolean isIn = itemPrefixed.charAt(0) != OUT_PREFIX;
202 String item = isIn ? itemPrefixed : itemPrefixed.substring(1);
203
204 if (itemPrefixed.length() == 0) {
205 throw new IllegalArgumentException(
206 "Illegal spec, must not have zero-length items: `" + spec + "`");
207 }
208
209 if (WILDCARD.equals(item)) {
210 if (foundWildcard) {
211 throw new IllegalArgumentException("Illegal spec, `" + WILDCARD +
212 "` must not appear multiple times in `" + spec + "`");
213 }
214 defaultIsIn = isIn;
215 foundWildcard = true;
216 } else {
217 int key = Integer.parseInt(item);
218 if (mIsIn.indexOfKey(key) >= 0) {
219 throw new IllegalArgumentException("Illegal spec, `" + key +
220 "` must not appear multiple times in `" + spec + "`");
221 }
222 mIsIn.put(key, isIn);
223 }
224 }
225
226 if (!foundWildcard) {
227 throw new IllegalArgumentException("Illegal spec, must specify either * or !*");
228 }
229
230 mDefaultIsIn = defaultIsIn;
231 }
232
233 public boolean isIn(int value) {
234 return (mIsIn.get(value, mDefaultIsIn));
235 }
236 }
John Spurlockd06aa572014-09-10 10:40:49 -0400237}