|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- using System;
- using System.Linq;
- using System.Net.Sockets;
- using System.Runtime.InteropServices.WindowsRuntime;
- using System.Threading.Tasks;
- using Windows.Networking;
- using Windows.Networking.Sockets;
- using Windows.Security.Cryptography.Certificates;
- using Windows.Storage.Streams;
- using MQTTnet.Core.Channel;
- using MQTTnet.Core.Client;
- using MQTTnet.Core.Exceptions;
-
- namespace MQTTnet.Implementations
- {
- public sealed class MqttTcpChannel : IMqttCommunicationChannel, IDisposable
- {
- private readonly StreamSocket _socket;
-
- public MqttTcpChannel()
- {
- _socket = new StreamSocket();
- }
-
- public MqttTcpChannel(StreamSocket socket)
- {
- _socket = socket ?? throw new ArgumentNullException(nameof(socket));
- }
-
- public async Task ConnectAsync(MqttClientOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
- try
- {
- if (!options.TlsOptions.UseTls)
- {
- await _socket.ConnectAsync(new HostName(options.Server), options.GetPort().ToString());
- }
- else
- {
- _socket.Control.ClientCertificate = LoadCertificate(options);
-
- if (!options.TlsOptions.CheckCertificateRevocation)
- {
- _socket.Control.IgnorableServerCertificateErrors.Add(ChainValidationResult.IncompleteChain);
- _socket.Control.IgnorableServerCertificateErrors.Add(ChainValidationResult.RevocationInformationMissing);
- }
-
- await _socket.ConnectAsync(new HostName(options.Server), options.GetPort().ToString(), SocketProtectionLevel.Tls12);
- }
- }
- catch (SocketException exception)
- {
- throw new MqttCommunicationException(exception);
- }
- }
-
- public Task DisconnectAsync()
- {
- try
- {
- _socket.Dispose();
- return Task.FromResult(0);
- }
- catch (SocketException exception)
- {
- throw new MqttCommunicationException(exception);
- }
- }
-
- public async Task WriteAsync(byte[] buffer)
- {
- if (buffer == null) throw new ArgumentNullException(nameof(buffer));
-
- try
- {
- await _socket.OutputStream.WriteAsync(buffer.AsBuffer());
- await _socket.OutputStream.FlushAsync();
- }
- catch (SocketException exception)
- {
- throw new MqttCommunicationException(exception);
- }
- }
-
- public async Task ReadAsync(byte[] buffer)
- {
- if (buffer == null) throw new ArgumentNullException(nameof(buffer));
-
- try
- {
- await _socket.InputStream.ReadAsync(buffer.AsBuffer(), (uint)buffer.Length, InputStreamOptions.None);
- }
- catch (SocketException exception)
- {
- throw new MqttCommunicationException(exception);
- }
- }
-
- public void Dispose()
- {
- _socket?.Dispose();
- }
-
- private static Certificate LoadCertificate(MqttClientOptions options)
- {
- if (options.TlsOptions.Certificates == null || !options.TlsOptions.Certificates.Any())
- {
- return null;
- }
-
- if (options.TlsOptions.Certificates.Count > 1)
- {
- throw new NotSupportedException("Only one client certificate is supported for UWP.");
- }
-
- return new Certificate(options.TlsOptions.Certificates.First().AsBuffer());
- }
- }
- }
|