mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:11:03 +00:00
b5ee72fe09
- Bug 1265956 - Assert that no entry is found in HashTable::putNew. (r=terrence) (8770735325) - Bug 1265483 - Use WeakCache to automate sweeping of ObjectGroupComparment::NewTable; r=jonco (e88fa842ab) - Bug 1198093 - Part 1: Expose indexedDB to System with [Exposed=System]. r=khuey (2a20a6ecd0) - Bug 1198093 - Part 2: Set Default Locale Value in ICU Canonicalization Form. r=khuey (1e1cd981ce) - Bug 1263871 - Fix OOM handling in while resolving function name r=shu (44114a7e8d) - Bug 1263270 - Sort census reports by smallest node ID counted, rather than number of nodes counted. r=jimb (08d4a431a7) - Bug 1263218 - Fix possbile race under oomTest involving background threads r=terrence (82c1e3b698) - Bug 1256488 - Add explicit casts to fix MSVC warning C4365. r=fitzgen (b9bb6b52c5) - Bug 1235677 - Add assertion to catch unsafe concurrent use of AutoEnterOOMUnsafeRegion r=terrence (2e0876578f) - Bug 1263902 - check return value from JS_smprintf. r=bbouvier, r=shu (df1d9b5e14) - Bug 1262208: Generalize the disabled compilation mode message for asm.js; r=luke (9153b2c5ba) - Bug 1259903: Baldr: unify Select true and false types instead of checking against each other; r=luke (5f89398199) - Bug 1253344: Remove unused pushPhi/popPhi in WasmIonCompile; r=luke (244967401c) - Bug 933257 - Part 1: Add a script to import and update fdlibm from FreeBSD. r=jwalden (37c8a85771) - Bug 933257 - Part 2: Add patches for fdlibm. r=jwalden (bc0dce94a0) - Bug 933257 - Part 2.1: Import fdlibm from FreeBSD (revision bcea9d50b15e4f0027a5dd526e0e2a612238471e). r=jwalden (223f6d6ce5) - Bug 933257 - Part 3: Add build scripts for fdlibm. r=jwalden (893f740423) - Bug 933257 - Part 4: Link fdlibm in SpiderMonkey. r=jwalden (9f1395258a) - Bug 933257 - Part 5: Use fdlibm in jsmath.cpp. r=jwalden (9d962657ab) - Bug 933257 - Part 6: Remove unused math polyfill. r=jwalden (cf284ad4e5) - Bug 1225024 - Allow sloppy tolerance in ecma_6/Math/log10-approx.js. r=jorendorff (7df3bf46dd) - Bug 933257 - Part 7: Remove or reduce sloppy_tolerance in Math function tests. r=jorendorff (86b978eb14) - Bug 933257 - Part 8: Add license for k_exp.cpp to about:license. r=gerv (513012fbb9) - Bug 933257 - Part 9: Use fdlibm in asm.js. r=luke (46bedc10d0) - Bug 1256490 - Disable C4302 to unblock compilation on VS2015; r=bobowen (7fb6820241) - Bug 1256499 - Disable C4311 and C4312 to unblock compilation on VS2015; r=bobowen (a9b3b01410) - Bug 1257036 - Disable C4302 to unblock compilation on VS2015; r=bobowen (307af58682) - Bug 1124033 - Disable C4311 and C4312 in directories exhibiting warnings; r=ehsan (b6ecd1f8e7) - Bug 1252931 - Remove INSTALL/PP_TARGETS from js/src/*; r=gps (a1e1d3bb82) - Bug 1258908: Rename TYPE_MOZILLA_UI to TYPE_MOZILLA_PARENT. r=jld (29aef56b8e) - Bug 1203835 - Don't ship replace_jemalloc. r=njn (249f927cf5) - bug 1259753 - fix some C++ unittests to use ScopedXPCOM to init XPCOM. r=ms2ger (a908216277)
229 lines
5.0 KiB
C++
229 lines
5.0 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/. */
|
|
|
|
#ifndef mozilla_dom_indexeddatabasemanager_h__
|
|
#define mozilla_dom_indexeddatabasemanager_h__
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "js/TypeDecls.h"
|
|
#include "mozilla/Atomics.h"
|
|
#include "mozilla/dom/quota/PersistenceType.h"
|
|
#include "mozilla/Mutex.h"
|
|
#include "nsClassHashtable.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsHashKeys.h"
|
|
#include "nsITimer.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class EventChainPostVisitor;
|
|
|
|
namespace dom {
|
|
|
|
class IDBFactory;
|
|
|
|
namespace indexedDB {
|
|
|
|
class FileManager;
|
|
class FileManagerInfo;
|
|
|
|
} // namespace indexedDB
|
|
|
|
class IndexedDatabaseManager final
|
|
: public nsIObserver
|
|
, public nsITimerCallback
|
|
{
|
|
typedef mozilla::dom::quota::PersistenceType PersistenceType;
|
|
typedef mozilla::dom::indexedDB::FileManager FileManager;
|
|
typedef mozilla::dom::indexedDB::FileManagerInfo FileManagerInfo;
|
|
|
|
public:
|
|
enum LoggingMode
|
|
{
|
|
Logging_Disabled = 0,
|
|
Logging_Concise,
|
|
Logging_Detailed,
|
|
Logging_ConciseProfilerMarks,
|
|
Logging_DetailedProfilerMarks
|
|
};
|
|
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIOBSERVER
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
// Returns a non-owning reference.
|
|
static IndexedDatabaseManager*
|
|
GetOrCreate();
|
|
|
|
// Returns a non-owning reference.
|
|
static IndexedDatabaseManager*
|
|
Get();
|
|
|
|
static bool
|
|
IsClosed();
|
|
|
|
static bool
|
|
IsMainProcess()
|
|
#ifdef DEBUG
|
|
;
|
|
#else
|
|
{
|
|
return sIsMainProcess;
|
|
}
|
|
#endif
|
|
|
|
static bool
|
|
InLowDiskSpaceMode()
|
|
#ifdef DEBUG
|
|
;
|
|
#else
|
|
{
|
|
return !!sLowDiskSpaceMode;
|
|
}
|
|
#endif
|
|
|
|
static bool
|
|
InTestingMode();
|
|
|
|
static bool
|
|
FullSynchronous();
|
|
|
|
static LoggingMode
|
|
GetLoggingMode()
|
|
#ifdef DEBUG
|
|
;
|
|
#else
|
|
{
|
|
return sLoggingMode;
|
|
}
|
|
#endif
|
|
|
|
static mozilla::LogModule*
|
|
GetLoggingModule()
|
|
#ifdef DEBUG
|
|
;
|
|
#else
|
|
{
|
|
return sLoggingModule;
|
|
}
|
|
#endif
|
|
|
|
static bool
|
|
ExperimentalFeaturesEnabled();
|
|
|
|
static bool
|
|
ExperimentalFeaturesEnabled(JSContext* aCx, JSObject* aGlobal);
|
|
|
|
static bool
|
|
IsFileHandleEnabled();
|
|
|
|
already_AddRefed<FileManager>
|
|
GetFileManager(PersistenceType aPersistenceType,
|
|
const nsACString& aOrigin,
|
|
const nsAString& aDatabaseName);
|
|
|
|
void
|
|
AddFileManager(FileManager* aFileManager);
|
|
|
|
void
|
|
InvalidateAllFileManagers();
|
|
|
|
void
|
|
InvalidateFileManagers(PersistenceType aPersistenceType,
|
|
const nsACString& aOrigin);
|
|
|
|
void
|
|
InvalidateFileManager(PersistenceType aPersistenceType,
|
|
const nsACString& aOrigin,
|
|
const nsAString& aDatabaseName);
|
|
|
|
nsresult
|
|
AsyncDeleteFile(FileManager* aFileManager,
|
|
int64_t aFileId);
|
|
|
|
// Don't call this method in real code, it blocks the main thread!
|
|
// It is intended to be used by mochitests to test correctness of the special
|
|
// reference counting of stored blobs/files.
|
|
nsresult
|
|
BlockAndGetFileReferences(PersistenceType aPersistenceType,
|
|
const nsACString& aOrigin,
|
|
const nsAString& aDatabaseName,
|
|
int64_t aFileId,
|
|
int32_t* aRefCnt,
|
|
int32_t* aDBRefCnt,
|
|
int32_t* aSliceRefCnt,
|
|
bool* aResult);
|
|
|
|
nsresult
|
|
FlushPendingFileDeletions();
|
|
|
|
#ifdef ENABLE_INTL_API
|
|
static const nsCString&
|
|
GetLocale();
|
|
#endif
|
|
|
|
static mozilla::Mutex&
|
|
FileMutex()
|
|
{
|
|
IndexedDatabaseManager* mgr = Get();
|
|
NS_ASSERTION(mgr, "Must have a manager here!");
|
|
|
|
return mgr->mFileMutex;
|
|
}
|
|
|
|
static nsresult
|
|
CommonPostHandleEvent(EventChainPostVisitor& aVisitor, IDBFactory* aFactory);
|
|
|
|
static bool
|
|
ResolveSandboxBinding(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
|
|
|
|
static bool
|
|
DefineIndexedDB(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
|
|
|
|
private:
|
|
IndexedDatabaseManager();
|
|
~IndexedDatabaseManager();
|
|
|
|
nsresult
|
|
Init();
|
|
|
|
void
|
|
Destroy();
|
|
|
|
static void
|
|
LoggingModePrefChangedCallback(const char* aPrefName, void* aClosure);
|
|
|
|
nsCOMPtr<nsITimer> mDeleteTimer;
|
|
|
|
// Maintains a list of all file managers per origin. This list isn't
|
|
// protected by any mutex but it is only ever touched on the IO thread.
|
|
nsClassHashtable<nsCStringHashKey, FileManagerInfo> mFileManagerInfos;
|
|
|
|
nsClassHashtable<nsRefPtrHashKey<FileManager>,
|
|
nsTArray<int64_t>> mPendingDeleteInfos;
|
|
|
|
// Lock protecting FileManager.mFileInfos.
|
|
// It's s also used to atomically update FileInfo.mRefCnt, FileInfo.mDBRefCnt
|
|
// and FileInfo.mSliceRefCnt
|
|
mozilla::Mutex mFileMutex;
|
|
|
|
#ifdef ENABLE_INTL_API
|
|
nsCString mLocale;
|
|
#endif
|
|
|
|
static bool sIsMainProcess;
|
|
static bool sFullSynchronousMode;
|
|
static LazyLogModule sLoggingModule;
|
|
static Atomic<LoggingMode> sLoggingMode;
|
|
static mozilla::Atomic<bool> sLowDiskSpaceMode;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_indexeddatabasemanager_h__
|