mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
520d6b7062
- Don't upgrade gfx features after device resets. (bug 1183910 part 5, r=mattwoodrow) (e53d0f91f) - Use the same graphics device parameters across processes. (bug 1183910 part 7, r=mattwoodrow) (083ae4f15) - Rename DriverInitCrashDetection to DriverCrashGuard. (bug 1190281 part 2, r=mattwoodrow) (9bd189d09) - Make DriverCrashGuard initialization lazy. (bug 1190281 part 3, r=mattwoodrow) (6821dc386) - Pull D3D11 logic out of DriverCrashGuard. (bug 1190281 part 4, r=mattwoodrow) (e499a0079) - Move telemetry recording into D3D11LayersCrashGuard. (bug 1190281 part 5, r=mattwoodrow) (b50a4c2b4) - Factor prefs out of DriverCrashGuard. (bug 1190281 part 6, r=mattwoodrow) (a3a1166ab) - Bug 1170939 - Close PBontentBridge when receving shut dwon message, r=khuey (5473d07f0) - Allow DriverCrashGuard to be used in content processes. (bug 1190281 part 7, r=mattwoodrow) (c9eaf8315) - Add a crash guard for DXVA2D3D9. (bug 1190281 part 8, r=mattwoodrow) (eceff5212) - Add driver crash guards to WebGL (bug 1190281 part 9, r=jgilbert,mattwoodrow) (c362b60c6) - Fix bogus assert in DriverCrashGuard. (bug 1190281 followup, r=mattwoodrow) (d4a7145bd) - Bug 968923 - part 5b - add nsIDOMWindowUtils::forceUseCounterFlush; r=bz (138d30251) - Bug 968923 - part 5c - add tests for use counters; r=bz (0c4b745e0) - Bug 554186 - Part 1: Unimplement NPN_Status API. r=josh (8759dad40) - Bug 554186 - Part 2: Remove unused nsPluginInstanceOwner::ShowNativeContextMenu(). r=josh (ad2ac0c4d) - Bug 1174913 - anchor and area mochitests. r=bz (ab2c58a34) - Bug 959992. Go back to not treating properties that the named properties object exposes as enumerable. r=peterv (0adeeb910) - Bug 1154974 (Part 1) - Give blobs serial numbers. r=bent (4602ca2cd) - Bug 1154974 (Part 2) - Merge image cache entries for blobs URIs with the same underlying blob. r=baku (3b64b409e) - Bug 1173314 - Make GetMozFullPath and GetMozFullPathInternal const. r=sicking (f8eaabb1e) - Bug 1167389 - Make FileList::mParent a smart pointer, and declare it to the cycle collector. r=ehsan (d1217e547) - Bug 1173390 - Remove the majority of the old directory picker implementation to prepare for the new implementation under bug 1164310. r=baku (750049972) - Bug 1164310, part 1 - Make the code for bypassing mobile security checks more general so that it can be used on non-mobile. r=baku (0486fb5ff) - Bug 1164310, part 2 - Implement an abstraction for a rooted filesystem for non-mobile devices. r=baku (f1d906bd6) - Bug 1164310, part 3 - Allow the DirState of blobs to be set explicitly. r=baku (13d832700) - Bug 1164310, part 4 - Implement the new HTMLInputElement API including the new Promise returning GetFilesAndDirectories. r=baku (d0f93ec19) - Bug 1164310, part 5 - Implement new anonymous content and layout pieces for directory picking via input elements. r=tnikkel (ac5a00781) - Bug 1164310, part 6 - Implement the new Promise returning DataTransfer.getFilesAndDirectories() API. r=baku (375fba953) - Bug 1164310 - Follow-up: Fix build bustage with --disable-accessibility. r=me (da0e6745b) - Bug 1164310, part 7 - Touch CLOBBER since bug 1177844 isn't fixed yet. r=me (5fa829742) - Bug 1185381 - Make FileList clonable - patch 1 - move code into FileList.h/.cpp, r=smaug (b85483178) - Bug 1185381 - Make FileList clonable - patch 2 - rename FILEIMPL_IID to BLOBIMPL_IID, r=smaug (0f920cd05) - Bug 1185360 - PostMessageEvent should not have a different behavior if the main principal subsumes the destination one., r=smaug (070ab034b) - Bug 1185381 - Make FileList clonable - patch 3 - FileListClonedData implementation, r=smaug (f4f082d18) - Bug 1185381 - Make FileList clonable - patch 4 - tests, r=smaug (fb3637313)
246 lines
6.7 KiB
C++
246 lines
6.7 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 "FilePickerParent.h"
|
|
#include "nsComponentManagerUtils.h"
|
|
#include "nsNetCID.h"
|
|
#include "nsIDocument.h"
|
|
#include "nsIDOMWindow.h"
|
|
#include "nsIFile.h"
|
|
#include "nsISimpleEnumerator.h"
|
|
#include "mozilla/unused.h"
|
|
#include "mozilla/dom/File.h"
|
|
#include "mozilla/dom/ContentParent.h"
|
|
#include "mozilla/dom/Element.h"
|
|
#include "mozilla/dom/TabParent.h"
|
|
#include "mozilla/dom/ipc/BlobParent.h"
|
|
|
|
using mozilla::unused;
|
|
using namespace mozilla::dom;
|
|
|
|
NS_IMPL_ISUPPORTS(FilePickerParent::FilePickerShownCallback,
|
|
nsIFilePickerShownCallback);
|
|
|
|
NS_IMETHODIMP
|
|
FilePickerParent::FilePickerShownCallback::Done(int16_t aResult)
|
|
{
|
|
if (mFilePickerParent) {
|
|
mFilePickerParent->Done(aResult);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
FilePickerParent::FilePickerShownCallback::Destroy()
|
|
{
|
|
mFilePickerParent = nullptr;
|
|
}
|
|
|
|
FilePickerParent::~FilePickerParent()
|
|
{
|
|
}
|
|
|
|
// Before sending a blob to the child, we need to get its size and modification
|
|
// date. Otherwise it will be sent as a "mystery blob" by
|
|
// GetOrCreateActorForBlob, which will cause problems for the child
|
|
// process. This runnable stat()s the file off the main thread.
|
|
//
|
|
// We run code in three places:
|
|
// 1. The main thread calls Dispatch() to start the runnable.
|
|
// 2. The stream transport thread stat()s the file in Run() and then dispatches
|
|
// the same runnable on the main thread.
|
|
// 3. The main thread sends the results over IPC.
|
|
FilePickerParent::FileSizeAndDateRunnable::FileSizeAndDateRunnable(FilePickerParent *aFPParent,
|
|
nsTArray<nsRefPtr<BlobImpl>>& aBlobs)
|
|
: mFilePickerParent(aFPParent)
|
|
{
|
|
mBlobs.SwapElements(aBlobs);
|
|
}
|
|
|
|
bool
|
|
FilePickerParent::FileSizeAndDateRunnable::Dispatch()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
mEventTarget = do_GetService(NS_STREAMTRANSPORTSERVICE_CONTRACTID);
|
|
if (!mEventTarget) {
|
|
return false;
|
|
}
|
|
|
|
nsresult rv = mEventTarget->Dispatch(this, NS_DISPATCH_NORMAL);
|
|
return NS_SUCCEEDED(rv);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
FilePickerParent::FileSizeAndDateRunnable::Run()
|
|
{
|
|
// If we're on the main thread, then that means we're done. Just send the
|
|
// results.
|
|
if (NS_IsMainThread()) {
|
|
if (mFilePickerParent) {
|
|
mFilePickerParent->SendFiles(mBlobs);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
// We're not on the main thread, so do the stat().
|
|
for (unsigned i = 0; i < mBlobs.Length(); i++) {
|
|
ErrorResult rv;
|
|
mBlobs[i]->GetSize(rv);
|
|
mBlobs[i]->GetLastModified(rv);
|
|
mBlobs[i]->LookupAndCacheIsDirectory();
|
|
}
|
|
|
|
// Dispatch ourselves back on the main thread.
|
|
if (NS_FAILED(NS_DispatchToMainThread(this))) {
|
|
// It's hard to see how we can recover gracefully in this case. The child
|
|
// process is waiting for an IPC, but that can only happen on the main
|
|
// thread.
|
|
MOZ_CRASH();
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
FilePickerParent::FileSizeAndDateRunnable::Destroy()
|
|
{
|
|
mFilePickerParent = nullptr;
|
|
}
|
|
|
|
void
|
|
FilePickerParent::SendFiles(const nsTArray<nsRefPtr<BlobImpl>>& aBlobs)
|
|
{
|
|
nsIContentParent* parent = TabParent::GetFrom(Manager())->Manager();
|
|
InfallibleTArray<PBlobParent*> blobs;
|
|
|
|
for (unsigned i = 0; i < aBlobs.Length(); i++) {
|
|
BlobParent* blobParent = parent->GetOrCreateActorForBlobImpl(aBlobs[i]);
|
|
if (blobParent) {
|
|
blobs.AppendElement(blobParent);
|
|
}
|
|
}
|
|
|
|
InputFiles inblobs;
|
|
inblobs.blobsParent().SwapElements(blobs);
|
|
unused << Send__delete__(this, inblobs, mResult);
|
|
}
|
|
|
|
void
|
|
FilePickerParent::Done(int16_t aResult)
|
|
{
|
|
mResult = aResult;
|
|
|
|
if (mResult != nsIFilePicker::returnOK) {
|
|
unused << Send__delete__(this, void_t(), mResult);
|
|
return;
|
|
}
|
|
|
|
nsTArray<nsRefPtr<BlobImpl>> blobs;
|
|
if (mMode == nsIFilePicker::modeOpenMultiple ||
|
|
mMode == nsIFilePicker::modeGetFolder) {
|
|
nsCOMPtr<nsISimpleEnumerator> iter;
|
|
NS_ENSURE_SUCCESS_VOID(mFilePicker->GetFiles(getter_AddRefs(iter)));
|
|
|
|
nsCOMPtr<nsISupports> supports;
|
|
bool loop = true;
|
|
while (NS_SUCCEEDED(iter->HasMoreElements(&loop)) && loop) {
|
|
iter->GetNext(getter_AddRefs(supports));
|
|
if (supports) {
|
|
nsCOMPtr<nsIFile> file = do_QueryInterface(supports);
|
|
|
|
nsRefPtr<BlobImpl> blobimpl = new BlobImplFile(file);
|
|
blobs.AppendElement(blobimpl);
|
|
}
|
|
}
|
|
} else {
|
|
nsCOMPtr<nsIFile> file;
|
|
mFilePicker->GetFile(getter_AddRefs(file));
|
|
if (file) {
|
|
nsRefPtr<BlobImpl> blobimpl = new BlobImplFile(file);
|
|
blobs.AppendElement(blobimpl);
|
|
}
|
|
}
|
|
|
|
MOZ_ASSERT(!mRunnable);
|
|
mRunnable = new FileSizeAndDateRunnable(this, blobs);
|
|
// Dispatch to background thread to do I/O:
|
|
if (!mRunnable->Dispatch()) {
|
|
unused << Send__delete__(this, void_t(), nsIFilePicker::returnCancel);
|
|
}
|
|
}
|
|
|
|
bool
|
|
FilePickerParent::CreateFilePicker()
|
|
{
|
|
mFilePicker = do_CreateInstance("@mozilla.org/filepicker;1");
|
|
if (!mFilePicker) {
|
|
return false;
|
|
}
|
|
|
|
Element* element = TabParent::GetFrom(Manager())->GetOwnerElement();
|
|
if (!element) {
|
|
return false;
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMWindow> window = do_QueryInterface(element->OwnerDoc()->GetWindow());
|
|
if (!window) {
|
|
return false;
|
|
}
|
|
|
|
return NS_SUCCEEDED(mFilePicker->Init(window, mTitle, mMode));
|
|
}
|
|
|
|
bool
|
|
FilePickerParent::RecvOpen(const int16_t& aSelectedType,
|
|
const bool& aAddToRecentDocs,
|
|
const nsString& aDefaultFile,
|
|
const nsString& aDefaultExtension,
|
|
InfallibleTArray<nsString>&& aFilters,
|
|
InfallibleTArray<nsString>&& aFilterNames,
|
|
const nsString& aDisplayDirectory)
|
|
{
|
|
if (!CreateFilePicker()) {
|
|
unused << Send__delete__(this, void_t(), nsIFilePicker::returnCancel);
|
|
return true;
|
|
}
|
|
|
|
mFilePicker->SetAddToRecentDocs(aAddToRecentDocs);
|
|
|
|
for (uint32_t i = 0; i < aFilters.Length(); ++i) {
|
|
mFilePicker->AppendFilter(aFilterNames[i], aFilters[i]);
|
|
}
|
|
|
|
mFilePicker->SetDefaultString(aDefaultFile);
|
|
mFilePicker->SetDefaultExtension(aDefaultExtension);
|
|
mFilePicker->SetFilterIndex(aSelectedType);
|
|
|
|
if (!aDisplayDirectory.IsEmpty()) {
|
|
nsCOMPtr<nsIFile> localFile = do_CreateInstance(NS_LOCAL_FILE_CONTRACTID);
|
|
if (localFile) {
|
|
localFile->InitWithPath(aDisplayDirectory);
|
|
mFilePicker->SetDisplayDirectory(localFile);
|
|
}
|
|
}
|
|
|
|
mCallback = new FilePickerShownCallback(this);
|
|
|
|
mFilePicker->Open(mCallback);
|
|
return true;
|
|
}
|
|
|
|
void
|
|
FilePickerParent::ActorDestroy(ActorDestroyReason aWhy)
|
|
{
|
|
if (mCallback) {
|
|
mCallback->Destroy();
|
|
mCallback = nullptr;
|
|
}
|
|
if (mRunnable) {
|
|
mRunnable->Destroy();
|
|
mRunnable = nullptr;
|
|
}
|
|
}
|