blob: 05673c3576c5c9445fc5e6d2169eeabd87e90760 [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
19import android.content.ComponentName;
20import android.content.ContentValues;
21import android.content.Context;
22import android.content.Intent;
23import android.content.pm.ActivityInfo;
24import android.content.pm.PackageManager;
Romain Guyf02811f2010-03-09 16:33:51 -080025import android.content.res.XmlResourceParser;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070026import android.database.Cursor;
27import android.database.sqlite.SQLiteDatabase;
28import android.database.sqlite.SQLiteOpenHelper;
29import android.database.sqlite.SQLiteStatement;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070030import android.media.AudioManager;
31import android.media.AudioService;
32import android.net.ConnectivityManager;
Christopher Tate06efb532012-08-24 15:29:27 -070033import android.os.Environment;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070034import android.os.SystemProperties;
Christopher Tate06efb532012-08-24 15:29:27 -070035import android.os.UserHandle;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070036import android.provider.Settings;
Amith Yamasani156c4352010-03-05 17:10:03 -080037import android.provider.Settings.Secure;
Wink Savillea639b312012-07-10 12:37:54 -070038import android.telephony.TelephonyManager;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070039import android.text.TextUtils;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070040import android.util.Log;
Suchi Amalapurapu40e47252010-04-07 16:15:50 -070041
Gilles Debunnefa53d302011-07-08 10:40:51 -070042import com.android.internal.content.PackageHelper;
Gilles Debunnefa53d302011-07-08 10:40:51 -070043import com.android.internal.telephony.Phone;
Wink Savillea639b312012-07-10 12:37:54 -070044import com.android.internal.telephony.PhoneConstants;
Gilles Debunnefa53d302011-07-08 10:40:51 -070045import com.android.internal.telephony.RILConstants;
46import com.android.internal.util.XmlUtils;
47import com.android.internal.widget.LockPatternUtils;
48import com.android.internal.widget.LockPatternView;
49
50import org.xmlpull.v1.XmlPullParser;
51import org.xmlpull.v1.XmlPullParserException;
52
Christopher Tate06efb532012-08-24 15:29:27 -070053import java.io.File;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070054import java.io.IOException;
Dianne Hackborn24117ce2010-07-12 15:54:38 -070055import java.util.HashSet;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070056import java.util.List;
57
58/**
59 * Database helper class for {@link SettingsProvider}.
60 * Mostly just has a bit {@link #onCreate} to initialize the database.
61 */
James Wylder074da8f2009-02-25 08:38:31 -060062public class DatabaseHelper extends SQLiteOpenHelper {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070063 private static final String TAG = "SettingsProvider";
64 private static final String DATABASE_NAME = "settings.db";
Jim Millerf1860552009-09-09 17:46:35 -070065
66 // Please, please please. If you update the database version, check to make sure the
67 // database gets upgraded properly. At a minimum, please confirm that 'upgradeVersion'
68 // is properly propagated through your change. Not doing so will result in a loss of user
69 // settings.
rich cannings4d8fc792012-09-07 14:43:43 -070070 private static final int DATABASE_VERSION = 87;
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -070071
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070072 private Context mContext;
Christopher Tate06efb532012-08-24 15:29:27 -070073 private int mUserHandle;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070074
Dianne Hackborn24117ce2010-07-12 15:54:38 -070075 private static final HashSet<String> mValidTables = new HashSet<String>();
76
Christopher Tate06efb532012-08-24 15:29:27 -070077 private static final String TABLE_SYSTEM = "system";
78 private static final String TABLE_SECURE = "secure";
79 private static final String TABLE_GLOBAL = "global";
80
Dianne Hackborn24117ce2010-07-12 15:54:38 -070081 static {
Christopher Tate06efb532012-08-24 15:29:27 -070082 mValidTables.add(TABLE_SYSTEM);
83 mValidTables.add(TABLE_SECURE);
84 mValidTables.add(TABLE_GLOBAL);
Dianne Hackborn24117ce2010-07-12 15:54:38 -070085 mValidTables.add("bluetooth_devices");
86 mValidTables.add("bookmarks");
87
88 // These are old.
89 mValidTables.add("favorites");
90 mValidTables.add("gservices");
91 mValidTables.add("old_favorites");
92 }
93
Christopher Tate06efb532012-08-24 15:29:27 -070094 static String dbNameForUser(final int userHandle) {
95 // The owner gets the unadorned db name;
96 if (userHandle == UserHandle.USER_OWNER) {
97 return DATABASE_NAME;
98 } else {
99 // Place the database in the user-specific data tree so that it's
100 // cleaned up automatically when the user is deleted.
101 File databaseFile = new File(
102 Environment.getUserSystemDirectory(userHandle), DATABASE_NAME);
103 return databaseFile.getPath();
104 }
105 }
106
107 public DatabaseHelper(Context context, int userHandle) {
108 super(context, dbNameForUser(userHandle), null, DATABASE_VERSION);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700109 mContext = context;
Christopher Tate06efb532012-08-24 15:29:27 -0700110 mUserHandle = userHandle;
Jeff Brown47847f32012-03-22 19:13:11 -0700111 setWriteAheadLoggingEnabled(true);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700112 }
113
Dianne Hackborn24117ce2010-07-12 15:54:38 -0700114 public static boolean isValidTable(String name) {
115 return mValidTables.contains(name);
116 }
117
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800118 private void createSecureTable(SQLiteDatabase db) {
119 db.execSQL("CREATE TABLE secure (" +
120 "_id INTEGER PRIMARY KEY AUTOINCREMENT," +
121 "name TEXT UNIQUE ON CONFLICT REPLACE," +
122 "value TEXT" +
123 ");");
124 db.execSQL("CREATE INDEX secureIndex1 ON secure (name);");
125 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700126
Christopher Tate06efb532012-08-24 15:29:27 -0700127 private void createGlobalTable(SQLiteDatabase db) {
128 db.execSQL("CREATE TABLE global (" +
129 "_id INTEGER PRIMARY KEY AUTOINCREMENT," +
130 "name TEXT UNIQUE ON CONFLICT REPLACE," +
131 "value TEXT" +
132 ");");
133 db.execSQL("CREATE INDEX globalIndex1 ON global (name);");
134 }
135
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700136 @Override
137 public void onCreate(SQLiteDatabase db) {
138 db.execSQL("CREATE TABLE system (" +
139 "_id INTEGER PRIMARY KEY AUTOINCREMENT," +
140 "name TEXT UNIQUE ON CONFLICT REPLACE," +
141 "value TEXT" +
142 ");");
143 db.execSQL("CREATE INDEX systemIndex1 ON system (name);");
144
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800145 createSecureTable(db);
146
Christopher Tate06efb532012-08-24 15:29:27 -0700147 // Only create the global table for the singleton 'owner' user
148 if (mUserHandle == UserHandle.USER_OWNER) {
149 createGlobalTable(db);
150 }
151
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700152 db.execSQL("CREATE TABLE bluetooth_devices (" +
153 "_id INTEGER PRIMARY KEY," +
154 "name TEXT," +
155 "addr TEXT," +
156 "channel INTEGER," +
157 "type INTEGER" +
158 ");");
159
160 db.execSQL("CREATE TABLE bookmarks (" +
161 "_id INTEGER PRIMARY KEY," +
162 "title TEXT," +
163 "folder TEXT," +
164 "intent TEXT," +
165 "shortcut INTEGER," +
166 "ordering INTEGER" +
167 ");");
168
169 db.execSQL("CREATE INDEX bookmarksIndex1 ON bookmarks (folder);");
170 db.execSQL("CREATE INDEX bookmarksIndex2 ON bookmarks (shortcut);");
171
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700172 // Populate bookmarks table with initial bookmarks
173 loadBookmarks(db);
174
175 // Load initial volume levels into DB
176 loadVolumeLevels(db);
177
178 // Load inital settings values
179 loadSettings(db);
180 }
181
182 @Override
183 public void onUpgrade(SQLiteDatabase db, int oldVersion, int currentVersion) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700184 Log.w(TAG, "Upgrading settings database from version " + oldVersion + " to "
185 + currentVersion);
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700186
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700187 int upgradeVersion = oldVersion;
188
189 // Pattern for upgrade blocks:
190 //
191 // if (upgradeVersion == [the DATABASE_VERSION you set] - 1) {
192 // .. your upgrade logic..
193 // upgradeVersion = [the DATABASE_VERSION you set]
194 // }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700195
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700196 if (upgradeVersion == 20) {
197 /*
198 * Version 21 is part of the volume control refresh. There is no
199 * longer a UI-visible for setting notification vibrate on/off (in
200 * our design), but the functionality still exists. Force the
201 * notification vibrate to on.
202 */
203 loadVibrateSetting(db, true);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700204
205 upgradeVersion = 21;
206 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700207
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700208 if (upgradeVersion < 22) {
209 upgradeVersion = 22;
210 // Upgrade the lock gesture storage location and format
211 upgradeLockPatternLocation(db);
212 }
213
214 if (upgradeVersion < 23) {
215 db.execSQL("UPDATE favorites SET iconResource=0 WHERE iconType=0");
216 upgradeVersion = 23;
217 }
218
219 if (upgradeVersion == 23) {
220 db.beginTransaction();
221 try {
222 db.execSQL("ALTER TABLE favorites ADD spanX INTEGER");
223 db.execSQL("ALTER TABLE favorites ADD spanY INTEGER");
224 // Shortcuts, applications, folders
225 db.execSQL("UPDATE favorites SET spanX=1, spanY=1 WHERE itemType<=0");
226 // Photo frames, clocks
Wink Saville04e71b32009-04-02 11:00:54 -0700227 db.execSQL(
228 "UPDATE favorites SET spanX=2, spanY=2 WHERE itemType=1000 or itemType=1002");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700229 // Search boxes
230 db.execSQL("UPDATE favorites SET spanX=4, spanY=1 WHERE itemType=1001");
231 db.setTransactionSuccessful();
232 } finally {
233 db.endTransaction();
234 }
235 upgradeVersion = 24;
236 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700237
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700238 if (upgradeVersion == 24) {
239 db.beginTransaction();
240 try {
241 // The value of the constants for preferring wifi or preferring mobile have been
242 // swapped, so reload the default.
243 db.execSQL("DELETE FROM system WHERE name='network_preference'");
244 db.execSQL("INSERT INTO system ('name', 'value') values ('network_preference', '" +
245 ConnectivityManager.DEFAULT_NETWORK_PREFERENCE + "')");
246 db.setTransactionSuccessful();
247 } finally {
248 db.endTransaction();
249 }
250 upgradeVersion = 25;
251 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800252
253 if (upgradeVersion == 25) {
254 db.beginTransaction();
255 try {
256 db.execSQL("ALTER TABLE favorites ADD uri TEXT");
257 db.execSQL("ALTER TABLE favorites ADD displayMode INTEGER");
258 db.setTransactionSuccessful();
259 } finally {
260 db.endTransaction();
261 }
262 upgradeVersion = 26;
263 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700264
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800265 if (upgradeVersion == 26) {
266 // This introduces the new secure settings table.
267 db.beginTransaction();
268 try {
269 createSecureTable(db);
270 db.setTransactionSuccessful();
271 } finally {
272 db.endTransaction();
273 }
274 upgradeVersion = 27;
275 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700276
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800277 if (upgradeVersion == 27) {
Amith Yamasani156c4352010-03-05 17:10:03 -0800278 String[] settingsToMove = {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800279 Settings.Secure.ADB_ENABLED,
280 Settings.Secure.ANDROID_ID,
281 Settings.Secure.BLUETOOTH_ON,
282 Settings.Secure.DATA_ROAMING,
283 Settings.Secure.DEVICE_PROVISIONED,
284 Settings.Secure.HTTP_PROXY,
285 Settings.Secure.INSTALL_NON_MARKET_APPS,
286 Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
287 Settings.Secure.LOGGING_ID,
288 Settings.Secure.NETWORK_PREFERENCE,
289 Settings.Secure.PARENTAL_CONTROL_ENABLED,
290 Settings.Secure.PARENTAL_CONTROL_LAST_UPDATE,
291 Settings.Secure.PARENTAL_CONTROL_REDIRECT_URL,
292 Settings.Secure.SETTINGS_CLASSNAME,
293 Settings.Secure.USB_MASS_STORAGE_ENABLED,
294 Settings.Secure.USE_GOOGLE_MAIL,
295 Settings.Secure.WIFI_NETWORKS_AVAILABLE_NOTIFICATION_ON,
296 Settings.Secure.WIFI_NETWORKS_AVAILABLE_REPEAT_DELAY,
297 Settings.Secure.WIFI_NUM_OPEN_NETWORKS_KEPT,
298 Settings.Secure.WIFI_ON,
299 Settings.Secure.WIFI_WATCHDOG_ACCEPTABLE_PACKET_LOSS_PERCENTAGE,
300 Settings.Secure.WIFI_WATCHDOG_AP_COUNT,
301 Settings.Secure.WIFI_WATCHDOG_BACKGROUND_CHECK_DELAY_MS,
302 Settings.Secure.WIFI_WATCHDOG_BACKGROUND_CHECK_ENABLED,
303 Settings.Secure.WIFI_WATCHDOG_BACKGROUND_CHECK_TIMEOUT_MS,
304 Settings.Secure.WIFI_WATCHDOG_INITIAL_IGNORED_PING_COUNT,
305 Settings.Secure.WIFI_WATCHDOG_MAX_AP_CHECKS,
306 Settings.Secure.WIFI_WATCHDOG_ON,
307 Settings.Secure.WIFI_WATCHDOG_PING_COUNT,
308 Settings.Secure.WIFI_WATCHDOG_PING_DELAY_MS,
309 Settings.Secure.WIFI_WATCHDOG_PING_TIMEOUT_MS,
310 };
Christopher Tate92198742012-09-07 12:00:13 -0700311 moveSettingsToNewTable(db, TABLE_SYSTEM, TABLE_SECURE, settingsToMove, false);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800312 upgradeVersion = 28;
313 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700314
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800315 if (upgradeVersion == 28 || upgradeVersion == 29) {
316 // Note: The upgrade to 28 was flawed since it didn't delete the old
317 // setting first before inserting. Combining 28 and 29 with the
318 // fixed version.
319
320 // This upgrade adds the STREAM_NOTIFICATION type to the list of
321 // types affected by ringer modes (silent, vibrate, etc.)
322 db.beginTransaction();
323 try {
324 db.execSQL("DELETE FROM system WHERE name='"
325 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "'");
326 int newValue = (1 << AudioManager.STREAM_RING)
327 | (1 << AudioManager.STREAM_NOTIFICATION)
328 | (1 << AudioManager.STREAM_SYSTEM);
329 db.execSQL("INSERT INTO system ('name', 'value') values ('"
330 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "', '"
331 + String.valueOf(newValue) + "')");
332 db.setTransactionSuccessful();
333 } finally {
334 db.endTransaction();
335 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700336
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800337 upgradeVersion = 30;
338 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700339
The Android Open Source Project9266c552009-01-15 16:12:10 -0800340 if (upgradeVersion == 30) {
341 /*
342 * Upgrade 31 clears the title for all quick launch shortcuts so the
343 * activities' titles will be resolved at display time. Also, the
344 * folder is changed to '@quicklaunch'.
345 */
346 db.beginTransaction();
347 try {
348 db.execSQL("UPDATE bookmarks SET folder = '@quicklaunch'");
349 db.execSQL("UPDATE bookmarks SET title = ''");
350 db.setTransactionSuccessful();
351 } finally {
352 db.endTransaction();
353 }
354 upgradeVersion = 31;
355 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800356
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357 if (upgradeVersion == 31) {
358 /*
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700359 * Animations are now managed in preferences, and may be
360 * enabled or disabled based on product resources.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361 */
362 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700363 SQLiteStatement stmt = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800364 try {
365 db.execSQL("DELETE FROM system WHERE name='"
366 + Settings.System.WINDOW_ANIMATION_SCALE + "'");
367 db.execSQL("DELETE FROM system WHERE name='"
368 + Settings.System.TRANSITION_ANIMATION_SCALE + "'");
Vasu Nori89206fdb2010-03-22 10:37:03 -0700369 stmt = db.compileStatement("INSERT INTO system(name,value)"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800370 + " VALUES(?,?);");
371 loadDefaultAnimationSettings(stmt);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 db.setTransactionSuccessful();
373 } finally {
374 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700375 if (stmt != null) stmt.close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 }
377 upgradeVersion = 32;
378 }
379
380 if (upgradeVersion == 32) {
381 // The Wi-Fi watchdog SSID list is now seeded with the value of
382 // the property ro.com.android.wifi-watchlist
383 String wifiWatchList = SystemProperties.get("ro.com.android.wifi-watchlist");
384 if (!TextUtils.isEmpty(wifiWatchList)) {
385 db.beginTransaction();
386 try {
387 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" +
388 Settings.Secure.WIFI_WATCHDOG_WATCH_LIST + "','" +
389 wifiWatchList + "');");
390 db.setTransactionSuccessful();
391 } finally {
392 db.endTransaction();
393 }
394 }
395 upgradeVersion = 33;
396 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -0700397
The Android Open Source Project4df24232009-03-05 14:34:35 -0800398 if (upgradeVersion == 33) {
399 // Set the default zoom controls to: tap-twice to bring up +/-
400 db.beginTransaction();
401 try {
402 db.execSQL("INSERT INTO system(name,value) values('zoom','2');");
403 db.setTransactionSuccessful();
404 } finally {
405 db.endTransaction();
406 }
407 upgradeVersion = 34;
408 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409
Mike Lockwoodbcab8df2009-06-25 16:39:09 -0400410 if (upgradeVersion == 34) {
411 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700412 SQLiteStatement stmt = null;
Mike Lockwoodbcab8df2009-06-25 16:39:09 -0400413 try {
Vasu Nori89206fdb2010-03-22 10:37:03 -0700414 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
Dianne Hackborncf098292009-07-01 19:55:20 -0700415 + " VALUES(?,?);");
416 loadSecure35Settings(stmt);
Dianne Hackborncf098292009-07-01 19:55:20 -0700417 db.setTransactionSuccessful();
418 } finally {
419 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700420 if (stmt != null) stmt.close();
Dianne Hackborncf098292009-07-01 19:55:20 -0700421 }
Jim Millerf1860552009-09-09 17:46:35 -0700422 upgradeVersion = 35;
Mike Lockwood02901eb2009-08-25 15:11:17 -0700423 }
424 // due to a botched merge from donut to eclair, the initialization of ASSISTED_GPS_ENABLED
425 // was accidentally done out of order here.
426 // to fix this, ASSISTED_GPS_ENABLED is now initialized while upgrading from 38 to 39,
427 // and we intentionally do nothing from 35 to 36 now.
428 if (upgradeVersion == 35) {
The Android Open Source Project575d1af2009-07-03 08:55:59 -0700429 upgradeVersion = 36;
Dianne Hackborncf098292009-07-01 19:55:20 -0700430 }
Mike Lockwood02901eb2009-08-25 15:11:17 -0700431
Eric Laurenta553c252009-07-17 12:17:14 -0700432 if (upgradeVersion == 36) {
433 // This upgrade adds the STREAM_SYSTEM_ENFORCED type to the list of
434 // types affected by ringer modes (silent, vibrate, etc.)
435 db.beginTransaction();
436 try {
437 db.execSQL("DELETE FROM system WHERE name='"
438 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "'");
439 int newValue = (1 << AudioManager.STREAM_RING)
440 | (1 << AudioManager.STREAM_NOTIFICATION)
441 | (1 << AudioManager.STREAM_SYSTEM)
442 | (1 << AudioManager.STREAM_SYSTEM_ENFORCED);
443 db.execSQL("INSERT INTO system ('name', 'value') values ('"
444 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "', '"
445 + String.valueOf(newValue) + "')");
446 db.setTransactionSuccessful();
447 } finally {
448 db.endTransaction();
449 }
Jim Miller48805752009-08-04 18:59:20 -0700450 upgradeVersion = 37;
Eric Laurenta553c252009-07-17 12:17:14 -0700451 }
452
Mike Lockwoodbd5ddf02009-07-29 21:37:14 -0700453 if (upgradeVersion == 37) {
454 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700455 SQLiteStatement stmt = null;
Mike Lockwoodbd5ddf02009-07-29 21:37:14 -0700456 try {
Vasu Nori89206fdb2010-03-22 10:37:03 -0700457 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
Mike Lockwoodbd5ddf02009-07-29 21:37:14 -0700458 + " VALUES(?,?);");
459 loadStringSetting(stmt, Settings.System.AIRPLANE_MODE_TOGGLEABLE_RADIOS,
460 R.string.airplane_mode_toggleable_radios);
Mike Lockwoodbd5ddf02009-07-29 21:37:14 -0700461 db.setTransactionSuccessful();
462 } finally {
463 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700464 if (stmt != null) stmt.close();
Mike Lockwoodbd5ddf02009-07-29 21:37:14 -0700465 }
466 upgradeVersion = 38;
467 }
468
Mike Lockwood02901eb2009-08-25 15:11:17 -0700469 if (upgradeVersion == 38) {
470 db.beginTransaction();
471 try {
472 String value =
473 mContext.getResources().getBoolean(R.bool.assisted_gps_enabled) ? "1" : "0";
474 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" +
475 Settings.Secure.ASSISTED_GPS_ENABLED + "','" + value + "');");
476 db.setTransactionSuccessful();
477 } finally {
478 db.endTransaction();
479 }
480
481 upgradeVersion = 39;
482 }
483
Dan Murphy951764b2009-08-27 14:59:03 -0500484 if (upgradeVersion == 39) {
Amith Yamasanif50c5112011-01-07 11:32:30 -0800485 upgradeAutoBrightness(db);
Dan Murphy951764b2009-08-27 14:59:03 -0500486 upgradeVersion = 40;
487 }
488
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700489 if (upgradeVersion == 40) {
490 /*
491 * All animations are now turned on by default!
492 */
493 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700494 SQLiteStatement stmt = null;
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700495 try {
496 db.execSQL("DELETE FROM system WHERE name='"
497 + Settings.System.WINDOW_ANIMATION_SCALE + "'");
498 db.execSQL("DELETE FROM system WHERE name='"
499 + Settings.System.TRANSITION_ANIMATION_SCALE + "'");
Vasu Nori89206fdb2010-03-22 10:37:03 -0700500 stmt = db.compileStatement("INSERT INTO system(name,value)"
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700501 + " VALUES(?,?);");
502 loadDefaultAnimationSettings(stmt);
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700503 db.setTransactionSuccessful();
504 } finally {
505 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700506 if (stmt != null) stmt.close();
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700507 }
508 upgradeVersion = 41;
509 }
510
Dianne Hackborn075a18d2009-09-26 12:43:19 -0700511 if (upgradeVersion == 41) {
512 /*
513 * Initialize newly public haptic feedback setting
514 */
515 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700516 SQLiteStatement stmt = null;
Dianne Hackborn075a18d2009-09-26 12:43:19 -0700517 try {
518 db.execSQL("DELETE FROM system WHERE name='"
519 + Settings.System.HAPTIC_FEEDBACK_ENABLED + "'");
Vasu Nori89206fdb2010-03-22 10:37:03 -0700520 stmt = db.compileStatement("INSERT INTO system(name,value)"
Dianne Hackborn075a18d2009-09-26 12:43:19 -0700521 + " VALUES(?,?);");
522 loadDefaultHapticSettings(stmt);
Dianne Hackborn075a18d2009-09-26 12:43:19 -0700523 db.setTransactionSuccessful();
524 } finally {
525 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700526 if (stmt != null) stmt.close();
Dianne Hackborn075a18d2009-09-26 12:43:19 -0700527 }
528 upgradeVersion = 42;
529 }
530
Amith Yamasaniae3ed702009-12-01 19:02:05 -0800531 if (upgradeVersion == 42) {
532 /*
533 * Initialize new notification pulse setting
534 */
535 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700536 SQLiteStatement stmt = null;
Amith Yamasaniae3ed702009-12-01 19:02:05 -0800537 try {
Vasu Nori89206fdb2010-03-22 10:37:03 -0700538 stmt = db.compileStatement("INSERT INTO system(name,value)"
Amith Yamasaniae3ed702009-12-01 19:02:05 -0800539 + " VALUES(?,?);");
540 loadBooleanSetting(stmt, Settings.System.NOTIFICATION_LIGHT_PULSE,
541 R.bool.def_notification_pulse);
Amith Yamasaniae3ed702009-12-01 19:02:05 -0800542 db.setTransactionSuccessful();
543 } finally {
544 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700545 if (stmt != null) stmt.close();
Amith Yamasaniae3ed702009-12-01 19:02:05 -0800546 }
547 upgradeVersion = 43;
548 }
549
Eric Laurent484d2882009-12-08 09:05:45 -0800550 if (upgradeVersion == 43) {
551 /*
552 * This upgrade stores bluetooth volume separately from voice volume
553 */
554 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700555 SQLiteStatement stmt = null;
Eric Laurent484d2882009-12-08 09:05:45 -0800556 try {
Vasu Nori89206fdb2010-03-22 10:37:03 -0700557 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
Eric Laurent484d2882009-12-08 09:05:45 -0800558 + " VALUES(?,?);");
559 loadSetting(stmt, Settings.System.VOLUME_BLUETOOTH_SCO,
560 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_BLUETOOTH_SCO]);
Eric Laurent484d2882009-12-08 09:05:45 -0800561 db.setTransactionSuccessful();
562 } finally {
563 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700564 if (stmt != null) stmt.close();
Eric Laurent484d2882009-12-08 09:05:45 -0800565 }
566 upgradeVersion = 44;
567 }
568
Doug Zongkeraed8f8e2010-01-07 18:07:50 -0800569 if (upgradeVersion == 44) {
570 /*
571 * Gservices was moved into vendor/google.
572 */
573 db.execSQL("DROP TABLE IF EXISTS gservices");
574 db.execSQL("DROP INDEX IF EXISTS gservicesIndex1");
575 upgradeVersion = 45;
576 }
San Mehat87734d32010-01-08 12:53:06 -0800577
578 if (upgradeVersion == 45) {
579 /*
580 * New settings for MountService
581 */
582 db.beginTransaction();
583 try {
584 db.execSQL("INSERT INTO secure(name,value) values('" +
585 Settings.Secure.MOUNT_PLAY_NOTIFICATION_SND + "','1');");
586 db.execSQL("INSERT INTO secure(name,value) values('" +
587 Settings.Secure.MOUNT_UMS_AUTOSTART + "','0');");
588 db.execSQL("INSERT INTO secure(name,value) values('" +
589 Settings.Secure.MOUNT_UMS_PROMPT + "','1');");
590 db.execSQL("INSERT INTO secure(name,value) values('" +
591 Settings.Secure.MOUNT_UMS_NOTIFY_ENABLED + "','1');");
592 db.setTransactionSuccessful();
593 } finally {
594 db.endTransaction();
595 }
596 upgradeVersion = 46;
597 }
598
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800599 if (upgradeVersion == 46) {
600 /*
601 * The password mode constants have changed; reset back to no
602 * password.
603 */
604 db.beginTransaction();
605 try {
606 db.execSQL("DELETE FROM system WHERE name='lockscreen.password_type';");
607 db.setTransactionSuccessful();
608 } finally {
609 db.endTransaction();
610 }
611 upgradeVersion = 47;
612 }
613
Jim Miller61766772010-02-12 14:56:49 -0800614
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800615 if (upgradeVersion == 47) {
616 /*
617 * The password mode constants have changed again; reset back to no
618 * password.
619 */
620 db.beginTransaction();
621 try {
622 db.execSQL("DELETE FROM system WHERE name='lockscreen.password_type';");
623 db.setTransactionSuccessful();
624 } finally {
625 db.endTransaction();
626 }
627 upgradeVersion = 48;
628 }
Jim Miller61766772010-02-12 14:56:49 -0800629
Mike LeBeau5d34e9b2010-02-10 19:34:56 -0800630 if (upgradeVersion == 48) {
631 /*
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800632 * Default recognition service no longer initialized here,
633 * moved to RecognitionManagerService.
Mike LeBeau5d34e9b2010-02-10 19:34:56 -0800634 */
Mike LeBeau5d34e9b2010-02-10 19:34:56 -0800635 upgradeVersion = 49;
636 }
Jim Miller31f90b62010-01-20 13:35:20 -0800637
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500638 if (upgradeVersion == 49) {
639 /*
640 * New settings for new user interface noises.
641 */
642 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700643 SQLiteStatement stmt = null;
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500644 try {
Vasu Nori89206fdb2010-03-22 10:37:03 -0700645 stmt = db.compileStatement("INSERT INTO system(name,value)"
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500646 + " VALUES(?,?);");
647 loadUISoundEffectsSettings(stmt);
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500648 db.setTransactionSuccessful();
649 } finally {
650 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700651 if (stmt != null) stmt.close();
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500652 }
653
654 upgradeVersion = 50;
655 }
656
Oscar Montemayorf1cbfff2010-02-22 16:12:07 -0800657 if (upgradeVersion == 50) {
658 /*
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700659 * Install location no longer initiated here.
Oscar Montemayorf1cbfff2010-02-22 16:12:07 -0800660 */
Oscar Montemayorf1cbfff2010-02-22 16:12:07 -0800661 upgradeVersion = 51;
662 }
663
Amith Yamasani156c4352010-03-05 17:10:03 -0800664 if (upgradeVersion == 51) {
665 /* Move the lockscreen related settings to Secure, including some private ones. */
666 String[] settingsToMove = {
667 Secure.LOCK_PATTERN_ENABLED,
668 Secure.LOCK_PATTERN_VISIBLE,
669 Secure.LOCK_PATTERN_TACTILE_FEEDBACK_ENABLED,
670 "lockscreen.password_type",
671 "lockscreen.lockoutattemptdeadline",
672 "lockscreen.patterneverchosen",
673 "lock_pattern_autolock",
674 "lockscreen.lockedoutpermanently",
675 "lockscreen.password_salt"
676 };
Christopher Tate92198742012-09-07 12:00:13 -0700677 moveSettingsToNewTable(db, TABLE_SYSTEM, TABLE_SECURE, settingsToMove, false);
Amith Yamasani156c4352010-03-05 17:10:03 -0800678 upgradeVersion = 52;
679 }
680
Daniel Sandler1c7fa482010-03-10 09:45:01 -0500681 if (upgradeVersion == 52) {
682 // new vibration/silent mode settings
683 db.beginTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700684 SQLiteStatement stmt = null;
Daniel Sandler1c7fa482010-03-10 09:45:01 -0500685 try {
Vasu Nori89206fdb2010-03-22 10:37:03 -0700686 stmt = db.compileStatement("INSERT INTO system(name,value)"
Daniel Sandler1c7fa482010-03-10 09:45:01 -0500687 + " VALUES(?,?);");
688 loadBooleanSetting(stmt, Settings.System.VIBRATE_IN_SILENT,
689 R.bool.def_vibrate_in_silent);
Daniel Sandler1c7fa482010-03-10 09:45:01 -0500690 db.setTransactionSuccessful();
691 } finally {
692 db.endTransaction();
Vasu Nori89206fdb2010-03-22 10:37:03 -0700693 if (stmt != null) stmt.close();
Daniel Sandler1c7fa482010-03-10 09:45:01 -0500694 }
695
696 upgradeVersion = 53;
697 }
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -0700698
Suchi Amalapurapu089262d2010-03-10 14:19:21 -0800699 if (upgradeVersion == 53) {
700 /*
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700701 * New settings for set install location UI no longer initiated here.
Suchi Amalapurapu089262d2010-03-10 14:19:21 -0800702 */
Suchi Amalapurapu089262d2010-03-10 14:19:21 -0800703 upgradeVersion = 54;
704 }
Daniel Sandler1c7fa482010-03-10 09:45:01 -0500705
Amith Yamasanib6e6ffa2010-03-29 17:58:53 -0700706 if (upgradeVersion == 54) {
707 /*
708 * Update the screen timeout value if set to never
709 */
710 db.beginTransaction();
711 try {
712 upgradeScreenTimeoutFromNever(db);
713 db.setTransactionSuccessful();
714 } finally {
715 db.endTransaction();
716 }
717
718 upgradeVersion = 55;
719 }
720
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700721 if (upgradeVersion == 55) {
722 /* Move the install location settings. */
723 String[] settingsToMove = {
724 Secure.SET_INSTALL_LOCATION,
725 Secure.DEFAULT_INSTALL_LOCATION
726 };
Christopher Tate92198742012-09-07 12:00:13 -0700727 moveSettingsToNewTable(db, TABLE_SYSTEM, TABLE_SECURE, settingsToMove, false);
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700728 db.beginTransaction();
729 SQLiteStatement stmt = null;
730 try {
731 stmt = db.compileStatement("INSERT INTO system(name,value)"
732 + " VALUES(?,?);");
733 loadSetting(stmt, Secure.SET_INSTALL_LOCATION, 0);
734 loadSetting(stmt, Secure.DEFAULT_INSTALL_LOCATION,
735 PackageHelper.APP_INSTALL_AUTO);
736 db.setTransactionSuccessful();
737 } finally {
738 db.endTransaction();
739 if (stmt != null) stmt.close();
740 }
741 upgradeVersion = 56;
742 }
Jake Hamby66592842010-08-24 19:55:20 -0700743
744 if (upgradeVersion == 56) {
745 /*
746 * Add Bluetooth to list of toggleable radios in airplane mode
747 */
748 db.beginTransaction();
749 SQLiteStatement stmt = null;
750 try {
751 db.execSQL("DELETE FROM system WHERE name='"
752 + Settings.System.AIRPLANE_MODE_TOGGLEABLE_RADIOS + "'");
753 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
754 + " VALUES(?,?);");
755 loadStringSetting(stmt, Settings.System.AIRPLANE_MODE_TOGGLEABLE_RADIOS,
756 R.string.airplane_mode_toggleable_radios);
757 db.setTransactionSuccessful();
758 } finally {
759 db.endTransaction();
760 if (stmt != null) stmt.close();
761 }
762 upgradeVersion = 57;
763 }
Svetoslav Ganov585f13f8d2010-08-10 07:59:15 -0700764
Amith Yamasani5cd15002011-11-16 11:19:48 -0800765 /************* The following are Honeycomb changes ************/
766
Svetoslav Ganov585f13f8d2010-08-10 07:59:15 -0700767 if (upgradeVersion == 57) {
768 /*
769 * New settings to:
770 * 1. Enable injection of accessibility scripts in WebViews.
771 * 2. Define the key bindings for traversing web content in WebViews.
772 */
773 db.beginTransaction();
774 SQLiteStatement stmt = null;
775 try {
776 stmt = db.compileStatement("INSERT INTO secure(name,value)"
777 + " VALUES(?,?);");
778 loadBooleanSetting(stmt, Settings.Secure.ACCESSIBILITY_SCRIPT_INJECTION,
779 R.bool.def_accessibility_script_injection);
780 stmt.close();
781 stmt = db.compileStatement("INSERT INTO secure(name,value)"
782 + " VALUES(?,?);");
783 loadStringSetting(stmt, Settings.Secure.ACCESSIBILITY_WEB_CONTENT_KEY_BINDINGS,
784 R.string.def_accessibility_web_content_key_bindings);
785 db.setTransactionSuccessful();
786 } finally {
787 db.endTransaction();
788 if (stmt != null) stmt.close();
789 }
790 upgradeVersion = 58;
791 }
792
Amith Yamasaniad450be2010-09-16 16:47:00 -0700793 if (upgradeVersion == 58) {
794 /* Add default for new Auto Time Zone */
Amith Yamasani5cd15002011-11-16 11:19:48 -0800795 int autoTimeValue = getIntValueFromSystem(db, Settings.System.AUTO_TIME, 0);
Amith Yamasaniad450be2010-09-16 16:47:00 -0700796 db.beginTransaction();
797 SQLiteStatement stmt = null;
798 try {
Amith Yamasani5cd15002011-11-16 11:19:48 -0800799 stmt = db.compileStatement("INSERT INTO system(name,value)" + " VALUES(?,?);");
800 loadSetting(stmt, Settings.System.AUTO_TIME_ZONE,
801 autoTimeValue); // Sync timezone to NITZ if auto_time was enabled
Amith Yamasaniad450be2010-09-16 16:47:00 -0700802 db.setTransactionSuccessful();
803 } finally {
804 db.endTransaction();
805 if (stmt != null) stmt.close();
806 }
807 upgradeVersion = 59;
808 }
809
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400810 if (upgradeVersion == 59) {
811 // Persistence for the rotation lock feature.
812 db.beginTransaction();
813 SQLiteStatement stmt = null;
814 try {
815 stmt = db.compileStatement("INSERT INTO system(name,value)"
816 + " VALUES(?,?);");
817 loadBooleanSetting(stmt, Settings.System.USER_ROTATION,
818 R.integer.def_user_rotation); // should be zero degrees
819 db.setTransactionSuccessful();
820 } finally {
821 db.endTransaction();
822 if (stmt != null) stmt.close();
823 }
824 upgradeVersion = 60;
825 }
826
Amith Yamasani00389312010-11-05 11:22:21 -0700827 if (upgradeVersion == 60) {
Amith Yamasani5cd15002011-11-16 11:19:48 -0800828 // Don't do this for upgrades from Gingerbread
829 // Were only required for intra-Honeycomb upgrades for testing
830 // upgradeScreenTimeout(db);
Amith Yamasani00389312010-11-05 11:22:21 -0700831 upgradeVersion = 61;
832 }
833
Amith Yamasani79373f62010-11-18 16:32:48 -0800834 if (upgradeVersion == 61) {
Amith Yamasani5cd15002011-11-16 11:19:48 -0800835 // Don't do this for upgrades from Gingerbread
836 // Were only required for intra-Honeycomb upgrades for testing
837 // upgradeScreenTimeout(db);
Amith Yamasani79373f62010-11-18 16:32:48 -0800838 upgradeVersion = 62;
839 }
840
Amith Yamasanif50c5112011-01-07 11:32:30 -0800841 // Change the default for screen auto-brightness mode
842 if (upgradeVersion == 62) {
Amith Yamasani5cd15002011-11-16 11:19:48 -0800843 // Don't do this for upgrades from Gingerbread
844 // Were only required for intra-Honeycomb upgrades for testing
845 // upgradeAutoBrightness(db);
Amith Yamasanif50c5112011-01-07 11:32:30 -0800846 upgradeVersion = 63;
847 }
848
Eric Laurent25101b02011-02-02 09:33:30 -0800849 if (upgradeVersion == 63) {
850 // This upgrade adds the STREAM_MUSIC type to the list of
851 // types affected by ringer modes (silent, vibrate, etc.)
852 db.beginTransaction();
853 try {
854 db.execSQL("DELETE FROM system WHERE name='"
855 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "'");
856 int newValue = (1 << AudioManager.STREAM_RING)
857 | (1 << AudioManager.STREAM_NOTIFICATION)
858 | (1 << AudioManager.STREAM_SYSTEM)
859 | (1 << AudioManager.STREAM_SYSTEM_ENFORCED)
860 | (1 << AudioManager.STREAM_MUSIC);
861 db.execSQL("INSERT INTO system ('name', 'value') values ('"
862 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "', '"
863 + String.valueOf(newValue) + "')");
864 db.setTransactionSuccessful();
865 } finally {
866 db.endTransaction();
867 }
868 upgradeVersion = 64;
869 }
870
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800871 if (upgradeVersion == 64) {
872 // New setting to configure the long press timeout.
873 db.beginTransaction();
874 SQLiteStatement stmt = null;
875 try {
876 stmt = db.compileStatement("INSERT INTO secure(name,value)"
877 + " VALUES(?,?);");
878 loadIntegerSetting(stmt, Settings.Secure.LONG_PRESS_TIMEOUT,
879 R.integer.def_long_press_timeout_millis);
880 stmt.close();
881 db.setTransactionSuccessful();
882 } finally {
883 db.endTransaction();
884 if (stmt != null) stmt.close();
885 }
886 upgradeVersion = 65;
887 }
888
Amith Yamasani5cd15002011-11-16 11:19:48 -0800889 /************* The following are Ice Cream Sandwich changes ************/
890
Gilles Debunnefa53d302011-07-08 10:40:51 -0700891 if (upgradeVersion == 65) {
892 /*
893 * Animations are removed from Settings. Turned on by default
894 */
895 db.beginTransaction();
896 SQLiteStatement stmt = null;
897 try {
898 db.execSQL("DELETE FROM system WHERE name='"
899 + Settings.System.WINDOW_ANIMATION_SCALE + "'");
900 db.execSQL("DELETE FROM system WHERE name='"
901 + Settings.System.TRANSITION_ANIMATION_SCALE + "'");
902 stmt = db.compileStatement("INSERT INTO system(name,value)"
903 + " VALUES(?,?);");
904 loadDefaultAnimationSettings(stmt);
905 db.setTransactionSuccessful();
906 } finally {
907 db.endTransaction();
908 if (stmt != null) stmt.close();
909 }
910 upgradeVersion = 66;
911 }
912
Eric Laurentc1d41662011-07-19 11:21:13 -0700913 if (upgradeVersion == 66) {
Amith Yamasani42722bf2011-07-22 10:34:27 -0700914 // This upgrade makes sure that MODE_RINGER_STREAMS_AFFECTED is set
915 // according to device voice capability
916 db.beginTransaction();
917 try {
918 int ringerModeAffectedStreams = (1 << AudioManager.STREAM_RING) |
919 (1 << AudioManager.STREAM_NOTIFICATION) |
920 (1 << AudioManager.STREAM_SYSTEM) |
921 (1 << AudioManager.STREAM_SYSTEM_ENFORCED);
922 if (!mContext.getResources().getBoolean(
923 com.android.internal.R.bool.config_voice_capable)) {
924 ringerModeAffectedStreams |= (1 << AudioManager.STREAM_MUSIC);
925 }
926 db.execSQL("DELETE FROM system WHERE name='"
927 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "'");
928 db.execSQL("INSERT INTO system ('name', 'value') values ('"
929 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "', '"
930 + String.valueOf(ringerModeAffectedStreams) + "')");
931 db.setTransactionSuccessful();
932 } finally {
933 db.endTransaction();
934 }
935 upgradeVersion = 67;
936 }
Eric Laurentc1d41662011-07-19 11:21:13 -0700937
Svetoslav Ganova28a16d2011-07-28 11:24:21 -0700938 if (upgradeVersion == 67) {
939 // New setting to enable touch exploration.
940 db.beginTransaction();
941 SQLiteStatement stmt = null;
942 try {
943 stmt = db.compileStatement("INSERT INTO secure(name,value)"
944 + " VALUES(?,?);");
945 loadBooleanSetting(stmt, Settings.Secure.TOUCH_EXPLORATION_ENABLED,
946 R.bool.def_touch_exploration_enabled);
947 stmt.close();
948 db.setTransactionSuccessful();
949 } finally {
950 db.endTransaction();
951 if (stmt != null) stmt.close();
952 }
953 upgradeVersion = 68;
954 }
955
Amith Yamasani42722bf2011-07-22 10:34:27 -0700956 if (upgradeVersion == 68) {
957 // Enable all system sounds by default
958 db.beginTransaction();
Amith Yamasani42722bf2011-07-22 10:34:27 -0700959 try {
Amith Yamasani42722bf2011-07-22 10:34:27 -0700960 db.execSQL("DELETE FROM system WHERE name='"
961 + Settings.System.NOTIFICATIONS_USE_RING_VOLUME + "'");
Amith Yamasani42722bf2011-07-22 10:34:27 -0700962 db.setTransactionSuccessful();
963 } finally {
964 db.endTransaction();
Amith Yamasani42722bf2011-07-22 10:34:27 -0700965 }
966 upgradeVersion = 69;
967 }
Svetoslav Ganova28a16d2011-07-28 11:24:21 -0700968
Nick Pelly8d32a012011-08-09 07:03:49 -0700969 if (upgradeVersion == 69) {
970 // Add RADIO_NFC to AIRPLANE_MODE_RADIO and AIRPLANE_MODE_TOGGLEABLE_RADIOS
971 String airplaneRadios = mContext.getResources().getString(
972 R.string.def_airplane_mode_radios);
973 String toggleableRadios = mContext.getResources().getString(
974 R.string.airplane_mode_toggleable_radios);
975 db.beginTransaction();
976 try {
977 db.execSQL("UPDATE system SET value='" + airplaneRadios + "' " +
978 "WHERE name='" + Settings.System.AIRPLANE_MODE_RADIOS + "'");
979 db.execSQL("UPDATE system SET value='" + toggleableRadios + "' " +
980 "WHERE name='" + Settings.System.AIRPLANE_MODE_TOGGLEABLE_RADIOS + "'");
981 db.setTransactionSuccessful();
982 } finally {
983 db.endTransaction();
984 }
985 upgradeVersion = 70;
986 }
987
Jeff Brown6651a632011-11-28 12:59:11 -0800988 if (upgradeVersion == 70) {
989 // Update all built-in bookmarks. Some of the package names have changed.
990 loadBookmarks(db);
991 upgradeVersion = 71;
992 }
993
Svetoslav Ganov55f937a2011-12-05 11:42:07 -0800994 if (upgradeVersion == 71) {
995 // New setting to specify whether to speak passwords in accessibility mode.
996 db.beginTransaction();
997 SQLiteStatement stmt = null;
998 try {
999 stmt = db.compileStatement("INSERT INTO secure(name,value)"
1000 + " VALUES(?,?);");
1001 loadBooleanSetting(stmt, Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD,
1002 R.bool.def_accessibility_speak_password);
Amith Yamasani6243edd2011-12-05 19:58:48 -08001003 db.setTransactionSuccessful();
Svetoslav Ganov55f937a2011-12-05 11:42:07 -08001004 } finally {
1005 db.endTransaction();
1006 if (stmt != null) stmt.close();
1007 }
1008 upgradeVersion = 72;
1009 }
1010
Amith Yamasani6243edd2011-12-05 19:58:48 -08001011 if (upgradeVersion == 72) {
1012 // update vibration settings
1013 db.beginTransaction();
1014 SQLiteStatement stmt = null;
1015 try {
1016 stmt = db.compileStatement("INSERT OR REPLACE INTO system(name,value)"
1017 + " VALUES(?,?);");
1018 loadBooleanSetting(stmt, Settings.System.VIBRATE_IN_SILENT,
1019 R.bool.def_vibrate_in_silent);
1020 db.setTransactionSuccessful();
1021 } finally {
1022 db.endTransaction();
1023 if (stmt != null) stmt.close();
1024 }
1025 upgradeVersion = 73;
1026 }
1027
Svetoslav Ganov3ca5a742011-12-06 15:24:37 -08001028 if (upgradeVersion == 73) {
Amith Yamasani398c83c2011-12-13 10:38:47 -08001029 upgradeVibrateSettingFromNone(db);
1030 upgradeVersion = 74;
1031 }
1032
1033 if (upgradeVersion == 74) {
Svetoslav Ganov3ca5a742011-12-06 15:24:37 -08001034 // URL from which WebView loads a JavaScript based screen-reader.
1035 db.beginTransaction();
1036 SQLiteStatement stmt = null;
1037 try {
1038 stmt = db.compileStatement("INSERT INTO secure(name,value) VALUES(?,?);");
1039 loadStringSetting(stmt, Settings.Secure.ACCESSIBILITY_SCREEN_READER_URL,
1040 R.string.def_accessibility_screen_reader_url);
1041 db.setTransactionSuccessful();
1042 } finally {
1043 db.endTransaction();
1044 if (stmt != null) stmt.close();
1045 }
Amith Yamasani398c83c2011-12-13 10:38:47 -08001046 upgradeVersion = 75;
Svetoslav Ganov3ca5a742011-12-06 15:24:37 -08001047 }
Mike Lockwood7bef7392011-10-20 16:51:53 -04001048 if (upgradeVersion == 75) {
1049 db.beginTransaction();
1050 SQLiteStatement stmt = null;
1051 Cursor c = null;
1052 try {
Christopher Tate06efb532012-08-24 15:29:27 -07001053 c = db.query(TABLE_SECURE, new String[] {"_id", "value"},
Mike Lockwood7bef7392011-10-20 16:51:53 -04001054 "name='lockscreen.disabled'",
1055 null, null, null, null);
1056 // only set default if it has not yet been set
1057 if (c == null || c.getCount() == 0) {
1058 stmt = db.compileStatement("INSERT INTO system(name,value)"
1059 + " VALUES(?,?);");
1060 loadBooleanSetting(stmt, Settings.System.LOCKSCREEN_DISABLED,
1061 R.bool.def_lockscreen_disabled);
1062 }
1063 db.setTransactionSuccessful();
1064 } finally {
1065 db.endTransaction();
1066 if (c != null) c.close();
1067 if (stmt != null) stmt.close();
1068 }
1069 upgradeVersion = 76;
1070 }
Svetoslav Ganov3ca5a742011-12-06 15:24:37 -08001071
Eric Laurentbffc3d12012-05-07 17:43:49 -07001072 /************* The following are Jelly Bean changes ************/
1073
1074 if (upgradeVersion == 76) {
1075 // Removed VIBRATE_IN_SILENT setting
1076 db.beginTransaction();
1077 try {
1078 db.execSQL("DELETE FROM system WHERE name='"
1079 + Settings.System.VIBRATE_IN_SILENT + "'");
1080 db.setTransactionSuccessful();
1081 } finally {
1082 db.endTransaction();
1083 }
1084
1085 upgradeVersion = 77;
1086 }
1087
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001088 if (upgradeVersion == 77) {
1089 // Introduce "vibrate when ringing" setting
1090 loadVibrateWhenRingingSetting(db);
1091
1092 upgradeVersion = 78;
1093 }
Eric Laurentbffc3d12012-05-07 17:43:49 -07001094
alanv3a67eb32012-06-22 10:47:28 -07001095 if (upgradeVersion == 78) {
1096 // The JavaScript based screen-reader URL changes in JellyBean.
1097 db.beginTransaction();
1098 SQLiteStatement stmt = null;
1099 try {
1100 stmt = db.compileStatement("INSERT OR REPLACE INTO secure(name,value)"
1101 + " VALUES(?,?);");
1102 loadStringSetting(stmt, Settings.Secure.ACCESSIBILITY_SCREEN_READER_URL,
1103 R.string.def_accessibility_screen_reader_url);
1104 db.setTransactionSuccessful();
1105 } finally {
1106 db.endTransaction();
1107 if (stmt != null) stmt.close();
1108 }
1109 upgradeVersion = 79;
1110 }
1111
Svetoslav Ganov86317012012-08-15 22:13:00 -07001112 if (upgradeVersion == 79) {
1113 // Before touch exploration was a global setting controlled by the user
1114 // via the UI. However, if the enabled accessibility services do not
1115 // handle touch exploration mode, enabling it makes no sense. Therefore,
1116 // now the services request touch exploration mode and the user is
1117 // presented with a dialog to allow that and if she does we store that
1118 // in the database. As a result of this change a user that has enabled
1119 // accessibility, touch exploration, and some accessibility services
1120 // may lose touch exploration state, thus rendering the device useless
1121 // unless sighted help is provided, since the enabled service(s) are
1122 // not in the list of services to which the user granted a permission
1123 // to put the device in touch explore mode. Here we are allowing all
1124 // enabled accessibility services to toggle touch exploration provided
1125 // accessibility and touch exploration are enabled and no services can
1126 // toggle touch exploration. Note that the user has already manually
1127 // enabled the services and touch exploration which means the she has
1128 // given consent to have these services work in touch exploration mode.
Christopher Tate06efb532012-08-24 15:29:27 -07001129 final boolean accessibilityEnabled = getIntValueFromTable(db, TABLE_SECURE,
Svetoslav Ganov86317012012-08-15 22:13:00 -07001130 Settings.Secure.ACCESSIBILITY_ENABLED, 0) == 1;
Christopher Tate06efb532012-08-24 15:29:27 -07001131 final boolean touchExplorationEnabled = getIntValueFromTable(db, TABLE_SECURE,
Svetoslav Ganov86317012012-08-15 22:13:00 -07001132 Settings.Secure.TOUCH_EXPLORATION_ENABLED, 0) == 1;
1133 if (accessibilityEnabled && touchExplorationEnabled) {
Christopher Tate06efb532012-08-24 15:29:27 -07001134 String enabledServices = getStringValueFromTable(db, TABLE_SECURE,
Svetoslav Ganov86317012012-08-15 22:13:00 -07001135 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES, "");
Christopher Tate06efb532012-08-24 15:29:27 -07001136 String touchExplorationGrantedServices = getStringValueFromTable(db, TABLE_SECURE,
Svetoslav Ganov86317012012-08-15 22:13:00 -07001137 Settings.Secure.TOUCH_EXPLORATION_GRANTED_ACCESSIBILITY_SERVICES, "");
1138 if (TextUtils.isEmpty(touchExplorationGrantedServices)
1139 && !TextUtils.isEmpty(enabledServices)) {
1140 SQLiteStatement stmt = null;
1141 try {
1142 db.beginTransaction();
1143 stmt = db.compileStatement("INSERT OR REPLACE INTO secure(name,value)"
1144 + " VALUES(?,?);");
1145 loadSetting(stmt,
1146 Settings.Secure.TOUCH_EXPLORATION_GRANTED_ACCESSIBILITY_SERVICES,
1147 enabledServices);
1148 db.setTransactionSuccessful();
1149 } finally {
1150 db.endTransaction();
1151 if (stmt != null) stmt.close();
1152 }
1153 }
1154 }
1155 upgradeVersion = 80;
1156 }
1157
Daniel Sandlerfdb7c362012-08-06 17:02:55 -04001158 // vvv Jelly Bean MR1 changes begin here vvv
1159
Svetoslav Ganovca34bcf2012-08-16 12:22:23 -07001160 if (upgradeVersion == 80) {
Daniel Sandlerfdb7c362012-08-06 17:02:55 -04001161 // update screensaver settings
1162 db.beginTransaction();
1163 SQLiteStatement stmt = null;
1164 try {
1165 stmt = db.compileStatement("INSERT OR REPLACE INTO secure(name,value)"
1166 + " VALUES(?,?);");
1167 loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ENABLED,
1168 R.bool.def_screensaver_enabled);
1169 loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK,
1170 R.bool.def_screensaver_activate_on_dock);
John Spurlock1a868b72012-08-22 09:56:51 -04001171 loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ACTIVATE_ON_SLEEP,
1172 R.bool.def_screensaver_activate_on_sleep);
1173 loadStringSetting(stmt, Settings.Secure.SCREENSAVER_DEFAULT_COMPONENT,
1174 R.string.def_screensaver_component);
1175 loadStringSetting(stmt, Settings.Secure.SCREENSAVER_COMPONENTS,
Daniel Sandlerfdb7c362012-08-06 17:02:55 -04001176 R.string.def_screensaver_component);
Christopher Tate06efb532012-08-24 15:29:27 -07001177
Daniel Sandlerfdb7c362012-08-06 17:02:55 -04001178 db.setTransactionSuccessful();
1179 } finally {
1180 db.endTransaction();
1181 if (stmt != null) stmt.close();
1182 }
Svetoslav Ganovca34bcf2012-08-16 12:22:23 -07001183 upgradeVersion = 81;
Daniel Sandlerfdb7c362012-08-06 17:02:55 -04001184 }
1185
rich cannings16e119e2012-09-06 12:04:37 -07001186 if (upgradeVersion == 81) {
1187 // Add package verification setting
1188 db.beginTransaction();
1189 SQLiteStatement stmt = null;
1190 try {
1191 stmt = db.compileStatement("INSERT OR REPLACE INTO secure(name,value)"
1192 + " VALUES(?,?);");
1193 loadBooleanSetting(stmt, Settings.Secure.PACKAGE_VERIFIER_ENABLE,
1194 R.bool.def_package_verifier_enable);
1195 db.setTransactionSuccessful();
1196 } finally {
1197 db.endTransaction();
1198 if (stmt != null) stmt.close();
1199 }
1200 upgradeVersion = 82;
1201 }
1202
Christopher Tate06efb532012-08-24 15:29:27 -07001203 if (upgradeVersion == 82) {
1204 // Move to per-user settings dbs
1205 db.beginTransaction();
1206 SQLiteStatement stmt = null;
1207 try {
1208 // Migrate now-global settings. Note that this happens before
1209 // new users can be created.
1210 createGlobalTable(db);
Christopher Tatea96798e42012-09-06 19:07:19 -07001211 String[] settingsToMove = hashsetToStringArray(SettingsProvider.sSystemGlobalKeys);
Christopher Tate92198742012-09-07 12:00:13 -07001212 moveSettingsToNewTable(db, TABLE_SYSTEM, TABLE_GLOBAL, settingsToMove, false);
Christopher Tatea96798e42012-09-06 19:07:19 -07001213 settingsToMove = hashsetToStringArray(SettingsProvider.sSecureGlobalKeys);
Christopher Tate92198742012-09-07 12:00:13 -07001214 moveSettingsToNewTable(db, TABLE_SECURE, TABLE_GLOBAL, settingsToMove, false);
Christopher Tate06efb532012-08-24 15:29:27 -07001215
1216 db.setTransactionSuccessful();
1217 } finally {
1218 db.endTransaction();
1219 if (stmt != null) stmt.close();
1220 }
1221 upgradeVersion = 83;
1222 }
1223
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001224 if (upgradeVersion == 83) {
1225 // 1. Setting whether screen magnification is enabled.
1226 // 2. Setting for screen magnification scale.
1227 // 3. Setting for screen magnification auto update.
1228 db.beginTransaction();
1229 SQLiteStatement stmt = null;
1230 try {
1231 stmt = db.compileStatement("INSERT INTO secure(name,value) VALUES(?,?);");
1232 loadBooleanSetting(stmt,
1233 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED,
1234 R.bool.def_accessibility_display_magnification_enabled);
1235 stmt.close();
1236 stmt = db.compileStatement("INSERT INTO secure(name,value) VALUES(?,?);");
1237 loadFractionSetting(stmt, Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_SCALE,
1238 R.fraction.def_accessibility_display_magnification_scale, 1);
1239 stmt.close();
1240 stmt = db.compileStatement("INSERT INTO secure(name,value) VALUES(?,?);");
1241 loadBooleanSetting(stmt,
1242 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE,
1243 R.bool.def_accessibility_display_magnification_auto_update);
Christopher Tate1a9c0dfd2012-09-06 22:17:43 -07001244
1245 db.setTransactionSuccessful();
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001246 } finally {
1247 db.endTransaction();
1248 if (stmt != null) stmt.close();
1249 }
1250 upgradeVersion = 84;
1251 }
1252
Christopher Tate1a9c0dfd2012-09-06 22:17:43 -07001253 if (upgradeVersion == 84) {
1254 db.beginTransaction();
1255 SQLiteStatement stmt = null;
1256 try {
Christopher Tate92198742012-09-07 12:00:13 -07001257 // Patch up the slightly-wrong key migration from 82 -> 83 for those
1258 // devices that missed it, ignoring if the move is redundant
Christopher Tate1a9c0dfd2012-09-06 22:17:43 -07001259 String[] settingsToMove = {
1260 Settings.Secure.ADB_ENABLED,
1261 Settings.Secure.BLUETOOTH_ON,
1262 Settings.Secure.DATA_ROAMING,
1263 Settings.Secure.DEVICE_PROVISIONED,
1264 Settings.Secure.INSTALL_NON_MARKET_APPS,
1265 Settings.Secure.USB_MASS_STORAGE_ENABLED
1266 };
Christopher Tate92198742012-09-07 12:00:13 -07001267 moveSettingsToNewTable(db, TABLE_SECURE, TABLE_GLOBAL, settingsToMove, true);
Christopher Tate1a9c0dfd2012-09-06 22:17:43 -07001268 db.setTransactionSuccessful();
1269 } finally {
1270 db.endTransaction();
1271 if (stmt != null) stmt.close();
1272 }
1273 upgradeVersion = 85;
1274 }
1275
Christopher Tate92198742012-09-07 12:00:13 -07001276 if (upgradeVersion == 85) {
1277 db.beginTransaction();
1278 try {
1279 // Fix up the migration, ignoring already-migrated elements, to snap up to
1280 // date with new changes to the set of global versus system/secure settings
1281 String[] settingsToMove = { Settings.System.STAY_ON_WHILE_PLUGGED_IN };
1282 moveSettingsToNewTable(db, TABLE_SYSTEM, TABLE_GLOBAL, settingsToMove, true);
1283
1284 db.setTransactionSuccessful();
1285 } finally {
1286 db.endTransaction();
1287 }
1288 upgradeVersion = 86;
1289 }
1290
rich cannings4d8fc792012-09-07 14:43:43 -07001291 if (upgradeVersion == 86) {
1292 db.beginTransaction();
1293 try {
1294 String[] settingsToMove = {
1295 Settings.Secure.PACKAGE_VERIFIER_ENABLE,
1296 Settings.Secure.PACKAGE_VERIFIER_TIMEOUT,
1297 Settings.Secure.PACKAGE_VERIFIER_DEFAULT_RESPONSE
1298 };
1299 moveSettingsToNewTable(db, TABLE_SECURE, TABLE_GLOBAL, settingsToMove, true);
1300
1301 db.setTransactionSuccessful();
1302 } finally {
1303 db.endTransaction();
1304 }
1305 upgradeVersion = 87;
1306 }
1307
Daniel Sandler1c7fa482010-03-10 09:45:01 -05001308 // *** Remember to update DATABASE_VERSION above!
1309
1310 if (upgradeVersion != currentVersion) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001311 Log.w(TAG, "Got stuck trying to upgrade from version " + upgradeVersion
1312 + ", must wipe the settings provider");
Christopher Tate06efb532012-08-24 15:29:27 -07001313 db.execSQL("DROP TABLE IF EXISTS global");
1314 db.execSQL("DROP TABLE IF EXISTS globalIndex1");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001315 db.execSQL("DROP TABLE IF EXISTS system");
1316 db.execSQL("DROP INDEX IF EXISTS systemIndex1");
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001317 db.execSQL("DROP TABLE IF EXISTS secure");
1318 db.execSQL("DROP INDEX IF EXISTS secureIndex1");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001319 db.execSQL("DROP TABLE IF EXISTS gservices");
1320 db.execSQL("DROP INDEX IF EXISTS gservicesIndex1");
1321 db.execSQL("DROP TABLE IF EXISTS bluetooth_devices");
1322 db.execSQL("DROP TABLE IF EXISTS bookmarks");
1323 db.execSQL("DROP INDEX IF EXISTS bookmarksIndex1");
1324 db.execSQL("DROP INDEX IF EXISTS bookmarksIndex2");
1325 db.execSQL("DROP TABLE IF EXISTS favorites");
1326 onCreate(db);
Jim Miller61766772010-02-12 14:56:49 -08001327
1328 // Added for diagnosing settings.db wipes after the fact
1329 String wipeReason = oldVersion + "/" + upgradeVersion + "/" + currentVersion;
1330 db.execSQL("INSERT INTO secure(name,value) values('" +
1331 "wiped_db_reason" + "','" + wipeReason + "');");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001332 }
1333 }
1334
Christopher Tatea96798e42012-09-06 19:07:19 -07001335 private String[] hashsetToStringArray(HashSet<String> set) {
1336 String[] array = new String[set.size()];
1337 return set.toArray(array);
1338 }
1339
Christopher Tate06efb532012-08-24 15:29:27 -07001340 private void moveSettingsToNewTable(SQLiteDatabase db,
1341 String sourceTable, String destTable,
Christopher Tate92198742012-09-07 12:00:13 -07001342 String[] settingsToMove, boolean doIgnore) {
Christopher Tate06efb532012-08-24 15:29:27 -07001343 // Copy settings values from the source table to the dest, and remove from the source
Amith Yamasani156c4352010-03-05 17:10:03 -08001344 SQLiteStatement insertStmt = null;
1345 SQLiteStatement deleteStmt = null;
1346
1347 db.beginTransaction();
1348 try {
Christopher Tate92198742012-09-07 12:00:13 -07001349 insertStmt = db.compileStatement("INSERT "
1350 + (doIgnore ? " OR IGNORE " : "")
1351 + " INTO " + destTable + " (name,value) SELECT name,value FROM "
Christopher Tate06efb532012-08-24 15:29:27 -07001352 + sourceTable + " WHERE name=?");
1353 deleteStmt = db.compileStatement("DELETE FROM " + sourceTable + " WHERE name=?");
Amith Yamasani156c4352010-03-05 17:10:03 -08001354
1355 for (String setting : settingsToMove) {
1356 insertStmt.bindString(1, setting);
1357 insertStmt.execute();
1358
1359 deleteStmt.bindString(1, setting);
1360 deleteStmt.execute();
1361 }
1362 db.setTransactionSuccessful();
1363 } finally {
1364 db.endTransaction();
1365 if (insertStmt != null) {
1366 insertStmt.close();
1367 }
1368 if (deleteStmt != null) {
1369 deleteStmt.close();
1370 }
1371 }
1372 }
1373
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001374 private void upgradeLockPatternLocation(SQLiteDatabase db) {
Christopher Tate06efb532012-08-24 15:29:27 -07001375 Cursor c = db.query(TABLE_SYSTEM, new String[] {"_id", "value"}, "name='lock_pattern'",
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001376 null, null, null, null);
1377 if (c.getCount() > 0) {
1378 c.moveToFirst();
1379 String lockPattern = c.getString(1);
1380 if (!TextUtils.isEmpty(lockPattern)) {
1381 // Convert lock pattern
1382 try {
Jim Miller31f90b62010-01-20 13:35:20 -08001383 LockPatternUtils lpu = new LockPatternUtils(mContext);
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001384 List<LockPatternView.Cell> cellPattern =
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001385 LockPatternUtils.stringToPattern(lockPattern);
1386 lpu.saveLockPattern(cellPattern);
1387 } catch (IllegalArgumentException e) {
1388 // Don't want corrupted lock pattern to hang the reboot process
1389 }
1390 }
1391 c.close();
Christopher Tate06efb532012-08-24 15:29:27 -07001392 db.delete(TABLE_SYSTEM, "name='lock_pattern'", null);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001393 } else {
1394 c.close();
1395 }
1396 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001397
Amith Yamasanib6e6ffa2010-03-29 17:58:53 -07001398 private void upgradeScreenTimeoutFromNever(SQLiteDatabase db) {
1399 // See if the timeout is -1 (for "Never").
Christopher Tate06efb532012-08-24 15:29:27 -07001400 Cursor c = db.query(TABLE_SYSTEM, new String[] { "_id", "value" }, "name=? AND value=?",
Amith Yamasanib6e6ffa2010-03-29 17:58:53 -07001401 new String[] { Settings.System.SCREEN_OFF_TIMEOUT, "-1" },
1402 null, null, null);
1403
1404 SQLiteStatement stmt = null;
1405 if (c.getCount() > 0) {
1406 c.close();
1407 try {
1408 stmt = db.compileStatement("INSERT OR REPLACE INTO system(name,value)"
1409 + " VALUES(?,?);");
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001410
Amith Yamasanib6e6ffa2010-03-29 17:58:53 -07001411 // Set the timeout to 30 minutes in milliseconds
Amith Yamasanicd66caf2010-04-12 15:49:12 -07001412 loadSetting(stmt, Settings.System.SCREEN_OFF_TIMEOUT,
1413 Integer.toString(30 * 60 * 1000));
Amith Yamasanib6e6ffa2010-03-29 17:58:53 -07001414 } finally {
1415 if (stmt != null) stmt.close();
1416 }
1417 } else {
1418 c.close();
1419 }
1420 }
1421
Amith Yamasani398c83c2011-12-13 10:38:47 -08001422 private void upgradeVibrateSettingFromNone(SQLiteDatabase db) {
1423 int vibrateSetting = getIntValueFromSystem(db, Settings.System.VIBRATE_ON, 0);
1424 // If the ringer vibrate value is invalid, set it to the default
1425 if ((vibrateSetting & 3) == AudioManager.VIBRATE_SETTING_OFF) {
1426 vibrateSetting = AudioService.getValueForVibrateSetting(0,
1427 AudioManager.VIBRATE_TYPE_RINGER, AudioManager.VIBRATE_SETTING_ONLY_SILENT);
1428 }
1429 // Apply the same setting to the notification vibrate value
1430 vibrateSetting = AudioService.getValueForVibrateSetting(vibrateSetting,
1431 AudioManager.VIBRATE_TYPE_NOTIFICATION, vibrateSetting);
1432
1433 SQLiteStatement stmt = null;
1434 try {
1435 stmt = db.compileStatement("INSERT OR REPLACE INTO system(name,value)"
1436 + " VALUES(?,?);");
1437 loadSetting(stmt, Settings.System.VIBRATE_ON, vibrateSetting);
1438 } finally {
1439 if (stmt != null)
1440 stmt.close();
1441 }
1442 }
1443
Amith Yamasani79373f62010-11-18 16:32:48 -08001444 private void upgradeScreenTimeout(SQLiteDatabase db) {
1445 // Change screen timeout to current default
1446 db.beginTransaction();
1447 SQLiteStatement stmt = null;
1448 try {
1449 stmt = db.compileStatement("INSERT OR REPLACE INTO system(name,value)"
1450 + " VALUES(?,?);");
1451 loadIntegerSetting(stmt, Settings.System.SCREEN_OFF_TIMEOUT,
1452 R.integer.def_screen_off_timeout);
1453 db.setTransactionSuccessful();
1454 } finally {
1455 db.endTransaction();
1456 if (stmt != null)
1457 stmt.close();
1458 }
1459 }
1460
Amith Yamasanif50c5112011-01-07 11:32:30 -08001461 private void upgradeAutoBrightness(SQLiteDatabase db) {
1462 db.beginTransaction();
1463 try {
1464 String value =
1465 mContext.getResources().getBoolean(
1466 R.bool.def_screen_brightness_automatic_mode) ? "1" : "0";
1467 db.execSQL("INSERT OR REPLACE INTO system(name,value) values('" +
1468 Settings.System.SCREEN_BRIGHTNESS_MODE + "','" + value + "');");
1469 db.setTransactionSuccessful();
1470 } finally {
1471 db.endTransaction();
1472 }
1473 }
1474
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001475 /**
1476 * Loads the default set of bookmarked shortcuts from an xml file.
1477 *
1478 * @param db The database to write the values into
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001479 */
Jeff Brown6651a632011-11-28 12:59:11 -08001480 private void loadBookmarks(SQLiteDatabase db) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001481 ContentValues values = new ContentValues();
1482
1483 PackageManager packageManager = mContext.getPackageManager();
Romain Guyf02811f2010-03-09 16:33:51 -08001484 try {
1485 XmlResourceParser parser = mContext.getResources().getXml(R.xml.bookmarks);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001486 XmlUtils.beginDocument(parser, "bookmarks");
1487
Romain Guyf02811f2010-03-09 16:33:51 -08001488 final int depth = parser.getDepth();
1489 int type;
1490
1491 while (((type = parser.next()) != XmlPullParser.END_TAG ||
1492 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
1493
1494 if (type != XmlPullParser.START_TAG) {
1495 continue;
1496 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001497
1498 String name = parser.getName();
1499 if (!"bookmark".equals(name)) {
1500 break;
1501 }
1502
1503 String pkg = parser.getAttributeValue(null, "package");
1504 String cls = parser.getAttributeValue(null, "class");
1505 String shortcutStr = parser.getAttributeValue(null, "shortcut");
Jeff Brown6651a632011-11-28 12:59:11 -08001506 String category = parser.getAttributeValue(null, "category");
Romain Guyf02811f2010-03-09 16:33:51 -08001507
Svetoslav Ganov585f13f8d2010-08-10 07:59:15 -07001508 int shortcutValue = shortcutStr.charAt(0);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001509 if (TextUtils.isEmpty(shortcutStr)) {
1510 Log.w(TAG, "Unable to get shortcut for: " + pkg + "/" + cls);
Jeff Brown6651a632011-11-28 12:59:11 -08001511 continue;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001512 }
Romain Guyf02811f2010-03-09 16:33:51 -08001513
Jeff Brown6651a632011-11-28 12:59:11 -08001514 final Intent intent;
1515 final String title;
1516 if (pkg != null && cls != null) {
1517 ActivityInfo info = null;
1518 ComponentName cn = new ComponentName(pkg, cls);
Romain Guyf02811f2010-03-09 16:33:51 -08001519 try {
1520 info = packageManager.getActivityInfo(cn, 0);
Jeff Brown6651a632011-11-28 12:59:11 -08001521 } catch (PackageManager.NameNotFoundException e) {
1522 String[] packages = packageManager.canonicalToCurrentPackageNames(
1523 new String[] { pkg });
1524 cn = new ComponentName(packages[0], cls);
1525 try {
1526 info = packageManager.getActivityInfo(cn, 0);
1527 } catch (PackageManager.NameNotFoundException e1) {
1528 Log.w(TAG, "Unable to add bookmark: " + pkg + "/" + cls, e);
1529 continue;
1530 }
Romain Guyf02811f2010-03-09 16:33:51 -08001531 }
Jeff Brown6651a632011-11-28 12:59:11 -08001532
1533 intent = new Intent(Intent.ACTION_MAIN, null);
1534 intent.addCategory(Intent.CATEGORY_LAUNCHER);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001535 intent.setComponent(cn);
Jeff Brown6651a632011-11-28 12:59:11 -08001536 title = info.loadLabel(packageManager).toString();
1537 } else if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08001538 intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08001539 title = "";
1540 } else {
1541 Log.w(TAG, "Unable to add bookmark for shortcut " + shortcutStr
1542 + ": missing package/class or category attributes");
1543 continue;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001544 }
Jeff Brown6651a632011-11-28 12:59:11 -08001545
1546 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1547 values.put(Settings.Bookmarks.INTENT, intent.toUri(0));
1548 values.put(Settings.Bookmarks.TITLE, title);
1549 values.put(Settings.Bookmarks.SHORTCUT, shortcutValue);
1550 db.delete("bookmarks", "shortcut = ?",
1551 new String[] { Integer.toString(shortcutValue) });
1552 db.insert("bookmarks", null, values);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001553 }
1554 } catch (XmlPullParserException e) {
1555 Log.w(TAG, "Got execption parsing bookmarks.", e);
1556 } catch (IOException e) {
1557 Log.w(TAG, "Got execption parsing bookmarks.", e);
1558 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001559 }
1560
1561 /**
1562 * Loads the default volume levels. It is actually inserting the index of
1563 * the volume array for each of the volume controls.
1564 *
1565 * @param db the database to insert the volume levels into
1566 */
1567 private void loadVolumeLevels(SQLiteDatabase db) {
Vasu Nori89206fdb2010-03-22 10:37:03 -07001568 SQLiteStatement stmt = null;
1569 try {
1570 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
1571 + " VALUES(?,?);");
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001572
Vasu Nori89206fdb2010-03-22 10:37:03 -07001573 loadSetting(stmt, Settings.System.VOLUME_MUSIC,
1574 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_MUSIC]);
1575 loadSetting(stmt, Settings.System.VOLUME_RING,
1576 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_RING]);
1577 loadSetting(stmt, Settings.System.VOLUME_SYSTEM,
1578 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_SYSTEM]);
1579 loadSetting(
1580 stmt,
1581 Settings.System.VOLUME_VOICE,
1582 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_VOICE_CALL]);
1583 loadSetting(stmt, Settings.System.VOLUME_ALARM,
1584 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_ALARM]);
1585 loadSetting(
1586 stmt,
1587 Settings.System.VOLUME_NOTIFICATION,
1588 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_NOTIFICATION]);
1589 loadSetting(
1590 stmt,
1591 Settings.System.VOLUME_BLUETOOTH_SCO,
1592 AudioManager.DEFAULT_STREAM_VOLUME[AudioManager.STREAM_BLUETOOTH_SCO]);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001593
Vasu Nori89206fdb2010-03-22 10:37:03 -07001594 loadSetting(stmt, Settings.System.MODE_RINGER,
1595 AudioManager.RINGER_MODE_NORMAL);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001596
Eric Laurentc1d41662011-07-19 11:21:13 -07001597 // By default:
1598 // - ringtones, notification, system and music streams are affected by ringer mode
1599 // on non voice capable devices (tablets)
1600 // - ringtones, notification and system streams are affected by ringer mode
1601 // on voice capable devices (phones)
1602 int ringerModeAffectedStreams = (1 << AudioManager.STREAM_RING) |
1603 (1 << AudioManager.STREAM_NOTIFICATION) |
1604 (1 << AudioManager.STREAM_SYSTEM) |
1605 (1 << AudioManager.STREAM_SYSTEM_ENFORCED);
1606 if (!mContext.getResources().getBoolean(
1607 com.android.internal.R.bool.config_voice_capable)) {
1608 ringerModeAffectedStreams |= (1 << AudioManager.STREAM_MUSIC);
1609 }
Vasu Nori89206fdb2010-03-22 10:37:03 -07001610 loadSetting(stmt, Settings.System.MODE_RINGER_STREAMS_AFFECTED,
Eric Laurentc1d41662011-07-19 11:21:13 -07001611 ringerModeAffectedStreams);
1612
Vasu Nori89206fdb2010-03-22 10:37:03 -07001613 loadSetting(stmt, Settings.System.MUTE_STREAMS_AFFECTED,
1614 ((1 << AudioManager.STREAM_MUSIC) |
1615 (1 << AudioManager.STREAM_RING) |
1616 (1 << AudioManager.STREAM_NOTIFICATION) |
1617 (1 << AudioManager.STREAM_SYSTEM)));
1618 } finally {
1619 if (stmt != null) stmt.close();
1620 }
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001621
1622 loadVibrateWhenRingingSetting(db);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001623 }
1624
1625 private void loadVibrateSetting(SQLiteDatabase db, boolean deleteOld) {
1626 if (deleteOld) {
1627 db.execSQL("DELETE FROM system WHERE name='" + Settings.System.VIBRATE_ON + "'");
1628 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001629
Vasu Nori89206fdb2010-03-22 10:37:03 -07001630 SQLiteStatement stmt = null;
1631 try {
1632 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
1633 + " VALUES(?,?);");
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001634
Amith Yamasani5cd15002011-11-16 11:19:48 -08001635 // Vibrate on by default for ringer, on for notification
Vasu Nori89206fdb2010-03-22 10:37:03 -07001636 int vibrate = 0;
1637 vibrate = AudioService.getValueForVibrateSetting(vibrate,
Amith Yamasani5cd15002011-11-16 11:19:48 -08001638 AudioManager.VIBRATE_TYPE_NOTIFICATION,
1639 AudioManager.VIBRATE_SETTING_ONLY_SILENT);
Joe Onorato89320202010-06-24 17:49:44 -07001640 vibrate |= AudioService.getValueForVibrateSetting(vibrate,
Amith Yamasani5cd15002011-11-16 11:19:48 -08001641 AudioManager.VIBRATE_TYPE_RINGER, AudioManager.VIBRATE_SETTING_ONLY_SILENT);
Vasu Nori89206fdb2010-03-22 10:37:03 -07001642 loadSetting(stmt, Settings.System.VIBRATE_ON, vibrate);
1643 } finally {
1644 if (stmt != null) stmt.close();
1645 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001646 }
1647
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001648 private void loadVibrateWhenRingingSetting(SQLiteDatabase db) {
1649 // The default should be off. VIBRATE_SETTING_ONLY_SILENT should also be ignored here.
1650 // Phone app should separately check whether AudioManager#getRingerMode() returns
1651 // RINGER_MODE_VIBRATE, with which the device should vibrate anyway.
1652 int vibrateSetting = getIntValueFromSystem(db, Settings.System.VIBRATE_ON,
1653 AudioManager.VIBRATE_SETTING_OFF);
1654 boolean vibrateWhenRinging = ((vibrateSetting & 3) == AudioManager.VIBRATE_SETTING_ON);
1655
1656 SQLiteStatement stmt = null;
1657 try {
1658 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
1659 + " VALUES(?,?);");
1660 loadSetting(stmt, Settings.System.VIBRATE_WHEN_RINGING, vibrateWhenRinging ? 1 : 0);
1661 } finally {
1662 if (stmt != null) stmt.close();
1663 }
1664 }
1665
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001666 private void loadSettings(SQLiteDatabase db) {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001667 loadSystemSettings(db);
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001668 loadSecureSettings(db);
Christopher Tate06efb532012-08-24 15:29:27 -07001669 // The global table only exists for the 'owner' user
1670 if (mUserHandle == UserHandle.USER_OWNER) {
1671 loadGlobalSettings(db);
1672 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001673 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001674
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001675 private void loadSystemSettings(SQLiteDatabase db) {
Vasu Nori89206fdb2010-03-22 10:37:03 -07001676 SQLiteStatement stmt = null;
1677 try {
1678 stmt = db.compileStatement("INSERT OR IGNORE INTO system(name,value)"
1679 + " VALUES(?,?);");
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001680
Vasu Nori89206fdb2010-03-22 10:37:03 -07001681 loadBooleanSetting(stmt, Settings.System.DIM_SCREEN,
1682 R.bool.def_dim_screen);
Vasu Nori89206fdb2010-03-22 10:37:03 -07001683 loadIntegerSetting(stmt, Settings.System.SCREEN_OFF_TIMEOUT,
1684 R.integer.def_screen_off_timeout);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001685
Vasu Nori89206fdb2010-03-22 10:37:03 -07001686 // Set default cdma emergency tone
1687 loadSetting(stmt, Settings.System.EMERGENCY_TONE, 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001688
Vasu Nori89206fdb2010-03-22 10:37:03 -07001689 // Set default cdma call auto retry
1690 loadSetting(stmt, Settings.System.CALL_AUTO_RETRY, 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001691
Vasu Nori89206fdb2010-03-22 10:37:03 -07001692 // Set default cdma DTMF type
1693 loadSetting(stmt, Settings.System.DTMF_TONE_TYPE_WHEN_DIALING, 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001694
Vasu Nori89206fdb2010-03-22 10:37:03 -07001695 // Set default hearing aid
1696 loadSetting(stmt, Settings.System.HEARING_AID, 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001697
Vasu Nori89206fdb2010-03-22 10:37:03 -07001698 // Set default tty mode
1699 loadSetting(stmt, Settings.System.TTY_MODE, 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001700
Vasu Nori89206fdb2010-03-22 10:37:03 -07001701 loadIntegerSetting(stmt, Settings.System.SCREEN_BRIGHTNESS,
1702 R.integer.def_screen_brightness);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001703
Vasu Nori89206fdb2010-03-22 10:37:03 -07001704 loadBooleanSetting(stmt, Settings.System.SCREEN_BRIGHTNESS_MODE,
1705 R.bool.def_screen_brightness_automatic_mode);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001706
Vasu Nori89206fdb2010-03-22 10:37:03 -07001707 loadDefaultAnimationSettings(stmt);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001708
Vasu Nori89206fdb2010-03-22 10:37:03 -07001709 loadBooleanSetting(stmt, Settings.System.ACCELEROMETER_ROTATION,
1710 R.bool.def_accelerometer_rotation);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001711
Vasu Nori89206fdb2010-03-22 10:37:03 -07001712 loadDefaultHapticSettings(stmt);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001713
Vasu Nori89206fdb2010-03-22 10:37:03 -07001714 loadBooleanSetting(stmt, Settings.System.NOTIFICATION_LIGHT_PULSE,
1715 R.bool.def_notification_pulse);
Suchi Amalapurapu40e47252010-04-07 16:15:50 -07001716 loadSetting(stmt, Settings.Secure.SET_INSTALL_LOCATION, 0);
1717 loadSetting(stmt, Settings.Secure.DEFAULT_INSTALL_LOCATION,
1718 PackageHelper.APP_INSTALL_AUTO);
Amith Yamasani42722bf2011-07-22 10:34:27 -07001719
Vasu Nori89206fdb2010-03-22 10:37:03 -07001720 loadUISoundEffectsSettings(stmt);
Amith Yamasani42722bf2011-07-22 10:34:27 -07001721
Jeff Brown1a84fd12011-06-02 01:26:32 -07001722 loadIntegerSetting(stmt, Settings.System.POINTER_SPEED,
1723 R.integer.def_pointer_speed);
Vasu Nori89206fdb2010-03-22 10:37:03 -07001724 } finally {
1725 if (stmt != null) stmt.close();
1726 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001727 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001728
Daniel Sandler0e9d2af2010-01-25 11:33:03 -05001729 private void loadUISoundEffectsSettings(SQLiteStatement stmt) {
1730 loadIntegerSetting(stmt, Settings.System.POWER_SOUNDS_ENABLED,
1731 R.integer.def_power_sounds_enabled);
1732 loadStringSetting(stmt, Settings.System.LOW_BATTERY_SOUND,
1733 R.string.def_low_battery_sound);
Amith Yamasani42722bf2011-07-22 10:34:27 -07001734 loadBooleanSetting(stmt, Settings.System.DTMF_TONE_WHEN_DIALING,
1735 R.bool.def_dtmf_tones_enabled);
1736 loadBooleanSetting(stmt, Settings.System.SOUND_EFFECTS_ENABLED,
1737 R.bool.def_sound_effects_enabled);
1738 loadBooleanSetting(stmt, Settings.System.HAPTIC_FEEDBACK_ENABLED,
1739 R.bool.def_haptic_feedback);
Daniel Sandler0e9d2af2010-01-25 11:33:03 -05001740
1741 loadIntegerSetting(stmt, Settings.System.DOCK_SOUNDS_ENABLED,
1742 R.integer.def_dock_sounds_enabled);
1743 loadStringSetting(stmt, Settings.System.DESK_DOCK_SOUND,
1744 R.string.def_desk_dock_sound);
1745 loadStringSetting(stmt, Settings.System.DESK_UNDOCK_SOUND,
1746 R.string.def_desk_undock_sound);
1747 loadStringSetting(stmt, Settings.System.CAR_DOCK_SOUND,
1748 R.string.def_car_dock_sound);
1749 loadStringSetting(stmt, Settings.System.CAR_UNDOCK_SOUND,
1750 R.string.def_car_undock_sound);
1751
1752 loadIntegerSetting(stmt, Settings.System.LOCKSCREEN_SOUNDS_ENABLED,
1753 R.integer.def_lockscreen_sounds_enabled);
1754 loadStringSetting(stmt, Settings.System.LOCK_SOUND,
1755 R.string.def_lock_sound);
1756 loadStringSetting(stmt, Settings.System.UNLOCK_SOUND,
1757 R.string.def_unlock_sound);
1758 }
1759
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001760 private void loadDefaultAnimationSettings(SQLiteStatement stmt) {
1761 loadFractionSetting(stmt, Settings.System.WINDOW_ANIMATION_SCALE,
1762 R.fraction.def_window_animation_scale, 1);
1763 loadFractionSetting(stmt, Settings.System.TRANSITION_ANIMATION_SCALE,
1764 R.fraction.def_window_transition_scale, 1);
1765 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001766
Dianne Hackborn075a18d2009-09-26 12:43:19 -07001767 private void loadDefaultHapticSettings(SQLiteStatement stmt) {
1768 loadBooleanSetting(stmt, Settings.System.HAPTIC_FEEDBACK_ENABLED,
1769 R.bool.def_haptic_feedback);
1770 }
1771
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001772 private void loadSecureSettings(SQLiteDatabase db) {
Vasu Nori89206fdb2010-03-22 10:37:03 -07001773 SQLiteStatement stmt = null;
1774 try {
1775 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
1776 + " VALUES(?,?);");
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001777
rich cannings16e119e2012-09-06 12:04:37 -07001778 loadBooleanSetting(stmt, Settings.Secure.PACKAGE_VERIFIER_ENABLE,
1779 R.bool.def_package_verifier_enable);
1780
Vasu Nori89206fdb2010-03-22 10:37:03 -07001781 loadStringSetting(stmt, Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
1782 R.string.def_location_providers_allowed);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001783
Vasu Nori89206fdb2010-03-22 10:37:03 -07001784 loadBooleanSetting(stmt, Settings.Secure.WIFI_ON,
1785 R.bool.def_wifi_on);
1786 loadBooleanSetting(stmt, Settings.Secure.WIFI_NETWORKS_AVAILABLE_NOTIFICATION_ON,
1787 R.bool.def_networks_available_notification_on);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001788
Vasu Nori89206fdb2010-03-22 10:37:03 -07001789 String wifiWatchList = SystemProperties.get("ro.com.android.wifi-watchlist");
1790 if (!TextUtils.isEmpty(wifiWatchList)) {
1791 loadSetting(stmt, Settings.Secure.WIFI_WATCHDOG_WATCH_LIST, wifiWatchList);
1792 }
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001793
Vasu Nori89206fdb2010-03-22 10:37:03 -07001794 // Set the preferred network mode to 0 = Global, CDMA default
Wink Savilled6bcfd12011-06-08 12:18:07 -07001795 int type;
Wink Savillea639b312012-07-10 12:37:54 -07001796 if (TelephonyManager.getLteOnCdmaModeStatic() == PhoneConstants.LTE_ON_CDMA_TRUE) {
Wink Savilled6bcfd12011-06-08 12:18:07 -07001797 type = Phone.NT_MODE_GLOBAL;
1798 } else {
1799 type = SystemProperties.getInt("ro.telephony.default_network",
1800 RILConstants.PREFERRED_NETWORK_MODE);
1801 }
Vasu Nori89206fdb2010-03-22 10:37:03 -07001802 loadSetting(stmt, Settings.Secure.PREFERRED_NETWORK_MODE, type);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001803
Vasu Nori89206fdb2010-03-22 10:37:03 -07001804 // Don't do this. The SystemServer will initialize ADB_ENABLED from a
1805 // persistent system property instead.
1806 //loadSetting(stmt, Settings.Secure.ADB_ENABLED, 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001807
Vasu Nori89206fdb2010-03-22 10:37:03 -07001808 // Allow mock locations default, based on build
1809 loadSetting(stmt, Settings.Secure.ALLOW_MOCK_LOCATION,
1810 "1".equals(SystemProperties.get("ro.allow.mock.location")) ? 1 : 0);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001811
Vasu Nori89206fdb2010-03-22 10:37:03 -07001812 loadSecure35Settings(stmt);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001813
Vasu Nori89206fdb2010-03-22 10:37:03 -07001814 loadBooleanSetting(stmt, Settings.Secure.MOUNT_PLAY_NOTIFICATION_SND,
1815 R.bool.def_mount_play_notification_snd);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001816
Vasu Nori89206fdb2010-03-22 10:37:03 -07001817 loadBooleanSetting(stmt, Settings.Secure.MOUNT_UMS_AUTOSTART,
1818 R.bool.def_mount_ums_autostart);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001819
Vasu Nori89206fdb2010-03-22 10:37:03 -07001820 loadBooleanSetting(stmt, Settings.Secure.MOUNT_UMS_PROMPT,
1821 R.bool.def_mount_ums_prompt);
Daisuke Miyakawa3c60eeb2012-05-08 12:08:25 -07001822
Vasu Nori89206fdb2010-03-22 10:37:03 -07001823 loadBooleanSetting(stmt, Settings.Secure.MOUNT_UMS_NOTIFY_ENABLED,
1824 R.bool.def_mount_ums_notify_enabled);
Svetoslav Ganov585f13f8d2010-08-10 07:59:15 -07001825
1826 loadBooleanSetting(stmt, Settings.Secure.ACCESSIBILITY_SCRIPT_INJECTION,
1827 R.bool.def_accessibility_script_injection);
1828
1829 loadStringSetting(stmt, Settings.Secure.ACCESSIBILITY_WEB_CONTENT_KEY_BINDINGS,
1830 R.string.def_accessibility_web_content_key_bindings);
Paul Westbrookd99d0dc2011-02-01 14:26:16 -08001831
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001832 loadIntegerSetting(stmt, Settings.Secure.LONG_PRESS_TIMEOUT,
1833 R.integer.def_long_press_timeout_millis);
Svetoslav Ganova28a16d2011-07-28 11:24:21 -07001834
1835 loadBooleanSetting(stmt, Settings.Secure.TOUCH_EXPLORATION_ENABLED,
1836 R.bool.def_touch_exploration_enabled);
Svetoslav Ganov55f937a2011-12-05 11:42:07 -08001837
1838 loadBooleanSetting(stmt, Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD,
1839 R.bool.def_accessibility_speak_password);
Svetoslav Ganov3ca5a742011-12-06 15:24:37 -08001840
1841 loadStringSetting(stmt, Settings.Secure.ACCESSIBILITY_SCREEN_READER_URL,
1842 R.string.def_accessibility_screen_reader_url);
Mike Lockwood86aeb062011-10-21 13:29:58 -04001843
Amith Yamasanid1645f82012-06-12 11:53:26 -07001844 if (SystemProperties.getBoolean("ro.lockscreen.disable.default", false) == true) {
1845 loadSetting(stmt, Settings.System.LOCKSCREEN_DISABLED, "1");
1846 } else {
1847 loadBooleanSetting(stmt, Settings.System.LOCKSCREEN_DISABLED,
1848 R.bool.def_lockscreen_disabled);
1849 }
Mike Lockwood23955272011-10-21 11:22:48 -04001850
John Spurlock634471e2012-08-09 10:41:37 -04001851 loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ENABLED,
1852 R.bool.def_screensaver_enabled);
1853 loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK,
1854 R.bool.def_screensaver_activate_on_dock);
John Spurlock1a868b72012-08-22 09:56:51 -04001855 loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ACTIVATE_ON_SLEEP,
1856 R.bool.def_screensaver_activate_on_sleep);
1857 loadStringSetting(stmt, Settings.Secure.SCREENSAVER_COMPONENTS,
1858 R.string.def_screensaver_component);
1859 loadStringSetting(stmt, Settings.Secure.SCREENSAVER_DEFAULT_COMPONENT,
John Spurlock634471e2012-08-09 10:41:37 -04001860 R.string.def_screensaver_component);
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001861
1862 loadBooleanSetting(stmt, Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED,
1863 R.bool.def_accessibility_display_magnification_enabled);
1864
1865 loadFractionSetting(stmt, Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_SCALE,
1866 R.fraction.def_accessibility_display_magnification_scale, 1);
1867
1868 loadBooleanSetting(stmt,
1869 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE,
1870 R.bool.def_accessibility_display_magnification_auto_update);
Vasu Nori89206fdb2010-03-22 10:37:03 -07001871 } finally {
1872 if (stmt != null) stmt.close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001873 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001874 }
1875
Dianne Hackborncf098292009-07-01 19:55:20 -07001876 private void loadSecure35Settings(SQLiteStatement stmt) {
1877 loadBooleanSetting(stmt, Settings.Secure.BACKUP_ENABLED,
1878 R.bool.def_backup_enabled);
Jim Miller31f90b62010-01-20 13:35:20 -08001879
Dianne Hackborncf098292009-07-01 19:55:20 -07001880 loadStringSetting(stmt, Settings.Secure.BACKUP_TRANSPORT,
1881 R.string.def_backup_transport);
1882 }
Jim Miller61766772010-02-12 14:56:49 -08001883
Christopher Tate06efb532012-08-24 15:29:27 -07001884 private void loadGlobalSettings(SQLiteDatabase db) {
1885 SQLiteStatement stmt = null;
1886 try {
1887 stmt = db.compileStatement("INSERT OR IGNORE INTO global(name,value)"
1888 + " VALUES(?,?);");
1889
1890 // --- Previously in 'system'
1891 loadBooleanSetting(stmt, Settings.Global.AIRPLANE_MODE_ON,
1892 R.bool.def_airplane_mode_on);
1893
1894 loadStringSetting(stmt, Settings.Global.AIRPLANE_MODE_RADIOS,
1895 R.string.def_airplane_mode_radios);
1896
1897 loadStringSetting(stmt, Settings.Global.AIRPLANE_MODE_TOGGLEABLE_RADIOS,
1898 R.string.airplane_mode_toggleable_radios);
1899
1900 loadBooleanSetting(stmt, Settings.Global.ASSISTED_GPS_ENABLED,
1901 R.bool.assisted_gps_enabled);
1902
1903 loadBooleanSetting(stmt, Settings.Global.AUTO_TIME,
1904 R.bool.def_auto_time); // Sync time to NITZ
1905
1906 loadBooleanSetting(stmt, Settings.Global.AUTO_TIME_ZONE,
1907 R.bool.def_auto_time_zone); // Sync timezone to NITZ
1908
1909 loadSetting(stmt, Settings.Global.STAY_ON_WHILE_PLUGGED_IN,
1910 ("1".equals(SystemProperties.get("ro.kernel.qemu")) ||
1911 mContext.getResources().getBoolean(R.bool.def_stay_on_while_plugged_in))
1912 ? 1 : 0);
1913
1914 loadIntegerSetting(stmt, Settings.Global.WIFI_SLEEP_POLICY,
1915 R.integer.def_wifi_sleep_policy);
1916
1917 // --- Previously in 'secure'
1918 loadBooleanSetting(stmt, Settings.Global.BLUETOOTH_ON,
1919 R.bool.def_bluetooth_on);
1920
1921 // Enable or disable Cell Broadcast SMS
1922 loadSetting(stmt, Settings.Global.CDMA_CELL_BROADCAST_SMS,
1923 RILConstants.CDMA_CELL_BROADCAST_SMS_DISABLED);
1924
1925 // Data roaming default, based on build
1926 loadSetting(stmt, Settings.Global.DATA_ROAMING,
1927 "true".equalsIgnoreCase(
1928 SystemProperties.get("ro.com.android.dataroaming",
1929 "false")) ? 1 : 0);
1930
1931 loadBooleanSetting(stmt, Settings.Global.DEVICE_PROVISIONED,
1932 R.bool.def_device_provisioned);
1933
1934 final int maxBytes = mContext.getResources().getInteger(
1935 R.integer.def_download_manager_max_bytes_over_mobile);
1936 if (maxBytes > 0) {
1937 loadSetting(stmt, Settings.Global.DOWNLOAD_MAX_BYTES_OVER_MOBILE,
1938 Integer.toString(maxBytes));
1939 }
1940
1941 final int recommendedMaxBytes = mContext.getResources().getInteger(
1942 R.integer.def_download_manager_recommended_max_bytes_over_mobile);
1943 if (recommendedMaxBytes > 0) {
1944 loadSetting(stmt, Settings.Global.DOWNLOAD_RECOMMENDED_MAX_BYTES_OVER_MOBILE,
1945 Integer.toString(recommendedMaxBytes));
1946 }
1947
1948 // Mobile Data default, based on build
1949 loadSetting(stmt, Settings.Global.MOBILE_DATA,
1950 "true".equalsIgnoreCase(
1951 SystemProperties.get("ro.com.android.mobiledata",
1952 "true")) ? 1 : 0);
1953
1954 loadBooleanSetting(stmt, Settings.Global.NETSTATS_ENABLED,
1955 R.bool.def_netstats_enabled);
1956
1957 loadBooleanSetting(stmt, Settings.Global.INSTALL_NON_MARKET_APPS,
1958 R.bool.def_install_non_market_apps);
1959
1960 loadIntegerSetting(stmt, Settings.Global.NETWORK_PREFERENCE,
1961 R.integer.def_network_preference);
1962
1963 loadBooleanSetting(stmt, Settings.Global.USB_MASS_STORAGE_ENABLED,
1964 R.bool.def_usb_mass_storage_enabled);
1965
1966 loadIntegerSetting(stmt, Settings.Global.WIFI_MAX_DHCP_RETRY_COUNT,
1967 R.integer.def_max_dhcp_retries);
1968
1969 // --- New global settings start here
1970 } finally {
1971 if (stmt != null) stmt.close();
1972 }
1973 }
1974
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001975 private void loadSetting(SQLiteStatement stmt, String key, Object value) {
1976 stmt.bindString(1, key);
1977 stmt.bindString(2, value.toString());
1978 stmt.execute();
1979 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001980
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 private void loadStringSetting(SQLiteStatement stmt, String key, int resid) {
1982 loadSetting(stmt, key, mContext.getResources().getString(resid));
1983 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001984
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001985 private void loadBooleanSetting(SQLiteStatement stmt, String key, int resid) {
1986 loadSetting(stmt, key,
1987 mContext.getResources().getBoolean(resid) ? "1" : "0");
1988 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001989
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990 private void loadIntegerSetting(SQLiteStatement stmt, String key, int resid) {
1991 loadSetting(stmt, key,
1992 Integer.toString(mContext.getResources().getInteger(resid)));
1993 }
Jaikumar Ganesh9bfbfbd2009-05-15 12:05:56 -07001994
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001995 private void loadFractionSetting(SQLiteStatement stmt, String key, int resid, int base) {
1996 loadSetting(stmt, key,
1997 Float.toString(mContext.getResources().getFraction(resid, base, base)));
1998 }
Amith Yamasani5cd15002011-11-16 11:19:48 -08001999
2000 private int getIntValueFromSystem(SQLiteDatabase db, String name, int defaultValue) {
Christopher Tate06efb532012-08-24 15:29:27 -07002001 return getIntValueFromTable(db, TABLE_SYSTEM, name, defaultValue);
Svetoslav Ganov86317012012-08-15 22:13:00 -07002002 }
2003
2004 private int getIntValueFromTable(SQLiteDatabase db, String table, String name,
2005 int defaultValue) {
2006 String value = getStringValueFromTable(db, table, name, null);
2007 return (value != null) ? Integer.parseInt(value) : defaultValue;
2008 }
2009
2010 private String getStringValueFromTable(SQLiteDatabase db, String table, String name,
2011 String defaultValue) {
Amith Yamasani5cd15002011-11-16 11:19:48 -08002012 Cursor c = null;
2013 try {
Svetoslav Ganov86317012012-08-15 22:13:00 -07002014 c = db.query(table, new String[] { Settings.System.VALUE }, "name='" + name + "'",
Amith Yamasani5cd15002011-11-16 11:19:48 -08002015 null, null, null, null);
2016 if (c != null && c.moveToFirst()) {
2017 String val = c.getString(0);
Svetoslav Ganov86317012012-08-15 22:13:00 -07002018 return val == null ? defaultValue : val;
Amith Yamasani5cd15002011-11-16 11:19:48 -08002019 }
2020 } finally {
2021 if (c != null) c.close();
2022 }
Svetoslav Ganov86317012012-08-15 22:13:00 -07002023 return defaultValue;
Amith Yamasani5cd15002011-11-16 11:19:48 -08002024 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07002025}