-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a single "message" event listener to dispatch received messages #653
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -227,6 +227,10 @@ interface ThrownValue { | |
type SerializedThrownValue = | ||
| { isError: true; value: Error } | ||
| { isError: false; value: unknown }; | ||
type PendingListenersMap = Map< | ||
string, | ||
(value: WireValue | PromiseLike<WireValue>) => void | ||
>; | ||
|
||
/** | ||
* Internal transfer handler to handle thrown exceptions. | ||
|
@@ -392,7 +396,24 @@ function closeEndPoint(endpoint: Endpoint) { | |
} | ||
|
||
export function wrap<T>(ep: Endpoint, target?: any): Remote<T> { | ||
return createProxy<T>(ep, [], target) as any; | ||
const pendingListeners : PendingListenersMap = new Map(); | ||
|
||
ep.addEventListener("message", function handleMessage(ev: Event) { | ||
const { data } = ev as MessageEvent; | ||
if (!data || !data.id) { | ||
return; | ||
} | ||
const resolver = pendingListeners.get(data.id); | ||
if (resolver) { | ||
try { | ||
resolver(data); | ||
} finally { | ||
pendingListeners.delete(data.id); | ||
} | ||
} | ||
}); | ||
|
||
return createProxy<T>(ep, pendingListeners, [], target) as any; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why does this case There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure. But seems like it's not that easy, quoting the README:
|
||
} | ||
|
||
function throwIfProxyReleased(isReleased: boolean) { | ||
|
@@ -402,7 +423,7 @@ function throwIfProxyReleased(isReleased: boolean) { | |
} | ||
|
||
function releaseEndpoint(ep: Endpoint) { | ||
return requestResponseMessage(ep, { | ||
return requestResponseMessage(ep, new Map(), { | ||
type: MessageType.RELEASE, | ||
}).then(() => { | ||
closeEndPoint(ep); | ||
|
@@ -447,6 +468,7 @@ function unregisterProxy(proxy: object) { | |
|
||
function createProxy<T>( | ||
ep: Endpoint, | ||
pendingListeners: PendingListenersMap, | ||
path: (string | number | symbol)[] = [], | ||
target: object = function () {} | ||
): Remote<T> { | ||
|
@@ -458,20 +480,21 @@ function createProxy<T>( | |
return () => { | ||
unregisterProxy(proxy); | ||
releaseEndpoint(ep); | ||
pendingListeners.clear(); | ||
isProxyReleased = true; | ||
}; | ||
} | ||
if (prop === "then") { | ||
if (path.length === 0) { | ||
return { then: () => proxy }; | ||
} | ||
const r = requestResponseMessage(ep, { | ||
const r = requestResponseMessage(ep, pendingListeners, { | ||
type: MessageType.GET, | ||
path: path.map((p) => p.toString()), | ||
}).then(fromWireValue); | ||
return r.then.bind(r); | ||
} | ||
return createProxy(ep, [...path, prop]); | ||
return createProxy(ep, pendingListeners, [...path, prop]); | ||
}, | ||
set(_target, prop, rawValue) { | ||
throwIfProxyReleased(isProxyReleased); | ||
|
@@ -480,6 +503,7 @@ function createProxy<T>( | |
const [value, transferables] = toWireValue(rawValue); | ||
return requestResponseMessage( | ||
ep, | ||
pendingListeners, | ||
{ | ||
type: MessageType.SET, | ||
path: [...path, prop].map((p) => p.toString()), | ||
|
@@ -492,17 +516,18 @@ function createProxy<T>( | |
throwIfProxyReleased(isProxyReleased); | ||
const last = path[path.length - 1]; | ||
if ((last as any) === createEndpoint) { | ||
return requestResponseMessage(ep, { | ||
return requestResponseMessage(ep, pendingListeners, { | ||
type: MessageType.ENDPOINT, | ||
}).then(fromWireValue); | ||
} | ||
// We just pretend that `bind()` didn’t happen. | ||
if (last === "bind") { | ||
return createProxy(ep, path.slice(0, -1)); | ||
return createProxy(ep, pendingListeners, path.slice(0, -1)); | ||
} | ||
const [argumentList, transferables] = processArguments(rawArgumentList); | ||
return requestResponseMessage( | ||
ep, | ||
pendingListeners, | ||
{ | ||
type: MessageType.APPLY, | ||
path: path.map((p) => p.toString()), | ||
|
@@ -516,6 +541,7 @@ function createProxy<T>( | |
const [argumentList, transferables] = processArguments(rawArgumentList); | ||
return requestResponseMessage( | ||
ep, | ||
pendingListeners, | ||
{ | ||
type: MessageType.CONSTRUCT, | ||
path: path.map((p) => p.toString()), | ||
|
@@ -595,23 +621,18 @@ function fromWireValue(value: WireValue): any { | |
|
||
function requestResponseMessage( | ||
ep: Endpoint, | ||
pendingListeners: PendingListenersMap, | ||
msg: Message, | ||
transfers?: Transferable[] | ||
): Promise<WireValue> { | ||
return new Promise((resolve) => { | ||
const id = generateUUID(); | ||
ep.addEventListener("message", function l(ev: MessageEvent) { | ||
if (!ev.data || !ev.data.id || ev.data.id !== id) { | ||
return; | ||
} | ||
ep.removeEventListener("message", l as any); | ||
resolve(ev.data); | ||
} as any); | ||
pendingListeners.set(id, resolve); | ||
if (ep.start) { | ||
ep.start(); | ||
} | ||
ep.postMessage({ id, ...msg }, transfers); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Random thought for the future - but it would be nice to avoid this spread operator - I don't see any reason for it when we could instead have There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could be something for a separate PR? |
||
}); | ||
}); | ||
} | ||
|
||
function generateUUID(): string { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: flip this around to early return so that early return is the "no more work to do case"