-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
fix: [web3] only ever send RPC socket messages when the socket is open #29195
Merged
steveluscher
merged 1 commit into
solana-labs:master
from
steveluscher:web3-never-send-rpc-socket-messages-unless-socket-is-open
Jan 31, 2023
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 @@ | ||
export {default} from 'rpc-websockets/dist/lib/client/websocket.browser'; |
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 @@ | ||
export {default} from 'rpc-websockets/dist/lib/client/websocket.browser'; |
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,4 @@ | ||
import {ICommonWebSocketFactory} from 'rpc-websockets/dist/lib/client/client.types'; | ||
import WebsocketFactory from 'rpc-websockets/dist/lib/client/websocket'; | ||
|
||
export default WebsocketFactory as ICommonWebSocketFactory; |
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,79 @@ | ||
import RpcWebSocketCommonClient from 'rpc-websockets/dist/lib/client'; | ||
import RpcWebSocketBrowserFactory from 'rpc-websockets/dist/lib/client/websocket.browser'; | ||
import { | ||
ICommonWebSocket, | ||
IWSClientAdditionalOptions, | ||
NodeWebSocketType, | ||
NodeWebSocketTypeOptions, | ||
} from 'rpc-websockets/dist/lib/client/client.types'; | ||
|
||
import createRpc from './rpc-websocket-factory'; | ||
|
||
interface IHasReadyState { | ||
readyState: WebSocket['readyState']; | ||
} | ||
|
||
export default class RpcWebSocketClient extends RpcWebSocketCommonClient { | ||
private underlyingSocket: IHasReadyState | undefined; | ||
constructor( | ||
address?: string, | ||
options?: IWSClientAdditionalOptions & NodeWebSocketTypeOptions, | ||
generate_request_id?: ( | ||
method: string, | ||
params: object | Array<any>, | ||
) => number, | ||
) { | ||
const webSocketFactory = (url: string) => { | ||
const rpc = createRpc(url, { | ||
autoconnect: true, | ||
max_reconnects: 5, | ||
reconnect: true, | ||
reconnect_interval: 1000, | ||
...options, | ||
}); | ||
if ('socket' in rpc) { | ||
this.underlyingSocket = ( | ||
rpc as ReturnType<typeof RpcWebSocketBrowserFactory> | ||
).socket; | ||
} else { | ||
this.underlyingSocket = rpc as NodeWebSocketType; | ||
} | ||
return rpc as ICommonWebSocket; | ||
}; | ||
super(webSocketFactory, address, options, generate_request_id); | ||
} | ||
call( | ||
...args: Parameters<RpcWebSocketCommonClient['call']> | ||
): ReturnType<RpcWebSocketCommonClient['call']> { | ||
const readyState = this.underlyingSocket?.readyState; | ||
if (readyState === 1 /* WebSocket.OPEN */) { | ||
return super.call(...args); | ||
} | ||
return Promise.reject( | ||
new Error( | ||
'Tried to call a JSON-RPC method `' + | ||
args[0] + | ||
'` but the socket was not `CONNECTING` or `OPEN` (`readyState` was ' + | ||
readyState + | ||
')', | ||
), | ||
); | ||
} | ||
notify( | ||
...args: Parameters<RpcWebSocketCommonClient['notify']> | ||
): ReturnType<RpcWebSocketCommonClient['notify']> { | ||
const readyState = this.underlyingSocket?.readyState; | ||
if (readyState === 1 /* WebSocket.OPEN */) { | ||
return super.notify(...args); | ||
} | ||
return Promise.reject( | ||
new Error( | ||
'Tried to send a JSON-RPC notification `' + | ||
args[0] + | ||
'` but the socket was not `CONNECTING` or `OPEN` (`readyState` was ' + | ||
readyState + | ||
')', | ||
), | ||
); | ||
} | ||
} |
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We create
RpcWebSocketClient
like this later:it seems that
max_reconnects: Infinity
is a bit misleading here, as it is going to be overwritten by explicitly hardcodedmax_reconnects: 5
in therpc-websocket.ts
file?