Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: Source/core/svg/SVGParserUtilities.h

Issue 319883002: Revert "[SVG2] Allow leading and trailing whitespace in svg attributes using" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGNumber.cpp ('k') | Source/core/svg/SVGParserUtilities.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2002, 2003 The Karbon Developers 2 * Copyright (C) 2002, 2003 The Karbon Developers
3 * Copyright (C) 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2006, 2007 Rob Buis <buis@kde.org>
4 * Copyright (C) 2013 Apple Inc. All rights reserved. 4 * Copyright (C) 2013 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #ifndef SVGParserUtilities_h 22 #ifndef SVGParserUtilities_h
23 #define SVGParserUtilities_h 23 #define SVGParserUtilities_h
24 24
25 #include "core/html/parser/HTMLParserIdioms.h"
26 #include "core/svg/SVGTransform.h" 25 #include "core/svg/SVGTransform.h"
27 #include "platform/text/ParserUtilities.h" 26 #include "platform/text/ParserUtilities.h"
28 #include "wtf/HashSet.h" 27 #include "wtf/HashSet.h"
29 28
30 typedef pair<unsigned, unsigned> UnicodeRange; 29 typedef pair<unsigned, unsigned> UnicodeRange;
31 typedef Vector<UnicodeRange> UnicodeRanges; 30 typedef Vector<UnicodeRange> UnicodeRanges;
32 31
33 namespace WebCore { 32 namespace WebCore {
34 33
35 class FloatPoint; 34 class FloatPoint;
36 class FloatRect; 35 class FloatRect;
37 class SVGPointList; 36 class SVGPointList;
38 37
39 enum WhitespaceMode {
40 DisallowWhitespace = 0,
41 AllowLeadingWhitespace = 0x1,
42 AllowTrailingWhitespace = 0x2,
43 AllowLeadingAndTrailingWhitespace = AllowLeadingWhitespace | AllowTrailingWh itespace
44 };
45
46 template <typename CharType> 38 template <typename CharType>
47 bool parseSVGNumber(CharType* ptr, size_t length, double& number); 39 bool parseSVGNumber(CharType* ptr, size_t length, double& number);
48 bool parseNumber(const LChar*& ptr, const LChar* end, float& number, WhitespaceM ode = AllowLeadingAndTrailingWhitespace); 40 bool parseNumber(const LChar*& ptr, const LChar* end, float& number, bool skip = true);
49 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, WhitespaceM ode = AllowLeadingAndTrailingWhitespace); 41 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip = true);
50 bool parseNumberOptionalNumber(const String& s, float& h, float& v); 42 bool parseNumberOptionalNumber(const String& s, float& h, float& v);
51 bool parseNumberOrPercentage(const String& s, float& number);
52 bool parseArcFlag(const LChar*& ptr, const LChar* end, bool& flag); 43 bool parseArcFlag(const LChar*& ptr, const LChar* end, bool& flag);
53 bool parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag); 44 bool parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag);
54 45
55 template <typename CharType> 46 template <typename CharType>
56 bool parseFloatPoint(const CharType*& current, const CharType* end, FloatPoint&) ; 47 bool parseFloatPoint(const CharType*& current, const CharType* end, FloatPoint&) ;
57 template <typename CharType> 48 template <typename CharType>
58 bool parseFloatPoint2(const CharType*& current, const CharType* end, FloatPoint& , FloatPoint&); 49 bool parseFloatPoint2(const CharType*& current, const CharType* end, FloatPoint& , FloatPoint&);
59 template <typename CharType> 50 template <typename CharType>
60 bool parseFloatPoint3(const CharType*& current, const CharType* end, FloatPoint& , FloatPoint&, FloatPoint&); 51 bool parseFloatPoint3(const CharType*& current, const CharType* end, FloatPoint& , FloatPoint&, FloatPoint&);
61 52
53 // SVG allows several different whitespace characters:
54 // http://www.w3.org/TR/SVG/paths.html#PathDataBNF
55 template <typename CharType>
56 inline bool isSVGSpace(CharType c)
57 {
58 return c == ' ' || c == '\t' || c == '\n' || c == '\r';
59 }
60
62 template <typename CharType> 61 template <typename CharType>
63 inline bool skipOptionalSVGSpaces(const CharType*& ptr, const CharType* end) 62 inline bool skipOptionalSVGSpaces(const CharType*& ptr, const CharType* end)
64 { 63 {
65 while (ptr < end && isHTMLSpace<CharType>(*ptr)) 64 while (ptr < end && isSVGSpace(*ptr))
66 ptr++; 65 ptr++;
67 return ptr < end; 66 return ptr < end;
68 } 67 }
69 68
70 template <typename CharType> 69 template <typename CharType>
71 inline bool skipOptionalSVGSpacesOrDelimiter(const CharType*& ptr, const CharTyp e* end, char delimiter = ',') 70 inline bool skipOptionalSVGSpacesOrDelimiter(const CharType*& ptr, const CharTyp e* end, char delimiter = ',')
72 { 71 {
73 if (ptr < end && !isHTMLSpace<CharType>(*ptr) && *ptr != delimiter) 72 if (ptr < end && !isSVGSpace(*ptr) && *ptr != delimiter)
74 return false; 73 return false;
75 if (skipOptionalSVGSpaces(ptr, end)) { 74 if (skipOptionalSVGSpaces(ptr, end)) {
76 if (ptr < end && *ptr == delimiter) { 75 if (ptr < end && *ptr == delimiter) {
77 ptr++; 76 ptr++;
78 skipOptionalSVGSpaces(ptr, end); 77 skipOptionalSVGSpaces(ptr, end);
79 } 78 }
80 } 79 }
81 return ptr < end; 80 return ptr < end;
82 } 81 }
83 82
84 Vector<String> parseDelimitedString(const String& input, const char seperator); 83 Vector<String> parseDelimitedString(const String& input, const char seperator);
85 bool parseKerningUnicodeString(const String& input, UnicodeRanges&, HashSet<Stri ng>& stringList); 84 bool parseKerningUnicodeString(const String& input, UnicodeRanges&, HashSet<Stri ng>& stringList);
86 bool parseGlyphName(const String& input, HashSet<String>& values); 85 bool parseGlyphName(const String& input, HashSet<String>& values);
87 86
88 template<typename CharType> 87 template<typename CharType>
89 bool parseAndSkipTransformType(const CharType*& ptr, const CharType* end, SVGTra nsformType&); 88 bool parseAndSkipTransformType(const CharType*& ptr, const CharType* end, SVGTra nsformType&);
90 SVGTransformType parseTransformType(const String&); 89 SVGTransformType parseTransformType(const String&);
91 90
92 } // namespace WebCore 91 } // namespace WebCore
93 92
94 #endif // SVGParserUtilities_h 93 #endif // SVGParserUtilities_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGNumber.cpp ('k') | Source/core/svg/SVGParserUtilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698