2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-03-05 03:25:40 +00:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/FileSystemTaskBase.h"
|
|
|
|
|
2015-07-07 02:17:00 +00:00
|
|
|
#include "nsNetCID.h"
|
2014-03-05 03:25:40 +00:00
|
|
|
#include "mozilla/dom/ContentChild.h"
|
2014-10-08 16:15:23 +00:00
|
|
|
#include "mozilla/dom/File.h"
|
2014-03-05 03:25:40 +00:00
|
|
|
#include "mozilla/dom/FileSystemBase.h"
|
|
|
|
#include "mozilla/dom/FileSystemRequestParent.h"
|
|
|
|
#include "mozilla/dom/FileSystemUtils.h"
|
|
|
|
#include "mozilla/dom/Promise.h"
|
|
|
|
#include "mozilla/dom/PContent.h"
|
2014-09-26 23:21:57 +00:00
|
|
|
#include "mozilla/dom/ipc/BlobParent.h"
|
2014-03-05 03:25:40 +00:00
|
|
|
#include "mozilla/unused.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
FileSystemTaskBase::FileSystemTaskBase(FileSystemBase* aFileSystem)
|
|
|
|
: mErrorValue(NS_OK)
|
|
|
|
, mFileSystem(aFileSystem)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
MOZ_ASSERT(aFileSystem, "aFileSystem should not be null.");
|
|
|
|
}
|
|
|
|
|
|
|
|
FileSystemTaskBase::FileSystemTaskBase(FileSystemBase* aFileSystem,
|
|
|
|
const FileSystemParams& aParam,
|
|
|
|
FileSystemRequestParent* aParent)
|
|
|
|
: mErrorValue(NS_OK)
|
|
|
|
, mFileSystem(aFileSystem)
|
|
|
|
, mRequestParent(aParent)
|
|
|
|
{
|
2015-07-04 01:29:00 +00:00
|
|
|
MOZ_ASSERT(XRE_IsParentProcess(),
|
2014-03-05 03:25:40 +00:00
|
|
|
"Only call from parent process!");
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
MOZ_ASSERT(aFileSystem, "aFileSystem should not be null.");
|
|
|
|
}
|
|
|
|
|
|
|
|
FileSystemTaskBase::~FileSystemTaskBase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-03-05 03:24:19 +00:00
|
|
|
FileSystemBase*
|
|
|
|
FileSystemTaskBase::GetFileSystem() const
|
|
|
|
{
|
|
|
|
return mFileSystem.get();
|
|
|
|
}
|
|
|
|
|
2014-03-05 03:25:40 +00:00
|
|
|
void
|
|
|
|
FileSystemTaskBase::Start()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
|
|
|
|
if (HasError()) {
|
|
|
|
NS_DispatchToMainThread(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-04 01:29:00 +00:00
|
|
|
if (XRE_IsParentProcess()) {
|
2014-03-05 03:25:40 +00:00
|
|
|
// Run in parent process.
|
|
|
|
// Start worker thread.
|
|
|
|
nsCOMPtr<nsIEventTarget> target
|
|
|
|
= do_GetService(NS_STREAMTRANSPORTSERVICE_CONTRACTID);
|
|
|
|
NS_ASSERTION(target, "Must have stream transport service.");
|
|
|
|
target->Dispatch(this, NS_DISPATCH_NORMAL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run in child process.
|
|
|
|
if (mFileSystem->IsShutdown()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retain a reference so the task object isn't deleted without IPDL's
|
|
|
|
// knowledge. The reference will be released by
|
|
|
|
// mozilla::dom::ContentChild::DeallocPFileSystemRequestChild.
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
ContentChild::GetSingleton()->SendPFileSystemRequestConstructor(this,
|
|
|
|
GetRequestParams(mFileSystem->ToString()));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FileSystemTaskBase::Run()
|
|
|
|
{
|
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
// Run worker thread tasks
|
|
|
|
nsresult rv = Work();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
SetError(rv);
|
|
|
|
}
|
|
|
|
// Dispatch itself to main thread
|
|
|
|
NS_DispatchToMainThread(this);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run main thread tasks
|
|
|
|
HandleResult();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FileSystemTaskBase::HandleResult()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
if (mFileSystem->IsShutdown()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mRequestParent && mRequestParent->IsRunning()) {
|
2015-11-02 05:53:26 +00:00
|
|
|
Unused << mRequestParent->Send__delete__(mRequestParent,
|
2014-03-05 03:25:40 +00:00
|
|
|
GetRequestResult());
|
|
|
|
} else {
|
|
|
|
HandlerCallback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FileSystemResponseValue
|
|
|
|
FileSystemTaskBase::GetRequestResult() const
|
|
|
|
{
|
2015-07-04 01:29:00 +00:00
|
|
|
MOZ_ASSERT(XRE_IsParentProcess(),
|
2014-03-05 03:25:40 +00:00
|
|
|
"Only call from parent process!");
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
if (HasError()) {
|
|
|
|
return FileSystemErrorResponse(mErrorValue);
|
|
|
|
} else {
|
|
|
|
return GetSuccessRequestResult();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FileSystemTaskBase::SetRequestResult(const FileSystemResponseValue& aValue)
|
|
|
|
{
|
2015-07-04 01:29:00 +00:00
|
|
|
MOZ_ASSERT(!XRE_IsParentProcess(),
|
2014-03-05 03:25:40 +00:00
|
|
|
"Only call from child process!");
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
if (aValue.type() == FileSystemResponseValue::TFileSystemErrorResponse) {
|
|
|
|
FileSystemErrorResponse r = aValue;
|
|
|
|
mErrorValue = r.error();
|
|
|
|
} else {
|
|
|
|
SetSuccessRequestResult(aValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
FileSystemTaskBase::Recv__delete__(const FileSystemResponseValue& aValue)
|
|
|
|
{
|
|
|
|
SetRequestResult(aValue);
|
|
|
|
HandlerCallback();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
BlobParent*
|
2015-05-12 12:11:03 +00:00
|
|
|
FileSystemTaskBase::GetBlobParent(BlobImpl* aFile) const
|
2014-03-05 03:25:40 +00:00
|
|
|
{
|
2015-07-04 01:29:00 +00:00
|
|
|
MOZ_ASSERT(XRE_IsParentProcess(),
|
2014-03-05 03:25:40 +00:00
|
|
|
"Only call from parent process!");
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
MOZ_ASSERT(aFile);
|
|
|
|
|
|
|
|
// Load the lazy dom file data from the parent before sending to the child.
|
|
|
|
nsString mimeType;
|
|
|
|
aFile->GetType(mimeType);
|
2015-05-12 12:09:51 +00:00
|
|
|
|
|
|
|
// We call GetSize and GetLastModified to prepopulate the value in the
|
2015-05-12 12:11:03 +00:00
|
|
|
// BlobImpl.
|
2015-05-12 12:09:51 +00:00
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
aFile->GetSize(rv);
|
|
|
|
rv.SuppressException();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
aFile->GetLastModified(rv);
|
|
|
|
rv.SuppressException();
|
|
|
|
}
|
2014-03-05 03:25:40 +00:00
|
|
|
|
|
|
|
ContentParent* cp = static_cast<ContentParent*>(mRequestParent->Manager());
|
2015-05-12 12:11:03 +00:00
|
|
|
return cp->GetOrCreateActorForBlobImpl(aFile);
|
2014-03-05 03:25:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FileSystemTaskBase::SetError(const nsresult& aErrorValue)
|
|
|
|
{
|
|
|
|
uint16_t module = NS_ERROR_GET_MODULE(aErrorValue);
|
|
|
|
if (module == NS_ERROR_MODULE_DOM_FILESYSTEM ||
|
2014-03-05 03:24:19 +00:00
|
|
|
module == NS_ERROR_MODULE_DOM_FILE ||
|
|
|
|
module == NS_ERROR_MODULE_DOM) {
|
2014-03-05 03:25:40 +00:00
|
|
|
mErrorValue = aErrorValue;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (aErrorValue) {
|
|
|
|
case NS_OK:
|
|
|
|
mErrorValue = NS_OK;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_FILE_INVALID_PATH:
|
|
|
|
case NS_ERROR_FILE_UNRECOGNIZED_PATH:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILESYSTEM_INVALID_PATH_ERR;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_FILE_DESTINATION_NOT_DIR:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILESYSTEM_INVALID_MODIFICATION_ERR;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_FILE_ACCESS_DENIED:
|
|
|
|
case NS_ERROR_FILE_DIR_NOT_EMPTY:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILESYSTEM_NO_MODIFICATION_ALLOWED_ERR;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_FILE_TARGET_DOES_NOT_EXIST:
|
|
|
|
case NS_ERROR_NOT_AVAILABLE:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILE_NOT_FOUND_ERR;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_FILE_ALREADY_EXISTS:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILESYSTEM_PATH_EXISTS_ERR;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_FILE_NOT_DIRECTORY:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILESYSTEM_TYPE_MISMATCH_ERR;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case NS_ERROR_UNEXPECTED:
|
|
|
|
default:
|
|
|
|
mErrorValue = NS_ERROR_DOM_FILESYSTEM_UNKNOWN_ERR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|