-
Notifications
You must be signed in to change notification settings - Fork 778
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace
semaphore-async-await
with simpler implementation
- Loading branch information
1 parent
e5be76e
commit 85e90bd
Showing
5 changed files
with
84 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Based on https://github.com/jsoendermann/semaphore-async-await/blob/master/src/Semaphore.ts | ||
export class Semaphore { | ||
private permits: number | ||
private promiseResolverQueue: Array<(v: boolean) => void> = [] | ||
|
||
/** | ||
* Creates a semaphore. | ||
* @param permits The number of permits, i.e. strands of execution being allowed | ||
* to run in parallel. | ||
* This number can be initialized with a negative integer. | ||
*/ | ||
constructor(permits: number) { | ||
this.permits = permits | ||
} | ||
|
||
/** | ||
* Returns a promise used to wait for a permit to become available. This method should be awaited on. | ||
* @returns A promise that gets resolved when execution is allowed to proceed. | ||
*/ | ||
public async wait(): Promise<boolean> { | ||
if (this.permits > 0) { | ||
this.permits -= 1 | ||
return Promise.resolve(true) | ||
} | ||
|
||
// If there is no permit available, we return a promise that resolves once the semaphore gets | ||
// signaled enough times that permits is equal to one. | ||
return new Promise<boolean>((resolver) => this.promiseResolverQueue.push(resolver)) | ||
} | ||
|
||
/** | ||
* Increases the number of permits by one. If there are other functions waiting, one of them will | ||
* continue to execute in a future iteration of the event loop. | ||
*/ | ||
public signal(): void { | ||
this.permits += 1 | ||
|
||
if (this.permits > 1 && this.promiseResolverQueue.length > 0) { | ||
// eslint-disable-next-line no-console | ||
console.warn('Semaphore.permits should never be > 0 when there is someone waiting.') | ||
} else if (this.permits === 1 && this.promiseResolverQueue.length > 0) { | ||
// If there is someone else waiting, immediately consume the permit that was released | ||
// at the beginning of this function and let the waiting function resume. | ||
this.permits -= 1 | ||
|
||
const nextResolver = this.promiseResolverQueue.shift() | ||
if (nextResolver) { | ||
nextResolver(true) | ||
} | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Based on https://github.com/jsoendermann/semaphore-async-await/blob/master/__tests__/Semaphore.spec.ts | ||
import * as tape from 'tape' | ||
|
||
import { Semaphore } from '../../src/util/semaphore' | ||
|
||
const wait = (ms: number) => new Promise((r) => setTimeout(r, ms)) | ||
|
||
tape('Semaphore', (t) => { | ||
t.test('should lock', async (st) => { | ||
let global = 0 | ||
const lock = new Semaphore(1) | ||
|
||
const f = async () => { | ||
await lock.wait() | ||
const local = global | ||
await wait(500) | ||
global = local + 1 | ||
lock.signal() | ||
} | ||
|
||
void f() | ||
void f() | ||
await wait(1500) | ||
|
||
st.equal(global, 2) | ||
st.end() | ||
}) | ||
t.end() | ||
}) |