blob: 1ca6398e3bc012a90f9ab554a1e186d205ed27d8 [file] [log] [blame]
Fan Zhang690986d2017-08-17 11:22:31 -07001/*
2 * Copyright (C) 2017 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 android.util;
18
Fan Zhang93d87e62017-11-13 17:38:53 -080019import android.content.Context;
Fan Zhang690986d2017-08-17 11:22:31 -070020import android.os.SystemProperties;
Fan Zhangaa1387c2017-11-17 11:07:29 -080021import android.provider.Settings;
Fan Zhang690986d2017-08-17 11:22:31 -070022import android.text.TextUtils;
23
Fan Zhang30806362017-12-07 11:15:26 -080024import java.util.HashMap;
Ahan Wu723a80e2018-11-07 20:39:32 +080025import java.util.HashSet;
Fan Zhang690986d2017-08-17 11:22:31 -070026import java.util.Map;
Ahan Wu723a80e2018-11-07 20:39:32 +080027import java.util.Set;
Fan Zhang690986d2017-08-17 11:22:31 -070028
29/**
30 * Util class to get feature flag information.
31 *
32 * @hide
33 */
34public class FeatureFlagUtils {
35
36 public static final String FFLAG_PREFIX = "sys.fflag.";
37 public static final String FFLAG_OVERRIDE_PREFIX = FFLAG_PREFIX + "override.";
Stanley Tngfe8c8332018-06-19 08:48:10 -070038 public static final String PERSIST_PREFIX = "persist." + FFLAG_OVERRIDE_PREFIX;
linanson5fbcaf42019-01-22 19:17:39 +080039 public static final String SEAMLESS_TRANSFER = "settings_seamless_transfer";
Stanley Tngfe8c8332018-06-19 08:48:10 -070040 public static final String HEARING_AID_SETTINGS = "settings_bluetooth_hearing_aid";
yuanjiahsu4c7f6c22018-11-01 22:25:28 +080041 public static final String SAFETY_HUB = "settings_safety_hub";
Beth Thibodeau5898ac42018-10-26 13:00:09 -040042 public static final String SCREENRECORD_LONG_PRESS = "settings_screenrecord_long_press";
Ahan Wu723a80e2018-11-07 20:39:32 +080043 public static final String AOD_IMAGEWALLPAPER_ENABLED = "settings_aod_imagewallpaper_enabled";
Aaron Heuckroth166392f2019-01-17 16:50:59 -050044 public static final String GLOBAL_ACTIONS_GRID_ENABLED = "settings_global_actions_grid_enabled";
Fan Zhang690986d2017-08-17 11:22:31 -070045
Fan Zhang30806362017-12-07 11:15:26 -080046 private static final Map<String, String> DEFAULT_FLAGS;
Ahan Wu723a80e2018-11-07 20:39:32 +080047 private static final Set<String> OBSERVABLE_FLAGS;
48
Fan Zhang30806362017-12-07 11:15:26 -080049 static {
50 DEFAULT_FLAGS = new HashMap<>();
ryanywlin651d0332018-03-27 14:49:11 +080051 DEFAULT_FLAGS.put("settings_audio_switcher", "true");
Emily Chuang7e15b7c2018-11-12 17:50:41 +080052 DEFAULT_FLAGS.put("settings_dynamic_homepage", "true");
jackqdyulei7c75c902018-11-08 14:25:14 -080053 DEFAULT_FLAGS.put("settings_mobile_network_v2", "true");
Antony Sargentdbaeac02018-10-25 15:47:10 -070054 DEFAULT_FLAGS.put("settings_network_and_internet_v2", "false");
jackqdyulei0e42f8a2019-01-24 17:21:11 -080055 DEFAULT_FLAGS.put("settings_slice_injection", "true");
Johnson Lu73eb2bf2018-12-05 14:36:54 +080056 DEFAULT_FLAGS.put("settings_systemui_theme", "true");
Johnson Lub71cf3b2019-01-23 16:04:41 +080057 DEFAULT_FLAGS.put("settings_wifi_dpp", "true");
58 DEFAULT_FLAGS.put("settings_wifi_mac_randomization", "true");
59 DEFAULT_FLAGS.put("settings_wifi_sharing", "true");
Doris Lingb97faba2019-01-30 12:51:03 -080060 DEFAULT_FLAGS.put("settings_mainline_module", "false");
linanson5fbcaf42019-01-22 19:17:39 +080061 DEFAULT_FLAGS.put(SEAMLESS_TRANSFER, "false");
Johnson Lu73eb2bf2018-12-05 14:36:54 +080062 DEFAULT_FLAGS.put(HEARING_AID_SETTINGS, "false");
yuanjiahsu4c7f6c22018-11-01 22:25:28 +080063 DEFAULT_FLAGS.put(SAFETY_HUB, "false");
Beth Thibodeau5898ac42018-10-26 13:00:09 -040064 DEFAULT_FLAGS.put(SCREENRECORD_LONG_PRESS, "false");
Ahan Wu723a80e2018-11-07 20:39:32 +080065 DEFAULT_FLAGS.put(AOD_IMAGEWALLPAPER_ENABLED, "false");
Aaron Heuckroth166392f2019-01-17 16:50:59 -050066 DEFAULT_FLAGS.put(GLOBAL_ACTIONS_GRID_ENABLED, "false");
Ahan Wu723a80e2018-11-07 20:39:32 +080067
68 OBSERVABLE_FLAGS = new HashSet<>();
69 OBSERVABLE_FLAGS.add(AOD_IMAGEWALLPAPER_ENABLED);
Fan Zhang30806362017-12-07 11:15:26 -080070 }
71
Fan Zhang690986d2017-08-17 11:22:31 -070072 /**
73 * Whether or not a flag is enabled.
74 *
75 * @param feature the flag name
76 * @return true if the flag is enabled (either by default in system, or override by user)
77 */
Fan Zhang93d87e62017-11-13 17:38:53 -080078 public static boolean isEnabled(Context context, String feature) {
Fan Zhangaa1387c2017-11-17 11:07:29 -080079 // Override precedence:
Fan Zhang30806362017-12-07 11:15:26 -080080 // Settings.Global -> sys.fflag.override.* -> static list
Fan Zhangaa1387c2017-11-17 11:07:29 -080081
82 // Step 1: check if feature flag is set in Settings.Global.
83 String value;
84 if (context != null) {
85 value = Settings.Global.getString(context.getContentResolver(), feature);
86 if (!TextUtils.isEmpty(value)) {
87 return Boolean.parseBoolean(value);
88 }
89 }
90
91 // Step 2: check if feature flag has any override. Flag name: sys.fflag.override.<feature>
92 value = SystemProperties.get(FFLAG_OVERRIDE_PREFIX + feature);
Fan Zhang690986d2017-08-17 11:22:31 -070093 if (!TextUtils.isEmpty(value)) {
94 return Boolean.parseBoolean(value);
95 }
Fan Zhang30806362017-12-07 11:15:26 -080096 // Step 3: check if feature flag has any default value.
97 value = getAllFeatureFlags().get(feature);
Fan Zhang690986d2017-08-17 11:22:31 -070098 return Boolean.parseBoolean(value);
99 }
100
101 /**
Fan Zhangcfd02742017-10-03 14:37:44 -0700102 * Override feature flag to new state.
103 */
Fan Zhangaa1387c2017-11-17 11:07:29 -0800104 public static void setEnabled(Context context, String feature, boolean enabled) {
Fan Zhangcfd02742017-10-03 14:37:44 -0700105 SystemProperties.set(FFLAG_OVERRIDE_PREFIX + feature, enabled ? "true" : "false");
Ahan Wu723a80e2018-11-07 20:39:32 +0800106
107 // Also update Settings.Global if needed so that we can observe it via observer.
108 if (OBSERVABLE_FLAGS.contains(feature)) {
109 setObservableFlag(context, feature, enabled);
110 }
111 }
112
113 private static void setObservableFlag(Context context, String feature, boolean enabled) {
114 Settings.Global.putString(
115 context.getContentResolver(), feature, enabled ? "true" : "false");
Fan Zhangcfd02742017-10-03 14:37:44 -0700116 }
117
118 /**
Fan Zhang690986d2017-08-17 11:22:31 -0700119 * Returns all feature flags in their raw form.
120 */
121 public static Map<String, String> getAllFeatureFlags() {
Fan Zhang30806362017-12-07 11:15:26 -0800122 return DEFAULT_FLAGS;
Fan Zhang690986d2017-08-17 11:22:31 -0700123 }
124}