blob: 0dc163ba31949b98f547edc9cfaa87f6631db0b4 [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;
24import android.provider.Settings.SettingNotFoundException;
25import android.util.Log;
26
27import 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
Narayan Kamathccb2a0862013-12-19 14:49:36 +000040 private static final Map<String, Class<?>> sSecureSettingToTypeMap = new HashMap<
41 String, Class<?>>();
42 private static final Map<String, Class<?>> sSystemSettingToTypeMap = new HashMap<
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080043 String, Class<?>>();
Jon Miranda836c0a82014-08-11 12:32:26 -070044 private static final Map<String, Class<?>> sGlobalSettingToTypeMap = new HashMap<
45 String, Class<?>>();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080046 static {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000047 sSecureSettingToTypeMap.put(Settings.Secure.LONG_PRESS_TIMEOUT, int.class);
48 // add other secure settings here...
49
50 sSystemSettingToTypeMap.put(Settings.System.TIME_12_24, String.class);
51 // add other system settings here...
Jon Miranda836c0a82014-08-11 12:32:26 -070052
53 sGlobalSettingToTypeMap.put(Settings.Global.DEBUG_VIEW_ATTRIBUTES, int.class);
54 // add other global settings here...
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080055 }
56
57 private final Bundle mCoreSettings = new Bundle();
58
59 private final ActivityManagerService mActivityManagerService;
60
61 public CoreSettingsObserver(ActivityManagerService activityManagerService) {
62 super(activityManagerService.mHandler);
63 mActivityManagerService = activityManagerService;
64 beginObserveCoreSettings();
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080065 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080066 }
67
68 public Bundle getCoreSettingsLocked() {
69 return (Bundle) mCoreSettings.clone();
70 }
71
72 @Override
73 public void onChange(boolean selfChange) {
74 synchronized (mActivityManagerService) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080075 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080076 }
77 }
78
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080079 private void sendCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000080 populateSettings(mCoreSettings, sSecureSettingToTypeMap);
81 populateSettings(mCoreSettings, sSystemSettingToTypeMap);
Jon Miranda836c0a82014-08-11 12:32:26 -070082 populateSettings(mCoreSettings, sGlobalSettingToTypeMap);
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080083 mActivityManagerService.onCoreSettingsChange(mCoreSettings);
84 }
85
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080086 private void beginObserveCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000087 for (String setting : sSecureSettingToTypeMap.keySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080088 Uri uri = Settings.Secure.getUriFor(setting);
89 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
90 uri, false, this);
91 }
Narayan Kamathccb2a0862013-12-19 14:49:36 +000092
93 for (String setting : sSystemSettingToTypeMap.keySet()) {
94 Uri uri = Settings.System.getUriFor(setting);
95 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
96 uri, false, this);
97 }
Jon Miranda836c0a82014-08-11 12:32:26 -070098
99 for (String setting : sGlobalSettingToTypeMap.keySet()) {
100 Uri uri = Settings.Global.getUriFor(setting);
101 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
102 uri, false, this);
103 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800104 }
105
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000106 private void populateSettings(Bundle snapshot, Map<String, Class<?>> map) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800107 Context context = mActivityManagerService.mContext;
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000108 for (Map.Entry<String, Class<?>> entry : map.entrySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800109 String setting = entry.getKey();
110 Class<?> type = entry.getValue();
111 try {
112 if (type == String.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000113 final String value;
114 if (map == sSecureSettingToTypeMap) {
115 value = Settings.Secure.getString(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700116 } else if (map == sSystemSettingToTypeMap) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000117 value = Settings.System.getString(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700118 } else {
119 value = Settings.Global.getString(context.getContentResolver(), setting);
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000120 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800121 snapshot.putString(setting, value);
122 } else if (type == int.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000123 final int value;
124 if (map == sSecureSettingToTypeMap) {
125 value = Settings.Secure.getInt(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700126 } else if (map == sSystemSettingToTypeMap) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000127 value = Settings.System.getInt(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700128 } else {
129 value = Settings.Global.getInt(context.getContentResolver(), setting);
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000130 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800131 snapshot.putInt(setting, value);
132 } else if (type == float.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000133 final float value;
134 if (map == sSecureSettingToTypeMap) {
135 value = Settings.Secure.getFloat(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700136 } else if (map == sSystemSettingToTypeMap) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000137 value = Settings.System.getFloat(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700138 } else {
139 value = Settings.Global.getFloat(context.getContentResolver(), setting);
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000140 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800141 snapshot.putFloat(setting, value);
142 } else if (type == long.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000143 final long value;
144 if (map == sSecureSettingToTypeMap) {
145 value = Settings.Secure.getLong(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700146 } else if (map == sSystemSettingToTypeMap) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000147 value = Settings.System.getLong(context.getContentResolver(), setting);
Jon Miranda836c0a82014-08-11 12:32:26 -0700148 } else {
149 value = Settings.Global.getLong(context.getContentResolver(), setting);
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000150 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800151 snapshot.putLong(setting, value);
152 }
153 } catch (SettingNotFoundException snfe) {
154 Log.w(LOG_TAG, "Cannot find setting \"" + setting + "\"", snfe);
155 }
156 }
157 }
158}