OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 part of dart.convert; | |
6 | |
7 // TODO(floitsch) - Document - Issue 13097 | |
8 const HTML_ESCAPE = const HtmlEscape(); | |
9 | |
10 class HtmlEscapeMode { | |
Jennifer Messerly
2013/09/05 20:41:37
nit: I think you could just have one TODO about th
| |
11 final String _name; | |
12 final bool escapeLtGt; | |
13 final bool escapeQuot; | |
14 final bool escapeApos; | |
15 | |
16 // TODO(floitsch) - Document - Issue 13097 | |
17 static const HtmlEscapeMode UNKNOWN = | |
Jennifer Messerly
2013/09/05 20:41:37
suggestion: rename UNKNOWN_QUOTED_ATTRIBUTE
(the
| |
18 const HtmlEscapeMode._('unknown', true, true, true); | |
19 | |
20 // TODO(floitsch) - Document - Issue 13097 | |
21 static const HtmlEscapeMode ATTRIBUTE = | |
Jennifer Messerly
2013/09/05 20:41:37
DOUBLE_QUOTE_ATTRIBUTE
and add SINGLE_QUOTE_ATTRI
| |
22 const HtmlEscapeMode._('attribute', false, true, false); | |
Jennifer Messerly
2013/09/05 20:41:37
Shouldn't this include less than and greater than
kevmoo-old
2013/09/07 20:34:15
The argument is that they are unneeded. Only in el
| |
23 | |
24 // TODO(floitsch) - Document - Issue 13097 | |
25 static const HtmlEscapeMode ELEMENT = | |
Jennifer Messerly
2013/09/05 20:41:37
ELEMENT_CONTENT
| |
26 const HtmlEscapeMode._('element', true, false, false); | |
27 | |
28 // TODO(floitsch) - Document - Issue 13097 | |
29 const HtmlEscapeMode._(this._name, this.escapeLtGt, this.escapeQuot, | |
Jennifer Messerly
2013/09/05 20:41:37
named arguments to make call the definitions more
kevmoo-old
2013/09/07 20:34:15
Agreed.
| |
30 this.escapeApos); | |
31 | |
32 String toString() => _name; | |
33 } | |
34 | |
35 // TODO(floitsch) - Document - Issue 13097 | |
36 class HtmlEscape extends Converter<String, String> { | |
37 | |
38 // TODO(floitsch) - Document - Issue 13097 | |
39 final HtmlEscapeMode mode; | |
40 | |
41 // TODO(floitsch) - Document - Issue 13097 | |
42 const HtmlEscape([this.mode = HtmlEscapeMode.UNKNOWN]); | |
43 | |
44 String convert(String text) { | |
45 var val = _convert(text, 0, text.length); | |
46 return val == null ? text : val; | |
47 } | |
48 | |
49 String _convert(String text, int start, int end) { | |
50 StringBuffer result = null; | |
51 for (int i = start; i < end; i++) { | |
52 var ch = text[i]; | |
53 String replace = null; | |
54 switch (ch) { | |
55 case '&': replace = '&'; break; | |
56 case '\u00A0'/*NO-BREAK SPACE*/: replace = ' '; break; | |
57 case '"': if (mode.escapeQuot) replace = '"'; break; | |
58 case "'": if (mode.escapeApos) replace = '''; break; | |
59 case '<': if (mode.escapeLtGt) replace = '<'; break; | |
60 case '>': if (mode.escapeLtGt) replace = '>'; break; | |
61 } | |
62 if (replace != null) { | |
63 if (result == null) result = new StringBuffer(text.substring(start, i)); | |
64 result.write(replace); | |
65 } else if (result != null) { | |
66 result.write(ch); | |
67 } | |
68 } | |
69 | |
70 return result != null ? result.toString() : null; | |
71 } | |
72 | |
73 StringConversionSink startChunkedConversion( | |
74 ChunkedConversionSink<String> sink) { | |
75 | |
76 if (sink is! StringConversionSink) { | |
77 sink = new StringConversionSink.from(sink); | |
78 } | |
79 return new _HtmlEscapeSink(this, sink); | |
80 } | |
81 } | |
82 | |
83 class _HtmlEscapeSink extends StringConversionSinkBase { | |
84 final HtmlEscape _escape; | |
85 final StringConversionSink _sink; | |
86 | |
87 _HtmlEscapeSink(this._escape, this._sink); | |
88 | |
89 void addSlice(String chunk, int start, int end, bool isLast) { | |
90 var val = _escape._convert(chunk, start, end); | |
91 if(val == null) { | |
92 _sink.addSlice(chunk, start, end, isLast); | |
93 } else { | |
94 _sink.add(val); | |
95 if (isLast) _sink.close(); | |
96 } | |
97 } | |
98 | |
99 void close() => _sink.close(); | |
100 } | |
OLD | NEW |