blob: ec5dc4ae30c5b2dc8f65696276d6fb76365c3a5b [file] [log] [blame]
Jeff Browne5360fb2011-10-31 17:48:13 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "SQLiteGlobal"
18
19#include <jni.h>
Steven Moreland2279b252017-07-19 09:50:45 -070020#include <nativehelper/JNIHelp.h>
Andreas Gampeed6b9df2014-11-20 22:02:20 -080021#include "core_jni_helpers.h"
Jeff Browne5360fb2011-10-31 17:48:13 -070022
23#include <sqlite3.h>
24#include <sqlite3_android.h>
25
26#include "android_database_SQLiteCommon.h"
Jeff Brown4b575532012-01-20 12:34:34 -080027#include "android_util_Log.h"
Jeff Browne5360fb2011-10-31 17:48:13 -070028
29namespace android {
30
Jeff Brown4b575532012-01-20 12:34:34 -080031// Limit heap to 8MB for now. This is 4 times the maximum cursor window
32// size, as has been used by the original code in SQLiteDatabase for
33// a long time.
34static const int SOFT_HEAP_LIMIT = 8 * 1024 * 1024;
35
36
Jeff Browne5360fb2011-10-31 17:48:13 -070037// Called each time a message is logged.
Jeff Brown5dd67d62015-03-16 15:21:45 -070038static void sqliteLogCallback(void* data, int err, const char* msg) {
Jeff Browne5360fb2011-10-31 17:48:13 -070039 bool verboseLog = !!data;
Jeff Brown5dd67d62015-03-16 15:21:45 -070040 int errType = err & 255;
41 if (errType == 0 || errType == SQLITE_CONSTRAINT || errType == SQLITE_SCHEMA
42 || errType == SQLITE_NOTICE || err == SQLITE_WARNING_AUTOINDEX) {
Jeff Browne5360fb2011-10-31 17:48:13 -070043 if (verboseLog) {
Jeff Brown5dd67d62015-03-16 15:21:45 -070044 ALOG(LOG_VERBOSE, SQLITE_LOG_TAG, "(%d) %s\n", err, msg);
Jeff Browne5360fb2011-10-31 17:48:13 -070045 }
Jeff Brown5dd67d62015-03-16 15:21:45 -070046 } else if (errType == SQLITE_WARNING) {
47 ALOG(LOG_WARN, SQLITE_LOG_TAG, "(%d) %s\n", err, msg);
Jeff Browne5360fb2011-10-31 17:48:13 -070048 } else {
Jeff Brown5dd67d62015-03-16 15:21:45 -070049 ALOG(LOG_ERROR, SQLITE_LOG_TAG, "(%d) %s\n", err, msg);
Jeff Browne5360fb2011-10-31 17:48:13 -070050 }
51}
52
53// Sets the global SQLite configuration.
Jeff Brown4b575532012-01-20 12:34:34 -080054// This must be called before any other SQLite functions are called.
55static void sqliteInitialize() {
Jeff Browne5360fb2011-10-31 17:48:13 -070056 // Enable multi-threaded mode. In this mode, SQLite is safe to use by multiple
57 // threads as long as no two threads use the same database connection at the same
58 // time (which we guarantee in the SQLite database wrappers).
59 sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
60
61 // Redirect SQLite log messages to the Android log.
Jeff Brown4b575532012-01-20 12:34:34 -080062 bool verboseLog = android_util_Log_isVerboseLogEnabled(SQLITE_LOG_TAG);
Jeff Browne5360fb2011-10-31 17:48:13 -070063 sqlite3_config(SQLITE_CONFIG_LOG, &sqliteLogCallback, verboseLog ? (void*)1 : NULL);
64
65 // The soft heap limit prevents the page cache allocations from growing
66 // beyond the given limit, no matter what the max page cache sizes are
67 // set to. The limit does not, as of 3.5.0, affect any other allocations.
Jeff Brown4b575532012-01-20 12:34:34 -080068 sqlite3_soft_heap_limit(SOFT_HEAP_LIMIT);
69
70 // Initialize SQLite.
71 sqlite3_initialize();
Jeff Browne5360fb2011-10-31 17:48:13 -070072}
73
Jeff Brown4b575532012-01-20 12:34:34 -080074static jint nativeReleaseMemory(JNIEnv* env, jclass clazz) {
75 return sqlite3_release_memory(SOFT_HEAP_LIMIT);
Jeff Browne5360fb2011-10-31 17:48:13 -070076}
77
Daniel Micay76f6a862015-09-19 17:31:01 -040078static const JNINativeMethod sMethods[] =
Jeff Browne5360fb2011-10-31 17:48:13 -070079{
80 /* name, signature, funcPtr */
Andreas Gampeed6b9df2014-11-20 22:02:20 -080081 { "nativeReleaseMemory", "()I", (void*)nativeReleaseMemory },
Jeff Browne5360fb2011-10-31 17:48:13 -070082};
83
84int register_android_database_SQLiteGlobal(JNIEnv *env)
85{
Jeff Brown4b575532012-01-20 12:34:34 -080086 sqliteInitialize();
87
Andreas Gampeed6b9df2014-11-20 22:02:20 -080088 return RegisterMethodsOrDie(env, "android/database/sqlite/SQLiteGlobal",
Jeff Browne5360fb2011-10-31 17:48:13 -070089 sMethods, NELEM(sMethods));
90}
91
92} // namespace android