1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: sw=2 ts=2 sts=2 et
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozStorageStatementData_h
8 #define mozStorageStatementData_h
13 #include "MainThreadUtils.h"
15 #include "mozStorageBindingParamsArray.h"
16 #include "mozStorageConnection.h"
17 #include "StorageBaseStatementInternal.h"
18 #include "mozStoragePrivateHelpers.h"
27 StatementData(sqlite3_stmt
* aStatement
,
28 already_AddRefed
<BindingParamsArray
> aParamsArray
,
29 StorageBaseStatementInternal
* aStatementOwner
)
30 : mStatement(aStatement
),
31 mParamsArray(aParamsArray
),
32 mQueryStatusRecorded(false),
33 mStatementOwner(aStatementOwner
) {
34 MOZ_ASSERT(mStatementOwner
, "Must have a statement owner!");
36 StatementData(const StatementData
& aSource
)
37 : mStatement(aSource
.mStatement
),
38 mParamsArray(aSource
.mParamsArray
),
39 mQueryStatusRecorded(false),
40 mStatementOwner(aSource
.mStatementOwner
) {
41 MOZ_ASSERT(mStatementOwner
, "Must have a statement owner!");
43 StatementData() : mStatement(nullptr), mQueryStatusRecorded(false) {}
45 // We need to ensure that mParamsArray is released on the main thread,
46 // as the binding arguments may be XPConnect values, which are safe
47 // to release only on the main thread.
48 NS_ReleaseOnMainThread("StatementData::mParamsArray",
49 mParamsArray
.forget());
53 * Return the sqlite statement, fetching it from the storage statement. In
54 * the case of AsyncStatements this may actually create the statement
56 inline int getSqliteStatement(sqlite3_stmt
** _stmt
) {
58 int rc
= mStatementOwner
->getAsyncStatement(&mStatement
);
59 MaybeRecordQueryStatus(rc
);
60 NS_ENSURE_TRUE(rc
== SQLITE_OK
, rc
);
66 operator BindingParamsArray
*() const { return mParamsArray
; }
69 * NULLs out our sqlite3_stmt (it is held by the owner) after reseting it and
70 * clear all bindings to it. This is expected to occur on the async thread.
73 MOZ_ASSERT(mStatementOwner
, "Must have a statement owner!");
74 // In the AsyncStatement case we may never have populated mStatement if the
75 // AsyncExecuteStatements got canceled or a failure occurred in constructing
78 (void)::sqlite3_reset(mStatement
);
79 (void)::sqlite3_clear_bindings(mStatement
);
82 if (!mQueryStatusRecorded
) {
83 mStatementOwner
->getOwner()->RecordQueryStatus(SQLITE_OK
);
89 * Indicates if this statement has parameters to be bound before it is
92 * @return true if the statement has parameters to bind against, false
95 inline bool hasParametersToBeBound() const { return !!mParamsArray
; }
97 * Indicates the number of implicit statements generated by this statement
98 * requiring a transaction for execution. For example a single statement
99 * with N BindingParams will execute N implicit staments.
101 * @return number of statements requiring a transaction for execution.
103 * @note In the case of AsyncStatements this may actually create the
106 inline uint32_t needsTransaction() {
107 MOZ_ASSERT(!NS_IsMainThread());
108 // Be sure to use the getSqliteStatement helper, since sqlite3_stmt_readonly
109 // can only analyze prepared statements and AsyncStatements are prepared
112 int rc
= getSqliteStatement(&stmt
);
113 if (SQLITE_OK
!= rc
|| ::sqlite3_stmt_readonly(stmt
)) {
116 return mParamsArray
? mParamsArray
->length() : 1;
119 void MaybeRecordQueryStatus(int srv
) {
120 if (mQueryStatusRecorded
|| !isErrorCode(srv
)) {
124 mStatementOwner
->getOwner()->RecordQueryStatus(srv
);
125 mQueryStatusRecorded
= true;
129 sqlite3_stmt
* mStatement
;
130 RefPtr
<BindingParamsArray
> mParamsArray
;
131 bool mQueryStatusRecorded
;
134 * We hold onto a reference of the statement's owner so it doesn't get
135 * destroyed out from under us.
137 nsCOMPtr
<StorageBaseStatementInternal
> mStatementOwner
;
140 } // namespace storage
141 } // namespace mozilla
143 #endif // mozStorageStatementData_h