-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(utils): add web worker rpc (#4)
- Loading branch information
Showing
16 changed files
with
219 additions
and
5 deletions.
There are no files selected for viewing
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,74 @@ | ||
# Utils [Don't waste time on implementing these yourself.] | ||
|
||
We've implemented some utilities that you might find useful. You can find them in the `@mina-js/utils` package. | ||
|
||
## Units | ||
|
||
Utils library provides functions for unit conversion. | ||
|
||
### formatMina | ||
|
||
Formats micro-Mina to human-readable Mina value. | ||
|
||
```typescript twoslash | ||
import { formatMina } from '@mina-js/utils' | ||
|
||
const mina = formatMina(5_000_000_000n) | ||
// -> "5" | ||
``` | ||
|
||
### parseMina | ||
|
||
Parses human-readable Mina value to micro-Mina. | ||
|
||
```typescript twoslash | ||
import { parseMina } from '@mina-js/utils' | ||
|
||
const mina = parseMina('5') | ||
// -> 5_000_000_000n | ||
``` | ||
|
||
### formatUnit | ||
|
||
```typescript twoslash | ||
import { formatUnits } from '@mina-js/utils' | ||
|
||
const formatted = formatUnits(4200000000000n, 10) | ||
// -> "420" | ||
``` | ||
|
||
### parseUnits | ||
|
||
```typescript twoslash | ||
import { parseUnits } from '@mina-js/utils' | ||
|
||
const parsed = parseUnits("420", 10) | ||
// -> 4200000000000n | ||
``` | ||
|
||
## Web Workers | ||
|
||
Proof related computations can be heavy and can block the main thread. To avoid this, you can use Web Workers to run these computations in a separate thread. We've prepared a JSON-RPC protocol to easily connect the dots. | ||
|
||
```typescript twoslash | ||
// @filename: worker.ts | ||
import { createRpcHandler } from "@mina-js/utils"; | ||
|
||
const { messageHandler } = createRpcHandler({ | ||
methods: { | ||
ping: async () => 'pong', | ||
} | ||
}) | ||
|
||
self.onmessage = messageHandler | ||
|
||
// @filename: index.ts | ||
import { createRpc } from "@mina-js/utils"; | ||
|
||
const worker = new Worker(new URL('./worker.ts', import.meta.url)) | ||
const rpc = createRpc({ worker }) | ||
const response = await rpc.request({ | ||
method: 'ping', | ||
params: [], | ||
}) | ||
``` |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
export * from "./types"; | ||
export * from "./validation"; | ||
export { formatMina } from "./src/format-mina"; | ||
export { formatUnits } from "./src/format-units"; | ||
export { parseMina } from "./src/parse-mina"; | ||
export { parseUnits } from "./src/parse-units"; | ||
export { formatMina } from "./format-mina"; | ||
export { formatUnits } from "./format-units"; | ||
export { parseMina } from "./parse-mina"; | ||
export { parseUnits } from "./parse-units"; | ||
export { createRpc, createRpcHandler } from "./worker-rpc"; | ||
export * as Test from "./test/constants"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,9 @@ | ||
import { createRpcHandler } from "../worker-rpc"; | ||
|
||
const { messageHandler } = createRpcHandler({ | ||
methods: { | ||
ping: async () => 'pong', | ||
} | ||
}) | ||
|
||
self.onmessage = messageHandler |
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,32 @@ | ||
import { describe, it, expect, mock, beforeAll } from 'bun:test' | ||
import { createRpc, createRpcHandler } from './worker-rpc' | ||
|
||
describe("Worker RPC", () => { | ||
let worker: Worker | ||
|
||
beforeAll(() => { | ||
worker = new Worker(new URL('./test/worker.ts', import.meta.url)) | ||
}) | ||
|
||
it("creates RPC handler", async () => { | ||
const mockedHandler = mock(async () => "pong") | ||
const { messageHandler } = createRpcHandler({ | ||
methods: { | ||
ping: mockedHandler, | ||
} | ||
}) | ||
await messageHandler(new MessageEvent('message', { data: { method: 'ping', params: [] } })) | ||
expect(mockedHandler).toHaveBeenCalled() | ||
}) | ||
|
||
it("exchanges messages with Web Worker", async () => { | ||
const rpc = createRpc({ worker }) | ||
const response = await rpc.request({ method: 'ping', params: [] }) | ||
expect(response.result).toBe('pong') | ||
}) | ||
|
||
it("calls non-existing method", async () => { | ||
const rpc = createRpc({ worker }) | ||
expect(rpc.request({ method: 'pang', params: [] })).rejects.toThrow() | ||
}) | ||
}) |
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,93 @@ | ||
import { z } from "zod"; | ||
import superjson from "superjson"; | ||
|
||
const DEFAULT_TIMEOUT = 60000; | ||
|
||
export const RequestSchema = z.object({ | ||
method: z.string(), | ||
params: z.array(z.string()).optional(), | ||
}); | ||
|
||
type RequestParams = z.infer<typeof RequestSchema>; | ||
|
||
export const ResponseSchema = z | ||
.object({ | ||
id: z.string(), | ||
result: z.any().optional(), | ||
error: z.string().optional(), | ||
}) | ||
.strict(); | ||
|
||
type Response = z.infer<typeof ResponseSchema>; | ||
|
||
export type RequestFn = (params: RequestParams) => Promise<Response>; | ||
|
||
export const createRpc = ({ | ||
worker, | ||
timeout, | ||
}: { | ||
worker: Worker; | ||
timeout?: number; | ||
}) => { | ||
const request: RequestFn = async ({ method, params }) => { | ||
let resolved = false; | ||
return new Promise((resolve, reject) => { | ||
console.log('>>>M', method, params) | ||
setTimeout(() => { | ||
if (resolved) return; | ||
return reject(new Error("[WorkerRPC] Timeout reached.")); | ||
}, timeout ?? DEFAULT_TIMEOUT); | ||
const responseListener = (event: MessageEvent) => { | ||
resolved = true; | ||
worker.removeEventListener("message", responseListener); | ||
const data = superjson.parse(event.data); | ||
const response = ResponseSchema.parse(data); | ||
if (response.error) | ||
return reject(new Error(`[WorkerRPC] ${response.error}`)); | ||
return resolve(response); | ||
}; | ||
worker.addEventListener("message", responseListener); | ||
worker.postMessage({ method, params }); | ||
}); | ||
}; | ||
return { | ||
request, | ||
}; | ||
}; | ||
|
||
type Method = (params: string[]) => Promise<unknown>; | ||
type MethodsMap = Record<string, Method>; | ||
|
||
const respond = (data: unknown) => postMessage(superjson.stringify(data)) | ||
|
||
export const createRpcHandler = ({ methods }: { methods: MethodsMap }) => { | ||
const methodKeys = Object.keys(methods); | ||
if (methodKeys.length === 0) throw new Error("No methods provided."); | ||
const MethodEnum = z.enum(['error', ...methodKeys]); | ||
const ExtendedRequestSchema = RequestSchema.extend({ | ||
method: MethodEnum, | ||
}).strict(); | ||
const ExtendedResponseSchema = ResponseSchema.extend({ | ||
id: MethodEnum, | ||
}).strict(); | ||
const messageHandler = async (event: MessageEvent) => { | ||
try { | ||
const action = ExtendedRequestSchema.parse(event.data) | ||
const callable = methods[action.method] | ||
if (!callable) throw new Error(`Method "${action.method}" not found.`); | ||
const result = await callable(action.params ?? []); | ||
const parsedResult = ExtendedResponseSchema.parse({ | ||
id: action.method, | ||
result, | ||
}); | ||
return respond(parsedResult); | ||
// biome-ignore lint/suspicious/noExplicitAny: Error handling | ||
} catch (error: any) { | ||
return respond(ExtendedResponseSchema.parse({ | ||
id: 'error', | ||
error: `[WorkerRPC] ${error.message}`, | ||
})); | ||
} | ||
}; | ||
return { messageHandler }; | ||
}; |