/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=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_MutableFile_h #define mozilla_dom_MutableFile_h #include "js/TypeDecls.h" #include "mozilla/Attributes.h" #include "mozilla/dom/FileModeBinding.h" #include "mozilla/DOMEventTargetHelper.h" #include "nsCOMPtr.h" #include "nsString.h" class nsIDOMFile; class nsIFile; class nsIOfflineStorage; class nsPIDOMWindow; namespace mozilla { class ErrorResult; namespace dom { class DOMRequest; class FileHandle; class FileService; class FinishHelper; class FileHelper; namespace indexedDB { class FileInfo; } // namespace indexedDB /** * This class provides a default MutableFile implementation, but it can be also * subclassed. The subclass can override implementation of GetFileId, * GetFileInfo, IsShuttingDown, IsInvalid, CreateStream, SetThreadLocals, * UnsetThreadLocals and CreateFileObject. * (for example IDBMutableFile provides IndexedDB specific implementation). */ class MutableFile : public DOMEventTargetHelper { friend class FileHandle; friend class FileService; friend class FinishHelper; friend class FileHelper; public: const nsAString& Name() const { return mName; } const nsAString& Type() const { return mType; } virtual int64_t GetFileId() { return -1; } virtual mozilla::dom::indexedDB::FileInfo* GetFileInfo() { return nullptr; } virtual bool IsShuttingDown(); virtual bool IsInvalid() { return false; } // A temporary method that will be removed along with nsIOfflineStorage // interface. virtual nsIOfflineStorage* Storage() = 0; virtual already_AddRefed CreateStream(nsIFile* aFile, bool aReadOnly); virtual void SetThreadLocals() { } virtual void UnsetThreadLocals() { } virtual already_AddRefed CreateFileObject(FileHandle* aFileHandle, uint32_t aFileSize); // nsWrapperCache virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE; // WebIDL nsPIDOMWindow* GetParentObject() const { return GetOwner(); } void GetName(nsString& aName) const { aName = mName; } void GetType(nsString& aType) const { aType = mType; } already_AddRefed Open(FileMode aMode, ErrorResult& aError); already_AddRefed GetFile(ErrorResult& aError); IMPL_EVENT_HANDLER(abort) IMPL_EVENT_HANDLER(error) protected: MutableFile(nsPIDOMWindow* aWindow); MutableFile(DOMEventTargetHelper* aOwner); virtual ~MutableFile(); nsString mName; nsString mType; nsCOMPtr mFile; nsCString mStorageId; nsString mFileName; }; } // namespace dom } // namespace mozilla #endif // mozilla_dom_MutableFile_h