/* -*- 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_indexeddb_actorsparentcommon_h__ #define mozilla_dom_indexeddb_actorsparentcommon_h__ // Declares functions and types used locally within IndexedDB, which are defined // in ActorsParent.cpp #include #include #include #include "ErrorList.h" #include "mozilla/Result.h" #include "mozilla/Span.h" #include "mozilla/UniquePtr.h" #include "mozilla/UniquePtrExtensions.h" #include "mozilla/dom/indexedDB/Key.h" #include "nscore.h" #include "nsISupports.h" #include "nsStringFwd.h" #include "nsTArray.h" struct JSContext; class JSObject; class mozIStorageConnection; class mozIStorageStatement; class mozIStorageValueArray; namespace mozilla::dom::indexedDB { class DatabaseFileManager; struct StructuredCloneFileParent; struct StructuredCloneReadInfoParent; extern const nsLiteralString kJournalDirectoryName; // At the moment, the encrypted stream block size is assumed to be unchangeable // between encrypting and decrypting blobs. This assumptions holds as long as we // only encrypt in private browsing mode, but when we support encryption for // persistent storage, this needs to be changed. constexpr uint32_t kEncryptedStreamBlockSize = 4096; using IndexOrObjectStoreId = int64_t; struct IndexDataValue final { IndexOrObjectStoreId mIndexId; Key mPosition; Key mLocaleAwarePosition; bool mUnique; IndexDataValue(); #ifdef NS_BUILD_REFCNT_LOGGING IndexDataValue(IndexDataValue&& aOther); MOZ_COUNTED_DTOR(IndexDataValue) #endif IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, const Key& aPosition); IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, const Key& aPosition, const Key& aLocaleAwarePosition); bool operator==(const IndexDataValue& aOther) const; bool operator<(const IndexDataValue& aOther) const; }; JSObject* GetSandbox(JSContext* aCx); // The success value of the Result is a a pair of a pointer to the compressed // index data values buffer and its size. The function does not return a // nsTArray because the result is typically passed to a function that acquires // ownership of the pointer. Result, uint32_t>, nsresult> MakeCompressedIndexDataValues(const nsTArray& aIndexValues); // aOutIndexValues is an output parameter, since its storage is reused. nsresult ReadCompressedIndexDataValues( mozIStorageStatement& aStatement, uint32_t aColumnIndex, nsTArray& aOutIndexValues); using IndexDataValuesAutoArray = AutoTArray; template Result ReadCompressedIndexDataValues( T& aValues, uint32_t aColumnIndex); Result>, nsresult> ReadCompressedIndexId(Span aData); Result>, nsresult> ReadCompressedNumber(Span aSpan); Result GetStructuredCloneReadInfoFromValueArray( mozIStorageValueArray* aValues, uint32_t aDataIndex, uint32_t aFileIdsIndex, const DatabaseFileManager& aFileManager); Result GetStructuredCloneReadInfoFromStatement( mozIStorageStatement* aStatement, uint32_t aDataIndex, uint32_t aFileIdsIndex, const DatabaseFileManager& aFileManager); Result, nsresult> DeserializeStructuredCloneFiles(const DatabaseFileManager& aFileManager, const nsAString& aText); nsresult ExecuteSimpleSQLSequence(mozIStorageConnection& aConnection, Span aSQLCommands); } // namespace mozilla::dom::indexedDB #endif // mozilla_dom_indexeddb_actorsparent_h__