blob: 1ead0b49bbed53a22c60a4e5117a4e31f8e4b50b [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;
Fan Zhang690986d2017-08-17 11:22:31 -070025import java.util.Map;
26
27/**
28 * Util class to get feature flag information.
29 *
30 * @hide
31 */
32public class FeatureFlagUtils {
33
34 public static final String FFLAG_PREFIX = "sys.fflag.";
35 public static final String FFLAG_OVERRIDE_PREFIX = FFLAG_PREFIX + "override.";
36
Fan Zhang30806362017-12-07 11:15:26 -080037 private static final Map<String, String> DEFAULT_FLAGS;
38 static {
39 DEFAULT_FLAGS = new HashMap<>();
jackqdyulei65fe4552017-12-15 10:59:15 -080040 DEFAULT_FLAGS.put("settings_connected_device_v2", "true");
jackqdyuleib98408c2018-01-23 10:22:16 -080041 DEFAULT_FLAGS.put("settings_battery_v2", "true");
jackqdyuleiee0e2e92017-12-08 09:45:23 -080042 DEFAULT_FLAGS.put("settings_battery_display_app_list", "false");
Joachim Saueree901612018-01-22 15:52:26 +000043 DEFAULT_FLAGS.put("settings_zone_picker_v2", "true");
Fan Zhangab4ed112018-02-07 15:39:32 -080044 DEFAULT_FLAGS.put("settings_about_phone_v2", "true");
Daniel Nishi797641272018-01-02 16:48:33 -080045 DEFAULT_FLAGS.put("settings_bluetooth_while_driving", "false");
Eric Schwarzenbach9aa74592018-02-06 17:20:22 -080046 DEFAULT_FLAGS.put("settings_data_usage_v2", "false");
Fan Zhang30806362017-12-07 11:15:26 -080047 }
48
Fan Zhang690986d2017-08-17 11:22:31 -070049 /**
50 * Whether or not a flag is enabled.
51 *
52 * @param feature the flag name
53 * @return true if the flag is enabled (either by default in system, or override by user)
54 */
Fan Zhang93d87e62017-11-13 17:38:53 -080055 public static boolean isEnabled(Context context, String feature) {
Fan Zhangaa1387c2017-11-17 11:07:29 -080056 // Override precedence:
Fan Zhang30806362017-12-07 11:15:26 -080057 // Settings.Global -> sys.fflag.override.* -> static list
Fan Zhangaa1387c2017-11-17 11:07:29 -080058
59 // Step 1: check if feature flag is set in Settings.Global.
60 String value;
61 if (context != null) {
62 value = Settings.Global.getString(context.getContentResolver(), feature);
63 if (!TextUtils.isEmpty(value)) {
64 return Boolean.parseBoolean(value);
65 }
66 }
67
68 // Step 2: check if feature flag has any override. Flag name: sys.fflag.override.<feature>
69 value = SystemProperties.get(FFLAG_OVERRIDE_PREFIX + feature);
Fan Zhang690986d2017-08-17 11:22:31 -070070 if (!TextUtils.isEmpty(value)) {
71 return Boolean.parseBoolean(value);
72 }
Fan Zhang30806362017-12-07 11:15:26 -080073 // Step 3: check if feature flag has any default value.
74 value = getAllFeatureFlags().get(feature);
Fan Zhang690986d2017-08-17 11:22:31 -070075 return Boolean.parseBoolean(value);
76 }
77
78 /**
Fan Zhangcfd02742017-10-03 14:37:44 -070079 * Override feature flag to new state.
80 */
Fan Zhangaa1387c2017-11-17 11:07:29 -080081 public static void setEnabled(Context context, String feature, boolean enabled) {
Fan Zhangcfd02742017-10-03 14:37:44 -070082 SystemProperties.set(FFLAG_OVERRIDE_PREFIX + feature, enabled ? "true" : "false");
83 }
84
85 /**
Fan Zhang690986d2017-08-17 11:22:31 -070086 * Returns all feature flags in their raw form.
87 */
88 public static Map<String, String> getAllFeatureFlags() {
Fan Zhang30806362017-12-07 11:15:26 -080089 return DEFAULT_FLAGS;
Fan Zhang690986d2017-08-17 11:22:31 -070090 }
91}