| /* |
| * Copyright (C) 2007, 2008, 2013 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * 3. Neither the name of Apple Inc. ("Apple") nor the names of |
| * its contributors may be used to endorse or promote products derived |
| * from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "SQLTransaction.h" |
| |
| #include "Database.h" |
| #include "DatabaseAuthorizer.h" |
| #include "DatabaseContext.h" |
| #include "ExceptionCode.h" |
| #include "Logging.h" |
| #include "SQLError.h" |
| #include "SQLStatement.h" |
| #include "SQLStatementCallback.h" |
| #include "SQLStatementErrorCallback.h" |
| #include "SQLTransactionBackend.h" |
| #include "SQLTransactionCallback.h" |
| #include "SQLTransactionClient.h" // FIXME: Should be used in the backend only. |
| #include "SQLTransactionErrorCallback.h" |
| #include "VoidCallback.h" |
| #include <wtf/StdLibExtras.h> |
| #include <wtf/Vector.h> |
| |
| namespace WebCore { |
| |
| Ref<SQLTransaction> SQLTransaction::create(Ref<Database>&& database, RefPtr<SQLTransactionCallback>&& callback, RefPtr<VoidCallback>&& successCallback, RefPtr<SQLTransactionErrorCallback>&& errorCallback, bool readOnly) |
| { |
| return adoptRef(*new SQLTransaction(WTF::move(database), WTF::move(callback), WTF::move(successCallback), WTF::move(errorCallback), readOnly)); |
| } |
| |
| SQLTransaction::SQLTransaction(Ref<Database>&& database, RefPtr<SQLTransactionCallback>&& callback, RefPtr<VoidCallback>&& successCallback, RefPtr<SQLTransactionErrorCallback>&& errorCallback, bool readOnly) |
| : m_database(WTF::move(database)) |
| , m_callbackWrapper(WTF::move(callback), m_database->scriptExecutionContext()) |
| , m_successCallbackWrapper(WTF::move(successCallback), m_database->scriptExecutionContext()) |
| , m_errorCallbackWrapper(WTF::move(errorCallback), m_database->scriptExecutionContext()) |
| , m_executeSqlAllowed(false) |
| , m_readOnly(readOnly) |
| { |
| } |
| |
| SQLTransaction::~SQLTransaction() |
| { |
| } |
| |
| bool SQLTransaction::hasCallback() const |
| { |
| return m_callbackWrapper.hasCallback(); |
| } |
| |
| bool SQLTransaction::hasSuccessCallback() const |
| { |
| return m_successCallbackWrapper.hasCallback(); |
| } |
| |
| bool SQLTransaction::hasErrorCallback() const |
| { |
| return m_errorCallbackWrapper.hasCallback(); |
| } |
| |
| void SQLTransaction::setBackend(SQLTransactionBackend* backend) |
| { |
| ASSERT(!m_backend); |
| m_backend = backend; |
| } |
| |
| SQLTransaction::StateFunction SQLTransaction::stateFunctionFor(SQLTransactionState state) |
| { |
| static const StateFunction stateFunctions[] = { |
| &SQLTransaction::unreachableState, // 0. illegal |
| &SQLTransaction::unreachableState, // 1. idle |
| &SQLTransaction::unreachableState, // 2. acquireLock |
| &SQLTransaction::unreachableState, // 3. openTransactionAndPreflight |
| &SQLTransaction::unreachableState, // 4. runStatements |
| &SQLTransaction::unreachableState, // 5. postflightAndCommit |
| &SQLTransaction::unreachableState, // 6. cleanupAndTerminate |
| &SQLTransaction::unreachableState, // 7. cleanupAfterTransactionErrorCallback |
| &SQLTransaction::deliverTransactionCallback, // 8. |
| &SQLTransaction::deliverTransactionErrorCallback, // 9. |
| &SQLTransaction::deliverStatementCallback, // 10. |
| &SQLTransaction::deliverQuotaIncreaseCallback, // 11. |
| &SQLTransaction::deliverSuccessCallback // 12. |
| }; |
| |
| ASSERT(WTF_ARRAY_LENGTH(stateFunctions) == static_cast<int>(SQLTransactionState::NumberOfStates)); |
| ASSERT(state < SQLTransactionState::NumberOfStates); |
| |
| return stateFunctions[static_cast<int>(state)]; |
| } |
| |
| // requestTransitToState() can be called from the backend. Hence, it should |
| // NOT be modifying SQLTransactionBackend in general. The only safe field to |
| // modify is m_requestedState which is meant for this purpose. |
| void SQLTransaction::requestTransitToState(SQLTransactionState nextState) |
| { |
| LOG(StorageAPI, "Scheduling %s for transaction %p\n", nameForSQLTransactionState(nextState), this); |
| m_requestedState = nextState; |
| m_database->scheduleTransactionCallback(this); |
| } |
| |
| void SQLTransaction::deliverTransactionCallback() |
| { |
| bool shouldDeliverErrorCallback = false; |
| |
| // Spec 4.3.2 4: Invoke the transaction callback with the new SQLTransaction object |
| RefPtr<SQLTransactionCallback> callback = m_callbackWrapper.unwrap(); |
| if (callback) { |
| m_executeSqlAllowed = true; |
| shouldDeliverErrorCallback = !callback->handleEvent(this); |
| m_executeSqlAllowed = false; |
| } |
| |
| // Spec 4.3.2 5: If the transaction callback was null or raised an exception, jump to the error callback |
| if (shouldDeliverErrorCallback) { |
| m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception"); |
| return deliverTransactionErrorCallback(); |
| } |
| |
| m_backend->requestTransitToState(SQLTransactionState::RunStatements); |
| } |
| |
| void SQLTransaction::deliverTransactionErrorCallback() |
| { |
| // Spec 4.3.2.10: If exists, invoke error callback with the last |
| // error to have occurred in this transaction. |
| RefPtr<SQLTransactionErrorCallback> errorCallback = m_errorCallbackWrapper.unwrap(); |
| if (errorCallback) { |
| // If we get here with an empty m_transactionError, then the backend |
| // must be waiting in the idle state waiting for this state to finish. |
| // Hence, it's thread safe to fetch the backend transactionError without |
| // a lock. |
| if (!m_transactionError) |
| m_transactionError = m_backend->transactionError(); |
| |
| ASSERT(m_transactionError); |
| errorCallback->handleEvent(m_transactionError.get()); |
| |
| m_transactionError = nullptr; |
| } |
| |
| clearCallbackWrappers(); |
| |
| // Spec 4.3.2.10: Rollback the transaction. |
| m_backend->requestTransitToState(SQLTransactionState::CleanupAfterTransactionErrorCallback); |
| } |
| |
| void SQLTransaction::deliverStatementCallback() |
| { |
| // Spec 4.3.2.6.6 and 4.3.2.6.3: If the statement callback went wrong, jump to the transaction error callback |
| // Otherwise, continue to loop through the statement queue |
| m_executeSqlAllowed = true; |
| |
| SQLStatement* currentStatement = m_backend->currentStatement(); |
| ASSERT(currentStatement); |
| |
| bool result = currentStatement->performCallback(this); |
| |
| m_executeSqlAllowed = false; |
| |
| if (result) { |
| m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false"); |
| |
| if (m_errorCallbackWrapper.hasCallback()) |
| return deliverTransactionErrorCallback(); |
| |
| // No error callback, so fast-forward to: |
| // Transaction Step 11 - Rollback the transaction. |
| m_backend->requestTransitToState(SQLTransactionState::CleanupAfterTransactionErrorCallback); |
| return; |
| } |
| |
| m_backend->requestTransitToState(SQLTransactionState::RunStatements); |
| } |
| |
| void SQLTransaction::deliverQuotaIncreaseCallback() |
| { |
| ASSERT(m_backend->currentStatement()); |
| |
| bool shouldRetryCurrentStatement = m_database->transactionClient()->didExceedQuota(&database()); |
| m_backend->setShouldRetryCurrentStatement(shouldRetryCurrentStatement); |
| |
| m_backend->requestTransitToState(SQLTransactionState::RunStatements); |
| } |
| |
| void SQLTransaction::deliverSuccessCallback() |
| { |
| // Spec 4.3.2.8: Deliver success callback. |
| RefPtr<VoidCallback> successCallback = m_successCallbackWrapper.unwrap(); |
| if (successCallback) |
| successCallback->handleEvent(); |
| |
| clearCallbackWrappers(); |
| |
| // Schedule a "post-success callback" step to return control to the database thread in case there |
| // are further transactions queued up for this Database |
| m_backend->requestTransitToState(SQLTransactionState::CleanupAndTerminate); |
| } |
| |
| // This state function is used as a stub function to plug unimplemented states |
| // in the state dispatch table. They are unimplemented because they should |
| // never be reached in the course of correct execution. |
| void SQLTransaction::unreachableState() |
| { |
| ASSERT_NOT_REACHED(); |
| } |
| |
| void SQLTransaction::performPendingCallback() |
| { |
| computeNextStateAndCleanupIfNeeded(); |
| runStateMachine(); |
| } |
| |
| void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, RefPtr<SQLStatementCallback>&& callback, RefPtr<SQLStatementErrorCallback>&& callbackError, ExceptionCode& ec) |
| { |
| if (!m_executeSqlAllowed || !m_database->opened()) { |
| ec = INVALID_STATE_ERR; |
| return; |
| } |
| |
| int permissions = DatabaseAuthorizer::ReadWriteMask; |
| if (!m_database->databaseContext()->allowDatabaseAccess()) |
| permissions |= DatabaseAuthorizer::NoAccessMask; |
| else if (m_readOnly) |
| permissions |= DatabaseAuthorizer::ReadOnlyMask; |
| |
| auto statement = std::make_unique<SQLStatement>(m_database, sqlStatement, arguments, WTF::move(callback), WTF::move(callbackError), permissions); |
| m_backend->executeSQL(WTF::move(statement)); |
| } |
| |
| void SQLTransaction::computeNextStateAndCleanupIfNeeded() |
| { |
| // Only honor the requested state transition if we're not supposed to be |
| // cleaning up and shutting down: |
| if (m_database->opened()) { |
| setStateToRequestedState(); |
| ASSERT(m_nextState == SQLTransactionState::End |
| || m_nextState == SQLTransactionState::DeliverTransactionCallback |
| || m_nextState == SQLTransactionState::DeliverTransactionErrorCallback |
| || m_nextState == SQLTransactionState::DeliverStatementCallback |
| || m_nextState == SQLTransactionState::DeliverQuotaIncreaseCallback |
| || m_nextState == SQLTransactionState::DeliverSuccessCallback); |
| |
| LOG(StorageAPI, "Callback %s\n", nameForSQLTransactionState(m_nextState)); |
| return; |
| } |
| |
| clearCallbackWrappers(); |
| m_backend->requestTransitToState(SQLTransactionState::CleanupAndTerminate); |
| } |
| |
| void SQLTransaction::clearCallbackWrappers() |
| { |
| // Release the unneeded callbacks, to break reference cycles. |
| m_callbackWrapper.clear(); |
| m_successCallbackWrapper.clear(); |
| m_errorCallbackWrapper.clear(); |
| } |
| |
| } // namespace WebCore |