blob: 01946247bd121f5ff6c6a0b7c191f84c373c8877 [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(
Tim Van Patten3c612842018-11-09 16:48:24 -070061 Settings.Global.GLOBAL_SETTINGS_ANGLE_GL_DRIVER_ALL_ANGLE, String.class);
62 sGlobalSettingToTypeMap.put(
63 Settings.Global.GLOBAL_SETTINGS_ANGLE_GL_DRIVER_SELECTION_PKGS, String.class);
64 sGlobalSettingToTypeMap.put(
65 Settings.Global.GLOBAL_SETTINGS_ANGLE_GL_DRIVER_SELECTION_VALUES, String.class);
Cody Northrop5ebb0db2019-01-15 14:06:36 -070066 sGlobalSettingToTypeMap.put(
67 Settings.Global.GLOBAL_SETTINGS_ANGLE_WHITELIST, String.class);
Cody Northropebe6a562018-10-15 07:22:23 -060068 sGlobalSettingToTypeMap.put(Settings.Global.ENABLE_GPU_DEBUG_LAYERS, int.class);
69 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_APP, String.class);
70 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYERS, String.class);
Cody Northrop0fa1d222018-10-23 13:13:21 -060071 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYERS_GLES, String.class);
Cody Northropebe6a562018-10-15 07:22:23 -060072 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYER_APP, String.class);
Svet Ganov55203682018-11-02 22:34:52 -070073 sGlobalSettingToTypeMap.put(Settings.Global.SMS_ACCESS_RESTRICTION_ENABLED, int.class);
Yiwei Zhang2b3be862019-01-24 14:45:53 -080074 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_ALL_APPS, int.class);
75 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_OPT_IN_APPS, String.class);
76 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_OPT_OUT_APPS, String.class);
77 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_BLACKLIST, String.class);
78 sGlobalSettingToTypeMap.put(Settings.Global.GAME_DRIVER_WHITELIST, String.class);
Jon Miranda836c0a82014-08-11 12:32:26 -070079 // add other global settings here...
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080080 }
81
82 private final Bundle mCoreSettings = new Bundle();
83
84 private final ActivityManagerService mActivityManagerService;
85
86 public CoreSettingsObserver(ActivityManagerService activityManagerService) {
87 super(activityManagerService.mHandler);
88 mActivityManagerService = activityManagerService;
89 beginObserveCoreSettings();
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080090 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080091 }
92
93 public Bundle getCoreSettingsLocked() {
94 return (Bundle) mCoreSettings.clone();
95 }
96
97 @Override
98 public void onChange(boolean selfChange) {
99 synchronized (mActivityManagerService) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800100 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800101 }
102 }
103
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800104 private void sendCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000105 populateSettings(mCoreSettings, sSecureSettingToTypeMap);
106 populateSettings(mCoreSettings, sSystemSettingToTypeMap);
Jon Miranda836c0a82014-08-11 12:32:26 -0700107 populateSettings(mCoreSettings, sGlobalSettingToTypeMap);
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800108 mActivityManagerService.onCoreSettingsChange(mCoreSettings);
109 }
110
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800111 private void beginObserveCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000112 for (String setting : sSecureSettingToTypeMap.keySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800113 Uri uri = Settings.Secure.getUriFor(setting);
114 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
115 uri, false, this);
116 }
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000117
118 for (String setting : sSystemSettingToTypeMap.keySet()) {
119 Uri uri = Settings.System.getUriFor(setting);
120 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
121 uri, false, this);
122 }
Jon Miranda836c0a82014-08-11 12:32:26 -0700123
124 for (String setting : sGlobalSettingToTypeMap.keySet()) {
125 Uri uri = Settings.Global.getUriFor(setting);
126 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
127 uri, false, this);
128 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800129 }
130
Sudheer Shankabce47222017-04-03 10:51:42 -0700131 @VisibleForTesting
132 void populateSettings(Bundle snapshot, Map<String, Class<?>> map) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800133 Context context = mActivityManagerService.mContext;
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000134 for (Map.Entry<String, Class<?>> entry : map.entrySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800135 String setting = entry.getKey();
Sudheer Shankabce47222017-04-03 10:51:42 -0700136 final String value;
137 if (map == sSecureSettingToTypeMap) {
138 value = Settings.Secure.getString(context.getContentResolver(), setting);
139 } else if (map == sSystemSettingToTypeMap) {
140 value = Settings.System.getString(context.getContentResolver(), setting);
141 } else {
142 value = Settings.Global.getString(context.getContentResolver(), setting);
143 }
144 if (value == null) {
Sudheer Shankac45c3872018-10-10 18:24:19 -0700145 snapshot.remove(setting);
Sudheer Shankabce47222017-04-03 10:51:42 -0700146 continue;
147 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800148 Class<?> type = entry.getValue();
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800149 if (type == String.class) {
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800150 snapshot.putString(setting, value);
151 } else if (type == int.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700152 snapshot.putInt(setting, Integer.parseInt(value));
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800153 } else if (type == float.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700154 snapshot.putFloat(setting, Float.parseFloat(value));
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800155 } else if (type == long.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700156 snapshot.putLong(setting, Long.parseLong(value));
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800157 }
158 }
159 }
160}