2019-04-05 15:57:59 -04:00
|
|
|
// Benchmark measures time it takes to send a message to a group of workers one
|
|
|
|
// at a time and wait for a response from all of them. Just a general
|
|
|
|
// throughput and consistency benchmark.
|
|
|
|
const data = "HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n";
|
|
|
|
const workerCount = 4;
|
|
|
|
const cmdsPerWorker = 400;
|
|
|
|
|
2021-08-11 10:20:47 -04:00
|
|
|
import {
|
|
|
|
Deferred,
|
|
|
|
deferred,
|
|
|
|
} from "../../../../test_util/std/async/deferred.ts";
|
2019-04-05 15:57:59 -04:00
|
|
|
|
|
|
|
function handleAsyncMsgFromWorker(
|
2020-11-26 11:22:36 -05:00
|
|
|
promiseTable: Map<number, Deferred<string>>,
|
2020-07-14 15:24:17 -04:00
|
|
|
msg: { cmdId: number; data: string },
|
2021-08-05 07:08:58 -04:00
|
|
|
) {
|
2019-04-05 15:57:59 -04:00
|
|
|
const promise = promiseTable.get(msg.cmdId);
|
|
|
|
if (promise === null) {
|
|
|
|
throw new Error(`Failed to find promise: cmdId: ${msg.cmdId}, msg: ${msg}`);
|
|
|
|
}
|
2020-05-21 07:08:43 -04:00
|
|
|
promise?.resolve(data);
|
2019-04-05 15:57:59 -04:00
|
|
|
}
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
async function main() {
|
2020-11-26 11:22:36 -05:00
|
|
|
const workers: Array<[Map<number, Deferred<string>>, Worker]> = [];
|
2019-09-07 12:27:18 -04:00
|
|
|
for (let i = 1; i <= workerCount; ++i) {
|
2020-06-09 08:33:52 -04:00
|
|
|
const worker = new Worker(
|
2021-02-15 08:48:47 -05:00
|
|
|
new URL("bench_worker.ts", import.meta.url).href,
|
2020-07-14 15:24:17 -04:00
|
|
|
{ type: "module" },
|
2020-06-09 08:33:52 -04:00
|
|
|
);
|
2020-11-26 11:22:36 -05:00
|
|
|
const promise = deferred();
|
2021-08-05 07:08:58 -04:00
|
|
|
worker.onmessage = (e) => {
|
2020-01-21 03:49:47 -05:00
|
|
|
if (e.data.cmdId === 0) promise.resolve();
|
|
|
|
};
|
2019-04-05 15:57:59 -04:00
|
|
|
worker.postMessage({ cmdId: 0, action: 2 });
|
|
|
|
await promise;
|
|
|
|
workers.push([new Map(), worker]);
|
|
|
|
}
|
|
|
|
// assign callback function
|
|
|
|
for (const [promiseTable, worker] of workers) {
|
2021-08-05 07:08:58 -04:00
|
|
|
worker.onmessage = (e) => {
|
2019-04-05 15:57:59 -04:00
|
|
|
handleAsyncMsgFromWorker(promiseTable, e.data);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
for (const cmdId of Array(cmdsPerWorker).keys()) {
|
|
|
|
const promises: Array<Promise<string>> = [];
|
|
|
|
for (const [promiseTable, worker] of workers) {
|
2020-11-26 11:22:36 -05:00
|
|
|
const promise = deferred<string>();
|
2019-04-05 15:57:59 -04:00
|
|
|
promiseTable.set(cmdId, promise);
|
|
|
|
worker.postMessage({ cmdId: cmdId, action: 1, data });
|
|
|
|
promises.push(promise);
|
|
|
|
}
|
|
|
|
for (const promise of promises) {
|
|
|
|
await promise;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (const [, worker] of workers) {
|
2020-11-26 11:22:36 -05:00
|
|
|
const promise = deferred();
|
2021-08-05 07:08:58 -04:00
|
|
|
worker.onmessage = (e) => {
|
2020-01-21 03:49:47 -05:00
|
|
|
if (e.data.cmdId === 3) promise.resolve();
|
|
|
|
};
|
2019-04-05 15:57:59 -04:00
|
|
|
worker.postMessage({ action: 3 });
|
2020-01-21 03:49:47 -05:00
|
|
|
await promise;
|
2019-04-05 15:57:59 -04:00
|
|
|
}
|
|
|
|
console.log("Finished!");
|
|
|
|
}
|
|
|
|
|
|
|
|
main();
|