mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
1b86f6b5be
Use `carray`` extension to bind array of numerics and strings, so we can avoid large and slow IN clauses, and cache prepared statements having a variable number of parameters. The extension is statically loaded and available in every connection. Consumers are encouraged to use the explicit `bindArrayXXX` methods, as the generic `bindByIndex` and `bindByName` methods are too lenient, especially from Javascript. Note `carray`` only supports UTF8 encoded strings, the API will convert the encoding when UTF16 is passed in. These new variants are not exposed to Rust yet, as the existing comment suggests they were intended for primitive types. It could be done in the future, if necessary. Differential Revision: https://phabricator.services.mozilla.com/D225334
116 lines
3.1 KiB
Python
116 lines
3.1 KiB
Python
# -*- Mode: python; 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/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Core", "SQLite and Embedded Database Bindings")
|
|
|
|
DIRS += ["build"]
|
|
|
|
TEST_DIRS += ["test"]
|
|
|
|
XPIDL_SOURCES += [
|
|
"mozIStorageAsyncConnection.idl",
|
|
"mozIStorageAsyncStatement.idl",
|
|
"mozIStorageBaseStatement.idl",
|
|
"mozIStorageBindingParams.idl",
|
|
"mozIStorageBindingParamsArray.idl",
|
|
"mozIStorageCompletionCallback.idl",
|
|
"mozIStorageConnection.idl",
|
|
"mozIStorageError.idl",
|
|
"mozIStorageFunction.idl",
|
|
"mozIStoragePendingStatement.idl",
|
|
"mozIStorageProgressHandler.idl",
|
|
"mozIStorageResultSet.idl",
|
|
"mozIStorageRow.idl",
|
|
"mozIStorageService.idl",
|
|
"mozIStorageStatement.idl",
|
|
"mozIStorageStatementCallback.idl",
|
|
"mozIStorageVacuumParticipant.idl",
|
|
"mozIStorageValueArray.idl",
|
|
]
|
|
|
|
XPIDL_MODULE = "storage"
|
|
|
|
EXPORTS += [
|
|
"mozStorageHelper.h",
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
"storage.h",
|
|
]
|
|
|
|
# NOTE When adding something to this list, you probably need to add it to the
|
|
# storage.h file too.
|
|
EXPORTS.mozilla.storage += [
|
|
"mozStorageAsyncStatementParams.h",
|
|
"mozStorageStatementParams.h",
|
|
"mozStorageStatementRow.h",
|
|
"SQLiteMutex.h",
|
|
"StatementCache.h",
|
|
"Variant.h",
|
|
"Variant_inl.h",
|
|
]
|
|
# SEE ABOVE NOTE!
|
|
|
|
UNIFIED_SOURCES += [
|
|
"BaseVFS.cpp",
|
|
"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",
|
|
"ObfuscatingVFS.cpp",
|
|
"QuotaVFS.cpp",
|
|
"ReadOnlyNoLockVFS.cpp",
|
|
"SQLCollations.cpp",
|
|
"StorageBaseStatementInternal.cpp",
|
|
"VacuumManager.cpp",
|
|
"Variant.cpp",
|
|
]
|
|
|
|
# These files need to be built separately because they #include variantToSQLiteT_impl.h.
|
|
SOURCES += [
|
|
"mozStorageBindingParams.cpp",
|
|
"mozStorageConnection.cpp",
|
|
]
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
FINAL_LIBRARY = "xul"
|
|
|
|
# Thunderbird needs the 2-argument version of fts3_tokenizer()
|
|
if CONFIG["MOZ_THUNDERBIRD"] or CONFIG["MOZ_SUITE"]:
|
|
DEFINES["MOZ_SQLITE_FTS3_TOKENIZER"] = 1
|
|
|
|
# Disable auxiliary files persistence if requested.
|
|
if not CONFIG["MOZ_AVOID_DISK_REMNANT_ON_CLOSE"]:
|
|
DEFINES["MOZ_SQLITE_PERSIST_AUXILIARY_FILES"] = 1
|
|
|
|
LOCAL_INCLUDES += [
|
|
"/dom/base",
|
|
"/third_party/sqlite3/ext",
|
|
"/third_party/sqlite3/src",
|
|
]
|
|
|
|
if CONFIG["MOZ_FOLD_LIBS"]:
|
|
DEFINES["MOZ_FOLD_LIBS"] = True
|
|
|
|
CXXFLAGS += CONFIG["SQLITE_CFLAGS"]
|
|
|
|
SPHINX_TREES["/storage"] = "docs"
|