2012-06-03 09:33:52 -07:00
|
|
|
/* -*- 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 "nsIDOMFileHandle.h"
|
|
|
|
#include "nsIFile.h"
|
2012-06-19 18:50:39 -07:00
|
|
|
#include "nsIFileStorage.h"
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
#include "nsDOMEventTargetHelper.h"
|
|
|
|
|
2012-12-02 00:58:57 -08:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-06-12 00:00:06 -07:00
|
|
|
#include "mozilla/dom/FileModeBinding.h"
|
2012-12-02 00:58:57 -08:00
|
|
|
|
2012-06-03 09:33:52 -07:00
|
|
|
class nsIDOMFile;
|
|
|
|
class nsIFileStorage;
|
2014-01-06 18:53:23 -08:00
|
|
|
class nsPIDOMWindow;
|
2012-06-03 09:33:52 -07:00
|
|
|
|
2013-03-17 01:51:36 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class DOMRequest;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2012-06-03 09:33:52 -07:00
|
|
|
BEGIN_FILE_NAMESPACE
|
|
|
|
|
|
|
|
class FileService;
|
|
|
|
class LockedFile;
|
|
|
|
class FinishHelper;
|
|
|
|
class FileHelper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Must be subclassed. The subclass must implement CreateStream and
|
|
|
|
* CreateFileObject. Basically, every file storage implementation provides its
|
|
|
|
* own FileHandle implementation (for example IDBFileHandle provides IndexedDB
|
|
|
|
* specific implementation).
|
|
|
|
*/
|
|
|
|
class FileHandle : public nsDOMEventTargetHelper,
|
|
|
|
public nsIDOMFileHandle
|
|
|
|
{
|
|
|
|
friend class FileService;
|
|
|
|
friend class LockedFile;
|
|
|
|
friend class FinishHelper;
|
|
|
|
friend class FileHelper;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIDOMFILEHANDLE
|
|
|
|
|
2012-12-02 00:58:57 -08:00
|
|
|
nsPIDOMWindow* GetParentObject() const
|
|
|
|
{
|
|
|
|
return GetOwner();
|
|
|
|
}
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
2012-12-02 00:58:57 -08:00
|
|
|
|
|
|
|
void GetName(nsString& aName) const
|
|
|
|
{
|
|
|
|
aName = mName;
|
|
|
|
}
|
|
|
|
void GetType(nsString& aType) const
|
|
|
|
{
|
|
|
|
aType = mType;
|
|
|
|
}
|
|
|
|
already_AddRefed<nsIDOMLockedFile> Open(FileMode aMode, ErrorResult& aError);
|
2013-03-17 01:51:36 -07:00
|
|
|
already_AddRefed<DOMRequest> GetFile(ErrorResult& aError);
|
2012-12-02 00:58:57 -08:00
|
|
|
IMPL_EVENT_HANDLER(abort)
|
|
|
|
IMPL_EVENT_HANDLER(error)
|
|
|
|
|
2012-06-03 09:33:52 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FileHandle, nsDOMEventTargetHelper)
|
|
|
|
|
|
|
|
const nsAString&
|
|
|
|
Name() const
|
|
|
|
{
|
|
|
|
return mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsAString&
|
|
|
|
Type() const
|
|
|
|
{
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual already_AddRefed<nsISupports>
|
|
|
|
CreateStream(nsIFile* aFile, bool aReadOnly) = 0;
|
|
|
|
|
|
|
|
virtual already_AddRefed<nsIDOMFile>
|
2012-08-22 08:56:38 -07:00
|
|
|
CreateFileObject(LockedFile* aLockedFile, uint32_t aFileSize) = 0;
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
protected:
|
2014-01-06 18:53:23 -08:00
|
|
|
FileHandle(nsPIDOMWindow* aWindow)
|
|
|
|
: nsDOMEventTargetHelper(aWindow)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
FileHandle(nsDOMEventTargetHelper* aOwner)
|
|
|
|
: nsDOMEventTargetHelper(aOwner)
|
2012-12-02 00:58:57 -08:00
|
|
|
{
|
|
|
|
}
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
~FileHandle()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFileStorage> mFileStorage;
|
|
|
|
|
|
|
|
nsString mName;
|
|
|
|
nsString mType;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> mFile;
|
|
|
|
nsString mFileName;
|
|
|
|
};
|
|
|
|
|
|
|
|
END_FILE_NAMESPACE
|
|
|
|
|
|
|
|
#endif // mozilla_dom_file_filehandle_h__
|