mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
152 lines
3.0 KiB
C++
152 lines
3.0 KiB
C++
/* -*- 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_file_filehandle_h__
|
|
#define mozilla_dom_file_filehandle_h__
|
|
|
|
#include "FileCommon.h"
|
|
|
|
#include "nsIFile.h"
|
|
#include "nsIFileStorage.h"
|
|
|
|
#include "nsDOMEventTargetHelper.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/dom/FileModeBinding.h"
|
|
|
|
class nsIDOMFile;
|
|
class nsIDOMLockedFile;
|
|
class nsIFileStorage;
|
|
class nsPIDOMWindow;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
class DOMRequest;
|
|
namespace indexedDB {
|
|
class FileInfo;
|
|
} // namespace indexedDB
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
BEGIN_FILE_NAMESPACE
|
|
|
|
class FileService;
|
|
class LockedFile;
|
|
class FinishHelper;
|
|
class FileHelper;
|
|
|
|
/**
|
|
* This class provides a default FileHandle implementation, but it can be also
|
|
* subclassed. The subclass can override implementation of GetFileId,
|
|
* GetFileInfo, CreateStream and CreateFileObject.
|
|
* (for example IDBFileHandle provides IndexedDB specific implementation).
|
|
*/
|
|
class FileHandle : public nsDOMEventTargetHelper
|
|
{
|
|
friend class FileService;
|
|
friend class LockedFile;
|
|
friend class FinishHelper;
|
|
friend class FileHelper;
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FileHandle, nsDOMEventTargetHelper)
|
|
|
|
static already_AddRefed<FileHandle>
|
|
Create(nsPIDOMWindow* aWindow,
|
|
nsIFileStorage* aFileStorage,
|
|
nsIFile* aFile);
|
|
|
|
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 already_AddRefed<nsISupports>
|
|
CreateStream(nsIFile* aFile, bool aReadOnly);
|
|
|
|
virtual already_AddRefed<nsIDOMFile>
|
|
CreateFileObject(LockedFile* aLockedFile, uint32_t aFileSize);
|
|
|
|
// nsWrapperCache
|
|
virtual JSObject*
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
// WebIDL
|
|
nsPIDOMWindow*
|
|
GetParentObject() const
|
|
{
|
|
return GetOwner();
|
|
}
|
|
|
|
void
|
|
GetName(nsString& aName) const
|
|
{
|
|
aName = mName;
|
|
}
|
|
|
|
void
|
|
GetType(nsString& aType) const
|
|
{
|
|
aType = mType;
|
|
}
|
|
|
|
already_AddRefed<nsIDOMLockedFile>
|
|
Open(FileMode aMode, ErrorResult& aError);
|
|
|
|
already_AddRefed<DOMRequest>
|
|
GetFile(ErrorResult& aError);
|
|
|
|
IMPL_EVENT_HANDLER(abort)
|
|
IMPL_EVENT_HANDLER(error)
|
|
|
|
protected:
|
|
FileHandle(nsPIDOMWindow* aWindow)
|
|
: nsDOMEventTargetHelper(aWindow)
|
|
{
|
|
}
|
|
|
|
FileHandle(nsDOMEventTargetHelper* aOwner)
|
|
: nsDOMEventTargetHelper(aOwner)
|
|
{
|
|
}
|
|
|
|
~FileHandle()
|
|
{
|
|
}
|
|
|
|
nsCOMPtr<nsIFileStorage> mFileStorage;
|
|
|
|
nsString mName;
|
|
nsString mType;
|
|
|
|
nsCOMPtr<nsIFile> mFile;
|
|
nsString mFileName;
|
|
};
|
|
|
|
END_FILE_NAMESPACE
|
|
|
|
#endif // mozilla_dom_file_filehandle_h__
|