-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thread.js
274 lines (235 loc) · 7.27 KB
/
Thread.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
export class SimpleThread {
static #taskData = [];
static #taskId = 1;
constructor(defaultFunc = () => {}) {
if (defaultFunc instanceof Function) {
this.#addTask(defaultFunc);
} else {
this.#addTask(() => {});
}
}
#addTask(func) {
const code = func.toString();
const workerURL = URL.createObjectURL(new Blob([code], { type: 'application/javascript' }));
const worker = new SharedWorker(workerURL);
const id = SimpleThread.#taskId++;
const data = {
id: id,
code: code,
workerURL: workerURL,
worker: worker,
startingTime: new Date(),
endingTime: null,
status: null,
handler: null,
};
SimpleThread.#taskData.push(data);
worker.port.onmessage = (event) => {
const task = SimpleThread.#taskData.find((task) => task.worker === worker);
if (task && task.handler) {
task.handler(event.data);
}
};
}
get onmessage() {
const task = SimpleThread.#taskData.find((task) => task.id === this.id);
return task ? task.handler : null;
}
set onmessage(handler) {
const task = SimpleThread.#taskData.find((task) => task.id === this.id);
if (task) {
task.handler = handler;
}
}
end() {
const task = SimpleThread.#taskData.find((task) => task.id === this.id);
if (task) {
task.worker.port.postMessage('close');
task.worker.port.close();
URL.revokeObjectURL(task.workerURL);
task.endingTime = new Date();
task.status = 'ended';
}
}
postMessage(message) {
const task = SimpleThread.#taskData.find((task) => task.id === this.id);
if (task) {
task.worker.port.postMessage(message);
}
}
async getResults() {
const task = SimpleThread.#taskData.find((task) => task.id === this.id);
if (task && task.status === null) {
return new Promise((resolve, reject) => {
task.handler = (result) => {
resolve(result);
};
});
}
throw new Error('Resultados no disponibles');
}
static unitaryTest() {
const thread1 = new SimpleThread(() => {
let result = 0;
for (let i = 0; i < 1000000000; i++) {
result += i;
}
this.postMessage(result);
});
const thread2 = new SimpleThread(() => {
let result = 0;
for (let i = 1000000000; i < 2000000000; i++) {
result += i;
}
this.postMessage(result);
});
Promise.all([thread1.getResults(), thread2.getResults()]).then((results) => {
const total = results.reduce((acc, val) => acc + val, 0);
console.log(total);
thread1.end();
thread2.end();
}).catch((error) => {
console.error(error);
thread1.end();
thread2.end();
});
}
}
export class PauseableThread {
static #taskData = [];
constructor(defaultFunc = () => {
}) {
if (defaultFunc instanceof Function) {
this.#addTask(defaultFunc);
} else {
this.#addTask(() => {
});
}
}
#addTask(func) {
function autonum(array) {
let id = 1;
while (array.some((task) => task.id === id)) {
id++;
}
return id;
}
const code = func.toString();
const workerURL = URL.createObjectURL(new Blob([code], { type: 'application/javascript' }));
const worker = new SharedWorker(workerURL);
this.id = autonum(PauseableThread.#taskData);
const data = {
id: this.id,
code: code,
workerURL: workerURL,
worker: worker,
generator: null,
startingTime: new Date(),
endingTime: null,
status: 'nuevo',
handler: null,
};
PauseableThread.#taskData.push(data);
worker.port.onmessage = (event) => {
const task = PauseableThread.#taskData.find((task) => task.worker === worker);
if (task && task.handler) {
task.handler(event.data);
}
};
data.generator = func.call({
postMessage: (message) => {
setTimeout(() => {
worker.port.postMessage(message);
}, 0);
},
yield: () => {
return new Promise((resolve) => {
data.generator.resolve = resolve;
});
},
next: (value) => {
setTimeout(() => {
data.generator.resolve(value);
}, 0);
},
});
}
get onmessage() {
const task = PauseableThread.#taskData.find((task) => task.id === this.id);
return task ? task.handler : null;
}
set onmessage(handler) {
const task = PauseableThread.#taskData.find((task) => task.id === this.id);
if (task) {
task.handler = handler;
}
}
end() {
const task = PauseableThread.#taskData.find((task) => task.id === this.id);
if (task) {
task.worker.port.postMessage('close');
task.worker.port.close();
URL.revokeObjectURL(task.workerURL);
task.endingTime = new Date();
task.status = 'ended';
}
}
async getResults() {
const task = PauseableThread.#taskData.find((task) => task.id === this.id);
if (task && task.status === null) {
return new Promise((resolve, reject) => {
task.handler = (result) => {
resolve(result);
};
});
}
return null;
}
async pause() {
const task = PauseableThread.#taskData.find((task) => task.id === this.id);
if (task && task.generator && task.status === 'running') {
task.status = 'paused';
await task.generator.next();
}
}
async resume() {
const task = PauseableThread.#taskData.find((task) => task.id === this.id);
if (task && task.generator && task.status === 'paused') {
task.status = 'running';
await task.generator.next();
}
}
async unitaryTest() {
// Crea una instancia de la clase Thread
const thread = new PauseableThread(function* () {
// Función que se ejecutará en el hilo
let result = 0;
for (let i = 0; i < 1000000000; i++) {
yield;
result += i;
}
this.postMessage(result);
});
// Lanza la tarea y espera un segundo
const promise1 = thread.getResults();
await new Promise((resolve) => setTimeout(resolve, 1000));
// Pausa la tarea y espera otro segundo
await thread.pause();
await new Promise((resolve) => setTimeout(resolve, 1000));
// Reanuda la tarea y espera a que termine
await thread.resume();
const result = await promise1;
console.log(result); // Output: 499999999500000000
thread.end();
}
}
/*
Los estados típicos comunes en un hilo, proceso o tarea son los siguientes:
Nuevo: el hilo, proceso o tarea ha sido creado pero aún no se ha iniciado su ejecución.
Listo: el hilo, proceso o tarea está listo para ejecutarse pero aún no ha sido seleccionado por el sistema operativo para su ejecución.
En ejecución: el hilo, proceso o tarea está siendo ejecutado por el sistema operativo.
Bloqueado: el hilo, proceso o tarea está esperando que se complete una operación de entrada/salida o que se libere algún recurso que está siendo utilizado por otro hilo, proceso o tarea.
En espera: el hilo, proceso o tarea está esperando a que se cumpla una condición específica antes de continuar su ejecución.
Terminado: el hilo, proceso o tarea ha finalizado su ejecución de manera normal o anormal.
Suspendido: el hilo, proceso o tarea ha sido detenido temporalmente y su ejecución se reanudará en un momento posterior.
*/