mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
Bug 1164717 - Flatten storage/src/ directory. r=mak
--HG-- rename : storage/src/FileSystemModule.cpp => storage/FileSystemModule.cpp rename : storage/src/FileSystemModule.h => storage/FileSystemModule.h rename : storage/src/IStorageBindingParamsInternal.h => storage/IStorageBindingParamsInternal.h rename : storage/src/SQLCollations.cpp => storage/SQLCollations.cpp rename : storage/src/SQLCollations.h => storage/SQLCollations.h rename : storage/src/SQLiteMutex.h => storage/SQLiteMutex.h rename : storage/src/StorageBaseStatementInternal.cpp => storage/StorageBaseStatementInternal.cpp rename : storage/src/StorageBaseStatementInternal.h => storage/StorageBaseStatementInternal.h rename : storage/src/TelemetryVFS.cpp => storage/TelemetryVFS.cpp rename : storage/src/VacuumManager.cpp => storage/VacuumManager.cpp rename : storage/src/VacuumManager.h => storage/VacuumManager.h rename : storage/src/Variant.h => storage/Variant.h rename : storage/src/Variant_inl.h => storage/Variant_inl.h rename : storage/src/mozStorageArgValueArray.cpp => storage/mozStorageArgValueArray.cpp rename : storage/src/mozStorageArgValueArray.h => storage/mozStorageArgValueArray.h rename : storage/src/mozStorageAsyncStatement.cpp => storage/mozStorageAsyncStatement.cpp rename : storage/src/mozStorageAsyncStatement.h => storage/mozStorageAsyncStatement.h rename : storage/src/mozStorageAsyncStatementExecution.cpp => storage/mozStorageAsyncStatementExecution.cpp rename : storage/src/mozStorageAsyncStatementExecution.h => storage/mozStorageAsyncStatementExecution.h rename : storage/src/mozStorageAsyncStatementJSHelper.cpp => storage/mozStorageAsyncStatementJSHelper.cpp rename : storage/src/mozStorageAsyncStatementJSHelper.h => storage/mozStorageAsyncStatementJSHelper.h rename : storage/src/mozStorageAsyncStatementParams.cpp => storage/mozStorageAsyncStatementParams.cpp rename : storage/src/mozStorageAsyncStatementParams.h => storage/mozStorageAsyncStatementParams.h rename : storage/src/mozStorageBindingParams.cpp => storage/mozStorageBindingParams.cpp rename : storage/src/mozStorageBindingParams.h => storage/mozStorageBindingParams.h rename : storage/src/mozStorageBindingParamsArray.cpp => storage/mozStorageBindingParamsArray.cpp rename : storage/src/mozStorageBindingParamsArray.h => storage/mozStorageBindingParamsArray.h rename : storage/src/mozStorageConnection.cpp => storage/mozStorageConnection.cpp rename : storage/src/mozStorageConnection.h => storage/mozStorageConnection.h rename : storage/src/mozStorageError.cpp => storage/mozStorageError.cpp rename : storage/src/mozStorageError.h => storage/mozStorageError.h rename : storage/src/mozStoragePrivateHelpers.cpp => storage/mozStoragePrivateHelpers.cpp rename : storage/src/mozStoragePrivateHelpers.h => storage/mozStoragePrivateHelpers.h rename : storage/src/mozStorageResultSet.cpp => storage/mozStorageResultSet.cpp rename : storage/src/mozStorageResultSet.h => storage/mozStorageResultSet.h rename : storage/src/mozStorageRow.cpp => storage/mozStorageRow.cpp rename : storage/src/mozStorageRow.h => storage/mozStorageRow.h rename : storage/src/mozStorageSQLFunctions.cpp => storage/mozStorageSQLFunctions.cpp rename : storage/src/mozStorageSQLFunctions.h => storage/mozStorageSQLFunctions.h rename : storage/src/mozStorageService.cpp => storage/mozStorageService.cpp rename : storage/src/mozStorageService.h => storage/mozStorageService.h rename : storage/src/mozStorageStatement.cpp => storage/mozStorageStatement.cpp rename : storage/src/mozStorageStatement.h => storage/mozStorageStatement.h rename : storage/src/mozStorageStatementData.h => storage/mozStorageStatementData.h rename : storage/src/mozStorageStatementJSHelper.cpp => storage/mozStorageStatementJSHelper.cpp rename : storage/src/mozStorageStatementJSHelper.h => storage/mozStorageStatementJSHelper.h rename : storage/src/mozStorageStatementParams.cpp => storage/mozStorageStatementParams.cpp rename : storage/src/mozStorageStatementParams.h => storage/mozStorageStatementParams.h rename : storage/src/mozStorageStatementRow.cpp => storage/mozStorageStatementRow.cpp rename : storage/src/mozStorageStatementRow.h => storage/mozStorageStatementRow.h rename : storage/src/variantToSQLiteT_impl.h => storage/variantToSQLiteT_impl.h
This commit is contained in:
parent
11f2166660
commit
296aa63730
@ -16,6 +16,8 @@ FAIL_ON_WARNINGS = True
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
LOCAL_INCLUDES += ['../src']
|
||||
LOCAL_INCLUDES += [
|
||||
'..',
|
||||
]
|
||||
|
||||
CXXFLAGS += CONFIG['SQLITE_CFLAGS']
|
||||
|
@ -4,7 +4,7 @@
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
DIRS += ['src', 'build']
|
||||
DIRS += ['build']
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
@ -46,5 +46,70 @@ EXPORTS.mozilla += [
|
||||
# storage.h file too.
|
||||
EXPORTS.mozilla.storage += [
|
||||
'StatementCache.h',
|
||||
'Variant.h',
|
||||
'Variant_inl.h',
|
||||
]
|
||||
# SEE ABOVE NOTE!
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'FileSystemModule.cpp',
|
||||
'mozStorageArgValueArray.cpp',
|
||||
'mozStorageAsyncStatement.cpp',
|
||||
'mozStorageAsyncStatementExecution.cpp',
|
||||
'mozStorageAsyncStatementJSHelper.cpp',
|
||||
'mozStorageAsyncStatementParams.cpp',
|
||||
'mozStorageBindingParamsArray.cpp',
|
||||
'mozStorageError.cpp',
|
||||
'mozStoragePrivateHelpers.cpp',
|
||||
'mozStorageResultSet.cpp',
|
||||
'mozStorageRow.cpp',
|
||||
'mozStorageService.cpp',
|
||||
'mozStorageSQLFunctions.cpp',
|
||||
'mozStorageStatement.cpp',
|
||||
'mozStorageStatementJSHelper.cpp',
|
||||
'mozStorageStatementParams.cpp',
|
||||
'mozStorageStatementRow.cpp',
|
||||
'SQLCollations.cpp',
|
||||
'StorageBaseStatementInternal.cpp',
|
||||
'TelemetryVFS.cpp',
|
||||
'VacuumManager.cpp',
|
||||
]
|
||||
|
||||
# These files need to be built separately because they #include variantToSQLiteT_impl.h.
|
||||
SOURCES += [
|
||||
'mozStorageBindingParams.cpp',
|
||||
'mozStorageConnection.cpp',
|
||||
]
|
||||
|
||||
FAIL_ON_WARNINGS = True
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
# Don't use the jemalloc allocator on Android, because we can't guarantee
|
||||
# that Gecko will configure sqlite before it is first used (bug 730495).
|
||||
#
|
||||
# Don't use the jemalloc allocator when using system sqlite. Linked in libraries
|
||||
# (such as NSS) might trigger an initialization of sqlite and allocation
|
||||
# of memory using the default allocator, prior to the storage service
|
||||
# registering its allocator, causing memory management failures (bug 938730).
|
||||
# However, this is not an issue if both the jemalloc allocator and the default
|
||||
# allocator are the same thing.
|
||||
#
|
||||
# Note: On Windows our sqlite build assumes we use jemalloc. If you disable
|
||||
# MOZ_STORAGE_MEMORY on Windows, you will also need to change the "ifdef
|
||||
# MOZ_MEMORY" options in db/sqlite3/src/Makefile.in.
|
||||
if CONFIG['MOZ_MEMORY'] and (not CONFIG['MOZ_NATIVE_SQLITE']
|
||||
or CONFIG['MOZ_NATIVE_JEMALLOC']):
|
||||
if CONFIG['OS_TARGET'] != 'Android':
|
||||
DEFINES['MOZ_STORAGE_MEMORY'] = True
|
||||
|
||||
# This is the default value. If we ever change it when compiling sqlite, we
|
||||
# will need to change it here as well.
|
||||
DEFINES['SQLITE_MAX_LIKE_PATTERN_LENGTH'] = 50000
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
'/db/sqlite3/src',
|
||||
'/dom/base',
|
||||
]
|
||||
|
||||
CXXFLAGS += CONFIG['SQLITE_CFLAGS']
|
||||
|
@ -1,73 +0,0 @@
|
||||
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
||||
# vim: set filetype=python:
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
EXPORTS.mozilla.storage += [
|
||||
'Variant.h',
|
||||
'Variant_inl.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'FileSystemModule.cpp',
|
||||
'mozStorageArgValueArray.cpp',
|
||||
'mozStorageAsyncStatement.cpp',
|
||||
'mozStorageAsyncStatementExecution.cpp',
|
||||
'mozStorageAsyncStatementJSHelper.cpp',
|
||||
'mozStorageAsyncStatementParams.cpp',
|
||||
'mozStorageBindingParamsArray.cpp',
|
||||
'mozStorageError.cpp',
|
||||
'mozStoragePrivateHelpers.cpp',
|
||||
'mozStorageResultSet.cpp',
|
||||
'mozStorageRow.cpp',
|
||||
'mozStorageService.cpp',
|
||||
'mozStorageSQLFunctions.cpp',
|
||||
'mozStorageStatement.cpp',
|
||||
'mozStorageStatementJSHelper.cpp',
|
||||
'mozStorageStatementParams.cpp',
|
||||
'mozStorageStatementRow.cpp',
|
||||
'SQLCollations.cpp',
|
||||
'StorageBaseStatementInternal.cpp',
|
||||
'TelemetryVFS.cpp',
|
||||
'VacuumManager.cpp',
|
||||
]
|
||||
|
||||
# These files need to be built separately because they #include variantToSQLiteT_impl.h.
|
||||
SOURCES += [
|
||||
'mozStorageBindingParams.cpp',
|
||||
'mozStorageConnection.cpp',
|
||||
]
|
||||
|
||||
FAIL_ON_WARNINGS = True
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
# Don't use the jemalloc allocator on Android, because we can't guarantee
|
||||
# that Gecko will configure sqlite before it is first used (bug 730495).
|
||||
#
|
||||
# Don't use the jemalloc allocator when using system sqlite. Linked in libraries
|
||||
# (such as NSS) might trigger an initialization of sqlite and allocation
|
||||
# of memory using the default allocator, prior to the storage service
|
||||
# registering its allocator, causing memory management failures (bug 938730).
|
||||
# However, this is not an issue if both the jemalloc allocator and the default
|
||||
# allocator are the same thing.
|
||||
#
|
||||
# Note: On Windows our sqlite build assumes we use jemalloc. If you disable
|
||||
# MOZ_STORAGE_MEMORY on Windows, you will also need to change the "ifdef
|
||||
# MOZ_MEMORY" options in db/sqlite3/src/Makefile.in.
|
||||
if CONFIG['MOZ_MEMORY'] and (not CONFIG['MOZ_NATIVE_SQLITE']
|
||||
or CONFIG['MOZ_NATIVE_JEMALLOC']):
|
||||
if CONFIG['OS_TARGET'] != 'Android':
|
||||
DEFINES['MOZ_STORAGE_MEMORY'] = True
|
||||
|
||||
# This is the default value. If we ever change it when compiling sqlite, we
|
||||
# will need to change it here as well.
|
||||
DEFINES['SQLITE_MAX_LIKE_PATTERN_LENGTH'] = 50000
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
'/db/sqlite3/src',
|
||||
'/dom/base',
|
||||
]
|
||||
|
||||
CXXFLAGS += CONFIG['SQLITE_CFLAGS']
|
@ -29,7 +29,7 @@ if CONFIG['MOZ_DEBUG'] and CONFIG['OS_ARCH'] not in ('WINNT', 'Darwin'):
|
||||
])
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
'../src',
|
||||
'..',
|
||||
]
|
||||
|
||||
FAIL_ON_WARNINGS = True
|
||||
|
@ -146,7 +146,7 @@ function run_test()
|
||||
setup();
|
||||
|
||||
// function JSValStorageStatementBinder in
|
||||
// storage/src/mozStorageStatementParams.cpp tells us that the following types
|
||||
// storage/mozStorageStatementParams.cpp tells us that the following types
|
||||
// and only the following types are valid as statement parameters:
|
||||
var vals = [
|
||||
1337, // int
|
||||
|
@ -1572,7 +1572,7 @@ UnifiedComplete.prototype = {
|
||||
// Autocomplete often fallbacks to a table scan due to lack of text
|
||||
// indices. A larger cache helps reducing IO and improving performance.
|
||||
// The value used here is larger than the default Storage value defined
|
||||
// as MAX_CACHE_SIZE_BYTES in storage/src/mozStorageConnection.cpp.
|
||||
// as MAX_CACHE_SIZE_BYTES in storage/mozStorageConnection.cpp.
|
||||
yield conn.execute("PRAGMA cache_size = -6144"); // 6MiB
|
||||
|
||||
yield SwitchToTabStorage.initDatabase(conn);
|
||||
|
@ -318,7 +318,7 @@ function nsPlacesAutoComplete()
|
||||
|
||||
// Autocomplete often fallbacks to a table scan due to lack of text indices.
|
||||
// In such cases a larger cache helps reducing IO. The default Storage
|
||||
// value is MAX_CACHE_SIZE_BYTES in storage/src/mozStorageConnection.cpp.
|
||||
// value is MAX_CACHE_SIZE_BYTES in storage/mozStorageConnection.cpp.
|
||||
let stmt = db.createAsyncStatement("PRAGMA cache_size = -6144"); // 6MiB
|
||||
stmt.executeAsync();
|
||||
stmt.finalize();
|
||||
|
Loading…
Reference in New Issue
Block a user