-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
141 lines (119 loc) · 5.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
namespace OpcPublisherNodeManagerModule;
public static class Program
{
private static ILogger? logger;
private static ILoggerFactory? loggerFactory;
private static IoTEdgeEmulationService? emulationService;
private static async Task Main(string[] args)
{
var isEmulatorMode = false;
using var host = Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
{
services.AddLogging(builder =>
{
builder.AddSimpleConsole(options => options.TimestampFormat = LoggingConstants.TimestampFormat);
builder.SetMinimumLevel(LogLevel.Trace);
});
if (hostContext.IsStandaloneMode())
{
services.AddSingleton<IModuleClientWrapper, MockModuleClientWrapper>();
}
else
{
if (hostContext.IsEmulatorMode())
{
isEmulatorMode = true;
services.ConfigureEmulatorOptions(hostContext.Configuration);
services.AddModuleClientWrapper(TransportSettingsFactory.BuildAmqpTransportSettings());
// Creating a temporary scope to resolve EmulatorOptions
var serviceProvider = services.BuildServiceProvider();
using var scope = serviceProvider.CreateScope();
var emulatorOptions = scope.ServiceProvider.GetRequiredService<IOptions<EmulatorOptions>>().Value;
var iotHubOptions = new IotHubOptions
{
ConnectionString = emulatorOptions.IotHubConnectionString,
};
services.ConfigureIotHubServices(iotHubOptions);
}
else
{
services.AddModuleClientWrapper(TransportSettingsFactory.BuildMqttTransportSettings());
}
}
services.AddSingleton<IMethodResponseFactory, MethodResponseFactory>();
services.AddHostedService<OpcPublisherNodeManagerModuleService>();
services.Configure<HostOptions>(options =>
{
options.ShutdownTimeout = TimeSpan.FromSeconds(10);
});
})
.UseConsoleLifetime()
.Build();
loggerFactory = host.Services.GetRequiredService<ILoggerFactory>();
logger = loggerFactory.CreateLogger<OpcPublisherNodeManagerModuleService>();
if (isEmulatorMode)
{
await SetupEmulator(host.Services);
}
await host.RunAsync();
}
private static async Task SetupEmulator(
IServiceProvider serviceProvider)
{
Console.CancelKeyPress += OnEmulatorCancelKeyPress;
AppDomain.CurrentDomain.UnhandledException += (_, e) => OnEmulatorUnhandledException(e);
var emulatorOptions = serviceProvider.GetRequiredService<EmulatorOptions>();
var systemEnvironmentService = new SystemEnvironmentService(loggerFactory!);
var dockerService = new DockerService(loggerFactory!, systemEnvironmentService);
emulationService = IoTEdgeEmulationServiceFactory.BuildIoTEdgeEmulationService(
loggerFactory!,
dockerService,
serviceProvider.GetRequiredService<IIoTHubService>());
var isEmulatorStarted = await emulationService
.StartEmulator(
emulatorOptions.TemplateFilePath,
emulatorOptions.IotHubConnectionString,
deviceId: string.Empty,
containerName: string.Empty,
CancellationToken.None);
if (!isEmulatorStarted)
{
throw new PreconditionFailedException("Could not start emulator!");
}
var isEdgeEmulatorReady = await dockerService.EnsureIotEdgeEmulatorIsReady(OpcPublisherNodeManagerModuleConstants.ModuleId);
if (!isEdgeEmulatorReady)
{
throw new PreconditionFailedException("Emulator containers are not ready!");
}
var (getVariablesSucceeded, iotEdgeVariables) = await dockerService.GetIotEdgeVariablesFromContainer(OpcPublisherNodeManagerModuleConstants.ModuleId);
if (!getVariablesSucceeded)
{
throw new PreconditionFailedException("Could not retrieve emulator IoTEdge variables!");
}
emulationService.EnsureProperIotEdgeEnvironmentVariables(iotEdgeVariables!);
systemEnvironmentService.SetEnvironmentVariables(iotEdgeVariables!);
}
private static void OnEmulatorCancelKeyPress(
object? sender,
ConsoleCancelEventArgs args)
{
logger!.LogInformation("Stop Emulation - cancelled by user.");
if (emulationService is not null)
{
TaskHelper.RunSync(async () => await emulationService.StopEmulator(CancellationToken.None));
}
}
private static void OnEmulatorUnhandledException(
UnhandledExceptionEventArgs args)
{
if (logger is null)
{
Console.WriteLine($"Unhandled Exception: {args.ExceptionObject}");
}
else
{
logger.LogInformation($"Unhandled Exception: {args.ExceptionObject}");
}
}
}