blob: 9017ca3a831a37937360d1d94735abe77f908450 [file] [log] [blame]
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2007 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.providers.settings;
18
-b master501eec92009-07-06 13:53:11 -070019import java.io.FileNotFoundException;
Doug Zongker4f8ff392010-02-03 10:36:40 -080020import java.security.SecureRandom;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -070021import java.util.concurrent.atomic.AtomicBoolean;
22import java.util.concurrent.atomic.AtomicInteger;
-b master501eec92009-07-06 13:53:11 -070023
Christopher Tate45281862010-03-05 15:46:30 -080024import android.app.backup.BackupManager;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070025import android.content.ContentProvider;
26import android.content.ContentUris;
27import android.content.ContentValues;
28import android.content.Context;
29import android.content.pm.PackageManager;
Marco Nelissen69f593c2009-07-28 09:55:04 -070030import android.content.res.AssetFileDescriptor;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070031import android.database.Cursor;
32import android.database.sqlite.SQLiteDatabase;
Brad Fitzpatrick1877d012010-03-04 17:48:13 -080033import android.database.sqlite.SQLiteException;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070034import android.database.sqlite.SQLiteQueryBuilder;
35import android.media.RingtoneManager;
36import android.net.Uri;
Brad Fitzpatrick1877d012010-03-04 17:48:13 -080037import android.os.Bundle;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -070038import android.os.FileObserver;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070039import android.os.ParcelFileDescriptor;
40import android.os.SystemProperties;
41import android.provider.DrmStore;
42import android.provider.MediaStore;
43import android.provider.Settings;
44import android.text.TextUtils;
45import android.util.Log;
Jesse Wilson0c7faee2011-02-10 11:33:19 -080046import android.util.LruCache;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070047
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070048public class SettingsProvider extends ContentProvider {
49 private static final String TAG = "SettingsProvider";
50 private static final boolean LOCAL_LOGV = false;
51
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 private static final String TABLE_FAVORITES = "favorites";
53 private static final String TABLE_OLD_FAVORITES = "old_favorites";
54
Brad Fitzpatrick1877d012010-03-04 17:48:13 -080055 private static final String[] COLUMN_VALUE = new String[] { "value" };
56
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -080057 // Cache for settings, access-ordered for acting as LRU.
58 // Guarded by themselves.
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -070059 private static final int MAX_CACHE_ENTRIES = 200;
60 private static final SettingsCache sSystemCache = new SettingsCache("system");
61 private static final SettingsCache sSecureCache = new SettingsCache("secure");
62
63 // The count of how many known (handled by SettingsProvider)
64 // database mutations are currently being handled. Used by
65 // sFileObserver to not reload the database when it's ourselves
66 // modifying it.
67 private static final AtomicInteger sKnownMutationsInFlight = new AtomicInteger(0);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -080068
Brad Fitzpatrick342984a2010-03-09 16:59:30 -080069 // Over this size we don't reject loading or saving settings but
70 // we do consider them broken/malicious and don't keep them in
71 // memory at least:
72 private static final int MAX_CACHE_ENTRY_SIZE = 500;
73
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -080074 private static final Bundle NULL_SETTING = Bundle.forPair("value", null);
75
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -070076 // Used as a sentinel value in an instance equality test when we
77 // want to cache the existence of a key, but not store its value.
78 private static final Bundle TOO_LARGE_TO_CACHE_MARKER = Bundle.forPair("_dummy", null);
79
James Wylder074da8f2009-02-25 08:38:31 -060080 protected DatabaseHelper mOpenHelper;
Amith Yamasani8823c0a82009-07-07 14:30:17 -070081 private BackupManager mBackupManager;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070082
83 /**
84 * Decode a content URL into the table, projection, and arguments
85 * used to access the corresponding database rows.
86 */
87 private static class SqlArguments {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 public String table;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070089 public final String where;
90 public final String[] args;
91
92 /** Operate on existing rows. */
93 SqlArguments(Uri url, String where, String[] args) {
94 if (url.getPathSegments().size() == 1) {
95 this.table = url.getPathSegments().get(0);
Dianne Hackborn24117ce2010-07-12 15:54:38 -070096 if (!DatabaseHelper.isValidTable(this.table)) {
97 throw new IllegalArgumentException("Bad root path: " + this.table);
98 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070099 this.where = where;
100 this.args = args;
101 } else if (url.getPathSegments().size() != 2) {
102 throw new IllegalArgumentException("Invalid URI: " + url);
103 } else if (!TextUtils.isEmpty(where)) {
104 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
105 } else {
106 this.table = url.getPathSegments().get(0);
Dianne Hackborn24117ce2010-07-12 15:54:38 -0700107 if (!DatabaseHelper.isValidTable(this.table)) {
108 throw new IllegalArgumentException("Bad root path: " + this.table);
109 }
Doug Zongkeraed8f8e2010-01-07 18:07:50 -0800110 if ("system".equals(this.table) || "secure".equals(this.table)) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700111 this.where = Settings.NameValueTable.NAME + "=?";
112 this.args = new String[] { url.getPathSegments().get(1) };
113 } else {
114 this.where = "_id=" + ContentUris.parseId(url);
115 this.args = null;
116 }
117 }
118 }
119
120 /** Insert new rows (no where clause allowed). */
121 SqlArguments(Uri url) {
122 if (url.getPathSegments().size() == 1) {
123 this.table = url.getPathSegments().get(0);
Dianne Hackborn24117ce2010-07-12 15:54:38 -0700124 if (!DatabaseHelper.isValidTable(this.table)) {
125 throw new IllegalArgumentException("Bad root path: " + this.table);
126 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700127 this.where = null;
128 this.args = null;
129 } else {
130 throw new IllegalArgumentException("Invalid URI: " + url);
131 }
132 }
133 }
134
135 /**
136 * Get the content URI of a row added to a table.
137 * @param tableUri of the entire table
138 * @param values found in the row
139 * @param rowId of the row
140 * @return the content URI for this particular row
141 */
142 private Uri getUriFor(Uri tableUri, ContentValues values, long rowId) {
143 if (tableUri.getPathSegments().size() != 1) {
144 throw new IllegalArgumentException("Invalid URI: " + tableUri);
145 }
146 String table = tableUri.getPathSegments().get(0);
Doug Zongkeraed8f8e2010-01-07 18:07:50 -0800147 if ("system".equals(table) || "secure".equals(table)) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700148 String name = values.getAsString(Settings.NameValueTable.NAME);
149 return Uri.withAppendedPath(tableUri, name);
150 } else {
151 return ContentUris.withAppendedId(tableUri, rowId);
152 }
153 }
154
155 /**
156 * Send a notification when a particular content URI changes.
157 * Modify the system property used to communicate the version of
158 * this table, for tables which have such a property. (The Settings
159 * contract class uses these to provide client-side caches.)
160 * @param uri to send notifications for
161 */
162 private void sendNotify(Uri uri) {
163 // Update the system property *first*, so if someone is listening for
164 // a notification and then using the contract class to get their data,
165 // the system property will be updated and they'll get the new data.
166
Amith Yamasanid1582142009-07-08 20:04:55 -0700167 boolean backedUpDataChanged = false;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700168 String property = null, table = uri.getPathSegments().get(0);
169 if (table.equals("system")) {
170 property = Settings.System.SYS_PROP_SETTING_VERSION;
Amith Yamasanid1582142009-07-08 20:04:55 -0700171 backedUpDataChanged = true;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800172 } else if (table.equals("secure")) {
173 property = Settings.Secure.SYS_PROP_SETTING_VERSION;
Amith Yamasanid1582142009-07-08 20:04:55 -0700174 backedUpDataChanged = true;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700175 }
176
177 if (property != null) {
178 long version = SystemProperties.getLong(property, 0) + 1;
179 if (LOCAL_LOGV) Log.v(TAG, "property: " + property + "=" + version);
180 SystemProperties.set(property, Long.toString(version));
181 }
182
-b master501eec92009-07-06 13:53:11 -0700183 // Inform the backup manager about a data change
Amith Yamasanid1582142009-07-08 20:04:55 -0700184 if (backedUpDataChanged) {
185 mBackupManager.dataChanged();
186 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700187 // Now send the notification through the content framework.
188
189 String notify = uri.getQueryParameter("notify");
190 if (notify == null || "true".equals(notify)) {
191 getContext().getContentResolver().notifyChange(uri, null);
192 if (LOCAL_LOGV) Log.v(TAG, "notifying: " + uri);
193 } else {
194 if (LOCAL_LOGV) Log.v(TAG, "notification suppressed: " + uri);
195 }
196 }
197
198 /**
199 * Make sure the caller has permission to write this data.
200 * @param args supplied by the caller
201 * @throws SecurityException if the caller is forbidden to write.
202 */
203 private void checkWritePermissions(SqlArguments args) {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800204 if ("secure".equals(args.table) &&
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800205 getContext().checkCallingOrSelfPermission(
Doug Zongkeraed8f8e2010-01-07 18:07:50 -0800206 android.Manifest.permission.WRITE_SECURE_SETTINGS) !=
207 PackageManager.PERMISSION_GRANTED) {
Brett Chabot16dd82c2009-06-18 17:00:48 -0700208 throw new SecurityException(
Doug Zongkeraed8f8e2010-01-07 18:07:50 -0800209 String.format("Permission denial: writing to secure settings requires %1$s",
210 android.Manifest.permission.WRITE_SECURE_SETTINGS));
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700211 }
212 }
213
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700214 // FileObserver for external modifications to the database file.
215 // Note that this is for platform developers only with
216 // userdebug/eng builds who should be able to tinker with the
217 // sqlite database out from under the SettingsProvider, which is
218 // normally the exclusive owner of the database. But we keep this
219 // enabled all the time to minimize development-vs-user
220 // differences in testing.
221 private static SettingsFileObserver sObserverInstance;
222 private class SettingsFileObserver extends FileObserver {
223 private final AtomicBoolean mIsDirty = new AtomicBoolean(false);
224 private final String mPath;
225
226 public SettingsFileObserver(String path) {
227 super(path, FileObserver.CLOSE_WRITE |
228 FileObserver.CREATE | FileObserver.DELETE |
229 FileObserver.MOVED_TO | FileObserver.MODIFY);
230 mPath = path;
231 }
232
233 public void onEvent(int event, String path) {
234 int modsInFlight = sKnownMutationsInFlight.get();
235 if (modsInFlight > 0) {
236 // our own modification.
237 return;
238 }
239 Log.d(TAG, "external modification to " + mPath + "; event=" + event);
240 if (!mIsDirty.compareAndSet(false, true)) {
241 // already handled. (we get a few update events
242 // during an sqlite write)
243 return;
244 }
245 Log.d(TAG, "updating our caches for " + mPath);
246 fullyPopulateCaches();
247 mIsDirty.set(false);
248 }
249 }
250
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700251 @Override
252 public boolean onCreate() {
253 mOpenHelper = new DatabaseHelper(getContext());
Amith Yamasani8823c0a82009-07-07 14:30:17 -0700254 mBackupManager = new BackupManager(getContext());
Fred Quintanac70239e2009-12-17 10:28:33 -0800255
256 if (!ensureAndroidIdIsSet()) {
257 return false;
258 }
259
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700260 // Watch for external modifications to the database file,
261 // keeping our cache in sync.
Vasu Nori01a479c2011-01-10 23:20:39 -0800262 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
263 db.enableWriteAheadLogging();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700264 sObserverInstance = new SettingsFileObserver(db.getPath());
265 sObserverInstance.startWatching();
266 startAsyncCachePopulation();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700267 return true;
268 }
269
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700270 private void startAsyncCachePopulation() {
271 new Thread("populate-settings-caches") {
272 public void run() {
273 fullyPopulateCaches();
274 }
275 }.start();
276 }
277
278 private void fullyPopulateCaches() {
279 fullyPopulateCache("secure", sSecureCache);
280 fullyPopulateCache("system", sSystemCache);
281 }
282
283 // Slurp all values (if sane in number & size) into cache.
284 private void fullyPopulateCache(String table, SettingsCache cache) {
285 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
286 Cursor c = db.query(
287 table,
288 new String[] { Settings.NameValueTable.NAME, Settings.NameValueTable.VALUE },
289 null, null, null, null, null,
290 "" + (MAX_CACHE_ENTRIES + 1) /* limit */);
291 try {
292 synchronized (cache) {
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800293 cache.evictAll();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700294 cache.setFullyMatchesDisk(true); // optimistic
295 int rows = 0;
296 while (c.moveToNext()) {
297 rows++;
298 String name = c.getString(0);
299 String value = c.getString(1);
300 cache.populate(name, value);
301 }
302 if (rows > MAX_CACHE_ENTRIES) {
303 // Somewhat redundant, as removeEldestEntry() will
304 // have already done this, but to be explicit:
305 cache.setFullyMatchesDisk(false);
306 Log.d(TAG, "row count exceeds max cache entries for table " + table);
307 }
Brad Fitzpatrick3a2952b2010-08-26 17:16:14 -0700308 Log.d(TAG, "cache for settings table '" + table + "' rows=" + rows + "; fullycached=" +
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700309 cache.fullyMatchesDisk());
310 }
311 } finally {
312 c.close();
313 }
314 }
315
Fred Quintanac70239e2009-12-17 10:28:33 -0800316 private boolean ensureAndroidIdIsSet() {
317 final Cursor c = query(Settings.Secure.CONTENT_URI,
318 new String[] { Settings.NameValueTable.VALUE },
319 Settings.NameValueTable.NAME + "=?",
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800320 new String[] { Settings.Secure.ANDROID_ID }, null);
Fred Quintanac70239e2009-12-17 10:28:33 -0800321 try {
322 final String value = c.moveToNext() ? c.getString(0) : null;
323 if (value == null) {
Nick Kralevich9bb4ec42010-09-24 11:48:37 -0700324 final SecureRandom random = new SecureRandom();
Fred Quintanac70239e2009-12-17 10:28:33 -0800325 final String newAndroidIdValue = Long.toHexString(random.nextLong());
Doug Zongker0fe27cf2010-08-19 13:38:26 -0700326 Log.d(TAG, "Generated and saved new ANDROID_ID [" + newAndroidIdValue + "]");
Fred Quintanac70239e2009-12-17 10:28:33 -0800327 final ContentValues values = new ContentValues();
328 values.put(Settings.NameValueTable.NAME, Settings.Secure.ANDROID_ID);
329 values.put(Settings.NameValueTable.VALUE, newAndroidIdValue);
330 final Uri uri = insert(Settings.Secure.CONTENT_URI, values);
331 if (uri == null) {
332 return false;
333 }
334 }
335 return true;
Fred Quintanac70239e2009-12-17 10:28:33 -0800336 } finally {
337 c.close();
338 }
339 }
340
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800341 /**
342 * Fast path that avoids the use of chatty remoted Cursors.
343 */
344 @Override
345 public Bundle call(String method, String request, Bundle args) {
346 if (Settings.CALL_METHOD_GET_SYSTEM.equals(method)) {
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800347 return lookupValue("system", sSystemCache, request);
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800348 }
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800349 if (Settings.CALL_METHOD_GET_SECURE.equals(method)) {
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800350 return lookupValue("secure", sSecureCache, request);
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800351 }
352 return null;
353 }
354
355 // Looks up value 'key' in 'table' and returns either a single-pair Bundle,
356 // possibly with a null value, or null on failure.
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800357 private Bundle lookupValue(String table, SettingsCache cache, String key) {
358 synchronized (cache) {
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800359 Bundle value = cache.get(key);
360 if (value != null) {
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700361 if (value != TOO_LARGE_TO_CACHE_MARKER) {
362 return value;
363 }
364 // else we fall through and read the value from disk
365 } else if (cache.fullyMatchesDisk()) {
366 // Fast path (very common). Don't even try touch disk
367 // if we know we've slurped it all in. Trying to
368 // touch the disk would mean waiting for yaffs2 to
369 // give us access, which could takes hundreds of
370 // milliseconds. And we're very likely being called
371 // from somebody's UI thread...
372 return NULL_SETTING;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800373 }
374 }
375
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800376 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
377 Cursor cursor = null;
378 try {
379 cursor = db.query(table, COLUMN_VALUE, "name=?", new String[]{key},
380 null, null, null, null);
381 if (cursor != null && cursor.getCount() == 1) {
382 cursor.moveToFirst();
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800383 return cache.putIfAbsent(key, cursor.getString(0));
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800384 }
385 } catch (SQLiteException e) {
386 Log.w(TAG, "settings lookup error", e);
387 return null;
388 } finally {
389 if (cursor != null) cursor.close();
390 }
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800391 cache.putIfAbsent(key, null);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800392 return NULL_SETTING;
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800393 }
394
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700395 @Override
396 public Cursor query(Uri url, String[] select, String where, String[] whereArgs, String sort) {
397 SqlArguments args = new SqlArguments(url, where, whereArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
399
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800400 // The favorites table was moved from this provider to a provider inside Home
401 // Home still need to query this table to upgrade from pre-cupcake builds
402 // However, a cupcake+ build with no data does not contain this table which will
403 // cause an exception in the SQL stack. The following line is a special case to
404 // let the caller of the query have a chance to recover and avoid the exception
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800405 if (TABLE_FAVORITES.equals(args.table)) {
406 return null;
407 } else if (TABLE_OLD_FAVORITES.equals(args.table)) {
408 args.table = TABLE_FAVORITES;
409 Cursor cursor = db.rawQuery("PRAGMA table_info(favorites);", null);
410 if (cursor != null) {
411 boolean exists = cursor.getCount() > 0;
412 cursor.close();
413 if (!exists) return null;
414 } else {
415 return null;
416 }
417 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800418
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700419 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
420 qb.setTables(args.table);
421
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700422 Cursor ret = qb.query(db, select, args.where, args.args, null, null, sort);
423 ret.setNotificationUri(getContext().getContentResolver(), url);
424 return ret;
425 }
426
427 @Override
428 public String getType(Uri url) {
429 // If SqlArguments supplies a where clause, then it must be an item
430 // (because we aren't supplying our own where clause).
431 SqlArguments args = new SqlArguments(url, null, null);
432 if (TextUtils.isEmpty(args.where)) {
433 return "vnd.android.cursor.dir/" + args.table;
434 } else {
435 return "vnd.android.cursor.item/" + args.table;
436 }
437 }
438
439 @Override
440 public int bulkInsert(Uri uri, ContentValues[] values) {
441 SqlArguments args = new SqlArguments(uri);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800442 if (TABLE_FAVORITES.equals(args.table)) {
443 return 0;
444 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700445 checkWritePermissions(args);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800446 SettingsCache cache = SettingsCache.forTable(args.table);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700447
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700448 sKnownMutationsInFlight.incrementAndGet();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700449 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
450 db.beginTransaction();
451 try {
452 int numValues = values.length;
453 for (int i = 0; i < numValues; i++) {
454 if (db.insert(args.table, null, values[i]) < 0) return 0;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800455 SettingsCache.populate(cache, values[i]);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700456 if (LOCAL_LOGV) Log.v(TAG, args.table + " <- " + values[i]);
457 }
458 db.setTransactionSuccessful();
459 } finally {
460 db.endTransaction();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700461 sKnownMutationsInFlight.decrementAndGet();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700462 }
463
464 sendNotify(uri);
465 return values.length;
466 }
467
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700468 /*
469 * Used to parse changes to the value of Settings.Secure.LOCATION_PROVIDERS_ALLOWED.
470 * This setting contains a list of the currently enabled location providers.
471 * But helper functions in android.providers.Settings can enable or disable
472 * a single provider by using a "+" or "-" prefix before the provider name.
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800473 *
474 * @returns whether the database needs to be updated or not, also modifying
475 * 'initialValues' if needed.
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700476 */
477 private boolean parseProviderList(Uri url, ContentValues initialValues) {
478 String value = initialValues.getAsString(Settings.Secure.VALUE);
479 String newProviders = null;
480 if (value != null && value.length() > 1) {
481 char prefix = value.charAt(0);
482 if (prefix == '+' || prefix == '-') {
483 // skip prefix
484 value = value.substring(1);
485
486 // read list of enabled providers into "providers"
487 String providers = "";
488 String[] columns = {Settings.Secure.VALUE};
489 String where = Settings.Secure.NAME + "=\'" + Settings.Secure.LOCATION_PROVIDERS_ALLOWED + "\'";
490 Cursor cursor = query(url, columns, where, null, null);
491 if (cursor != null && cursor.getCount() == 1) {
492 try {
493 cursor.moveToFirst();
494 providers = cursor.getString(0);
495 } finally {
496 cursor.close();
497 }
498 }
499
500 int index = providers.indexOf(value);
501 int end = index + value.length();
502 // check for commas to avoid matching on partial string
503 if (index > 0 && providers.charAt(index - 1) != ',') index = -1;
504 if (end < providers.length() && providers.charAt(end) != ',') index = -1;
505
506 if (prefix == '+' && index < 0) {
507 // append the provider to the list if not present
508 if (providers.length() == 0) {
509 newProviders = value;
510 } else {
511 newProviders = providers + ',' + value;
512 }
513 } else if (prefix == '-' && index >= 0) {
514 // remove the provider from the list if present
Mike Lockwoodbdc7f892010-04-21 18:24:57 -0400515 // remove leading or trailing comma
516 if (index > 0) {
517 index--;
518 } else if (end < providers.length()) {
519 end++;
520 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700521
522 newProviders = providers.substring(0, index);
523 if (end < providers.length()) {
524 newProviders += providers.substring(end);
525 }
526 } else {
527 // nothing changed, so no need to update the database
528 return false;
529 }
530
531 if (newProviders != null) {
532 initialValues.put(Settings.Secure.VALUE, newProviders);
533 }
534 }
535 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800536
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700537 return true;
538 }
539
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700540 @Override
541 public Uri insert(Uri url, ContentValues initialValues) {
542 SqlArguments args = new SqlArguments(url);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800543 if (TABLE_FAVORITES.equals(args.table)) {
544 return null;
545 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700546 checkWritePermissions(args);
547
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700548 // Special case LOCATION_PROVIDERS_ALLOWED.
549 // Support enabling/disabling a single provider (using "+" or "-" prefix)
550 String name = initialValues.getAsString(Settings.Secure.NAME);
551 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)) {
552 if (!parseProviderList(url, initialValues)) return null;
553 }
554
Brad Fitzpatrick547a96b2010-03-09 17:58:53 -0800555 SettingsCache cache = SettingsCache.forTable(args.table);
556 String value = initialValues.getAsString(Settings.NameValueTable.VALUE);
557 if (SettingsCache.isRedundantSetValue(cache, name, value)) {
558 return Uri.withAppendedPath(url, name);
559 }
560
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700561 sKnownMutationsInFlight.incrementAndGet();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700562 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
563 final long rowId = db.insert(args.table, null, initialValues);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700564 sKnownMutationsInFlight.decrementAndGet();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700565 if (rowId <= 0) return null;
566
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800567 SettingsCache.populate(cache, initialValues); // before we notify
568
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700569 if (LOCAL_LOGV) Log.v(TAG, args.table + " <- " + initialValues);
570 url = getUriFor(url, initialValues, rowId);
571 sendNotify(url);
572 return url;
573 }
574
575 @Override
576 public int delete(Uri url, String where, String[] whereArgs) {
577 SqlArguments args = new SqlArguments(url, where, whereArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 if (TABLE_FAVORITES.equals(args.table)) {
579 return 0;
580 } else if (TABLE_OLD_FAVORITES.equals(args.table)) {
581 args.table = TABLE_FAVORITES;
582 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700583 checkWritePermissions(args);
584
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700585 sKnownMutationsInFlight.incrementAndGet();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700586 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
587 int count = db.delete(args.table, args.where, args.args);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700588 sKnownMutationsInFlight.decrementAndGet();
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800589 if (count > 0) {
Brad Fitzpatrick3a2952b2010-08-26 17:16:14 -0700590 SettingsCache.invalidate(args.table); // before we notify
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800591 sendNotify(url);
592 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700593 startAsyncCachePopulation();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700594 if (LOCAL_LOGV) Log.v(TAG, args.table + ": " + count + " row(s) deleted");
595 return count;
596 }
597
598 @Override
599 public int update(Uri url, ContentValues initialValues, String where, String[] whereArgs) {
600 SqlArguments args = new SqlArguments(url, where, whereArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 if (TABLE_FAVORITES.equals(args.table)) {
602 return 0;
603 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700604 checkWritePermissions(args);
605
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700606 sKnownMutationsInFlight.incrementAndGet();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700607 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
608 int count = db.update(args.table, initialValues, args.where, args.args);
Brad Fitzpatrick3a2952b2010-08-26 17:16:14 -0700609 sKnownMutationsInFlight.decrementAndGet();
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800610 if (count > 0) {
Brad Fitzpatrick3a2952b2010-08-26 17:16:14 -0700611 SettingsCache.invalidate(args.table); // before we notify
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800612 sendNotify(url);
613 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700614 startAsyncCachePopulation();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700615 if (LOCAL_LOGV) Log.v(TAG, args.table + ": " + count + " row(s) <- " + initialValues);
616 return count;
617 }
618
619 @Override
620 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
621
622 /*
623 * When a client attempts to openFile the default ringtone or
624 * notification setting Uri, we will proxy the call to the current
625 * default ringtone's Uri (if it is in the DRM or media provider).
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700626 */
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700627 int ringtoneType = RingtoneManager.getDefaultType(uri);
628 // Above call returns -1 if the Uri doesn't match a default type
629 if (ringtoneType != -1) {
630 Context context = getContext();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700631
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700632 // Get the current value for the default sound
633 Uri soundUri = RingtoneManager.getActualDefaultRingtoneUri(context, ringtoneType);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700634
Marco Nelissen69f593c2009-07-28 09:55:04 -0700635 if (soundUri != null) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700636 // Only proxy the openFile call to drm or media providers
637 String authority = soundUri.getAuthority();
638 boolean isDrmAuthority = authority.equals(DrmStore.AUTHORITY);
639 if (isDrmAuthority || authority.equals(MediaStore.AUTHORITY)) {
640
641 if (isDrmAuthority) {
642 try {
643 // Check DRM access permission here, since once we
644 // do the below call the DRM will be checking our
645 // permission, not our caller's permission
646 DrmStore.enforceAccessDrmPermission(context);
647 } catch (SecurityException e) {
648 throw new FileNotFoundException(e.getMessage());
649 }
650 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700651
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700652 return context.getContentResolver().openFileDescriptor(soundUri, mode);
653 }
654 }
655 }
656
657 return super.openFile(uri, mode);
658 }
Marco Nelissen69f593c2009-07-28 09:55:04 -0700659
660 @Override
661 public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException {
662
663 /*
664 * When a client attempts to openFile the default ringtone or
665 * notification setting Uri, we will proxy the call to the current
666 * default ringtone's Uri (if it is in the DRM or media provider).
667 */
668 int ringtoneType = RingtoneManager.getDefaultType(uri);
669 // Above call returns -1 if the Uri doesn't match a default type
670 if (ringtoneType != -1) {
671 Context context = getContext();
672
673 // Get the current value for the default sound
674 Uri soundUri = RingtoneManager.getActualDefaultRingtoneUri(context, ringtoneType);
675
676 if (soundUri != null) {
677 // Only proxy the openFile call to drm or media providers
678 String authority = soundUri.getAuthority();
679 boolean isDrmAuthority = authority.equals(DrmStore.AUTHORITY);
680 if (isDrmAuthority || authority.equals(MediaStore.AUTHORITY)) {
681
682 if (isDrmAuthority) {
683 try {
684 // Check DRM access permission here, since once we
685 // do the below call the DRM will be checking our
686 // permission, not our caller's permission
687 DrmStore.enforceAccessDrmPermission(context);
688 } catch (SecurityException e) {
689 throw new FileNotFoundException(e.getMessage());
690 }
691 }
692
693 ParcelFileDescriptor pfd = null;
694 try {
695 pfd = context.getContentResolver().openFileDescriptor(soundUri, mode);
696 return new AssetFileDescriptor(pfd, 0, -1);
697 } catch (FileNotFoundException ex) {
698 // fall through and open the fallback ringtone below
699 }
700 }
701
702 try {
703 return super.openAssetFile(soundUri, mode);
704 } catch (FileNotFoundException ex) {
705 // Since a non-null Uri was specified, but couldn't be opened,
706 // fall back to the built-in ringtone.
707 return context.getResources().openRawResourceFd(
708 com.android.internal.R.raw.fallbackring);
709 }
710 }
711 // no need to fall through and have openFile() try again, since we
712 // already know that will fail.
713 throw new FileNotFoundException(); // or return null ?
714 }
715
716 // Note that this will end up calling openFile() above.
717 return super.openAssetFile(uri, mode);
718 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800719
720 /**
721 * In-memory LRU Cache of system and secure settings, along with
722 * associated helper functions to keep cache coherent with the
723 * database.
724 */
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800725 private static final class SettingsCache extends LruCache<String, Bundle> {
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800726
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700727 private final String mCacheName;
728 private boolean mCacheFullyMatchesDisk = false; // has the whole database slurped.
729
730 public SettingsCache(String name) {
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800731 super(MAX_CACHE_ENTRIES);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700732 mCacheName = name;
733 }
734
735 /**
736 * Is the whole database table slurped into this cache?
737 */
738 public boolean fullyMatchesDisk() {
739 synchronized (this) {
740 return mCacheFullyMatchesDisk;
741 }
742 }
743
744 public void setFullyMatchesDisk(boolean value) {
745 synchronized (this) {
746 mCacheFullyMatchesDisk = value;
747 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800748 }
749
750 @Override
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800751 protected synchronized void entryEvicted(String key, Bundle value) {
752 mCacheFullyMatchesDisk = false;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800753 }
754
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800755 /**
756 * Atomic cache population, conditional on size of value and if
757 * we lost a race.
758 *
759 * @returns a Bundle to send back to the client from call(), even
760 * if we lost the race.
761 */
762 public Bundle putIfAbsent(String key, String value) {
763 Bundle bundle = (value == null) ? NULL_SETTING : Bundle.forPair("value", value);
764 if (value == null || value.length() <= MAX_CACHE_ENTRY_SIZE) {
765 synchronized (this) {
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800766 if (get(key) == null) {
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800767 put(key, bundle);
768 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800769 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800770 }
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800771 return bundle;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800772 }
773
774 public static SettingsCache forTable(String tableName) {
775 if ("system".equals(tableName)) {
776 return SettingsProvider.sSystemCache;
777 }
778 if ("secure".equals(tableName)) {
779 return SettingsProvider.sSecureCache;
780 }
781 return null;
782 }
783
784 /**
785 * Populates a key in a given (possibly-null) cache.
786 */
787 public static void populate(SettingsCache cache, ContentValues contentValues) {
788 if (cache == null) {
789 return;
790 }
791 String name = contentValues.getAsString(Settings.NameValueTable.NAME);
792 if (name == null) {
793 Log.w(TAG, "null name populating settings cache.");
794 return;
795 }
796 String value = contentValues.getAsString(Settings.NameValueTable.VALUE);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700797 cache.populate(name, value);
798 }
799
800 public void populate(String name, String value) {
801 synchronized (this) {
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800802 if (value == null || value.length() <= MAX_CACHE_ENTRY_SIZE) {
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700803 put(name, Bundle.forPair(Settings.NameValueTable.VALUE, value));
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800804 } else {
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700805 put(name, TOO_LARGE_TO_CACHE_MARKER);
Brad Fitzpatrick342984a2010-03-09 16:59:30 -0800806 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800807 }
808 }
809
810 /**
811 * Used for wiping a whole cache on deletes when we're not
812 * sure what exactly was deleted or changed.
813 */
Brad Fitzpatrick3a2952b2010-08-26 17:16:14 -0700814 public static void invalidate(String tableName) {
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800815 SettingsCache cache = SettingsCache.forTable(tableName);
816 if (cache == null) {
817 return;
818 }
819 synchronized (cache) {
Jesse Wilson0c7faee2011-02-10 11:33:19 -0800820 cache.evictAll();
Brad Fitzpatrick3a2952b2010-08-26 17:16:14 -0700821 cache.mCacheFullyMatchesDisk = false;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800822 }
823 }
824
Brad Fitzpatrick547a96b2010-03-09 17:58:53 -0800825 /**
826 * For suppressing duplicate/redundant settings inserts early,
827 * checking our cache first (but without faulting it in),
828 * before going to sqlite with the mutation.
829 */
830 public static boolean isRedundantSetValue(SettingsCache cache, String name, String value) {
831 if (cache == null) return false;
832 synchronized (cache) {
833 Bundle bundle = cache.get(name);
834 if (bundle == null) return false;
835 String oldValue = bundle.getPairValue();
836 if (oldValue == null && value == null) return true;
837 if ((oldValue == null) != (value == null)) return false;
838 return oldValue.equals(value);
839 }
840 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800841 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700842}