mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 22:28:36 +00:00
6c19f70612
- Missing comment of Bug 1139466 (9aef1d5aa) - Bug 1147662: LexicalCheck should be a guard, so as not to be removed; r=shu (5e8692b68) - Bug 1142844. When xdr-decoding a non-lazy but relazifiable function, don't forget to set up the source object on the LazyScript we create for it. r=luke (90fc40f53) - Bug 1146743. Remove use of compileAndGo in JS debugger. r=shu (12d7d6f19) - Bug 1147686 - Make mutableScript private and only use it when hasScript. (r=terrence) (69910e021) - Bug 1149811. When XDR-decoding a non-lazy function that can be lazified, we need to set up a backpointer from its LazyScript to its JSScript. r=luke (db2dedf39) - Bug 1150513. While we're working with a function's script (e.g. cloning it), prevent that function getting relazified. r=luke (7bd53397d) - Bug 1147216 part 1 - Give JSOP_LINENO a 4-byte instead of 2-byte operand. r=luke (f9c6f376a) - Bug 1147216 part 2 - Use the right line number for strict eval. r=luke (954b9376a) - Bug 1166742 - nsFilePickerProxy::SimpleEnumerator should return false when HasMoreElements is called on an empty array, r=smaug (0cadd90bf) - Bug 1168346: Backout the patch from bug 1160279 after a broken merge. (1cbdbcdd6) - Bug 1071562, redirect child process methods to the clipboard proxy, r=fabrice (f5d4219fb) - Bug 1161215 - Don't fire spurious resize events to content when the size didn't actually change. r=smaug (551bc0eef) - Bug 1163945 - Handle aborted CompareNetwork jobs properly in CompareNetwork::OnStartRequst; r=nsm (d3b6d47c8)
243 lines
5.3 KiB
C++
243 lines
5.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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 "nsFilePickerProxy.h"
|
|
#include "nsComponentManagerUtils.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsIFile.h"
|
|
#include "mozilla/dom/File.h"
|
|
#include "mozilla/dom/TabChild.h"
|
|
#include "mozilla/dom/ipc/BlobChild.h"
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
NS_IMPL_ISUPPORTS(nsFilePickerProxy, nsIFilePicker)
|
|
|
|
nsFilePickerProxy::nsFilePickerProxy()
|
|
{
|
|
}
|
|
|
|
nsFilePickerProxy::~nsFilePickerProxy()
|
|
{
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::Init(nsIDOMWindow* aParent, const nsAString& aTitle,
|
|
int16_t aMode)
|
|
{
|
|
TabChild* tabChild = TabChild::GetFrom(aParent);
|
|
if (!tabChild) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mParent = do_QueryInterface(aParent);
|
|
if (!mParent->IsInnerWindow()) {
|
|
mParent = mParent->GetCurrentInnerWindow();
|
|
}
|
|
|
|
mMode = aMode;
|
|
|
|
NS_ADDREF_THIS();
|
|
tabChild->SendPFilePickerConstructor(this, nsString(aTitle), aMode);
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsFilePickerProxy::InitNative(nsIWidget* aParent, const nsAString& aTitle)
|
|
{
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::AppendFilter(const nsAString& aTitle, const nsAString& aFilter)
|
|
{
|
|
mFilterNames.AppendElement(aTitle);
|
|
mFilters.AppendElement(aFilter);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetDefaultString(nsAString& aDefaultString)
|
|
{
|
|
aDefaultString = mDefault;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::SetDefaultString(const nsAString& aDefaultString)
|
|
{
|
|
mDefault = aDefaultString;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetDefaultExtension(nsAString& aDefaultExtension)
|
|
{
|
|
aDefaultExtension = mDefaultExtension;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::SetDefaultExtension(const nsAString& aDefaultExtension)
|
|
{
|
|
mDefaultExtension = aDefaultExtension;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetFilterIndex(int32_t* aFilterIndex)
|
|
{
|
|
*aFilterIndex = mSelectedType;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::SetFilterIndex(int32_t aFilterIndex)
|
|
{
|
|
mSelectedType = aFilterIndex;
|
|
return NS_OK;
|
|
}
|
|
|
|
/* readonly attribute nsIFile file; */
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetFile(nsIFile** aFile)
|
|
{
|
|
MOZ_ASSERT(false, "GetFile is unimplemented; use GetDomfile");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
/* readonly attribute nsIFileURL fileURL; */
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetFileURL(nsIURI** aFileURL)
|
|
{
|
|
MOZ_ASSERT(false, "GetFileURL is unimplemented; use GetDomfile");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
/* readonly attribute nsISimpleEnumerator files; */
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetFiles(nsISimpleEnumerator** aFiles)
|
|
{
|
|
MOZ_ASSERT(false, "GetFiles is unimplemented; use GetDomfiles");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::Show(int16_t* aReturn)
|
|
{
|
|
MOZ_ASSERT(false, "Show is unimplemented; use Open");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::Open(nsIFilePickerShownCallback* aCallback)
|
|
{
|
|
mCallback = aCallback;
|
|
|
|
nsString displayDirectory;
|
|
if (mDisplayDirectory) {
|
|
mDisplayDirectory->GetPath(displayDirectory);
|
|
}
|
|
|
|
SendOpen(mSelectedType, mAddToRecentDocs, mDefault, mDefaultExtension,
|
|
mFilters, mFilterNames, displayDirectory);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
bool
|
|
nsFilePickerProxy::Recv__delete__(const MaybeInputFiles& aFiles,
|
|
const int16_t& aResult)
|
|
{
|
|
if (aFiles.type() == MaybeInputFiles::TInputFiles) {
|
|
const InfallibleTArray<PBlobChild*>& blobs = aFiles.get_InputFiles().blobsChild();
|
|
for (uint32_t i = 0; i < blobs.Length(); ++i) {
|
|
BlobChild* actor = static_cast<BlobChild*>(blobs[i]);
|
|
nsRefPtr<BlobImpl> blobImpl = actor->GetBlobImpl();
|
|
NS_ENSURE_TRUE(blobImpl, true);
|
|
|
|
if (!blobImpl->IsFile()) {
|
|
return true;
|
|
}
|
|
|
|
nsRefPtr<File> file = File::Create(mParent, blobImpl);
|
|
MOZ_ASSERT(file);
|
|
|
|
mDomfiles.AppendElement(file);
|
|
}
|
|
}
|
|
|
|
if (mCallback) {
|
|
mCallback->Done(aResult);
|
|
mCallback = nullptr;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetDomfile(nsISupports** aDomfile)
|
|
{
|
|
*aDomfile = nullptr;
|
|
if (mDomfiles.IsEmpty()) {
|
|
return NS_OK;
|
|
}
|
|
|
|
MOZ_ASSERT(mDomfiles.Length() == 1);
|
|
nsCOMPtr<nsIDOMBlob> blob = mDomfiles[0].get();
|
|
blob.forget(aDomfile);
|
|
return NS_OK;
|
|
}
|
|
|
|
namespace {
|
|
|
|
class SimpleEnumerator final : public nsISimpleEnumerator
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
explicit SimpleEnumerator(const nsTArray<nsRefPtr<File>>& aFiles)
|
|
: mFiles(aFiles)
|
|
, mIndex(0)
|
|
{}
|
|
|
|
NS_IMETHOD
|
|
HasMoreElements(bool* aRetvalue) override
|
|
{
|
|
MOZ_ASSERT(aRetvalue);
|
|
*aRetvalue = mIndex < mFiles.Length();
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHOD
|
|
GetNext(nsISupports** aSupports) override
|
|
{
|
|
NS_ENSURE_TRUE(mIndex < mFiles.Length(), NS_ERROR_FAILURE);
|
|
|
|
nsCOMPtr<nsIDOMBlob> blob = mFiles[mIndex++].get();
|
|
blob.forget(aSupports);
|
|
return NS_OK;
|
|
}
|
|
|
|
private:
|
|
~SimpleEnumerator()
|
|
{}
|
|
|
|
nsTArray<nsRefPtr<File>> mFiles;
|
|
uint32_t mIndex;
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS(SimpleEnumerator, nsISimpleEnumerator)
|
|
|
|
} // anonymous namespace
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetDomfiles(nsISimpleEnumerator** aDomfiles)
|
|
{
|
|
nsRefPtr<SimpleEnumerator> enumerator = new SimpleEnumerator(mDomfiles);
|
|
enumerator.forget(aDomfiles);
|
|
return NS_OK;
|
|
}
|