-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.ts
750 lines (719 loc) · 29.6 KB
/
index.ts
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
import { SwiftClosureDeallocator } from "./closure-heap.js";
import {
LibraryFeatures,
ExportedFunctions,
ref,
pointer,
TypedArray,
ImportedFunctions,
MAIN_THREAD_TID,
} from "./types.js";
import * as JSValue from "./js-value.js";
import { Memory } from "./memory.js";
import { deserializeError, MainToWorkerMessage, MessageBroker, ResponseMessage, ITCInterface, serializeError, SwiftRuntimeThreadChannel, WorkerToMainMessage } from "./itc.js";
import { decodeObjectRefs } from "./js-value.js";
export type SwiftRuntimeOptions = {
/**
* If `true`, the memory space of the WebAssembly instance can be shared
* between the main thread and the worker thread.
*/
sharedMemory?: boolean;
/**
* The thread channel is a set of functions that are used to communicate
* between the main thread and the worker thread.
*/
threadChannel?: SwiftRuntimeThreadChannel;
};
export class SwiftRuntime {
private _instance: WebAssembly.Instance | null;
private _memory: Memory | null;
private _closureDeallocator: SwiftClosureDeallocator | null;
private options: SwiftRuntimeOptions;
private version: number = 708;
private textDecoder = new TextDecoder("utf-8");
private textEncoder = new TextEncoder(); // Only support utf-8
/** The thread ID of the current thread. */
private tid: number | null;
constructor(options?: SwiftRuntimeOptions) {
this._instance = null;
this._memory = null;
this._closureDeallocator = null;
this.tid = null;
this.options = options || {};
}
setInstance(instance: WebAssembly.Instance) {
this._instance = instance;
if (typeof (this.exports as any)._start === "function") {
throw new Error(
`JavaScriptKit supports only WASI reactor ABI.
Please make sure you are building with:
-Xswiftc -Xclang-linker -Xswiftc -mexec-model=reactor
`
);
}
if (this.exports.swjs_library_version() != this.version) {
throw new Error(
`The versions of JavaScriptKit are incompatible.
WebAssembly runtime ${this.exports.swjs_library_version()} != JS runtime ${
this.version
}`
);
}
}
main() {
const instance = this.instance;
try {
if (typeof instance.exports.main === "function") {
instance.exports.main();
} else if (
typeof instance.exports.__main_argc_argv === "function"
) {
// Swift 6.0 and later use `__main_argc_argv` instead of `main`.
instance.exports.__main_argc_argv(0, 0);
}
} catch (error) {
if (error instanceof UnsafeEventLoopYield) {
// Ignore the error
return;
}
// Rethrow other errors
throw error;
}
}
/**
* Start a new thread with the given `tid` and `startArg`, which
* is forwarded to the `wasi_thread_start` function.
* This function is expected to be called from the spawned Web Worker thread.
*/
startThread(tid: number, startArg: number) {
this.tid = tid;
const instance = this.instance;
try {
if (typeof instance.exports.wasi_thread_start === "function") {
instance.exports.wasi_thread_start(tid, startArg);
} else {
throw new Error(
`The WebAssembly module is not built for wasm32-unknown-wasip1-threads target.`
);
}
} catch (error) {
if (error instanceof UnsafeEventLoopYield) {
// Ignore the error
return;
}
// Rethrow other errors
throw error;
}
}
private get instance() {
if (!this._instance)
throw new Error("WebAssembly instance is not set yet");
return this._instance;
}
private get exports() {
return this.instance.exports as any as ExportedFunctions;
}
private get memory() {
if (!this._memory) {
this._memory = new Memory(this.instance.exports);
}
return this._memory;
}
private get closureDeallocator(): SwiftClosureDeallocator | null {
if (this._closureDeallocator) return this._closureDeallocator;
const features = this.exports.swjs_library_features();
const librarySupportsWeakRef =
(features & LibraryFeatures.WeakRefs) != 0;
if (librarySupportsWeakRef) {
this._closureDeallocator = new SwiftClosureDeallocator(
this.exports
);
}
return this._closureDeallocator;
}
private callHostFunction(
host_func_id: number,
line: number,
file: string,
args: any[]
) {
const argc = args.length;
const argv = this.exports.swjs_prepare_host_function_call(argc);
const memory = this.memory;
for (let index = 0; index < args.length; index++) {
const argument = args[index];
const base = argv + 16 * index;
JSValue.write(argument, base, base + 4, base + 8, false, memory);
}
let output: any;
// This ref is released by the swjs_call_host_function implementation
const callback_func_ref = memory.retain((result: any) => {
output = result;
});
const alreadyReleased = this.exports.swjs_call_host_function(
host_func_id,
argv,
argc,
callback_func_ref
);
if (alreadyReleased) {
throw new Error(
`The JSClosure has been already released by Swift side. The closure is created at ${file}:${line}`
);
}
this.exports.swjs_cleanup_host_function_call(argv);
return output;
}
/** @deprecated Use `wasmImports` instead */
importObjects = () => this.wasmImports;
get wasmImports(): ImportedFunctions {
let broker: MessageBroker | null = null;
const getMessageBroker = (threadChannel: SwiftRuntimeThreadChannel) => {
if (broker) return broker;
const itcInterface = new ITCInterface(this.memory);
const newBroker = new MessageBroker(this.tid ?? -1, threadChannel, {
onRequest: (message) => {
let returnValue: ResponseMessage["data"]["response"];
try {
// @ts-ignore
const result = itcInterface[message.data.request.method](...message.data.request.parameters);
returnValue = { ok: true, value: result };
} catch (error) {
returnValue = { ok: false, error: serializeError(error) };
}
const responseMessage: ResponseMessage = {
type: "response",
data: {
sourceTid: message.data.sourceTid,
context: message.data.context,
response: returnValue,
},
}
try {
newBroker.reply(responseMessage);
} catch (error) {
responseMessage.data.response = {
ok: false,
error: serializeError(new TypeError(`Failed to serialize message: ${error}`))
};
newBroker.reply(responseMessage);
}
},
onResponse: (message) => {
if (message.data.response.ok) {
const object = this.memory.retain(message.data.response.value.object);
this.exports.swjs_receive_response(object, message.data.context);
} else {
const error = deserializeError(message.data.response.error);
const errorObject = this.memory.retain(error);
this.exports.swjs_receive_error(errorObject, message.data.context);
}
}
})
broker = newBroker;
return newBroker;
}
return {
swjs_set_prop: (
ref: ref,
name: ref,
kind: JSValue.Kind,
payload1: number,
payload2: number
) => {
const memory = this.memory;
const obj = memory.getObject(ref);
const key = memory.getObject(name);
const value = JSValue.decode(kind, payload1, payload2, memory);
obj[key] = value;
},
swjs_get_prop: (
ref: ref,
name: ref,
payload1_ptr: pointer,
payload2_ptr: pointer
) => {
const memory = this.memory;
const obj = memory.getObject(ref);
const key = memory.getObject(name);
const result = obj[key];
return JSValue.writeAndReturnKindBits(
result,
payload1_ptr,
payload2_ptr,
false,
memory
);
},
swjs_set_subscript: (
ref: ref,
index: number,
kind: JSValue.Kind,
payload1: number,
payload2: number
) => {
const memory = this.memory;
const obj = memory.getObject(ref);
const value = JSValue.decode(kind, payload1, payload2, memory);
obj[index] = value;
},
swjs_get_subscript: (
ref: ref,
index: number,
payload1_ptr: pointer,
payload2_ptr: pointer
) => {
const obj = this.memory.getObject(ref);
const result = obj[index];
return JSValue.writeAndReturnKindBits(
result,
payload1_ptr,
payload2_ptr,
false,
this.memory
);
},
swjs_encode_string: (ref: ref, bytes_ptr_result: pointer) => {
const memory = this.memory;
const bytes = this.textEncoder.encode(memory.getObject(ref));
const bytes_ptr = memory.retain(bytes);
memory.writeUint32(bytes_ptr_result, bytes_ptr);
return bytes.length;
},
swjs_decode_string: (
// NOTE: TextDecoder can't decode typed arrays backed by SharedArrayBuffer
this.options.sharedMemory == true
? ((bytes_ptr: pointer, length: number) => {
const memory = this.memory;
const bytes = memory
.bytes()
.slice(bytes_ptr, bytes_ptr + length);
const string = this.textDecoder.decode(bytes);
return memory.retain(string);
})
: ((bytes_ptr: pointer, length: number) => {
const memory = this.memory;
const bytes = memory
.bytes()
.subarray(bytes_ptr, bytes_ptr + length);
const string = this.textDecoder.decode(bytes);
return memory.retain(string);
})
),
swjs_load_string: (ref: ref, buffer: pointer) => {
const memory = this.memory;
const bytes = memory.getObject(ref);
memory.writeBytes(buffer, bytes);
},
swjs_call_function: (
ref: ref,
argv: pointer,
argc: number,
payload1_ptr: pointer,
payload2_ptr: pointer
) => {
const memory = this.memory;
const func = memory.getObject(ref);
let result = undefined;
try {
const args = JSValue.decodeArray(argv, argc, memory);
result = func(...args);
} catch (error) {
return JSValue.writeAndReturnKindBits(
error,
payload1_ptr,
payload2_ptr,
true,
this.memory
);
}
return JSValue.writeAndReturnKindBits(
result,
payload1_ptr,
payload2_ptr,
false,
this.memory
);
},
swjs_call_function_no_catch: (
ref: ref,
argv: pointer,
argc: number,
payload1_ptr: pointer,
payload2_ptr: pointer
) => {
const memory = this.memory;
const func = memory.getObject(ref);
const args = JSValue.decodeArray(argv, argc, memory);
const result = func(...args);
return JSValue.writeAndReturnKindBits(
result,
payload1_ptr,
payload2_ptr,
false,
this.memory
);
},
swjs_call_function_with_this: (
obj_ref: ref,
func_ref: ref,
argv: pointer,
argc: number,
payload1_ptr: pointer,
payload2_ptr: pointer
) => {
const memory = this.memory;
const obj = memory.getObject(obj_ref);
const func = memory.getObject(func_ref);
let result: any;
try {
const args = JSValue.decodeArray(argv, argc, memory);
result = func.apply(obj, args);
} catch (error) {
return JSValue.writeAndReturnKindBits(
error,
payload1_ptr,
payload2_ptr,
true,
this.memory
);
}
return JSValue.writeAndReturnKindBits(
result,
payload1_ptr,
payload2_ptr,
false,
this.memory
);
},
swjs_call_function_with_this_no_catch: (
obj_ref: ref,
func_ref: ref,
argv: pointer,
argc: number,
payload1_ptr: pointer,
payload2_ptr: pointer
) => {
const memory = this.memory;
const obj = memory.getObject(obj_ref);
const func = memory.getObject(func_ref);
let result = undefined;
const args = JSValue.decodeArray(argv, argc, memory);
result = func.apply(obj, args);
return JSValue.writeAndReturnKindBits(
result,
payload1_ptr,
payload2_ptr,
false,
this.memory
);
},
swjs_call_new: (ref: ref, argv: pointer, argc: number) => {
const memory = this.memory;
const constructor = memory.getObject(ref);
const args = JSValue.decodeArray(argv, argc, memory);
const instance = new constructor(...args);
return this.memory.retain(instance);
},
swjs_call_throwing_new: (
ref: ref,
argv: pointer,
argc: number,
exception_kind_ptr: pointer,
exception_payload1_ptr: pointer,
exception_payload2_ptr: pointer
) => {
let memory = this.memory;
const constructor = memory.getObject(ref);
let result: any;
try {
const args = JSValue.decodeArray(argv, argc, memory);
result = new constructor(...args);
} catch (error) {
JSValue.write(
error,
exception_kind_ptr,
exception_payload1_ptr,
exception_payload2_ptr,
true,
this.memory
);
return -1;
}
memory = this.memory;
JSValue.write(
null,
exception_kind_ptr,
exception_payload1_ptr,
exception_payload2_ptr,
false,
memory
);
return memory.retain(result);
},
swjs_instanceof: (obj_ref: ref, constructor_ref: ref) => {
const memory = this.memory;
const obj = memory.getObject(obj_ref);
const constructor = memory.getObject(constructor_ref);
return obj instanceof constructor;
},
swjs_value_equals: (lhs_ref: ref, rhs_ref: ref) => {
const memory = this.memory;
const lhs = memory.getObject(lhs_ref);
const rhs = memory.getObject(rhs_ref);
return lhs == rhs;
},
swjs_create_function: (
host_func_id: number,
line: number,
file: ref
) => {
const fileString = this.memory.getObject(file) as string;
const func = (...args: any[]) =>
this.callHostFunction(host_func_id, line, fileString, args);
const func_ref = this.memory.retain(func);
this.closureDeallocator?.track(func, func_ref);
return func_ref;
},
swjs_create_typed_array: (
constructor_ref: ref,
elementsPtr: pointer,
length: number
) => {
const ArrayType: TypedArray =
this.memory.getObject(constructor_ref);
if (length == 0) {
// The elementsPtr can be unaligned in Swift's Array
// implementation when the array is empty. However,
// TypedArray requires the pointer to be aligned.
// So, we need to create a new empty array without
// using the elementsPtr.
// See https://github.com/swiftwasm/swift/issues/5599
return this.memory.retain(new ArrayType());
}
const array = new ArrayType(
this.memory.rawMemory.buffer,
elementsPtr,
length
);
// Call `.slice()` to copy the memory
return this.memory.retain(array.slice());
},
swjs_load_typed_array: (ref: ref, buffer: pointer) => {
const memory = this.memory;
const typedArray = memory.getObject(ref);
const bytes = new Uint8Array(typedArray.buffer);
memory.writeBytes(buffer, bytes);
},
swjs_release: (ref: ref) => {
this.memory.release(ref);
},
swjs_release_remote: (tid: number, ref: ref) => {
if (!this.options.threadChannel) {
throw new Error("threadChannel is not set in options given to SwiftRuntime. Please set it to release objects on remote threads.");
}
const broker = getMessageBroker(this.options.threadChannel);
broker.request({
type: "request",
data: {
sourceTid: this.tid ?? MAIN_THREAD_TID,
targetTid: tid,
context: 0,
request: {
method: "release",
parameters: [ref],
}
}
})
},
swjs_i64_to_bigint: (value: bigint, signed: number) => {
return this.memory.retain(
signed ? value : BigInt.asUintN(64, value)
);
},
swjs_bigint_to_i64: (ref: ref, signed: number) => {
const object = this.memory.getObject(ref);
if (typeof object !== "bigint") {
throw new Error(`Expected a BigInt, but got ${typeof object}`);
}
if (signed) {
return object;
} else {
if (object < BigInt(0)) {
return BigInt(0);
}
return BigInt.asIntN(64, object);
}
},
swjs_i64_to_bigint_slow: (lower, upper, signed) => {
const value =
BigInt.asUintN(32, BigInt(lower)) +
(BigInt.asUintN(32, BigInt(upper)) << BigInt(32));
return this.memory.retain(
signed ? BigInt.asIntN(64, value) : BigInt.asUintN(64, value)
);
},
swjs_unsafe_event_loop_yield: () => {
throw new UnsafeEventLoopYield();
},
swjs_send_job_to_main_thread: (unowned_job) => {
this.postMessageToMainThread({ type: "job", data: unowned_job });
},
swjs_listen_message_from_main_thread: () => {
const threadChannel = this.options.threadChannel;
if (!(threadChannel && "listenMessageFromMainThread" in threadChannel)) {
throw new Error(
"listenMessageFromMainThread is not set in options given to SwiftRuntime. Please set it to listen to wake events from the main thread."
);
}
const broker = getMessageBroker(threadChannel);
threadChannel.listenMessageFromMainThread((message) => {
switch (message.type) {
case "wake":
this.exports.swjs_wake_worker_thread();
break;
case "request": {
broker.onReceivingRequest(message);
break;
}
case "response": {
broker.onReceivingResponse(message);
break;
}
default:
const unknownMessage: never = message;
throw new Error(`Unknown message type: ${unknownMessage}`);
}
});
},
swjs_wake_up_worker_thread: (tid) => {
this.postMessageToWorkerThread(tid, { type: "wake" });
},
swjs_listen_message_from_worker_thread: (tid) => {
const threadChannel = this.options.threadChannel;
if (!(threadChannel && "listenMessageFromWorkerThread" in threadChannel)) {
throw new Error(
"listenMessageFromWorkerThread is not set in options given to SwiftRuntime. Please set it to listen to jobs from worker threads."
);
}
const broker = getMessageBroker(threadChannel);
threadChannel.listenMessageFromWorkerThread(
tid, (message) => {
switch (message.type) {
case "job":
this.exports.swjs_enqueue_main_job_from_worker(message.data);
break;
case "request": {
broker.onReceivingRequest(message);
break;
}
case "response": {
broker.onReceivingResponse(message);
break;
}
default:
const unknownMessage: never = message;
throw new Error(`Unknown message type: ${unknownMessage}`);
}
},
);
},
swjs_terminate_worker_thread: (tid) => {
const threadChannel = this.options.threadChannel;
if (threadChannel && "terminateWorkerThread" in threadChannel) {
threadChannel.terminateWorkerThread?.(tid);
} // Otherwise, just ignore the termination request
},
swjs_get_worker_thread_id: () => {
// Main thread's tid is always -1
return this.tid || -1;
},
swjs_request_sending_object: (
sending_object: ref,
transferring_objects: pointer,
transferring_objects_count: number,
object_source_tid: number,
sending_context: pointer,
) => {
if (!this.options.threadChannel) {
throw new Error("threadChannel is not set in options given to SwiftRuntime. Please set it to request transferring objects.");
}
const broker = getMessageBroker(this.options.threadChannel);
const memory = this.memory;
const transferringObjects = decodeObjectRefs(transferring_objects, transferring_objects_count, memory);
broker.request({
type: "request",
data: {
sourceTid: this.tid ?? MAIN_THREAD_TID,
targetTid: object_source_tid,
context: sending_context,
request: {
method: "send",
parameters: [sending_object, transferringObjects, sending_context],
}
}
})
},
swjs_request_sending_objects: (
sending_objects: pointer,
sending_objects_count: number,
transferring_objects: pointer,
transferring_objects_count: number,
object_source_tid: number,
sending_context: pointer,
) => {
if (!this.options.threadChannel) {
throw new Error("threadChannel is not set in options given to SwiftRuntime. Please set it to request transferring objects.");
}
const broker = getMessageBroker(this.options.threadChannel);
const memory = this.memory;
const sendingObjects = decodeObjectRefs(sending_objects, sending_objects_count, memory);
const transferringObjects = decodeObjectRefs(transferring_objects, transferring_objects_count, memory);
broker.request({
type: "request",
data: {
sourceTid: this.tid ?? MAIN_THREAD_TID,
targetTid: object_source_tid,
context: sending_context,
request: {
method: "sendObjects",
parameters: [sendingObjects, transferringObjects, sending_context],
}
}
})
},
};
}
private postMessageToMainThread(message: WorkerToMainMessage, transfer: any[] = []) {
const threadChannel = this.options.threadChannel;
if (!(threadChannel && "postMessageToMainThread" in threadChannel)) {
throw new Error(
"postMessageToMainThread is not set in options given to SwiftRuntime. Please set it to send messages to the main thread."
);
}
threadChannel.postMessageToMainThread(message, transfer);
}
private postMessageToWorkerThread(tid: number, message: MainToWorkerMessage, transfer: any[] = []) {
const threadChannel = this.options.threadChannel;
if (!(threadChannel && "postMessageToWorkerThread" in threadChannel)) {
throw new Error(
"postMessageToWorkerThread is not set in options given to SwiftRuntime. Please set it to send messages to worker threads."
);
}
threadChannel.postMessageToWorkerThread(tid, message, transfer);
}
}
/// This error is thrown when yielding event loop control from `swift_task_asyncMainDrainQueue`
/// to JavaScript. This is usually thrown when:
/// - The entry point of the Swift program is `func main() async`
/// - The Swift Concurrency's global executor is hooked by `JavaScriptEventLoop.installGlobalExecutor()`
/// - Calling exported `main` or `__main_argc_argv` function from JavaScript
///
/// This exception must be caught by the caller of the exported function and the caller should
/// catch this exception and just ignore it.
///
/// FAQ: Why this error is thrown?
/// This error is thrown to unwind the call stack of the Swift program and return the control to
/// the JavaScript side. Otherwise, the `swift_task_asyncMainDrainQueue` ends up with `abort()`
/// because the event loop expects `exit()` call before the end of the event loop.
class UnsafeEventLoopYield extends Error {}