Bug 1735741 [wpt PR 31230] - Add more <dialog> focus-related tests, a=testonly
[gecko.git] / image / RasterImage.h
blobb85691f6ae84df30071a6181227747ada80d9359
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /** @file
8 * This file declares the RasterImage class, which
9 * handles static and animated rasterized images.
11 * @author Stuart Parmenter <pavlov@netscape.com>
12 * @author Chris Saari <saari@netscape.com>
13 * @author Arron Mogge <paper@animecity.nu>
14 * @author Andrew Smith <asmith15@learn.senecac.on.ca>
17 #ifndef mozilla_image_RasterImage_h
18 #define mozilla_image_RasterImage_h
20 #include "Image.h"
21 #include "nsCOMPtr.h"
22 #include "imgIContainer.h"
23 #include "nsTArray.h"
24 #include "LookupResult.h"
25 #include "nsThreadUtils.h"
26 #include "DecoderFactory.h"
27 #include "FrameAnimator.h"
28 #include "ImageMetadata.h"
29 #include "ISurfaceProvider.h"
30 #include "Orientation.h"
31 #include "mozilla/AtomicBitfields.h"
32 #include "mozilla/Attributes.h"
33 #include "mozilla/Maybe.h"
34 #include "mozilla/MemoryReporting.h"
35 #include "mozilla/NotNull.h"
36 #include "mozilla/StaticPrefs_image.h"
37 #include "mozilla/TimeStamp.h"
38 #include "mozilla/WeakPtr.h"
39 #include "mozilla/UniquePtr.h"
40 #include "mozilla/image/Resolution.h"
41 #include "ImageContainer.h"
42 #include "PlaybackType.h"
43 #ifdef DEBUG
44 # include "imgIContainerDebug.h"
45 #endif
47 class nsIInputStream;
48 class nsIRequest;
50 #define NS_RASTERIMAGE_CID \
51 { /* 376ff2c1-9bf6-418a-b143-3340c00112f7 */ \
52 0x376ff2c1, 0x9bf6, 0x418a, { \
53 0xb1, 0x43, 0x33, 0x40, 0xc0, 0x01, 0x12, 0xf7 \
54 } \
57 /**
58 * Handles static and animated image containers.
61 * @par A Quick Walk Through
62 * The decoder initializes this class and calls AppendFrame() to add a frame.
63 * Once RasterImage detects more than one frame, it starts the animation
64 * with StartAnimation(). Note that the invalidation events for RasterImage are
65 * generated automatically using nsRefreshDriver.
67 * @par
68 * StartAnimation() initializes the animation helper object and sets the time
69 * the first frame was displayed to the current clock time.
71 * @par
72 * When the refresh driver corresponding to the imgIContainer that this image is
73 * a part of notifies the RasterImage that it's time to invalidate,
74 * RequestRefresh() is called with a given TimeStamp to advance to. As long as
75 * the timeout of the given frame (the frame's "delay") plus the time that frame
76 * was first displayed is less than or equal to the TimeStamp given,
77 * RequestRefresh() calls AdvanceFrame().
79 * @par
80 * AdvanceFrame() is responsible for advancing a single frame of the animation.
81 * It can return true, meaning that the frame advanced, or false, meaning that
82 * the frame failed to advance (usually because the next frame hasn't been
83 * decoded yet). It is also responsible for performing the final animation stop
84 * procedure if the final frame of a non-looping animation is reached.
86 * @par
87 * Each frame can have a different method of removing itself. These are
88 * listed as imgIContainer::cDispose... constants. Notify() calls
89 * DoComposite() to handle any special frame destruction.
91 * @par
92 * The basic path through DoComposite() is:
93 * 1) Calculate Area that needs updating, which is at least the area of
94 * aNextFrame.
95 * 2) Dispose of previous frame.
96 * 3) Draw new image onto compositingFrame.
97 * See comments in DoComposite() for more information and optimizations.
99 * @par
100 * The rest of the RasterImage specific functions are used by DoComposite to
101 * destroy the old frame and build the new one.
103 * @note
104 * <li> "Mask", "Alpha", and "Alpha Level" are interchangeable phrases in
105 * respects to RasterImage.
107 * @par
108 * <li> GIFs never have more than a 1 bit alpha.
109 * <li> APNGs may have a full alpha channel.
111 * @par
112 * <li> Background color specified in GIF is ignored by web browsers.
114 * @par
115 * <li> If Frame 3 wants to dispose by restoring previous, what it wants is to
116 * restore the composition up to and including Frame 2, as well as Frame 2s
117 * disposal. So, in the middle of DoComposite when composing Frame 3, right
118 * after destroying Frame 2's area, we copy compositingFrame to
119 * prevCompositingFrame. When DoComposite gets called to do Frame 4, we
120 * copy prevCompositingFrame back, and then draw Frame 4 on top.
122 * @par
123 * The mAnim structure has members only needed for animated images, so
124 * it's not allocated until the second frame is added.
127 namespace mozilla {
128 namespace layers {
129 class ImageContainer;
130 class Image;
131 class LayersManager;
132 } // namespace layers
134 namespace image {
136 class Decoder;
137 struct DecoderFinalStatus;
138 struct DecoderTelemetry;
139 class ImageMetadata;
140 class SourceBuffer;
142 class RasterImage final : public ImageResource,
143 public SupportsWeakPtr
144 #ifdef DEBUG
146 public imgIContainerDebug
147 #endif
149 // (no public constructor - use ImageFactory)
150 virtual ~RasterImage();
152 public:
153 NS_DECL_THREADSAFE_ISUPPORTS
154 NS_DECL_IMGICONTAINER
155 #ifdef DEBUG
156 NS_DECL_IMGICONTAINERDEBUG
157 #endif
159 nsresult GetNativeSizes(nsTArray<gfx::IntSize>& aNativeSizes) const override;
160 size_t GetNativeSizesLength() const override;
161 virtual nsresult StartAnimation() override;
162 virtual nsresult StopAnimation() override;
164 // Methods inherited from Image
165 virtual void OnSurfaceDiscarded(const SurfaceKey& aSurfaceKey) override;
167 virtual size_t SizeOfSourceWithComputedFallback(
168 SizeOfState& aState) const override;
170 /* Triggers discarding. */
171 void Discard();
173 //////////////////////////////////////////////////////////////////////////////
174 // Decoder callbacks.
175 //////////////////////////////////////////////////////////////////////////////
178 * Sends the provided progress notifications to ProgressTracker.
180 * Main-thread only.
182 * @param aProgress The progress notifications to send.
183 * @param aInvalidRect An invalidation rect to send.
184 * @param aFrameCount If Some(), an updated count of the number of frames of
185 * animation the decoder has finished decoding so far.
186 * This is a lower bound for the total number of
187 * animation frames this image has.
188 * @param aDecoderFlags The decoder flags used by the decoder that generated
189 * these notifications, or DefaultDecoderFlags() if the
190 * notifications don't come from a decoder.
191 * @param aSurfaceFlags The surface flags used by the decoder that generated
192 * these notifications, or DefaultSurfaceFlags() if the
193 * notifications don't come from a decoder.
195 void NotifyProgress(Progress aProgress,
196 const OrientedIntRect& aInvalidRect = OrientedIntRect(),
197 const Maybe<uint32_t>& aFrameCount = Nothing(),
198 DecoderFlags aDecoderFlags = DefaultDecoderFlags(),
199 SurfaceFlags aSurfaceFlags = DefaultSurfaceFlags());
202 * Records decoding results, sends out any final notifications, updates the
203 * state of this image, and records telemetry.
205 * Main-thread only.
207 * @param aStatus Final status information about the decoder. (Whether
208 * it encountered an error, etc.)
209 * @param aMetadata Metadata about this image that the decoder gathered.
210 * @param aTelemetry Telemetry data about the decoder.
211 * @param aProgress Any final progress notifications to send.
212 * @param aInvalidRect Any final invalidation rect to send.
213 * @param aFrameCount If Some(), a final updated count of the number of
214 * frames of animation the decoder has finished decoding so far. This is a
215 * lower bound for the total number of animation frames this image has.
216 * @param aDecoderFlags The decoder flags used by the decoder.
217 * @param aSurfaceFlags The surface flags used by the decoder.
219 void NotifyDecodeComplete(
220 const DecoderFinalStatus& aStatus, const ImageMetadata& aMetadata,
221 const DecoderTelemetry& aTelemetry, Progress aProgress,
222 const OrientedIntRect& aInvalidRect, const Maybe<uint32_t>& aFrameCount,
223 DecoderFlags aDecoderFlags, SurfaceFlags aSurfaceFlags);
225 // Helper method for NotifyDecodeComplete.
226 void ReportDecoderError();
228 //////////////////////////////////////////////////////////////////////////////
229 // Network callbacks.
230 //////////////////////////////////////////////////////////////////////////////
232 virtual nsresult OnImageDataAvailable(nsIRequest* aRequest,
233 nsISupports* aContext,
234 nsIInputStream* aInStr,
235 uint64_t aSourceOffset,
236 uint32_t aCount) override;
237 virtual nsresult OnImageDataComplete(nsIRequest* aRequest,
238 nsISupports* aContext, nsresult aStatus,
239 bool aLastPart) override;
241 void NotifyForLoadEvent(Progress aProgress);
244 * A hint of the number of bytes of source data that the image contains. If
245 * called early on, this can help reduce copying and reallocations by
246 * appropriately preallocating the source data buffer.
248 * We take this approach rather than having the source data management code do
249 * something more complicated (like chunklisting) because HTTP is by far the
250 * dominant source of images, and the Content-Length header is quite reliable.
251 * Thus, pre-allocation simplifies code and reduces the total number of
252 * allocations.
254 nsresult SetSourceSizeHint(uint32_t aSizeHint);
256 nsCString GetURIString() {
257 nsCString spec;
258 if (GetURI()) {
259 GetURI()->GetSpec(spec);
261 return spec;
264 private:
265 nsresult Init(const char* aMimeType, uint32_t aFlags);
268 * Tries to retrieve a surface for this image with size @aSize, surface flags
269 * matching @aFlags, and a playback type of @aPlaybackType.
271 * If @aFlags specifies FLAG_SYNC_DECODE and we already have all the image
272 * data, we'll attempt a sync decode if no matching surface is found. If
273 * FLAG_SYNC_DECODE was not specified and no matching surface was found, we'll
274 * kick off an async decode so that the surface is (hopefully) available next
275 * time it's requested. aMarkUsed determines if we mark the surface used in
276 * the surface cache or not.
278 * @return a drawable surface, which may be empty if the requested surface
279 * could not be found.
281 LookupResult LookupFrame(const OrientedIntSize& aSize, uint32_t aFlags,
282 PlaybackType aPlaybackType, bool aMarkUsed);
284 /// Helper method for LookupFrame().
285 LookupResult LookupFrameInternal(const OrientedIntSize& aSize,
286 uint32_t aFlags, PlaybackType aPlaybackType,
287 bool aMarkUsed);
289 ImgDrawResult DrawInternal(DrawableSurface&& aFrameRef, gfxContext* aContext,
290 const OrientedIntSize& aSize,
291 const ImageRegion& aRegion,
292 gfx::SamplingFilter aSamplingFilter,
293 uint32_t aFlags, float aOpacity);
295 //////////////////////////////////////////////////////////////////////////////
296 // Decoding.
297 //////////////////////////////////////////////////////////////////////////////
300 * Creates and runs a decoder, either synchronously or asynchronously
301 * according to @aFlags. Decodes at the provided target size @aSize, using
302 * decode flags @aFlags. Performs a single-frame decode of this image unless
303 * we know the image is animated *and* @aPlaybackType is
304 * PlaybackType::eAnimated.
306 * It's an error to call Decode() before this image's intrinsic size is
307 * available. A metadata decode must successfully complete first.
309 * aOutRanSync is set to true if the decode was run synchronously.
310 * aOutFailed is set to true if failed to start a decode.
312 void Decode(const OrientedIntSize& aSize, uint32_t aFlags,
313 PlaybackType aPlaybackType, bool& aOutRanSync, bool& aOutFailed);
316 * Creates and runs a metadata decoder, either synchronously or
317 * asynchronously according to @aFlags.
319 NS_IMETHOD DecodeMetadata(uint32_t aFlags);
322 * Sets the size, inherent orientation, animation metadata, and other
323 * information about the image gathered during decoding.
325 * This function may be called multiple times, but will throw an error if
326 * subsequent calls do not match the first.
328 * @param aMetadata The metadata to set on this image.
329 * @param aFromMetadataDecode True if this metadata came from a metadata
330 * decode; false if it came from a full decode.
331 * @return |true| unless a catastrophic failure was discovered. If |false| is
332 * returned, it indicates that the image is corrupt in a way that requires all
333 * surfaces to be discarded to recover.
335 bool SetMetadata(const ImageMetadata& aMetadata, bool aFromMetadataDecode);
338 * In catastrophic circumstances like a GPU driver crash, the contents of our
339 * frames may become invalid. If the information we gathered during the
340 * metadata decode proves to be wrong due to image corruption, the frames we
341 * have may violate this class's invariants. Either way, we need to
342 * immediately discard the invalid frames and redecode so that callers don't
343 * perceive that we've entered an invalid state.
345 * RecoverFromInvalidFrames discards all existing frames and redecodes using
346 * the provided @aSize and @aFlags.
348 void RecoverFromInvalidFrames(const OrientedIntSize& aSize, uint32_t aFlags);
350 void OnSurfaceDiscardedInternal(bool aAnimatedFramesDiscarded);
352 private: // data
353 OrientedIntSize mSize;
354 nsTArray<OrientedIntSize> mNativeSizes;
356 // The orientation required to correctly orient the image, from the image's
357 // metadata. RasterImage will handle and apply this orientation itself.
358 Orientation mOrientation;
360 // The resolution as specified in the image metadata, in dppx.
361 Resolution mResolution;
363 /// If this has a value, we're waiting for SetSize() to send the load event.
364 Maybe<Progress> mLoadProgress;
366 // Hotspot of this image, or (0, 0) if there is no hotspot data.
368 // We assume (and assert) that no image has both orientation metadata and a
369 // hotspot, so we store this as an untyped point.
370 gfx::IntPoint mHotspot;
372 /// If this image is animated, a FrameAnimator which manages its animation.
373 UniquePtr<FrameAnimator> mFrameAnimator;
375 /// Animation timeline and other state for animation images.
376 Maybe<AnimationState> mAnimationState;
378 // Image locking.
379 uint32_t mLockCount;
381 // The type of decoder this image needs. Computed from the MIME type in
382 // Init().
383 DecoderType mDecoderType;
385 // How many times we've decoded this image.
386 // This is currently only used for statistics
387 int32_t mDecodeCount;
389 #ifdef DEBUG
390 uint32_t mFramesNotified;
391 #endif
393 // The source data for this image.
394 NotNull<RefPtr<SourceBuffer>> mSourceBuffer;
396 // Boolean flags (clustered together to conserve space):
397 MOZ_ATOMIC_BITFIELDS(
398 mAtomicBitfields, 16,
399 ((bool, HasSize, 1), // Has SetSize() been called?
400 (bool, Transient, 1), // Is the image short-lived?
401 (bool, SyncLoad, 1), // Are we loading synchronously?
402 (bool, Discardable, 1), // Is container discardable?
403 (bool, SomeSourceData, 1), // Do we have some source data?
404 (bool, AllSourceData, 1), // Do we have all the source data?
405 (bool, HasBeenDecoded, 1), // Decoded at least once?
407 // Whether we're waiting to start animation. If we get a StartAnimation()
408 // call but we don't yet have more than one frame, mPendingAnimation is
409 // set so that we know to start animation later if/when we have more
410 // frames.
411 (bool, PendingAnimation, 1),
413 // Whether the animation can stop, due to running out
414 // of frames, or no more owning request
415 (bool, AnimationFinished, 1),
417 // Whether, once we are done doing a metadata decode, we should
418 // immediately kick off a full decode.
419 (bool, WantFullDecode, 1)))
421 TimeStamp mDrawStartTime;
423 //////////////////////////////////////////////////////////////////////////////
424 // Scaling.
425 //////////////////////////////////////////////////////////////////////////////
427 // Determines whether we can downscale during decode with the given
428 // parameters.
429 bool CanDownscaleDuringDecode(const OrientedIntSize& aSize, uint32_t aFlags);
431 // Error handling.
432 void DoError();
434 class HandleErrorWorker : public Runnable {
435 public:
437 * Called from decoder threads when DoError() is called, since errors can't
438 * be handled safely off-main-thread. Dispatches an event which reinvokes
439 * DoError on the main thread if there isn't one already pending.
441 static void DispatchIfNeeded(RasterImage* aImage);
443 NS_IMETHOD Run() override;
445 private:
446 explicit HandleErrorWorker(RasterImage* aImage);
448 RefPtr<RasterImage> mImage;
451 // Helpers
452 bool CanDiscard();
454 bool IsOpaque();
456 LookupResult RequestDecodeForSizeInternal(const OrientedIntSize& aSize,
457 uint32_t aFlags,
458 uint32_t aWhichFrame);
460 protected:
461 explicit RasterImage(nsIURI* aURI = nullptr);
463 bool ShouldAnimate() override;
465 friend class ImageFactory;
468 inline NS_IMETHODIMP RasterImage::GetAnimationMode(uint16_t* aAnimationMode) {
469 return GetAnimationModeInternal(aAnimationMode);
472 } // namespace image
473 } // namespace mozilla
476 * Casting RasterImage to nsISupports is ambiguous. This method handles that.
478 inline nsISupports* ToSupports(mozilla::image::RasterImage* p) {
479 return NS_ISUPPORTS_CAST(mozilla::image::ImageResource*, p);
482 #endif /* mozilla_image_RasterImage_h */