-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentities.js
121 lines (108 loc) · 3.21 KB
/
entities.js
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
const https = require( "https" ),
fs = require( "fs" ),
path = require( "path" ),
{zip} = require( "compressing" ),
{stringEscape} = require( "./utils" );
entityNameRE = /[&;]/g,
stringEscapeRE = /[\x00-\x1F\x22\x27\x5C\x7F-\uFFFF]/g;
function processEntities( str )
{
const data = JSON.parse( str ),
entityList = Object.getOwnPropertyNames( data ).
sort( ( a, b ) => a.localeCompare( b, "en", {sensitivity: "base"} ) ),
entities = {},
duplicates = new Map();
for ( let i = 0; i < entityList.length; i++ )
{
const name = entityList[i].replace( entityNameRE, "" ),
nameLC = name.toLowerCase();
if ( !entities.hasOwnProperty( name ) )
{
let chars = data[entityList[i]].characters;
if ( chars.length === 1 )
{
const cp = chars.codePointAt( 0 );
if ( cp < 0x7f ) switch ( cp )
{
case 9: chars = "\\t"; break;
case 10: chars = "\\n"; break;
case 13: chars = "\\r"; break;
default: if ( cp > 0x20 ) chars = stringEscape( String.fromCodePoint( cp ), '"', stringEscapeRE );
}
else if ( cp < 65535 )
chars = cp;
else chars = stringEscape( chars, null, stringEscapeRE );
}
else chars = stringEscape( chars, null, stringEscapeRE );
if ( duplicates.has( nameLC ) )
{
const realName = duplicates.get( nameLC );
if ( entities[realName] === chars )
{
delete entities[realName];
duplicates.delete( nameLC );
duplicates.set( nameLC, name );
}
}
else duplicates.set( nameLC, name );
entities[name] = chars;
}
}
let entitiesStr = "{";
for ( let k in entities )
{
const value = entities[k];
if ( entitiesStr !== "{" ) entitiesStr += ",";
entitiesStr += '"'+ k +'":';
if ( typeof value === "string" )
entitiesStr += '"'+ value +'"';
else entitiesStr += value;
}
entitiesStr += "}";
if ( !fs.existsSync( "./lib" ) )
fs.mkdirSync( "./lib" );
const filePath = path.resolve( "./lib/entities" ),
escapedEntitiesStr = "JSON.parse('"+ stringEscape( entitiesStr, "'", stringEscapeRE ) +"')";
outputFile( filePath +".json", entitiesStr );
outputFile( filePath +".js", "if(window.DOM)DOM.EntityEncoder.defaultEntities="+ escapedEntitiesStr );
outputFile( filePath +".mjs", "export default "+ escapedEntitiesStr );
}
if ( fs.existsSync( "./scripts/entities.raw.json" ) )
{
processEntities( fs.readFileSync( "./scripts/entities.raw.json", "utf8" ) );
}
else
{
https.request( "https://html.spec.whatwg.org/entities.json", res =>
{
var entities = "";
res.on( "data", data =>
{
entities += data;
} ).
on( "end", () =>
{
fs.writeFileSync( "./scripts/entities.raw.json", entities );
processEntities( entities );
} );
} ).
on( "error", err =>
{
console.error( err );
process.exit( -1 );
} ).
end();
}
function outputFile( filePath, contents )
{
const ext = path.extname( filePath ),
fileName = path.basename( filePath, ext ),
dirName = path.dirname( filePath );
fs.writeFile( filePath, contents, err => {if ( err ) console.error( "Error writing "+ filePath +"\n"+ err )} );
if ( ext === ".js" || ext === ".mjs" )
zip.compressFile(
Buffer.from( contents ),
path.join( dirName, fileName + (ext === ".mjs" ? ".module" : "") +".zip" ),
{relativePath: fileName +".js"}
);
}