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
|
var fs = require('fs');
var jsesc = require('jsesc');
var regenerate = require('regenerate');
var difference = require('lodash.difference');
require('string.fromcodepoint');
var readJSON = function(fileName) {
var contents = fs.readFileSync('data/' + fileName + '.json', 'utf-8');
var object = JSON.parse(contents);
if (Array.isArray(object)) {
return object;
}
return jsesc(object, {
'compact': true,
'quotes': 'single'
});
};
var joinStrings = function(a, b) {
if (a && b) {
return a + '|' + b;
}
return a + b;
};
var loneCodePoints = readJSON('encode-lone-code-points');
var arrayEncodeMultipleSymbols = readJSON('encode-paired-symbols');
var arrayEncodeMultipleSymbolsASCII = arrayEncodeMultipleSymbols
.filter(function(string) {
return /^[\0-\x7F]+$/.test(string);
});
var encodeSingleSymbolsASCII = regenerate(loneCodePoints)
.removeRange(0x7F + 1, 0x10FFFF).toString();
var encodeSingleSymbolsNonASCII = regenerate(loneCodePoints)
.removeRange(0x00, 0x7F).toString();
var encodeMultipleSymbolsASCII = jsesc(
arrayEncodeMultipleSymbolsASCII.join('|')
);
var encodeMultipleSymbolsNonASCII = jsesc(
difference(
arrayEncodeMultipleSymbols,
arrayEncodeMultipleSymbolsASCII
).join('|')
);
var encodeASCII = joinStrings(
encodeMultipleSymbolsASCII,
encodeSingleSymbolsASCII
);
var encodeNonASCII = joinStrings(
encodeMultipleSymbolsNonASCII,
encodeSingleSymbolsNonASCII
);
var invalidRawCodePoints = readJSON('invalid-raw-code-points');
// U+0000 is a parse error in the Data state (which is the state where `he`’s
// input and output is supposed to end up in), so add it to the set of invalid
// raw code points. http://whatwg.org/html/tokenization.html#data-state
invalidRawCodePoints.unshift(0x0000);
var overrides = Object.keys(
JSON.parse(fs.readFileSync('data/decode-map-overrides.json', 'utf-8'))
).map(function(codePoint) {
return Number(codePoint);
});
module.exports = {
'encodeMap': readJSON('encode-map'),
'encodeASCII': encodeASCII, // not used
'regexEncodeNonASCII': encodeNonASCII,
'decodeOverrides': readJSON('decode-map-overrides'),
'decodeMap': readJSON('decode-map'),
'decodeMapLegacy': readJSON('decode-map-legacy'),
'invalidReferenceCodePoints': (function() {
return jsesc(readJSON('invalid-character-reference-code-points'));
}()),
'invalidCodePointsString': (function() {
var string = String.fromCodePoint.apply(0, invalidRawCodePoints);
return jsesc(string, { 'wrap': true });
}()),
'regexInvalidRawCodePoints': regenerate(invalidRawCodePoints).toString(),
'regexAstralSymbol': regenerate().addRange(0x010000, 0x10FFFF).toString(),
'regexDecimalEscapeSource': '&#([0-9]+)(;?)',
'regexHexadecimalEscapeSource': '&#[xX]([a-fA-F0-9]+)(;?)',
'regexNamedReferenceSource': '&([0-9a-zA-Z]+);',
'regexLegacyReferenceSource': (function() {
return '&(' + readJSON('decode-legacy-named-references').join('|') +
')([=a-zA-Z0-9])?';
}()),
'regexLoneSurrogate': '[\\uD800-\\uDBFF](?:[^\\uDC00-\\uDFFF]|$)|(?:[^\\uD800-\uDBFF]|^)[\\uDC00-\\uDFFF]',
'regexASCII': (function() {
return regenerate()
// Add all ASCII symbols (not just printable ASCII).
.addRange(0x0, 0x7F)
// Remove code points listed in the first column of the overrides table.
// http://whatwg.org/html/tokenization.html#table-charref-overrides
.remove(overrides)
.toString();
}()),
'regexOtherBMP': (function() {
return regenerate()
// Add all BMP symbols.
.addRange(0x0, 0xFFFF)
// Remove ASCII newlines.
.remove('\r', '\n')
// Remove printable ASCII symbols.
.removeRange(0x20, 0x7E)
// Remove code points listed in the first column of the overrides table.
// http://whatwg.org/html/tokenization.html#table-charref-overrides
.remove(overrides)
.toString();
}()),
'testData': fs.readFileSync('data/entities.json', 'utf-8').trim(),
'version': JSON.parse(fs.readFileSync('package.json', 'utf-8')).version
};
|