|
- using System;
- using System.Threading.Tasks;
- using MQTTnet.Core.Channel;
- using MQTTnet.Core.Client;
- using MQTTnet.Core.Diagnostics;
- using MQTTnet.Core.Exceptions;
- using MQTTnet.Core.Packets;
- using MQTTnet.Core.Serializer;
-
- namespace MQTTnet.Core.Adapter
- {
- public class MqttChannelCommunicationAdapter : IMqttCommunicationAdapter
- {
- private readonly IMqttCommunicationChannel _channel;
-
- public MqttChannelCommunicationAdapter(IMqttCommunicationChannel channel, IMqttPacketSerializer serializer)
- {
- _channel = channel ?? throw new ArgumentNullException(nameof(channel));
- PacketSerializer = serializer ?? throw new ArgumentNullException(nameof(serializer));
- }
-
- public IMqttPacketSerializer PacketSerializer { get; }
-
- public async Task ConnectAsync(MqttClientOptions options, TimeSpan timeout)
- {
- await ExecuteWithTimeoutAsync(_channel.ConnectAsync(options), timeout).ConfigureAwait(false);
- }
-
- public async Task DisconnectAsync()
- {
- await _channel.DisconnectAsync().ConfigureAwait(false);
- }
-
- public async Task SendPacketAsync(MqttBasePacket packet, TimeSpan timeout)
- {
- MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]");
-
- await ExecuteWithTimeoutAsync(PacketSerializer.SerializeAsync(packet, _channel), timeout).ConfigureAwait(false);
- }
-
- public async Task<MqttBasePacket> ReceivePacketAsync(TimeSpan timeout)
- {
- MqttBasePacket packet;
- if (timeout > TimeSpan.Zero)
- {
- packet = await ExecuteWithTimeoutAsync(PacketSerializer.DeserializeAsync(_channel), timeout).ConfigureAwait(false);
- }
- else
- {
- packet = await PacketSerializer.DeserializeAsync(_channel).ConfigureAwait(false);
- }
-
- if (packet == null)
- {
- throw new MqttProtocolViolationException("Received malformed packet.");
- }
-
- MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"RX <<< {packet}");
- return packet;
- }
-
- private static async Task<TResult> ExecuteWithTimeoutAsync<TResult>(Task<TResult> task, TimeSpan timeout)
- {
- var timeoutTask = Task.Delay(timeout);
- if (await Task.WhenAny(timeoutTask, task).ConfigureAwait(false) == timeoutTask)
- {
- throw new MqttCommunicationTimedOutException();
- }
-
- if (task.IsFaulted)
- {
- throw new MqttCommunicationException(task.Exception);
- }
-
- return task.Result;
- }
-
- private static async Task ExecuteWithTimeoutAsync(Task task, TimeSpan timeout)
- {
- var timeoutTask = Task.Delay(timeout);
- if (await Task.WhenAny(timeoutTask, task).ConfigureAwait(false) == timeoutTask)
- {
- throw new MqttCommunicationTimedOutException();
- }
-
- if (task.IsFaulted)
- {
- throw new MqttCommunicationException(task.Exception);
- }
- }
- }
- }
|