2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07:00
|
|
|
* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** @file
|
2010-08-13 21:09:49 -07:00
|
|
|
* This file declares the RasterImage class, which
|
|
|
|
* handles static and animated rasterized images.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @author Stuart Parmenter <pavlov@netscape.com>
|
|
|
|
* @author Chris Saari <saari@netscape.com>
|
|
|
|
* @author Arron Mogge <paper@animecity.nu>
|
|
|
|
* @author Andrew Smith <asmith15@learn.senecac.on.ca>
|
|
|
|
*/
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
#ifndef mozilla_imagelib_RasterImage_h_
|
|
|
|
#define mozilla_imagelib_RasterImage_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-13 21:09:48 -07:00
|
|
|
#include "Image.h"
|
2013-06-17 13:49:04 -07:00
|
|
|
#include "FrameBlender.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "imgIContainer.h"
|
|
|
|
#include "nsIProperties.h"
|
2007-10-18 17:36:34 -07:00
|
|
|
#include "nsTArray.h"
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
#include "imgFrame.h"
|
2009-09-12 15:44:18 -07:00
|
|
|
#include "nsThreadUtils.h"
|
2013-12-17 14:04:24 -08:00
|
|
|
#include "DecodeStrategy.h"
|
2010-08-13 21:09:49 -07:00
|
|
|
#include "DiscardTracker.h"
|
2013-08-25 00:19:42 -07:00
|
|
|
#include "Orientation.h"
|
2013-09-07 06:01:08 -07:00
|
|
|
#include "nsIObserver.h"
|
2013-06-23 05:03:39 -07:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2013-12-17 14:04:31 -08:00
|
|
|
#include "mozilla/Mutex.h"
|
|
|
|
#include "mozilla/ReentrantMonitor.h"
|
2011-08-04 13:25:12 -07:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2012-07-26 12:33:45 -07:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2012-10-04 12:45:07 -07:00
|
|
|
#include "mozilla/WeakPtr.h"
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include "imgIContainerDebug.h"
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-13 21:09:48 -07:00
|
|
|
class nsIInputStream;
|
2013-03-01 15:17:24 -08:00
|
|
|
class nsIThreadPool;
|
2013-09-07 06:01:08 -07:00
|
|
|
class nsIRequest;
|
2010-08-13 21:09:48 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
#define NS_RASTERIMAGE_CID \
|
2010-08-05 07:53:43 -07:00
|
|
|
{ /* 376ff2c1-9bf6-418a-b143-3340c00112f7 */ \
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
0x376ff2c1, \
|
|
|
|
0x9bf6, \
|
|
|
|
0x418a, \
|
|
|
|
{0xb1, 0x43, 0x33, 0x40, 0xc0, 0x01, 0x12, 0xf7} \
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles static and animated image containers.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @par A Quick Walk Through
|
|
|
|
* The decoder initializes this class and calls AppendFrame() to add a frame.
|
2010-08-13 21:09:49 -07:00
|
|
|
* Once RasterImage detects more than one frame, it starts the animation
|
2011-11-09 13:39:16 -08:00
|
|
|
* with StartAnimation(). Note that the invalidation events for RasterImage are
|
|
|
|
* generated automatically using nsRefreshDriver.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
2011-11-09 13:39:16 -08:00
|
|
|
* StartAnimation() initializes the animation helper object and sets the time
|
|
|
|
* the first frame was displayed to the current clock time.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
2011-11-09 13:39:16 -08:00
|
|
|
* When the refresh driver corresponding to the imgIContainer that this image is
|
|
|
|
* a part of notifies the RasterImage that it's time to invalidate,
|
|
|
|
* RequestRefresh() is called with a given TimeStamp to advance to. As long as
|
|
|
|
* the timeout of the given frame (the frame's "delay") plus the time that frame
|
|
|
|
* was first displayed is less than or equal to the TimeStamp given,
|
|
|
|
* RequestRefresh() calls AdvanceFrame().
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* AdvanceFrame() is responsible for advancing a single frame of the animation.
|
|
|
|
* It can return true, meaning that the frame advanced, or false, meaning that
|
|
|
|
* the frame failed to advance (usually because the next frame hasn't been
|
|
|
|
* decoded yet). It is also responsible for performing the final animation stop
|
|
|
|
* procedure if the final frame of a non-looping animation is reached.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* Each frame can have a different method of removing itself. These are
|
2013-03-29 13:14:19 -07:00
|
|
|
* listed as imgIContainer::cDispose... constants. Notify() calls
|
2007-03-22 10:30:00 -07:00
|
|
|
* DoComposite() to handle any special frame destruction.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* The basic path through DoComposite() is:
|
|
|
|
* 1) Calculate Area that needs updating, which is at least the area of
|
|
|
|
* aNextFrame.
|
|
|
|
* 2) Dispose of previous frame.
|
|
|
|
* 3) Draw new image onto compositingFrame.
|
|
|
|
* See comments in DoComposite() for more information and optimizations.
|
|
|
|
*
|
|
|
|
* @par
|
2010-08-13 21:09:49 -07:00
|
|
|
* The rest of the RasterImage specific functions are used by DoComposite to
|
2007-03-22 10:30:00 -07:00
|
|
|
* destroy the old frame and build the new one.
|
|
|
|
*
|
|
|
|
* @note
|
2010-05-13 05:19:50 -07:00
|
|
|
* <li> "Mask", "Alpha", and "Alpha Level" are interchangeable phrases in
|
2010-08-13 21:09:49 -07:00
|
|
|
* respects to RasterImage.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* <li> GIFs never have more than a 1 bit alpha.
|
|
|
|
* <li> APNGs may have a full alpha channel.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* <li> Background color specified in GIF is ignored by web browsers.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* <li> If Frame 3 wants to dispose by restoring previous, what it wants is to
|
|
|
|
* restore the composition up to and including Frame 2, as well as Frame 2s
|
|
|
|
* disposal. So, in the middle of DoComposite when composing Frame 3, right
|
|
|
|
* after destroying Frame 2's area, we copy compositingFrame to
|
|
|
|
* prevCompositingFrame. When DoComposite gets called to do Frame 4, we
|
|
|
|
* copy prevCompositingFrame back, and then draw Frame 4 on top.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* The mAnim structure has members only needed for animated images, so
|
|
|
|
* it's not allocated until the second frame is added.
|
|
|
|
*/
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-12-17 14:04:31 -08:00
|
|
|
|
2011-11-08 19:14:41 -08:00
|
|
|
namespace layers {
|
|
|
|
class LayerManager;
|
|
|
|
class ImageContainer;
|
2012-09-24 13:31:30 -07:00
|
|
|
class Image;
|
2011-11-08 19:14:41 -08:00
|
|
|
}
|
2013-12-17 14:04:31 -08:00
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2014-07-10 08:00:31 -07:00
|
|
|
class ScaleRequest;
|
2010-08-22 19:30:46 -07:00
|
|
|
class Decoder;
|
2013-07-15 11:38:59 -07:00
|
|
|
class FrameAnimator;
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2014-08-05 10:33:55 -07:00
|
|
|
class RasterImage MOZ_FINAL : public ImageResource
|
|
|
|
, public nsIProperties
|
|
|
|
, public SupportsWeakPtr<RasterImage>
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
2014-08-05 10:33:55 -07:00
|
|
|
, public imgIContainerDebug
|
2010-09-07 17:34:18 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2014-06-23 11:49:08 -07:00
|
|
|
// (no public constructor - use ImageFactory)
|
|
|
|
virtual ~RasterImage();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
2014-02-20 18:33:49 -08:00
|
|
|
MOZ_DECLARE_REFCOUNTED_TYPENAME(RasterImage)
|
2013-07-18 19:23:31 -07:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2007-06-21 13:45:49 -07:00
|
|
|
NS_DECL_NSIPROPERTIES
|
2012-10-19 13:27:11 -07:00
|
|
|
NS_DECL_IMGICONTAINER
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_IMGICONTAINERDEBUG
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-09-07 17:33:02 -07:00
|
|
|
virtual nsresult StartAnimation();
|
|
|
|
virtual nsresult StopAnimation();
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
// Methods inherited from Image
|
2013-02-12 19:00:03 -08:00
|
|
|
nsresult Init(const char* aMimeType,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags);
|
2013-02-04 16:06:14 -08:00
|
|
|
virtual nsIntRect FrameRect(uint32_t aWhichFrame) MOZ_OVERRIDE;
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
// Raster-specific methods
|
2010-08-13 21:09:51 -07:00
|
|
|
static NS_METHOD WriteToRasterImage(nsIInputStream* aIn, void* aClosure,
|
|
|
|
const char* aFromRawSegment,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aToOffset, uint32_t aCount,
|
|
|
|
uint32_t* aWriteCount);
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-08-23 15:44:07 -07:00
|
|
|
/* The index of the current frame that would be drawn if the image was to be
|
|
|
|
* drawn now. */
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetCurrentFrameIndex();
|
2010-08-23 15:44:07 -07:00
|
|
|
|
|
|
|
/* The total number of frames in this image. */
|
2013-06-17 13:49:04 -07:00
|
|
|
uint32_t GetNumFrames() const;
|
2010-08-23 15:44:07 -07:00
|
|
|
|
2014-06-16 15:25:43 -07:00
|
|
|
virtual size_t HeapSizeOfSourceWithComputedFallback(MallocSizeOf aMallocSizeOf) const;
|
|
|
|
virtual size_t HeapSizeOfDecodedWithComputedFallback(MallocSizeOf aMallocSizeOf) const;
|
2012-02-19 19:51:48 -08:00
|
|
|
virtual size_t NonHeapSizeOfDecoded() const;
|
|
|
|
virtual size_t OutOfProcessSizeOfDecoded() const;
|
2010-05-21 21:10:14 -07:00
|
|
|
|
2014-05-08 02:53:00 -07:00
|
|
|
virtual size_t HeapSizeOfVectorImageDocument(nsACString* aDocURL = nullptr) const MOZ_OVERRIDE {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-01 10:39:44 -07:00
|
|
|
/* Triggers discarding. */
|
2011-01-12 17:45:13 -08:00
|
|
|
void Discard(bool force = false);
|
|
|
|
void ForceDiscard() { Discard(/* force = */ true); }
|
2010-07-01 10:39:44 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
/* Callbacks for decoders */
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetFrameAsNonPremult(uint32_t aFrameNum, bool aIsNonPremult);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2013-08-25 00:19:42 -07:00
|
|
|
/** Sets the size and inherent orientation of the container. This should only
|
|
|
|
* be called by the decoder. This function may be called multiple times, but
|
|
|
|
* will throw an error if subsequent calls do not match the first.
|
2010-08-13 21:09:49 -07:00
|
|
|
*/
|
2013-08-25 00:19:42 -07:00
|
|
|
nsresult SetSize(int32_t aWidth, int32_t aHeight, Orientation aOrientation);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/**
|
2011-07-14 11:47:43 -07:00
|
|
|
* Ensures that a given frame number exists with the given parameters, and
|
|
|
|
* returns pointers to the data storage for that frame.
|
|
|
|
* It is not possible to create sparse frame arrays; you can only append
|
|
|
|
* frames to the current frame array.
|
2010-08-13 21:09:49 -07:00
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult EnsureFrame(uint32_t aFramenum, int32_t aX, int32_t aY,
|
|
|
|
int32_t aWidth, int32_t aHeight,
|
2014-04-19 18:28:38 -07:00
|
|
|
gfx::SurfaceFormat aFormat,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
uint8_t** imageData,
|
|
|
|
uint32_t* imageLength,
|
|
|
|
uint32_t** paletteData,
|
2013-02-27 11:23:08 -08:00
|
|
|
uint32_t* paletteLength,
|
|
|
|
imgFrame** aFrame);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2011-07-14 11:47:43 -07:00
|
|
|
/**
|
|
|
|
* A shorthand for EnsureFrame, above, with aPaletteDepth = 0 and paletteData
|
|
|
|
* and paletteLength set to null.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult EnsureFrame(uint32_t aFramenum, int32_t aX, int32_t aY,
|
|
|
|
int32_t aWidth, int32_t aHeight,
|
2014-04-19 18:28:38 -07:00
|
|
|
gfx::SurfaceFormat aFormat,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t** imageData,
|
2013-02-27 11:23:08 -08:00
|
|
|
uint32_t* imageLength,
|
|
|
|
imgFrame** aFrame);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* notification that the entire image has been decoded */
|
|
|
|
nsresult DecodingComplete();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Number of times to loop the image.
|
|
|
|
* @note -1 means forever.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void SetLoopCount(int32_t aLoopCount);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* Add compressed source data to the imgContainer.
|
|
|
|
*
|
|
|
|
* The decoder will use this data, either immediately or at draw time, to
|
|
|
|
* decode the image.
|
|
|
|
*
|
|
|
|
* XXX This method's only caller (WriteToContainer) ignores the return
|
|
|
|
* value. Should this just return void?
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult AddSourceData(const char *aBuffer, uint32_t aCount);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
virtual nsresult OnImageDataAvailable(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
|
|
|
nsIInputStream* aInStr,
|
|
|
|
uint64_t aSourceOffset,
|
|
|
|
uint32_t aCount) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult OnImageDataComplete(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
2013-02-13 18:41:10 -08:00
|
|
|
nsresult aStatus,
|
|
|
|
bool aLastPart) MOZ_OVERRIDE;
|
2012-12-17 14:05:18 -08:00
|
|
|
virtual nsresult OnNewSourceData() MOZ_OVERRIDE;
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2013-09-28 11:28:42 -07:00
|
|
|
static already_AddRefed<nsIEventTarget> GetEventTarget() {
|
|
|
|
return DecodePool::Singleton()->GetEventTarget();
|
|
|
|
}
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
/**
|
|
|
|
* A hint of the number of bytes of source data that the image contains. If
|
|
|
|
* called early on, this can help reduce copying and reallocations by
|
|
|
|
* appropriately preallocating the source data buffer.
|
|
|
|
*
|
|
|
|
* We take this approach rather than having the source data management code do
|
|
|
|
* something more complicated (like chunklisting) because HTTP is by far the
|
|
|
|
* dominant source of images, and the Content-Length header is quite reliable.
|
|
|
|
* Thus, pre-allocation simplifies code and reduces the total number of
|
|
|
|
* allocations.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetSourceSizeHint(uint32_t sizeHint);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2013-03-22 16:12:40 -07:00
|
|
|
/* Provide a hint for the requested resolution of the resulting image. */
|
|
|
|
void SetRequestedResolution(const nsIntSize requestedResolution) {
|
|
|
|
mRequestedResolution = requestedResolution;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIntSize GetRequestedResolution() {
|
|
|
|
return mRequestedResolution;
|
|
|
|
}
|
2014-02-28 13:43:14 -08:00
|
|
|
/* Provide a hint for the requested dimension of the resulting image. */
|
|
|
|
void SetRequestedSampleSize(int requestedSampleSize) {
|
|
|
|
mRequestedSampleSize = requestedSampleSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetRequestedSampleSize() {
|
|
|
|
return mRequestedSampleSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-22 16:12:40 -07:00
|
|
|
|
2012-12-19 12:11:42 -08:00
|
|
|
nsCString GetURIString() {
|
2013-01-30 12:11:20 -08:00
|
|
|
nsCString spec;
|
|
|
|
if (GetURI()) {
|
|
|
|
GetURI()->GetSpec(spec);
|
|
|
|
}
|
|
|
|
return spec;
|
|
|
|
}
|
2010-09-12 08:22:31 -07:00
|
|
|
|
2012-09-26 08:33:06 -07:00
|
|
|
// Called from module startup. Sets up RasterImage to be used.
|
|
|
|
static void Initialize();
|
|
|
|
|
2012-10-12 15:24:47 -07:00
|
|
|
enum ScaleStatus
|
|
|
|
{
|
|
|
|
SCALE_INVALID,
|
|
|
|
SCALE_PENDING,
|
|
|
|
SCALE_DONE
|
|
|
|
};
|
|
|
|
|
|
|
|
// Call this with a new ScaleRequest to mark this RasterImage's scale result
|
|
|
|
// as waiting for the results of this request. You call to ScalingDone before
|
|
|
|
// request is destroyed!
|
|
|
|
void ScalingStart(ScaleRequest* request);
|
|
|
|
|
|
|
|
// Call this with a finished ScaleRequest to set this RasterImage's scale
|
|
|
|
// result. Give it a ScaleStatus of SCALE_DONE if everything succeeded, and
|
|
|
|
// SCALE_INVALID otherwise.
|
|
|
|
void ScalingDone(ScaleRequest* request, ScaleStatus status);
|
|
|
|
|
2012-11-16 11:43:24 -08:00
|
|
|
// Decoder shutdown
|
|
|
|
enum eShutdownIntent {
|
|
|
|
eShutdownIntent_Done = 0,
|
2013-02-13 13:41:45 -08:00
|
|
|
eShutdownIntent_NotNeeded = 1,
|
2012-11-16 11:43:24 -08:00
|
|
|
eShutdownIntent_Error = 2,
|
|
|
|
eShutdownIntent_AllCount = 3
|
|
|
|
};
|
|
|
|
|
2013-12-17 14:04:24 -08:00
|
|
|
// Decode strategy
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
2014-07-28 14:27:39 -07:00
|
|
|
// Initiates an HQ scale for the given frame, if possible.
|
2014-08-22 13:12:38 -07:00
|
|
|
void RequestScale(imgFrame* aFrame, nsIntSize aScale);
|
2014-07-28 14:27:39 -07:00
|
|
|
|
2013-09-28 11:28:44 -07:00
|
|
|
already_AddRefed<imgStatusTracker> CurrentStatusTracker()
|
2013-01-18 13:47:18 -08:00
|
|
|
{
|
2013-12-17 14:04:32 -08:00
|
|
|
mDecodingMonitor.AssertCurrentThreadIn();
|
2013-09-28 11:28:44 -07:00
|
|
|
nsRefPtr<imgStatusTracker> statusTracker;
|
|
|
|
statusTracker = mDecodeRequest ? mDecodeRequest->mStatusTracker
|
|
|
|
: mStatusTracker;
|
|
|
|
MOZ_ASSERT(statusTracker);
|
|
|
|
return statusTracker.forget();
|
2013-01-18 13:47:18 -08:00
|
|
|
}
|
|
|
|
|
2013-02-01 17:06:34 -08:00
|
|
|
nsresult OnImageDataCompleteCore(nsIRequest* aRequest, nsISupports*, nsresult aStatus);
|
|
|
|
|
2012-02-09 12:04:30 -08:00
|
|
|
/**
|
2013-01-18 13:47:18 -08:00
|
|
|
* Each RasterImage has a pointer to one or zero heap-allocated
|
|
|
|
* DecodeRequests.
|
2012-02-09 12:04:30 -08:00
|
|
|
*/
|
2013-03-01 15:17:24 -08:00
|
|
|
struct DecodeRequest
|
2012-02-09 12:04:30 -08:00
|
|
|
{
|
|
|
|
DecodeRequest(RasterImage* aImage)
|
|
|
|
: mImage(aImage)
|
2013-01-18 13:47:18 -08:00
|
|
|
, mBytesToDecode(0)
|
2013-03-01 15:17:24 -08:00
|
|
|
, mRequestStatus(REQUEST_INACTIVE)
|
2013-01-18 13:47:18 -08:00
|
|
|
, mChunkCount(0)
|
2013-02-27 11:23:08 -08:00
|
|
|
, mAllocatedNewFrame(false)
|
2012-02-09 12:04:30 -08:00
|
|
|
{
|
2013-09-28 11:28:44 -07:00
|
|
|
MOZ_ASSERT(aImage, "aImage cannot be null");
|
|
|
|
MOZ_ASSERT(aImage->mStatusTracker,
|
|
|
|
"aImage should have an imgStatusTracker");
|
2013-01-18 13:47:18 -08:00
|
|
|
mStatusTracker = aImage->mStatusTracker->CloneForRecording();
|
2012-02-09 12:04:30 -08:00
|
|
|
}
|
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(DecodeRequest)
|
|
|
|
|
2013-01-18 13:47:18 -08:00
|
|
|
// The status tracker that is associated with a given decode request, to
|
|
|
|
// ensure their lifetimes are linked.
|
|
|
|
nsRefPtr<imgStatusTracker> mStatusTracker;
|
|
|
|
|
2013-01-18 13:47:18 -08:00
|
|
|
RasterImage* mImage;
|
2012-02-09 12:04:30 -08:00
|
|
|
|
2014-05-08 18:03:35 -07:00
|
|
|
size_t mBytesToDecode;
|
2013-01-18 13:47:18 -08:00
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
enum DecodeRequestStatus
|
|
|
|
{
|
|
|
|
REQUEST_INACTIVE,
|
|
|
|
REQUEST_PENDING,
|
|
|
|
REQUEST_ACTIVE,
|
|
|
|
REQUEST_WORK_DONE,
|
|
|
|
REQUEST_STOPPED
|
|
|
|
} mRequestStatus;
|
|
|
|
|
2012-02-09 12:04:30 -08:00
|
|
|
/* Keeps track of how much time we've burned decoding this particular decode
|
|
|
|
* request. */
|
|
|
|
TimeDuration mDecodeTime;
|
|
|
|
|
2013-01-18 13:47:18 -08:00
|
|
|
/* The number of chunks it took to decode this image. */
|
|
|
|
int32_t mChunkCount;
|
|
|
|
|
2013-02-27 11:23:08 -08:00
|
|
|
/* True if a new frame has been allocated, but DecodeSomeData hasn't yet
|
|
|
|
* been called to flush data to it */
|
|
|
|
bool mAllocatedNewFrame;
|
2014-06-18 19:29:00 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
~DecodeRequest() {}
|
2012-02-09 12:04:30 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2013-03-01 15:17:24 -08:00
|
|
|
* DecodePool is a singleton class we use when decoding large images.
|
2012-02-09 12:04:30 -08:00
|
|
|
*
|
|
|
|
* When we wish to decode an image larger than
|
2013-03-01 15:17:24 -08:00
|
|
|
* image.mem.max_bytes_for_sync_decode, we call DecodePool::RequestDecode()
|
2012-02-09 12:04:30 -08:00
|
|
|
* for the image. This adds the image to a queue of pending requests and posts
|
2013-03-01 15:17:24 -08:00
|
|
|
* the DecodePool singleton to the event queue, if it's not already pending
|
2012-02-09 12:04:30 -08:00
|
|
|
* there.
|
|
|
|
*
|
2013-03-01 15:17:24 -08:00
|
|
|
* When the DecodePool is run from the event queue, it decodes the image (and
|
2012-02-09 12:04:30 -08:00
|
|
|
* all others it's managing) in chunks, periodically yielding control back to
|
|
|
|
* the event loop.
|
|
|
|
*/
|
2013-03-01 15:17:24 -08:00
|
|
|
class DecodePool : public nsIObserver
|
2012-02-09 12:04:30 -08:00
|
|
|
{
|
|
|
|
public:
|
2013-07-18 19:23:31 -07:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2013-03-01 15:17:24 -08:00
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
static DecodePool* Singleton();
|
2012-02-09 12:04:30 -08:00
|
|
|
|
|
|
|
/**
|
2013-03-01 15:17:24 -08:00
|
|
|
* Ask the DecodePool to asynchronously decode this image.
|
2012-02-09 12:04:30 -08:00
|
|
|
*/
|
|
|
|
void RequestDecode(RasterImage* aImg);
|
|
|
|
|
2012-08-13 11:12:15 -07:00
|
|
|
/**
|
|
|
|
* Decode aImg for a short amount of time, and post the remainder to the
|
|
|
|
* queue.
|
|
|
|
*/
|
2013-12-17 14:04:24 -08:00
|
|
|
void DecodeABitOf(RasterImage* aImg, DecodeStrategy aStrategy);
|
2012-08-13 11:12:15 -07:00
|
|
|
|
2012-02-09 12:04:30 -08:00
|
|
|
/**
|
2013-03-01 15:17:24 -08:00
|
|
|
* Ask the DecodePool to stop decoding this image. Internally, we also
|
2012-02-09 12:04:30 -08:00
|
|
|
* call this function when we finish decoding an image.
|
|
|
|
*
|
2013-03-01 15:17:24 -08:00
|
|
|
* Since the DecodePool keeps raw pointers to RasterImages, make sure you
|
2012-02-09 12:04:30 -08:00
|
|
|
* call this before a RasterImage is destroyed!
|
|
|
|
*/
|
2013-03-01 15:17:24 -08:00
|
|
|
static void StopDecoding(RasterImage* aImg);
|
2012-02-09 12:04:30 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronously decode the beginning of the image until we run out of
|
|
|
|
* bytes or we get the image's size. Note that this done on a best-effort
|
|
|
|
* basis; if the size is burried too deep in the image, we'll give up.
|
|
|
|
*
|
|
|
|
* @return NS_ERROR if an error is encountered, and NS_OK otherwise. (Note
|
|
|
|
* that we return NS_OK even when the size was not found.)
|
|
|
|
*/
|
|
|
|
nsresult DecodeUntilSizeAvailable(RasterImage* aImg);
|
|
|
|
|
2013-09-28 11:28:42 -07:00
|
|
|
/**
|
|
|
|
* Returns an event target interface to the thread pool; primarily for
|
|
|
|
* OnDataAvailable delivery off main thread.
|
|
|
|
*
|
|
|
|
* @return An nsIEventTarget interface to mThreadPool.
|
|
|
|
*/
|
|
|
|
already_AddRefed<nsIEventTarget> GetEventTarget();
|
|
|
|
|
2012-02-09 12:04:30 -08:00
|
|
|
private: /* statics */
|
2013-03-01 15:17:24 -08:00
|
|
|
static StaticRefPtr<DecodePool> sSingleton;
|
2012-02-09 12:04:30 -08:00
|
|
|
|
|
|
|
private: /* methods */
|
2013-03-01 15:17:24 -08:00
|
|
|
DecodePool();
|
2014-06-23 11:49:08 -07:00
|
|
|
virtual ~DecodePool();
|
2012-02-09 12:04:30 -08:00
|
|
|
|
|
|
|
enum DecodeType {
|
2013-03-01 15:17:24 -08:00
|
|
|
DECODE_TYPE_UNTIL_TIME,
|
|
|
|
DECODE_TYPE_UNTIL_SIZE,
|
|
|
|
DECODE_TYPE_UNTIL_DONE_BYTES
|
2012-02-09 12:04:30 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Decode some chunks of the given image. If aDecodeType is UNTIL_SIZE,
|
2013-01-18 13:47:18 -08:00
|
|
|
* decode until we have the image's size, then stop. If bytesToDecode is
|
2013-03-01 15:17:24 -08:00
|
|
|
* non-0, at most bytesToDecode bytes will be decoded. if aDecodeType is
|
|
|
|
* UNTIL_DONE_BYTES, decode until all bytesToDecode bytes are decoded.
|
|
|
|
*/
|
2012-02-09 12:04:30 -08:00
|
|
|
nsresult DecodeSomeOfImage(RasterImage* aImg,
|
2013-12-17 14:04:24 -08:00
|
|
|
DecodeStrategy aStrategy,
|
2013-03-01 15:17:24 -08:00
|
|
|
DecodeType aDecodeType = DECODE_TYPE_UNTIL_TIME,
|
2013-01-18 13:47:18 -08:00
|
|
|
uint32_t bytesToDecode = 0);
|
2012-02-09 12:04:30 -08:00
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
/* A decode job dispatched to a thread pool by DecodePool.
|
|
|
|
*/
|
|
|
|
class DecodeJob : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DecodeJob(DecodeRequest* aRequest, RasterImage* aImg)
|
|
|
|
: mRequest(aRequest)
|
|
|
|
, mImage(aImg)
|
|
|
|
{}
|
2012-02-09 12:04:30 -08:00
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
2014-06-16 19:05:00 -07:00
|
|
|
protected:
|
|
|
|
virtual ~DecodeJob();
|
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
private:
|
|
|
|
nsRefPtr<DecodeRequest> mRequest;
|
|
|
|
nsRefPtr<RasterImage> mImage;
|
|
|
|
};
|
2012-02-09 12:04:30 -08:00
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
private: /* members */
|
2013-03-24 12:43:20 -07:00
|
|
|
|
2013-04-17 17:05:19 -07:00
|
|
|
// mThreadPoolMutex protects mThreadPool. For all RasterImages R,
|
2013-12-17 14:04:31 -08:00
|
|
|
// R::mDecodingMonitor must be acquired before mThreadPoolMutex
|
|
|
|
// if both are acquired; the other order may cause deadlock.
|
2014-06-16 15:25:43 -07:00
|
|
|
Mutex mThreadPoolMutex;
|
2013-12-17 14:04:31 -08:00
|
|
|
nsCOMPtr<nsIThreadPool> mThreadPool;
|
2012-02-09 12:04:30 -08:00
|
|
|
};
|
|
|
|
|
2013-01-18 13:47:18 -08:00
|
|
|
class DecodeDoneWorker : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2013-03-01 15:17:24 -08:00
|
|
|
* Called by the DecodePool with an image when it's done some significant
|
2013-01-18 13:47:18 -08:00
|
|
|
* portion of decoding that needs to be notified about.
|
|
|
|
*
|
|
|
|
* Ensures the decode state accumulated by the decoding process gets
|
|
|
|
* applied to the image.
|
|
|
|
*/
|
2013-01-28 09:26:36 -08:00
|
|
|
static void NotifyFinishedSomeDecoding(RasterImage* image, DecodeRequest* request);
|
2013-01-18 13:47:18 -08:00
|
|
|
|
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
|
|
|
private: /* methods */
|
|
|
|
DecodeDoneWorker(RasterImage* image, DecodeRequest* request);
|
|
|
|
|
|
|
|
private: /* members */
|
|
|
|
|
|
|
|
nsRefPtr<RasterImage> mImage;
|
|
|
|
nsRefPtr<DecodeRequest> mRequest;
|
|
|
|
};
|
|
|
|
|
2013-02-27 11:23:08 -08:00
|
|
|
class FrameNeededWorker : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2013-03-01 15:17:24 -08:00
|
|
|
* Called by the DecodeJob with an image when it's been told by the
|
2013-02-27 11:23:08 -08:00
|
|
|
* decoder that it needs a new frame to be allocated on the main thread.
|
|
|
|
*
|
|
|
|
* Dispatches an event to do so, which will further dispatch a
|
|
|
|
* DecodeRequest event to continue decoding.
|
|
|
|
*/
|
|
|
|
static void GetNewFrame(RasterImage* image);
|
|
|
|
|
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
|
|
|
private: /* methods */
|
|
|
|
FrameNeededWorker(RasterImage* image);
|
|
|
|
|
|
|
|
private: /* members */
|
|
|
|
|
|
|
|
nsRefPtr<RasterImage> mImage;
|
|
|
|
};
|
|
|
|
|
2013-02-01 17:06:34 -08:00
|
|
|
nsresult FinishedSomeDecoding(eShutdownIntent intent = eShutdownIntent_Done,
|
|
|
|
DecodeRequest* request = nullptr);
|
2013-01-18 13:47:18 -08:00
|
|
|
|
2014-03-02 08:17:26 -08:00
|
|
|
bool DrawWithPreDownscaleIfNeeded(imgFrame *aFrame,
|
2012-04-03 14:57:22 -07:00
|
|
|
gfxContext *aContext,
|
2014-08-22 13:12:38 -07:00
|
|
|
const nsIntSize& aSize,
|
|
|
|
const ImageRegion& aRegion,
|
2013-10-01 14:01:19 -07:00
|
|
|
GraphicsFilter aFilter,
|
2013-04-25 15:08:58 -07:00
|
|
|
uint32_t aFlags);
|
2012-04-03 14:57:22 -07:00
|
|
|
|
2014-04-19 18:28:38 -07:00
|
|
|
TemporaryRef<gfx::SourceSurface> CopyFrame(uint32_t aWhichFrame,
|
|
|
|
uint32_t aFlags);
|
2013-06-17 13:49:04 -07:00
|
|
|
|
2010-03-08 11:01:04 -08:00
|
|
|
/**
|
|
|
|
* Deletes and nulls out the frame in mFrames[framenum].
|
|
|
|
*
|
|
|
|
* Does not change the size of mFrames.
|
|
|
|
*
|
2013-03-29 13:14:19 -07:00
|
|
|
* @param framenum The index of the frame to be deleted.
|
2010-03-08 11:01:04 -08:00
|
|
|
* Must lie in [0, mFrames.Length() )
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void DeleteImgFrame(uint32_t framenum);
|
2010-03-08 11:01:04 -08:00
|
|
|
|
2014-08-22 13:49:54 -07:00
|
|
|
already_AddRefed<imgFrame> GetImgFrameNoDecode(uint32_t framenum);
|
|
|
|
already_AddRefed<imgFrame> GetImgFrame(uint32_t framenum);
|
|
|
|
already_AddRefed<imgFrame> GetDrawableImgFrame(uint32_t framenum);
|
|
|
|
already_AddRefed<imgFrame> GetCurrentImgFrame();
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetCurrentImgFrameIndex() const;
|
2012-10-13 19:17:40 -07:00
|
|
|
|
2013-09-24 13:45:13 -07:00
|
|
|
size_t SizeOfDecodedWithComputedFallbackIfHeap(gfxMemoryLocation aLocation,
|
2014-06-16 15:25:43 -07:00
|
|
|
MallocSizeOf aMallocSizeOf) const;
|
2012-10-13 19:17:40 -07:00
|
|
|
|
2013-07-15 11:38:59 -07:00
|
|
|
void EnsureAnimExists();
|
2011-11-09 13:39:16 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult InternalAddFrameHelper(uint32_t framenum, imgFrame *frame,
|
|
|
|
uint8_t **imageData, uint32_t *imageLength,
|
2013-02-27 11:23:08 -08:00
|
|
|
uint32_t **paletteData, uint32_t *paletteLength,
|
|
|
|
imgFrame** aRetFrame);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult InternalAddFrame(uint32_t framenum, int32_t aX, int32_t aY, int32_t aWidth, int32_t aHeight,
|
2014-04-19 18:28:38 -07:00
|
|
|
gfx::SurfaceFormat aFormat, uint8_t aPaletteDepth,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t **imageData, uint32_t *imageLength,
|
2013-02-27 11:23:08 -08:00
|
|
|
uint32_t **paletteData, uint32_t *paletteLength,
|
|
|
|
imgFrame** aRetFrame);
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
|
2013-02-13 18:41:10 -08:00
|
|
|
nsresult DoImageDataComplete();
|
|
|
|
|
2014-03-04 20:48:48 -08:00
|
|
|
bool ApplyDecodeFlags(uint32_t aNewFlags, uint32_t aWhichFrame);
|
2012-08-13 09:35:32 -07:00
|
|
|
|
2012-09-24 13:31:30 -07:00
|
|
|
already_AddRefed<layers::Image> GetCurrentImage();
|
|
|
|
void UpdateImageContainer();
|
|
|
|
|
|
|
|
void SetInUpdateImageContainer(bool aInUpdate) { mInUpdateImageContainer = aInUpdate; }
|
|
|
|
bool IsInUpdateImageContainer() { return mInUpdateImageContainer; }
|
2012-10-04 13:02:15 -07:00
|
|
|
enum RequestDecodeType {
|
|
|
|
ASYNCHRONOUS,
|
2013-05-09 06:36:57 -07:00
|
|
|
SYNCHRONOUS_NOTIFY,
|
|
|
|
SYNCHRONOUS_NOTIFY_AND_SOME_DECODE
|
2012-10-04 13:02:15 -07:00
|
|
|
};
|
|
|
|
NS_IMETHOD RequestDecodeCore(RequestDecodeType aDecodeType);
|
2012-09-24 13:31:30 -07:00
|
|
|
|
2013-04-26 12:58:17 -07:00
|
|
|
// We would like to just check if we have a zero lock count, but we can't do
|
|
|
|
// that for animated images because in EnsureAnimExists we lock the image and
|
|
|
|
// never unlock so that animated images always have their lock count >= 1. In
|
|
|
|
// that case we use our animation consumers count as a proxy for lock count.
|
|
|
|
bool IsUnlocked() { return (mLockCount == 0 || (mAnim && mAnimationConsumers == 0)); }
|
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
private: // data
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIntSize mSize;
|
2013-08-25 00:19:42 -07:00
|
|
|
Orientation mOrientation;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
2013-06-17 13:49:04 -07:00
|
|
|
// Whether our frames were decoded using any special flags.
|
2011-01-12 17:45:13 -08:00
|
|
|
// Some flags (e.g. unpremultiplied data) may not be compatible
|
|
|
|
// with the browser's needs for displaying the image to the user.
|
|
|
|
// As such, we may need to redecode if we're being asked for
|
|
|
|
// a frame with different flags. 0 indicates default flags.
|
|
|
|
//
|
|
|
|
// Valid flag bits are imgIContainer::FLAG_DECODE_NO_PREMULTIPLY_ALPHA
|
|
|
|
// and imgIContainer::FLAG_DECODE_NO_COLORSPACE_CONVERSION.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFrameDecodeFlags;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
//! All the frames of the image
|
2013-06-17 13:49:04 -07:00
|
|
|
FrameBlender mFrameBlender;
|
2013-04-03 19:19:38 -07:00
|
|
|
|
|
|
|
// The last frame we decoded for multipart images.
|
2014-08-22 13:49:54 -07:00
|
|
|
nsRefPtr<imgFrame> mMultipartDecodedFrame;
|
2013-03-29 13:14:19 -07:00
|
|
|
|
2014-08-22 13:49:54 -07:00
|
|
|
nsCOMPtr<nsIProperties> mProperties;
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// IMPORTANT: if you use mAnim in a method, call EnsureImageIsDecoded() first to ensure
|
|
|
|
// that the frames actually exist (they may have been discarded to save memory, or
|
|
|
|
// we maybe decoding on draw).
|
2013-07-15 11:38:59 -07:00
|
|
|
FrameAnimator* mAnim;
|
2013-03-29 13:14:19 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Discard members
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mLockCount;
|
2012-03-15 13:30:41 -07:00
|
|
|
DiscardTracker::Node mDiscardTrackerNode;
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Source data members
|
|
|
|
nsCString mSourceDataMimeType;
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
friend class DiscardTracker;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2011-09-08 11:05:11 -07:00
|
|
|
// How many times we've decoded this image.
|
|
|
|
// This is currently only used for statistics
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mDecodeCount;
|
2011-09-08 11:05:11 -07:00
|
|
|
|
2013-03-22 16:12:40 -07:00
|
|
|
// If the image contains multiple resolutions, a hint as to which one should be used
|
|
|
|
nsIntSize mRequestedResolution;
|
|
|
|
|
2014-02-28 13:43:14 -08:00
|
|
|
// A hint for image decoder that directly scale the image to smaller buffer
|
|
|
|
int mRequestedSampleSize;
|
|
|
|
|
2011-11-08 19:14:41 -08:00
|
|
|
// Cached value for GetImageContainer.
|
2014-06-16 15:25:43 -07:00
|
|
|
nsRefPtr<layers::ImageContainer> mImageContainer;
|
2011-11-08 19:14:41 -08:00
|
|
|
|
2014-02-24 19:37:51 -08:00
|
|
|
// If not cached in mImageContainer, this might have our image container
|
2014-06-16 15:25:43 -07:00
|
|
|
WeakPtr<layers::ImageContainer> mImageContainerCache;
|
2014-02-24 19:37:51 -08:00
|
|
|
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFramesNotified;
|
2010-09-07 17:34:18 -07:00
|
|
|
#endif
|
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
// Below are the pieces of data that can be accessed on more than one thread
|
2013-12-17 14:04:31 -08:00
|
|
|
// at once, and hence need to be locked by mDecodingMonitor.
|
2013-03-01 15:17:24 -08:00
|
|
|
|
|
|
|
// BEGIN LOCKED MEMBER VARIABLES
|
2014-06-16 15:25:43 -07:00
|
|
|
ReentrantMonitor mDecodingMonitor;
|
2013-03-01 15:17:24 -08:00
|
|
|
|
|
|
|
FallibleTArray<char> mSourceData;
|
|
|
|
|
|
|
|
// Decoder and friends
|
|
|
|
nsRefPtr<Decoder> mDecoder;
|
|
|
|
nsRefPtr<DecodeRequest> mDecodeRequest;
|
2014-05-08 18:03:35 -07:00
|
|
|
size_t mBytesDecoded;
|
2013-03-01 15:17:24 -08:00
|
|
|
|
|
|
|
bool mInDecoder;
|
2013-07-26 11:57:41 -07:00
|
|
|
// END LOCKED MEMBER VARIABLES
|
2013-03-01 15:17:24 -08:00
|
|
|
|
2013-11-26 17:22:44 -08:00
|
|
|
// Notification state. Used to avoid recursive notifications.
|
|
|
|
ImageStatusDiff mStatusDiff;
|
|
|
|
bool mNotifying:1;
|
|
|
|
|
2010-05-12 14:41:47 -07:00
|
|
|
// Boolean flags (clustered together to conserve space):
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHasSize:1; // Has SetSize() been called?
|
|
|
|
bool mDecodeOnDraw:1; // Decoding on draw?
|
|
|
|
bool mMultipart:1; // Multipart?
|
|
|
|
bool mDiscardable:1; // Is container discardable?
|
|
|
|
bool mHasSourceData:1; // Do we have source data?
|
2010-05-12 14:41:47 -07:00
|
|
|
|
|
|
|
// Do we have the frames in decoded form?
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDecoded:1;
|
|
|
|
bool mHasBeenDecoded:1;
|
2010-05-12 14:41:47 -07:00
|
|
|
|
|
|
|
|
2010-09-07 17:33:02 -07:00
|
|
|
// Whether the animation can stop, due to running out
|
|
|
|
// of frames, or no more owning request
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mAnimationFinished:1;
|
2010-09-07 17:33:02 -07:00
|
|
|
|
2012-09-17 18:53:37 -07:00
|
|
|
// Whether we're calling Decoder::Finish() from ShutdownDecoder.
|
|
|
|
bool mFinishing:1;
|
|
|
|
|
2012-09-24 13:31:30 -07:00
|
|
|
bool mInUpdateImageContainer:1;
|
|
|
|
|
2013-01-31 10:38:24 -08:00
|
|
|
// Whether, once we are done doing a size decode, we should immediately kick
|
|
|
|
// off a full decode.
|
|
|
|
bool mWantFullDecode:1;
|
|
|
|
|
2013-09-12 14:40:16 -07:00
|
|
|
// Set when a decode worker detects an error off-main-thread. Once the error
|
|
|
|
// is handled on the main thread, mError is set, but mPendingError is used to
|
|
|
|
// stop decode work immediately.
|
|
|
|
bool mPendingError:1;
|
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Decoding
|
2013-11-26 17:22:44 -08:00
|
|
|
nsresult RequestDecodeIfNeeded(nsresult aStatus,
|
|
|
|
eShutdownIntent aIntent,
|
|
|
|
bool aDone,
|
|
|
|
bool aWasSize);
|
2009-09-12 15:44:18 -07:00
|
|
|
nsresult WantDecodedFrames();
|
|
|
|
nsresult SyncDecode();
|
2013-11-20 17:21:51 -08:00
|
|
|
nsresult InitDecoder(bool aDoSizeDecode);
|
2013-12-17 14:04:24 -08:00
|
|
|
nsresult WriteToDecoder(const char *aBuffer, uint32_t aCount, DecodeStrategy aStrategy);
|
2014-05-08 18:03:35 -07:00
|
|
|
nsresult DecodeSomeData(size_t aMaxBytes, DecodeStrategy aStrategy);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsDecodeFinished();
|
2011-08-10 16:12:08 -07:00
|
|
|
TimeStamp mDrawStartTime;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2014-08-22 13:12:38 -07:00
|
|
|
inline bool CanQualityScale(const gfx::Size& scale);
|
|
|
|
inline bool CanScale(GraphicsFilter aFilter, gfx::Size aScale, uint32_t aFlags);
|
2012-10-12 15:24:47 -07:00
|
|
|
|
|
|
|
struct ScaleResult
|
|
|
|
{
|
|
|
|
ScaleResult()
|
|
|
|
: status(SCALE_INVALID)
|
|
|
|
{}
|
|
|
|
|
2014-08-22 13:12:38 -07:00
|
|
|
nsIntSize scaledSize;
|
2014-08-22 13:49:54 -07:00
|
|
|
nsRefPtr<imgFrame> frame;
|
2012-10-12 15:24:47 -07:00
|
|
|
ScaleStatus status;
|
|
|
|
};
|
|
|
|
|
2012-10-10 08:35:23 -07:00
|
|
|
ScaleResult mScaleResult;
|
2012-04-03 14:57:22 -07:00
|
|
|
|
2012-10-12 15:20:22 -07:00
|
|
|
// We hold on to a bare pointer to a ScaleRequest while it's outstanding so
|
|
|
|
// we can mark it as stopped if necessary. The ScaleWorker/DrawWorker duo
|
|
|
|
// will inform us when to let go of this pointer.
|
|
|
|
ScaleRequest* mScaleRequest;
|
|
|
|
|
2013-09-28 11:28:44 -07:00
|
|
|
// Initializes imgStatusTracker and resets it on RasterImage destruction.
|
|
|
|
nsAutoPtr<imgStatusTrackerInit> mStatusTrackerInit;
|
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
nsresult ShutdownDecoder(eShutdownIntent aIntent);
|
|
|
|
|
2013-09-12 14:40:16 -07:00
|
|
|
// Error handling.
|
2009-09-12 15:44:18 -07:00
|
|
|
void DoError();
|
2013-09-12 14:40:16 -07:00
|
|
|
|
|
|
|
class HandleErrorWorker : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Called from decoder threads when DoError() is called, since errors can't
|
|
|
|
* be handled safely off-main-thread. Dispatches an event which reinvokes
|
|
|
|
* DoError on the main thread if there isn't one already pending.
|
|
|
|
*/
|
|
|
|
static void DispatchIfNeeded(RasterImage* aImage);
|
|
|
|
|
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
|
|
|
private:
|
|
|
|
HandleErrorWorker(RasterImage* aImage);
|
|
|
|
|
|
|
|
nsRefPtr<RasterImage> mImage;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Helpers
|
2011-08-05 06:57:16 -07:00
|
|
|
bool CanDiscard();
|
|
|
|
bool CanForciblyDiscard();
|
2014-01-21 15:19:22 -08:00
|
|
|
bool CanForciblyDiscardAndRedecode();
|
2011-08-05 06:57:16 -07:00
|
|
|
bool DiscardingActive();
|
2012-02-19 19:51:48 -08:00
|
|
|
bool StoringSourceData() const;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-09-07 17:33:02 -07:00
|
|
|
protected:
|
2013-09-28 11:28:42 -07:00
|
|
|
RasterImage(imgStatusTracker* aStatusTracker = nullptr,
|
|
|
|
ImageURL* aURI = nullptr);
|
2012-12-17 18:35:46 -08:00
|
|
|
|
2011-08-05 06:57:16 -07:00
|
|
|
bool ShouldAnimate();
|
2012-12-17 14:05:18 -08:00
|
|
|
|
|
|
|
friend class ImageFactory;
|
2009-09-12 15:44:18 -07:00
|
|
|
};
|
|
|
|
|
2012-10-19 13:27:11 -07:00
|
|
|
inline NS_IMETHODIMP RasterImage::GetAnimationMode(uint16_t *aAnimationMode) {
|
|
|
|
return GetAnimationModeInternal(aAnimationMode);
|
|
|
|
}
|
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Asynchronous Decode Requestor
|
|
|
|
//
|
|
|
|
// We use this class when someone calls requestDecode() from within a decode
|
|
|
|
// notification. Since requestDecode() involves modifying the decoder's state
|
|
|
|
// (for example, possibly shutting down a header-only decode and starting a
|
|
|
|
// full decode), we don't want to do this from inside a decoder.
|
|
|
|
class imgDecodeRequestor : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
2012-10-04 12:45:07 -07:00
|
|
|
imgDecodeRequestor(RasterImage &aContainer) {
|
2014-07-30 12:52:05 -07:00
|
|
|
mContainer = &aContainer;
|
2009-09-12 15:44:18 -07:00
|
|
|
}
|
|
|
|
NS_IMETHOD Run() {
|
2012-10-04 12:45:07 -07:00
|
|
|
if (mContainer)
|
2012-10-04 13:02:15 -07:00
|
|
|
mContainer->StartDecoding();
|
2009-09-12 15:44:18 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2012-10-04 12:45:07 -07:00
|
|
|
WeakPtr<RasterImage> mContainer;
|
2009-09-12 15:44:18 -07:00
|
|
|
};
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-08-13 21:09:49 -07:00
|
|
|
} // namespace mozilla
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
#endif /* mozilla_imagelib_RasterImage_h_ */
|