blob: 6937da01f6458b520e78d927aad7ce2f0f94c651 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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 android.database.sqlite;
18
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070019import android.app.AppGlobals;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.ContentValues;
21import android.database.Cursor;
Vasu Nori062fc7ce2010-03-31 16:13:05 -070022import android.database.DatabaseErrorHandler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.database.DatabaseUtils;
Vasu Nori062fc7ce2010-03-31 16:13:05 -070024import android.database.DefaultDatabaseErrorHandler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.database.SQLException;
Vasu Noric3849202010-03-09 10:47:25 -080026import android.database.sqlite.SQLiteDebug.DbStats;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.os.Debug;
Vasu Noria8c24902010-06-01 11:30:27 -070028import android.os.StatFs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.os.SystemClock;
Dmitri Plotnikov90142c92009-09-15 10:52:17 -070030import android.os.SystemProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.text.TextUtils;
32import android.util.Config;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.util.EventLog;
Dmitri Plotnikov90142c92009-09-15 10:52:17 -070034import android.util.Log;
Vasu Noric3849202010-03-09 10:47:25 -080035import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
Brad Fitzpatrickcfda9f32010-06-03 12:52:54 -070037import dalvik.system.BlockGuard;
38
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import java.io.File;
Vasu Noric3849202010-03-09 10:47:25 -080040import java.lang.ref.WeakReference;
Vasu Noric3849202010-03-09 10:47:25 -080041import java.util.ArrayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import java.util.HashMap;
43import java.util.Iterator;
Vasu Norib729dcc2010-09-14 11:35:49 -070044import java.util.LinkedHashMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import java.util.Locale;
46import java.util.Map;
Dan Egnor12311952009-11-23 14:47:45 -080047import java.util.Random;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import java.util.WeakHashMap;
49import java.util.concurrent.locks.ReentrantLock;
Brad Fitzpatrickd8330232010-02-19 10:59:01 -080050import java.util.regex.Pattern;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051
52/**
53 * Exposes methods to manage a SQLite database.
54 * <p>SQLiteDatabase has methods to create, delete, execute SQL commands, and
55 * perform other common database management tasks.
56 * <p>See the Notepad sample application in the SDK for an example of creating
57 * and managing a database.
58 * <p> Database names must be unique within an application, not across all
59 * applications.
60 *
61 * <h3>Localized Collation - ORDER BY</h3>
62 * <p>In addition to SQLite's default <code>BINARY</code> collator, Android supplies
63 * two more, <code>LOCALIZED</code>, which changes with the system's current locale
64 * if you wire it up correctly (XXX a link needed!), and <code>UNICODE</code>, which
65 * is the Unicode Collation Algorithm and not tailored to the current locale.
66 */
67public class SQLiteDatabase extends SQLiteClosable {
Vasu Norifb16cbd2010-07-25 16:38:48 -070068 private static final String TAG = "SQLiteDatabase";
Jeff Hamilton082c2af2009-09-29 11:49:51 -070069 private static final int EVENT_DB_OPERATION = 52000;
70 private static final int EVENT_DB_CORRUPT = 75004;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071
72 /**
73 * Algorithms used in ON CONFLICT clause
74 * http://www.sqlite.org/lang_conflict.html
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 */
Vasu Nori8d45e4e2010-02-05 22:35:47 -080076 /**
77 * When a constraint violation occurs, an immediate ROLLBACK occurs,
78 * thus ending the current transaction, and the command aborts with a
79 * return code of SQLITE_CONSTRAINT. If no transaction is active
80 * (other than the implied transaction that is created on every command)
81 * then this algorithm works the same as ABORT.
82 */
83 public static final int CONFLICT_ROLLBACK = 1;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -070084
Vasu Nori8d45e4e2010-02-05 22:35:47 -080085 /**
86 * When a constraint violation occurs,no ROLLBACK is executed
87 * so changes from prior commands within the same transaction
88 * are preserved. This is the default behavior.
89 */
90 public static final int CONFLICT_ABORT = 2;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -070091
Vasu Nori8d45e4e2010-02-05 22:35:47 -080092 /**
93 * When a constraint violation occurs, the command aborts with a return
94 * code SQLITE_CONSTRAINT. But any changes to the database that
95 * the command made prior to encountering the constraint violation
96 * are preserved and are not backed out.
97 */
98 public static final int CONFLICT_FAIL = 3;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -070099
Vasu Nori8d45e4e2010-02-05 22:35:47 -0800100 /**
101 * When a constraint violation occurs, the one row that contains
102 * the constraint violation is not inserted or changed.
103 * But the command continues executing normally. Other rows before and
104 * after the row that contained the constraint violation continue to be
105 * inserted or updated normally. No error is returned.
106 */
107 public static final int CONFLICT_IGNORE = 4;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700108
Vasu Nori8d45e4e2010-02-05 22:35:47 -0800109 /**
110 * When a UNIQUE constraint violation occurs, the pre-existing rows that
111 * are causing the constraint violation are removed prior to inserting
112 * or updating the current row. Thus the insert or update always occurs.
113 * The command continues executing normally. No error is returned.
114 * If a NOT NULL constraint violation occurs, the NULL value is replaced
115 * by the default value for that column. If the column has no default
116 * value, then the ABORT algorithm is used. If a CHECK constraint
117 * violation occurs then the IGNORE algorithm is used. When this conflict
118 * resolution strategy deletes rows in order to satisfy a constraint,
119 * it does not invoke delete triggers on those rows.
120 * This behavior might change in a future release.
121 */
122 public static final int CONFLICT_REPLACE = 5;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700123
Vasu Nori8d45e4e2010-02-05 22:35:47 -0800124 /**
125 * use the following when no conflict action is specified.
126 */
127 public static final int CONFLICT_NONE = 0;
128 private static final String[] CONFLICT_VALUES = new String[]
129 {"", " OR ROLLBACK ", " OR ABORT ", " OR FAIL ", " OR IGNORE ", " OR REPLACE "};
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700130
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 /**
132 * Maximum Length Of A LIKE Or GLOB Pattern
133 * The pattern matching algorithm used in the default LIKE and GLOB implementation
134 * of SQLite can exhibit O(N^2) performance (where N is the number of characters in
135 * the pattern) for certain pathological cases. To avoid denial-of-service attacks
136 * the length of the LIKE or GLOB pattern is limited to SQLITE_MAX_LIKE_PATTERN_LENGTH bytes.
137 * The default value of this limit is 50000. A modern workstation can evaluate
138 * even a pathological LIKE or GLOB pattern of 50000 bytes relatively quickly.
139 * The denial of service problem only comes into play when the pattern length gets
140 * into millions of bytes. Nevertheless, since most useful LIKE or GLOB patterns
141 * are at most a few dozen bytes in length, paranoid application developers may
142 * want to reduce this parameter to something in the range of a few hundred
143 * if they know that external users are able to generate arbitrary patterns.
144 */
145 public static final int SQLITE_MAX_LIKE_PATTERN_LENGTH = 50000;
146
147 /**
148 * Flag for {@link #openDatabase} to open the database for reading and writing.
149 * If the disk is full, this may fail even before you actually write anything.
150 *
151 * {@more} Note that the value of this flag is 0, so it is the default.
152 */
153 public static final int OPEN_READWRITE = 0x00000000; // update native code if changing
154
155 /**
156 * Flag for {@link #openDatabase} to open the database for reading only.
157 * This is the only reliable way to open a database if the disk may be full.
158 */
159 public static final int OPEN_READONLY = 0x00000001; // update native code if changing
160
161 private static final int OPEN_READ_MASK = 0x00000001; // update native code if changing
162
163 /**
164 * Flag for {@link #openDatabase} to open the database without support for localized collators.
165 *
166 * {@more} This causes the collator <code>LOCALIZED</code> not to be created.
167 * You must be consistent when using this flag to use the setting the database was
168 * created with. If this is set, {@link #setLocale} will do nothing.
169 */
170 public static final int NO_LOCALIZED_COLLATORS = 0x00000010; // update native code if changing
171
172 /**
173 * Flag for {@link #openDatabase} to create the database file if it does not already exist.
174 */
175 public static final int CREATE_IF_NECESSARY = 0x10000000; // update native code if changing
176
177 /**
178 * Indicates whether the most-recently started transaction has been marked as successful.
179 */
180 private boolean mInnerTransactionIsSuccessful;
181
182 /**
183 * Valid during the life of a transaction, and indicates whether the entire transaction (the
184 * outer one and all of the inner ones) so far has been successful.
185 */
186 private boolean mTransactionIsSuccessful;
187
Fred Quintanac4516a72009-09-03 12:14:06 -0700188 /**
189 * Valid during the life of a transaction.
190 */
191 private SQLiteTransactionListener mTransactionListener;
192
Vasu Norice38b982010-07-22 13:57:13 -0700193 /**
194 * this member is set if {@link #execSQL(String)} is used to begin and end transactions.
195 */
196 private boolean mTransactionUsingExecSql;
197
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 /** Synchronize on this when accessing the database */
199 private final ReentrantLock mLock = new ReentrantLock(true);
200
201 private long mLockAcquiredWallTime = 0L;
202 private long mLockAcquiredThreadTime = 0L;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 // limit the frequency of complaints about each database to one within 20 sec
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700205 // unless run command adb shell setprop log.tag.Database VERBOSE
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 private static final int LOCK_WARNING_WINDOW_IN_MS = 20000;
207 /** If the lock is held this long then a warning will be printed when it is released. */
208 private static final int LOCK_ACQUIRED_WARNING_TIME_IN_MS = 300;
209 private static final int LOCK_ACQUIRED_WARNING_THREAD_TIME_IN_MS = 100;
210 private static final int LOCK_ACQUIRED_WARNING_TIME_IN_MS_ALWAYS_PRINT = 2000;
211
Dmitri Plotnikovb43b58d2009-09-09 18:10:42 -0700212 private static final int SLEEP_AFTER_YIELD_QUANTUM = 1000;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700213
Brad Fitzpatrickd8330232010-02-19 10:59:01 -0800214 // The pattern we remove from database filenames before
215 // potentially logging them.
216 private static final Pattern EMAIL_IN_DB_PATTERN = Pattern.compile("[\\w\\.\\-]+@[\\w\\.\\-]+");
217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 private long mLastLockMessageTime = 0L;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700219
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -0800220 // Things related to query logging/sampling for debugging
221 // slow/frequent queries during development. Always log queries
Brad Fitzpatrick722802e2010-03-23 22:22:16 -0700222 // which take (by default) 500ms+; shorter queries are sampled
223 // accordingly. Commit statements, which are typically slow, are
224 // logged together with the most recently executed SQL statement,
225 // for disambiguation. The 500ms value is configurable via a
226 // SystemProperty, but developers actively debugging database I/O
227 // should probably use the regular log tunable,
228 // LOG_SLOW_QUERIES_PROPERTY, defined below.
229 private static int sQueryLogTimeInMillis = 0; // lazily initialized
Dan Egnor12311952009-11-23 14:47:45 -0800230 private static final int QUERY_LOG_SQL_LENGTH = 64;
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -0800231 private static final String COMMIT_SQL = "COMMIT;";
Dan Egnor12311952009-11-23 14:47:45 -0800232 private final Random mRandom = new Random();
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -0800233 private String mLastSqlStatement = null;
Dan Egnor12311952009-11-23 14:47:45 -0800234
Brad Fitzpatrick722802e2010-03-23 22:22:16 -0700235 // String prefix for slow database query EventLog records that show
236 // lock acquistions of the database.
237 /* package */ static final String GET_LOCK_LOG_PREFIX = "GETLOCK:";
238
Vasu Nori6f37f832010-05-19 11:53:25 -0700239 /** Used by native code, do not rename. make it volatile, so it is thread-safe. */
240 /* package */ volatile int mNativeHandle = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241
Vasu Noria8c24902010-06-01 11:30:27 -0700242 /**
243 * The size, in bytes, of a block on "/data". This corresponds to the Unix
244 * statfs.f_bsize field. note that this field is lazily initialized.
245 */
246 private static int sBlockSize = 0;
247
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 /** The path for the database file */
Vasu Noriccd95442010-05-28 17:04:16 -0700249 private final String mPath;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250
Brad Fitzpatrickd8330232010-02-19 10:59:01 -0800251 /** The anonymized path for the database file for logging purposes */
252 private String mPathForLogs = null; // lazily populated
253
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 /** The flags passed to open/create */
Vasu Noriccd95442010-05-28 17:04:16 -0700255 private final int mFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256
257 /** The optional factory to use when creating new Cursors */
Vasu Noriccd95442010-05-28 17:04:16 -0700258 private final CursorFactory mFactory;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700259
Vasu Nori21343692010-06-03 16:01:39 -0700260 private final WeakHashMap<SQLiteClosable, Object> mPrograms;
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700261
Vasu Nori5a03f362009-10-20 15:16:35 -0700262 /**
Vasu Norib729dcc2010-09-14 11:35:49 -0700263 * for each instance of this class, a LRU cache is maintained to store
264 * the compiled query statement ids returned by sqlite database.
265 * key = SQL statement with "?" for bind args
266 * value = {@link SQLiteCompiledSql}
267 * If an application opens the database and keeps it open during its entire life, then
268 * there will not be an overhead of compilation of SQL statements by sqlite.
269 *
270 * why is this cache NOT static? because sqlite attaches compiledsql statements to the
271 * struct created when {@link SQLiteDatabase#openDatabase(String, CursorFactory, int)} is
272 * invoked.
273 *
274 * this cache has an upper limit of mMaxSqlCacheSize (settable by calling the method
275 * (@link #setMaxSqlCacheSize(int)}).
276 */
277 // default statement-cache size per database connection ( = instance of this class)
278 private int mMaxSqlCacheSize = 25;
279 /* package */ final Map<String, SQLiteCompiledSql> mCompiledQueries =
280 new LinkedHashMap<String, SQLiteCompiledSql>(mMaxSqlCacheSize + 1, 0.75f, true) {
281 @Override
282 public boolean removeEldestEntry(Map.Entry<String, SQLiteCompiledSql> eldest) {
283 // eldest = least-recently used entry
284 // if it needs to be removed to accommodate a new entry,
285 // close {@link SQLiteCompiledSql} represented by this entry, if not in use
286 // and then let it be removed from the Map.
287 // when this is called, the caller must be trying to add a just-compiled stmt
288 // to cache; i.e., caller should already have acquired database lock AND
289 // the lock on mCompiledQueries. do as assert of these two 2 facts.
290 verifyLockOwner();
291 if (this.size() <= mMaxSqlCacheSize) {
292 // cache is not full. nothing needs to be removed
293 return false;
294 }
295 // cache is full. eldest will be removed.
296 SQLiteCompiledSql entry = eldest.getValue();
297 if (!entry.isInUse()) {
298 // this {@link SQLiteCompiledSql} is not in use. release it.
299 entry.releaseSqlStatement();
300 }
301 // return true, so that this entry is removed automatically by the caller.
302 return true;
303 }
304 };
305 /**
306 * absolute max value that can be set by {@link #setMaxSqlCacheSize(int)}
307 * size of each prepared-statement is between 1K - 6K, depending on the complexity of the
Vasu Noriccd95442010-05-28 17:04:16 -0700308 * SQL statement & schema.
Vasu Norie495d1f2010-01-06 16:34:19 -0800309 */
Vasu Nori90a367262010-04-12 12:49:09 -0700310 public static final int MAX_SQL_CACHE_SIZE = 100;
Vasu Norib729dcc2010-09-14 11:35:49 -0700311 private int mCacheFullWarnings;
312 private static final int MAX_WARNINGS_ON_CACHESIZE_CONDITION = 1;
313
314 /** maintain stats about number of cache hits and misses */
315 private int mNumCacheHits;
316 private int mNumCacheMisses;
Vasu Nori5a03f362009-10-20 15:16:35 -0700317
Vasu Norid606b4b2010-02-24 12:54:20 -0800318 /** Used to find out where this object was created in case it never got closed. */
Vasu Nori21343692010-06-03 16:01:39 -0700319 private final Throwable mStackTrace;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320
Dmitri Plotnikov90142c92009-09-15 10:52:17 -0700321 // System property that enables logging of slow queries. Specify the threshold in ms.
322 private static final String LOG_SLOW_QUERIES_PROPERTY = "db.log.slow_query_threshold";
323 private final int mSlowQueryThreshold;
324
Vasu Nori6f37f832010-05-19 11:53:25 -0700325 /** stores the list of statement ids that need to be finalized by sqlite */
Vasu Nori21343692010-06-03 16:01:39 -0700326 private final ArrayList<Integer> mClosedStatementIds = new ArrayList<Integer>();
Vasu Nori6f37f832010-05-19 11:53:25 -0700327
Vasu Nori062fc7ce2010-03-31 16:13:05 -0700328 /** {@link DatabaseErrorHandler} to be used when SQLite returns any of the following errors
329 * Corruption
330 * */
Vasu Nori21343692010-06-03 16:01:39 -0700331 private final DatabaseErrorHandler mErrorHandler;
Vasu Nori062fc7ce2010-03-31 16:13:05 -0700332
Vasu Nori6c354da2010-04-26 23:33:39 -0700333 /** The Database connection pool {@link DatabaseConnectionPool}.
334 * Visibility is package-private for testing purposes. otherwise, private visibility is enough.
335 */
336 /* package */ volatile DatabaseConnectionPool mConnectionPool = null;
337
338 /** Each database connection handle in the pool is assigned a number 1..N, where N is the
339 * size of the connection pool.
340 * The main connection handle to which the pool is attached is assigned a value of 0.
341 */
342 /* package */ final short mConnectionNum;
343
Vasu Nori65a88832010-07-16 15:14:08 -0700344 /** on pooled database connections, this member points to the parent ( = main)
345 * database connection handle.
346 * package visibility only for testing purposes
347 */
348 /* package */ SQLiteDatabase mParentConnObj = null;
349
Vasu Noria98cb262010-06-22 13:16:35 -0700350 private static final String MEMORY_DB_PATH = ":memory:";
351
Vasu Nori0732f792010-07-29 17:24:12 -0700352 /** stores reference to all databases opened in the current process. */
353 private static ArrayList<WeakReference<SQLiteDatabase>> mActiveDatabases =
354 new ArrayList<WeakReference<SQLiteDatabase>>();
355
Vasu Nori2827d6d2010-07-04 00:26:18 -0700356 synchronized void addSQLiteClosable(SQLiteClosable closable) {
357 // mPrograms is per instance of SQLiteDatabase and it doesn't actually touch the database
358 // itself. so, there is no need to lock().
359 mPrograms.put(closable, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 }
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700361
Vasu Nori2827d6d2010-07-04 00:26:18 -0700362 synchronized void removeSQLiteClosable(SQLiteClosable closable) {
363 mPrograms.remove(closable);
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700364 }
365
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366 @Override
367 protected void onAllReferencesReleased() {
368 if (isOpen()) {
Vasu Noriad239ab2010-06-14 16:58:47 -0700369 // close the database which will close all pending statements to be finalized also
370 close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 }
372 }
373
374 /**
375 * Attempts to release memory that SQLite holds but does not require to
376 * operate properly. Typically this memory will come from the page cache.
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700377 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 * @return the number of bytes actually released
379 */
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700380 static public native int releaseMemory();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381
382 /**
383 * Control whether or not the SQLiteDatabase is made thread-safe by using locks
384 * around critical sections. This is pretty expensive, so if you know that your
385 * DB will only be used by a single thread then you should set this to false.
386 * The default is true.
387 * @param lockingEnabled set to true to enable locks, false otherwise
388 */
389 public void setLockingEnabled(boolean lockingEnabled) {
390 mLockingEnabled = lockingEnabled;
391 }
392
393 /**
394 * If set then the SQLiteDatabase is made thread-safe by using locks
395 * around critical sections
396 */
397 private boolean mLockingEnabled = true;
398
399 /* package */ void onCorruption() {
Vasu Norif3cf8a42010-03-23 11:41:44 -0700400 EventLog.writeEvent(EVENT_DB_CORRUPT, mPath);
Vasu Noriccd95442010-05-28 17:04:16 -0700401 mErrorHandler.onCorruption(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 }
403
404 /**
405 * Locks the database for exclusive access. The database lock must be held when
406 * touch the native sqlite3* object since it is single threaded and uses
407 * a polling lock contention algorithm. The lock is recursive, and may be acquired
408 * multiple times by the same thread. This is a no-op if mLockingEnabled is false.
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700409 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410 * @see #unlock()
411 */
412 /* package */ void lock() {
Vasu Nori7b04c412010-07-20 10:31:21 -0700413 verifyDbIsOpen();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 if (!mLockingEnabled) return;
415 mLock.lock();
416 if (SQLiteDebug.DEBUG_LOCK_TIME_TRACKING) {
417 if (mLock.getHoldCount() == 1) {
418 // Use elapsed real-time since the CPU may sleep when waiting for IO
419 mLockAcquiredWallTime = SystemClock.elapsedRealtime();
420 mLockAcquiredThreadTime = Debug.threadCpuTimeNanos();
421 }
422 }
423 }
424
425 /**
426 * Locks the database for exclusive access. The database lock must be held when
427 * touch the native sqlite3* object since it is single threaded and uses
428 * a polling lock contention algorithm. The lock is recursive, and may be acquired
429 * multiple times by the same thread.
430 *
431 * @see #unlockForced()
432 */
433 private void lockForced() {
Vasu Nori7b04c412010-07-20 10:31:21 -0700434 verifyDbIsOpen();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800435 mLock.lock();
436 if (SQLiteDebug.DEBUG_LOCK_TIME_TRACKING) {
437 if (mLock.getHoldCount() == 1) {
438 // Use elapsed real-time since the CPU may sleep when waiting for IO
439 mLockAcquiredWallTime = SystemClock.elapsedRealtime();
440 mLockAcquiredThreadTime = Debug.threadCpuTimeNanos();
441 }
442 }
443 }
444
445 /**
446 * Releases the database lock. This is a no-op if mLockingEnabled is false.
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700447 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 * @see #unlock()
449 */
450 /* package */ void unlock() {
451 if (!mLockingEnabled) return;
452 if (SQLiteDebug.DEBUG_LOCK_TIME_TRACKING) {
453 if (mLock.getHoldCount() == 1) {
454 checkLockHoldTime();
455 }
456 }
457 mLock.unlock();
458 }
459
460 /**
461 * Releases the database lock.
462 *
463 * @see #unlockForced()
464 */
465 private void unlockForced() {
466 if (SQLiteDebug.DEBUG_LOCK_TIME_TRACKING) {
467 if (mLock.getHoldCount() == 1) {
468 checkLockHoldTime();
469 }
470 }
471 mLock.unlock();
472 }
473
474 private void checkLockHoldTime() {
475 // Use elapsed real-time since the CPU may sleep when waiting for IO
476 long elapsedTime = SystemClock.elapsedRealtime();
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700477 long lockedTime = elapsedTime - mLockAcquiredWallTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 if (lockedTime < LOCK_ACQUIRED_WARNING_TIME_IN_MS_ALWAYS_PRINT &&
479 !Log.isLoggable(TAG, Log.VERBOSE) &&
480 (elapsedTime - mLastLockMessageTime) < LOCK_WARNING_WINDOW_IN_MS) {
481 return;
482 }
483 if (lockedTime > LOCK_ACQUIRED_WARNING_TIME_IN_MS) {
484 int threadTime = (int)
485 ((Debug.threadCpuTimeNanos() - mLockAcquiredThreadTime) / 1000000);
486 if (threadTime > LOCK_ACQUIRED_WARNING_THREAD_TIME_IN_MS ||
487 lockedTime > LOCK_ACQUIRED_WARNING_TIME_IN_MS_ALWAYS_PRINT) {
488 mLastLockMessageTime = elapsedTime;
489 String msg = "lock held on " + mPath + " for " + lockedTime + "ms. Thread time was "
490 + threadTime + "ms";
491 if (SQLiteDebug.DEBUG_LOCK_TIME_TRACKING_STACK_TRACE) {
492 Log.d(TAG, msg, new Exception());
493 } else {
494 Log.d(TAG, msg);
495 }
496 }
497 }
498 }
499
500 /**
Vasu Noriccd95442010-05-28 17:04:16 -0700501 * Begins a transaction in EXCLUSIVE mode.
502 * <p>
503 * Transactions can be nested.
504 * When the outer transaction is ended all of
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 * the work done in that transaction and all of the nested transactions will be committed or
506 * rolled back. The changes will be rolled back if any transaction is ended without being
507 * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
Vasu Noriccd95442010-05-28 17:04:16 -0700508 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509 * <p>Here is the standard idiom for transactions:
510 *
511 * <pre>
512 * db.beginTransaction();
513 * try {
514 * ...
515 * db.setTransactionSuccessful();
516 * } finally {
517 * db.endTransaction();
518 * }
519 * </pre>
520 */
521 public void beginTransaction() {
Vasu Nori6c354da2010-04-26 23:33:39 -0700522 beginTransaction(null /* transactionStatusCallback */, true);
523 }
524
525 /**
526 * Begins a transaction in IMMEDIATE mode. Transactions can be nested. When
527 * the outer transaction is ended all of the work done in that transaction
528 * and all of the nested transactions will be committed or rolled back. The
529 * changes will be rolled back if any transaction is ended without being
530 * marked as clean (by calling setTransactionSuccessful). Otherwise they
531 * will be committed.
532 * <p>
533 * Here is the standard idiom for transactions:
534 *
535 * <pre>
536 * db.beginTransactionNonExclusive();
537 * try {
538 * ...
539 * db.setTransactionSuccessful();
540 * } finally {
541 * db.endTransaction();
542 * }
543 * </pre>
544 */
545 public void beginTransactionNonExclusive() {
546 beginTransaction(null /* transactionStatusCallback */, false);
Fred Quintanac4516a72009-09-03 12:14:06 -0700547 }
548
549 /**
Vasu Noriccd95442010-05-28 17:04:16 -0700550 * Begins a transaction in EXCLUSIVE mode.
551 * <p>
552 * Transactions can be nested.
553 * When the outer transaction is ended all of
Fred Quintanac4516a72009-09-03 12:14:06 -0700554 * the work done in that transaction and all of the nested transactions will be committed or
555 * rolled back. The changes will be rolled back if any transaction is ended without being
556 * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
Vasu Noriccd95442010-05-28 17:04:16 -0700557 * </p>
Fred Quintanac4516a72009-09-03 12:14:06 -0700558 * <p>Here is the standard idiom for transactions:
559 *
560 * <pre>
561 * db.beginTransactionWithListener(listener);
562 * try {
563 * ...
564 * db.setTransactionSuccessful();
565 * } finally {
566 * db.endTransaction();
567 * }
568 * </pre>
Vasu Noriccd95442010-05-28 17:04:16 -0700569 *
Fred Quintanac4516a72009-09-03 12:14:06 -0700570 * @param transactionListener listener that should be notified when the transaction begins,
571 * commits, or is rolled back, either explicitly or by a call to
572 * {@link #yieldIfContendedSafely}.
573 */
574 public void beginTransactionWithListener(SQLiteTransactionListener transactionListener) {
Vasu Nori6c354da2010-04-26 23:33:39 -0700575 beginTransaction(transactionListener, true);
576 }
577
578 /**
579 * Begins a transaction in IMMEDIATE mode. Transactions can be nested. When
580 * the outer transaction is ended all of the work done in that transaction
581 * and all of the nested transactions will be committed or rolled back. The
582 * changes will be rolled back if any transaction is ended without being
583 * marked as clean (by calling setTransactionSuccessful). Otherwise they
584 * will be committed.
585 * <p>
586 * Here is the standard idiom for transactions:
587 *
588 * <pre>
589 * db.beginTransactionWithListenerNonExclusive(listener);
590 * try {
591 * ...
592 * db.setTransactionSuccessful();
593 * } finally {
594 * db.endTransaction();
595 * }
596 * </pre>
597 *
598 * @param transactionListener listener that should be notified when the
599 * transaction begins, commits, or is rolled back, either
600 * explicitly or by a call to {@link #yieldIfContendedSafely}.
601 */
602 public void beginTransactionWithListenerNonExclusive(
603 SQLiteTransactionListener transactionListener) {
604 beginTransaction(transactionListener, false);
605 }
606
607 private void beginTransaction(SQLiteTransactionListener transactionListener,
608 boolean exclusive) {
Vasu Noriccd95442010-05-28 17:04:16 -0700609 verifyDbIsOpen();
Vasu Noric8e1f232010-04-13 15:05:09 -0700610 lockForced();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 boolean ok = false;
612 try {
613 // If this thread already had the lock then get out
614 if (mLock.getHoldCount() > 1) {
615 if (mInnerTransactionIsSuccessful) {
616 String msg = "Cannot call beginTransaction between "
617 + "calling setTransactionSuccessful and endTransaction";
618 IllegalStateException e = new IllegalStateException(msg);
619 Log.e(TAG, "beginTransaction() failed", e);
620 throw e;
621 }
622 ok = true;
623 return;
624 }
625
626 // This thread didn't already have the lock, so begin a database
627 // transaction now.
Vasu Nori57feb5d2010-06-22 10:39:04 -0700628 if (exclusive && mConnectionPool == null) {
Vasu Nori6c354da2010-04-26 23:33:39 -0700629 execSQL("BEGIN EXCLUSIVE;");
630 } else {
631 execSQL("BEGIN IMMEDIATE;");
632 }
Fred Quintanac4516a72009-09-03 12:14:06 -0700633 mTransactionListener = transactionListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 mTransactionIsSuccessful = true;
635 mInnerTransactionIsSuccessful = false;
Fred Quintanac4516a72009-09-03 12:14:06 -0700636 if (transactionListener != null) {
637 try {
638 transactionListener.onBegin();
639 } catch (RuntimeException e) {
640 execSQL("ROLLBACK;");
641 throw e;
642 }
643 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644 ok = true;
645 } finally {
646 if (!ok) {
647 // beginTransaction is called before the try block so we must release the lock in
648 // the case of failure.
649 unlockForced();
650 }
651 }
652 }
653
654 /**
655 * End a transaction. See beginTransaction for notes about how to use this and when transactions
656 * are committed and rolled back.
657 */
658 public void endTransaction() {
Vasu Noriccd95442010-05-28 17:04:16 -0700659 verifyLockOwner();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800660 try {
661 if (mInnerTransactionIsSuccessful) {
662 mInnerTransactionIsSuccessful = false;
663 } else {
664 mTransactionIsSuccessful = false;
665 }
666 if (mLock.getHoldCount() != 1) {
667 return;
668 }
Fred Quintanac4516a72009-09-03 12:14:06 -0700669 RuntimeException savedException = null;
670 if (mTransactionListener != null) {
671 try {
672 if (mTransactionIsSuccessful) {
673 mTransactionListener.onCommit();
674 } else {
675 mTransactionListener.onRollback();
676 }
677 } catch (RuntimeException e) {
678 savedException = e;
679 mTransactionIsSuccessful = false;
680 }
681 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 if (mTransactionIsSuccessful) {
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -0800683 execSQL(COMMIT_SQL);
Vasu Nori6c354da2010-04-26 23:33:39 -0700684 // if write-ahead logging is used, we have to take care of checkpoint.
685 // TODO: should applications be given the flexibility of choosing when to
686 // trigger checkpoint?
687 // for now, do checkpoint after every COMMIT because that is the fastest
688 // way to guarantee that readers will see latest data.
689 // but this is the slowest way to run sqlite with in write-ahead logging mode.
690 if (this.mConnectionPool != null) {
691 execSQL("PRAGMA wal_checkpoint;");
692 if (SQLiteDebug.DEBUG_SQL_STATEMENTS) {
693 Log.i(TAG, "PRAGMA wal_Checkpoint done");
694 }
695 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696 } else {
697 try {
698 execSQL("ROLLBACK;");
Fred Quintanac4516a72009-09-03 12:14:06 -0700699 if (savedException != null) {
700 throw savedException;
701 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800702 } catch (SQLException e) {
703 if (Config.LOGD) {
704 Log.d(TAG, "exception during rollback, maybe the DB previously "
705 + "performed an auto-rollback");
706 }
707 }
708 }
709 } finally {
Fred Quintanac4516a72009-09-03 12:14:06 -0700710 mTransactionListener = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 unlockForced();
712 if (Config.LOGV) {
713 Log.v(TAG, "unlocked " + Thread.currentThread()
714 + ", holdCount is " + mLock.getHoldCount());
715 }
716 }
717 }
718
719 /**
720 * Marks the current transaction as successful. Do not do any more database work between
721 * calling this and calling endTransaction. Do as little non-database work as possible in that
722 * situation too. If any errors are encountered between this and endTransaction the transaction
723 * will still be committed.
724 *
725 * @throws IllegalStateException if the current thread is not in a transaction or the
726 * transaction is already marked as successful.
727 */
728 public void setTransactionSuccessful() {
Vasu Noriccd95442010-05-28 17:04:16 -0700729 verifyDbIsOpen();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800730 if (!mLock.isHeldByCurrentThread()) {
731 throw new IllegalStateException("no transaction pending");
732 }
733 if (mInnerTransactionIsSuccessful) {
734 throw new IllegalStateException(
735 "setTransactionSuccessful may only be called once per call to beginTransaction");
736 }
737 mInnerTransactionIsSuccessful = true;
738 }
739
740 /**
741 * return true if there is a transaction pending
742 */
743 public boolean inTransaction() {
Vasu Norice38b982010-07-22 13:57:13 -0700744 return mLock.getHoldCount() > 0 || mTransactionUsingExecSql;
745 }
746
747 /* package */ synchronized void setTransactionUsingExecSqlFlag() {
748 if (Log.isLoggable(TAG, Log.DEBUG)) {
749 Log.i(TAG, "found execSQL('begin transaction')");
750 }
751 mTransactionUsingExecSql = true;
752 }
753
754 /* package */ synchronized void resetTransactionUsingExecSqlFlag() {
755 if (Log.isLoggable(TAG, Log.DEBUG)) {
756 if (mTransactionUsingExecSql) {
757 Log.i(TAG, "found execSQL('commit or end or rollback')");
758 }
759 }
760 mTransactionUsingExecSql = false;
761 }
762
763 /**
764 * Returns true if the caller is considered part of the current transaction, if any.
765 * <p>
766 * Caller is part of the current transaction if either of the following is true
767 * <ol>
768 * <li>If transaction is started by calling beginTransaction() methods AND if the caller is
769 * in the same thread as the thread that started the transaction.
770 * </li>
771 * <li>If the transaction is started by calling {@link #execSQL(String)} like this:
772 * execSQL("BEGIN transaction"). In this case, every thread in the process is considered
773 * part of the current transaction.</li>
774 * </ol>
775 *
776 * @return true if the caller is considered part of the current transaction, if any.
777 */
778 /* package */ synchronized boolean amIInTransaction() {
779 // always do this test on the main database connection - NOT on pooled database connection
780 // since transactions always occur on the main database connections only.
781 SQLiteDatabase db = (isPooledConnection()) ? mParentConnObj : this;
782 boolean b = (!db.inTransaction()) ? false :
783 db.mTransactionUsingExecSql || db.mLock.isHeldByCurrentThread();
784 if (Log.isLoggable(TAG, Log.DEBUG)) {
785 Log.i(TAG, "amIinTransaction: " + b);
786 }
787 return b;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 }
789
790 /**
791 * Checks if the database lock is held by this thread.
792 *
793 * @return true, if this thread is holding the database lock.
794 */
795 public boolean isDbLockedByCurrentThread() {
796 return mLock.isHeldByCurrentThread();
797 }
798
799 /**
800 * Checks if the database is locked by another thread. This is
801 * just an estimate, since this status can change at any time,
802 * including after the call is made but before the result has
803 * been acted upon.
804 *
805 * @return true, if the database is locked by another thread
806 */
807 public boolean isDbLockedByOtherThreads() {
808 return !mLock.isHeldByCurrentThread() && mLock.isLocked();
809 }
810
811 /**
812 * Temporarily end the transaction to let other threads run. The transaction is assumed to be
813 * successful so far. Do not call setTransactionSuccessful before calling this. When this
814 * returns a new transaction will have been created but not marked as successful.
815 * @return true if the transaction was yielded
816 * @deprecated if the db is locked more than once (becuase of nested transactions) then the lock
817 * will not be yielded. Use yieldIfContendedSafely instead.
818 */
Dianne Hackborn4a51c202009-08-21 15:14:02 -0700819 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820 public boolean yieldIfContended() {
Fred Quintana5c7aede2009-08-27 21:41:27 -0700821 return yieldIfContendedHelper(false /* do not check yielding */,
822 -1 /* sleepAfterYieldDelay */);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800823 }
824
825 /**
826 * Temporarily end the transaction to let other threads run. The transaction is assumed to be
827 * successful so far. Do not call setTransactionSuccessful before calling this. When this
828 * returns a new transaction will have been created but not marked as successful. This assumes
829 * that there are no nested transactions (beginTransaction has only been called once) and will
Fred Quintana5c7aede2009-08-27 21:41:27 -0700830 * throw an exception if that is not the case.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831 * @return true if the transaction was yielded
832 */
833 public boolean yieldIfContendedSafely() {
Fred Quintana5c7aede2009-08-27 21:41:27 -0700834 return yieldIfContendedHelper(true /* check yielding */, -1 /* sleepAfterYieldDelay*/);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 }
836
Fred Quintana5c7aede2009-08-27 21:41:27 -0700837 /**
838 * Temporarily end the transaction to let other threads run. The transaction is assumed to be
839 * successful so far. Do not call setTransactionSuccessful before calling this. When this
840 * returns a new transaction will have been created but not marked as successful. This assumes
841 * that there are no nested transactions (beginTransaction has only been called once) and will
842 * throw an exception if that is not the case.
843 * @param sleepAfterYieldDelay if > 0, sleep this long before starting a new transaction if
844 * the lock was actually yielded. This will allow other background threads to make some
845 * more progress than they would if we started the transaction immediately.
846 * @return true if the transaction was yielded
847 */
848 public boolean yieldIfContendedSafely(long sleepAfterYieldDelay) {
849 return yieldIfContendedHelper(true /* check yielding */, sleepAfterYieldDelay);
850 }
851
852 private boolean yieldIfContendedHelper(boolean checkFullyYielded, long sleepAfterYieldDelay) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 if (mLock.getQueueLength() == 0) {
854 // Reset the lock acquire time since we know that the thread was willing to yield
855 // the lock at this time.
856 mLockAcquiredWallTime = SystemClock.elapsedRealtime();
857 mLockAcquiredThreadTime = Debug.threadCpuTimeNanos();
858 return false;
859 }
860 setTransactionSuccessful();
Fred Quintanac4516a72009-09-03 12:14:06 -0700861 SQLiteTransactionListener transactionListener = mTransactionListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800862 endTransaction();
863 if (checkFullyYielded) {
864 if (this.isDbLockedByCurrentThread()) {
865 throw new IllegalStateException(
866 "Db locked more than once. yielfIfContended cannot yield");
867 }
868 }
Fred Quintana5c7aede2009-08-27 21:41:27 -0700869 if (sleepAfterYieldDelay > 0) {
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -0700870 // Sleep for up to sleepAfterYieldDelay milliseconds, waking up periodically to
871 // check if anyone is using the database. If the database is not contended,
872 // retake the lock and return.
873 long remainingDelay = sleepAfterYieldDelay;
874 while (remainingDelay > 0) {
875 try {
876 Thread.sleep(remainingDelay < SLEEP_AFTER_YIELD_QUANTUM ?
877 remainingDelay : SLEEP_AFTER_YIELD_QUANTUM);
878 } catch (InterruptedException e) {
879 Thread.interrupted();
880 }
881 remainingDelay -= SLEEP_AFTER_YIELD_QUANTUM;
882 if (mLock.getQueueLength() == 0) {
883 break;
884 }
Fred Quintana5c7aede2009-08-27 21:41:27 -0700885 }
886 }
Fred Quintanac4516a72009-09-03 12:14:06 -0700887 beginTransactionWithListener(transactionListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 return true;
889 }
890
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800891 /**
Vasu Nori95675132010-07-21 16:24:40 -0700892 * @deprecated This method no longer serves any useful purpose and has been deprecated.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800893 */
Vasu Nori95675132010-07-21 16:24:40 -0700894 @Deprecated
895 public Map<String, String> getSyncedTables() {
896 return new HashMap<String, String>(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897 }
898
899 /**
900 * Used to allow returning sub-classes of {@link Cursor} when calling query.
901 */
902 public interface CursorFactory {
903 /**
904 * See
Vasu Noribfe1dc22010-08-25 16:29:02 -0700905 * {@link SQLiteCursor#SQLiteCursor(SQLiteCursorDriver, String, SQLiteQuery)}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906 */
907 public Cursor newCursor(SQLiteDatabase db,
908 SQLiteCursorDriver masterQuery, String editTable,
909 SQLiteQuery query);
910 }
911
912 /**
913 * Open the database according to the flags {@link #OPEN_READWRITE}
914 * {@link #OPEN_READONLY} {@link #CREATE_IF_NECESSARY} and/or {@link #NO_LOCALIZED_COLLATORS}.
915 *
916 * <p>Sets the locale of the database to the the system's current locale.
917 * Call {@link #setLocale} if you would like something else.</p>
918 *
919 * @param path to database file to open and/or create
920 * @param factory an optional factory class that is called to instantiate a
921 * cursor when query is called, or null for default
922 * @param flags to control database access mode
923 * @return the newly opened database
924 * @throws SQLiteException if the database cannot be opened
925 */
926 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags) {
Vasu Nori062fc7ce2010-03-31 16:13:05 -0700927 return openDatabase(path, factory, flags, new DefaultDatabaseErrorHandler());
928 }
929
930 /**
Vasu Nori74f170f2010-06-01 18:06:18 -0700931 * Open the database according to the flags {@link #OPEN_READWRITE}
932 * {@link #OPEN_READONLY} {@link #CREATE_IF_NECESSARY} and/or {@link #NO_LOCALIZED_COLLATORS}.
933 *
934 * <p>Sets the locale of the database to the the system's current locale.
935 * Call {@link #setLocale} if you would like something else.</p>
936 *
937 * <p>Accepts input param: a concrete instance of {@link DatabaseErrorHandler} to be
938 * used to handle corruption when sqlite reports database corruption.</p>
939 *
940 * @param path to database file to open and/or create
941 * @param factory an optional factory class that is called to instantiate a
942 * cursor when query is called, or null for default
943 * @param flags to control database access mode
944 * @param errorHandler the {@link DatabaseErrorHandler} obj to be used to handle corruption
945 * when sqlite reports database corruption
946 * @return the newly opened database
947 * @throws SQLiteException if the database cannot be opened
Vasu Nori062fc7ce2010-03-31 16:13:05 -0700948 */
949 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags,
950 DatabaseErrorHandler errorHandler) {
Vasu Nori6c354da2010-04-26 23:33:39 -0700951 SQLiteDatabase sqliteDatabase = openDatabase(path, factory, flags, errorHandler,
952 (short) 0 /* the main connection handle */);
Vasu Noria8c24902010-06-01 11:30:27 -0700953
954 // set sqlite pagesize to mBlockSize
955 if (sBlockSize == 0) {
956 // TODO: "/data" should be a static final String constant somewhere. it is hardcoded
957 // in several places right now.
958 sBlockSize = new StatFs("/data").getBlockSize();
959 }
960 sqliteDatabase.setPageSize(sBlockSize);
Vasu Nori57feb5d2010-06-22 10:39:04 -0700961 //STOPSHIP - uncomment the following line
962 //sqliteDatabase.setJournalMode(path, "TRUNCATE");
963 // STOPSHIP remove the following lines
Vasu Nori7b04c412010-07-20 10:31:21 -0700964 if (!path.equalsIgnoreCase(MEMORY_DB_PATH)) {
965 sqliteDatabase.enableWriteAheadLogging();
966 }
967 // END STOPSHIP
Vasu Norif9e2bd02010-06-04 16:49:51 -0700968
Vasu Noriccd95442010-05-28 17:04:16 -0700969 // add this database to the list of databases opened in this process
Vasu Nori0732f792010-07-29 17:24:12 -0700970 synchronized(mActiveDatabases) {
971 mActiveDatabases.add(new WeakReference<SQLiteDatabase>(sqliteDatabase));
972 }
Vasu Noric3849202010-03-09 10:47:25 -0800973 return sqliteDatabase;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974 }
975
Vasu Nori6c354da2010-04-26 23:33:39 -0700976 private static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags,
977 DatabaseErrorHandler errorHandler, short connectionNum) {
978 SQLiteDatabase db = new SQLiteDatabase(path, factory, flags, errorHandler, connectionNum);
Vasu Nori062fc7ce2010-03-31 16:13:05 -0700979 try {
Vasu Norice38b982010-07-22 13:57:13 -0700980 if (Log.isLoggable(TAG, Log.DEBUG)) {
981 Log.i(TAG, "opening the db : " + path);
982 }
Vasu Nori6c354da2010-04-26 23:33:39 -0700983 // Open the database.
984 db.dbopen(path, flags);
985 db.setLocale(Locale.getDefault());
986 if (SQLiteDebug.DEBUG_SQL_STATEMENTS) {
987 db.enableSqlTracing(path, connectionNum);
988 }
989 if (SQLiteDebug.DEBUG_SQL_TIME) {
990 db.enableSqlProfiling(path, connectionNum);
991 }
992 return db;
993 } catch (SQLiteDatabaseCorruptException e) {
994 db.mErrorHandler.onCorruption(db);
995 return SQLiteDatabase.openDatabase(path, factory, flags, errorHandler);
996 } catch (SQLiteException e) {
997 Log.e(TAG, "Failed to open the database. closing it.", e);
998 db.close();
Vasu Nori062fc7ce2010-03-31 16:13:05 -0700999 throw e;
1000 }
1001 }
1002
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001003 /**
1004 * Equivalent to openDatabase(file.getPath(), factory, CREATE_IF_NECESSARY).
1005 */
1006 public static SQLiteDatabase openOrCreateDatabase(File file, CursorFactory factory) {
1007 return openOrCreateDatabase(file.getPath(), factory);
1008 }
1009
1010 /**
1011 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY).
1012 */
1013 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory) {
1014 return openDatabase(path, factory, CREATE_IF_NECESSARY);
1015 }
1016
1017 /**
Vasu Nori6c354da2010-04-26 23:33:39 -07001018 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler).
Vasu Nori062fc7ce2010-03-31 16:13:05 -07001019 */
1020 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory,
1021 DatabaseErrorHandler errorHandler) {
1022 return openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler);
1023 }
1024
Vasu Noria98cb262010-06-22 13:16:35 -07001025 private void setJournalMode(final String dbPath, final String mode) {
1026 // journal mode can be set only for non-memory databases
1027 if (!dbPath.equalsIgnoreCase(MEMORY_DB_PATH)) {
1028 String s = DatabaseUtils.stringForQuery(this, "PRAGMA journal_mode=" + mode, null);
1029 if (!s.equalsIgnoreCase(mode)) {
1030 Log.e(TAG, "setting journal_mode to " + mode + " failed for db: " + dbPath +
1031 " (on pragma set journal_mode, sqlite returned:" + s);
1032 }
1033 }
1034 }
1035
Vasu Nori062fc7ce2010-03-31 16:13:05 -07001036 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001037 * Create a memory backed SQLite database. Its contents will be destroyed
1038 * when the database is closed.
1039 *
1040 * <p>Sets the locale of the database to the the system's current locale.
1041 * Call {@link #setLocale} if you would like something else.</p>
1042 *
1043 * @param factory an optional factory class that is called to instantiate a
1044 * cursor when query is called
1045 * @return a SQLiteDatabase object, or null if the database can't be created
1046 */
1047 public static SQLiteDatabase create(CursorFactory factory) {
1048 // This is a magic string with special meaning for SQLite.
Vasu Noria98cb262010-06-22 13:16:35 -07001049 return openDatabase(MEMORY_DB_PATH, factory, CREATE_IF_NECESSARY);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001050 }
1051
1052 /**
1053 * Close the database.
1054 */
1055 public void close() {
Vasu Norif3cf8a42010-03-23 11:41:44 -07001056 if (!isOpen()) {
1057 return; // already closed
1058 }
Vasu Norice38b982010-07-22 13:57:13 -07001059 if (Log.isLoggable(TAG, Log.DEBUG)) {
Vasu Nori75010102010-07-01 16:23:06 -07001060 Log.i(TAG, "closing db: " + mPath + " (connection # " + mConnectionNum);
1061 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001062 lock();
1063 try {
1064 closeClosable();
Vasu Norifea6f6d2010-05-21 15:36:06 -07001065 // finalize ALL statements queued up so far
1066 closePendingStatements();
Mike Lockwood9d9c1be2010-07-13 19:27:52 -04001067 releaseCustomFunctions();
Vasu Norif6373e92010-03-16 10:21:00 -07001068 // close this database instance - regardless of its reference count value
Vasu Nori422dad02010-09-03 16:03:08 -07001069 closeDatabase();
Vasu Nori6c354da2010-04-26 23:33:39 -07001070 if (mConnectionPool != null) {
Vasu Norice38b982010-07-22 13:57:13 -07001071 if (Log.isLoggable(TAG, Log.DEBUG)) {
1072 assert mConnectionPool != null;
1073 Log.i(TAG, mConnectionPool.toString());
1074 }
Vasu Nori6c354da2010-04-26 23:33:39 -07001075 mConnectionPool.close();
1076 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 } finally {
Vasu Nori422dad02010-09-03 16:03:08 -07001078 unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001079 }
1080 }
1081
1082 private void closeClosable() {
Vasu Noriccd95442010-05-28 17:04:16 -07001083 /* deallocate all compiled SQL statement objects from mCompiledQueries cache.
Vasu Norie495d1f2010-01-06 16:34:19 -08001084 * this should be done before de-referencing all {@link SQLiteClosable} objects
1085 * from this database object because calling
1086 * {@link SQLiteClosable#onAllReferencesReleasedFromContainer()} could cause the database
1087 * to be closed. sqlite doesn't let a database close if there are
1088 * any unfinalized statements - such as the compiled-sql objects in mCompiledQueries.
1089 */
Vasu Norib729dcc2010-09-14 11:35:49 -07001090 deallocCachedSqlStatements();
Vasu Norie495d1f2010-01-06 16:34:19 -08001091
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092 Iterator<Map.Entry<SQLiteClosable, Object>> iter = mPrograms.entrySet().iterator();
1093 while (iter.hasNext()) {
1094 Map.Entry<SQLiteClosable, Object> entry = iter.next();
1095 SQLiteClosable program = entry.getKey();
1096 if (program != null) {
1097 program.onAllReferencesReleasedFromContainer();
1098 }
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001099 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100 }
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001102 /**
Vasu Nori422dad02010-09-03 16:03:08 -07001103 * package level access for testing purposes
1104 */
1105 /* package */ void closeDatabase() throws SQLiteException {
1106 try {
1107 dbclose();
1108 } catch (SQLiteUnfinalizedObjectsException e) {
1109 String msg = e.getMessage();
1110 String[] tokens = msg.split(",", 2);
1111 int stmtId = Integer.parseInt(tokens[0]);
1112 // get extra info about this statement, if it is still to be released by closeClosable()
1113 Iterator<Map.Entry<SQLiteClosable, Object>> iter = mPrograms.entrySet().iterator();
1114 boolean found = false;
1115 while (iter.hasNext()) {
1116 Map.Entry<SQLiteClosable, Object> entry = iter.next();
1117 SQLiteClosable program = entry.getKey();
1118 if (program != null && program instanceof SQLiteProgram) {
1119 SQLiteCompiledSql compiledSql = ((SQLiteProgram)program).mCompiledSql;
1120 if (compiledSql.nStatement == stmtId) {
1121 msg = compiledSql.toString();
1122 found = true;
1123 }
1124 }
1125 }
1126 if (!found) {
1127 // the statement is already released by closeClosable(). is it waiting to be
1128 // finalized?
1129 if (mClosedStatementIds.contains(stmtId)) {
1130 Log.w(TAG, "this shouldn't happen. finalizing the statement now: ");
1131 closePendingStatements();
1132 // try to close the database again
1133 closeDatabase();
1134 }
1135 } else {
1136 // the statement is not yet closed. most probably programming error in the app.
1137 Log.w(TAG, "dbclose failed due to un-close()d SQL statements: " + msg);
1138 throw e;
1139 }
1140 }
1141 }
1142
1143 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001144 * Native call to close the database.
1145 */
1146 private native void dbclose();
1147
1148 /**
Mike Lockwood9d9c1be2010-07-13 19:27:52 -04001149 * A callback interface for a custom sqlite3 function.
1150 * This can be used to create a function that can be called from
1151 * sqlite3 database triggers.
1152 * @hide
1153 */
1154 public interface CustomFunction {
1155 public void callback(String[] args);
1156 }
1157
1158 /**
1159 * Registers a CustomFunction callback as a function that can be called from
1160 * sqlite3 database triggers.
1161 * @param name the name of the sqlite3 function
1162 * @param numArgs the number of arguments for the function
1163 * @param function callback to call when the function is executed
1164 * @hide
1165 */
1166 public void addCustomFunction(String name, int numArgs, CustomFunction function) {
1167 verifyDbIsOpen();
1168 synchronized (mCustomFunctions) {
1169 int ref = native_addCustomFunction(name, numArgs, function);
1170 if (ref != 0) {
1171 // save a reference to the function for cleanup later
1172 mCustomFunctions.add(new Integer(ref));
1173 } else {
1174 throw new SQLiteException("failed to add custom function " + name);
1175 }
1176 }
1177 }
1178
1179 private void releaseCustomFunctions() {
1180 synchronized (mCustomFunctions) {
1181 for (int i = 0; i < mCustomFunctions.size(); i++) {
1182 Integer function = mCustomFunctions.get(i);
1183 native_releaseCustomFunction(function.intValue());
1184 }
1185 mCustomFunctions.clear();
1186 }
1187 }
1188
1189 // list of CustomFunction references so we can clean up when the database closes
1190 private final ArrayList<Integer> mCustomFunctions =
1191 new ArrayList<Integer>();
1192
1193 private native int native_addCustomFunction(String name, int numArgs, CustomFunction function);
1194 private native void native_releaseCustomFunction(int function);
1195
1196 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001197 * Gets the database version.
1198 *
1199 * @return the database version
1200 */
1201 public int getVersion() {
Vasu Noriccd95442010-05-28 17:04:16 -07001202 return ((Long) DatabaseUtils.longForQuery(this, "PRAGMA user_version;", null)).intValue();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001203 }
1204
1205 /**
1206 * Sets the database version.
1207 *
1208 * @param version the new database version
1209 */
1210 public void setVersion(int version) {
1211 execSQL("PRAGMA user_version = " + version);
1212 }
1213
1214 /**
1215 * Returns the maximum size the database may grow to.
1216 *
1217 * @return the new maximum database size
1218 */
1219 public long getMaximumSize() {
Vasu Noriccd95442010-05-28 17:04:16 -07001220 long pageCount = DatabaseUtils.longForQuery(this, "PRAGMA max_page_count;", null);
1221 return pageCount * getPageSize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001222 }
1223
1224 /**
1225 * Sets the maximum size the database will grow to. The maximum size cannot
1226 * be set below the current size.
1227 *
1228 * @param numBytes the maximum database size, in bytes
1229 * @return the new maximum database size
1230 */
1231 public long setMaximumSize(long numBytes) {
Vasu Noriccd95442010-05-28 17:04:16 -07001232 long pageSize = getPageSize();
1233 long numPages = numBytes / pageSize;
1234 // If numBytes isn't a multiple of pageSize, bump up a page
1235 if ((numBytes % pageSize) != 0) {
1236 numPages++;
Vasu Norif3cf8a42010-03-23 11:41:44 -07001237 }
Vasu Noriccd95442010-05-28 17:04:16 -07001238 long newPageCount = DatabaseUtils.longForQuery(this, "PRAGMA max_page_count = " + numPages,
1239 null);
1240 return newPageCount * pageSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 }
1242
1243 /**
1244 * Returns the current database page size, in bytes.
1245 *
1246 * @return the database page size, in bytes
1247 */
1248 public long getPageSize() {
Vasu Noriccd95442010-05-28 17:04:16 -07001249 return DatabaseUtils.longForQuery(this, "PRAGMA page_size;", null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001250 }
1251
1252 /**
1253 * Sets the database page size. The page size must be a power of two. This
1254 * method does not work if any data has been written to the database file,
1255 * and must be called right after the database has been created.
1256 *
1257 * @param numBytes the database page size, in bytes
1258 */
1259 public void setPageSize(long numBytes) {
1260 execSQL("PRAGMA page_size = " + numBytes);
1261 }
1262
1263 /**
1264 * Mark this table as syncable. When an update occurs in this table the
1265 * _sync_dirty field will be set to ensure proper syncing operation.
1266 *
1267 * @param table the table to mark as syncable
1268 * @param deletedTable The deleted table that corresponds to the
1269 * syncable table
Vasu Nori95675132010-07-21 16:24:40 -07001270 * @deprecated This method no longer serves any useful purpose and has been deprecated.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001271 */
Vasu Nori95675132010-07-21 16:24:40 -07001272 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273 public void markTableSyncable(String table, String deletedTable) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001274 }
1275
1276 /**
1277 * Mark this table as syncable, with the _sync_dirty residing in another
1278 * table. When an update occurs in this table the _sync_dirty field of the
1279 * row in updateTable with the _id in foreignKey will be set to
1280 * ensure proper syncing operation.
1281 *
1282 * @param table an update on this table will trigger a sync time removal
1283 * @param foreignKey this is the column in table whose value is an _id in
1284 * updateTable
1285 * @param updateTable this is the table that will have its _sync_dirty
Vasu Nori95675132010-07-21 16:24:40 -07001286 * @deprecated This method no longer serves any useful purpose and has been deprecated.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 */
Vasu Nori95675132010-07-21 16:24:40 -07001288 @Deprecated
1289 public void markTableSyncable(String table, String foreignKey, String updateTable) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001290 }
1291
1292 /**
1293 * Finds the name of the first table, which is editable.
1294 *
1295 * @param tables a list of tables
1296 * @return the first table listed
1297 */
1298 public static String findEditTable(String tables) {
1299 if (!TextUtils.isEmpty(tables)) {
1300 // find the first word terminated by either a space or a comma
1301 int spacepos = tables.indexOf(' ');
1302 int commapos = tables.indexOf(',');
1303
1304 if (spacepos > 0 && (spacepos < commapos || commapos < 0)) {
1305 return tables.substring(0, spacepos);
1306 } else if (commapos > 0 && (commapos < spacepos || spacepos < 0) ) {
1307 return tables.substring(0, commapos);
1308 }
1309 return tables;
1310 } else {
1311 throw new IllegalStateException("Invalid tables");
1312 }
1313 }
1314
1315 /**
1316 * Compiles an SQL statement into a reusable pre-compiled statement object.
1317 * The parameters are identical to {@link #execSQL(String)}. You may put ?s in the
1318 * statement and fill in those values with {@link SQLiteProgram#bindString}
1319 * and {@link SQLiteProgram#bindLong} each time you want to run the
1320 * statement. Statements may not return result sets larger than 1x1.
Vasu Nori2827d6d2010-07-04 00:26:18 -07001321 *<p>
1322 * No two threads should be using the same {@link SQLiteStatement} at the same time.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001323 *
1324 * @param sql The raw SQL statement, may contain ? for unknown values to be
1325 * bound later.
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001326 * @return A pre-compiled {@link SQLiteStatement} object. Note that
1327 * {@link SQLiteStatement}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001328 */
1329 public SQLiteStatement compileStatement(String sql) throws SQLException {
Vasu Noriccd95442010-05-28 17:04:16 -07001330 verifyDbIsOpen();
Vasu Nori0732f792010-07-29 17:24:12 -07001331 return new SQLiteStatement(this, sql, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001332 }
1333
1334 /**
1335 * Query the given URL, returning a {@link Cursor} over the result set.
1336 *
1337 * @param distinct true if you want each row to be unique, false otherwise.
1338 * @param table The table name to compile the query against.
1339 * @param columns A list of which columns to return. Passing null will
1340 * return all columns, which is discouraged to prevent reading
1341 * data from storage that isn't going to be used.
1342 * @param selection A filter declaring which rows to return, formatted as an
1343 * SQL WHERE clause (excluding the WHERE itself). Passing null
1344 * will return all rows for the given table.
1345 * @param selectionArgs You may include ?s in selection, which will be
1346 * replaced by the values from selectionArgs, in order that they
1347 * appear in the selection. The values will be bound as Strings.
1348 * @param groupBy A filter declaring how to group rows, formatted as an SQL
1349 * GROUP BY clause (excluding the GROUP BY itself). Passing null
1350 * will cause the rows to not be grouped.
1351 * @param having A filter declare which row groups to include in the cursor,
1352 * if row grouping is being used, formatted as an SQL HAVING
1353 * clause (excluding the HAVING itself). Passing null will cause
1354 * all row groups to be included, and is required when row
1355 * grouping is not being used.
1356 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1357 * (excluding the ORDER BY itself). Passing null will use the
1358 * default sort order, which may be unordered.
1359 * @param limit Limits the number of rows returned by the query,
1360 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001361 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1362 * {@link Cursor}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363 * @see Cursor
1364 */
1365 public Cursor query(boolean distinct, String table, String[] columns,
1366 String selection, String[] selectionArgs, String groupBy,
1367 String having, String orderBy, String limit) {
1368 return queryWithFactory(null, distinct, table, columns, selection, selectionArgs,
1369 groupBy, having, orderBy, limit);
1370 }
1371
1372 /**
1373 * Query the given URL, returning a {@link Cursor} over the result set.
1374 *
1375 * @param cursorFactory the cursor factory to use, or null for the default factory
1376 * @param distinct true if you want each row to be unique, false otherwise.
1377 * @param table The table name to compile the query against.
1378 * @param columns A list of which columns to return. Passing null will
1379 * return all columns, which is discouraged to prevent reading
1380 * data from storage that isn't going to be used.
1381 * @param selection A filter declaring which rows to return, formatted as an
1382 * SQL WHERE clause (excluding the WHERE itself). Passing null
1383 * will return all rows for the given table.
1384 * @param selectionArgs You may include ?s in selection, which will be
1385 * replaced by the values from selectionArgs, in order that they
1386 * appear in the selection. The values will be bound as Strings.
1387 * @param groupBy A filter declaring how to group rows, formatted as an SQL
1388 * GROUP BY clause (excluding the GROUP BY itself). Passing null
1389 * will cause the rows to not be grouped.
1390 * @param having A filter declare which row groups to include in the cursor,
1391 * if row grouping is being used, formatted as an SQL HAVING
1392 * clause (excluding the HAVING itself). Passing null will cause
1393 * all row groups to be included, and is required when row
1394 * grouping is not being used.
1395 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1396 * (excluding the ORDER BY itself). Passing null will use the
1397 * default sort order, which may be unordered.
1398 * @param limit Limits the number of rows returned by the query,
1399 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001400 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1401 * {@link Cursor}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 * @see Cursor
1403 */
1404 public Cursor queryWithFactory(CursorFactory cursorFactory,
1405 boolean distinct, String table, String[] columns,
1406 String selection, String[] selectionArgs, String groupBy,
1407 String having, String orderBy, String limit) {
Vasu Noriccd95442010-05-28 17:04:16 -07001408 verifyDbIsOpen();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001409 String sql = SQLiteQueryBuilder.buildQueryString(
1410 distinct, table, columns, selection, groupBy, having, orderBy, limit);
1411
1412 return rawQueryWithFactory(
1413 cursorFactory, sql, selectionArgs, findEditTable(table));
1414 }
1415
1416 /**
1417 * Query the given table, returning a {@link Cursor} over the result set.
1418 *
1419 * @param table The table name to compile the query against.
1420 * @param columns A list of which columns to return. Passing null will
1421 * return all columns, which is discouraged to prevent reading
1422 * data from storage that isn't going to be used.
1423 * @param selection A filter declaring which rows to return, formatted as an
1424 * SQL WHERE clause (excluding the WHERE itself). Passing null
1425 * will return all rows for the given table.
1426 * @param selectionArgs You may include ?s in selection, which will be
1427 * replaced by the values from selectionArgs, in order that they
1428 * appear in the selection. The values will be bound as Strings.
1429 * @param groupBy A filter declaring how to group rows, formatted as an SQL
1430 * GROUP BY clause (excluding the GROUP BY itself). Passing null
1431 * will cause the rows to not be grouped.
1432 * @param having A filter declare which row groups to include in the cursor,
1433 * if row grouping is being used, formatted as an SQL HAVING
1434 * clause (excluding the HAVING itself). Passing null will cause
1435 * all row groups to be included, and is required when row
1436 * grouping is not being used.
1437 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1438 * (excluding the ORDER BY itself). Passing null will use the
1439 * default sort order, which may be unordered.
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001440 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1441 * {@link Cursor}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001442 * @see Cursor
1443 */
1444 public Cursor query(String table, String[] columns, String selection,
1445 String[] selectionArgs, String groupBy, String having,
1446 String orderBy) {
1447
1448 return query(false, table, columns, selection, selectionArgs, groupBy,
1449 having, orderBy, null /* limit */);
1450 }
1451
1452 /**
1453 * Query the given table, returning a {@link Cursor} over the result set.
1454 *
1455 * @param table The table name to compile the query against.
1456 * @param columns A list of which columns to return. Passing null will
1457 * return all columns, which is discouraged to prevent reading
1458 * data from storage that isn't going to be used.
1459 * @param selection A filter declaring which rows to return, formatted as an
1460 * SQL WHERE clause (excluding the WHERE itself). Passing null
1461 * will return all rows for the given table.
1462 * @param selectionArgs You may include ?s in selection, which will be
1463 * replaced by the values from selectionArgs, in order that they
1464 * appear in the selection. The values will be bound as Strings.
1465 * @param groupBy A filter declaring how to group rows, formatted as an SQL
1466 * GROUP BY clause (excluding the GROUP BY itself). Passing null
1467 * will cause the rows to not be grouped.
1468 * @param having A filter declare which row groups to include in the cursor,
1469 * if row grouping is being used, formatted as an SQL HAVING
1470 * clause (excluding the HAVING itself). Passing null will cause
1471 * all row groups to be included, and is required when row
1472 * grouping is not being used.
1473 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1474 * (excluding the ORDER BY itself). Passing null will use the
1475 * default sort order, which may be unordered.
1476 * @param limit Limits the number of rows returned by the query,
1477 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001478 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1479 * {@link Cursor}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001480 * @see Cursor
1481 */
1482 public Cursor query(String table, String[] columns, String selection,
1483 String[] selectionArgs, String groupBy, String having,
1484 String orderBy, String limit) {
1485
1486 return query(false, table, columns, selection, selectionArgs, groupBy,
1487 having, orderBy, limit);
1488 }
1489
1490 /**
1491 * Runs the provided SQL and returns a {@link Cursor} over the result set.
1492 *
1493 * @param sql the SQL query. The SQL string must not be ; terminated
1494 * @param selectionArgs You may include ?s in where clause in the query,
1495 * which will be replaced by the values from selectionArgs. The
1496 * values will be bound as Strings.
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001497 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1498 * {@link Cursor}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001499 */
1500 public Cursor rawQuery(String sql, String[] selectionArgs) {
1501 return rawQueryWithFactory(null, sql, selectionArgs, null);
1502 }
1503
1504 /**
1505 * Runs the provided SQL and returns a cursor over the result set.
1506 *
1507 * @param cursorFactory the cursor factory to use, or null for the default factory
1508 * @param sql the SQL query. The SQL string must not be ; terminated
1509 * @param selectionArgs You may include ?s in where clause in the query,
1510 * which will be replaced by the values from selectionArgs. The
1511 * values will be bound as Strings.
1512 * @param editTable the name of the first table, which is editable
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001513 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1514 * {@link Cursor}s are not synchronized, see the documentation for more details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 */
1516 public Cursor rawQueryWithFactory(
1517 CursorFactory cursorFactory, String sql, String[] selectionArgs,
1518 String editTable) {
Vasu Noriccd95442010-05-28 17:04:16 -07001519 verifyDbIsOpen();
Brad Fitzpatrickcfda9f32010-06-03 12:52:54 -07001520 BlockGuard.getThreadPolicy().onReadFromDisk();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001521 long timeStart = 0;
1522
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001523 if (Config.LOGV || mSlowQueryThreshold != -1) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001524 timeStart = System.currentTimeMillis();
1525 }
1526
Vasu Nori6c354da2010-04-26 23:33:39 -07001527 SQLiteDatabase db = getDbConnection(sql);
1528 SQLiteCursorDriver driver = new SQLiteDirectCursorDriver(db, sql, editTable);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001529
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001530 Cursor cursor = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001531 try {
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001532 cursor = driver.query(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001533 cursorFactory != null ? cursorFactory : mFactory,
1534 selectionArgs);
1535 } finally {
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001536 if (Config.LOGV || mSlowQueryThreshold != -1) {
1537
Vasu Nori020e5342010-04-28 14:22:38 -07001538 // Force query execution
1539 int count = -1;
1540 if (cursor != null) {
1541 count = cursor.getCount();
1542 }
1543
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001544 long duration = System.currentTimeMillis() - timeStart;
1545
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001546 if (Config.LOGV || duration >= mSlowQueryThreshold) {
1547 Log.v(SQLiteCursor.TAG,
1548 "query (" + duration + " ms): " + driver.toString() + ", args are "
1549 + (selectionArgs != null
1550 ? TextUtils.join(",", selectionArgs)
Vasu Nori020e5342010-04-28 14:22:38 -07001551 : "<null>") + ", count is " + count);
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001552 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001553 }
Vasu Nori6c354da2010-04-26 23:33:39 -07001554 releaseDbConnection(db);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001555 }
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001556 return cursor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 }
1558
1559 /**
1560 * Runs the provided SQL and returns a cursor over the result set.
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001561 * The cursor will read an initial set of rows and the return to the caller.
1562 * It will continue to read in batches and send data changed notifications
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001563 * when the later batches are ready.
1564 * @param sql the SQL query. The SQL string must not be ; terminated
1565 * @param selectionArgs You may include ?s in where clause in the query,
1566 * which will be replaced by the values from selectionArgs. The
1567 * values will be bound as Strings.
1568 * @param initialRead set the initial count of items to read from the cursor
1569 * @param maxRead set the count of items to read on each iteration after the first
Jeff Hamiltonf3ca9a52010-05-12 15:04:33 -07001570 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
1571 * {@link Cursor}s are not synchronized, see the documentation for more details.
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001572 *
Andy Stadlerf8a7cea2009-04-10 16:24:47 -07001573 * This work is incomplete and not fully tested or reviewed, so currently
1574 * hidden.
1575 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 */
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001577 public Cursor rawQuery(String sql, String[] selectionArgs,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001578 int initialRead, int maxRead) {
1579 SQLiteCursor c = (SQLiteCursor)rawQueryWithFactory(
1580 null, sql, selectionArgs, null);
1581 c.setLoadStyle(initialRead, maxRead);
1582 return c;
1583 }
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001584
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001585 /**
1586 * Convenience method for inserting a row into the database.
1587 *
1588 * @param table the table to insert the row into
1589 * @param nullColumnHack SQL doesn't allow inserting a completely empty row,
1590 * so if initialValues is empty this column will explicitly be
1591 * assigned a NULL value
1592 * @param values this map contains the initial column values for the
1593 * row. The keys should be the column names and the values the
1594 * column values
1595 * @return the row ID of the newly inserted row, or -1 if an error occurred
1596 */
1597 public long insert(String table, String nullColumnHack, ContentValues values) {
1598 try {
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001599 return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001600 } catch (SQLException e) {
1601 Log.e(TAG, "Error inserting " + values, e);
1602 return -1;
1603 }
1604 }
1605
1606 /**
1607 * Convenience method for inserting a row into the database.
1608 *
1609 * @param table the table to insert the row into
1610 * @param nullColumnHack SQL doesn't allow inserting a completely empty row,
1611 * so if initialValues is empty this column will explicitly be
1612 * assigned a NULL value
1613 * @param values this map contains the initial column values for the
1614 * row. The keys should be the column names and the values the
1615 * column values
1616 * @throws SQLException
1617 * @return the row ID of the newly inserted row, or -1 if an error occurred
1618 */
1619 public long insertOrThrow(String table, String nullColumnHack, ContentValues values)
1620 throws SQLException {
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001621 return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001622 }
1623
1624 /**
1625 * Convenience method for replacing a row in the database.
1626 *
1627 * @param table the table in which to replace the row
1628 * @param nullColumnHack SQL doesn't allow inserting a completely empty row,
1629 * so if initialValues is empty this row will explicitly be
1630 * assigned a NULL value
1631 * @param initialValues this map contains the initial column values for
1632 * the row. The key
1633 * @return the row ID of the newly inserted row, or -1 if an error occurred
1634 */
1635 public long replace(String table, String nullColumnHack, ContentValues initialValues) {
1636 try {
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001637 return insertWithOnConflict(table, nullColumnHack, initialValues,
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001638 CONFLICT_REPLACE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001639 } catch (SQLException e) {
1640 Log.e(TAG, "Error inserting " + initialValues, e);
1641 return -1;
1642 }
1643 }
1644
1645 /**
1646 * Convenience method for replacing a row in the database.
1647 *
1648 * @param table the table in which to replace the row
1649 * @param nullColumnHack SQL doesn't allow inserting a completely empty row,
1650 * so if initialValues is empty this row will explicitly be
1651 * assigned a NULL value
1652 * @param initialValues this map contains the initial column values for
1653 * the row. The key
1654 * @throws SQLException
1655 * @return the row ID of the newly inserted row, or -1 if an error occurred
1656 */
1657 public long replaceOrThrow(String table, String nullColumnHack,
1658 ContentValues initialValues) throws SQLException {
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001659 return insertWithOnConflict(table, nullColumnHack, initialValues,
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001660 CONFLICT_REPLACE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001661 }
1662
1663 /**
1664 * General method for inserting a row into the database.
1665 *
1666 * @param table the table to insert the row into
1667 * @param nullColumnHack SQL doesn't allow inserting a completely empty row,
1668 * so if initialValues is empty this column will explicitly be
1669 * assigned a NULL value
1670 * @param initialValues this map contains the initial column values for the
1671 * row. The keys should be the column names and the values the
1672 * column values
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001673 * @param conflictAlgorithm for insert conflict resolver
Vasu Nori6eb7c452010-01-27 14:31:24 -08001674 * @return the row ID of the newly inserted row
1675 * OR the primary key of the existing row if the input param 'conflictAlgorithm' =
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001676 * {@link #CONFLICT_IGNORE}
Vasu Nori6eb7c452010-01-27 14:31:24 -08001677 * OR -1 if any error
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001678 */
1679 public long insertWithOnConflict(String table, String nullColumnHack,
Vasu Nori6eb7c452010-01-27 14:31:24 -08001680 ContentValues initialValues, int conflictAlgorithm) {
Vasu Nori0732f792010-07-29 17:24:12 -07001681 StringBuilder sql = new StringBuilder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001682 sql.append("INSERT");
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001683 sql.append(CONFLICT_VALUES[conflictAlgorithm]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001684 sql.append(" INTO ");
1685 sql.append(table);
Vasu Nori0732f792010-07-29 17:24:12 -07001686 sql.append('(');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001687
Vasu Nori0732f792010-07-29 17:24:12 -07001688 Object[] bindArgs = null;
1689 int size = (initialValues != null && initialValues.size() > 0) ? initialValues.size() : 0;
1690 if (size > 0) {
1691 bindArgs = new Object[size];
1692 int i = 0;
1693 for (String colName : initialValues.keySet()) {
1694 sql.append((i > 0) ? "," : "");
1695 sql.append(colName);
1696 bindArgs[i++] = initialValues.get(colName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001697 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001698 sql.append(')');
Vasu Nori0732f792010-07-29 17:24:12 -07001699 sql.append(" VALUES (");
1700 for (i = 0; i < size; i++) {
1701 sql.append((i > 0) ? ",?" : "?");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001702 }
Vasu Nori0732f792010-07-29 17:24:12 -07001703 } else {
1704 sql.append(nullColumnHack + ") VALUES (NULL");
1705 }
1706 sql.append(')');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001707
Vasu Nori0732f792010-07-29 17:24:12 -07001708 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs);
1709 try {
Vasu Norifb16cbd2010-07-25 16:38:48 -07001710 return statement.executeInsert();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001711 } catch (SQLiteDatabaseCorruptException e) {
1712 onCorruption();
1713 throw e;
1714 } finally {
Vasu Nori0732f792010-07-29 17:24:12 -07001715 statement.close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001716 }
1717 }
1718
1719 /**
1720 * Convenience method for deleting rows in the database.
1721 *
1722 * @param table the table to delete from
1723 * @param whereClause the optional WHERE clause to apply when deleting.
1724 * Passing null will delete all rows.
1725 * @return the number of rows affected if a whereClause is passed in, 0
1726 * otherwise. To remove all rows and get a count pass "1" as the
1727 * whereClause.
1728 */
1729 public int delete(String table, String whereClause, String[] whereArgs) {
Vasu Nori0732f792010-07-29 17:24:12 -07001730 SQLiteStatement statement = new SQLiteStatement(this, "DELETE FROM " + table +
1731 (!TextUtils.isEmpty(whereClause) ? " WHERE " + whereClause : ""), whereArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001732 try {
Vasu Norifb16cbd2010-07-25 16:38:48 -07001733 return statement.executeUpdateDelete();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001734 } catch (SQLiteDatabaseCorruptException e) {
1735 onCorruption();
1736 throw e;
1737 } finally {
Vasu Nori0732f792010-07-29 17:24:12 -07001738 statement.close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001739 }
1740 }
1741
1742 /**
1743 * Convenience method for updating rows in the database.
1744 *
1745 * @param table the table to update in
1746 * @param values a map from column names to new column values. null is a
1747 * valid value that will be translated to NULL.
1748 * @param whereClause the optional WHERE clause to apply when updating.
1749 * Passing null will update all rows.
1750 * @return the number of rows affected
1751 */
1752 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001753 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001754 }
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001755
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001756 /**
1757 * Convenience method for updating rows in the database.
1758 *
1759 * @param table the table to update in
1760 * @param values a map from column names to new column values. null is a
1761 * valid value that will be translated to NULL.
1762 * @param whereClause the optional WHERE clause to apply when updating.
1763 * Passing null will update all rows.
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001764 * @param conflictAlgorithm for update conflict resolver
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001765 * @return the number of rows affected
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001766 */
Dmitri Plotnikov600bdd82009-09-01 12:12:20 -07001767 public int updateWithOnConflict(String table, ContentValues values,
Vasu Nori6eb7c452010-01-27 14:31:24 -08001768 String whereClause, String[] whereArgs, int conflictAlgorithm) {
Vasu Nori0732f792010-07-29 17:24:12 -07001769 int setValuesSize = values.size();
1770 if (values == null || setValuesSize == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001771 throw new IllegalArgumentException("Empty values");
1772 }
1773
1774 StringBuilder sql = new StringBuilder(120);
1775 sql.append("UPDATE ");
Vasu Nori8d45e4e2010-02-05 22:35:47 -08001776 sql.append(CONFLICT_VALUES[conflictAlgorithm]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001777 sql.append(table);
1778 sql.append(" SET ");
1779
Vasu Nori0732f792010-07-29 17:24:12 -07001780 // move all bind args to one array
1781 int bindArgsSize = (whereArgs == null) ? setValuesSize : (setValuesSize + whereArgs.length);
1782 Object[] bindArgs = new Object[bindArgsSize];
1783 int i = 0;
1784 for (String colName : values.keySet()) {
1785 sql.append((i > 0) ? "," : "");
1786 sql.append(colName);
1787 bindArgs[i++] = values.get(colName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001788 sql.append("=?");
Vasu Nori0732f792010-07-29 17:24:12 -07001789 }
1790 if (whereArgs != null) {
1791 for (i = setValuesSize; i < bindArgsSize; i++) {
1792 bindArgs[i] = whereArgs[i - setValuesSize];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001793 }
1794 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001795 if (!TextUtils.isEmpty(whereClause)) {
1796 sql.append(" WHERE ");
1797 sql.append(whereClause);
1798 }
1799
Vasu Nori0732f792010-07-29 17:24:12 -07001800 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001801 try {
Vasu Norifb16cbd2010-07-25 16:38:48 -07001802 return statement.executeUpdateDelete();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001803 } catch (SQLiteDatabaseCorruptException e) {
1804 onCorruption();
1805 throw e;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001806 } finally {
Vasu Nori0732f792010-07-29 17:24:12 -07001807 statement.close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001808 }
1809 }
1810
1811 /**
Vasu Noriccd95442010-05-28 17:04:16 -07001812 * Execute a single SQL statement that is NOT a SELECT
1813 * or any other SQL statement that returns data.
1814 * <p>
Vasu Norice38b982010-07-22 13:57:13 -07001815 * It has no means to return any data (such as the number of affected rows).
Vasu Noriccd95442010-05-28 17:04:16 -07001816 * Instead, you're encouraged to use {@link #insert(String, String, ContentValues)},
1817 * {@link #update(String, ContentValues, String, String[])}, et al, when possible.
1818 * </p>
Vasu Nori9bf225e2010-07-07 16:38:28 -07001819 * <p>
1820 * When using {@link #enableWriteAheadLogging()}, journal_mode is
1821 * automatically managed by this class. So, do not set journal_mode
1822 * using "PRAGMA journal_mode'<value>" statement if your app is using
1823 * {@link #enableWriteAheadLogging()}
1824 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001825 *
Vasu Noriccd95442010-05-28 17:04:16 -07001826 * @param sql the SQL statement to be executed. Multiple statements separated by semicolons are
1827 * not supported.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001828 * @throws SQLException If the SQL string is invalid for some reason
1829 */
1830 public void execSQL(String sql) throws SQLException {
Vasu Norice38b982010-07-22 13:57:13 -07001831 int stmtType = DatabaseUtils.getSqlStatementType(sql);
1832 if (stmtType == DatabaseUtils.STATEMENT_ATTACH) {
Vasu Nori8d111032010-06-22 18:34:21 -07001833 disableWriteAheadLogging();
1834 }
Vasu Noric8e1f232010-04-13 15:05:09 -07001835 long timeStart = SystemClock.uptimeMillis();
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07001836 logTimeStat(mLastSqlStatement, timeStart, GET_LOCK_LOG_PREFIX);
Vasu Norice38b982010-07-22 13:57:13 -07001837 executeSql(sql, null);
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -08001838
1839 // Log commit statements along with the most recently executed
Vasu Norice38b982010-07-22 13:57:13 -07001840 // SQL statement for disambiguation.
1841 if (stmtType == DatabaseUtils.STATEMENT_COMMIT) {
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07001842 logTimeStat(mLastSqlStatement, timeStart, COMMIT_SQL);
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -08001843 } else {
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07001844 logTimeStat(sql, timeStart, null);
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -08001845 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001846 }
1847
1848 /**
Vasu Noriccd95442010-05-28 17:04:16 -07001849 * Execute a single SQL statement that is NOT a SELECT/INSERT/UPDATE/DELETE.
1850 * <p>
1851 * For INSERT statements, use any of the following instead.
1852 * <ul>
1853 * <li>{@link #insert(String, String, ContentValues)}</li>
1854 * <li>{@link #insertOrThrow(String, String, ContentValues)}</li>
1855 * <li>{@link #insertWithOnConflict(String, String, ContentValues, int)}</li>
1856 * </ul>
1857 * <p>
1858 * For UPDATE statements, use any of the following instead.
1859 * <ul>
1860 * <li>{@link #update(String, ContentValues, String, String[])}</li>
1861 * <li>{@link #updateWithOnConflict(String, ContentValues, String, String[], int)}</li>
1862 * </ul>
1863 * <p>
1864 * For DELETE statements, use any of the following instead.
1865 * <ul>
1866 * <li>{@link #delete(String, String, String[])}</li>
1867 * </ul>
1868 * <p>
1869 * For example, the following are good candidates for using this method:
1870 * <ul>
1871 * <li>ALTER TABLE</li>
1872 * <li>CREATE or DROP table / trigger / view / index / virtual table</li>
1873 * <li>REINDEX</li>
1874 * <li>RELEASE</li>
1875 * <li>SAVEPOINT</li>
1876 * <li>PRAGMA that returns no data</li>
1877 * </ul>
1878 * </p>
Vasu Nori9bf225e2010-07-07 16:38:28 -07001879 * <p>
1880 * When using {@link #enableWriteAheadLogging()}, journal_mode is
1881 * automatically managed by this class. So, do not set journal_mode
1882 * using "PRAGMA journal_mode'<value>" statement if your app is using
1883 * {@link #enableWriteAheadLogging()}
1884 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001885 *
Vasu Noriccd95442010-05-28 17:04:16 -07001886 * @param sql the SQL statement to be executed. Multiple statements separated by semicolons are
1887 * not supported.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001888 * @param bindArgs only byte[], String, Long and Double are supported in bindArgs.
1889 * @throws SQLException If the SQL string is invalid for some reason
1890 */
1891 public void execSQL(String sql, Object[] bindArgs) throws SQLException {
1892 if (bindArgs == null) {
1893 throw new IllegalArgumentException("Empty bindArgs");
1894 }
Vasu Norice38b982010-07-22 13:57:13 -07001895 executeSql(sql, bindArgs);
1896 }
1897
1898 private void executeSql(String sql, Object[] bindArgs) throws SQLException {
Brad Fitzpatrickd72f7182010-02-11 17:07:51 -08001899 long timeStart = SystemClock.uptimeMillis();
Vasu Nori0732f792010-07-29 17:24:12 -07001900 SQLiteStatement statement = new SQLiteStatement(this, sql, bindArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001901 try {
Vasu Nori0732f792010-07-29 17:24:12 -07001902 statement.executeUpdateDelete();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001903 } catch (SQLiteDatabaseCorruptException e) {
1904 onCorruption();
1905 throw e;
1906 } finally {
Vasu Nori0732f792010-07-29 17:24:12 -07001907 statement.close();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001908 }
Dan Egnor12311952009-11-23 14:47:45 -08001909 logTimeStat(sql, timeStart);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001910 }
1911
1912 @Override
Mike Lockwood9d9c1be2010-07-13 19:27:52 -04001913 protected void finalize() throws Throwable {
1914 try {
1915 if (isOpen()) {
1916 Log.e(TAG, "close() was never explicitly called on database '" +
1917 mPath + "' ", mStackTrace);
1918 closeClosable();
1919 onAllReferencesReleased();
1920 releaseCustomFunctions();
1921 }
1922 } finally {
1923 super.finalize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001924 }
1925 }
1926
1927 /**
Vasu Nori21343692010-06-03 16:01:39 -07001928 * Private constructor.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 *
1930 * @param path The full path to the database
1931 * @param factory The factory to use when creating cursors, may be NULL.
1932 * @param flags 0 or {@link #NO_LOCALIZED_COLLATORS}. If the database file already
1933 * exists, mFlags will be updated appropriately.
Vasu Nori21343692010-06-03 16:01:39 -07001934 * @param errorHandler The {@link DatabaseErrorHandler} to be used when sqlite reports database
1935 * corruption. may be NULL.
Vasu Nori6c354da2010-04-26 23:33:39 -07001936 * @param connectionNum 0 for main database connection handle. 1..N for pooled database
1937 * connection handles.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001938 */
Vasu Nori21343692010-06-03 16:01:39 -07001939 private SQLiteDatabase(String path, CursorFactory factory, int flags,
Vasu Nori6c354da2010-04-26 23:33:39 -07001940 DatabaseErrorHandler errorHandler, short connectionNum) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001941 if (path == null) {
1942 throw new IllegalArgumentException("path should not be null");
1943 }
1944 mFlags = flags;
1945 mPath = path;
Dmitri Plotnikov90142c92009-09-15 10:52:17 -07001946 mSlowQueryThreshold = SystemProperties.getInt(LOG_SLOW_QUERIES_PROPERTY, -1);
Vasu Nori08b448e2010-03-03 10:05:16 -08001947 mStackTrace = new DatabaseObjectNotClosedException().fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001948 mFactory = factory;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001949 mPrograms = new WeakHashMap<SQLiteClosable,Object>();
Vasu Nori21343692010-06-03 16:01:39 -07001950 // Set the DatabaseErrorHandler to be used when SQLite reports corruption.
1951 // If the caller sets errorHandler = null, then use default errorhandler.
1952 mErrorHandler = (errorHandler == null) ? new DefaultDatabaseErrorHandler() : errorHandler;
Vasu Nori6c354da2010-04-26 23:33:39 -07001953 mConnectionNum = connectionNum;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001954 }
1955
1956 /**
1957 * return whether the DB is opened as read only.
1958 * @return true if DB is opened as read only
1959 */
1960 public boolean isReadOnly() {
1961 return (mFlags & OPEN_READ_MASK) == OPEN_READONLY;
1962 }
1963
1964 /**
1965 * @return true if the DB is currently open (has not been closed)
1966 */
1967 public boolean isOpen() {
1968 return mNativeHandle != 0;
1969 }
1970
1971 public boolean needUpgrade(int newVersion) {
1972 return newVersion > getVersion();
1973 }
1974
1975 /**
1976 * Getter for the path to the database file.
1977 *
1978 * @return the path to our database file.
1979 */
1980 public final String getPath() {
1981 return mPath;
1982 }
1983
Brad Fitzpatrickd72f7182010-02-11 17:07:51 -08001984 /* package */ void logTimeStat(String sql, long beginMillis) {
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07001985 logTimeStat(sql, beginMillis, null);
1986 }
1987
1988 /* package */ void logTimeStat(String sql, long beginMillis, String prefix) {
Brad Fitzpatrickb28c7972010-02-12 12:49:41 -08001989 // Keep track of the last statement executed here, as this is
1990 // the common funnel through which all methods of hitting
1991 // libsqlite eventually flow.
1992 mLastSqlStatement = sql;
1993
Dan Egnor12311952009-11-23 14:47:45 -08001994 // Sample fast queries in proportion to the time taken.
1995 // Quantize the % first, so the logged sampling probability
1996 // exactly equals the actual sampling rate for this query.
1997
1998 int samplePercent;
Brad Fitzpatrickd72f7182010-02-11 17:07:51 -08001999 long durationMillis = SystemClock.uptimeMillis() - beginMillis;
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07002000 if (durationMillis == 0 && prefix == GET_LOCK_LOG_PREFIX) {
2001 // The common case is locks being uncontended. Don't log those,
2002 // even at 1%, which is our default below.
2003 return;
2004 }
2005 if (sQueryLogTimeInMillis == 0) {
2006 sQueryLogTimeInMillis = SystemProperties.getInt("db.db_operation.threshold_ms", 500);
2007 }
2008 if (durationMillis >= sQueryLogTimeInMillis) {
Dan Egnor12311952009-11-23 14:47:45 -08002009 samplePercent = 100;
Vasu Norifb16cbd2010-07-25 16:38:48 -07002010 } else {
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07002011 samplePercent = (int) (100 * durationMillis / sQueryLogTimeInMillis) + 1;
Dan Egnor799f7212009-11-24 16:24:44 -08002012 if (mRandom.nextInt(100) >= samplePercent) return;
Dan Egnor12311952009-11-23 14:47:45 -08002013 }
2014
Brad Fitzpatrick722802e2010-03-23 22:22:16 -07002015 // Note: the prefix will be "COMMIT;" or "GETLOCK:" when non-null. We wait to do
2016 // it here so we avoid allocating in the common case.
2017 if (prefix != null) {
2018 sql = prefix + sql;
2019 }
2020
Dan Egnor12311952009-11-23 14:47:45 -08002021 if (sql.length() > QUERY_LOG_SQL_LENGTH) sql = sql.substring(0, QUERY_LOG_SQL_LENGTH);
2022
2023 // ActivityThread.currentPackageName() only returns non-null if the
2024 // current thread is an application main thread. This parameter tells
2025 // us whether an event loop is blocked, and if so, which app it is.
2026 //
2027 // Sadly, there's no fast way to determine app name if this is *not* a
2028 // main thread, or when we are invoked via Binder (e.g. ContentProvider).
2029 // Hopefully the full path to the database will be informative enough.
2030
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002031 String blockingPackage = AppGlobals.getInitialPackage();
Dan Egnor12311952009-11-23 14:47:45 -08002032 if (blockingPackage == null) blockingPackage = "";
2033
Brad Fitzpatrickd72f7182010-02-11 17:07:51 -08002034 EventLog.writeEvent(
Brad Fitzpatrickd8330232010-02-19 10:59:01 -08002035 EVENT_DB_OPERATION,
2036 getPathForLogs(),
2037 sql,
2038 durationMillis,
2039 blockingPackage,
2040 samplePercent);
2041 }
2042
2043 /**
2044 * Removes email addresses from database filenames before they're
2045 * logged to the EventLog where otherwise apps could potentially
2046 * read them.
2047 */
2048 private String getPathForLogs() {
2049 if (mPathForLogs != null) {
2050 return mPathForLogs;
2051 }
2052 if (mPath == null) {
2053 return null;
2054 }
2055 if (mPath.indexOf('@') == -1) {
2056 mPathForLogs = mPath;
2057 } else {
2058 mPathForLogs = EMAIL_IN_DB_PATTERN.matcher(mPath).replaceAll("XX@YY");
2059 }
2060 return mPathForLogs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 }
2062
2063 /**
2064 * Sets the locale for this database. Does nothing if this database has
2065 * the NO_LOCALIZED_COLLATORS flag set or was opened read only.
2066 * @throws SQLException if the locale could not be set. The most common reason
2067 * for this is that there is no collator available for the locale you requested.
2068 * In this case the database remains unchanged.
2069 */
2070 public void setLocale(Locale locale) {
2071 lock();
2072 try {
2073 native_setLocale(locale.toString(), mFlags);
2074 } finally {
2075 unlock();
2076 }
2077 }
2078
Vasu Noriccd95442010-05-28 17:04:16 -07002079 /* package */ void verifyDbIsOpen() {
Vasu Nori9463f292010-04-30 12:22:18 -07002080 if (!isOpen()) {
Vasu Nori75010102010-07-01 16:23:06 -07002081 throw new IllegalStateException("database " + getPath() + " (conn# " +
2082 mConnectionNum + ") already closed");
Vasu Nori9463f292010-04-30 12:22:18 -07002083 }
Vasu Noriccd95442010-05-28 17:04:16 -07002084 }
2085
2086 /* package */ void verifyLockOwner() {
2087 verifyDbIsOpen();
2088 if (mLockingEnabled && !isDbLockedByCurrentThread()) {
Vasu Nori9463f292010-04-30 12:22:18 -07002089 throw new IllegalStateException("Don't have database lock!");
2090 }
2091 }
2092
Vasu Norib729dcc2010-09-14 11:35:49 -07002093 /*
2094 * ============================================================================
2095 *
2096 * The following methods deal with compiled-sql cache
2097 * ============================================================================
2098 */
2099 /**
2100 * Adds the given SQL and its compiled-statement-id-returned-by-sqlite to the
2101 * cache of compiledQueries attached to 'this'.
2102 * <p>
2103 * If there is already a {@link SQLiteCompiledSql} in compiledQueries for the given SQL,
2104 * the new {@link SQLiteCompiledSql} object is NOT inserted into the cache (i.e.,the current
2105 * mapping is NOT replaced with the new mapping).
2106 */
2107 /* package */ void addToCompiledQueries(String sql, SQLiteCompiledSql compiledStatement) {
2108 synchronized(mCompiledQueries) {
2109 // don't insert the new mapping if a mapping already exists
2110 if (mCompiledQueries.containsKey(sql)) {
2111 return;
2112 }
2113
2114 if (mCompiledQueries.size() == mMaxSqlCacheSize) {
2115 /*
2116 * cache size of {@link #mMaxSqlCacheSize} is not enough for this app.
2117 * log a warning.
2118 * chances are it is NOT using ? for bindargs - or cachesize is too small.
2119 */
2120 if (++mCacheFullWarnings == MAX_WARNINGS_ON_CACHESIZE_CONDITION) {
2121 Log.w(TAG, "Reached MAX size for compiled-sql statement cache for database " +
2122 getPath() + ". Use setMaxSqlCacheSize() to increase cachesize. ");
2123 }
2124 }
2125 /* add the given SQLiteCompiledSql compiledStatement to cache.
2126 * no need to worry about the cache size - because {@link #mCompiledQueries}
2127 * self-limits its size to {@link #mMaxSqlCacheSize}.
2128 */
2129 mCompiledQueries.put(sql, compiledStatement);
2130 if (SQLiteDebug.DEBUG_SQL_CACHE) {
2131 Log.v(TAG, "|adding_sql_to_cache|" + getPath() + "|" +
2132 mCompiledQueries.size() + "|" + sql);
2133 }
2134 }
2135 }
2136
2137 /** package-level access for testing purposes */
2138 /* package */ void deallocCachedSqlStatements() {
2139 synchronized (mCompiledQueries) {
2140 for (SQLiteCompiledSql compiledSql : mCompiledQueries.values()) {
2141 compiledSql.releaseSqlStatement();
2142 }
2143 mCompiledQueries.clear();
2144 }
2145 }
2146
2147 /**
2148 * From the compiledQueries cache, returns the compiled-statement-id for the given SQL.
2149 * Returns null, if not found in the cache.
2150 */
2151 /* package */ SQLiteCompiledSql getCompiledStatementForSql(String sql) {
2152 SQLiteCompiledSql compiledStatement = null;
2153 boolean cacheHit;
2154 synchronized(mCompiledQueries) {
2155 cacheHit = (compiledStatement = mCompiledQueries.get(sql)) != null;
2156 }
2157 if (cacheHit) {
2158 mNumCacheHits++;
2159 } else {
2160 mNumCacheMisses++;
2161 }
2162
2163 if (SQLiteDebug.DEBUG_SQL_CACHE) {
2164 Log.v(TAG, "|cache_stats|" +
2165 getPath() + "|" + mCompiledQueries.size() +
2166 "|" + mNumCacheHits + "|" + mNumCacheMisses +
2167 "|" + cacheHit + "|" + sql);
2168 }
2169 return compiledStatement;
2170 }
2171
Vasu Norie495d1f2010-01-06 16:34:19 -08002172 /**
Vasu Noriccd95442010-05-28 17:04:16 -07002173 * Sets the maximum size of the prepared-statement cache for this database.
Vasu Norie495d1f2010-01-06 16:34:19 -08002174 * (size of the cache = number of compiled-sql-statements stored in the cache).
Vasu Noriccd95442010-05-28 17:04:16 -07002175 *<p>
Vasu Norib729dcc2010-09-14 11:35:49 -07002176 * Maximum cache size can ONLY be increased from its current size (default = 10).
Vasu Noriccd95442010-05-28 17:04:16 -07002177 * If this method is called with smaller size than the current maximum value,
2178 * then IllegalStateException is thrown.
Vasu Norib729dcc2010-09-14 11:35:49 -07002179 *<p>
2180 * This method is thread-safe.
Vasu Norie495d1f2010-01-06 16:34:19 -08002181 *
Vasu Nori90a367262010-04-12 12:49:09 -07002182 * @param cacheSize the size of the cache. can be (0 to {@link #MAX_SQL_CACHE_SIZE})
2183 * @throws IllegalStateException if input cacheSize > {@link #MAX_SQL_CACHE_SIZE} or
Vasu Noribfe1dc22010-08-25 16:29:02 -07002184 * the value set with previous setMaxSqlCacheSize() call.
Vasu Norie495d1f2010-01-06 16:34:19 -08002185 */
Vasu Norib729dcc2010-09-14 11:35:49 -07002186 public synchronized void setMaxSqlCacheSize(int cacheSize) {
2187 if (cacheSize > MAX_SQL_CACHE_SIZE || cacheSize < 0) {
2188 throw new IllegalStateException("expected value between 0 and " + MAX_SQL_CACHE_SIZE);
2189 } else if (cacheSize < mMaxSqlCacheSize) {
2190 throw new IllegalStateException("cannot set cacheSize to a value less than the value " +
2191 "set with previous setMaxSqlCacheSize() call.");
2192 }
2193 mMaxSqlCacheSize = cacheSize;
2194 }
2195
2196 /* package */ boolean isSqlInStatementCache(String sql) {
2197 synchronized (mCompiledQueries) {
2198 return mCompiledQueries.containsKey(sql);
2199 }
Vasu Nori6c354da2010-04-26 23:33:39 -07002200 }
2201
Vasu Nori6f37f832010-05-19 11:53:25 -07002202 /* package */ void finalizeStatementLater(int id) {
2203 if (!isOpen()) {
2204 // database already closed. this statement will already have been finalized.
2205 return;
2206 }
2207 synchronized(mClosedStatementIds) {
2208 if (mClosedStatementIds.contains(id)) {
2209 // this statement id is already queued up for finalization.
2210 return;
2211 }
2212 mClosedStatementIds.add(id);
2213 }
2214 }
2215
Vasu Norice38b982010-07-22 13:57:13 -07002216 /* package */ void closePendingStatements() {
Vasu Nori6f37f832010-05-19 11:53:25 -07002217 if (!isOpen()) {
2218 // since this database is already closed, no need to finalize anything.
2219 mClosedStatementIds.clear();
2220 return;
2221 }
2222 verifyLockOwner();
2223 /* to minimize synchronization on mClosedStatementIds, make a copy of the list */
2224 ArrayList<Integer> list = new ArrayList<Integer>(mClosedStatementIds.size());
2225 synchronized(mClosedStatementIds) {
2226 list.addAll(mClosedStatementIds);
2227 mClosedStatementIds.clear();
2228 }
2229 // finalize all the statements from the copied list
2230 int size = list.size();
2231 for (int i = 0; i < size; i++) {
2232 native_finalize(list.get(i));
2233 }
2234 }
2235
2236 /**
2237 * for testing only
Vasu Nori6f37f832010-05-19 11:53:25 -07002238 */
Vasu Norice38b982010-07-22 13:57:13 -07002239 /* package */ ArrayList<Integer> getQueuedUpStmtList() {
Vasu Nori6f37f832010-05-19 11:53:25 -07002240 return mClosedStatementIds;
2241 }
2242
Vasu Nori6c354da2010-04-26 23:33:39 -07002243 /**
2244 * This method enables parallel execution of queries from multiple threads on the same database.
2245 * It does this by opening multiple handles to the database and using a different
2246 * database handle for each query.
2247 * <p>
2248 * If a transaction is in progress on one connection handle and say, a table is updated in the
2249 * transaction, then query on the same table on another connection handle will block for the
2250 * transaction to complete. But this method enables such queries to execute by having them
2251 * return old version of the data from the table. Most often it is the data that existed in the
2252 * table prior to the above transaction updates on that table.
2253 * <p>
2254 * Maximum number of simultaneous handles used to execute queries in parallel is
2255 * dependent upon the device memory and possibly other properties.
2256 * <p>
2257 * After calling this method, execution of queries in parallel is enabled as long as this
2258 * database handle is open. To disable execution of queries in parallel, database should
2259 * be closed and reopened.
2260 * <p>
2261 * If a query is part of a transaction, then it is executed on the same database handle the
2262 * transaction was begun.
Vasu Nori6c354da2010-04-26 23:33:39 -07002263 * <p>
2264 * If the database has any attached databases, then execution of queries in paralel is NOT
Vasu Noria98cb262010-06-22 13:16:35 -07002265 * possible. In such cases, a message is printed to logcat and false is returned.
2266 * <p>
2267 * This feature is not available for :memory: databases. In such cases,
2268 * a message is printed to logcat and false is returned.
Vasu Nori6c354da2010-04-26 23:33:39 -07002269 * <p>
2270 * A typical way to use this method is the following:
2271 * <pre>
2272 * SQLiteDatabase db = SQLiteDatabase.openDatabase("db_filename", cursorFactory,
2273 * CREATE_IF_NECESSARY, myDatabaseErrorHandler);
2274 * db.enableWriteAheadLogging();
2275 * </pre>
2276 * <p>
2277 * Writers should use {@link #beginTransactionNonExclusive()} or
2278 * {@link #beginTransactionWithListenerNonExclusive(SQLiteTransactionListener)}
2279 * to start a trsnsaction.
2280 * Non-exclusive mode allows database file to be in readable by threads executing queries.
2281 * </p>
2282 *
Vasu Noria98cb262010-06-22 13:16:35 -07002283 * @return true if write-ahead-logging is set. false otherwise
Vasu Nori6c354da2010-04-26 23:33:39 -07002284 */
Vasu Noria98cb262010-06-22 13:16:35 -07002285 public synchronized boolean enableWriteAheadLogging() {
2286 if (mPath.equalsIgnoreCase(MEMORY_DB_PATH)) {
2287 Log.i(TAG, "can't enable WAL for memory databases.");
2288 return false;
Vasu Nori6c354da2010-04-26 23:33:39 -07002289 }
2290
2291 // make sure this database has NO attached databases because sqlite's write-ahead-logging
2292 // doesn't work for databases with attached databases
2293 if (getAttachedDbs().size() > 1) {
Vasu Norice38b982010-07-22 13:57:13 -07002294 if (Log.isLoggable(TAG, Log.DEBUG)) {
2295 Log.d(TAG,
2296 "this database: " + mPath + " has attached databases. can't enable WAL.");
2297 }
Vasu Noria98cb262010-06-22 13:16:35 -07002298 return false;
Vasu Nori6c354da2010-04-26 23:33:39 -07002299 }
Vasu Noria98cb262010-06-22 13:16:35 -07002300 if (mConnectionPool == null) {
2301 mConnectionPool = new DatabaseConnectionPool(this);
2302 setJournalMode(mPath, "WAL");
Vasu Nori6c354da2010-04-26 23:33:39 -07002303 }
Vasu Noria98cb262010-06-22 13:16:35 -07002304 return true;
Vasu Nori6c354da2010-04-26 23:33:39 -07002305 }
2306
Vasu Nori2827d6d2010-07-04 00:26:18 -07002307 /**
Vasu Nori7b04c412010-07-20 10:31:21 -07002308 * This method disables the features enabled by {@link #enableWriteAheadLogging()}.
2309 * @hide
Vasu Nori2827d6d2010-07-04 00:26:18 -07002310 */
Vasu Nori7b04c412010-07-20 10:31:21 -07002311 public void disableWriteAheadLogging() {
2312 synchronized (this) {
2313 if (mConnectionPool == null) {
2314 return;
2315 }
2316 mConnectionPool.close();
2317 mConnectionPool = null;
2318 setJournalMode(mPath, "TRUNCATE");
Vasu Nori8d111032010-06-22 18:34:21 -07002319 }
Vasu Nori8d111032010-06-22 18:34:21 -07002320 }
2321
Vasu Nori65a88832010-07-16 15:14:08 -07002322 /* package */ SQLiteDatabase getDatabaseHandle(String sql) {
2323 if (isPooledConnection()) {
2324 // this is a pooled database connection
Vasu Norice38b982010-07-22 13:57:13 -07002325 // use it if it is open AND if I am not currently part of a transaction
2326 if (isOpen() && !amIInTransaction()) {
Vasu Nori65a88832010-07-16 15:14:08 -07002327 // TODO: use another connection from the pool
2328 // if this connection is currently in use by some other thread
2329 // AND if there are free connections in the pool
2330 return this;
2331 } else {
2332 // the pooled connection is not open! could have been closed either due
2333 // to corruption on this or some other connection to the database
2334 // OR, maybe the connection pool is disabled after this connection has been
2335 // allocated to me. try to get some other pooled or main database connection
2336 return getParentDbConnObj().getDbConnection(sql);
2337 }
2338 } else {
2339 // this is NOT a pooled connection. can we get one?
2340 return getDbConnection(sql);
2341 }
2342 }
2343
Vasu Nori6c354da2010-04-26 23:33:39 -07002344 /**
2345 * Sets the database connection handle pool size to the given value.
2346 * Database connection handle pool is enabled when the app calls
2347 * {@link #enableWriteAheadLogging()}.
2348 * <p>
2349 * The default connection handle pool is set by the system by taking into account various
2350 * aspects of the device, such as memory, number of cores etc. It is recommended that
2351 * applications use the default pool size set by the system.
2352 *
2353 * @param size the value the connection handle pool size should be set to.
2354 */
Vasu Norib729dcc2010-09-14 11:35:49 -07002355 public synchronized void setConnectionPoolSize(int size) {
2356 if (mConnectionPool == null) {
2357 throw new IllegalStateException("connection pool not enabled");
Vasu Nori6c354da2010-04-26 23:33:39 -07002358 }
Vasu Norib729dcc2010-09-14 11:35:49 -07002359 int i = mConnectionPool.getMaxPoolSize();
2360 if (size < i) {
2361 throw new IllegalArgumentException(
2362 "cannot set max pool size to a value less than the current max value(=" +
2363 i + ")");
2364 }
2365 mConnectionPool.setMaxPoolSize(size);
Vasu Nori6c354da2010-04-26 23:33:39 -07002366 }
2367
2368 /* package */ SQLiteDatabase createPoolConnection(short connectionNum) {
Vasu Nori65a88832010-07-16 15:14:08 -07002369 SQLiteDatabase db = openDatabase(mPath, mFactory, mFlags, mErrorHandler, connectionNum);
2370 db.mParentConnObj = this;
2371 return db;
2372 }
2373
2374 private synchronized SQLiteDatabase getParentDbConnObj() {
2375 return mParentConnObj;
Vasu Nori6c354da2010-04-26 23:33:39 -07002376 }
2377
2378 private boolean isPooledConnection() {
2379 return this.mConnectionNum > 0;
2380 }
2381
Vasu Nori2827d6d2010-07-04 00:26:18 -07002382 /* package */ SQLiteDatabase getDbConnection(String sql) {
Vasu Nori6c354da2010-04-26 23:33:39 -07002383 verifyDbIsOpen();
Vasu Noribfe1dc22010-08-25 16:29:02 -07002384 // this method should always be called with main database connection handle.
2385 // the only time when it is called with pooled database connection handle is
2386 // corruption occurs while trying to open a pooled database connection handle.
2387 // in that case, simply return 'this' handle
Vasu Nori65a88832010-07-16 15:14:08 -07002388 if (isPooledConnection()) {
Vasu Noribfe1dc22010-08-25 16:29:02 -07002389 return this;
Vasu Nori65a88832010-07-16 15:14:08 -07002390 }
Vasu Nori6c354da2010-04-26 23:33:39 -07002391
2392 // use the current connection handle if
Vasu Norice38b982010-07-22 13:57:13 -07002393 // 1. if the caller is part of the ongoing transaction, if any
Vasu Nori65a88832010-07-16 15:14:08 -07002394 // 2. OR, if there is NO connection handle pool setup
Vasu Norice38b982010-07-22 13:57:13 -07002395 if (amIInTransaction() || mConnectionPool == null) {
Vasu Nori65a88832010-07-16 15:14:08 -07002396 return this;
Vasu Nori6c354da2010-04-26 23:33:39 -07002397 } else {
2398 // get a connection handle from the pool
2399 if (Log.isLoggable(TAG, Log.DEBUG)) {
2400 assert mConnectionPool != null;
Vasu Norice38b982010-07-22 13:57:13 -07002401 Log.i(TAG, mConnectionPool.toString());
Vasu Nori6c354da2010-04-26 23:33:39 -07002402 }
Vasu Nori65a88832010-07-16 15:14:08 -07002403 return mConnectionPool.get(sql);
Vasu Nori6c354da2010-04-26 23:33:39 -07002404 }
Vasu Nori6c354da2010-04-26 23:33:39 -07002405 }
2406
2407 private void releaseDbConnection(SQLiteDatabase db) {
2408 // ignore this release call if
2409 // 1. the database is closed
2410 // 2. OR, if db is NOT a pooled connection handle
2411 // 3. OR, if the database being released is same as 'this' (this condition means
2412 // that we should always be releasing a pooled connection handle by calling this method
2413 // from the 'main' connection handle
2414 if (!isOpen() || !db.isPooledConnection() || (db == this)) {
2415 return;
2416 }
2417 if (Log.isLoggable(TAG, Log.DEBUG)) {
2418 assert isPooledConnection();
2419 assert mConnectionPool != null;
2420 Log.d(TAG, "releaseDbConnection threadid = " + Thread.currentThread().getId() +
2421 ", releasing # " + db.mConnectionNum + ", " + getPath());
2422 }
2423 mConnectionPool.release(db);
2424 }
2425
Vasu Norif3cf8a42010-03-23 11:41:44 -07002426 /**
2427 * this method is used to collect data about ALL open databases in the current process.
Vasu Nori0732f792010-07-29 17:24:12 -07002428 * bugreport is a user of this data.
Vasu Norif3cf8a42010-03-23 11:41:44 -07002429 */
Vasu Noric3849202010-03-09 10:47:25 -08002430 /* package */ static ArrayList<DbStats> getDbStats() {
2431 ArrayList<DbStats> dbStatsList = new ArrayList<DbStats>();
Vasu Nori0732f792010-07-29 17:24:12 -07002432 // make a local copy of mActiveDatabases - so that this method is not competing
2433 // for synchronization lock on mActiveDatabases
Vasu Nori9a8bc782010-08-23 12:07:00 -07002434 ArrayList<WeakReference<SQLiteDatabase>> tempList;
Vasu Nori0732f792010-07-29 17:24:12 -07002435 synchronized(mActiveDatabases) {
Vasu Nori9a8bc782010-08-23 12:07:00 -07002436 tempList = (ArrayList<WeakReference<SQLiteDatabase>>)mActiveDatabases.clone();
Vasu Nori0732f792010-07-29 17:24:12 -07002437 }
2438 for (WeakReference<SQLiteDatabase> w : tempList) {
Vasu Noric3849202010-03-09 10:47:25 -08002439 SQLiteDatabase db = w.get();
2440 if (db == null || !db.isOpen()) {
2441 continue;
2442 }
Vasu Noric3849202010-03-09 10:47:25 -08002443
Vasu Nori0732f792010-07-29 17:24:12 -07002444 synchronized (db) {
2445 try {
2446 // get SQLITE_DBSTATUS_LOOKASIDE_USED for the db
2447 int lookasideUsed = db.native_getDbLookaside();
Vasu Noric3849202010-03-09 10:47:25 -08002448
Vasu Nori0732f792010-07-29 17:24:12 -07002449 // get the lastnode of the dbname
2450 String path = db.getPath();
2451 int indx = path.lastIndexOf("/");
2452 String lastnode = path.substring((indx != -1) ? ++indx : 0);
Vasu Noric3849202010-03-09 10:47:25 -08002453
Vasu Nori0732f792010-07-29 17:24:12 -07002454 // get list of attached dbs and for each db, get its size and pagesize
2455 ArrayList<Pair<String, String>> attachedDbs = db.getAttachedDbs();
2456 if (attachedDbs == null) {
2457 continue;
2458 }
2459 for (int i = 0; i < attachedDbs.size(); i++) {
2460 Pair<String, String> p = attachedDbs.get(i);
2461 long pageCount = DatabaseUtils.longForQuery(db, "PRAGMA " + p.first
2462 + ".page_count;", null);
Vasu Noriccd95442010-05-28 17:04:16 -07002463
Vasu Nori0732f792010-07-29 17:24:12 -07002464 // first entry in the attached db list is always the main database
2465 // don't worry about prefixing the dbname with "main"
2466 String dbName;
2467 if (i == 0) {
2468 dbName = lastnode;
2469 } else {
2470 // lookaside is only relevant for the main db
2471 lookasideUsed = 0;
2472 dbName = " (attached) " + p.first;
2473 // if the attached db has a path, attach the lastnode from the path to above
2474 if (p.second.trim().length() > 0) {
2475 int idx = p.second.lastIndexOf("/");
2476 dbName += " : " + p.second.substring((idx != -1) ? ++idx : 0);
2477 }
2478 }
2479 if (pageCount > 0) {
2480 dbStatsList.add(new DbStats(dbName, pageCount, db.getPageSize(),
Vasu Norib729dcc2010-09-14 11:35:49 -07002481 lookasideUsed, db.mNumCacheHits, db.mNumCacheMisses,
2482 db.mCompiledQueries.size()));
Vasu Noriccd95442010-05-28 17:04:16 -07002483 }
2484 }
Vasu Nori0732f792010-07-29 17:24:12 -07002485 // if there are pooled connections, return the cache stats for them also.
2486 if (db.mConnectionPool != null) {
2487 for (SQLiteDatabase pDb : db.mConnectionPool.getConnectionList()) {
2488 dbStatsList.add(new DbStats("(pooled # " + pDb.mConnectionNum + ") "
Vasu Norib729dcc2010-09-14 11:35:49 -07002489 + lastnode, 0, 0, 0, pDb.mNumCacheHits, pDb.mNumCacheMisses,
2490 pDb.mCompiledQueries.size()));
Vasu Nori0732f792010-07-29 17:24:12 -07002491 }
Vasu Noric3849202010-03-09 10:47:25 -08002492 }
Vasu Nori0732f792010-07-29 17:24:12 -07002493 } catch (SQLiteException e) {
2494 // ignore. we don't care about exceptions when we are taking adb
2495 // bugreport!
Vasu Noric3849202010-03-09 10:47:25 -08002496 }
Vasu Noric3849202010-03-09 10:47:25 -08002497 }
2498 }
2499 return dbStatsList;
2500 }
2501
2502 /**
Vasu Noriccd95442010-05-28 17:04:16 -07002503 * Returns list of full pathnames of all attached databases including the main database
2504 * by executing 'pragma database_list' on the database.
2505 *
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002506 * @return ArrayList of pairs of (database name, database file path) or null if the database
2507 * is not open.
Vasu Noric3849202010-03-09 10:47:25 -08002508 */
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002509 public ArrayList<Pair<String, String>> getAttachedDbs() {
2510 if (!isOpen()) {
Vasu Norif3cf8a42010-03-23 11:41:44 -07002511 return null;
2512 }
Vasu Noric3849202010-03-09 10:47:25 -08002513 ArrayList<Pair<String, String>> attachedDbs = new ArrayList<Pair<String, String>>();
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002514 Cursor c = null;
2515 try {
2516 c = rawQuery("pragma database_list;", null);
2517 while (c.moveToNext()) {
2518 // sqlite returns a row for each database in the returned list of databases.
2519 // in each row,
2520 // 1st column is the database name such as main, or the database
2521 // name specified on the "ATTACH" command
2522 // 2nd column is the database file path.
2523 attachedDbs.add(new Pair<String, String>(c.getString(1), c.getString(2)));
2524 }
2525 } finally {
2526 if (c != null) {
2527 c.close();
2528 }
Vasu Noric3849202010-03-09 10:47:25 -08002529 }
Vasu Noric3849202010-03-09 10:47:25 -08002530 return attachedDbs;
2531 }
2532
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002533 /**
Vasu Noriccd95442010-05-28 17:04:16 -07002534 * Runs 'pragma integrity_check' on the given database (and all the attached databases)
2535 * and returns true if the given database (and all its attached databases) pass integrity_check,
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002536 * false otherwise.
Vasu Noriccd95442010-05-28 17:04:16 -07002537 *<p>
2538 * If the result is false, then this method logs the errors reported by the integrity_check
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002539 * command execution.
Vasu Noriccd95442010-05-28 17:04:16 -07002540 *<p>
2541 * Note that 'pragma integrity_check' on a database can take a long time.
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002542 *
2543 * @return true if the given database (and all its attached databases) pass integrity_check,
Vasu Noriccd95442010-05-28 17:04:16 -07002544 * false otherwise.
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002545 */
2546 public boolean isDatabaseIntegrityOk() {
Vasu Noriccd95442010-05-28 17:04:16 -07002547 verifyDbIsOpen();
Vasu Noribfe1dc22010-08-25 16:29:02 -07002548 ArrayList<Pair<String, String>> attachedDbs = null;
2549 try {
2550 attachedDbs = getAttachedDbs();
2551 if (attachedDbs == null) {
2552 throw new IllegalStateException("databaselist for: " + getPath() + " couldn't " +
2553 "be retrieved. probably because the database is closed");
2554 }
2555 } catch (SQLiteException e) {
2556 // can't get attachedDb list. do integrity check on the main database
2557 attachedDbs = new ArrayList<Pair<String, String>>();
2558 attachedDbs.add(new Pair<String, String>("main", this.mPath));
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002559 }
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002560 for (int i = 0; i < attachedDbs.size(); i++) {
2561 Pair<String, String> p = attachedDbs.get(i);
2562 SQLiteStatement prog = null;
2563 try {
2564 prog = compileStatement("PRAGMA " + p.first + ".integrity_check(1);");
2565 String rslt = prog.simpleQueryForString();
2566 if (!rslt.equalsIgnoreCase("ok")) {
2567 // integrity_checker failed on main or attached databases
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002568 Log.e(TAG, "PRAGMA integrity_check on " + p.second + " returned: " + rslt);
Vasu Noribfe1dc22010-08-25 16:29:02 -07002569 return false;
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002570 }
2571 } finally {
2572 if (prog != null) prog.close();
2573 }
2574 }
Vasu Noribfe1dc22010-08-25 16:29:02 -07002575 return true;
Vasu Nori062fc7ce2010-03-31 16:13:05 -07002576 }
2577
2578 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002579 * Native call to open the database.
2580 *
2581 * @param path The full path to the database
2582 */
2583 private native void dbopen(String path, int flags);
2584
2585 /**
Vasu Noriccd95442010-05-28 17:04:16 -07002586 * Native call to setup tracing of all SQL statements
Vasu Nori3ef94e22010-02-05 14:49:04 -08002587 *
2588 * @param path the full path to the database
Vasu Nori6c354da2010-04-26 23:33:39 -07002589 * @param connectionNum connection number: 0 - N, where the main database
2590 * connection handle is numbered 0 and the connection handles in the connection
2591 * pool are numbered 1..N.
Vasu Nori3ef94e22010-02-05 14:49:04 -08002592 */
Vasu Nori6c354da2010-04-26 23:33:39 -07002593 private native void enableSqlTracing(String path, short connectionNum);
Vasu Nori3ef94e22010-02-05 14:49:04 -08002594
2595 /**
Vasu Noriccd95442010-05-28 17:04:16 -07002596 * Native call to setup profiling of all SQL statements.
Vasu Nori3ef94e22010-02-05 14:49:04 -08002597 * currently, sqlite's profiling = printing of execution-time
Vasu Noriccd95442010-05-28 17:04:16 -07002598 * (wall-clock time) of each of the SQL statements, as they
Vasu Nori3ef94e22010-02-05 14:49:04 -08002599 * are executed.
2600 *
2601 * @param path the full path to the database
Vasu Nori6c354da2010-04-26 23:33:39 -07002602 * @param connectionNum connection number: 0 - N, where the main database
2603 * connection handle is numbered 0 and the connection handles in the connection
2604 * pool are numbered 1..N.
Vasu Nori3ef94e22010-02-05 14:49:04 -08002605 */
Vasu Nori6c354da2010-04-26 23:33:39 -07002606 private native void enableSqlProfiling(String path, short connectionNum);
Vasu Nori3ef94e22010-02-05 14:49:04 -08002607
2608 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002609 * Native call to set the locale. {@link #lock} must be held when calling
2610 * this method.
2611 * @throws SQLException
2612 */
Vasu Nori0732f792010-07-29 17:24:12 -07002613 private native void native_setLocale(String loc, int flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002614
2615 /**
Vasu Noric3849202010-03-09 10:47:25 -08002616 * return the SQLITE_DBSTATUS_LOOKASIDE_USED documented here
2617 * http://www.sqlite.org/c3ref/c_dbstatus_lookaside_used.html
2618 * @return int value of SQLITE_DBSTATUS_LOOKASIDE_USED
2619 */
2620 private native int native_getDbLookaside();
Vasu Nori6f37f832010-05-19 11:53:25 -07002621
2622 /**
2623 * finalizes the given statement id.
2624 *
2625 * @param statementId statement to be finzlied by sqlite
2626 */
2627 private final native void native_finalize(int statementId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002628}