-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathKernel.js
837 lines (668 loc) · 31.7 KB
/
Kernel.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
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
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
'use strict';
const SOS_MODULE = (()=>{
/// SOS global configuration
const CFG = Object.freeze({
DEBUG: 0,
LOG_PREFIX: '[os]: ',
EXP_MA_WINDOW: 10, // ~86% window, k = 2/(1 + W)
EXP_MA_PRECISION: 3, // number of decimal digits for MA
SCHED_DURATION_K: 1, // weight of process execution time while scheduling by priority
TICK_TRIES_LIMIT: 10 // single thread tries-per-tick limit
});
const // #include
os_utils = require('./os_utils'),
PriorityQueue = os_utils.PriorityQueue;
/// Debug actions
const dbg_do = CFG.DEBUG ? ((f, ...args)=>(f(...args))) : (()=>{});
/// Debug output
const dbg_log = (...args) => dbg_do(console.log, ...args);
/// Utility pack
const utils = {
isGenerator: ((obj) => (
'function' === typeof obj.next && 'function' === typeof obj.throw)),
isGeneratorFunction: ((obj) => {
const ctor = obj.constructor;
return !ctor ? false :
('GeneratorFunction' === ctor.name || 'GeneratorFunction' === ctor.displayName) ? true :
utils.isGenerator(ctor.prototype);
}),
isConvertibleToGF: ((obj) => (
obj && (utils.isGeneratorFunction(obj) || ('function' === typeof obj)))),
generify: ((g) => (
utils.isGeneratorFunction(g) ? g : (function*(...args) { return g(...args) }))),
unrollGenerator: ((f, ...args) => {
const g = utils.isGenerator(f) ? f : utils.generify(f)(...args);
for(let step of g) {}
}),
/// Monotonic mapping R => (0,100), sigmoid(50) == 50
sigmoid: ((x)=>{
const X = x - 50;
return 50*(1 + X/(50 + Math.abs(X)));
}),
sigmoid_r: ((x)=>{
return x >= 50 ? (-2500/(x - 100)) : (100*(x-25)/x);
}),
/// Exponential moving average, ma(new, old)
ema: ((()=>{
const new_k = 2.0/(1.0 + CFG.EXP_MA_WINDOW);
return (new_val, old_val) => +((new_k*(new_val - old_val) + old_val).toFixed(CFG.EXP_MA_PRECISION));
})())
};
/// Workaround for "friend" access (symbol marker)
const _friend = Symbol('_FRIEND_');
const makeFriend = (x) => { x[_friend] = true; return x };
const isFriend = (x) => !!x[_friend];
/// Uses for private fields encapsulating
const _private = Symbol('_PRIVATE_'),
defineProperty = Object.defineProperty;
/// Some utility encapsulation
const Object_keys = Object.keys,
JSON_parse = JSON.parse,
JSON_stringify = JSON.stringify;
/// Common OS errors
class OSError extends Error {
constructor(msg) { super(CFG.LOG_PREFIX + "RUNTIME ERROR: " + msg); } }
/// Critical errors, throwing will cause Kernel reboot
const OSCriticalError = (OSError.OSCriticalError = class OSCriticalError extends OSError {
constructor(msg) { super("KERNEL PANIC: " + msg); } });
/**
* Base class for storage types.
* Allows to control serialization/deserialization and memory access.
*/
class Storage {
constructor(object) {
// Default storage object
this._dflt = object || {};
if(!new.target || !new.target.prototype)
throw new OSCriticalError('Storage{???}: class broken');
const this_proto = new.target.prototype;
const [get, set] = [this_proto.get, this_proto.set];
if(!get || !set)
throw new OSCriticalError(`Storage{${new.target.name}} has no get() & set() accessors`);
const base_proto = Storage.prototype;
const defaultUsed = (get === base_proto.get && set === base_proto.set);
const overwritten = (get !== base_proto.get && set !== base_proto.set);
if(defaultUsed) dbg_log(`WARNING: Storage{${new.target.name}} has default accessors`);
else if(!overwritten)
throw new OSCriticalError(`Storage{${new.target.name}} has incompatible accessors`);
}
get() { return this._dflt; }
set(value) { this._dflt = value; }
}
/**
* ROM: being read at tick begin, being written at tick end. Example:
* get( ) { return JSON.parse(GLOBAL.MEMORY); }
* set(m) { GLOBAL.MEMORY = JSON.stringify(m) }
* Typical usage: persistent storage (process table, states etc.).
*/
Storage.ROM = class ROM extends Storage {};
/**
* RAM: used by Kernel as Heap memory, can be used within several ticks. Example:
* const [hdd, heap] = [rom.get(), ram.get()];
* if(!consistent(hdd, heap))
* <...reinitialize heap...>
* <...kernel execution...>
* rom.set(<...serialized heap...>);
* Typical usage: schedule/runtime holder (constructed processes, caches).
*/
Storage.RAM = class RAM extends Storage {};
/// Resets process underlying states without reconstruction
const initProcess = function(oscfg) {
oscfg = oscfg || {};
if(!isFriend(oscfg))
throw new OSCriticalError('Process must not be constructed explicitly');
const _this = this[_private];
_this._parent = oscfg.parent;
_this._pid = oscfg.pid;
_this._children = (oscfg.children || []).map(pid => pid);
_this._memory = oscfg.memory;
_this._tree = oscfg.tree || (()=>(''));
// System clock sharing
this.clock = oscfg.clock;
this.quota = oscfg.quota;
// Priority sharing
this.priority = oscfg.priority;
};
/// Base class for OS processes
class Process {
constructor() {
const _this = {}; // hidden data
defineProperty(this, _private, { value: _this });
_this._typeName = new.target.name;
}
get parent() { return this[_private]._parent; }
get pid() { return this[_private]._pid; }
get children() { return this[_private]._children; }
get memory() { return this[_private]._memory; }
get label() { return this.memory._label; }
set label(str) { this.memory._label = str + ''; }
get tree() { return this[_private]._tree(); }
/// Default run(), prints process memory
run() {
const typeName = this[_private]._typeName;
const jsonMem = JSON_stringify(this.memory);
console.log(`${typeName}:${this.pid}, memory=${jsonMem}:`);
}
}
/// Base class and namespace of OS'es "system calls".
/// Returning or yielding "new SYSCALL.<TYPE>()" inside Process will cause special actions.
class SYSCALL {}
/// Interrupts process to be continued later this tick, same as "this_thread::yield()".
/// Has no result.
SYSCALL.Yield = class Yield extends SYSCALL {};
/// Finishes execution at current tick and make it sleep for 'ticks' (default: 1).
/// Has no result.
SYSCALL.Sleep = class Sleep extends SYSCALL {
constructor(ticks) { super(); this.ticks = +ticks || 1; }; };
/// Creates new process (will be started next tick).
/// Result: child PID.
SYSCALL.Fork = class Fork extends SYSCALL {
constructor(priority, Type, memory) { super(); this.args = [priority, Type, memory]; }; };
/// Grants access to child process memory.
/// Result: {status: s, memory: m}.
SYSCALL.Inject = class Inject extends SYSCALL {
constructor(pid) { super(); this.cpid = +pid; }; };
/// Kills the current process.
/// Has no result, 'yield' won't return.
SYSCALL.Kill = class Kill extends SYSCALL {};
/// Reboots kernel.
/// Has no result, 'yield' wont return.
SYSCALL.Reboot = class Reboot extends SYSCALL {};
/// Requests for priority changing.
/// Result: newly set priority value.
SYSCALL.Priority = class Priority extends SYSCALL {
constructor(value) { super(); this.new_priority = +value; }; };
/// Kernel entity.
/// Several kernels can be constructed and operated simultaneously.
const Kernel = (()=>{
const drawTree = (table, pid) => {
let out = '';
const drawSubtree = (prefix, pid, end) => {
const row = table[pid];
if(!row) return;
const entry = entryUnpack(row);
const label = entry.memory._label ? ` "${entry.memory._label}"` : '';
const header = (end ? '`-- ' : '|-- ') + `${entry.typeName}:${pid}${label}\n`;
out += prefix;
out += header;
const newPrefix = prefix + (end ? ' ' : '| ');
const children = entry.children.slice(0);
children.sort((a,b)=>(entryUnpack(table[b]).priority - entryUnpack(table[a]).priority));
for(let i = 0; i < children.length; ++i) {
const [childPID, newEnd] = [children[i], i === (children.length - 1)];
drawSubtree(newPrefix, childPID, newEnd);
}
};
drawSubtree('', (pid || 0), true);
return out;
};
/// All processes parent
class Tron extends Process {
run() { dbg_do(()=>{
console.log('/============== TRON ==============\\');
console.log(drawTree(this[_private]._table));
console.log('\\============== ^^^^ ==============/');
});}
}
/// Constructs timer (clock) function for performance measurements
const makeClock = (timeCounter) => (
(typeof timeCounter === 'function' && !isNaN(timeCounter())) ?
timeCounter : (() => (new Date()).getTime()));
/// Constructs computational quota function
const makeQuota = (timeCounter) => (
(typeof timeCounter === 'function' && !isNaN(timeCounter())) ?
timeCounter : (() => (+Infinity)));
/// @returns non-existent PID by process table
const acquireFreePID = (table) => {
for(let pid = 1;; ++pid)
if(!table[pid]) return pid;
};
const entryUnpack = (array) => ({
pid: array[0],
priority: array[1],
typeName: array[2],
memory: array[3],
children: array[4], // children PID list
parent: array[5], // parent PID
_internal: array[6] // statistics, sleep counter etc.
});
const entryPack = (obj) => ([
obj.pid,
obj.priority,
obj.typeName,
obj.memory,
obj.children,
obj.parent,
obj._internal
]);
/// Initializes table + creates Tron if doesn't exists, @returns prepared memory object
const validateROM = function(rom) {
rom.fs || (rom.fs = {}); // TODO: file system
const table = rom.table || (rom.table = {});
if(!table[0]) // Initializing Tron (PID:0)
createProcess.call(this, table, 0, 0, Tron, {}, 0);
else if(entryUnpack(table[0]).typeName !== Tron.name)
throw new OSCriticalError('validateROM: invalid process table');
return rom;
};
/// Adds new entry to table, makes all necessary checks
const createProcess = function(table, pid, priority, Type, memory, parentPID) {
(()=>{
this.registerProcess(Type);
if(table[pid])
throw new OSError(`createProcess: PID already occupied: ${pid}`);
if(isNaN(priority))
throw new OSError(`createProcess: invalid priority: ${priority}`);
})();
priority = +priority;
priority = priority > 100 ? 100 :
priority < 0 ? 0 : Math.floor(priority);
table[pid] = entryPack({
pid: pid,
priority: priority,
typeName: Type.name,
memory: (memory || {}),
children: [],
parent: parentPID,
_internal: {}
});
// Tron is a parent for itself (Dzhigurda!)
const parentEntry = table[parentPID];
if(!!pid && parentEntry)
entryUnpack(parentEntry).children.push(pid);
return true;
};
const killProcess = function(table, pid) {
const row = table[pid];
if(!pid || !row)
throw new OSError(`Process not found to be killed: ${pid}`);
const entry = entryUnpack(row);
const parentPID = +entry.parent;
const parent = entryUnpack(table[parentPID]);
if(parent) {
const remIndex = parent.children.indexOf(pid);
if(remIndex === -1)
throw new OSCriticalError(`Tree error: ${parentPID} <-X ${pid} <-> [...]`);
// Removing from parent child list
parent.children.splice(remIndex, 1);
// Tron reparenting
entryUnpack(table[0]).children.push(...entry.children);
}
// Tron reparenting TODO: ok?
// NOTE: numeric value overriding <row>[5]=<new>
entry.children.forEach((childPID)=>(table[childPID] && (table[childPID][5] = 0)));
delete table[pid];
};
const handleTask = function(table, task) {
const clock = this[_private]._clock;
const entry = task.entry;
const sleep = new SYSCALL.Sleep();
try {
let interrupt = false;
do { // Cycle over "yields" (generator unwinding)
const t = clock();
const result = !(task.yieldArg instanceof Error) ?
task.thread.next (task.yieldArg):
task.thread.throw(task.yieldArg);
task.duration = (task.duration || 0) + (clock() - t);
const ret = result.value || sleep;
delete task.yieldArg;
// SYSCALL processing
if(ret instanceof SYSCALL) {
switch(ret.constructor) {
case SYSCALL.Yield: { // TODO: density?
interrupt = true;
} break;
case SYSCALL.Sleep: {
const sleepDuration = ret.ticks;
if(!isNaN(sleepDuration)) {
if(sleepDuration > 1)
task.wakeUpIn = sleepDuration;
result.done = true;
} else if(!result.done) {
task.yieldArg = new OSError('Sleep: invalid duration');
}
} break;
case SYSCALL.Fork: {
const newPID = acquireFreePID(table);
try {
const ok = createProcess.call(
this, table, newPID, ...ret.args, entry.pid);
task.yieldArg = ok ? newPID :
(new OSError(`Fork: cannot create (PID:${newPID})`));
} catch(err) {
if(!result.done)
task.yieldArg = err;
}
} break;
case SYSCALL.Inject: {
if(!result.done) {
const childPID = +ret.cpid;
if(entry.children.includes(childPID)) {
const childEntry = table[childPID];
task.yieldArg = {
status: (childEntry ? 1 : 0),
memory: (childEntry ? entryUnpack(childEntry).memory : null) };
} else {
task.yieldArg = new OSError('Inject: access denied');
}
}
} break;
case SYSCALL.Kill: {
killProcess.call(this, table, entry.pid);
result.done = true;
} break;
case SYSCALL.Reboot: {
task.reboot = true;
result.done = true;
} break;
case SYSCALL.Priority: {
const desired = ret.new_priority;
if(!isNaN(desired)) {
let priority = +desired;
priority = priority > 100 ? 100 :
priority < 0 ? 0 : Math.floor(priority);
// NOTE: numeric value overriding <row>[1]=<new>
table[entry.pid][1] = priority;
task. yieldArg = priority;
} else {
if(!result.done)
task.yieldArg = new OSError('Priority: invalid value');
}
} break;
default: {
const msg = `Unexpected SYSCALL: ${ret.constructor}`;
task.yieldArg = new OSError(msg);
console.log(msg);
} break;
}
}
task.done = result.done;
interrupt = interrupt || result.done;
} while(!interrupt);
} catch(err) {
task.done = true;
try { // Bulletproof shell
console.log(`Thread ${entry.typeName}:${entry.pid} runtime error: `,
err, err.name, err.message, err.stack);
task.error = err.message + '';
} finally {
task.error = task.error || 'UNKNOWN ERROR';
}
}
};
// => _this._heap
function bootloader() {
const _this = this[_private];
let [hdd, heap] = [_this._ROM.get(), _this._RAM.get()];
if(!hdd || !heap)
throw new OSCriticalError('bootloader: cannot load ROM and/or RAM');
// Current tick == prev + 1
const tick = 1 + (hdd.t || 0);
// Heap updating
heap = (()=>{
// Reset needed
if(isNaN(heap.t) || (tick !== 1 + heap.t) || !heap.ok || !heap.hdd_image) {
dbg_do(console.log, 'heap reset, old =', heap);
_this._RAM.set({});
heap = _this._RAM.get();
if(!heap)
throw new OSCriticalError('bootloader: cannot load RAM');
heap.hdd_image = hdd;
}
// Begin tick
heap.t = +tick;
heap.ok = false;
return heap;
})();
// Creating process table, FS etc.
heap.hdd_image = validateROM.call(this, heap.hdd_image);
_this._heap = heap;
return _this._heap;
}
// => _this._queue, _this._heap.processes
function makeSchedule() {
const _this = this[_private];
const types = _this._types;
const heap = _this._heap;
const table = heap.hdd_image.table;
(()=>{ // New processes creating
const toBorn = _this._toBorn || [];
while(toBorn.length > 0) {
const cfg = toBorn.shift();
if(!cfg) break;
const newPID = acquireFreePID(table);
createProcess.call(this, table, newPID, cfg.priority, cfg.type, cfg.memory, 0);
if(cfg.callback) cfg.callback(newPID);
}
})();
(()=>{ // Processes killing
const toKill = _this._toKill || [];
while(toKill.length > 0) {
const pid = toKill.shift();
if(!pid) continue;
killProcess.call(this, table, pid);
}
})();
const comp = PriorityQueue.keyComp('priority');
const queue = new PriorityQueue(comp);
_this._queue = queue;
const processes = heap.processes || (heap.processes = {});
// All existing PIDs
const pids_list = Object_keys(table);
const effective_priority = (()=>{
const user_avg = (heap.hdd_image.user_dt || 0.001)/pids_list.length;
return (entry) => {
const _internal = entry._internal;
const [raw, dur, skip] = [entry.priority, (_internal.dt || 0), (_internal.skip || 0)];
return raw*skip + CFG.SCHED_DURATION_K*(user_avg - dur)/user_avg;
}
})();
for(let i = 0; i < pids_list.length; ++i) {
const pid = pids_list[i];
const entry = entryUnpack(table[pid]);
const _internal = entry._internal;
// Process is sleeping, continue
if(_internal.wakeAt < heap.t)
continue;
else delete _internal.wakeAt;
// Assuming bad case ("runtime will fail"), mark all tasks skipped
_internal.skip = 1 + (_internal.skip || 0);
// Getting existing cached process OR constructing new one
const process = processes[pid] || (processes[pid] = new (types[entry.typeName] || Process)());
// Updating process internal states
initProcess.call(process, makeFriend({
children: entry.children,
parent: entry.parent,
pid: entry.pid,
memory: entry.memory,
clock: _this._clock,
quota: _this._quota,
priority: entry.priority,
tree: (()=>(drawTree(table, entry.pid)))
}));
// priority = f(priority, duration, skipped)
const priority = effective_priority(entry);
// Creating "thread" coroutine (generator or wrapped ordinary function)
const thread = utils.generify(process.run.bind(process))();
const task = queue.push({
priority: +priority,
process: process,
thread: thread,
entry: entry,
done: false
}); dbg_log('TASK:\n', task);
}
// Share table to Tron
processes[0][_private]._table = table;
}
function executeSchedule() {
const _this = this[_private];
const clock = _this._clock;
const quota = _this._quota;
const queue = _this._queue;
const table = _this._heap.hdd_image.table;
const handler = handleTask.bind(this);
const result = {ok:true, err:{}};
try { do { // Cycle over priority queue tasks
const task = queue.pop();
if(!task) break;
dbg_log('TOP:\n', task);
const now = clock();
const limit = quota();
// There is no CPU left, terminating
if(limit < now) {
console.log(`CPU quota reached (${limit} < ${now}), abort`);
break;
}
const _internal = task.entry._internal;
if(_internal.skip) delete _internal.skip;
// Run thread
handler(table, task);
// Kernel reboot request
if(task.reboot) {
console.log(`Kernel reboot requested by ${task.entry.typeName}:${task.entry.pid}`);
break;
}
// Job isn't done yet
if(!task.done) {
task.tries = 1 + (task.tries || 0);
// Rescheduling
if(task.tries < CFG.TICK_TRIES_LIMIT) {
task.priority = Math.floor(task.priority/2);
queue.push(task);
} else {
const entry = task.entry;
console.log(`thread ${entry.typeName}:${entry.pid} calls limit exceeded`);
}
// Thread finished
} else {
// Sleep counter
if(task.wakeUpIn)
_internal.wakeAt = _this._heap.t + task.wakeUpIn;
// CPU usage statistics
const task_dur = task.duration || 0;
_this._user_dt += task_dur;
_internal.dt = utils.ema(task_dur, _internal.dt || 0);
// TODO: task.error display
}
} while(true); } catch(err) {
try { // Something really bad happens
result.ok = false;
result.err = err || new Error('UNKNOWN ERROR');
console.log(err, err.name, err.message);
} finally {}
}
return result;
}
function hibernate() {
const _this = this[_private];
const heap = _this._heap;
if(!heap)
throw new OSCriticalError('hibernate: heap is broken');
heap.hdd_image.t = heap.t;
_this._ROM.set(heap.hdd_image);
heap.ok = true;
_this._RAM.set(heap);
delete _this._heap;
}
class Kernel {
constructor(cfg) {
const _this = {}; // hidden data
defineProperty(this, _private, { value: _this });
cfg = cfg || {rom:null, ram:null};
if(!(cfg.rom instanceof Storage.ROM && cfg.ram instanceof Storage.RAM))
throw new OSCriticalError('Kernel.constructor: invalid ROM and/or RAM');
cfg.clock = makeClock(cfg.clock);
cfg.quota = makeQuota(cfg.quota);
// Setting up kernel memory devices
_this._ROM = cfg.rom;
_this._RAM = cfg.ram;
// Setting up performance clock and CPU quota
_this._clock = cfg.clock;
_this._quota = cfg.quota;
// Setting up processes constructors list
_this._types = {};
if(cfg.types && Array.isArray(cfg.types))
cfg.types.forEach((Type) => this.registerProcess(Type));
else if(cfg.types) throw new OSError(`Kernel.constructor: invalid types list`);
this.registerProcess(Tron);
dbg_log("KERNEL CONSTRUCTOR:\n", _this);
}
/// Registers given class to be used at current runtime, checks type requirements.
/// @param Type - Process class
registerProcess(Type) {
if(!Type || !(Type.prototype instanceof Process) || !Type.name)
throw new OSError(`registerProcess: invalid Process class: ${Type}`);
const types = this[_private]._types;
const existing = types[Type.name];
if(!existing) types[Type.name] = Type;
else if(existing !== Type)
throw new OSCriticalError(`registerProcess: types collision: has ${existing}, new ${Type}`);
}
execute() {
const _this = this[_private];
const clock = _this._clock;
let real_dt = clock();
_this._user_dt = 0;
// Loading from ROM, preparing and validating RAM
bootloader.call(this);
// Processes constructing, preparing priority queue
makeSchedule.call(this);
// Cycle over process queue
const result = executeSchedule.call(this);
if(result.ok) {
real_dt = clock() - real_dt;
const user_dt = _this._user_dt;
const sys_dt = real_dt - user_dt;
const hdd = _this._heap.hdd_image;
hdd.user_dt = utils.ema(user_dt, hdd.user_dt || 0);
hdd. sys_dt = utils.ema( sys_dt, hdd. sys_dt || 0);
// Saving RAM, writing ROM
hibernate.call(this);
} else { throw result.err; }
}
/// @returns minimal copy of processes table.
/// @param memory - raw object containing "table" property (optional, reads ROM if not present).
/// NOTE: pretty heavy due to JSON.stringify/parse under the hood.
ps(memory) {
memory = memory || (this[_private]._ROM.get() || {});
const table = JSON_parse(JSON_stringify(memory.table || {}));
const result = {};
Object_keys(table).forEach((pid)=>{
const row = table[pid];
const entry = entryUnpack(row);
result[entry.pid] = {
pid: +pid,
priority: +entry.priority,
process: entry.typeName + '',
parent: +entry.parent,
children: entry.children.map(pid => +pid),
label: entry.memory._label + ''
};
});
return result;
}
createProcess(cfg) {
cfg = cfg || {};
cfg.priority = cfg.hasOwnProperty('priority') ? cfg.priority : 50;
const _this = this[_private];
const toBorn = _this._toBorn || (_this._toBorn = []);
toBorn.push(cfg);
}
kill(pid) {
const _this = this[_private];
const toKill = _this._toKill || (_this._toKill = []);
toKill.push(pid);
}
}
return Kernel;
})();
return {
Storage,
Process,
SYSCALL,
Kernel
};
})();
module.exports = SOS_MODULE;