-
Notifications
You must be signed in to change notification settings - Fork 9
/
Program.cs
executable file
·53 lines (42 loc) · 1.57 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
using MQTTnet.AspNetCore.Extensions;
namespace MqttBrokerWithDashboard
{
public class Program
{
public static HostConfig HostConfig { get; set; }
static IHost _host;
static CancellationTokenSource _manualResartCts;
public static async Task Main(string[] args)
{
HostConfig = HostConfig.LoadFromFile();
RestartHost:
_host = CreateHostBuilder(args).Build();
_manualResartCts = new CancellationTokenSource();
await _host.RunAsync(_manualResartCts.Token);
if (_manualResartCts.IsCancellationRequested)
{
System.Console.WriteLine("Restarting host ...");
_host.Dispose();
_host = null;
goto RestartHost;
}
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseKestrel(options =>
{
options.ListenAnyIP(HostConfig.TcpPort, l => l.UseMqtt());
options.ListenAnyIP(HostConfig.HttpPort);
});
webBuilder.UseStartup<Startup>();
});
public static void RestartHost() =>
_manualResartCts.Cancel();
}
}