blob: b13f831cb910de1b7ca15df5e9ada211e949c07f [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<>();
jackqdyuleiee0e2e92017-12-08 09:45:23 -080040 DEFAULT_FLAGS.put("settings_battery_display_app_list", "false");
Joachim Saueree901612018-01-22 15:52:26 +000041 DEFAULT_FLAGS.put("settings_zone_picker_v2", "true");
Doris Ling8fdafa02018-02-08 21:25:46 +000042 DEFAULT_FLAGS.put("settings_about_phone_v2", "true");
Daniel Nishi797641272018-01-02 16:48:33 -080043 DEFAULT_FLAGS.put("settings_bluetooth_while_driving", "false");
Jan Nordqvist5c4a42d2018-03-21 15:09:04 -070044 DEFAULT_FLAGS.put("settings_data_usage_v2", "true");
ryanywlin651d0332018-03-27 14:49:11 +080045 DEFAULT_FLAGS.put("settings_audio_switcher", "true");
Fan Zhang30806362017-12-07 11:15:26 -080046 }
47
Fan Zhang690986d2017-08-17 11:22:31 -070048 /**
49 * Whether or not a flag is enabled.
50 *
51 * @param feature the flag name
52 * @return true if the flag is enabled (either by default in system, or override by user)
53 */
Fan Zhang93d87e62017-11-13 17:38:53 -080054 public static boolean isEnabled(Context context, String feature) {
Fan Zhangaa1387c2017-11-17 11:07:29 -080055 // Override precedence:
Fan Zhang30806362017-12-07 11:15:26 -080056 // Settings.Global -> sys.fflag.override.* -> static list
Fan Zhangaa1387c2017-11-17 11:07:29 -080057
58 // Step 1: check if feature flag is set in Settings.Global.
59 String value;
60 if (context != null) {
61 value = Settings.Global.getString(context.getContentResolver(), feature);
62 if (!TextUtils.isEmpty(value)) {
63 return Boolean.parseBoolean(value);
64 }
65 }
66
67 // Step 2: check if feature flag has any override. Flag name: sys.fflag.override.<feature>
68 value = SystemProperties.get(FFLAG_OVERRIDE_PREFIX + feature);
Fan Zhang690986d2017-08-17 11:22:31 -070069 if (!TextUtils.isEmpty(value)) {
70 return Boolean.parseBoolean(value);
71 }
Fan Zhang30806362017-12-07 11:15:26 -080072 // Step 3: check if feature flag has any default value.
73 value = getAllFeatureFlags().get(feature);
Fan Zhang690986d2017-08-17 11:22:31 -070074 return Boolean.parseBoolean(value);
75 }
76
77 /**
Fan Zhangcfd02742017-10-03 14:37:44 -070078 * Override feature flag to new state.
79 */
Fan Zhangaa1387c2017-11-17 11:07:29 -080080 public static void setEnabled(Context context, String feature, boolean enabled) {
Fan Zhangcfd02742017-10-03 14:37:44 -070081 SystemProperties.set(FFLAG_OVERRIDE_PREFIX + feature, enabled ? "true" : "false");
82 }
83
84 /**
Fan Zhang690986d2017-08-17 11:22:31 -070085 * Returns all feature flags in their raw form.
86 */
87 public static Map<String, String> getAllFeatureFlags() {
Fan Zhang30806362017-12-07 11:15:26 -080088 return DEFAULT_FLAGS;
Fan Zhang690986d2017-08-17 11:22:31 -070089 }
90}