1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Copyright (C) Research In Motion Limited 2010. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef SVGAnimatedProperty_h
#define SVGAnimatedProperty_h
#if ENABLE(SVG)
#include "SVGAnimatedPropertyDescription.h"
#include "SVGElement.h"
#include "SVGPropertyInfo.h"
#include <wtf/RefCounted.h>
namespace WebCore {
class SVGElement;
class SVGAnimatedProperty : public RefCounted<SVGAnimatedProperty> {
public:
SVGElement* contextElement() const { return m_contextElement.get(); }
const QualifiedName& attributeName() const { return m_attributeName; }
void commitChange()
{
ASSERT(m_contextElement);
m_contextElement->invalidateSVGAttributes();
m_contextElement->svgAttributeChanged(m_attributeName);
}
virtual bool isAnimatedListTearOff() const { return false; }
virtual void updateAnimVal(void*) { ASSERT_NOT_REACHED(); }
// Caching facilities.
typedef HashMap<SVGAnimatedPropertyDescription, RefPtr<SVGAnimatedProperty>, SVGAnimatedPropertyDescriptionHash, SVGAnimatedPropertyDescriptionHashTraits> Cache;
virtual ~SVGAnimatedProperty()
{
// Remove wrapper from cache.
Cache* cache = animatedPropertyCache();
const Cache::const_iterator end = cache->end();
for (Cache::const_iterator it = cache->begin(); it != end; ++it) {
if (it->second == this) {
cache->remove(it->first);
break;
}
}
}
// lookupOrCreateWrapper & helper methods.
template<typename TearOffType, typename PropertyType, bool isDerivedFromSVGElement>
struct LookupOrCreateHelper;
template<typename TearOffType, typename PropertyType>
struct LookupOrCreateHelper<TearOffType, PropertyType, false> {
static PassRefPtr<TearOffType> lookupOrCreateWrapper(void*, const SVGPropertyInfo*, PropertyType&)
{
ASSERT_NOT_REACHED();
return PassRefPtr<TearOffType>();
}
};
template<typename TearOffType, typename PropertyType>
struct LookupOrCreateHelper<TearOffType, PropertyType, true> {
static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const SVGPropertyInfo* info, PropertyType& property)
{
ASSERT(info);
SVGAnimatedPropertyDescription key(element, info->propertyIdentifier);
RefPtr<SVGAnimatedProperty> wrapper = animatedPropertyCache()->get(key);
if (!wrapper) {
wrapper = TearOffType::create(element, info->attributeName, property);
animatedPropertyCache()->set(key, wrapper);
}
return static_pointer_cast<TearOffType>(wrapper).release();
}
};
template<typename OwnerType, typename TearOffType, typename PropertyType, bool isDerivedFromSVGElement>
static PassRefPtr<TearOffType> lookupOrCreateWrapper(OwnerType* element, const SVGPropertyInfo* info, PropertyType& property)
{
return LookupOrCreateHelper<TearOffType, PropertyType, isDerivedFromSVGElement>::lookupOrCreateWrapper(element, info, property);
}
// lookupWrapper & helper methods.
template<typename TearOffType, bool isDerivedFromSVGElement>
struct LookupHelper;
template<typename TearOffType>
struct LookupHelper<TearOffType, false> {
static TearOffType* lookupWrapper(const void*, const SVGPropertyInfo*)
{
return 0;
}
};
template<typename TearOffType>
struct LookupHelper<TearOffType, true> {
static TearOffType* lookupWrapper(const SVGElement* element, const SVGPropertyInfo* info)
{
ASSERT(info);
SVGAnimatedPropertyDescription key(const_cast<SVGElement*>(element), info->propertyIdentifier);
return static_pointer_cast<TearOffType>(animatedPropertyCache()->get(key)).get();
}
};
template<typename OwnerType, typename TearOffType, bool isDerivedFromSVGElement>
static TearOffType* lookupWrapper(const OwnerType* element, const SVGPropertyInfo* info)
{
return LookupHelper<TearOffType, isDerivedFromSVGElement>::lookupWrapper(element, info);
}
protected:
SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName)
: m_contextElement(contextElement)
, m_attributeName(attributeName)
{
}
private:
static Cache* animatedPropertyCache()
{
static Cache* s_cache = new Cache;
return s_cache;
}
RefPtr<SVGElement> m_contextElement;
const QualifiedName& m_attributeName;
};
}
#endif // ENABLE(SVG)
#endif // SVGAnimatedProperty_h
|