|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619 |
- using System;
- using System.Collections.Concurrent;
- using System.Text;
- using System.Threading.Tasks;
- using Windows.Security.Cryptography.Certificates;
- using Windows.UI.Core;
- using Windows.UI.Xaml;
- using MQTTnet.Client;
- using MQTTnet.Diagnostics;
- using MQTTnet.Exceptions;
- using MQTTnet.Extensions.Rpc;
- using MQTTnet.Implementations;
- using MQTTnet.ManagedClient;
- using MQTTnet.Protocol;
- using MQTTnet.Server;
- using MqttClientConnectedEventArgs = MQTTnet.Client.MqttClientConnectedEventArgs;
- using MqttClientDisconnectedEventArgs = MQTTnet.Client.MqttClientDisconnectedEventArgs;
-
- namespace MQTTnet.TestApp.UniversalWindows
- {
- public sealed partial class MainPage
- {
- private readonly ConcurrentQueue<MqttNetLogMessage> _traceMessages = new ConcurrentQueue<MqttNetLogMessage>();
-
- private IMqttClient _mqttClient;
- private IMqttServer _mqttServer;
-
- public MainPage()
- {
- InitializeComponent();
-
- MqttNetGlobalLogger.LogMessagePublished += OnTraceMessagePublished;
- }
-
- private async void OnTraceMessagePublished(object sender, MqttNetLogMessagePublishedEventArgs e)
- {
- _traceMessages.Enqueue(e.TraceMessage);
- await UpdateLogAsync();
- }
-
- private async Task UpdateLogAsync()
- {
- while (_traceMessages.Count > 100)
- {
- _traceMessages.TryDequeue(out _);
- }
-
- var logText = new StringBuilder();
- foreach (var traceMessage in _traceMessages)
- {
- logText.AppendFormat(
- "[{0:yyyy-MM-dd HH:mm:ss.fff}] [{1}] [{2}] [{3}] [{4}]{5}",
- traceMessage.Timestamp,
- traceMessage.Level,
- traceMessage.Source,
- traceMessage.ThreadId,
- traceMessage.Message,
- Environment.NewLine);
-
- if (traceMessage.Exception != null)
- {
- logText.AppendLine(traceMessage.Exception.ToString());
- }
- }
-
- await Trace.Dispatcher.RunAsync(CoreDispatcherPriority.Low, () =>
- {
- Trace.Text = logText.ToString();
- });
- }
-
- private async void Connect(object sender, RoutedEventArgs e)
- {
- var tlsOptions = new MqttClientTlsOptions
- {
- UseTls = UseTls.IsChecked == true,
- IgnoreCertificateChainErrors = true,
- IgnoreCertificateRevocationErrors = true,
- AllowUntrustedCertificates = true
- };
-
- var options = new MqttClientOptions { ClientId = ClientId.Text };
-
- if (UseTcp.IsChecked == true)
- {
- options.ChannelOptions = new MqttClientTcpOptions
- {
- Server = Server.Text,
- Port = int.Parse(Port.Text),
- TlsOptions = tlsOptions
- };
- }
-
- if (UseWs.IsChecked == true)
- {
- options.ChannelOptions = new MqttClientWebSocketOptions
- {
- Uri = Server.Text,
- TlsOptions = tlsOptions
- };
- }
-
- if (options.ChannelOptions == null)
- {
- throw new InvalidOperationException();
- }
-
- options.Credentials = new MqttClientCredentials
- {
- Username = User.Text,
- Password = Password.Text
- };
-
- options.CleanSession = CleanSession.IsChecked == true;
- options.KeepAlivePeriod = TimeSpan.FromSeconds(double.Parse(KeepAliveInterval.Text));
-
- try
- {
- if (_mqttClient != null)
- {
- await _mqttClient.DisconnectAsync();
- _mqttClient.ApplicationMessageReceived -= OnApplicationMessageReceived;
- _mqttClient.Connected -= OnConnected;
- _mqttClient.Disconnected -= OnDisconnected;
- }
-
- var factory = new MqttFactory();
- _mqttClient = factory.CreateMqttClient();
- _mqttClient.ApplicationMessageReceived += OnApplicationMessageReceived;
- _mqttClient.Connected += OnConnected;
- _mqttClient.Disconnected += OnDisconnected;
-
- await _mqttClient.ConnectAsync(options);
- }
- catch (Exception exception)
- {
- Trace.Text += exception + Environment.NewLine;
- }
- }
-
- private void OnDisconnected(object sender, MqttClientDisconnectedEventArgs e)
- {
- _traceMessages.Enqueue(new MqttNetLogMessage("", DateTime.Now, -1,
- "", MqttNetLogLevel.Info, "! DISCONNECTED EVENT FIRED", null));
-
- Task.Run(UpdateLogAsync);
- }
-
- private void OnConnected(object sender, MqttClientConnectedEventArgs e)
- {
- _traceMessages.Enqueue(new MqttNetLogMessage("", DateTime.Now, -1,
- "", MqttNetLogLevel.Info, "! CONNECTED EVENT FIRED", null));
-
- Task.Run(UpdateLogAsync);
- }
-
- private async void OnApplicationMessageReceived(object sender, MqttApplicationMessageReceivedEventArgs eventArgs)
- {
- var item = $"Timestamp: {DateTime.Now:O} | Topic: {eventArgs.ApplicationMessage.Topic} | Payload: {Encoding.UTF8.GetString(eventArgs.ApplicationMessage.Payload)} | QoS: {eventArgs.ApplicationMessage.QualityOfServiceLevel}";
-
- await Dispatcher.RunAsync(CoreDispatcherPriority.Low, () =>
- {
- if (AddReceivedMessagesToList.IsChecked == true)
- {
- ReceivedMessages.Items.Add(item);
- }
- });
- }
-
- private async void Publish(object sender, RoutedEventArgs e)
- {
- if (_mqttClient == null)
- {
- return;
- }
-
- try
- {
- var qos = MqttQualityOfServiceLevel.AtMostOnce;
- if (QoS1.IsChecked == true)
- {
- qos = MqttQualityOfServiceLevel.AtLeastOnce;
- }
-
- if (QoS2.IsChecked == true)
- {
- qos = MqttQualityOfServiceLevel.ExactlyOnce;
- }
-
- var payload = new byte[0];
- if (Text.IsChecked == true)
- {
- payload = Encoding.UTF8.GetBytes(Payload.Text);
- }
-
- if (Base64.IsChecked == true)
- {
- payload = Convert.FromBase64String(Payload.Text);
- }
-
- var message = new MqttApplicationMessageBuilder()
- .WithTopic(Topic.Text)
- .WithPayload(payload)
- .WithQualityOfServiceLevel(qos)
- .WithRetainFlag(Retain.IsChecked == true)
- .Build();
-
- await _mqttClient.PublishAsync(message);
- }
- catch (Exception exception)
- {
- Trace.Text += exception + Environment.NewLine;
- }
- }
-
- private async void Disconnect(object sender, RoutedEventArgs e)
- {
- try
- {
- await _mqttClient.DisconnectAsync();
- }
- catch (Exception exception)
- {
- Trace.Text += exception + Environment.NewLine;
- }
- }
-
- private void ClearLog(object sender, RoutedEventArgs e)
- {
- while (_traceMessages.Count > 0)
- {
- _traceMessages.TryDequeue(out _);
- }
-
- Trace.Text = string.Empty;
- }
-
- private async void Subscribe(object sender, RoutedEventArgs e)
- {
- if (_mqttClient == null)
- {
- return;
- }
-
- try
- {
- var qos = MqttQualityOfServiceLevel.AtMostOnce;
- if (SubscribeQoS1.IsChecked == true)
- {
- qos = MqttQualityOfServiceLevel.AtLeastOnce;
- }
-
- if (SubscribeQoS2.IsChecked == true)
- {
- qos = MqttQualityOfServiceLevel.ExactlyOnce;
- }
-
- await _mqttClient.SubscribeAsync(new TopicFilter(SubscribeTopic.Text, qos));
- }
- catch (Exception exception)
- {
- Trace.Text += exception + Environment.NewLine;
- }
- }
-
- private async void Unsubscribe(object sender, RoutedEventArgs e)
- {
- if (_mqttClient == null)
- {
- return;
- }
-
- try
- {
- await _mqttClient.UnsubscribeAsync(SubscribeTopic.Text);
- }
- catch (Exception exception)
- {
- Trace.Text += exception + Environment.NewLine;
- }
- }
-
- // This code is for the Wiki at GitHub!
- // ReSharper disable once UnusedMember.Local
-
- private async void StartServer(object sender, RoutedEventArgs e)
- {
- if (_mqttServer != null)
- {
- return;
- }
-
- JsonServerStorage storage = null;
- if (ServerPersistRetainedMessages.IsChecked == true)
- {
- storage = new JsonServerStorage();
-
- if (ServerClearRetainedMessages.IsChecked == true)
- {
- storage.Clear();
- }
- }
-
- _mqttServer = new MqttFactory().CreateMqttServer();
-
- var options = new MqttServerOptions();
- options.DefaultEndpointOptions.Port = int.Parse(ServerPort.Text);
- options.Storage = storage;
-
- await _mqttServer.StartAsync(options);
- }
-
- private async void StopServer(object sender, RoutedEventArgs e)
- {
- if (_mqttServer == null)
- {
- return;
- }
-
- await _mqttServer.StopAsync();
- _mqttServer = null;
- }
-
- private void ClearReceivedMessages(object sender, RoutedEventArgs e)
- {
- ReceivedMessages.Items.Clear();
- }
-
- private async void ExecuteRpc(object sender, RoutedEventArgs e)
- {
- var qos = MqttQualityOfServiceLevel.AtMostOnce;
- if (RpcQoS1.IsChecked == true)
- {
- qos = MqttQualityOfServiceLevel.AtLeastOnce;
- }
-
- if (RpcQoS2.IsChecked == true)
- {
- qos = MqttQualityOfServiceLevel.ExactlyOnce;
- }
-
- var payload = new byte[0];
- if (RpcText.IsChecked == true)
- {
- payload = Encoding.UTF8.GetBytes(RpcPayload.Text);
- }
-
- if (RpcBase64.IsChecked == true)
- {
- payload = Convert.FromBase64String(RpcPayload.Text);
- }
-
- try
- {
- var rpcClient = new MqttRpcClient(_mqttClient);
- var response = await rpcClient.ExecuteAsync(TimeSpan.FromSeconds(5), RpcMethod.Text, payload, qos);
-
- RpcResponses.Items.Add(RpcMethod.Text + " >>> " + Encoding.UTF8.GetString(response));
- }
- catch (MqttCommunicationTimedOutException)
- {
- RpcResponses.Items.Add(RpcMethod.Text + " >>> [TIMEOUT]");
- }
- catch (Exception exception)
- {
- RpcResponses.Items.Add(RpcMethod.Text + " >>> [EXCEPTION (" + exception.Message + ")]");
- }
- }
-
- private void ClearRpcResponses(object sender, RoutedEventArgs e)
- {
- RpcResponses.Items.Clear();
- }
-
- private void ClearSessions(object sender, RoutedEventArgs e)
- {
- }
-
- private void RefreshSessions(object sender, RoutedEventArgs e)
- {
- }
-
- private async Task WikiCode()
- {
- {
- // Write all trace messages to the console window.
- MqttNetGlobalLogger.LogMessagePublished += (s, e) =>
- {
- Console.WriteLine($">> [{e.TraceMessage.Timestamp:O}] [{e.TraceMessage.ThreadId}] [{e.TraceMessage.Source}] [{e.TraceMessage.Level}]: {e.TraceMessage.Message}");
- if (e.TraceMessage.Exception != null)
- {
- Console.WriteLine(e.TraceMessage.Exception);
- }
- };
- }
-
- {
- // Use a custom identifier for the trace messages.
- var clientOptions = new MqttClientOptionsBuilder()
- .Build();
- }
-
- {
- // Create a new MQTT client.
- var factory = new MqttFactory();
- var mqttClient = factory.CreateMqttClient();
-
- {
- // Create TCP based options using the builder.
- var options = new MqttClientOptionsBuilder()
- .WithClientId("Client1")
- .WithTcpServer("broker.hivemq.com")
- .WithCredentials("bud", "%spencer%")
- .WithTls()
- .WithCleanSession()
- .Build();
-
- await mqttClient.ConnectAsync(options);
- }
-
- {
- // Use TCP connection.
- var options = new MqttClientOptionsBuilder()
- .WithTcpServer("broker.hivemq.com", 1883) // Port is optional
- .Build();
- }
-
- {
- // Use secure TCP connection.
- var options = new MqttClientOptionsBuilder()
- .WithTcpServer("broker.hivemq.com")
- .WithTls()
- .Build();
- }
-
- {
- // Use WebSocket connection.
- var options = new MqttClientOptionsBuilder()
- .WithWebSocketServer("broker.hivemq.com:8000/mqtt")
- .Build();
-
- await mqttClient.ConnectAsync(options);
- }
-
- {
- // Create TCP based options manually
- var options = new MqttClientOptions
- {
- ClientId = "Client1",
- Credentials = new MqttClientCredentials
- {
- Username = "bud",
- Password = "%spencer%"
- },
- ChannelOptions = new MqttClientTcpOptions
- {
- Server = "broker.hivemq.org",
- TlsOptions = new MqttClientTlsOptions
- {
- UseTls = true
- }
- },
- };
- }
-
- {
- // Subscribe to a topic
- await mqttClient.SubscribeAsync(new TopicFilterBuilder().WithTopic("my/topic").Build());
-
- // Unsubscribe from a topic
- await mqttClient.UnsubscribeAsync("my/topic");
-
- // Publish an application message
- var applicationMessage = new MqttApplicationMessageBuilder()
- .WithTopic("A/B/C")
- .WithPayload("Hello World")
- .WithAtLeastOnceQoS()
- .Build();
-
- await mqttClient.PublishAsync(applicationMessage);
- }
- }
-
- // ----------------------------------
- {
- var options = new MqttServerOptions();
-
- options.ConnectionValidator = c =>
- {
- if (c.ClientId.Length < 10)
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedIdentifierRejected;
- return;
- }
-
- if (c.Username != "mySecretUser")
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedBadUsernameOrPassword;
- return;
- }
-
- if (c.Password != "mySecretPassword")
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedBadUsernameOrPassword;
- return;
- }
-
- c.ReturnCode = MqttConnectReturnCode.ConnectionAccepted;
- };
-
- var factory = new MqttFactory();
- var mqttServer = factory.CreateMqttServer();
- await mqttServer.StartAsync(options);
-
- Console.WriteLine("Press any key to exit.");
- Console.ReadLine();
-
- await mqttServer.StopAsync();
- }
-
- // ----------------------------------
-
- // For UWP apps:
- MqttTcpChannel.CustomIgnorableServerCertificateErrorsResolver = o =>
- {
- if (o.Server == "server_with_revoked_cert")
- {
- return new[] { ChainValidationResult.Revoked };
- }
-
- return new ChainValidationResult[0];
- };
-
- {
- // Start a MQTT server.
- var mqttServer = new MqttFactory().CreateMqttServer();
- await mqttServer.StartAsync(new MqttServerOptions());
- Console.WriteLine("Press any key to exit.");
- Console.ReadLine();
- await mqttServer.StopAsync();
- }
-
- {
- // Configure MQTT server.
- var optionsBuilder = new MqttServerOptionsBuilder()
- .WithConnectionBacklog(100)
- .WithDefaultEndpointPort(1884);
-
- var options = new MqttServerOptions
- {
- };
-
- options.ConnectionValidator = c =>
- {
- if (c.ClientId != "Highlander")
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedIdentifierRejected;
- return;
- }
-
- c.ReturnCode = MqttConnectReturnCode.ConnectionAccepted;
- };
-
- var mqttServer = new MqttFactory().CreateMqttServer();
- await mqttServer.StartAsync(optionsBuilder.Build());
- }
-
- {
- // Setup client validator.
- var options = new MqttServerOptions
- {
- ConnectionValidator = c =>
- {
- if (c.ClientId.Length < 10)
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedIdentifierRejected;
- return;
- }
-
- if (c.Username != "mySecretUser")
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedBadUsernameOrPassword;
- return;
- }
-
- if (c.Password != "mySecretPassword")
- {
- c.ReturnCode = MqttConnectReturnCode.ConnectionRefusedBadUsernameOrPassword;
- return;
- }
-
- c.ReturnCode = MqttConnectReturnCode.ConnectionAccepted;
- }
- };
- }
-
- {
- // Create a new MQTT server.
- var mqttServer = new MqttFactory().CreateMqttServer();
- }
-
- {
- // Setup and start a managed MQTT client.
- var options = new ManagedMqttClientOptionsBuilder()
- .WithAutoReconnectDelay(TimeSpan.FromSeconds(5))
- .WithClientOptions(new MqttClientOptionsBuilder()
- .WithClientId("Client1")
- .WithTcpServer("broker.hivemq.com")
- .WithTls().Build())
- .Build();
-
- var mqttClient = new MqttFactory().CreateManagedMqttClient();
- await mqttClient.SubscribeAsync(new TopicFilterBuilder().WithTopic("my/topic").Build());
- await mqttClient.StartAsync(options);
- }
-
- }
- }
- }
|