2012-12-17 14:05:18 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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/. */
|
|
|
|
|
2013-02-13 13:53:42 -08:00
|
|
|
#include <algorithm>
|
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "mozilla/Likely.h"
|
|
|
|
|
|
|
|
#include "nsIHttpChannel.h"
|
2013-03-01 11:21:06 -08:00
|
|
|
#include "nsIFileChannel.h"
|
|
|
|
#include "nsIFile.h"
|
2013-01-08 13:40:47 -08:00
|
|
|
#include "nsMimeTypes.h"
|
2013-02-13 13:53:42 -08:00
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIRequest.h"
|
2012-12-17 14:05:18 -08:00
|
|
|
|
|
|
|
#include "RasterImage.h"
|
|
|
|
#include "VectorImage.h"
|
2013-02-13 13:53:42 -08:00
|
|
|
#include "Image.h"
|
2013-03-22 16:12:40 -07:00
|
|
|
#include "nsMediaFragmentURIParser.h"
|
2012-12-17 14:05:18 -08:00
|
|
|
|
|
|
|
#include "ImageFactory.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
|
|
|
// Global preferences related to image containers.
|
|
|
|
static bool gInitializedPrefCaches = false;
|
|
|
|
static bool gDecodeOnDraw = false;
|
|
|
|
static bool gDiscardable = false;
|
|
|
|
|
|
|
|
static void
|
|
|
|
InitPrefCaches()
|
|
|
|
{
|
|
|
|
Preferences::AddBoolVarCache(&gDiscardable, "image.mem.discardable");
|
|
|
|
Preferences::AddBoolVarCache(&gDecodeOnDraw, "image.mem.decodeondraw");
|
|
|
|
gInitializedPrefCaches = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
ComputeImageFlags(nsIURI* uri, bool isMultiPart)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2013-02-13 13:53:42 -08:00
|
|
|
// We default to the static globals.
|
2012-12-17 14:05:18 -08:00
|
|
|
bool isDiscardable = gDiscardable;
|
|
|
|
bool doDecodeOnDraw = gDecodeOnDraw;
|
|
|
|
|
|
|
|
// We want UI to be as snappy as possible and not to flicker. Disable discarding
|
2013-02-13 13:53:42 -08:00
|
|
|
// and decode-on-draw for chrome URLS.
|
2012-12-17 14:05:18 -08:00
|
|
|
bool isChrome = false;
|
|
|
|
rv = uri->SchemeIs("chrome", &isChrome);
|
|
|
|
if (NS_SUCCEEDED(rv) && isChrome)
|
|
|
|
isDiscardable = doDecodeOnDraw = false;
|
|
|
|
|
|
|
|
// We don't want resources like the "loading" icon to be discardable or
|
|
|
|
// decode-on-draw either.
|
|
|
|
bool isResource = false;
|
|
|
|
rv = uri->SchemeIs("resource", &isResource);
|
|
|
|
if (NS_SUCCEEDED(rv) && isResource)
|
|
|
|
isDiscardable = doDecodeOnDraw = false;
|
|
|
|
|
|
|
|
// For multipart/x-mixed-replace, we basically want a direct channel to the
|
|
|
|
// decoder. Disable both for this case as well.
|
|
|
|
if (isMultiPart)
|
|
|
|
isDiscardable = doDecodeOnDraw = false;
|
|
|
|
|
2013-02-13 13:53:42 -08:00
|
|
|
// We have all the information we need.
|
2012-12-17 14:05:18 -08:00
|
|
|
uint32_t imageFlags = Image::INIT_FLAG_NONE;
|
|
|
|
if (isDiscardable)
|
|
|
|
imageFlags |= Image::INIT_FLAG_DISCARDABLE;
|
|
|
|
if (doDecodeOnDraw)
|
|
|
|
imageFlags |= Image::INIT_FLAG_DECODE_ON_DRAW;
|
|
|
|
if (isMultiPart)
|
|
|
|
imageFlags |= Image::INIT_FLAG_MULTIPART;
|
|
|
|
|
|
|
|
return imageFlags;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Image>
|
|
|
|
ImageFactory::CreateImage(nsIRequest* aRequest,
|
|
|
|
imgStatusTracker* aStatusTracker,
|
|
|
|
const nsCString& aMimeType,
|
|
|
|
nsIURI* aURI,
|
|
|
|
bool aIsMultiPart,
|
|
|
|
uint32_t aInnerWindowId)
|
|
|
|
{
|
|
|
|
// Register our pref observers if we haven't yet.
|
|
|
|
if (MOZ_UNLIKELY(!gInitializedPrefCaches))
|
|
|
|
InitPrefCaches();
|
|
|
|
|
|
|
|
// Compute the image's initialization flags.
|
|
|
|
uint32_t imageFlags = ComputeImageFlags(aURI, aIsMultiPart);
|
|
|
|
|
|
|
|
// Select the type of image to create based on MIME type.
|
2013-01-08 13:40:47 -08:00
|
|
|
if (aMimeType.EqualsLiteral(IMAGE_SVG_XML)) {
|
2012-12-17 14:05:18 -08:00
|
|
|
return CreateVectorImage(aRequest, aStatusTracker, aMimeType,
|
2012-12-19 13:28:54 -08:00
|
|
|
aURI, imageFlags, aInnerWindowId);
|
2012-12-17 14:05:18 -08:00
|
|
|
} else {
|
|
|
|
return CreateRasterImage(aRequest, aStatusTracker, aMimeType,
|
2012-12-19 13:28:54 -08:00
|
|
|
aURI, imageFlags, aInnerWindowId);
|
2012-12-17 14:05:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Marks an image as having an error before returning it. Used with macros like
|
|
|
|
// NS_ENSURE_SUCCESS, since we guarantee to always return an image even if an
|
|
|
|
// error occurs, but callers need to be able to tell that this happened.
|
|
|
|
template <typename T>
|
|
|
|
static already_AddRefed<Image>
|
|
|
|
BadImage(nsRefPtr<T>& image)
|
|
|
|
{
|
|
|
|
image->SetHasError();
|
|
|
|
return image.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Image>
|
2012-12-17 17:35:07 -08:00
|
|
|
ImageFactory::CreateAnonymousImage(const nsCString& aMimeType)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsRefPtr<RasterImage> newImage = new RasterImage();
|
|
|
|
|
2013-02-12 19:00:03 -08:00
|
|
|
rv = newImage->Init(aMimeType.get(), Image::INIT_FLAG_NONE);
|
2012-12-17 17:35:07 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, BadImage(newImage));
|
|
|
|
|
|
|
|
return newImage.forget();
|
|
|
|
}
|
|
|
|
|
2013-03-01 11:21:06 -08:00
|
|
|
int32_t
|
|
|
|
SaturateToInt32(int64_t val)
|
|
|
|
{
|
|
|
|
if (val > INT_MAX)
|
|
|
|
return INT_MAX;
|
|
|
|
if (val < INT_MIN)
|
|
|
|
return INT_MIN;
|
|
|
|
|
|
|
|
return static_cast<int32_t>(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
GetContentSize(nsIRequest* aRequest)
|
|
|
|
{
|
|
|
|
// Use content-length as a size hint for http channels.
|
|
|
|
nsCOMPtr<nsIHttpChannel> httpChannel(do_QueryInterface(aRequest));
|
|
|
|
if (httpChannel) {
|
|
|
|
nsAutoCString contentLength;
|
|
|
|
nsresult rv = httpChannel->GetResponseHeader(NS_LITERAL_CSTRING("content-length"),
|
|
|
|
contentLength);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
return std::max(contentLength.ToInteger(&rv), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the file size as a size hint for file channels.
|
|
|
|
nsCOMPtr<nsIFileChannel> fileChannel(do_QueryInterface(aRequest));
|
|
|
|
if (fileChannel) {
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
nsresult rv = fileChannel->GetFile(getter_AddRefs(file));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
int64_t filesize;
|
|
|
|
rv = file->GetFileSize(&filesize);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
return std::max(SaturateToInt32(filesize), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback - neither http nor file. We'll use dynamic allocation.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-17 17:35:07 -08:00
|
|
|
/* static */ already_AddRefed<Image>
|
2012-12-17 14:05:18 -08:00
|
|
|
ImageFactory::CreateRasterImage(nsIRequest* aRequest,
|
|
|
|
imgStatusTracker* aStatusTracker,
|
|
|
|
const nsCString& aMimeType,
|
2012-12-19 13:28:54 -08:00
|
|
|
nsIURI* aURI,
|
2012-12-17 14:05:18 -08:00
|
|
|
uint32_t aImageFlags,
|
|
|
|
uint32_t aInnerWindowId)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2012-12-19 13:28:54 -08:00
|
|
|
nsRefPtr<RasterImage> newImage = new RasterImage(aStatusTracker, aURI);
|
2012-12-17 14:05:18 -08:00
|
|
|
|
2013-02-12 19:00:03 -08:00
|
|
|
rv = newImage->Init(aMimeType.get(), aImageFlags);
|
2012-12-17 14:05:18 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, BadImage(newImage));
|
|
|
|
|
|
|
|
newImage->SetInnerWindowID(aInnerWindowId);
|
|
|
|
|
2013-03-01 11:21:06 -08:00
|
|
|
uint32_t len = GetContentSize(aRequest);
|
|
|
|
|
|
|
|
// Pass anything usable on so that the RasterImage can preallocate
|
|
|
|
// its source buffer.
|
|
|
|
if (len > 0) {
|
|
|
|
uint32_t sizeHint = std::min<uint32_t>(len, 20000000); // Bound by something reasonable
|
|
|
|
rv = newImage->SetSourceSizeHint(sizeHint);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Flush memory, try to get some back, and try again.
|
|
|
|
rv = nsMemory::HeapMinimize(true);
|
|
|
|
nsresult rv2 = newImage->SetSourceSizeHint(sizeHint);
|
|
|
|
// If we've still failed at this point, things are going downhill.
|
|
|
|
if (NS_FAILED(rv) || NS_FAILED(rv2)) {
|
|
|
|
NS_WARNING("About to hit OOM in imagelib!");
|
2012-12-17 14:05:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 16:12:40 -07:00
|
|
|
mozilla::net::nsMediaFragmentURIParser parser(aURI);
|
|
|
|
if (parser.HasResolution()) {
|
|
|
|
newImage->SetRequestedResolution(parser.GetResolution());
|
|
|
|
}
|
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
return newImage.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Image>
|
|
|
|
ImageFactory::CreateVectorImage(nsIRequest* aRequest,
|
|
|
|
imgStatusTracker* aStatusTracker,
|
|
|
|
const nsCString& aMimeType,
|
2012-12-19 13:28:54 -08:00
|
|
|
nsIURI* aURI,
|
2012-12-17 14:05:18 -08:00
|
|
|
uint32_t aImageFlags,
|
|
|
|
uint32_t aInnerWindowId)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2012-12-19 13:28:54 -08:00
|
|
|
nsRefPtr<VectorImage> newImage = new VectorImage(aStatusTracker, aURI);
|
2012-12-17 14:05:18 -08:00
|
|
|
|
2013-02-12 19:00:03 -08:00
|
|
|
rv = newImage->Init(aMimeType.get(), aImageFlags);
|
2012-12-17 14:05:18 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, BadImage(newImage));
|
|
|
|
|
|
|
|
newImage->SetInnerWindowID(aInnerWindowId);
|
|
|
|
|
|
|
|
rv = newImage->OnStartRequest(aRequest, nullptr);
|
|
|
|
NS_ENSURE_SUCCESS(rv, BadImage(newImage));
|
|
|
|
|
|
|
|
return newImage.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|