Created
February 12, 2025 14:14
-
-
Save adriancooney/fde59b501503b9406cb96e134b382278 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface SemaHandle { | |
release(): void; | |
} | |
function createSema(concurrency: number): { acquire(): Promise<SemaHandle> } { | |
let handles: string[] = []; | |
const queue: ((value: unknown) => void)[] = []; | |
function createHandle(): string { | |
const handle = nanoid(); | |
handles.push(handle); | |
return handle; | |
} | |
function destroyHandle(handle: string) { | |
handles = handles.filter((h) => h !== handle); | |
} | |
function acquire(): Promise<string> { | |
return new Promise((resolve, reject) => { | |
if (handles.length < concurrency) { | |
resolve(createHandle()); | |
} else { | |
queue.push(() => { | |
resolve(createHandle()); | |
}); | |
} | |
}); | |
} | |
function release(handle: string) { | |
if (handles.includes(handle)) { | |
destroyHandle(handle); | |
if (queue.length) { | |
const item = queue.shift(); | |
item?.(void 0); | |
} | |
} | |
} | |
return { | |
async acquire() { | |
const handle = await acquire(); | |
return { | |
release: () => release(handle), | |
}; | |
}, | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment