node-ejs-renderer/node_modules/thingies/es2020/mutex.js
2024-06-09 13:55:01 -04:00

28 lines
925 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.mutex = void 0;
const codeMutex_1 = require("./codeMutex");
/**
* Executes only one instance of give code at a time. For parallel calls, it
* returns the result of the ongoing execution.
*/
function mutex(fn, context) {
const isDecorator = !!context;
if (!isDecorator) {
const mut = (0, codeMutex_1.codeMutex)();
return async function (...args) {
return await mut(async () => await fn.call(this, ...args));
};
}
const instances = new WeakMap();
return async function (...args) {
let map = instances.get(this);
if (!map)
instances.set(this, (map = new WeakMap()));
if (!map.has(fn))
map.set(fn, (0, codeMutex_1.codeMutex)());
return await map.get(fn)(async () => await fn.call(this, ...args));
};
}
exports.mutex = mutex;