-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethods.js
416 lines (390 loc) · 12.5 KB
/
methods.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
/* @flow */
import type Backing from "backing";
import {$Address, $CanBeEmbedded, $CanContainReferences} from "../../symbols";
/**
* Creates a function which can initialize a new struct, either
* via a config object or by using default (empty) field values.
*/
export function createInitializeStruct (Partial: PartialType<Object>, fields: StructField<any>[]): (backing: Backing, address: float64, input: ?Object) => void {
const defaults = [];
const setValues = fields.map((field, index) => {
const {name, type, offset} = field;
defaults.push(field.default);
if (isValidIdentifier(name)) {
return `
type${index}.initialize(backing, address + ${offset}, (tmp = input.${name}) !== undefined ? tmp : defaults[${index}]());
`;
}
else {
const sanitizedName = JSON.stringify(name);
return `
type${index}.initialize(backing, address + ${offset}, (tmp = input[${sanitizedName}]) !== undefined ? tmp : defaults[${index}]());
`;
}
}).join('');
const setEmpty = fields.map(({name, type, offset}, index) => `
type${index}.initialize(backing, address + ${offset}, defaults[${index}]());
`).join('');
const argNames = ['$Address', 'Partial', 'defaults', ...fields.map((_, index) => `type${index}`)];
const args = [$Address, Partial, defaults, ...fields.map(field => field.type)];
const body = `
"use strict";
return function initializeStruct (backing, address, input) {
if (input == null) {
${setEmpty}
}
else if (input instanceof Partial) {
backing.copy(address, input[$Address], Partial.byteLength);
}
else {
var tmp;
${setValues}
}
};
`;
return (Function(...argNames, body))(...args);
}
/**
* Creates a function which can write a struct, either
* via a config object or by using default (empty) field values.
*/
export function createStoreStruct (Partial: PartialType<Object>, fields: StructField<any>[]): (backing: Backing, address: float64, input: ?Object) => void {
const defaults = [];
const setValues = fields.map((field, index) => {
const {name, type, offset} = field;
defaults.push(field.default);
if (isValidIdentifier(name)) {
return `
type${index}.store(backing, address + ${offset}, (tmp = input.${name}) !== undefined ? tmp : defaults[${index}]);
`;
}
else {
const sanitizedName = JSON.stringify(name);
return `
type${index}.store(backing, address + ${offset}, (tmp = input[${sanitizedName}]) !== undefined ? tmp : defaults[${index}]);
`;
}
}).join('');
const setEmpty = fields.map(({name, type, offset}, index) => `
type${index}.store(backing, address + ${offset}, defaults[${index}]);
`).join('');
const argNames = ['$Address', 'Partial', 'defaults', ...fields.map((_, index) => `type${index}`)];
const args = [$Address, Partial, defaults, ...fields.map(field => field.type)];
const body = `
"use strict";
return function storeStruct (backing, address, input) {
if (input == null) {
${setEmpty}
}
else if (input instanceof Partial) {
backing.copy(address, input[$Address], Partial.byteLength);
}
else {
var tmp;
${setValues}
}
};
`;
return (Function(...argNames, body))(...args);
}
/**
* Create the `.accepts()` method for a list of fields.
*/
export function createAccepts (fields: StructField<any>[]): (input: any) => boolean {
const argNames = ['$Address', ...fields.map((_, index) => `type${index}`)];
const args = [$Address, ...fields.map(field => field.type)];
const body = `
"use strict";
return function accepts (input) {
if (input == null || typeof input !== 'object') {
return false;
}
${fields.map(({name, type, offset}, index) => `
if (!type${index}.accepts(input${isValidIdentifier(name) ? `.${name}` : `[${JSON.stringify(name)}]`})) {
return false;
}
`).join('')}
return true;
};
`;
return (Function(...argNames, body))(...args);
}
/**
* Create the `.toJSON()` method for a list of fields.
*/
export function createToJSON (fields: StructField<any>[]): () => Object {
return Function(`
"use strict";
return {
${fields.map(({name}) => {
if (isValidIdentifier(name)) {
return `${name}: this.${name}`;
}
else {
const sanitizedName = JSON.stringify(name);
return `${sanitizedName}: this[${sanitizedName}]`;
}
}).join(',\n ')}
};`);
}
/**
* Create a function which can clear the given struct fields.
*/
export function createClearStruct (fields: StructField<any>[]): ?(backing: Backing, address: float64) => void {
const clearable = fields.filter(({type}) => typeof type.clear === 'function');
const clearers = clearable.map(field => field.type.clear);
const names = clearable.map((_, index) => `clear_${index}`);
const body = `
"use strict";
return function clearStruct (backing, address) {
${names
.map((name, index) => `${name}(backing, address + ${clearable[index].offset});`)
.join('\n ')}
};
`;
return Function(...names, body)(...clearers);
}
/**
* Create a function which can destroy the given struct fields.
*/
export function createStructDestructor (fields: StructField<any>[]): ?(backing: Backing, address: float64) => void {
const clearable = fields.filter(({type}) => {
/* @flowIssue 252 */
return type[$CanContainReferences] && typeof type.clear === 'function'
});
const clearers = clearable.map(field => field.type);
const names = clearable.map((_, index) => `clearable_${index}`);
const body = `
"use strict";
return function destructor (backing, address) {
${names
.map((name, index) => `${name}.clear(backing, address + ${clearable[index].offset});`)
.join('\n ')}
};
`;
return Function(...names, body)(...clearers);
}
/**
* Create a function which can compare two structs by address.
*/
export function createCompareAddresses (fields: StructField<any>[]): (a: float64, b: float64) => int8 {
const checkAddresses = fields.map(({offset}, index) => {
return `
else if ((tmp = type${index}.compareAddresses(backing, a + ${offset}, b + ${offset})) !== 0) {
return tmp;
}
`;
}).join('');
const argNames: string[] = fields.map((_, index) => `type${index}`);
const args = fields.map(({type}) => type);
const body = `
"use strict";
return function compareAddresses (backing, a, b) {
var tmp;
if (a === b) {
return 0;
}
else if (a === 0) {
return -1;
}
else if (b === 0) {
return 1;
}
${checkAddresses}
else {
return 0;
}
};
`;
return (Function(...argNames, body))(...args);
}
/**
* Create a function which can determine whether two structs are structurally equal.
*/
export function createEqual (fields: StructField<any>[]): (a: Object, b: Object) => boolean {
const checkValues = fields.map(({name, type}, index) => {
if (typeof type.equal !== 'function') {
throw new Error(`Type ${type.name} does not have an equal() method.`);
}
if (isValidIdentifier(name)) {
return `
else if (!type${index}.equal(a.${name}, b.${name})) {
return false;
}
`;
}
else {
const sanitizedName = JSON.stringify(name);
return `
else if (!type${index}.equal(a[${sanitizedName}], b[${sanitizedName}])) {
return false;
}
`;
}
}).join('');
const argNames = fields.map((_, index) => `type${index}`);
const args = fields.map(({type}) => type);
const body = `
"use strict";
return function equal (a, b) {
if (a === b) {
return true;
}
else if (a == null || b == null) {
return false;
}
${checkValues}
else {
return true;
}
};
`;
return ((Function(...argNames, body))(...args): ((a: Object, b: Object) => boolean));
}
/**
* Create a function which can compare two struct instances.
*/
export function createCompareValues (fields: StructField<any>[]): (a: Object, b: Object) => int8 {
const checkValues = fields.map(({name}, index) => {
if (isValidIdentifier(name)) {
return `
else if ((tmp = type${index}.compareValues(a.${name}, b.${name})) !== 0) {
return tmp;
}
`;
}
else {
const sanitizedName = JSON.stringify(name);
return `
else if ((tmp = type${index}.compareValues(a[${sanitizedName}], b[${sanitizedName}])) !== 0) {
return tmp;
}
`;
}
}).join('');
const argNames = fields.map((_, index) => `type${index}`);
const args = fields.map(({type}) => type);
const body = `
"use strict";
return function compareValues (a, b) {
var tmp;
if (a === b) {
return 0;
}
else if (a == null) {
return -1;
}
else if (b == null) {
return 1;
}
${checkValues}
else {
return 0;
}
};
`;
return ((Function(...argNames, body))(...args): ((a: Object, b: Object) => int8));
}
/**
* Create a function which can compare a struct stored at a given address with a given value.
*/
export function createCompareAddressValue (fields: StructField<any>[]): (backing: Backing, address: float64, value: ?Object) => int8 {
const checkAddressValues = fields.map(({name, offset}, index) => {
if (isValidIdentifier(name)) {
return `
else if ((tmp = type${index}.compareAddressValue(backing, address + ${offset}, value.${name})) !== 0) {
return tmp;
}
`;
}
else {
const sanitizedName = JSON.stringify(name);
return `
else if ((tmp = type${index}.compareAddressValue(backing, address, value[${sanitizedName}])) !== 0) {
return tmp;
}
`;
}
}).join('');
const argNames: string[] = fields.map((_, index) => `type${index}`);
const args = fields.map(({type}) => type);
const body = `
"use strict";
return function compareAddressValue (backing, address, value) {
var tmp;
if (value == null || typeof value !== 'object') {
return 1;
}
else if (value[$Address] === address) {
return 0;
}
${checkAddressValues}
else {
return 0;
}
};
`;
return (Function('$Address', ...argNames, body))($Address, ...args);
}
/**
* Create a function which can hash structs with the given fields.
*/
export function createHashStruct (fields: StructField<any>[]): (input: Object) => uint32 {
const checkValues = fields.map(({name, type}, index) => {
if (typeof type.hashValue !== 'function') {
throw new Error(`Type ${type.name} does not have a method called "hashValue".`)
}
if (isValidIdentifier(name)) {
return `
hash ^= type${index}.hashValue(input.${name});
hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24);
`;
}
else {
const sanitizedName = JSON.stringify(name);
return `
hash ^= type${index}.hashValue(input[${sanitizedName}]);
hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24);
`;
}
}).join('');
const argNames = fields.map((_, index) => `type${index}`);
const args = fields.map(({type}) => type);
const body = `
"use strict";
return function hashStruct (input) {
var hash = 0x811c9dc5;
${checkValues}
return hash >>> 0;
};
`;
return (Function(...argNames, body))(...args);
}
/**
* Creates a function which can return random objects with the same shape as the struct.
*/
export function createRandomValue (fields: StructField<any>[]): (() => Object) {
const properties = fields.map(({name}, index) => {
if (isValidIdentifier(name)) {
return ` ${name}: type${index}.randomValue()`;
}
else {
const sanitizedName = JSON.stringify(name);
return ` ${sanitizedName}: type${index}.randomValue()`;
}
}).join(',\n');
const argNames = fields.map((_, index) => `type${index}`);
const args = fields.map(({type}) => type);
const body = `
"use strict";
return function randomValue () {
return new this({
${properties}
});
};
`;
return ((Function(...argNames, body))(...args): (() => Object));
}
export function isValidIdentifier (name: string): boolean {
return /^([A-Za-z_$])([A-Za-z_$0-9]*)$/.test(name);
}