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

Unified Diff: lib/utils.dart

Issue 10916294: switch html5lib to new pkg layout (Closed) Base URL: https://github.com/dart-lang/html5lib.git@master
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/tokenizer.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/utils.dart
diff --git a/lib/utils.dart b/lib/utils.dart
deleted file mode 100644
index 55f693ff24b2e4005e349c45835f5d8ddca91131..0000000000000000000000000000000000000000
--- a/lib/utils.dart
+++ /dev/null
@@ -1,190 +0,0 @@
-/** Misc things that were useful when porting the code from Python. */
-#library('utils');
-
-#import('dart:math');
-#import('package:unittest/unittest.dart');
-#import('constants.dart');
-
-typedef bool Predicate();
-
-class Pair<F extends Hashable, S extends Hashable> implements Hashable {
- final F first;
- final S second;
-
- const Pair(this.first, this.second);
-
- int hashCode() => 37 * first.hashCode() + second.hashCode();
- bool operator ==(other) => other.first == first && other.second == second;
-}
-
-int parseIntRadix(String str, [int radix = 10]) {
- int val = 0;
- for (int i = 0; i < str.length; i++) {
- var digit = str.charCodeAt(i);
- if (digit >= LOWER_A) {
- digit += 10 - LOWER_A;
- } else if (digit >= UPPER_A) {
- digit += 10 - UPPER_A;
- } else {
- digit -= ZERO;
- }
- val = val * radix + digit;
- }
- return val;
-}
-
-bool any(List<bool> iterable) => iterable.some((f) => f);
-
-bool startsWithAny(String str, List<String> prefixes) {
- for (var prefix in prefixes) {
- if (str.startsWith(prefix)) {
- return true;
- }
- }
- return false;
-}
-
-String joinStr(List<String> strings) => Strings.join(strings, '');
-
-// Like the python [:] operator.
-List slice(List list, int start, [int end]) {
- if (end == null) end = list.length;
- if (end < 0) end += list.length;
-
- // Ensure the indexes are in bounds.
- if (end < start) end = start;
- if (end > list.length) end = list.length;
- return list.getRange(start, end - start);
-}
-
-removeAt(List list, int i) {
- var result = list[i];
- list.removeRange(i, 1);
- return result;
-}
-
-bool removeFromList(List list, item) {
- int i = list.indexOf(item);
- if (i == -1) return false;
- list.removeRange(i, 1);
- return true;
-}
-
-/** Makes a dictionary, where the first key wins. */
-Map makeDict(List<List> items) {
- var result = new Map();
- for (var item in items) {
- expect(item.length, equals(2));
- result.putIfAbsent(item[0], () => item[1]);
- }
- return result;
-}
-
-bool allWhitespace(String str) {
- for (int i = 0; i < str.length; i++) {
- if (!isWhitespaceCC(str.charCodeAt(i))) return false;
- }
- return true;
-}
-
-String padWithZeros(String str, int size) {
- if (str.length == size) return str;
- var result = new StringBuffer();
- size -= str.length;
- for (int i = 0; i < size; i++) result.add('0');
- result.add(str);
- return result.toString();
-}
-
-
-/**
- * Note: this is meant to match:
- * <http://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.escape>
- * So we only escape `&` `<` and `>`, unlike Dart's htmlEscape function.
- */
-String htmlEscapeMinimal(String text, [Map extraReplace]) {
- // TODO(efortuna): A more efficient implementation.
- text = text.replaceAll("&", "&amp;")
- .replaceAll("<", "&lt;")
- .replaceAll(">", "&gt;");
- if (extraReplace != null) {
- extraReplace.forEach((k, v) { text = text.replaceAll(k, v); });
- }
- return text;
-}
-
-
-// TODO(jmesserly): this implementation is pretty wrong, but I need something
-// quick until dartbug.com/1694 is fixed.
-/**
- * Format a string like Python's % string format operator. Right now this only
- * supports a [data] dictionary used with %s or %08x. Those were the only things
- * needed for [errorMessages].
- */
-String formatStr(String format, Map data) {
- if (data == null) return format;
- data.forEach((key, value) {
- var result = new StringBuffer();
- var search = '%($key)';
- int last = 0, match;
- while ((match = format.indexOf(search, last)) >= 0) {
- result.add(format.substring(last, match));
- match += search.length;
-
- int digits = match;
- while (isDigit(format[digits])) {
- digits++;
- }
- int numberSize;
- if (digits > match) {
- numberSize = parseInt(format.substring(match, digits));
- match = digits;
- }
-
- switch (format[match]) {
- case 's':
- result.add(value);
- break;
- case 'd':
- var number = value.toString();
- result.add(padWithZeros(number, numberSize));
- break;
- case 'x':
- var number = value.toRadixString(16);
- result.add(padWithZeros(number, numberSize));
- break;
- default: throw "not implemented: formatStr does not support format "
- "character ${format[match]}";
- }
-
- last = match + 1;
- }
-
- result.add(format.substring(last, format.length));
- format = result.toString();
- });
-
- return format;
-}
-
-_ReverseIterable reversed(List list) => new _ReverseIterable(list);
-
-class _ReverseIterable implements Iterable, Iterator {
- int _index;
- List _list;
- _ReverseIterable(this._list);
- Iterator iterator() {
- if (_index == null) {
- _index = _list.length;
- return this;
- } else {
- return new _ReverseIterable(_list).iterator();
- }
- }
-
- bool hasNext() => _index > 0;
- next() {
- if (_index == 0) throw const NoMoreElementsException();
- return _list[--_index];
- }
-}
« no previous file with comments | « lib/tokenizer.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698