mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
00b0a024a4
- namespace (dd7e1c593d) - Bug 1158541 - Remove TiledTextureImage::mSize; r=jrmuizel This member is never initialized to anything so it always contains a (0,0) size, and it shadows the protected mSize member in the base class which is actually initialized to the correct size. (e2930b05a8) - Bug 1158542 - Remove TextureImage::mImageFormat; r=jrmuizel This is never initialized or accessed. (c5af3763b5) - Bug 1136428 - Create a different set and restore path of the draw buffer state in WebGLContext::ForceClearFramebufferWithDefaultValues depending on whether or not the default framebuffer is being used. r=jgilbert (e92fbcaa38) - Bug 1136428 - Change implementation of WebGLContext::DrawBuffers such that it goes through GLScreenBuffer to change the draw buffer. Added a variable to GLScreenBuffer to cache the draw buffer mode. r=jgilbert (eb80c3ac18) - Bug 1136428 - Ensure we never create more than the amount supported of color attachments in WebGLFrameBuffer or try to get an attachment point higher than the supported number. r=jgilbert (3050ce6979) - Bug 1185803 - Replace MOZ_CRASH with GenerateWarning. r=jgilbert (1b5ba983c6) - Bug 1188540 - Forward texture-related functions to WebGLTexture. - r=kamidphish (10f84c83e5) - Bug 1189903 - Don't use RGBA surfaces on GLX if surface sharing is not used. r=jgilbert (2edbca3d13) - Bug 1170842 - Part 3: Implement GetInternalformatParameter. r=jgilbert, r=smaug (18f0fdf5f9) - Bug 1170842 - Part 4: Implement FramebufferTextureLayer. r=jgilbert (2acd7963e7) - Bug 1062066 (Part 1) - Add support for vertically flipping downscaler output. r=tn (f23315cba2) - Bug 1204626 - Add a regression test. r=billm (aa3c694b83) - Bug 1062066 (Part 2) - Add a Downscaler API to clear a row. r=tn (7c77bf27b0) - Bug 1062066 (Part 3) - Only mark BMP surfaces as transparent if they actually have alpha data. r=tn (ed9bade04e) - Bug 1060609 (Part 2) - Add downscale-during-decode support for the PNG decoder. r=tn,f=glennrp (47259a797a) - hack to fix build (12266daf48) - Bug 1060609 (Part 3) - Add tests that interlaced and non-interlaced PNGs have the same downscaling behavior. r=tn (763b18b15e) - Bug 1062066 (Part 4) - Add downscale-during-decode support for the BMP decoder. r=tn (5a810ed168) - indentation fixes (872c66d3a8)
304 lines
8.8 KiB
C++
304 lines
8.8 KiB
C++
/* -*- 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/. */
|
|
|
|
#include <algorithm>
|
|
|
|
#include "mozilla/Likely.h"
|
|
|
|
#include "nsIHttpChannel.h"
|
|
#include "nsIFileChannel.h"
|
|
#include "nsIFile.h"
|
|
#include "nsMimeTypes.h"
|
|
#include "nsIRequest.h"
|
|
|
|
#include "MultipartImage.h"
|
|
#include "RasterImage.h"
|
|
#include "VectorImage.h"
|
|
#include "Image.h"
|
|
#include "nsMediaFragmentURIParser.h"
|
|
#include "nsContentUtils.h"
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "ImageFactory.h"
|
|
#include "gfxPrefs.h"
|
|
|
|
namespace mozilla {
|
|
namespace image {
|
|
|
|
/*static*/ void
|
|
ImageFactory::Initialize()
|
|
{ }
|
|
|
|
static bool
|
|
ShouldDownscaleDuringDecode(const nsCString& aMimeType)
|
|
{
|
|
DecoderType type = DecoderFactory::GetDecoderType(aMimeType.get());
|
|
return type == DecoderType::JPEG ||
|
|
type == DecoderType::PNG ||
|
|
type == DecoderType::BMP;
|
|
}
|
|
|
|
static uint32_t
|
|
ComputeImageFlags(ImageURL* uri, const nsCString& aMimeType, bool isMultiPart)
|
|
{
|
|
nsresult rv;
|
|
|
|
// We default to the static globals.
|
|
bool isDiscardable = gfxPrefs::ImageMemDiscardable();
|
|
bool doDecodeImmediately = gfxPrefs::ImageDecodeImmediatelyEnabled();
|
|
bool doDownscaleDuringDecode = gfxPrefs::ImageDownscaleDuringDecodeEnabled();
|
|
|
|
// We want UI to be as snappy as possible and not to flicker. Disable
|
|
// discarding for chrome URLS.
|
|
bool isChrome = false;
|
|
rv = uri->SchemeIs("chrome", &isChrome);
|
|
if (NS_SUCCEEDED(rv) && isChrome) {
|
|
isDiscardable = false;
|
|
}
|
|
|
|
// We don't want resources like the "loading" icon to be discardable either.
|
|
bool isResource = false;
|
|
rv = uri->SchemeIs("resource", &isResource);
|
|
if (NS_SUCCEEDED(rv) && isResource) {
|
|
isDiscardable = false;
|
|
}
|
|
|
|
// Downscale-during-decode is only enabled for certain content types.
|
|
if (doDownscaleDuringDecode && !ShouldDownscaleDuringDecode(aMimeType)) {
|
|
doDownscaleDuringDecode = false;
|
|
}
|
|
|
|
// For multipart/x-mixed-replace, we basically want a direct channel to the
|
|
// decoder. Disable everything for this case.
|
|
if (isMultiPart) {
|
|
isDiscardable = doDownscaleDuringDecode = false;
|
|
}
|
|
|
|
// We have all the information we need.
|
|
uint32_t imageFlags = Image::INIT_FLAG_NONE;
|
|
if (isDiscardable) {
|
|
imageFlags |= Image::INIT_FLAG_DISCARDABLE;
|
|
}
|
|
if (doDecodeImmediately) {
|
|
imageFlags |= Image::INIT_FLAG_DECODE_IMMEDIATELY;
|
|
}
|
|
if (isMultiPart) {
|
|
imageFlags |= Image::INIT_FLAG_TRANSIENT;
|
|
}
|
|
if (doDownscaleDuringDecode) {
|
|
imageFlags |= Image::INIT_FLAG_DOWNSCALE_DURING_DECODE;
|
|
}
|
|
|
|
return imageFlags;
|
|
}
|
|
|
|
/* static */ already_AddRefed<Image>
|
|
ImageFactory::CreateImage(nsIRequest* aRequest,
|
|
ProgressTracker* aProgressTracker,
|
|
const nsCString& aMimeType,
|
|
ImageURL* aURI,
|
|
bool aIsMultiPart,
|
|
uint32_t aInnerWindowId)
|
|
{
|
|
MOZ_ASSERT(gfxPrefs::SingletonExists(),
|
|
"Pref observers should have been initialized already");
|
|
|
|
// Compute the image's initialization flags.
|
|
uint32_t imageFlags = ComputeImageFlags(aURI, aMimeType, aIsMultiPart);
|
|
|
|
// Select the type of image to create based on MIME type.
|
|
if (aMimeType.EqualsLiteral(IMAGE_SVG_XML)) {
|
|
return CreateVectorImage(aRequest, aProgressTracker, aMimeType,
|
|
aURI, imageFlags, aInnerWindowId);
|
|
} else {
|
|
return CreateRasterImage(aRequest, aProgressTracker, aMimeType,
|
|
aURI, imageFlags, aInnerWindowId);
|
|
}
|
|
}
|
|
|
|
// 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>
|
|
ImageFactory::CreateAnonymousImage(const nsCString& aMimeType)
|
|
{
|
|
nsresult rv;
|
|
|
|
nsRefPtr<RasterImage> newImage = new RasterImage();
|
|
|
|
nsRefPtr<ProgressTracker> newTracker = new ProgressTracker();
|
|
newTracker->SetImage(newImage);
|
|
newImage->SetProgressTracker(newTracker);
|
|
|
|
rv = newImage->Init(aMimeType.get(), Image::INIT_FLAG_SYNC_LOAD);
|
|
NS_ENSURE_SUCCESS(rv, BadImage(newImage));
|
|
|
|
return newImage.forget();
|
|
}
|
|
|
|
/* static */ already_AddRefed<MultipartImage>
|
|
ImageFactory::CreateMultipartImage(Image* aFirstPart,
|
|
ProgressTracker* aProgressTracker)
|
|
{
|
|
MOZ_ASSERT(aFirstPart);
|
|
MOZ_ASSERT(aProgressTracker);
|
|
|
|
nsRefPtr<MultipartImage> newImage = new MultipartImage(aFirstPart);
|
|
aProgressTracker->SetImage(newImage);
|
|
newImage->SetProgressTracker(aProgressTracker);
|
|
|
|
newImage->Init();
|
|
|
|
return newImage.forget();
|
|
}
|
|
|
|
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)
|
|
{
|
|
nsCOMPtr<nsIChannel> channel(do_QueryInterface(aRequest));
|
|
if (channel) {
|
|
int64_t size;
|
|
nsresult rv = channel->GetContentLength(&size);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
return std::max(SaturateToInt32(size), 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;
|
|
}
|
|
|
|
/* static */ already_AddRefed<Image>
|
|
ImageFactory::CreateRasterImage(nsIRequest* aRequest,
|
|
ProgressTracker* aProgressTracker,
|
|
const nsCString& aMimeType,
|
|
ImageURL* aURI,
|
|
uint32_t aImageFlags,
|
|
uint32_t aInnerWindowId)
|
|
{
|
|
MOZ_ASSERT(aProgressTracker);
|
|
|
|
nsresult rv;
|
|
|
|
nsRefPtr<RasterImage> newImage = new RasterImage(aURI);
|
|
aProgressTracker->SetImage(newImage);
|
|
newImage->SetProgressTracker(aProgressTracker);
|
|
|
|
nsAutoCString ref;
|
|
aURI->GetRef(ref);
|
|
net::nsMediaFragmentURIParser parser(ref);
|
|
if (parser.HasResolution()) {
|
|
newImage->SetRequestedResolution(parser.GetResolution());
|
|
}
|
|
|
|
if (parser.HasSampleSize()) {
|
|
/* Get our principal */
|
|
nsCOMPtr<nsIChannel> chan(do_QueryInterface(aRequest));
|
|
nsCOMPtr<nsIPrincipal> principal;
|
|
if (chan) {
|
|
nsContentUtils::GetSecurityManager()
|
|
->GetChannelResultPrincipal(chan, getter_AddRefs(principal));
|
|
}
|
|
|
|
if ((principal &&
|
|
principal->GetAppStatus() == nsIPrincipal::APP_STATUS_CERTIFIED) ||
|
|
gfxPrefs::ImageMozSampleSizeEnabled()) {
|
|
newImage->SetRequestedSampleSize(parser.GetSampleSize());
|
|
}
|
|
}
|
|
|
|
rv = newImage->Init(aMimeType.get(), aImageFlags);
|
|
NS_ENSURE_SUCCESS(rv, BadImage(newImage));
|
|
|
|
newImage->SetInnerWindowID(aInnerWindowId);
|
|
|
|
uint32_t len = GetContentSize(aRequest);
|
|
|
|
// Pass anything usable on so that the RasterImage can preallocate
|
|
// its source buffer.
|
|
if (len > 0) {
|
|
// Bound by something reasonable
|
|
uint32_t sizeHint = std::min<uint32_t>(len, 20000000);
|
|
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!");
|
|
}
|
|
}
|
|
}
|
|
|
|
return newImage.forget();
|
|
}
|
|
|
|
/* static */ already_AddRefed<Image>
|
|
ImageFactory::CreateVectorImage(nsIRequest* aRequest,
|
|
ProgressTracker* aProgressTracker,
|
|
const nsCString& aMimeType,
|
|
ImageURL* aURI,
|
|
uint32_t aImageFlags,
|
|
uint32_t aInnerWindowId)
|
|
{
|
|
MOZ_ASSERT(aProgressTracker);
|
|
|
|
nsresult rv;
|
|
|
|
nsRefPtr<VectorImage> newImage = new VectorImage(aURI);
|
|
aProgressTracker->SetImage(newImage);
|
|
newImage->SetProgressTracker(aProgressTracker);
|
|
|
|
rv = newImage->Init(aMimeType.get(), aImageFlags);
|
|
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
|