Files: 22cdc4553fb9b622685313bf95bdfd95774424cf / scheduler.js
3610 bytesRaw
1 | const binarySearchInsert = require('binary-search-insert') |
2 | const SortedMap = require('sortedmap') |
3 | const LockMap = require('lockmap') |
4 | |
5 | module.exports = class Scheduler { |
6 | /** |
7 | * The Scheduler manages the run cycle of the containers and figures out which |
8 | * order they should run in |
9 | */ |
10 | constructor () { |
11 | this._waits = [] |
12 | this._running = new Set() |
13 | this._loadingInstances = new LockMap() |
14 | this.instances = new SortedMap(comparator) |
15 | this.systemServices = new Map() |
16 | |
17 | function comparator (a, b) { |
18 | return a.ticks - b.ticks |
19 | } |
20 | } |
21 | |
22 | /** |
23 | * locks the scheduler from clearing waits untill the lock is resolved |
24 | * @param {string} id |
25 | * @return {function} the resolve function to call once it to unlock |
26 | */ |
27 | lock (id) { |
28 | return this._loadingInstances.lock(id) |
29 | } |
30 | |
31 | /** |
32 | * updates an instance with a new tick count |
33 | * @param {Object} instance - a container instance |
34 | */ |
35 | update (instance) { |
36 | this._waits = this._waits.filter(wait => wait.id !== instance.id) |
37 | this._update(instance) |
38 | this._running.add(instance.id) |
39 | this._checkWaits() |
40 | } |
41 | |
42 | _update (instance) { |
43 | this.instances.delete(instance.id) |
44 | this.instances.set(instance.id, instance) |
45 | } |
46 | |
47 | /** |
48 | * returns a container |
49 | * @param {string} id |
50 | * @return {object} |
51 | */ |
52 | getInstance (id) { |
53 | return this.instances.get(id) || this._loadingInstances.getLock(id) || this.systemServices.get(id) |
54 | } |
55 | |
56 | /** |
57 | * deletes an instance from the scheduler |
58 | * @param {string} id - the containers id |
59 | */ |
60 | done (id) { |
61 | this._running.delete(id) |
62 | this.instances.delete(id) |
63 | this._checkWaits() |
64 | } |
65 | |
66 | /** |
67 | * returns a promise that resolves once all containers have reached the given |
68 | * number of ticks |
69 | * @param {interger} ticks - the number of ticks to wait |
70 | * @param {string} id - optional id of the container that is waiting |
71 | * @return {Promise} |
72 | */ |
73 | wait (ticks = Infinity, id) { |
74 | this._running.delete(id) |
75 | return new Promise((resolve, reject) => { |
76 | binarySearchInsert(this._waits, comparator, { |
77 | ticks: ticks, |
78 | resolve: resolve, |
79 | id: id |
80 | }) |
81 | this._checkWaits() |
82 | }) |
83 | |
84 | function comparator (a, b) { |
85 | return a.ticks - b.ticks |
86 | } |
87 | } |
88 | |
89 | /** |
90 | * returns the oldest container's ticks |
91 | * @return {integer} |
92 | */ |
93 | leastNumberOfTicks () { |
94 | const nextValue = this.instances.values().next().value |
95 | return nextValue ? nextValue.ticks : 0 |
96 | } |
97 | |
98 | // checks outstanding waits to see if they can be resolved |
99 | _checkWaits () { |
100 | // if there are no running containers |
101 | if (!this.instances.size) { |
102 | // clear any remanding waits |
103 | this._waits.forEach(wait => wait.resolve()) |
104 | this._waits = [] |
105 | } else { |
106 | // find the old container and see if to can resolve any of the waits |
107 | const least = this.leastNumberOfTicks() |
108 | for (const index in this._waits) { |
109 | const wait = this._waits[index] |
110 | if (wait.ticks <= least) { |
111 | wait.resolve() |
112 | this._running.add(wait.id) |
113 | } else { |
114 | this._waits.splice(0, index) |
115 | break |
116 | } |
117 | } |
118 | if (!this._running.size) { |
119 | // if there are no containers running find the oldest wait and update |
120 | // the oldest containers to it ticks |
121 | const oldest = this._waits[0].ticks |
122 | for (let instance of this.instances) { |
123 | instance = instance[1] |
124 | if (instance.ticks > oldest) { |
125 | break |
126 | } else { |
127 | instance.ticks = oldest |
128 | this._update(instance) |
129 | } |
130 | } |
131 | return this._checkWaits() |
132 | } |
133 | } |
134 | } |
135 | } |
136 |
Built with git-ssb-web