mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
136 lines
4.8 KiB
C++
136 lines
4.8 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_image_VectorImage_h
|
|
#define mozilla_image_VectorImage_h
|
|
|
|
#include "Image.h"
|
|
#include "nsIStreamListener.h"
|
|
#include "mozilla/MemoryReporting.h"
|
|
|
|
class nsIRequest;
|
|
class gfxDrawable;
|
|
|
|
namespace mozilla {
|
|
namespace image {
|
|
|
|
struct SVGDrawingParameters;
|
|
class SVGDocumentWrapper;
|
|
class SVGRootRenderingObserver;
|
|
class SVGLoadEventListener;
|
|
class SVGParseCompleteListener;
|
|
|
|
class VectorImage final : public ImageResource,
|
|
public nsIStreamListener
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
NS_DECL_NSISTREAMLISTENER
|
|
NS_DECL_IMGICONTAINER
|
|
|
|
// (no public constructor - use ImageFactory)
|
|
|
|
// Methods inherited from Image
|
|
virtual size_t SizeOfSourceWithComputedFallback(MallocSizeOf aMallocSizeOf)
|
|
const override;
|
|
virtual void CollectSizeOfSurfaces(nsTArray<SurfaceMemoryCounter>& aCounters,
|
|
MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
virtual nsresult OnImageDataAvailable(nsIRequest* aRequest,
|
|
nsISupports* aContext,
|
|
nsIInputStream* aInStr,
|
|
uint64_t aSourceOffset,
|
|
uint32_t aCount) override;
|
|
virtual nsresult OnImageDataComplete(nsIRequest* aRequest,
|
|
nsISupports* aContext,
|
|
nsresult aResult,
|
|
bool aLastPart) override;
|
|
|
|
void OnSurfaceDiscarded() override;
|
|
|
|
/**
|
|
* 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();
|
|
|
|
// Callback for SVGParseCompleteListener.
|
|
void OnSVGDocumentParsed();
|
|
|
|
// Callbacks for SVGLoadEventListener.
|
|
void OnSVGDocumentLoaded();
|
|
void OnSVGDocumentError();
|
|
|
|
virtual void ReportUseCounters() override;
|
|
|
|
protected:
|
|
explicit VectorImage(ImageURL* aURI = nullptr);
|
|
virtual ~VectorImage();
|
|
|
|
virtual nsresult StartAnimation() override;
|
|
virtual nsresult StopAnimation() override;
|
|
virtual bool ShouldAnimate() override;
|
|
|
|
void CreateSurfaceAndShow(const SVGDrawingParameters& aParams);
|
|
void Show(gfxDrawable* aDrawable, const SVGDrawingParameters& aParams);
|
|
|
|
private:
|
|
nsresult Init(const char* aMimeType, uint32_t aFlags);
|
|
|
|
/**
|
|
* 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();
|
|
|
|
void CancelAllListeners();
|
|
void SendInvalidationNotifications();
|
|
|
|
RefPtr<SVGDocumentWrapper> mSVGDocumentWrapper;
|
|
RefPtr<SVGRootRenderingObserver> mRenderingObserver;
|
|
RefPtr<SVGLoadEventListener> mLoadEventListener;
|
|
RefPtr<SVGParseCompleteListener> mParseCompleteListener;
|
|
|
|
/// Count of locks on this image (roughly correlated to visible instances).
|
|
uint32_t mLockCount;
|
|
|
|
// 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;
|
|
|
|
bool mIsInitialized; // Have we been initialized?
|
|
bool mDiscardable; // Are we discardable?
|
|
bool mIsFullyLoaded; // Has the SVG document finished
|
|
// loading?
|
|
bool mIsDrawing; // Are we currently drawing?
|
|
bool mHaveAnimations; // Is our SVG content SMIL-animated?
|
|
// (Only set after mIsFullyLoaded.)
|
|
bool mHasPendingInvalidation; // Invalidate observers next refresh
|
|
// driver tick.
|
|
|
|
friend class ImageFactory;
|
|
};
|
|
|
|
inline NS_IMETHODIMP VectorImage::GetAnimationMode(uint16_t* aAnimationMode) {
|
|
return GetAnimationModeInternal(aAnimationMode);
|
|
}
|
|
|
|
inline NS_IMETHODIMP VectorImage::SetAnimationMode(uint16_t aAnimationMode) {
|
|
return SetAnimationModeInternal(aAnimationMode);
|
|
}
|
|
|
|
} // namespace image
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_image_VectorImage_h
|