1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_image_Image_h
7 #define mozilla_image_Image_h
9 #include "mozilla/Attributes.h"
10 #include "mozilla/Maybe.h"
11 #include "mozilla/MemoryReporting.h"
12 #include "mozilla/ProfilerMarkers.h"
13 #include "mozilla/SizeOfState.h"
14 #include "mozilla/ThreadSafeWeakPtr.h"
15 #include "mozilla/TimeStamp.h"
16 #include "mozilla/Tuple.h"
17 #include "gfx2DGlue.h"
18 #include "imgIContainer.h"
19 #include "ImageContainer.h"
20 #include "ImageRegion.h"
21 #include "LookupResult.h"
22 #include "nsStringFwd.h"
23 #include "ProgressTracker.h"
24 #include "SurfaceCache.h"
35 ///////////////////////////////////////////////////////////////////////////////
37 ///////////////////////////////////////////////////////////////////////////////
39 struct MemoryCounter
{
50 void SetSource(size_t aCount
) { mSource
= aCount
; }
51 size_t Source() const { return mSource
; }
52 void SetDecodedHeap(size_t aCount
) { mDecodedHeap
= aCount
; }
53 size_t DecodedHeap() const { return mDecodedHeap
; }
54 void SetDecodedNonHeap(size_t aCount
) { mDecodedNonHeap
= aCount
; }
55 size_t DecodedNonHeap() const { return mDecodedNonHeap
; }
56 void SetDecodedUnknown(size_t aCount
) { mDecodedUnknown
= aCount
; }
57 size_t DecodedUnknown() const { return mDecodedUnknown
; }
58 void SetExternalHandles(size_t aCount
) { mExternalHandles
= aCount
; }
59 size_t ExternalHandles() const { return mExternalHandles
; }
60 void SetFrameIndex(size_t aIndex
) { mFrameIndex
= aIndex
; }
61 size_t FrameIndex() const { return mFrameIndex
; }
62 void SetExternalId(uint64_t aId
) { mExternalId
= aId
; }
63 uint64_t ExternalId() const { return mExternalId
; }
64 void SetSurfaceTypes(uint32_t aTypes
) { mSurfaceTypes
= aTypes
; }
65 uint32_t SurfaceTypes() const { return mSurfaceTypes
; }
67 MemoryCounter
& operator+=(const MemoryCounter
& aOther
) {
68 mSource
+= aOther
.mSource
;
69 mDecodedHeap
+= aOther
.mDecodedHeap
;
70 mDecodedNonHeap
+= aOther
.mDecodedNonHeap
;
71 mDecodedUnknown
+= aOther
.mDecodedUnknown
;
72 mExternalHandles
+= aOther
.mExternalHandles
;
73 mSurfaceTypes
|= aOther
.mSurfaceTypes
;
80 size_t mDecodedNonHeap
;
81 size_t mDecodedUnknown
;
82 size_t mExternalHandles
;
85 uint32_t mSurfaceTypes
;
88 enum class SurfaceMemoryCounterType
{ NORMAL
, CONTAINER
};
90 struct SurfaceMemoryCounter
{
92 const SurfaceKey
& aKey
, const gfx::SourceSurface
* aSurface
,
93 bool aIsLocked
, bool aCannotSubstitute
, bool aIsFactor2
, bool aFinished
,
94 SurfaceMemoryCounterType aType
= SurfaceMemoryCounterType::NORMAL
)
99 mCannotSubstitute(aCannotSubstitute
),
100 mIsFactor2(aIsFactor2
),
101 mFinished(aFinished
) {}
103 const SurfaceKey
& Key() const { return mKey
; }
104 const gfx::SourceSurface
* Surface() const { return mSurface
; }
105 MemoryCounter
& Values() { return mValues
; }
106 const MemoryCounter
& Values() const { return mValues
; }
107 SurfaceMemoryCounterType
Type() const { return mType
; }
108 bool IsLocked() const { return mIsLocked
; }
109 bool CannotSubstitute() const { return mCannotSubstitute
; }
110 bool IsFactor2() const { return mIsFactor2
; }
111 bool IsFinished() const { return mFinished
; }
114 const SurfaceKey mKey
;
115 const gfx::SourceSurface
* MOZ_NON_OWNING_REF mSurface
;
116 MemoryCounter mValues
;
117 const SurfaceMemoryCounterType mType
;
118 const bool mIsLocked
;
119 const bool mCannotSubstitute
;
120 const bool mIsFactor2
;
121 const bool mFinished
;
124 struct ImageMemoryCounter
{
125 ImageMemoryCounter(imgRequest
* aRequest
, SizeOfState
& aState
, bool aIsUsed
);
126 ImageMemoryCounter(imgRequest
* aRequest
, Image
* aImage
, SizeOfState
& aState
,
129 nsCString
& URI() { return mURI
; }
130 const nsCString
& URI() const { return mURI
; }
131 const nsTArray
<SurfaceMemoryCounter
>& Surfaces() const { return mSurfaces
; }
132 const gfx::IntSize
IntrinsicSize() const { return mIntrinsicSize
; }
133 const MemoryCounter
& Values() const { return mValues
; }
134 uint32_t Progress() const { return mProgress
; }
135 uint16_t Type() const { return mType
; }
136 bool IsUsed() const { return mIsUsed
; }
137 bool HasError() const { return mHasError
; }
138 bool IsValidating() const { return mValidating
; }
140 bool IsNotable() const {
141 // Errors or requests without images are always notable.
142 if (mHasError
|| mValidating
|| mProgress
== UINT32_MAX
||
143 mProgress
& FLAG_HAS_ERROR
|| mType
== imgIContainer::TYPE_REQUEST
) {
147 // Sufficiently large images are notable.
148 const size_t NotableThreshold
= 16 * 1024;
149 size_t total
= mValues
.Source() + mValues
.DecodedHeap() +
150 mValues
.DecodedNonHeap() + mValues
.DecodedUnknown();
151 if (total
>= NotableThreshold
) {
155 // Incomplete images are always notable as well; the odds of capturing
156 // mid-decode should be fairly low.
157 for (const auto& surface
: mSurfaces
) {
158 if (!surface
.IsFinished()) {
168 nsTArray
<SurfaceMemoryCounter
> mSurfaces
;
169 gfx::IntSize mIntrinsicSize
;
170 MemoryCounter mValues
;
178 ///////////////////////////////////////////////////////////////////////////////
180 ///////////////////////////////////////////////////////////////////////////////
182 class Image
: public imgIContainer
{
185 * Flags for Image initialization.
189 * INIT_FLAG_NONE: Lack of flags
191 * INIT_FLAG_DISCARDABLE: The container should be discardable
193 * INIT_FLAG_DECODE_IMMEDIATELY: The container should decode as soon as
194 * possible, regardless of what our heuristics say.
196 * INIT_FLAG_TRANSIENT: The container is likely to exist for only a short time
197 * before being destroyed. (For example, containers for
198 * multipart/x-mixed-replace image parts fall into this category.) If this
199 * flag is set, INIT_FLAG_DISCARDABLE and INIT_FLAG_DECODE_ONLY_ON_DRAW must
202 * INIT_FLAG_SYNC_LOAD: The container is being loaded synchronously, so
203 * it should avoid relying on async workers to get the container ready.
205 static const uint32_t INIT_FLAG_NONE
= 0x0;
206 static const uint32_t INIT_FLAG_DISCARDABLE
= 0x1;
207 static const uint32_t INIT_FLAG_DECODE_IMMEDIATELY
= 0x2;
208 static const uint32_t INIT_FLAG_TRANSIENT
= 0x4;
209 static const uint32_t INIT_FLAG_SYNC_LOAD
= 0x8;
211 virtual already_AddRefed
<ProgressTracker
> GetProgressTracker() = 0;
212 virtual void SetProgressTracker(ProgressTracker
* aProgressTracker
) {}
215 * The size, in bytes, occupied by the compressed source data of the image.
216 * If MallocSizeOf does not work on this platform, uses a fallback approach to
217 * ensure that something reasonable is always returned.
219 virtual size_t SizeOfSourceWithComputedFallback(
220 SizeOfState
& aState
) const = 0;
223 * Collect an accounting of the memory occupied by the image's surfaces (which
224 * together make up its decoded data). Each surface is recorded as a separate
225 * SurfaceMemoryCounter, stored in @aCounters.
227 virtual void CollectSizeOfSurfaces(nsTArray
<SurfaceMemoryCounter
>& aCounters
,
228 MallocSizeOf aMallocSizeOf
) const = 0;
230 virtual void IncrementAnimationConsumers() = 0;
231 virtual void DecrementAnimationConsumers() = 0;
233 virtual uint32_t GetAnimationConsumers() = 0;
237 * Called from OnDataAvailable when the stream associated with the image has
238 * received new image data. The arguments are the same as OnDataAvailable's,
239 * but by separating this functionality into a different method we don't
240 * interfere with subclasses which wish to implement nsIStreamListener.
242 * Images should not do anything that could send out notifications until they
243 * have received their first OnImageDataAvailable notification; in
244 * particular, this means that instantiating decoders should be deferred
245 * until OnImageDataAvailable is called.
247 virtual nsresult
OnImageDataAvailable(nsIRequest
* aRequest
,
248 nsISupports
* aContext
,
249 nsIInputStream
* aInStr
,
250 uint64_t aSourceOffset
,
251 uint32_t aCount
) = 0;
254 * Called from OnStopRequest when the image's underlying request completes.
256 * @param aRequest The completed request.
257 * @param aContext Context from Necko's OnStopRequest.
258 * @param aStatus A success or failure code.
259 * @param aLastPart Whether this is the final part of the underlying request.
261 virtual nsresult
OnImageDataComplete(nsIRequest
* aRequest
,
262 nsISupports
* aContext
, nsresult aStatus
,
266 * Called when the SurfaceCache discards a surface belonging to this image.
268 virtual void OnSurfaceDiscarded(const SurfaceKey
& aSurfaceKey
) = 0;
270 virtual void SetInnerWindowID(uint64_t aInnerWindowId
) = 0;
271 virtual uint64_t InnerWindowID() const = 0;
273 virtual bool HasError() = 0;
274 virtual void SetHasError() = 0;
276 virtual nsIURI
* GetURI() const = 0;
278 NS_IMETHOD
GetHotspotX(int32_t* aX
) override
{
282 NS_IMETHOD
GetHotspotY(int32_t* aY
) override
{
288 class ImageResource
: public Image
{
290 already_AddRefed
<ProgressTracker
> GetProgressTracker() override
{
291 RefPtr
<ProgressTracker
> progressTracker
= mProgressTracker
;
292 MOZ_ASSERT(progressTracker
);
293 return progressTracker
.forget();
296 void SetProgressTracker(ProgressTracker
* aProgressTracker
) final
{
297 MOZ_ASSERT(aProgressTracker
);
298 MOZ_ASSERT(!mProgressTracker
);
299 mProgressTracker
= aProgressTracker
;
302 virtual void IncrementAnimationConsumers() override
;
303 virtual void DecrementAnimationConsumers() override
;
305 virtual uint32_t GetAnimationConsumers() override
{
306 return mAnimationConsumers
;
310 virtual void OnSurfaceDiscarded(const SurfaceKey
& aSurfaceKey
) override
{}
312 virtual void SetInnerWindowID(uint64_t aInnerWindowId
) override
{
313 mInnerWindowId
= aInnerWindowId
;
315 virtual uint64_t InnerWindowID() const override
{ return mInnerWindowId
; }
317 virtual bool HasError() override
{ return mError
; }
318 virtual void SetHasError() override
{ mError
= true; }
321 * Returns a non-AddRefed pointer to the URI associated with this image.
322 * Illegal to use off-main-thread.
324 nsIURI
* GetURI() const override
{ return mURI
; }
327 * Should be called by its subclasses after they populate @aCounters so that
328 * we can cross reference against any of our ImageContainers that contain
329 * surfaces not in the cache.
331 void CollectSizeOfSurfaces(nsTArray
<SurfaceMemoryCounter
>& aCounters
,
332 MallocSizeOf aMallocSizeOf
) const override
;
335 explicit ImageResource(nsIURI
* aURI
);
338 layers::ContainerProducerID
GetImageProducerId() const {
339 return mImageProducerID
;
342 bool GetSpecTruncatedTo1k(nsCString
& aSpec
) const;
344 // Shared functionality for implementors of imgIContainer. Every
345 // implementation of attribute animationMode should forward here.
346 nsresult
GetAnimationModeInternal(uint16_t* aAnimationMode
);
347 nsresult
SetAnimationModeInternal(uint16_t aAnimationMode
);
350 * Helper for RequestRefresh.
352 * If we've had a "recent" refresh (i.e. if this image is being used in
353 * multiple documents & some other document *just* called RequestRefresh() on
354 * this image with a timestamp close to aTime), this method returns true.
356 * Otherwise, this method updates mLastRefreshTime to aTime & returns false.
358 bool HadRecentRefresh(const TimeStamp
& aTime
);
361 * Decides whether animation should or should not be happening,
362 * and makes sure the right thing is being done.
364 virtual void EvaluateAnimation();
367 * Extended by child classes, if they have additional
368 * conditions for being able to animate.
370 virtual bool ShouldAnimate() {
371 return mAnimationConsumers
> 0 && mAnimationMode
!= kDontAnimMode
;
374 virtual nsresult
StartAnimation() = 0;
375 virtual nsresult
StopAnimation() = 0;
377 void SendOnUnlockedDraw(uint32_t aFlags
);
380 // Records the image drawing for startup performance testing.
381 void NotifyDrawingObservers();
384 // Member data shared by all implementations of this abstract class
385 RefPtr
<ProgressTracker
> mProgressTracker
;
386 nsCOMPtr
<nsIURI
> mURI
;
387 TimeStamp mLastRefreshTime
;
388 uint64_t mInnerWindowId
;
389 uint32_t mAnimationConsumers
;
390 uint16_t mAnimationMode
; // Enum values in imgIContainer
391 bool mInitialized
: 1; // Have we been initialized?
392 bool mAnimating
: 1; // Are we currently animating?
393 bool mError
: 1; // Error handling
396 * Attempt to find a matching cached surface in the SurfaceCache, and if not
397 * available, request the production of such a surface (either synchronously
398 * or asynchronously).
400 * If the draw result is BAD_IMAGE, BAD_ARGS or NOT_READY, the size will be
401 * the same as aSize. If it is TEMPORARY_ERROR, INCOMPLETE, or SUCCESS, the
402 * size is a hint as to what we expect the surface size to be, once the best
403 * fitting size is available. It may or may not match the size of the surface
404 * returned at this moment. This is useful for choosing how to store the final
405 * result (e.g. if going into an ImageContainer, ideally we would share the
406 * same container for many requested sizes, if they all end up with the same
407 * best fit size in the end).
409 * A valid surface should only be returned for SUCCESS and INCOMPLETE.
411 * Any other draw result is invalid.
413 virtual Tuple
<ImgDrawResult
, gfx::IntSize
, RefPtr
<gfx::SourceSurface
>>
414 GetFrameInternal(const gfx::IntSize
& aSize
,
415 const Maybe
<SVGImageContext
>& aSVGContext
,
416 const Maybe
<ImageIntRegion
>& aRegion
, uint32_t aWhichFrame
,
418 return MakeTuple(ImgDrawResult::BAD_IMAGE
, aSize
,
419 RefPtr
<gfx::SourceSurface
>());
423 * Calculate the estimated size to use for an image container with the given
424 * parameters. It may not be the same as the given size, and it may not be
425 * the same as the size of the surface in the image container, but it is the
426 * best effort estimate.
428 virtual Tuple
<ImgDrawResult
, gfx::IntSize
> GetImageContainerSize(
429 layers::LayerManager
* aManager
, const gfx::IntSize
& aSize
,
431 return MakeTuple(ImgDrawResult::NOT_SUPPORTED
, gfx::IntSize(0, 0));
434 ImgDrawResult
GetImageContainerImpl(layers::LayerManager
* aManager
,
435 const gfx::IntSize
& aSize
,
436 const Maybe
<SVGImageContext
>& aSVGContext
,
437 const Maybe
<ImageIntRegion
>& aRegion
,
439 layers::ImageContainer
** aContainer
);
442 * Re-requests the appropriate frames for each image container using
444 * @returns True if any image containers were updated, else false.
446 bool UpdateImageContainer(const Maybe
<gfx::IntRect
>& aDirtyRect
);
448 void ReleaseImageContainer();
450 class MOZ_RAII AutoProfilerImagePaintMarker
{
452 explicit AutoProfilerImagePaintMarker(ImageResource
* self
)
453 : mStartTime(TimeStamp::Now()) {
455 if (self
->mURI
&& profiler_can_accept_markers()) {
456 static const size_t sMaxTruncatedLength
= 1024;
457 self
->mURI
->GetSpec(mSpec
);
458 if (mSpec
.Length() >= sMaxTruncatedLength
) {
459 mSpec
.Truncate(sMaxTruncatedLength
);
464 ~AutoProfilerImagePaintMarker() {
465 if (!mSpec
.IsEmpty()) {
466 PROFILER_MARKER_TEXT("Image Paint", GRAPHICS
,
467 MarkerTiming::IntervalUntilNowFrom(mStartTime
),
473 TimeStamp mStartTime
;
478 void SetCurrentImage(layers::ImageContainer
* aContainer
,
479 gfx::SourceSurface
* aSurface
,
480 const Maybe
<gfx::IntRect
>& aDirtyRect
);
482 struct ImageContainerEntry
{
483 ImageContainerEntry(const gfx::IntSize
& aSize
,
484 const Maybe
<SVGImageContext
>& aSVGContext
,
485 const Maybe
<ImageIntRegion
>& aRegion
,
486 layers::ImageContainer
* aContainer
, uint32_t aFlags
)
488 mSVGContext(aSVGContext
),
490 mContainer(aContainer
),
491 mLastDrawResult(ImgDrawResult::NOT_READY
),
495 Maybe
<SVGImageContext
> mSVGContext
;
496 Maybe
<ImageIntRegion
> mRegion
;
497 // A weak pointer to our ImageContainer, which stays alive only as long as
498 // the layer system needs it.
499 ThreadSafeWeakPtr
<layers::ImageContainer
> mContainer
;
500 // If mContainer is non-null, this contains the ImgDrawResult we obtained
501 // the last time we updated it.
502 ImgDrawResult mLastDrawResult
;
503 // Cached flags to use for decoding. FLAG_ASYNC_NOTIFY should always be set
504 // but FLAG_HIGH_QUALITY_SCALING may vary.
508 AutoTArray
<ImageContainerEntry
, 1> mImageContainers
;
509 layers::ImageContainer::ProducerID mImageProducerID
;
510 layers::ImageContainer::FrameID mLastFrameID
;
514 } // namespace mozilla
516 #endif // mozilla_image_Image_h