diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /dom/storage/SessionStorageCache.h | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/storage/SessionStorageCache.h')
-rw-r--r-- | dom/storage/SessionStorageCache.h | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/dom/storage/SessionStorageCache.h b/dom/storage/SessionStorageCache.h new file mode 100644 index 0000000000..54a8fc22c1 --- /dev/null +++ b/dom/storage/SessionStorageCache.h @@ -0,0 +1,114 @@ +/* -*- 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_SessionStorageCache_h +#define mozilla_dom_SessionStorageCache_h + +#include "mozilla/UniquePtr.h" +#include "mozilla/dom/LSWriteOptimizerImpl.h" +#include "nsDataHashtable.h" + +namespace mozilla { +namespace dom { + +class SSSetItemInfo; +class SSWriteInfo; +class SessionStorageCacheChild; + +/** + * Coalescing manipulation queue used by `SessionStorageCache`. Used by + * `SessionStorageCache` to buffer and coalesce manipulations before they + * are sent to the parent process. + */ +class SSWriteOptimizer final : public LSWriteOptimizer<nsAString, nsString> { + public: + void Enumerate(nsTArray<SSWriteInfo>& aWriteInfos); +}; + +class SessionStorageCache final { + public: + NS_INLINE_DECL_REFCOUNTING(SessionStorageCache) + + SessionStorageCache(); + + enum DataSetType { + eDefaultSetType, + eSessionSetType, + }; + + int64_t GetOriginQuotaUsage(DataSetType aDataSetType); + + uint32_t Length(DataSetType aDataSetType); + + void Key(DataSetType aDataSetType, uint32_t aIndex, nsAString& aResult); + + void GetItem(DataSetType aDataSetType, const nsAString& aKey, + nsAString& aResult); + + void GetKeys(DataSetType aDataSetType, nsTArray<nsString>& aKeys); + + nsresult SetItem(DataSetType aDataSetType, const nsAString& aKey, + const nsAString& aValue, nsString& aOldValue, + bool aRecordWriteInfo = true); + + nsresult RemoveItem(DataSetType aDataSetType, const nsAString& aKey, + nsString& aOldValue, bool aRecordWriteInfo = true); + + void Clear(DataSetType aDataSetType, bool aByUserInteraction = true, + bool aRecordWriteInfo = true); + + void ResetWriteInfos(DataSetType aDataSetType); + + already_AddRefed<SessionStorageCache> Clone() const; + + nsTArray<SSSetItemInfo> SerializeData(DataSetType aDataSetType); + + nsTArray<SSWriteInfo> SerializeWriteInfos(DataSetType aDataSetType); + + void DeserializeData(DataSetType aDataSetType, + const nsTArray<SSSetItemInfo>& aData); + + void DeserializeWriteInfos(DataSetType aDataSetType, + const nsTArray<SSWriteInfo>& aInfos); + + void SetActor(SessionStorageCacheChild* aActor); + + SessionStorageCacheChild* Actor() const { return mActor; } + + void ClearActor(); + + void SetLoadedOrCloned() { mLoadedOrCloned = true; } + + bool WasLoadedOrCloned() const { return mLoadedOrCloned; } + + private: + ~SessionStorageCache(); + + struct DataSet { + DataSet() : mOriginQuotaUsage(0) {} + + bool ProcessUsageDelta(int64_t aDelta); + + nsDataHashtable<nsStringHashKey, nsString> mKeys; + + SSWriteOptimizer mWriteOptimizer; + + int64_t mOriginQuotaUsage; + }; + + DataSet* Set(DataSetType aDataSetType); + + DataSet mDefaultSet; + DataSet mSessionSet; + + SessionStorageCacheChild* mActor; + bool mLoadedOrCloned; +}; + +} // namespace dom +} // namespace mozilla + +#endif // mozilla_dom_SessionStorageCache_h |