mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
59e31c9007
- Bug 1182987 - Part 1: Remove unreferenced files immediately; r=baku (3ced56ca25) - Bug 1182987 - Part 2: Add getQuotaObjects() to mozIStorageConnection; r=mak (64b4dc418c) - Bug 1182987 - Part 3: Add "cleanup" transaction with disabled quota checks and vacuuming/checkpointing after commit; r=baku (7c19f28ae2) - Bug 1182987 - Part 4: Add a test for QuotaExceededError recovery and the new "cleanup" transaction type; r=baku (f91935e737) - Bug 1182987 - Part 5: Change mode of "readwrite" transaction to "cleanup" after QuotaExceeded is fired; r=baku (79d709970d) - Bug 1257725 part 3. Get rid of ThreadsafeAutoJSContext usage in Promise code. r=bholley (405d3c03d4) - Bug 1257725 part 1. Get rid of ThreadsafeAutoJSContext usage in JSEventHandler::HandleEvent. r=smaug (3222a73565) - Bug 1257725 part 4. Get rid of ThreadsafeAutoJSContext usage in IndexedDB code, except for IDBRequest::CaptureCaller. r=khuey (8ad88560f0) - Bug 1257725 part 5. Get rid of ThreadsafeAutoJSContext usage in IDBRequest::CaptureCaller. r=khuey (50a1f05ec9) - Bug 1257725 part 6. Get rid of ThreadsafeAutoJSContext. r=bholley (8968c69fcc) - Bug 1247420 - part1: removeContentState. r=smaug (6c7a54b58e) - Bug 1247420 - part2: IPC hover state management for select. r=Felipc (c7809aec7c) - Bug 1223533 - Don't hide the select popup on irrelevant pagehide events. r=mconley (0cf218515a) - Bug 1253486, [e10s only] hide select popups when the select element is removed, r=mconley (8a7049b6f1) - Bug 1180827 - Fix reuse of previous search results. r=MattN (6b4e65d318) - Bug 1242208 - Fix cached form history results with a datalist present. r=MattN (10078ada31) - Bug 1252074 - test_form_autocomplete.html and test_form_autocomplete_with_list.html should pass on e10s. r=paolo (8a9cf4a5f1) - Bug 1260441 - Never pass a null js context to OpenCursor() r=bz (8d818b0257) - Bug 1170045 - part 2 - use SegmentedVector in the DeferredFinalize implementation; r=mccr8 (3954a5e390) - Bug 1265770. Don't try to get a prototype for the interface object for an interface that's [NoInterfaceObject], since it's just unnecessary work that can't even be done at all in some cases (e.g. when the parent interface is also [NoInterfaceObject]). r=peterv (53d3077e31) - Bug 1264187 - check for a ProtoAndIfaceCache before blindly destroying it; r=bz (97536e815b) - Bug 1104955 part 3. Pass our unscopable names to CreateInterfaceObjects and have it define the right thing on the prototype. r=khuey (48386ab6b5) - Bug 934889: Use JS_InitStandardClasses everywhere now that it works. r=bz (01d545259a) - Bug 1258585. Remove some remaining vestiges of WebIDL quickstubs. r=peterv (3fa02388f1)
287 lines
6.7 KiB
C++
287 lines
6.7 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#include "mozilla/dom/cache/Connection.h"
|
|
|
|
#include "mozilla/dom/cache/DBSchema.h"
|
|
#include "mozStorageHelper.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace cache {
|
|
|
|
using mozilla::dom::quota::QuotaObject;
|
|
|
|
NS_IMPL_ISUPPORTS(cache::Connection, mozIStorageAsyncConnection,
|
|
mozIStorageConnection);
|
|
|
|
Connection::Connection(mozIStorageConnection* aBase)
|
|
: mBase(aBase)
|
|
, mClosed(false)
|
|
{
|
|
MOZ_ASSERT(mBase);
|
|
}
|
|
|
|
Connection::~Connection()
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(Connection);
|
|
MOZ_ALWAYS_SUCCEEDS(Close());
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::Close()
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(Connection);
|
|
|
|
if (mClosed) {
|
|
return NS_OK;
|
|
}
|
|
mClosed = true;
|
|
|
|
// If we are closing here, then Cache must not have a transaction
|
|
// open anywhere else. This should be guaranteed to succeed.
|
|
MOZ_ALWAYS_SUCCEEDS(db::IncrementalVacuum(this));
|
|
|
|
return mBase->Close();
|
|
}
|
|
|
|
// The following methods are all boilerplate that either forward to the
|
|
// base connection or block the method. All the async execution methods
|
|
// are blocked because Cache does not use them and they would require more
|
|
// work to wrap properly.
|
|
|
|
// mozIStorageAsyncConnection methods
|
|
|
|
NS_IMETHODIMP
|
|
Connection::AsyncClose(mozIStorageCompletionCallback*)
|
|
{
|
|
// async methods are not supported
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::AsyncClone(bool, mozIStorageCompletionCallback*)
|
|
{
|
|
// async methods are not supported
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetDatabaseFile(nsIFile** aFileOut)
|
|
{
|
|
return mBase->GetDatabaseFile(aFileOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::CreateAsyncStatement(const nsACString&, mozIStorageAsyncStatement**)
|
|
{
|
|
// async methods are not supported
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::ExecuteAsync(mozIStorageBaseStatement**, uint32_t,
|
|
mozIStorageStatementCallback*,
|
|
mozIStoragePendingStatement**)
|
|
{
|
|
// async methods are not supported
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::ExecuteSimpleSQLAsync(const nsACString&,
|
|
mozIStorageStatementCallback*,
|
|
mozIStoragePendingStatement**)
|
|
{
|
|
// async methods are not supported
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::CreateFunction(const nsACString& aFunctionName,
|
|
int32_t aNumArguments,
|
|
mozIStorageFunction* aFunction)
|
|
{
|
|
// async methods are not supported
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::CreateAggregateFunction(const nsACString& aFunctionName,
|
|
int32_t aNumArguments,
|
|
mozIStorageAggregateFunction* aFunction)
|
|
{
|
|
return mBase->CreateAggregateFunction(aFunctionName, aNumArguments,
|
|
aFunction);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::RemoveFunction(const nsACString& aFunctionName)
|
|
{
|
|
return mBase->RemoveFunction(aFunctionName);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::SetProgressHandler(int32_t aGranularity,
|
|
mozIStorageProgressHandler* aHandler,
|
|
mozIStorageProgressHandler** aHandlerOut)
|
|
{
|
|
return mBase->SetProgressHandler(aGranularity, aHandler, aHandlerOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::RemoveProgressHandler(mozIStorageProgressHandler** aHandlerOut)
|
|
{
|
|
return mBase->RemoveProgressHandler(aHandlerOut);
|
|
}
|
|
|
|
// mozIStorageConnection methods
|
|
|
|
NS_IMETHODIMP
|
|
Connection::Clone(bool aReadOnly, mozIStorageConnection** aConnectionOut)
|
|
{
|
|
nsCOMPtr<mozIStorageConnection> conn;
|
|
nsresult rv = mBase->Clone(aReadOnly, getter_AddRefs(conn));
|
|
if (NS_WARN_IF(NS_FAILED(rv))) { return rv; }
|
|
|
|
nsCOMPtr<mozIStorageConnection> wrapped = new Connection(conn);
|
|
wrapped.forget(aConnectionOut);
|
|
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetDefaultPageSize(int32_t* aSizeOut)
|
|
{
|
|
return mBase->GetDefaultPageSize(aSizeOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetConnectionReady(bool* aReadyOut)
|
|
{
|
|
return mBase->GetConnectionReady(aReadyOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetLastInsertRowID(int64_t* aRowIdOut)
|
|
{
|
|
return mBase->GetLastInsertRowID(aRowIdOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetAffectedRows(int32_t* aCountOut)
|
|
{
|
|
return mBase->GetAffectedRows(aCountOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetLastError(int32_t* aErrorOut)
|
|
{
|
|
return mBase->GetLastError(aErrorOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetLastErrorString(nsACString& aErrorOut)
|
|
{
|
|
return mBase->GetLastErrorString(aErrorOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetSchemaVersion(int32_t* aVersionOut)
|
|
{
|
|
return mBase->GetSchemaVersion(aVersionOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::SetSchemaVersion(int32_t aVersion)
|
|
{
|
|
return mBase->SetSchemaVersion(aVersion);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::CreateStatement(const nsACString& aQuery,
|
|
mozIStorageStatement** aStatementOut)
|
|
{
|
|
return mBase->CreateStatement(aQuery, aStatementOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::ExecuteSimpleSQL(const nsACString& aQuery)
|
|
{
|
|
return mBase->ExecuteSimpleSQL(aQuery);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::TableExists(const nsACString& aTableName, bool* aExistsOut)
|
|
{
|
|
return mBase->TableExists(aTableName, aExistsOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::IndexExists(const nsACString& aIndexName, bool* aExistsOut)
|
|
{
|
|
return mBase->IndexExists(aIndexName, aExistsOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetTransactionInProgress(bool* aResultOut)
|
|
{
|
|
return mBase->GetTransactionInProgress(aResultOut);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::BeginTransaction()
|
|
{
|
|
return mBase->BeginTransaction();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::BeginTransactionAs(int32_t aType)
|
|
{
|
|
return mBase->BeginTransactionAs(aType);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::CommitTransaction()
|
|
{
|
|
return mBase->CommitTransaction();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::RollbackTransaction()
|
|
{
|
|
return mBase->RollbackTransaction();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::CreateTable(const char* aTable, const char* aSchema)
|
|
{
|
|
return mBase->CreateTable(aTable, aSchema);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::SetGrowthIncrement(int32_t aIncrement, const nsACString& aDatabase)
|
|
{
|
|
return mBase->SetGrowthIncrement(aIncrement, aDatabase);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::EnableModule(const nsACString& aModule)
|
|
{
|
|
return mBase->EnableModule(aModule);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
Connection::GetQuotaObjects(QuotaObject** aDatabaseQuotaObject,
|
|
QuotaObject** aJournalQuotaObject)
|
|
{
|
|
return mBase->GetQuotaObjects(aDatabaseQuotaObject, aJournalQuotaObject);
|
|
}
|
|
|
|
} // namespace cache
|
|
} // namespace dom
|
|
} // namespace mozilla
|