connectAuto method
Connect auto
Implementation
@override
Future<MqttConnectionStatus?> connectAuto(String server, int port) {
final completer = Completer<MqttConnectionStatus?>();
// Add the port if present
Uri uri;
try {
uri = Uri.parse(server);
} on Exception {
final message =
'MqttBrowserWsConnection::connectAuto - The URI supplied for the WS '
'connection is not valid - $server';
throw MqttNoConnectionException(message);
}
if (uri.scheme != 'ws' && uri.scheme != 'wss') {
final message =
'MqttBrowserWsConnection::connectAuto - The URI supplied for the WS has '
'an incorrect scheme - $server';
throw MqttNoConnectionException(message);
}
uri = uri.replace(port: port);
final uriString = uri.toString();
MqttLogger.log(
'MqttBrowserWsConnection::connectAuto - WS URL is $uriString');
try {
// Connect and save the socket.
client = WebSocket(uriString, protocols);
client.binaryType = 'arraybuffer';
dynamic closeEvents;
dynamic errorEvents;
client.onOpen.listen((e) {
MqttLogger.log(
'MqttBrowserWsConnection::connectAuto - websocket is open');
closeEvents.cancel();
errorEvents.cancel();
_startListening();
return completer.complete();
});
closeEvents = client.onClose.listen((e) {
MqttLogger.log(
'MqttBrowserWsConnection::connectAuto - websocket is closed');
closeEvents.cancel();
errorEvents.cancel();
return completer.complete(MqttConnectionStatus());
});
errorEvents = client.onError.listen((e) {
MqttLogger.log(
'MqttBrowserWsConnection::connectAuto - websocket has errored');
closeEvents.cancel();
errorEvents.cancel();
return completer.complete(MqttConnectionStatus());
});
} on Exception {
final message =
'MqttBrowserWsConnection::connectAuto - The connection to the message broker '
'{$uriString} could not be made.';
throw MqttNoConnectionException(message);
}
MqttLogger.log(
'MqttBrowserWsConnection::connectAuto - connection is waiting');
return completer.future;
}