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
|
/*
* (C) 1999-2003 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 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 CSSValueList_h
#define CSSValueList_h
#include "CSSValue.h"
#include <wtf/PassRefPtr.h>
#include <wtf/Vector.h>
namespace WebCore {
class CSSParserValueList;
class CSSValueList : public CSSValue {
public:
static PassRef<CSSValueList> createCommaSeparated()
{
return adoptRef(*new CSSValueList(CommaSeparator));
}
static PassRef<CSSValueList> createSpaceSeparated()
{
return adoptRef(*new CSSValueList(SpaceSeparator));
}
static PassRef<CSSValueList> createSlashSeparated()
{
return adoptRef(*new CSSValueList(SlashSeparator));
}
static PassRef<CSSValueList> createFromParserValueList(CSSParserValueList& list)
{
return adoptRef(*new CSSValueList(list));
}
size_t length() const { return m_values.size(); }
CSSValue* item(size_t index) { return index < m_values.size() ? &m_values[index].get() : nullptr; }
const CSSValue* item(size_t index) const { return index < m_values.size() ? &m_values[index].get() : nullptr; }
CSSValue* itemWithoutBoundsCheck(size_t index) { return &m_values[index].get(); }
const CSSValue* itemWithoutBoundsCheck(size_t index) const { ASSERT(index < m_values.size()); return &m_values[index].get(); }
void append(PassRef<CSSValue>);
void prepend(PassRef<CSSValue>);
bool removeAll(CSSValue*);
bool hasValue(CSSValue*) const;
PassRefPtr<CSSValueList> copy();
String customCSSText() const;
bool equals(const CSSValueList&) const;
bool equals(const CSSValue&) const;
void addSubresourceStyleURLs(ListHashSet<URL>&, const StyleSheetContents*) const;
bool hasFailedOrCanceledSubresources() const;
PassRefPtr<CSSValueList> cloneForCSSOM() const;
protected:
CSSValueList(ClassType, ValueListSeparator);
CSSValueList(const CSSValueList& cloneFrom);
private:
explicit CSSValueList(ValueListSeparator);
explicit CSSValueList(CSSParserValueList&);
Vector<Ref<CSSValue>, 4> m_values;
};
CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList())
inline void CSSValueList::append(PassRef<CSSValue> value)
{
m_values.append(WTF::move(value));
}
inline void CSSValueList::prepend(PassRef<CSSValue> value)
{
m_values.insert(0, WTF::move(value));
}
// Objects of this class are intended to be stack-allocated and scoped to a single function.
// Please take care not to pass these around as they do hold onto a raw pointer.
class CSSValueListInspector {
public:
CSSValueListInspector(CSSValue* value) : m_list((value && value->isValueList()) ? toCSSValueList(value) : 0) { }
CSSValue* item(size_t index) const { ASSERT_WITH_SECURITY_IMPLICATION(index < length()); return m_list->itemWithoutBoundsCheck(index); }
CSSValue* first() const { return item(0); }
CSSValue* second() const { return item(1); }
size_t length() const { return m_list ? m_list->length() : 0; }
private:
CSSValueList* m_list;
};
// Wrapper that can be used to iterate over any CSSValue. Non-list values and 0 behave as zero-length lists.
// Objects of this class are intended to be stack-allocated and scoped to a single function.
// Please take care not to pass these around as they do hold onto a raw pointer.
class CSSValueListIterator {
public:
CSSValueListIterator(CSSValue* value) : m_inspector(value), m_position(0) { }
bool hasMore() const { return m_position < m_inspector.length(); }
CSSValue* value() const { return m_inspector.item(m_position); }
bool isPrimitiveValue() const { return value()->isPrimitiveValue(); }
void advance() { m_position++; ASSERT(m_position <= m_inspector.length());}
size_t index() const { return m_position; }
private:
CSSValueListInspector m_inspector;
size_t m_position;
};
} // namespace WebCore
#endif // CSSValueList_h
|