|
| 1 | +import debounce from 'lodash/debounce'; |
| 2 | + |
| 3 | +import { v4 as uuidv4 } from 'uuid'; |
| 4 | + |
| 5 | +import { |
| 6 | + type Queue, |
| 7 | + type PgPrimitive, |
| 8 | + Job, |
| 9 | + Deferred, |
| 10 | +} from '@cardstack/runtime-common'; |
| 11 | + |
| 12 | +export class BrowserQueue implements Queue { |
| 13 | + #isDestroyed = false; |
| 14 | + #hasStarted = false; |
| 15 | + #flush: Promise<void> | undefined; |
| 16 | + |
| 17 | + // no need for "onAfterJob--that's just the Job.done promise |
| 18 | + constructor(private onBeforeJob?: (jobId: string) => void) {} |
| 19 | + |
| 20 | + private jobs: { |
| 21 | + jobId: string; |
| 22 | + category: string; |
| 23 | + arg: PgPrimitive; |
| 24 | + notifier: Deferred<any>; |
| 25 | + }[] = []; |
| 26 | + private categories: Map<string, (arg: any) => Promise<any>> = new Map(); |
| 27 | + |
| 28 | + get isDestroyed() { |
| 29 | + return this.#isDestroyed; |
| 30 | + } |
| 31 | + |
| 32 | + get hasStarted() { |
| 33 | + return this.#hasStarted; |
| 34 | + } |
| 35 | + |
| 36 | + async flush() { |
| 37 | + await this.#flush; |
| 38 | + } |
| 39 | + |
| 40 | + start() { |
| 41 | + this.#hasStarted = true; |
| 42 | + } |
| 43 | + |
| 44 | + register<A, T>(category: string, handler: (arg: A) => Promise<T>) { |
| 45 | + if (!this.#hasStarted) { |
| 46 | + throw new Error(`Cannot register category on unstarted Queue`); |
| 47 | + } |
| 48 | + if (this.isDestroyed) { |
| 49 | + throw new Error(`Cannot register category on a destroyed Queue`); |
| 50 | + } |
| 51 | + this.categories.set(category, handler); |
| 52 | + this.debouncedDrainJobs(); |
| 53 | + } |
| 54 | + |
| 55 | + async publish<T>(category: string, arg: PgPrimitive): Promise<Job<T>> { |
| 56 | + if (!this.#hasStarted) { |
| 57 | + throw new Error(`Cannot publish job on unstarted Queue`); |
| 58 | + } |
| 59 | + if (this.isDestroyed) { |
| 60 | + throw new Error(`Cannot publish job on a destroyed Queue`); |
| 61 | + } |
| 62 | + let jobId = uuidv4(); |
| 63 | + let notifier = new Deferred<T>(); |
| 64 | + let job = new Job(jobId, notifier); |
| 65 | + this.jobs.push({ |
| 66 | + jobId, |
| 67 | + notifier, |
| 68 | + category, |
| 69 | + arg, |
| 70 | + }); |
| 71 | + this.debouncedDrainJobs(); |
| 72 | + return job; |
| 73 | + } |
| 74 | + |
| 75 | + private debouncedDrainJobs = debounce(() => { |
| 76 | + this.drainJobs(); |
| 77 | + }, 250); |
| 78 | + |
| 79 | + private async drainJobs() { |
| 80 | + await this.flush(); |
| 81 | + |
| 82 | + let jobsDrained: () => void; |
| 83 | + this.#flush = new Promise((res) => (jobsDrained = res)); |
| 84 | + let jobs = [...this.jobs]; |
| 85 | + this.jobs = []; |
| 86 | + for (let workItem of jobs) { |
| 87 | + let { jobId, category, notifier, arg } = workItem; |
| 88 | + let handler = this.categories.get(category); |
| 89 | + if (!handler) { |
| 90 | + // no handler for this job, add it back to the queue |
| 91 | + this.jobs.push(workItem); |
| 92 | + continue; |
| 93 | + } |
| 94 | + |
| 95 | + if (this.onBeforeJob) { |
| 96 | + this.onBeforeJob(jobId); |
| 97 | + } |
| 98 | + try { |
| 99 | + notifier.fulfill(await handler(arg)); |
| 100 | + } catch (e: any) { |
| 101 | + notifier.reject(e); |
| 102 | + } |
| 103 | + } |
| 104 | + |
| 105 | + jobsDrained!(); |
| 106 | + } |
| 107 | + |
| 108 | + async destroy() { |
| 109 | + this.#isDestroyed = true; |
| 110 | + await this.flush(); |
| 111 | + } |
| 112 | +} |
0 commit comments