mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
ab4e3a0d42
--HG-- extra : rebase_source : 7d2cc56b6553cd7a8d848d3c660f30735bd82eec
284 lines
7.8 KiB
C++
284 lines
7.8 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=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/. */
|
|
|
|
#include "GetDirectoryListingTask.h"
|
|
|
|
#include "HTMLSplitOnSpacesTokenizer.h"
|
|
#include "js/Value.h"
|
|
#include "mozilla/dom/Directory.h"
|
|
#include "mozilla/dom/File.h"
|
|
#include "mozilla/dom/FileSystemBase.h"
|
|
#include "mozilla/dom/FileSystemUtils.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/dom/ipc/BlobChild.h"
|
|
#include "mozilla/dom/ipc/BlobParent.h"
|
|
#include "nsIFile.h"
|
|
#include "nsStringGlue.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
GetDirectoryListingTask::GetDirectoryListingTask(FileSystemBase* aFileSystem,
|
|
const nsAString& aTargetPath,
|
|
const nsAString& aFilters,
|
|
ErrorResult& aRv)
|
|
: FileSystemTaskBase(aFileSystem)
|
|
, mTargetRealPath(aTargetPath)
|
|
, mFilters(aFilters)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
MOZ_ASSERT(aFileSystem);
|
|
nsCOMPtr<nsIGlobalObject> globalObject =
|
|
do_QueryInterface(aFileSystem->GetWindow());
|
|
if (!globalObject) {
|
|
return;
|
|
}
|
|
mPromise = Promise::Create(globalObject, aRv);
|
|
}
|
|
|
|
GetDirectoryListingTask::GetDirectoryListingTask(FileSystemBase* aFileSystem,
|
|
const FileSystemGetDirectoryListingParams& aParam,
|
|
FileSystemRequestParent* aParent)
|
|
: FileSystemTaskBase(aFileSystem, aParam, aParent)
|
|
, mTargetRealPath(aParam.realPath())
|
|
, mFilters(aParam.filters())
|
|
{
|
|
MOZ_ASSERT(XRE_IsParentProcess(),
|
|
"Only call from parent process!");
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
MOZ_ASSERT(aFileSystem);
|
|
}
|
|
|
|
GetDirectoryListingTask::~GetDirectoryListingTask()
|
|
{
|
|
MOZ_ASSERT(!mPromise || NS_IsMainThread(),
|
|
"mPromise should be released on main thread!");
|
|
}
|
|
|
|
already_AddRefed<Promise>
|
|
GetDirectoryListingTask::GetPromise()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
return RefPtr<Promise>(mPromise).forget();
|
|
}
|
|
|
|
FileSystemParams
|
|
GetDirectoryListingTask::GetRequestParams(const nsString& aFileSystem) const
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
return FileSystemGetDirectoryListingParams(aFileSystem, mTargetRealPath,
|
|
mFilters);
|
|
}
|
|
|
|
FileSystemResponseValue
|
|
GetDirectoryListingTask::GetSuccessRequestResult() const
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
|
|
InfallibleTArray<PBlobParent*> blobs;
|
|
|
|
for (unsigned i = 0; i < mTargetBlobImpls.Length(); i++) {
|
|
BlobParent* blobParent = GetBlobParent(mTargetBlobImpls[i]);
|
|
if (blobParent) {
|
|
blobs.AppendElement(blobParent);
|
|
}
|
|
}
|
|
FileSystemDirectoryListingResponse response;
|
|
response.blobsParent().SwapElements(blobs);
|
|
return response;
|
|
}
|
|
|
|
void
|
|
GetDirectoryListingTask::SetSuccessRequestResult(const FileSystemResponseValue& aValue)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
MOZ_ASSERT(aValue.type() ==
|
|
FileSystemResponseValue::TFileSystemDirectoryListingResponse);
|
|
|
|
FileSystemDirectoryListingResponse r = aValue;
|
|
nsTArray<PBlobChild*>& blobs = r.blobsChild();
|
|
|
|
for (unsigned i = 0; i < blobs.Length(); i++) {
|
|
mTargetBlobImpls.AppendElement(static_cast<BlobChild*>(blobs[i])->GetBlobImpl());
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
GetDirectoryListingTask::Work()
|
|
{
|
|
MOZ_ASSERT(XRE_IsParentProcess(),
|
|
"Only call from parent process!");
|
|
MOZ_ASSERT(!NS_IsMainThread(), "Only call on worker thread!");
|
|
|
|
if (mFileSystem->IsShutdown()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
// Whether we want to get the root directory.
|
|
bool getRoot = mTargetRealPath.IsEmpty();
|
|
|
|
nsCOMPtr<nsIFile> dir = mFileSystem->GetLocalFile(mTargetRealPath);
|
|
if (!dir) {
|
|
return NS_ERROR_DOM_FILESYSTEM_INVALID_PATH_ERR;
|
|
}
|
|
|
|
bool exists;
|
|
nsresult rv = dir->Exists(&exists);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
|
|
if (!exists) {
|
|
if (!getRoot) {
|
|
return NS_ERROR_DOM_FILE_NOT_FOUND_ERR;
|
|
}
|
|
|
|
// If the root directory doesn't exit, create it.
|
|
rv = dir->Create(nsIFile::DIRECTORY_TYPE, 0777);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
}
|
|
|
|
// Get isDirectory.
|
|
bool isDir;
|
|
rv = dir->IsDirectory(&isDir);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
|
|
if (!isDir) {
|
|
return NS_ERROR_DOM_FILESYSTEM_TYPE_MISMATCH_ERR;
|
|
}
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> entries;
|
|
rv = dir->GetDirectoryEntries(getter_AddRefs(entries));
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
|
|
bool filterOutSensitive = false;
|
|
{
|
|
HTMLSplitOnSpacesTokenizer tokenizer(mFilters, ';');
|
|
nsAutoString token;
|
|
while (tokenizer.hasMoreTokens()) {
|
|
token = tokenizer.nextToken();
|
|
if (token.EqualsLiteral("filter-out-sensitive")) {
|
|
filterOutSensitive = true;
|
|
} else {
|
|
MOZ_CRASH("Unrecognized filter");
|
|
}
|
|
}
|
|
}
|
|
|
|
for (;;) {
|
|
bool hasMore = false;
|
|
if (NS_WARN_IF(NS_FAILED(entries->HasMoreElements(&hasMore))) || !hasMore) {
|
|
break;
|
|
}
|
|
nsCOMPtr<nsISupports> supp;
|
|
if (NS_WARN_IF(NS_FAILED(entries->GetNext(getter_AddRefs(supp))))) {
|
|
break;
|
|
}
|
|
|
|
nsCOMPtr<nsIFile> currFile = do_QueryInterface(supp);
|
|
MOZ_ASSERT(currFile);
|
|
|
|
bool isLink, isSpecial, isFile;
|
|
if (NS_WARN_IF(NS_FAILED(currFile->IsSymlink(&isLink)) ||
|
|
NS_FAILED(currFile->IsSpecial(&isSpecial))) ||
|
|
isLink || isSpecial) {
|
|
continue;
|
|
}
|
|
if (NS_WARN_IF(NS_FAILED(currFile->IsFile(&isFile)) ||
|
|
NS_FAILED(currFile->IsDirectory(&isDir))) ||
|
|
!(isFile || isDir)) {
|
|
continue;
|
|
}
|
|
|
|
if (filterOutSensitive) {
|
|
bool isHidden;
|
|
if (NS_WARN_IF(NS_FAILED(currFile->IsHidden(&isHidden))) || isHidden) {
|
|
continue;
|
|
}
|
|
nsAutoString leafName;
|
|
if (NS_WARN_IF(NS_FAILED(currFile->GetLeafName(leafName)))) {
|
|
continue;
|
|
}
|
|
if (leafName[0] == char16_t('.')) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
BlobImplFile* impl = new BlobImplFile(currFile);
|
|
impl->LookupAndCacheIsDirectory();
|
|
mTargetBlobImpls.AppendElement(impl);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
GetDirectoryListingTask::HandlerCallback()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Only call on main thread!");
|
|
if (mFileSystem->IsShutdown()) {
|
|
mPromise = nullptr;
|
|
return;
|
|
}
|
|
|
|
if (HasError()) {
|
|
mPromise->MaybeReject(mErrorValue);
|
|
mPromise = nullptr;
|
|
return;
|
|
}
|
|
|
|
size_t count = mTargetBlobImpls.Length();
|
|
|
|
Sequence<OwningFileOrDirectory> listing;
|
|
|
|
if (!listing.SetLength(count, mozilla::fallible_t())) {
|
|
mPromise->MaybeReject(NS_ERROR_FAILURE);
|
|
mPromise = nullptr;
|
|
return;
|
|
}
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
|
if (mTargetBlobImpls[i]->IsDirectory()) {
|
|
nsAutoString name;
|
|
mTargetBlobImpls[i]->GetName(name);
|
|
nsAutoString path(mTargetRealPath);
|
|
path.AppendLiteral(FILESYSTEM_DOM_PATH_SEPARATOR);
|
|
path.Append(name);
|
|
#ifdef DEBUG
|
|
if (XRE_IsParentProcess()) {
|
|
nsCOMPtr<nsIFile> file = mFileSystem->GetLocalFile(path);
|
|
bool exist;
|
|
file->Exists(&exist);
|
|
MOZ_ASSERT(exist);
|
|
}
|
|
#endif
|
|
RefPtr<Directory> directory = new Directory(mFileSystem, path);
|
|
// Propogate mFilter onto sub-Directory object:
|
|
directory->SetContentFilters(mFilters);
|
|
listing[i].SetAsDirectory() = directory;
|
|
} else {
|
|
listing[i].SetAsFile() = File::Create(mFileSystem->GetWindow(), mTargetBlobImpls[i]);
|
|
}
|
|
}
|
|
|
|
mPromise->MaybeResolve(listing);
|
|
mPromise = nullptr;
|
|
}
|
|
|
|
void
|
|
GetDirectoryListingTask::GetPermissionAccessType(nsCString& aAccess) const
|
|
{
|
|
aAccess.AssignLiteral("read");
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|