blob: 9d8041ce7e57cf1c18a123a1bea79ae35e1541bb [file] [log] [blame]
/*
* Copyright (C) 2017 Apple Inc. All rights reserved.
*
* 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 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 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.
*/
#pragma once
#include <wtf/HashSet.h>
#include <wtf/TypeCasts.h>
namespace WebCore {
class AffineTransform;
class CanvasBase;
class CanvasRenderingContext;
class Element;
class GraphicsContext;
class Image;
class ImageBuffer;
class IntSize;
class FloatRect;
class ScriptExecutionContext;
class SecurityOrigin;
class CanvasObserver {
public:
virtual ~CanvasObserver() = default;
virtual bool isCanvasObserverProxy() const { return false; }
virtual void canvasChanged(CanvasBase&, const FloatRect& changedRect) = 0;
virtual void canvasResized(CanvasBase&) = 0;
virtual void canvasDestroyed(CanvasBase&) = 0;
};
class CanvasBase {
public:
virtual ~CanvasBase();
virtual void refCanvasBase() = 0;
virtual void derefCanvasBase() = 0;
virtual bool isHTMLCanvasElement() const { return false; }
virtual bool isOffscreenCanvas() const { return false; }
virtual bool isCustomPaintCanvas() const { return false; }
virtual unsigned width() const = 0;
virtual unsigned height() const = 0;
virtual const IntSize& size() const = 0;
virtual void setSize(const IntSize&) = 0;
void setOriginClean() { m_originClean = true; }
void setOriginTainted() { m_originClean = false; }
bool originClean() const { return m_originClean; }
virtual SecurityOrigin* securityOrigin() const { return nullptr; }
ScriptExecutionContext* scriptExecutionContext() const { return canvasBaseScriptExecutionContext(); }
CanvasRenderingContext* renderingContext() const;
void addObserver(CanvasObserver&);
void removeObserver(CanvasObserver&);
void notifyObserversCanvasChanged(const FloatRect&);
void notifyObserversCanvasResized();
void notifyObserversCanvasDestroyed(); // Must be called in destruction before clearing m_context.
HashSet<Element*> cssCanvasClients() const;
virtual GraphicsContext* drawingContext() const = 0;
virtual GraphicsContext* existingDrawingContext() const = 0;
virtual void makeRenderingResultsAvailable() = 0;
virtual void didDraw(const FloatRect&) = 0;
virtual AffineTransform baseTransform() const = 0;
virtual Image* copiedImage() const = 0;
bool callTracingActive() const;
protected:
CanvasBase();
virtual ScriptExecutionContext* canvasBaseScriptExecutionContext() const = 0;
std::unique_ptr<CanvasRenderingContext> m_context;
private:
bool m_originClean { true };
#ifndef NDEBUG
bool m_didNotifyObserversCanvasDestroyed { false };
#endif
HashSet<CanvasObserver*> m_observers;
};
} // namespace WebCore
#define SPECIALIZE_TYPE_TRAITS_CANVAS(ToValueTypeName, predicate) \
SPECIALIZE_TYPE_TRAITS_BEGIN(ToValueTypeName) \
static bool isType(const WebCore::CanvasBase& canvas) { return canvas.predicate; } \
SPECIALIZE_TYPE_TRAITS_END()