-
Notifications
You must be signed in to change notification settings - Fork 0
/
hbjs.js
569 lines (528 loc) · 18.5 KB
/
hbjs.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
function hbjs(Module) {
'use strict';
var exports = Module.wasmExports;
var heapu8 = Module.HEAPU8;
var heapu32 = Module.HEAPU32;
var heapi32 = Module.HEAP32;
var heapf32 = Module.HEAPF32;
var utf8Decoder = new TextDecoder("utf8");
let addFunction = Module.addFunction;
var freeFuncPtr = addFunction(function (ptr) { exports.free(ptr); }, 'vi');
var HB_MEMORY_MODE_WRITABLE = 2;
var HB_SET_VALUE_INVALID = -1;
var HB_BUFFER_CONTENT_TYPE_GLYPHS = 2;
var DONT_STOP = 0;
var GSUB_PHASE = 1;
var GPOS_PHASE = 2;
function hb_tag(s) {
return (
(s.charCodeAt(0) & 0xFF) << 24 |
(s.charCodeAt(1) & 0xFF) << 16 |
(s.charCodeAt(2) & 0xFF) << 8 |
(s.charCodeAt(3) & 0xFF) << 0
);
}
var HB_BUFFER_SERIALIZE_FORMAT_JSON = hb_tag('JSON');
var HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES = 4;
function _hb_untag(tag) {
return [
String.fromCharCode((tag >> 24) & 0xFF),
String.fromCharCode((tag >> 16) & 0xFF),
String.fromCharCode((tag >> 8) & 0xFF),
String.fromCharCode((tag >> 0) & 0xFF)
].join('');
}
function _buffer_flag(s) {
if (s == "BOT") { return 0x1; }
if (s == "EOT") { return 0x2; }
if (s == "PRESERVE_DEFAULT_IGNORABLES") { return 0x4; }
if (s == "REMOVE_DEFAULT_IGNORABLES") { return 0x8; }
if (s == "DO_NOT_INSERT_DOTTED_CIRCLE") { return 0x10; }
if (s == "PRODUCE_UNSAFE_TO_CONCAT") { return 0x40; }
return 0x0;
}
/**
* Create an object representing a Harfbuzz blob.
* @param {string} blob A blob of binary data (usually the contents of a font file).
**/
function createBlob(blob) {
var blobPtr = exports.malloc(blob.byteLength);
heapu8.set(new Uint8Array(blob), blobPtr);
var ptr = exports.hb_blob_create(blobPtr, blob.byteLength, HB_MEMORY_MODE_WRITABLE, blobPtr, freeFuncPtr);
return {
ptr: ptr,
/**
* Free the object.
*/
destroy: function () { exports.hb_blob_destroy(ptr); }
};
}
/**
* Return the typed array of HarfBuzz set contents.
* @template {typeof Uint8Array | typeof Uint32Array | typeof Int32Array | typeof Float32Array} T
* @param {number} setPtr Pointer of set
* @param {T} arrayClass Typed array class
* @returns {InstanceType<T>} Typed array instance
*/
function typedArrayFromSet(setPtr, arrayClass) {
let heap = heapu8;
if (arrayClass === Uint32Array) {
heap = heapu32;
} else if (arrayClass === Int32Array) {
heap = heapi32;
} else if (arrayClass === Float32Array) {
heap = heapf32;
}
const bytesPerElment = arrayClass.BYTES_PER_ELEMENT;
const setCount = exports.hb_set_get_population(setPtr);
const arrayPtr = exports.malloc(
setCount * bytesPerElment,
);
const arrayOffset = arrayPtr / bytesPerElment;
const array = heap.subarray(
arrayOffset,
arrayOffset + setCount,
);
heap.set(array, arrayOffset);
exports.hb_set_next_many(
setPtr,
HB_SET_VALUE_INVALID,
arrayPtr,
setCount,
);
return array;
}
/**
* Create an object representing a Harfbuzz face.
* @param {object} blob An object returned from `createBlob`.
* @param {number} index The index of the font in the blob. (0 for most files,
* or a 0-indexed font number if the `blob` came form a TTC/OTC file.)
**/
function createFace(blob, index) {
var ptr = exports.hb_face_create(blob.ptr, index);
const upem = exports.hb_face_get_upem(ptr);
return {
ptr: ptr,
upem,
/**
* Return the binary contents of an OpenType table.
* @param {string} table Table name
*/
reference_table: function(table) {
var blob = exports.hb_face_reference_table(ptr, hb_tag(table));
var length = exports.hb_blob_get_length(blob);
if (!length) { return; }
var blobptr = exports.hb_blob_get_data(blob, null);
var table_string = heapu8.subarray(blobptr, blobptr+length);
return table_string;
},
/**
* Return variation axis infos
*/
getAxisInfos: function() {
var axis = exports.malloc(64 * 32);
var c = exports.malloc(4);
heapu32[c / 4] = 64;
exports.hb_ot_var_get_axis_infos(ptr, 0, c, axis);
var result = {};
Array.from({ length: heapu32[c / 4] }).forEach(function (_, i) {
result[_hb_untag(heapu32[axis / 4 + i * 8 + 1])] = {
min: heapf32[axis / 4 + i * 8 + 4],
default: heapf32[axis / 4 + i * 8 + 5],
max: heapf32[axis / 4 + i * 8 + 6]
};
});
exports.free(c);
exports.free(axis);
return result;
},
/**
* Return unicodes the face supports
*/
collectUnicodes: function() {
var unicodeSetPtr = exports.hb_set_create();
exports.hb_face_collect_unicodes(ptr, unicodeSetPtr);
var result = typedArrayFromSet(unicodeSetPtr, Uint32Array);
exports.hb_set_destroy(unicodeSetPtr);
return result;
},
/**
* Free the object.
*/
destroy: function () {
exports.hb_face_destroy(ptr);
},
};
}
var pathBuffer = "";
var nameBufferSize = 256; // should be enough for most glyphs
var nameBuffer = exports.malloc(nameBufferSize); // permanently allocated
/**
* Create an object representing a Harfbuzz font.
* @param {object} blob An object returned from `createFace`.
**/
function createFont(face) {
var ptr = exports.hb_font_create(face.ptr);
var drawFuncsPtr = null;
/**
* Return a glyph as an SVG path string.
* @param {number} glyphId ID of the requested glyph in the font.
**/
function glyphToPath(glyphId) {
if (!drawFuncsPtr) {
var moveTo = function (dfuncs, draw_data, draw_state, to_x, to_y, user_data) {
pathBuffer += `M${to_x},${to_y}`;
}
var lineTo = function (dfuncs, draw_data, draw_state, to_x, to_y, user_data) {
pathBuffer += `L${to_x},${to_y}`;
}
var cubicTo = function (dfuncs, draw_data, draw_state, c1_x, c1_y, c2_x, c2_y, to_x, to_y, user_data) {
pathBuffer += `C${c1_x},${c1_y} ${c2_x},${c2_y} ${to_x},${to_y}`;
}
var quadTo = function (dfuncs, draw_data, draw_state, c_x, c_y, to_x, to_y, user_data) {
pathBuffer += `Q${c_x},${c_y} ${to_x},${to_y}`;
}
var closePath = function (dfuncs, draw_data, draw_state, user_data) {
pathBuffer += 'Z';
}
var moveToPtr = addFunction(moveTo, 'viiiffi');
var lineToPtr = addFunction(lineTo, 'viiiffi');
var cubicToPtr = addFunction(cubicTo, 'viiiffffffi');
var quadToPtr = addFunction(quadTo, 'viiiffffi');
var closePathPtr = addFunction(closePath, 'viiii');
drawFuncsPtr = exports.hb_draw_funcs_create();
exports.hb_draw_funcs_set_move_to_func(drawFuncsPtr, moveToPtr, 0, 0);
exports.hb_draw_funcs_set_line_to_func(drawFuncsPtr, lineToPtr, 0, 0);
exports.hb_draw_funcs_set_cubic_to_func(drawFuncsPtr, cubicToPtr, 0, 0);
exports.hb_draw_funcs_set_quadratic_to_func(drawFuncsPtr, quadToPtr, 0, 0);
exports.hb_draw_funcs_set_close_path_func(drawFuncsPtr, closePathPtr, 0, 0);
}
pathBuffer = "";
exports.hb_font_draw_glyph(ptr, glyphId, drawFuncsPtr, 0);
return pathBuffer;
}
/**
* Return glyph name.
* @param {number} glyphId ID of the requested glyph in the font.
**/
function glyphName(glyphId) {
exports.hb_font_glyph_to_string(
ptr,
glyphId,
nameBuffer,
nameBufferSize
);
var array = heapu8.subarray(nameBuffer, nameBuffer + nameBufferSize);
return utf8Decoder.decode(array.slice(0, array.indexOf(0)));
}
return {
ptr: ptr,
glyphName: glyphName,
glyphToPath: glyphToPath,
/**
* Return a glyph as a JSON path string
* based on format described on https://svgwg.org/specs/paths/#InterfaceSVGPathSegment
* @param {number} glyphId ID of the requested glyph in the font.
**/
glyphToJson: function (glyphId) {
var path = glyphToPath(glyphId);
return path.replace(/([MLQCZ])/g, '|$1 ').split('|').filter(function (x) { return x.length; }).map(function (x) {
var row = x.split(/[ ,]/g);
return { type: row[0], values: row.slice(1).filter(function (x) { return x.length; }).map(function (x) { return +x; }) };
});
},
/**
* Set the font's scale factor, affecting the position values returned from
* shaping.
* @param {number} xScale Units to scale in the X dimension.
* @param {number} yScale Units to scale in the Y dimension.
**/
setScale: function (xScale, yScale) {
exports.hb_font_set_scale(ptr, xScale, yScale);
},
/**
* Set the font's variations.
* @param {object} variations Dictionary of variations to set
**/
setVariations: function (variations) {
var entries = Object.entries(variations);
var vars = exports.malloc(8 * entries.length);
entries.forEach(function (entry, i) {
heapu32[vars / 4 + i * 2 + 0] = hb_tag(entry[0]);
heapf32[vars / 4 + i * 2 + 1] = entry[1];
});
exports.hb_font_set_variations(ptr, vars, entries.length);
exports.free(vars);
},
/**
* Free the object.
*/
destroy: function () { exports.hb_font_destroy(ptr); }
};
}
/**
* Use when you know the input range should be ASCII.
* Faster than encoding to UTF-8
**/
function createAsciiString(text) {
var ptr = exports.malloc(text.length + 1);
for (let i = 0; i < text.length; ++i) {
const char = text.charCodeAt(i);
if (char > 127) throw new Error('Expected ASCII text');
heapu8[ptr + i] = char;
}
heapu8[ptr + text.length] = 0;
return {
ptr: ptr,
length: text.length,
free: function () { exports.free(ptr); }
};
}
function createJsString(text) {
const ptr = exports.malloc(text.length * 2);
const words = new Uint16Array(Module.wasmMemory.buffer, ptr, text.length);
for (let i = 0; i < words.length; ++i) words[i] = text.charCodeAt(i);
return {
ptr: ptr,
length: words.length,
free: function () { exports.free(ptr); }
};
}
/**
* Create an object representing a Harfbuzz buffer.
**/
function createBuffer() {
var ptr = exports.hb_buffer_create();
return {
ptr: ptr,
/**
* Add text to the buffer.
* @param {string} text Text to be added to the buffer.
**/
addText: function (text) {
const str = createJsString(text);
exports.hb_buffer_add_utf16(ptr, str.ptr, str.length, 0, str.length);
str.free();
},
/**
* Set buffer script, language and direction.
*
* This needs to be done before shaping.
**/
guessSegmentProperties: function () {
return exports.hb_buffer_guess_segment_properties(ptr);
},
/**
* Set buffer direction explicitly.
* @param {string} direction: One of "ltr", "rtl", "ttb" or "btt"
*/
setDirection: function (dir) {
exports.hb_buffer_set_direction(ptr, {
ltr: 4,
rtl: 5,
ttb: 6,
btt: 7
}[dir] || 0);
},
/**
* Set buffer flags explicitly.
* @param {string[]} flags: A list of strings which may be either:
* "BOT"
* "EOT"
* "PRESERVE_DEFAULT_IGNORABLES"
* "REMOVE_DEFAULT_IGNORABLES"
* "DO_NOT_INSERT_DOTTED_CIRCLE"
* "PRODUCE_UNSAFE_TO_CONCAT"
*/
setFlags: function (flags) {
var flagValue = 0
flags.forEach(function (s) {
flagValue |= _buffer_flag(s);
})
exports.hb_buffer_set_flags(ptr,flagValue);
},
/**
* Set buffer language explicitly.
* @param {string} language: The buffer language
*/
setLanguage: function (language) {
var str = createAsciiString(language);
exports.hb_buffer_set_language(ptr, exports.hb_language_from_string(str.ptr,-1));
str.free();
},
/**
* Set buffer script explicitly.
* @param {string} script: The buffer script
*/
setScript: function (script) {
var str = createAsciiString(script);
exports.hb_buffer_set_script(ptr, exports.hb_script_from_string(str.ptr,-1));
str.free();
},
/**
* Set the Harfbuzz clustering level.
*
* Affects the cluster values returned from shaping.
* @param {number} level: Clustering level. See the Harfbuzz manual chapter
* on Clusters.
**/
setClusterLevel: function (level) {
exports.hb_buffer_set_cluster_level(ptr, level)
},
/**
* Return the buffer contents as a JSON object.
*
* After shaping, this function will return an array of glyph information
* objects. Each object will have the following attributes:
*
* - g: The glyph ID
* - cl: The cluster ID
* - ax: Advance width (width to advance after this glyph is painted)
* - ay: Advance height (height to advance after this glyph is painted)
* - dx: X displacement (adjustment in X dimension when painting this glyph)
* - dy: Y displacement (adjustment in Y dimension when painting this glyph)
* - flags: Glyph flags like `HB_GLYPH_FLAG_UNSAFE_TO_BREAK` (0x1)
**/
json: function () {
var length = exports.hb_buffer_get_length(ptr);
var result = [];
var infosPtr = exports.hb_buffer_get_glyph_infos(ptr, 0);
var infosPtr32 = infosPtr / 4;
var positionsPtr32 = exports.hb_buffer_get_glyph_positions(ptr, 0) / 4;
var infos = heapu32.subarray(infosPtr32, infosPtr32 + 5 * length);
var positions = heapi32.subarray(positionsPtr32, positionsPtr32 + 5 * length);
for (var i = 0; i < length; ++i) {
result.push({
g: infos[i * 5 + 0],
cl: infos[i * 5 + 2],
ax: positions[i * 5 + 0],
ay: positions[i * 5 + 1],
dx: positions[i * 5 + 2],
dy: positions[i * 5 + 3],
flags: exports.hb_glyph_info_get_glyph_flags(infosPtr + i * 20)
});
}
return result;
},
/**
* Free the object.
*/
destroy: function () { exports.hb_buffer_destroy(ptr); }
};
}
/**
* Shape a buffer with a given font.
*
* This returns nothing, but modifies the buffer.
*
* @param {object} font: A font returned from `createFont`
* @param {object} buffer: A buffer returned from `createBuffer` and suitably
* prepared.
* @param {object} features: A string of comma-separated OpenType features to apply.
*/
function shape(font, buffer, features) {
var featuresPtr = 0;
var featuresLen = 0;
if (features) {
features = features.split(",");
featuresPtr = exports.malloc(16 * features.length);
features.forEach(function (feature, i) {
var str = createAsciiString(feature);
if (exports.hb_feature_from_string(str.ptr, -1, featuresPtr + featuresLen * 16))
featuresLen++;
str.free();
});
}
exports.hb_shape(font.ptr, buffer.ptr, featuresPtr, featuresLen);
if (featuresPtr)
exports.free(featuresPtr);
}
/**
* Shape a buffer with a given font, returning a JSON trace of the shaping process.
*
* This function supports "partial shaping", where the shaping process is
* terminated after a given lookup ID is reached. If the user requests the function
* to terminate shaping after an ID in the GSUB phase, GPOS table lookups will be
* processed as normal.
*
* @param {object} font: A font returned from `createFont`
* @param {object} buffer: A buffer returned from `createBuffer` and suitably
* prepared.
* @param {object} features: A string of comma-separated OpenType features to apply.
* @param {number} stop_at: A lookup ID at which to terminate shaping.
* @param {number} stop_phase: Either 0 (don't terminate shaping), 1 (`stop_at`
refers to a lookup ID in the GSUB table), 2 (`stop_at` refers to a lookup
ID in the GPOS table).
*/
function shapeWithTrace(font, buffer, features, stop_at, stop_phase) {
var trace = [];
var currentPhase = DONT_STOP;
var stopping = false;
var failure = false;
var traceBufLen = 1024 * 1024;
var traceBufPtr = exports.malloc(traceBufLen);
var traceFunc = function (bufferPtr, fontPtr, messagePtr, user_data) {
var message = utf8Decoder.decode(heapu8.subarray(messagePtr, heapu8.indexOf(0, messagePtr)));
if (message.startsWith("start table GSUB"))
currentPhase = GSUB_PHASE;
else if (message.startsWith("start table GPOS"))
currentPhase = GPOS_PHASE;
if (currentPhase != stop_phase)
stopping = false;
if (failure)
return 1;
if (stop_phase != DONT_STOP && currentPhase == stop_phase && message.startsWith("end lookup " + stop_at))
stopping = true;
if (stopping)
return 0;
exports.hb_buffer_serialize_glyphs(
bufferPtr,
0, exports.hb_buffer_get_length(bufferPtr),
traceBufPtr, traceBufLen, 0,
fontPtr,
HB_BUFFER_SERIALIZE_FORMAT_JSON,
HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES);
trace.push({
m: message,
t: JSON.parse(utf8Decoder.decode(heapu8.subarray(traceBufPtr, heapu8.indexOf(0, traceBufPtr)))),
glyphs: exports.hb_buffer_get_content_type(bufferPtr) == HB_BUFFER_CONTENT_TYPE_GLYPHS,
});
return 1;
}
var traceFuncPtr = addFunction(traceFunc, 'iiiii');
exports.hb_buffer_set_message_func(buffer.ptr, traceFuncPtr, 0, 0);
shape(font, buffer, features, 0);
exports.free(traceBufPtr);
return trace;
}
function version() {
var versionPtr = exports.malloc(12);
exports.hb_version(versionPtr, versionPtr + 4, versionPtr + 8);
var version = {
major: heapu32[versionPtr / 4],
minor: heapu32[(versionPtr + 4) / 4],
micro: heapu32[(versionPtr + 8) / 4],
};
exports.free(versionPtr);
return version;
}
function version_string() {
var versionPtr = exports.hb_version_string();
var version = utf8Decoder.decode(heapu8.subarray(versionPtr, heapu8.indexOf(0, versionPtr)));
return version;
}
return {
createBlob: createBlob,
createFace: createFace,
createFont: createFont,
createBuffer: createBuffer,
shape: shape,
shapeWithTrace: shapeWithTrace,
version: version,
version_string: version_string,
};
}
// Should be replaced with something more reliable
try {
module.exports = hbjs;
} catch (e) {}