blob: 4c887dd8e9d131eef6d4183a3d8831ccaa6a35b7 [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<?>>();
44 static {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000045 sSecureSettingToTypeMap.put(Settings.Secure.LONG_PRESS_TIMEOUT, int.class);
46 // add other secure settings here...
47
48 sSystemSettingToTypeMap.put(Settings.System.TIME_12_24, String.class);
49 // add other system settings here...
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080050 }
51
52 private final Bundle mCoreSettings = new Bundle();
53
54 private final ActivityManagerService mActivityManagerService;
55
56 public CoreSettingsObserver(ActivityManagerService activityManagerService) {
57 super(activityManagerService.mHandler);
58 mActivityManagerService = activityManagerService;
59 beginObserveCoreSettings();
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080060 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080061 }
62
63 public Bundle getCoreSettingsLocked() {
64 return (Bundle) mCoreSettings.clone();
65 }
66
67 @Override
68 public void onChange(boolean selfChange) {
69 synchronized (mActivityManagerService) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080070 sendCoreSettings();
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080071 }
72 }
73
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080074 private void sendCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000075 populateSettings(mCoreSettings, sSecureSettingToTypeMap);
76 populateSettings(mCoreSettings, sSystemSettingToTypeMap);
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -080077 mActivityManagerService.onCoreSettingsChange(mCoreSettings);
78 }
79
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080080 private void beginObserveCoreSettings() {
Narayan Kamathccb2a0862013-12-19 14:49:36 +000081 for (String setting : sSecureSettingToTypeMap.keySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080082 Uri uri = Settings.Secure.getUriFor(setting);
83 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
84 uri, false, this);
85 }
Narayan Kamathccb2a0862013-12-19 14:49:36 +000086
87 for (String setting : sSystemSettingToTypeMap.keySet()) {
88 Uri uri = Settings.System.getUriFor(setting);
89 mActivityManagerService.mContext.getContentResolver().registerContentObserver(
90 uri, false, this);
91 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080092 }
93
Narayan Kamathccb2a0862013-12-19 14:49:36 +000094 private void populateSettings(Bundle snapshot, Map<String, Class<?>> map) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080095 Context context = mActivityManagerService.mContext;
Narayan Kamathccb2a0862013-12-19 14:49:36 +000096 for (Map.Entry<String, Class<?>> entry : map.entrySet()) {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080097 String setting = entry.getKey();
98 Class<?> type = entry.getValue();
99 try {
100 if (type == String.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000101 final String value;
102 if (map == sSecureSettingToTypeMap) {
103 value = Settings.Secure.getString(context.getContentResolver(), setting);
104 } else {
105 value = Settings.System.getString(context.getContentResolver(), setting);
106 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800107 snapshot.putString(setting, value);
108 } else if (type == int.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000109 final int value;
110 if (map == sSecureSettingToTypeMap) {
111 value = Settings.Secure.getInt(context.getContentResolver(), setting);
112 } else {
113 value = Settings.System.getInt(context.getContentResolver(), setting);
114 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800115 snapshot.putInt(setting, value);
116 } else if (type == float.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000117 final float value;
118 if (map == sSecureSettingToTypeMap) {
119 value = Settings.Secure.getFloat(context.getContentResolver(), setting);
120 } else {
121 value = Settings.System.getFloat(context.getContentResolver(), setting);
122 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800123 snapshot.putFloat(setting, value);
124 } else if (type == long.class) {
Narayan Kamathccb2a0862013-12-19 14:49:36 +0000125 final long value;
126 if (map == sSecureSettingToTypeMap) {
127 value = Settings.Secure.getLong(context.getContentResolver(), setting);
128 } else {
129 value = Settings.System.getLong(context.getContentResolver(), setting);
130 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800131 snapshot.putLong(setting, value);
132 }
133 } catch (SettingNotFoundException snfe) {
134 Log.w(LOG_TAG, "Cannot find setting \"" + setting + "\"", snfe);
135 }
136 }
137 }
138}