-
Notifications
You must be signed in to change notification settings - Fork 1
/
build-unicode-category-data.js
283 lines (270 loc) · 6.26 KB
/
build-unicode-category-data.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
const fs = require("fs");
// From https://www.unicode.org/reports/tr44/#General_Category_Values
const namedCategories = [
{
short: "Lu",
full: "Uppercase_Letter",
},
{
short: "Ll",
full: "Lowercase_Letter",
},
{
short: "Lt",
full: "Titlecase_Letter",
},
{
short: "Lm",
full: "Modifier_Letter",
},
{
short: "Lo",
full: "Other_Letter",
},
{
short: "Mn",
full: "Nonspacing_Mark",
},
{
short: "Mc",
full: "Spacing_Mark",
},
{
short: "Me",
full: "Enclosing_Mark",
},
{
short: "Nd",
full: "Decimal_Number",
},
{
short: "Nl",
full: "Letter_Number",
},
{
short: "No",
full: "Other_Number",
},
{
short: "Pc",
full: "Connector_Punctuation",
},
{
short: "Pd",
full: "Dash_Punctuation",
},
{
short: "Ps",
full: "Open_Punctuation",
},
{
short: "Pe",
full: "Close_Punctuation",
},
{
short: "Pi",
full: "Initial_Punctuation",
},
{
short: "Pf",
full: "Final_Punctuation",
},
{
short: "Po",
full: "Other_Punctuation",
},
{
short: "Sm",
full: "Math_Symbol",
},
{
short: "Sc",
full: "Currency_Symbol",
},
{
short: "Sk",
full: "Modifier_Symbol",
},
{
short: "So",
full: "Other_Symbol",
},
{
short: "Zs",
full: "Space_Separator",
},
{
short: "Zl",
full: "Line_Separator",
},
{
short: "Zp",
full: "Paragraph_Separator",
},
{
short: "Cc",
full: "Control",
},
{
short: "Cf",
full: "Format",
},
{
short: "Cs",
full: "Surrogate",
},
{
short: "Co",
full: "Private_Use",
},
{
short: "Cn",
full: "Unassigned",
},
];
const derivedCategories = [
{
short: "LC",
full: "Cased_Letter",
includes: ["Lu", "Ll", "Lt"],
},
{
short: "L",
full: "Letter",
includes: ["Lu", "Ll", "Lt", "Lm", "Lo"],
},
{
short: "M",
full: "Mark",
includes: ["Mn", "Mc", "Me"],
},
{
short: "N",
full: "Number",
includes: ["Nd", "Nl", "No"],
},
{
short: "P",
full: "Punctuation",
includes: ["Pc", "Pd", "Ps", "Pe", "Pi", "Pf", "Po"],
},
{
short: "S",
full: "Symbol",
includes: ["Sm", "Sc", "Sk", "So"],
},
{
short: "Z",
full: "Separator",
includes: ["Zs", "Zl", "Zp"],
},
{
short: "C",
full: "Other",
includes: ["Cc", "Cf", "Cs", "Co", "Cn"],
},
];
// Populated by the script
const characterCategories = {};
for(let category of namedCategories){
characterCategories[category.short] = {
shortName: category.short,
fullName: category.full,
fullCharacterList: [],
singleCharacters: [],
characterRanges: [],
derivedFrom: null,
};
}
for(let category of derivedCategories){
characterCategories[category.short] = {
shortName: category.short,
fullName: category.full,
fullCharacterList: [],
singleCharacters: [],
characterRanges: [],
derivedFrom: category.includes,
};
}
// Add a single character
function addCharacter(codePoint, category, derivedOk){
const cat = characterCategories[category];
if(cat.derivedFrom && !derivedOk){
throw new Error("Invalid category: " + category);
}
const singles = cat.singleCharacters;
const ranges = cat.characterRanges;
cat.fullCharacterList.push(codePoint);
if(ranges.length && ranges[ranges.length - 1][1] === codePoint - 1){
ranges[ranges.length - 1][1] = codePoint;
}else if(singles.length && singles[singles.length - 1] === codePoint - 1){
ranges.push([singles.pop(), codePoint]);
}else{
singles.push(codePoint);
}
}
// Parse the full data file
function parseUnicodeData(data){
let parts = [""];
let lineNumber = 1;
for(let i = 0; i < data.length; i++){
const ch = data[i];
if(ch === ";" && parts.length < 3){
parts.push("");
}else if(ch === ";"){
const codePoint = parseInt(parts[0], 16);
const category = parts[2];
addCharacter(codePoint, category, false);
while(i < data.length && data[i] !== "\n") i++;
parts = [""];
lineNumber++;
if(lineNumber % 5000 === 0){
console.log("On line " + lineNumber + " of about 32,000...");
}
}else{
parts[parts.length - 1] += ch;
}
}
}
function addDerivedCategories(){
for(let derived of derivedCategories){
const fullCharacterList = [];
for(let included of derived.includes){
const categoryObject = characterCategories[included];
if(!categoryObject || categoryObject.includes){
throw new Error("Invalid category: " + included);
}
fullCharacterList.push(
...categoryObject.fullCharacterList
);
}
fullCharacterList.sort((a, b) => {
if(a < b) return -1;
else if(a > b) return +1;
else return 0;
});
fullCharacterList.forEach(
ch => addCharacter(ch, derived.short, true)
);
}
}
function getCategoryList(){
const list = [];
for(let key in characterCategories){
list.push(characterCategories[key]);
}
return list;
}
// Read https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
console.log("Reading txt data file.");
const data = fs.readFileSync("UnicodeData.txt", "utf-8").toString();
// Parse it
console.log("Parsing txt data file.");
parseUnicodeData(data);
// Add derived categores
console.log("Adding derived categories.");
addDerivedCategories();
// Output json
console.log("Writing json data file.");
fs.writeFileSync("unicode-data.json", JSON.stringify(getCategoryList()));
console.log("All done!");