2010-09-09 00:40:39 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2010-09-09 00:40:39 +04:00
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#ifndef mozilla_image_VectorImage_h
|
|
|
|
#define mozilla_image_VectorImage_h
|
2010-09-09 00:40:39 +04:00
|
|
|
|
|
|
|
#include "Image.h"
|
|
|
|
#include "nsIStreamListener.h"
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2010-09-09 00:40:39 +04:00
|
|
|
|
2013-09-07 17:01:08 +04:00
|
|
|
class nsIRequest;
|
2013-10-22 15:38:08 +04:00
|
|
|
class gfxDrawable;
|
2010-09-09 00:40:39 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2012-01-06 20:02:27 +04:00
|
|
|
namespace image {
|
2010-09-09 00:40:39 +04:00
|
|
|
|
2013-10-22 15:38:08 +04:00
|
|
|
struct SVGDrawingParameters;
|
|
|
|
class SVGDocumentWrapper;
|
|
|
|
class SVGRootRenderingObserver;
|
|
|
|
class SVGLoadEventListener;
|
|
|
|
class SVGParseCompleteListener;
|
2010-09-09 00:40:39 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class VectorImage final : public ImageResource,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsIStreamListener
|
2010-09-09 00:40:39 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
2012-10-20 00:27:11 +04:00
|
|
|
NS_DECL_IMGICONTAINER
|
2010-11-17 23:37:08 +03:00
|
|
|
|
2012-12-18 02:05:18 +04:00
|
|
|
// (no public constructor - use ImageFactory)
|
2010-09-09 00:40:39 +04:00
|
|
|
|
|
|
|
// Methods inherited from Image
|
2015-04-04 22:58:00 +03:00
|
|
|
virtual size_t SizeOfSourceWithComputedFallback(MallocSizeOf aMallocSizeOf)
|
|
|
|
const override;
|
2015-04-28 21:46:17 +03:00
|
|
|
virtual void CollectSizeOfSurfaces(nsTArray<SurfaceMemoryCounter>& aCounters,
|
|
|
|
MallocSizeOf aMallocSizeOf) const override;
|
2014-05-08 13:53:00 +04:00
|
|
|
|
2012-12-18 02:05:18 +04:00
|
|
|
virtual nsresult OnImageDataAvailable(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
|
|
|
nsIInputStream* aInStr,
|
|
|
|
uint64_t aSourceOffset,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aCount) override;
|
2012-12-18 02:05:18 +04:00
|
|
|
virtual nsresult OnImageDataComplete(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
2013-02-14 06:41:10 +04:00
|
|
|
nsresult aResult,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aLastPart) override;
|
2012-12-18 02:05:18 +04:00
|
|
|
|
2015-03-28 06:17:23 +03:00
|
|
|
void OnSurfaceDiscarded() override;
|
|
|
|
|
2013-09-04 14:39:30 +04:00
|
|
|
/**
|
|
|
|
* Callback for SVGRootRenderingObserver.
|
|
|
|
*
|
|
|
|
* This just sets a dirty flag that we check in VectorImage::RequestRefresh,
|
|
|
|
* which is called under the ticks of the refresh driver of any observing
|
|
|
|
* documents that we may have. Only then (after all animations in this image
|
|
|
|
* have been updated) do we send out "frame changed" notifications,
|
|
|
|
*/
|
|
|
|
void InvalidateObserversOnNextRefreshDriverTick();
|
2010-09-09 00:40:40 +04:00
|
|
|
|
2013-02-14 06:04:08 +04:00
|
|
|
// Callback for SVGParseCompleteListener.
|
|
|
|
void OnSVGDocumentParsed();
|
|
|
|
|
|
|
|
// Callbacks for SVGLoadEventListener.
|
|
|
|
void OnSVGDocumentLoaded();
|
|
|
|
void OnSVGDocumentError();
|
|
|
|
|
2015-03-17 22:25:35 +03:00
|
|
|
virtual void ReportUseCounters() override;
|
|
|
|
|
2010-09-09 00:40:39 +04:00
|
|
|
protected:
|
2015-04-29 02:32:02 +03:00
|
|
|
explicit VectorImage(ImageURL* aURI = nullptr);
|
2014-06-23 22:49:08 +04:00
|
|
|
virtual ~VectorImage();
|
2012-12-18 02:05:18 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult StartAnimation() override;
|
|
|
|
virtual nsresult StopAnimation() override;
|
|
|
|
virtual bool ShouldAnimate() override;
|
2010-09-09 00:40:39 +04:00
|
|
|
|
2014-09-15 02:22:45 +04:00
|
|
|
void CreateSurfaceAndShow(const SVGDrawingParameters& aParams);
|
2014-08-07 02:43:25 +04:00
|
|
|
void Show(gfxDrawable* aDrawable, const SVGDrawingParameters& aParams);
|
2013-10-22 15:38:08 +04:00
|
|
|
|
2010-09-09 00:40:39 +04:00
|
|
|
private:
|
2015-04-29 02:07:24 +03:00
|
|
|
nsresult Init(const char* aMimeType, uint32_t aFlags);
|
|
|
|
|
2015-02-04 03:38:39 +03:00
|
|
|
/**
|
|
|
|
* In catastrophic circumstances like a GPU driver crash, we may lose our
|
|
|
|
* surfaces even if they're locked. RecoverFromLossOfSurfaces discards all
|
|
|
|
* existing surfaces, allowing us to recover.
|
|
|
|
*/
|
|
|
|
void RecoverFromLossOfSurfaces();
|
|
|
|
|
2013-02-14 06:04:08 +04:00
|
|
|
void CancelAllListeners();
|
2013-11-21 05:21:50 +04:00
|
|
|
void SendInvalidationNotifications();
|
2013-02-14 06:04:08 +04:00
|
|
|
|
2010-09-09 00:40:39 +04:00
|
|
|
nsRefPtr<SVGDocumentWrapper> mSVGDocumentWrapper;
|
2010-09-09 00:40:40 +04:00
|
|
|
nsRefPtr<SVGRootRenderingObserver> mRenderingObserver;
|
2013-02-14 06:04:08 +04:00
|
|
|
nsRefPtr<SVGLoadEventListener> mLoadEventListener;
|
|
|
|
nsRefPtr<SVGParseCompleteListener> mParseCompleteListener;
|
2010-09-09 00:40:39 +04:00
|
|
|
|
2015-03-28 06:17:23 +03:00
|
|
|
/// Count of locks on this image (roughly correlated to visible instances).
|
|
|
|
uint32_t mLockCount;
|
|
|
|
|
2015-06-19 00:48:41 +03:00
|
|
|
// Stored result from the Necko load of the image, which we save in
|
|
|
|
// OnImageDataComplete if the underlying SVG document isn't loaded. If we save
|
|
|
|
// this, we actually notify this progress (and clear this value) in
|
|
|
|
// OnSVGDocumentLoaded or OnSVGDocumentError.
|
|
|
|
Maybe<Progress> mLoadProgress;
|
|
|
|
|
2015-04-04 22:58:00 +03:00
|
|
|
bool mIsInitialized; // Have we been initialized?
|
2015-03-28 06:17:23 +03:00
|
|
|
bool mDiscardable; // Are we discardable?
|
2015-04-04 22:58:00 +03:00
|
|
|
bool mIsFullyLoaded; // Has the SVG document finished
|
|
|
|
// loading?
|
2013-03-01 10:44:57 +04:00
|
|
|
bool mIsDrawing; // Are we currently drawing?
|
|
|
|
bool mHaveAnimations; // Is our SVG content SMIL-animated?
|
2010-09-09 00:40:39 +04:00
|
|
|
// (Only set after mIsFullyLoaded.)
|
2013-09-04 14:39:30 +04:00
|
|
|
bool mHasPendingInvalidation; // Invalidate observers next refresh
|
|
|
|
// driver tick.
|
2012-12-18 02:05:18 +04:00
|
|
|
|
|
|
|
friend class ImageFactory;
|
2010-09-09 00:40:39 +04:00
|
|
|
};
|
|
|
|
|
2015-04-04 22:58:00 +03:00
|
|
|
inline NS_IMETHODIMP VectorImage::GetAnimationMode(uint16_t* aAnimationMode) {
|
2012-10-20 00:27:11 +04:00
|
|
|
return GetAnimationModeInternal(aAnimationMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline NS_IMETHODIMP VectorImage::SetAnimationMode(uint16_t aAnimationMode) {
|
|
|
|
return SetAnimationModeInternal(aAnimationMode);
|
|
|
|
}
|
|
|
|
|
2012-01-06 20:02:27 +04:00
|
|
|
} // namespace image
|
2010-09-09 00:40:39 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#endif // mozilla_image_VectorImage_h
|