-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathprocess_system.ts
More file actions
471 lines (396 loc) · 10.5 KB
/
process_system.ts
File metadata and controls
471 lines (396 loc) · 10.5 KB
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
/* @flow */
'use strict'
import Mailbox from './mailbox'
import Process from './process'
import States from './states'
import Scheduler from './scheduler'
import {PID, Reference, Tuple} from 'erlang-types'
class ProcessSystem {
pids: Map<PID, Process>
mailboxes: Map<PID, Mailbox>
names: Map<any, PID>
links: Map<PID, Set<PID>>
monitors: Map<Reference, {monitor: PID; monitee: PID}>
current_process: Process | null
scheduler: Scheduler
suspended: Map<PID, () => any>
main_process_pid: PID
constructor() {
this.pids = new Map()
this.mailboxes = new Map()
this.names = new Map()
this.links = new Map()
this.monitors = new Map()
const throttle = 5 //ms between scheduled tasks
this.current_process = null
this.scheduler = new Scheduler(throttle)
this.suspended = new Map()
let process_system_scope = this
this.main_process_pid = this.spawn(function*() {
yield process_system_scope.sleep(Symbol.for('Infinity'))
})
this.set_current(this.main_process_pid)
}
static *run(
fun: Function | GeneratorFunction,
args: any[],
context: any = null
) {
if (fun.constructor.name === 'GeneratorFunction') {
return yield* fun.apply(context, args)
} else {
return yield fun.apply(context, args)
}
}
spawn(...args: any[]) {
if (args.length === 1) {
let fun = args[0]
return this.add_proc(fun, [], false, false).pid
} else {
let mod = args[0]
let fun = args[1]
let the_args = args[2]
return this.add_proc(mod[fun], the_args, false, false).pid
}
}
spawn_link(...args: any[]) {
if (args.length === 1) {
let fun = args[0]
return this.add_proc(fun, [], true, false).pid
} else {
let mod = args[0]
let fun = args[1]
let the_args = args[2]
return this.add_proc(mod[fun], the_args, true, false).pid
}
}
link(pid: PID): void {
const currentProcessPid = this.pid()
if (currentProcessPid != null) {
const currentProcessLink = this.links.get(currentProcessPid)
const IncomingProcessLink = this.links.get(pid)
if (currentProcessLink && IncomingProcessLink) {
currentProcessLink.add(pid)
IncomingProcessLink.add(currentProcessPid)
}
}
}
unlink(pid: PID): void {
const currentProcessPid = this.pid()
if (currentProcessPid != null) {
const currentProcessLink = this.links.get(currentProcessPid)
const IncomingProcessLink = this.links.get(pid)
if (currentProcessLink && IncomingProcessLink) {
currentProcessLink.delete(pid)
IncomingProcessLink.delete(currentProcessPid)
}
}
}
spawn_monitor(...args: any[]) {
if (args.length === 1) {
let fun = args[0]
let process = this.add_proc(fun, [], false, true)
return [process.pid, process.monitors[0]]
} else {
let mod = args[0]
let fun = args[1]
let the_args = args[2]
let process = this.add_proc(mod[fun], the_args, false, true)
return [process.pid, process.monitors[0]]
}
}
monitor(pid: PID) {
const real_pid = this.pidof(pid)
const ref = this.make_ref()
if (this.currentProcess != null) {
if (real_pid) {
this.monitors.set(ref, {
monitor: this.currentProcess.pid,
monitee: real_pid,
})
const process = this.pids.get(real_pid)
if (process) {
process.monitors.push(ref)
}
return ref
} else {
this.send(
this.currentProcess.pid,
new Tuple('DOWN', ref, pid, real_pid, Symbol.for('noproc'))
)
return ref
}
}
}
demonitor(ref: Reference) {
if (this.monitors.has(ref)) {
this.monitors.delete(ref)
return true
}
return false
}
set_current(id: any) {
let pid = this.pidof(id)
if (pid) {
const next = this.pids.get(pid)
if (next) {
this.current_process = next
if (this.currentProcess) {
this.currentProcess.status = States.RUNNING
}
}
}
}
add_proc(
fun: GeneratorFunction,
args: any[],
linked: boolean,
monitored: boolean
) {
let newproc = new Process(this, fun, args)
this.pids.set(newproc.pid, newproc)
this.mailboxes.set(newproc.pid, newproc.mailbox)
this.links.set(newproc.pid, new Set())
if (linked) {
this.link(newproc.pid)
}
if (monitored) {
this.monitor(newproc.pid)
}
newproc.start()
return newproc
}
remove_proc(pid: PID, exitreason: any) {
this.pids.delete(pid)
this.unregister(pid)
this.scheduler.removePid(pid)
const linkedPids = this.links.get(pid)
if (linkedPids) {
for (let linkpid of linkedPids) {
this.exit(linkpid, exitreason)
const linkedPid = this.links.get(linkpid)
if (linkedPid) {
linkedPid.delete(pid)
}
}
this.links.delete(pid)
}
}
register(name: any, pid: PID) {
if (!this.names.has(name)) {
this.names.set(name, pid)
} else {
throw new Error('Name is already registered to another process')
}
}
whereis(name: any) {
return this.names.has(name) ? this.names.get(name) : null
}
registered() {
return this.names.keys()
}
unregister(pid: PID) {
for (let name of this.names.keys()) {
if (this.names.has(name) && this.names.get(name) === pid) {
this.names.delete(name)
}
}
}
pid(): PID | null {
if (this.currentProcess) {
return this.currentProcess.pid
}
return null
}
pidof(id: any) {
if (id instanceof PID) {
return this.pids.has(id) ? id : null
} else if (id instanceof Process) {
return id.pid
} else {
let pid = this.whereis(id)
if (pid === null)
throw 'Process name not registered: ' + id + ' (' + typeof id + ')'
return pid
}
}
send(id: any, msg: any) {
const pid = this.pidof(id)
if (pid) {
const mailbox = this.mailboxes.get(pid)
if (mailbox) {
mailbox.deliver(msg)
}
if (this.suspended.has(pid)) {
let fun = this.suspended.get(pid)
this.suspended.delete(pid)
if (fun) {
this.schedule(fun)
}
}
}
return msg
}
receive(fun: Function, timeout = 0, timeoutFn: () => boolean = () => true) {
let DateTimeout = null
if (timeout === 0 || timeout === Infinity) {
DateTimeout = null
} else {
DateTimeout = Date.now() + timeout
}
return [States.RECEIVE, fun, DateTimeout, timeoutFn]
}
sleep(duration: number | symbol): [symbol, number | symbol] {
return [States.SLEEP, duration]
}
suspend(fun: () => any): void {
if (this.currentProcess) {
this.currentProcess.status = States.SUSPENDED
this.suspended.set(this.currentProcess.pid, fun)
}
}
delay(fun: () => any, time: number): void {
if (this.currentProcess) {
this.currentProcess.status = States.SLEEPING
if (Number.isInteger(time)) {
this.scheduler.scheduleFuture(this.currentProcess.pid, time, fun)
}
}
}
schedule(fun: () => any, pid?: PID): void {
if (this.currentProcess) {
const the_pid = pid != null ? pid : this.currentProcess.pid
this.scheduler.schedule(the_pid, fun)
}
}
exit(one: PID | any, two?: any): void {
let pid = null
let reason = null
let process = null
if (two) {
pid = one
reason = two
const thePid = this.pidof(pid)
if (thePid) {
process = this.pids.get(thePid)
}
if (process) {
if (
process.is_trapping_exits() ||
reason === States.KILL ||
reason === States.NORMAL
) {
const mailbox = this.mailboxes.get(process.pid)
if (mailbox) {
mailbox.deliver(new Tuple(States.EXIT, this.pid(), reason))
}
} else {
process.signal(reason)
}
}
} else {
if (this.currentProcess) {
pid = this.currentProcess.pid
reason = one
process = this.currentProcess
process.signal(reason)
}
}
if (process) {
for (let ref of process.monitors) {
let mons = this.monitors.get(ref)
if (mons) {
this.send(
mons['monitor'],
new Tuple('DOWN', ref, mons['monitee'], mons['monitee'], reason)
)
}
}
}
}
error(reason: any): void {
if (this.currentProcess) {
this.currentProcess.signal(reason)
}
}
process_flag(...args: any[]): any {
if (args.length == 2) {
const flag = args[0]
const value = args[1]
if (this.currentProcess) {
return this.currentProcess.process_flag(flag, value)
}
} else {
const pid = this.pidof(args[0])
if (pid) {
const flag = args[1]
const value = args[2]
const process = this.pids.get(pid)
if (process) {
return process.process_flag(flag, value)
}
}
}
}
put(key: string, value: any): void {
if (this.currentProcess) {
this.currentProcess.dict.set(key, value)
}
}
get_process_dict(): object {
if (this.currentProcess) {
return this.currentProcess.dict
}
throw new Error('No Current Process')
}
get(key: string, default_value: any = null) {
if (this.currentProcess && key in this.currentProcess.dict) {
return this.currentProcess.dict.get(key)
} else {
return default_value
}
}
get_keys(value: any): string[] {
if (value) {
let keys = []
if (this.currentProcess) {
for (let key of Object.keys(this.currentProcess.dict)) {
if (this.currentProcess.dict.get(key) === value) {
keys.push(key)
}
}
}
return keys
}
if (this.currentProcess) {
return Object.keys(this.currentProcess.dict)
}
throw new Error('No Current Process')
}
erase(key: string): void {
if (this.currentProcess) {
if (key != null && this.currentProcess.dict.has(key)) {
this.currentProcess.dict.delete(key)
} else {
this.currentProcess.dict = new Map()
}
}
}
is_alive(pid: any) {
const real_pid = this.pidof(pid)
return real_pid != null
}
list(): PID[] {
return Array.from(this.pids.keys())
}
make_ref(): Reference {
return new Reference()
}
get currentProcess(): Process | null {
if (this.current_process) {
return this.current_process
}
return null
}
}
export default ProcessSystem