mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
13934d9866
- Bug 1184996 (Part 1) - Create decoders with a DecoderFactory. r=tn (dacf21ed2) - Bug 1184996 (Part 2) - Clean up RasterImage's decoding API. r=tn (c127af0b3) - Bug 1184996 (Part 3) - Replace all remaining references to 'size decodes' with 'metadata decodes'. r=tn (3744e5df4) - Bug 1184996 (Part 4) - Forbid instantiation of decoders except via DecoderFactory. r=tn (588d56d84) - No bug - Remove extra printf left over from bug 1127618. r=smaug (b02f7bfe1) - Bug 1187386 (Part 1) - Make most decoder state private. r=tn (328dbc605) - Bug 1187386 (Part 2) - Rework decoder code to avoid calling Decode::GetImage(). r=tn (9a94096f9) - Bug 1187386 (Part 3) - Don't destroy Decoder::mImage if Decoder::mImage is null. r=tn (cbb6738cd) - Bug 1187386 (Part 4) - Make imgFrame::SetOptimizable() callable from off-main-thread. r=tn (f03478b28) - Bug 1187386 (Part 5) - Merge Decoder::SetSizeOnImage() into ImageMetadata::SetOnImage(). r=tn (8afb5d4a3) - Bug 1033090 - Truncate a large URI in the user message about it. r=seth (7bd4b447b) - Bug 1187386 (Part 6) - Merge Decoder::Finish() and RasterImage::OnDecodingComplete() into RasterImage::FinalizeDecoder(). r=tn (f342dd5db) - Bug 1181863 (Part 1) - Add support for reading from nsIInputStreams directly to SourceBuffer. r=tn (74748dad9) - Bug 1181863 (Part 2) - Add ImageOps::DecodeToSurface() to allow image decoding without involving any main-thread-only objects. r=tn (25b86eb50) - Bug 1181863 (Part 3) - Add tests for DecodeToSurface(). r=tn (9506eb2f6) - Bug 1181863 - Part 4: Fix the build bustage (aee05bdc9) - Bug 1187546 - Make it possible to ask image decoders to only decode the first frame. r=tn (1beeeefb6) - Bug 1191100 - Remove XPIDL signature comments in .cpp files. r=ehsan (ee75fe3b5)
239 lines
5.1 KiB
C++
239 lines
5.1 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 "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;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetFile(nsIFile** aFile)
|
|
{
|
|
MOZ_ASSERT(false, "GetFile is unimplemented; use GetDomfile");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsFilePickerProxy::GetFileURL(nsIURI** aFileURL)
|
|
{
|
|
MOZ_ASSERT(false, "GetFileURL is unimplemented; use GetDomfile");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
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;
|
|
}
|