forked from harfbuzz/harfbuzzjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hbjs.js
315 lines (296 loc) · 10.4 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
function hbjs(instance) {
'use strict';
var exports = instance.exports;
var heapu8 = new Uint8Array(exports.memory.buffer);
var heapu32 = new Uint32Array(exports.memory.buffer);
var heapi32 = new Int32Array(exports.memory.buffer);
var utf8Decoder = new TextDecoder("utf8");
var HB_MEMORY_MODE_WRITABLE = 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
)
}
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; }
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, exports.free_ptr());
return {
ptr: ptr,
/**
* Free the object.
*/
destroy: function () { exports.hb_blob_destroy(ptr); }
};
}
/**
* 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);
return {
ptr: ptr,
/**
* 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;
},
/**
* Free the object.
*/
destroy: function () {
exports.hb_face_destroy(ptr);
},
};
}
var pathBufferSize = 65536; // should be enough for most glyphs
var pathBuffer = exports.malloc(pathBufferSize); // 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);
/**
* Return a glyph as an SVG path string.
* @param {number} glyphId ID of the requested glyph in the font.
**/
function glyphToPath(glyphId) {
var svgLength = exports.hbjs_glyph_svg(ptr, glyphId, pathBuffer, pathBufferSize);
return svgLength > 0 ? utf8Decoder.decode(heapu8.subarray(pathBuffer, pathBuffer + svgLength)) : "";
}
return {
ptr: ptr,
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);
},
/**
* Free the object.
*/
destroy: function () { exports.hb_font_destroy(ptr); }
};
}
var utf8Encoder = new TextEncoder("utf8");
function createCString(text) {
var bytes = utf8Encoder.encode(text);
var ptr = exports.malloc(bytes.byteLength);
heapu8.set(bytes, ptr);
return {
ptr: ptr,
length: bytes.byteLength,
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) {
var str = createCString(text);
exports.hb_buffer_add_utf8(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"
*/
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 = createCString(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 = createCString(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)
* - d5: Y displacement (adjustment in Y dimension when painting this glyph)
**/
json: function (font) {
var length = exports.hb_buffer_get_length(ptr);
var result = [];
var infosPtr32 = exports.hb_buffer_get_glyph_infos(ptr, 0) / 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]
});
}
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: (Currently unused).
*/
function shape(font, buffer, features) {
exports.hb_shape(font.ptr, buffer.ptr, 0, 0);
}
/**
* 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 dictionary of 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 bufLen = 1024 * 1024;
var traceBuffer = exports.malloc(bufLen);
var featurestr = createCString(features);
var traceLen = exports.hbjs_shape_with_trace(font.ptr, buffer.ptr, featurestr.ptr, stop_at, stop_phase, traceBuffer, bufLen);
featurestr.free();
var trace = utf8Decoder.decode(heapu8.subarray(traceBuffer, traceBuffer + traceLen - 1));
exports.free(traceBuffer);
return JSON.parse(trace);
}
return {
createBlob: createBlob,
createFace: createFace,
createFont: createFont,
createBuffer: createBuffer,
shape: shape,
shapeWithTrace: shapeWithTrace
};
};
// Should be replaced with something more reliable
try { module.exports = hbjs; } catch(e) {}