/* * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. * Copyright (C) 2008-2009 Torch Mobile, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef BitmapImage_h #define BitmapImage_h #include "platform/geometry/IntSize.h" #include "platform/graphics/Color.h" #include "platform/graphics/FrameData.h" #include "platform/graphics/Image.h" #include "platform/graphics/ImageAnimationPolicy.h" #include "platform/graphics/ImageOrientation.h" #include "platform/graphics/ImageSource.h" #include "platform/image-decoders/ImageAnimation.h" #include "wtf/Forward.h" #include "wtf/OwnPtr.h" namespace blink { template class Timer; class PLATFORM_EXPORT BitmapImage final : public Image { friend class GeneratedImage; friend class CrossfadeGeneratedImage; friend class GradientGeneratedImage; friend class GraphicsContext; public: static PassRefPtr create(ImageObserver* observer = 0) { return adoptRef(new BitmapImage(observer)); } // This allows constructing a BitmapImage with a forced non-default orientation. static PassRefPtr createWithOrientationForTesting(const SkBitmap&, ImageOrientation); ~BitmapImage() override; bool isBitmapImage() const override; bool currentFrameHasSingleSecurityOrigin() const override; IntSize size() const override; IntSize sizeRespectingOrientation() const; bool getHotSpot(IntPoint&) const override; String filenameExtension() const override; bool dataChanged(bool allDataReceived) override; bool isAllDataReceived() const { return m_allDataReceived; } bool hasColorProfile() const; // It may look unusual that there's no start animation call as public API. // This because we start and stop animating lazily. Animation starts when // the image is rendered, and automatically pauses once all observers no // longer want to render the image. void stopAnimation() override; void resetAnimation() override; bool maybeAnimated() override; void setAnimationPolicy(ImageAnimationPolicy policy) override { m_animationPolicy = policy; } ImageAnimationPolicy animationPolicy() override { return m_animationPolicy; } void advanceTime(double deltaTimeInSeconds) override; // Advance the image animation by one frame. void advanceAnimationForTesting() override { internalAdvanceAnimation(false); } PassRefPtr imageForCurrentFrame() override; PassRefPtr imageForDefaultFrame() override; bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override; bool currentFrameIsComplete() override; bool currentFrameIsLazyDecoded() override; ImageOrientation currentFrameOrientation(); private: friend class BitmapImageTest; void updateSize() const; private: enum RepetitionCountStatus { Unknown, // We haven't checked the source's repetition count. Uncertain, // We have a repetition count, but it might be wrong (some GIFs have a count after the image data, and will report "loop once" until all data has been decoded). Certain // The repetition count is known to be correct. }; BitmapImage(const SkBitmap &, ImageObserver* = 0); BitmapImage(ImageObserver* = 0); void draw(SkCanvas*, const SkPaint&, const FloatRect& dstRect, const FloatRect& srcRect, RespectImageOrientationEnum, ImageClampingMode) override; size_t currentFrame() const { return m_currentFrame; } size_t frameCount(); PassRefPtr frameAtIndex(size_t); bool frameIsCompleteAtIndex(size_t); float frameDurationAtIndex(size_t); bool frameHasAlphaAtIndex(size_t); ImageOrientation frameOrientationAtIndex(size_t); // Decodes and caches a frame. Never accessed except internally. void cacheFrame(size_t index); // Called before accessing m_frames[index]. Returns false on index out of bounds. bool ensureFrameIsCached(size_t index); // Returns the total number of bytes allocated for all framebuffers, i.e. // the sum of m_source.frameBytesAtIndex(...) for all frames. This is // returned as an int for caller convenience, to allow safely subtracting // the values from successive calls as signed expressions. int totalFrameBytes(); // Called to invalidate cached data. When |destroyAll| is true, we wipe out // the entire frame buffer cache and tell the image source to destroy // everything; this is used when e.g. we want to free some room in the image // cache. If |destroyAll| is false, we delete frames except the current // frame; this is used while animating large images to keep memory footprint // low; the decoder should preserve the current frame and may preserve some // other frames to avoid redecoding the whole image on every frame. void destroyDecodedData(bool destroyAll) override; // If the image is large enough, calls destroyDecodedData(). void destroyDecodedDataIfNecessary(); // Generally called by destroyDecodedData(), destroys whole-image metadata // and notifies observers that the memory footprint has (hopefully) // decreased by |frameBytesCleared|. void destroyMetadataAndNotify(size_t frameBytesCleared); // Whether or not size is available yet. bool isSizeAvailable(); // Animation. int repetitionCount(bool imageKnownToBeComplete); // |imageKnownToBeComplete| should be set if the caller knows the entire image has been decoded. bool shouldAnimate(); void startAnimation(CatchUpAnimation = CatchUp) override; void advanceAnimation(Timer*); // Function that does the real work of advancing the animation. When // skippingFrames is true, we're in the middle of a loop trying to skip over // a bunch of animation frames, so we should not do things like decode each // one or notify our observers. // Returns whether the animation was advanced. bool internalAdvanceAnimation(bool skippingFrames); ImageSource m_source; mutable IntSize m_size; // The size to use for the overall image (will just be the size of the first image). mutable IntSize m_sizeRespectingOrientation; size_t m_currentFrame; // The index of the current frame of animation. Vector m_frames; // An array of the cached frames of the animation. We have to ref frames to pin them in the cache. OwnPtr> m_frameTimer; int m_repetitionCount; // How many total animation loops we should do. This will be cAnimationNone if this image type is incapable of animation. RepetitionCountStatus m_repetitionCountStatus; int m_repetitionsComplete; // How many repetitions we've finished. double m_desiredFrameStartTime; // The system time at which we hope to see the next call to startAnimation(). size_t m_frameCount; ImageAnimationPolicy m_animationPolicy; // Whether or not we can play animation. bool m_animationFinished : 1; // Whether or not we've completed the entire animation. bool m_allDataReceived : 1; // Whether or not we've received all our data. mutable bool m_haveSize : 1; // Whether or not our |m_size| member variable has the final overall image size yet. bool m_sizeAvailable : 1; // Whether or not we can obtain the size of the first image frame yet from ImageIO. mutable bool m_hasUniformFrameSize : 1; mutable bool m_haveFrameCount : 1; }; DEFINE_IMAGE_TYPE_CASTS(BitmapImage); } // namespace blink #endif