Skip to content
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

Await for a successful connection to the websocket before listening to messages #76

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 11 additions & 5 deletions lib/src/socket.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,13 @@ class PhoenixSocket {
bool get isConnected => _ws != null && _socketState == SocketState.connected;

void _connect(Completer<PhoenixSocket?> completer) async {
if (_ws != null) {
if (_ws != null &&
(_socketState == SocketState.connected ||
_socketState == SocketState.connecting)) {
_logger.warning(
'Calling connect() on already connected or connecting socket.');
completer.complete(this);
return;
}

_shouldReconnect = true;
Expand All @@ -190,6 +193,7 @@ class PhoenixSocket {
_ws = _webSocketChannelFactory != null
? _webSocketChannelFactory!(_mountPoint)
: WebSocketChannel.connect(_mountPoint);

_ws!.stream
.where(_shouldPipeMessage)
.listen(_onSocketData, cancelOnError: true)
Expand All @@ -203,7 +207,13 @@ class PhoenixSocket {
_socketState = SocketState.connecting;

try {
// Wait for the WebSocket to be ready before continuing. In case of a
// failure to connect, the future will complete with an error and will be
// caught.
await _ws!.ready;

_socketState = SocketState.connected;

_logger.finest('Waiting for initial heartbeat roundtrip');
if (await _sendHeartbeat(ignorePreviousHeartbeat: true)) {
_stateStreamController.add(PhoenixSocketOpenEvent());
Expand Down Expand Up @@ -508,10 +518,6 @@ class PhoenixSocket {
void _onSocketData(message) => onSocketDataCallback(message);

void _onSocketError(dynamic error, dynamic stacktrace) {
if (_socketState == SocketState.closing ||
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@matehat
While testing the original change, I noticed that this check was preventing the socket from being reconnected, since _onSocketClosed() is called after it. The scheduling of the socket reconnection happens at that point.

Does it make sense?

_socketState == SocketState.closed) {
return;
}
final socketError = PhoenixSocketErrorEvent(
error: error,
stacktrace: stacktrace,
Expand Down