blob: b053d84de7d65b6120056fcdfbc7683b745a89c6 [file] [log] [blame]
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001/*
2 * Copyright (C) 2006-2011 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.server.am;
18
19import android.content.Context;
20import android.database.ContentObserver;
21import android.net.Uri;
22import android.os.Bundle;
23import android.provider.Settings;
Sudheer Shankabce47222017-04-03 10:51:42 -070024
25import com.android.internal.annotations.VisibleForTesting;
26
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080027import java.util.HashMap;
28import java.util.Map;
29
30/**
31 * Helper class for watching a set of core settings which the framework
32 * propagates to application processes to avoid multiple lookups and potentially
33 * disk I/O operations. Note: This class assumes that all core settings reside
34 * in {@link Settings.Secure}.
35 */
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070036final class CoreSettingsObserver extends ContentObserver {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080037 private static final String LOG_TAG = CoreSettingsObserver.class.getSimpleName();
38
39 // mapping form property name to its type
Sudheer Shankabce47222017-04-03 10:51:42 -070040 @VisibleForTesting
41 static final Map<String, Class<?>> sSecureSettingToTypeMap = new HashMap<
Narayan Kamathccb2a0862013-12-19 14:49:36 +000042 String, Class<?>>();
Sudheer Shankabce47222017-04-03 10:51:42 -070043 @VisibleForTesting
44 static final Map<String, Class<?>> sSystemSettingToTypeMap = new HashMap<
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080045 String, Class<?>>();
Sudheer Shankabce47222017-04-03 10:51:42 -070046 @VisibleForTesting
47 static final Map<String, Class<?>> sGlobalSettingToTypeMap = new HashMap<
Jon Miranda836c0a82014-08-11 12:32:26 -070048 String, Class<?>>();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080049 static {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000050 sSecureSettingToTypeMap.put(Settings.Secure.LONG_PRESS_TIMEOUT, int.class);
Anthony Hugh96e9cc52016-07-12 15:17:24 -070051 sSecureSettingToTypeMap.put(Settings.Secure.MULTI_PRESS_TIMEOUT, int.class);
Narayan Kamathccb2a0862013-12-19 14:49:36 +000052 // add other secure settings here...
53
54 sSystemSettingToTypeMap.put(Settings.System.TIME_12_24, String.class);
55 // add other system settings here...
Jon Miranda836c0a82014-08-11 12:32:26 -070056
57 sGlobalSettingToTypeMap.put(Settings.Global.DEBUG_VIEW_ATTRIBUTES, int.class);
Tim Van Patten3c612842018-11-09 16:48:24 -070058 sGlobalSettingToTypeMap.put(
Aurimas Liutikas8f004c82019-01-17 17:20:10 -080059 Settings.Global.DEBUG_VIEW_ATTRIBUTES_APPLICATION_PACKAGE, String.class);
60 sGlobalSettingToTypeMap.put(
Cody Northropdc2fd942019-03-28 19:27:19 -060061 Settings.Global.GLOBAL_SETTINGS_ANGLE_DEBUG_PACKAGE, String.class);
62 sGlobalSettingToTypeMap.put(
Tim Van Patten3c612842018-11-09 16:48:24 -070063 Settings.Global.GLOBAL_SETTINGS_ANGLE_GL_DRIVER_ALL_ANGLE, String.class);
64 sGlobalSettingToTypeMap.put(
65 Settings.Global.GLOBAL_SETTINGS_ANGLE_GL_DRIVER_SELECTION_PKGS, String.class);
66 sGlobalSettingToTypeMap.put(
67 Settings.Global.GLOBAL_SETTINGS_ANGLE_GL_DRIVER_SELECTION_VALUES, String.class);
Cody Northrop5ebb0db2019-01-15 14:06:36 -070068 sGlobalSettingToTypeMap.put(
69 Settings.Global.GLOBAL_SETTINGS_ANGLE_WHITELIST, String.class);
Tim Van Pattenddc43912018-12-18 17:47:52 -070070 sGlobalSettingToTypeMap.put(
71 Settings.Global.GLOBAL_SETTINGS_SHOW_ANGLE_IN_USE_DIALOG_BOX, String.class);
Cody Northropebe6a562018-10-15 07:22:23 -060072 sGlobalSettingToTypeMap.put(Settings.Global.ENABLE_GPU_DEBUG_LAYERS, int.class);
73 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_APP, String.class);
74 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYERS, String.class);
Cody Northrop0fa1d222018-10-23 13:13:21 -060075 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYERS_GLES, String.class);
Cody Northropebe6a562018-10-15 07:22:23 -060076 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYER_APP, String.class);
Yiwei Zhang2b3be862019-01-24 14:45:53 -080077 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_ALL_APPS, int.class);
78 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_OPT_IN_APPS, String.class);
79 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_OPT_OUT_APPS, String.class);
80 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_BLACKLIST, String.class);
81 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_WHITELIST, String.class);
Peiyong Lin075a9e82019-02-07 15:52:38 -080082 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_BLACKLISTS, String.class);
Yiwei Zhang03f3ff22019-02-14 10:43:42 -080083 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_SPHAL_LIBRARIES, String.class);
Jon Miranda836c0a82014-08-11 12:32:26 -070084 // add other global settings here...
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080085 }
86
87 private final Bundle mCoreSettings = new Bundle();
88
89 private final ActivityManagerService mActivityManagerService;
90
91 public CoreSettingsObserver(ActivityManagerService activityManagerService) {
92 super(activityManagerService.mHandler);
93 mActivityManagerService = activityManagerService;
94 beginObserveCoreSettings();
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080095 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080096 }
97
98 public Bundle getCoreSettingsLocked() {
99 return (Bundle) mCoreSettings.clone();
100 }
101
102 @Override
103 public void onChange(boolean selfChange) {
104 synchronized (mActivityManagerService) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800105 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800106 }
107 }
108
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800109 private void sendCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000110 populateSettings(mCoreSettings, sSecureSettingToTypeMap);
111 populateSettings(mCoreSettings, sSystemSettingToTypeMap);
Jon Miranda836c0a82014-08-11 12:32:26 -0700112 populateSettings(mCoreSettings, sGlobalSettingToTypeMap);
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800113 mActivityManagerService.onCoreSettingsChange(mCoreSettings);
114 }
115
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800116 private void beginObserveCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000117 for (String setting : sSecureSettingToTypeMap.keySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800118 Uri uri = Settings.Secure.getUriFor(setting);
119 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
120 uri, false, this);
121 }
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000122
123 for (String setting : sSystemSettingToTypeMap.keySet()) {
124 Uri uri = Settings.System.getUriFor(setting);
125 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
126 uri, false, this);
127 }
Jon Miranda836c0a82014-08-11 12:32:26 -0700128
129 for (String setting : sGlobalSettingToTypeMap.keySet()) {
130 Uri uri = Settings.Global.getUriFor(setting);
131 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
132 uri, false, this);
133 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800134 }
135
Sudheer Shankabce47222017-04-03 10:51:42 -0700136 @VisibleForTesting
137 void populateSettings(Bundle snapshot, Map<String, Class<?>> map) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800138 Context context = mActivityManagerService.mContext;
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000139 for (Map.Entry<String, Class<?>> entry : map.entrySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800140 String setting = entry.getKey();
Sudheer Shankabce47222017-04-03 10:51:42 -0700141 final String value;
142 if (map == sSecureSettingToTypeMap) {
143 value = Settings.Secure.getString(context.getContentResolver(), setting);
144 } else if (map == sSystemSettingToTypeMap) {
145 value = Settings.System.getString(context.getContentResolver(), setting);
146 } else {
147 value = Settings.Global.getString(context.getContentResolver(), setting);
148 }
149 if (value == null) {
Sudheer Shankac45c3872018-10-10 18:24:19 -0700150 snapshot.remove(setting);
Sudheer Shankabce47222017-04-03 10:51:42 -0700151 continue;
152 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800153 Class<?> type = entry.getValue();
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800154 if (type == String.class) {
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800155 snapshot.putString(setting, value);
156 } else if (type == int.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700157 snapshot.putInt(setting, Integer.parseInt(value));
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800158 } else if (type == float.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700159 snapshot.putFloat(setting, Float.parseFloat(value));
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800160 } else if (type == long.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700161 snapshot.putLong(setting, Long.parseLong(value));
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800162 }
163 }
164 }
165}