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/. */
|
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
#ifndef mozilla_dom_FileHelper_h
|
|
|
|
#define mozilla_dom_FileHelper_h
|
2012-06-03 09:33:52 -07:00
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
#include "js/TypeDecls.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2012-06-03 09:33:52 -07:00
|
|
|
#include "nsIRequestObserver.h"
|
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2012-06-03 09:33:52 -07:00
|
|
|
|
2014-05-07 07:33:02 -07:00
|
|
|
class FileHandle;
|
2014-06-11 20:35:29 -07:00
|
|
|
class FileHelper;
|
2012-06-03 09:33:52 -07:00
|
|
|
class FileRequest;
|
|
|
|
class FileOutputStreamWrapper;
|
2014-06-11 20:35:29 -07:00
|
|
|
class MutableFile;
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
class FileHelperListener
|
|
|
|
{
|
|
|
|
public:
|
2014-03-27 13:38:33 -07:00
|
|
|
NS_IMETHOD_(MozExternalRefCountType)
|
2012-06-03 09:33:52 -07:00
|
|
|
AddRef() = 0;
|
|
|
|
|
2014-03-27 13:38:33 -07:00
|
|
|
NS_IMETHOD_(MozExternalRefCountType)
|
2012-06-03 09:33:52 -07:00
|
|
|
Release() = 0;
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
OnFileHelperComplete(FileHelper* aFileHelper) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Must be subclassed. The subclass must implement DoAsyncRun. It may then
|
|
|
|
* choose to implement GetSuccessResult to properly set the result of the
|
|
|
|
* success event. Call Enqueue to start the file operation.
|
|
|
|
*/
|
|
|
|
class FileHelper : public nsIRequestObserver
|
|
|
|
{
|
|
|
|
friend class FileRequest;
|
|
|
|
friend class FileOutputStreamWrapper;
|
|
|
|
|
|
|
|
public:
|
2013-07-18 19:21:20 -07:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2012-06-03 09:33:52 -07:00
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
Enqueue();
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
AsyncRun(FileHelperListener* aListener);
|
|
|
|
|
|
|
|
void
|
2012-08-22 08:56:38 -07:00
|
|
|
OnStreamProgress(uint64_t aProgress, uint64_t aProgressMax);
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
void
|
2013-09-19 06:54:39 -07:00
|
|
|
OnStreamClose();
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
void
|
2013-09-19 06:54:39 -07:00
|
|
|
OnStreamDestroy();
|
2012-06-03 09:33:52 -07:00
|
|
|
|
2014-06-11 20:35:29 -07:00
|
|
|
static FileHandle*
|
|
|
|
GetCurrentFileHandle();
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
protected:
|
2014-06-11 20:35:29 -07:00
|
|
|
FileHelper(FileHandle* aFileHandle, FileRequest* aRequest);
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
virtual ~FileHelper();
|
|
|
|
|
|
|
|
virtual nsresult
|
|
|
|
DoAsyncRun(nsISupports* aStream) = 0;
|
|
|
|
|
|
|
|
virtual nsresult
|
2014-01-23 11:49:40 -08:00
|
|
|
GetSuccessResult(JSContext* aCx, JS::MutableHandle<JS::Value> aVal);
|
2012-06-03 09:33:52 -07:00
|
|
|
|
|
|
|
virtual void
|
|
|
|
ReleaseObjects();
|
|
|
|
|
|
|
|
void
|
|
|
|
Finish();
|
|
|
|
|
2014-06-11 20:35:29 -07:00
|
|
|
nsRefPtr<MutableFile> mMutableFile;
|
2014-05-07 07:33:02 -07:00
|
|
|
nsRefPtr<FileHandle> mFileHandle;
|
2012-06-03 09:33:52 -07:00
|
|
|
nsRefPtr<FileRequest> mFileRequest;
|
|
|
|
|
|
|
|
nsRefPtr<FileHelperListener> mListener;
|
|
|
|
nsCOMPtr<nsIRequest> mRequest;
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsresult mResultCode;
|
|
|
|
bool mFinished;
|
|
|
|
};
|
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2012-06-03 09:33:52 -07:00
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
#endif // mozilla_dom_FileHelper_h
|