blob: 48e26ed3d86359ed335d80ddf1a6d0c9c2a47cef [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);
Cody Northropdeb43282018-10-04 16:04:05 -060058 sGlobalSettingToTypeMap.put(Settings.Global.ANGLE_ENABLED_APP, String.class);
Cody Northropebe6a562018-10-15 07:22:23 -060059 sGlobalSettingToTypeMap.put(Settings.Global.ENABLE_GPU_DEBUG_LAYERS, int.class);
60 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_APP, String.class);
61 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYERS, String.class);
62 sGlobalSettingToTypeMap.put(Settings.Global.GPU_DEBUG_LAYER_APP, String.class);
Jon Miranda836c0a82014-08-11 12:32:26 -070063 // add other global settings here...
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080064 }
65
66 private final Bundle mCoreSettings = new Bundle();
67
68 private final ActivityManagerService mActivityManagerService;
69
70 public CoreSettingsObserver(ActivityManagerService activityManagerService) {
71 super(activityManagerService.mHandler);
72 mActivityManagerService = activityManagerService;
73 beginObserveCoreSettings();
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080074 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080075 }
76
77 public Bundle getCoreSettingsLocked() {
78 return (Bundle) mCoreSettings.clone();
79 }
80
81 @Override
82 public void onChange(boolean selfChange) {
83 synchronized (mActivityManagerService) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080084 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080085 }
86 }
87
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080088 private void sendCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000089 populateSettings(mCoreSettings, sSecureSettingToTypeMap);
90 populateSettings(mCoreSettings, sSystemSettingToTypeMap);
Jon Miranda836c0a82014-08-11 12:32:26 -070091 populateSettings(mCoreSettings, sGlobalSettingToTypeMap);
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080092 mActivityManagerService.onCoreSettingsChange(mCoreSettings);
93 }
94
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080095 private void beginObserveCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000096 for (String setting : sSecureSettingToTypeMap.keySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080097 Uri uri = Settings.Secure.getUriFor(setting);
98 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
99 uri, false, this);
100 }
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000101
102 for (String setting : sSystemSettingToTypeMap.keySet()) {
103 Uri uri = Settings.System.getUriFor(setting);
104 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
105 uri, false, this);
106 }
Jon Miranda836c0a82014-08-11 12:32:26 -0700107
108 for (String setting : sGlobalSettingToTypeMap.keySet()) {
109 Uri uri = Settings.Global.getUriFor(setting);
110 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
111 uri, false, this);
112 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800113 }
114
Sudheer Shankabce47222017-04-03 10:51:42 -0700115 @VisibleForTesting
116 void populateSettings(Bundle snapshot, Map<String, Class<?>> map) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800117 Context context = mActivityManagerService.mContext;
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000118 for (Map.Entry<String, Class<?>> entry : map.entrySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800119 String setting = entry.getKey();
Sudheer Shankabce47222017-04-03 10:51:42 -0700120 final String value;
121 if (map == sSecureSettingToTypeMap) {
122 value = Settings.Secure.getString(context.getContentResolver(), setting);
123 } else if (map == sSystemSettingToTypeMap) {
124 value = Settings.System.getString(context.getContentResolver(), setting);
125 } else {
126 value = Settings.Global.getString(context.getContentResolver(), setting);
127 }
128 if (value == null) {
Sudheer Shankac45c3872018-10-10 18:24:19 -0700129 snapshot.remove(setting);
Sudheer Shankabce47222017-04-03 10:51:42 -0700130 continue;
131 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800132 Class<?> type = entry.getValue();
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800133 if (type == String.class) {
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800134 snapshot.putString(setting, value);
135 } else if (type == int.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700136 snapshot.putInt(setting, Integer.parseInt(value));
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800137 } else if (type == float.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700138 snapshot.putFloat(setting, Float.parseFloat(value));
Dianne Hackbornb3d4cb32015-01-09 09:54:06 -0800139 } else if (type == long.class) {
Sudheer Shankabce47222017-04-03 10:51:42 -0700140 snapshot.putLong(setting, Long.parseLong(value));
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800141 }
142 }
143 }
144}