mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
206 lines
6.9 KiB
C++
206 lines
6.9 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 nsDOMStorageIPC_h___
|
|
#define nsDOMStorageIPC_h___
|
|
|
|
#include "mozilla/dom/PStorageChild.h"
|
|
#include "mozilla/dom/PStorageParent.h"
|
|
#include "DOMStorageDBThread.h"
|
|
#include "DOMStorageCache.h"
|
|
#include "DOMStorageObserver.h"
|
|
#include "mozilla/Mutex.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class DOMLocalStorageManager;
|
|
|
|
// Child side of the IPC protocol, exposes as DB interface but
|
|
// is responsible to send all requests to the parent process
|
|
// and expects asynchronous answers. Those are then transparently
|
|
// forwarded back to consumers on the child process.
|
|
class DOMStorageDBChild final : public DOMStorageDBBridge
|
|
, public PStorageChild
|
|
{
|
|
virtual ~DOMStorageDBChild();
|
|
|
|
public:
|
|
explicit DOMStorageDBChild(DOMLocalStorageManager* aManager);
|
|
|
|
NS_IMETHOD_(MozExternalRefCountType) AddRef(void);
|
|
NS_IMETHOD_(MozExternalRefCountType) Release(void);
|
|
|
|
void AddIPDLReference();
|
|
void ReleaseIPDLReference();
|
|
|
|
virtual nsresult Init();
|
|
virtual nsresult Shutdown();
|
|
|
|
virtual void AsyncPreload(DOMStorageCacheBridge* aCache, bool aPriority = false);
|
|
virtual void AsyncGetUsage(DOMStorageUsageBridge* aUsage);
|
|
|
|
virtual void SyncPreload(DOMStorageCacheBridge* aCache, bool aForceSync = false);
|
|
|
|
virtual nsresult AsyncAddItem(DOMStorageCacheBridge* aCache, const nsAString& aKey, const nsAString& aValue);
|
|
virtual nsresult AsyncUpdateItem(DOMStorageCacheBridge* aCache, const nsAString& aKey, const nsAString& aValue);
|
|
virtual nsresult AsyncRemoveItem(DOMStorageCacheBridge* aCache, const nsAString& aKey);
|
|
virtual nsresult AsyncClear(DOMStorageCacheBridge* aCache);
|
|
|
|
virtual void AsyncClearAll()
|
|
{
|
|
if (mScopesHavingData) {
|
|
mScopesHavingData->Clear(); /* NO-OP on the child process otherwise */
|
|
}
|
|
}
|
|
|
|
virtual void AsyncClearMatchingScope(const nsACString& aScope)
|
|
{ /* NO-OP on the child process */ }
|
|
|
|
virtual void AsyncFlush()
|
|
{ SendAsyncFlush(); }
|
|
|
|
virtual bool ShouldPreloadScope(const nsACString& aScope);
|
|
virtual void GetScopesHavingData(InfallibleTArray<nsCString>* aScopes)
|
|
{ NS_NOTREACHED("Not implemented for child process"); }
|
|
|
|
private:
|
|
bool RecvObserve(const nsCString& aTopic,
|
|
const nsCString& aScopePrefix);
|
|
bool RecvLoadItem(const nsCString& aScope,
|
|
const nsString& aKey,
|
|
const nsString& aValue);
|
|
bool RecvLoadDone(const nsCString& aScope,
|
|
const nsresult& aRv);
|
|
bool RecvScopesHavingData(nsTArray<nsCString>&& aScopes);
|
|
bool RecvLoadUsage(const nsCString& aScope,
|
|
const int64_t& aUsage);
|
|
bool RecvError(const nsresult& aRv);
|
|
|
|
nsTHashtable<nsCStringHashKey>& ScopesHavingData();
|
|
|
|
ThreadSafeAutoRefCnt mRefCnt;
|
|
NS_DECL_OWNINGTHREAD
|
|
|
|
// Held to get caches to forward answers to.
|
|
RefPtr<DOMLocalStorageManager> mManager;
|
|
|
|
// Scopes having data hash, for optimization purposes only
|
|
nsAutoPtr<nsTHashtable<nsCStringHashKey> > mScopesHavingData;
|
|
|
|
// List of caches waiting for preload. This ensures the contract that
|
|
// AsyncPreload call references the cache for time of the preload.
|
|
nsTHashtable<nsRefPtrHashKey<DOMStorageCacheBridge> > mLoadingCaches;
|
|
|
|
// Status of the remote database
|
|
nsresult mStatus;
|
|
|
|
bool mIPCOpen;
|
|
};
|
|
|
|
|
|
// Receives async requests from child processes and is responsible
|
|
// to send back responses from the DB thread. Exposes as a fake
|
|
// DOMStorageCache consumer.
|
|
// Also responsible for forwardning all chrome operation notifications
|
|
// such as cookie cleaning etc to the child process.
|
|
class DOMStorageDBParent final : public PStorageParent
|
|
, public DOMStorageObserverSink
|
|
{
|
|
virtual ~DOMStorageDBParent();
|
|
|
|
public:
|
|
DOMStorageDBParent();
|
|
|
|
virtual mozilla::ipc::IProtocol*
|
|
CloneProtocol(Channel* aChannel,
|
|
mozilla::ipc::ProtocolCloneContext* aCtx) override;
|
|
|
|
NS_IMETHOD_(MozExternalRefCountType) AddRef(void);
|
|
NS_IMETHOD_(MozExternalRefCountType) Release(void);
|
|
|
|
void AddIPDLReference();
|
|
void ReleaseIPDLReference();
|
|
|
|
bool IPCOpen() { return mIPCOpen; }
|
|
|
|
public:
|
|
// Fake cache class receiving async callbacks from DB thread, sending
|
|
// them back to appropriate cache object on the child process.
|
|
class CacheParentBridge : public DOMStorageCacheBridge {
|
|
public:
|
|
CacheParentBridge(DOMStorageDBParent* aParentDB, const nsACString& aScope)
|
|
: mParent(aParentDB), mScope(aScope), mLoaded(false), mLoadedCount(0) {}
|
|
virtual ~CacheParentBridge() {}
|
|
|
|
// DOMStorageCacheBridge
|
|
virtual const nsCString& Scope() const
|
|
{ return mScope; }
|
|
virtual bool Loaded()
|
|
{ return mLoaded; }
|
|
virtual uint32_t LoadedCount()
|
|
{ return mLoadedCount; }
|
|
|
|
virtual bool LoadItem(const nsAString& aKey, const nsString& aValue);
|
|
virtual void LoadDone(nsresult aRv);
|
|
virtual void LoadWait();
|
|
|
|
private:
|
|
RefPtr<DOMStorageDBParent> mParent;
|
|
nsCString mScope;
|
|
bool mLoaded;
|
|
uint32_t mLoadedCount;
|
|
};
|
|
|
|
// Fake usage class receiving async callbacks from DB thread
|
|
class UsageParentBridge : public DOMStorageUsageBridge
|
|
{
|
|
public:
|
|
UsageParentBridge(DOMStorageDBParent* aParentDB, const nsACString& aScope)
|
|
: mParent(aParentDB), mScope(aScope) {}
|
|
virtual ~UsageParentBridge() {}
|
|
|
|
// DOMStorageUsageBridge
|
|
virtual const nsCString& Scope() { return mScope; }
|
|
virtual void LoadUsage(const int64_t usage);
|
|
|
|
private:
|
|
RefPtr<DOMStorageDBParent> mParent;
|
|
nsCString mScope;
|
|
};
|
|
|
|
private:
|
|
// IPC
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
|
bool RecvAsyncPreload(const nsCString& aScope, const bool& aPriority) override;
|
|
bool RecvPreload(const nsCString& aScope, const uint32_t& aAlreadyLoadedCount,
|
|
InfallibleTArray<nsString>* aKeys, InfallibleTArray<nsString>* aValues,
|
|
nsresult* aRv) override;
|
|
bool RecvAsyncGetUsage(const nsCString& aScope) override;
|
|
bool RecvAsyncAddItem(const nsCString& aScope, const nsString& aKey, const nsString& aValue) override;
|
|
bool RecvAsyncUpdateItem(const nsCString& aScope, const nsString& aKey, const nsString& aValue) override;
|
|
bool RecvAsyncRemoveItem(const nsCString& aScope, const nsString& aKey) override;
|
|
bool RecvAsyncClear(const nsCString& aScope) override;
|
|
bool RecvAsyncFlush() override;
|
|
|
|
// DOMStorageObserverSink
|
|
virtual nsresult Observe(const char* aTopic, const nsACString& aScopePrefix) override;
|
|
|
|
private:
|
|
CacheParentBridge* NewCache(const nsACString& aScope);
|
|
|
|
ThreadSafeAutoRefCnt mRefCnt;
|
|
NS_DECL_OWNINGTHREAD
|
|
|
|
// True when IPC channel is open and Send*() methods are OK to use.
|
|
bool mIPCOpen;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif
|