connectAuto method

  1. @override
Future<MqttClientConnectionStatus?> connectAuto(
  1. String server,
  2. int port
)
override

Connect Auto

Implementation

@override
Future<MqttClientConnectionStatus?> connectAuto(String server, int port) {
  final completer = Completer<MqttClientConnectionStatus?>();
  MqttLogger.log('MqttWs2Connection::connectAuto - entered');
  Uri uri;
  try {
    uri = Uri.parse(server);
  } on Exception {
    final message =
        'MqttWsConnection::connectAuto - The URI supplied for the WS2 connection '
        'is not valid - $server';
    throw NoConnectionException(message);
  }
  if (uri.scheme != 'wss') {
    final message =
        'MqttWsConnection::connectAuto - The URI supplied for the WS2 has an '
        'incorrect scheme - $server';
    throw NoConnectionException(message);
  }
  uri = uri.replace(port: port);

  final uriString = uri.toString();
  MqttLogger.log(
      'MqttWs2Connection::connectAuto - WS URL is $uriString, protocols are $protocols');

  try {
    SecureSocket.connect(uri.host, uri.port, context: context).then((socket) {
      MqttLogger.log('MqttWs2Connection::connectAuto - securing socket');
      _performWSHandshake(socket, uri).then((_) {
        client = WebSocket.fromUpgradedSocket(
            _DetachedSocket(
                socket, _subscription as StreamSubscription<Uint8List>?),
            serverSide: false);
        MqttLogger.log('MqttWs2Connection::connectAuto - start listening');
        _startListening();
        completer.complete();
      }).catchError((e) {
        onError(e);
        completer.completeError(e);
      });
    });
  } on SocketException catch (e) {
    final message =
        'MqttWs2Connection::connectAuto - The connection to the message broker '
        '{$server}:{$port} could not be made. Error is ${e.toString()}';
    completer.completeError(e);
    throw NoConnectionException(message);
  } on HandshakeException catch (e) {
    final message =
        'MqttWs2Connection::connectAuto - Handshake exception to the message broker '
        '{$server}:{$port}. Error is ${e.toString()}';
    completer.completeError(e);
    throw NoConnectionException(message);
  } on TlsException catch (e) {
    final message =
        'MqttWs2Connection::connectAuto - TLS exception raised on secure connection. '
        'Error is ${e.toString()}';
    throw NoConnectionException(message);
  }
  return completer.future;
}