/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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_idbfilehandle_h__ #define mozilla_dom_idbfilehandle_h__ #include "IDBFileRequest.h" #include "js/TypeDecls.h" #include "mozilla/Attributes.h" #include "mozilla/dom/FileHandleBase.h" #include "mozilla/DOMEventTargetHelper.h" #include "nsCycleCollectionParticipant.h" #include "nsIRunnable.h" #include "nsWeakReference.h" class nsPIDOMWindowInner; namespace mozilla { namespace dom { struct IDBFileMetadataParameters; class IDBFileRequest; class IDBMutableFile; class IDBFileHandle final : public DOMEventTargetHelper , public nsIRunnable , public FileHandleBase , public nsSupportsWeakReference { RefPtr mMutableFile; public: static already_AddRefed Create(IDBMutableFile* aMutableFile, FileMode aMode); // WebIDL nsPIDOMWindowInner* GetParentObject() const { AssertIsOnOwningThread(); return GetOwner(); } IDBMutableFile* GetMutableFile() const { AssertIsOnOwningThread(); return mMutableFile; } IDBMutableFile* GetFileHandle() const { AssertIsOnOwningThread(); return GetMutableFile(); } already_AddRefed GetMetadata(const IDBFileMetadataParameters& aParameters, ErrorResult& aRv); already_AddRefed ReadAsArrayBuffer(uint64_t aSize, ErrorResult& aRv) { AssertIsOnOwningThread(); return Read(aSize, false, NullString(), aRv).downcast(); } already_AddRefed ReadAsText(uint64_t aSize, const nsAString& aEncoding, ErrorResult& aRv) { AssertIsOnOwningThread(); return Read(aSize, true, aEncoding, aRv).downcast(); } already_AddRefed Write(const StringOrArrayBufferOrArrayBufferViewOrBlob& aValue, ErrorResult& aRv) { AssertIsOnOwningThread(); return WriteOrAppend(aValue, false, aRv).downcast(); } already_AddRefed Append(const StringOrArrayBufferOrArrayBufferViewOrBlob& aValue, ErrorResult& aRv) { AssertIsOnOwningThread(); return WriteOrAppend(aValue, true, aRv).downcast(); } already_AddRefed Truncate(const Optional& aSize, ErrorResult& aRv) { AssertIsOnOwningThread(); return FileHandleBase::Truncate(aSize, aRv).downcast(); } already_AddRefed Flush(ErrorResult& aRv) { AssertIsOnOwningThread(); return FileHandleBase::Flush(aRv).downcast(); } IMPL_EVENT_HANDLER(complete) IMPL_EVENT_HANDLER(abort) IMPL_EVENT_HANDLER(error) NS_DECL_ISUPPORTS_INHERITED NS_DECL_NSIRUNNABLE NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(IDBFileHandle, DOMEventTargetHelper) // nsIDOMEventTarget virtual nsresult GetEventTargetParent(EventChainPreVisitor& aVisitor) override; // WrapperCache virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aGivenProto) override; // FileHandleBase virtual MutableFileBase* MutableFile() const override; virtual void HandleCompleteOrAbort(bool aAborted) override; private: IDBFileHandle(FileMode aMode, IDBMutableFile* aMutableFile); ~IDBFileHandle(); // FileHandleBase virtual bool CheckWindow() override; virtual already_AddRefed GenerateFileRequest() override; }; } // namespace dom } // namespace mozilla #endif // mozilla_dom_idbfilehandle_h__