|
@@ -31,79 +31,82 @@ public static class NbsProgram
|
|
|
logger.LogWarn("Logger Init");
|
|
|
logger.LogError("Logger Init");
|
|
|
logger.LogFatal("Logger Init");
|
|
|
- try
|
|
|
+
|
|
|
+ logger.LogInfo("Load config");
|
|
|
+ var config = WebApplication.CreateBuilder(args).Configuration;
|
|
|
+ var httpPrefix = config.GetSection("Web")["Prefix"];
|
|
|
+ Console.Title = $"{nameof(NetBootServerCore)} at {httpPrefix}";
|
|
|
+ Environment.SetEnvironmentVariable("ASPNETCORE_URLS", httpPrefix);
|
|
|
+
|
|
|
+ logger.LogInfo("Create components");
|
|
|
+ var dhcp = new DhcpServer(config.GetSection("DHCP"));
|
|
|
+ var tftp = new TftpServer(config.GetSection("TFTP"));
|
|
|
+ var bsp = new BootScriptProvider(config.GetSection("BootScript"));
|
|
|
+
|
|
|
+ var scriptModule = new BootScriptProcessor(bsp);
|
|
|
+ var apiModule = new WebApiProcessor(dhcp);
|
|
|
+ var staticModule = new StaticContentProcessor(config.GetSection("StaticContent"));
|
|
|
+ var httpServer = new HttpServer(args,new IHttpRequestProcessor[] { scriptModule, apiModule, staticModule });
|
|
|
+
|
|
|
+ logger.LogInfo("Init components");
|
|
|
+ dhcp.Init();
|
|
|
+ tftp.Init();
|
|
|
+ scriptModule.Init();
|
|
|
+ apiModule.Init();
|
|
|
+ staticModule.Init();
|
|
|
+ httpServer.Init();
|
|
|
+
|
|
|
+ logger.LogInfo("Start components");
|
|
|
+ dhcp.Start();
|
|
|
+ tftp.Start();
|
|
|
+ scriptModule.Start();
|
|
|
+ apiModule.Start();
|
|
|
+ staticModule.Start();
|
|
|
+ httpServer.Start();
|
|
|
+
|
|
|
+ logger.LogInfo("Running");
|
|
|
+
|
|
|
+ //Waiting until Control-C
|
|
|
{
|
|
|
- logger.LogInfo("Load config");
|
|
|
- var config = WebApplication.CreateBuilder(args).Configuration;
|
|
|
- var httpPrefix = config.GetSection("Web")["Prefix"];
|
|
|
- Console.Title = $"{nameof(NetBootServerCore)} at {httpPrefix}";
|
|
|
- Environment.SetEnvironmentVariable("ASPNETCORE_URLS", httpPrefix);
|
|
|
-
|
|
|
- logger.LogInfo("Create components");
|
|
|
- var dhcp = new DhcpServer(config.GetSection("DHCP"));
|
|
|
- var tftp = new TftpServer(config.GetSection("TFTP"));
|
|
|
- var bsp = new BootScriptProvider(config.GetSection("BootScript"));
|
|
|
-
|
|
|
- var scriptServer = new BootScriptProcessor(bsp);
|
|
|
- var apiServer = new WebApiProcessor(dhcp);
|
|
|
- var staticServer = new StaticContentProcessor();
|
|
|
- var httpServer = new HttpServer(new IHttpRequestProcessor[] { scriptServer, apiServer, staticServer });
|
|
|
-
|
|
|
- logger.LogInfo("Start components");
|
|
|
- dhcp.Start();
|
|
|
- tftp.Start();
|
|
|
- scriptServer.Start();
|
|
|
- apiServer.Start();
|
|
|
- staticServer.Start();
|
|
|
- httpServer.Start();
|
|
|
-
|
|
|
- logger.LogInfo("Running");
|
|
|
-
|
|
|
- //Waiting until Control-C
|
|
|
+ CancellationTokenSource ctSource = new();
|
|
|
+ var ct = ctSource.Token;
|
|
|
+
|
|
|
+ void ExitHandler()
|
|
|
{
|
|
|
- CancellationTokenSource ctSource = new();
|
|
|
- var ct = ctSource.Token;
|
|
|
+ // You can add any arbitrary global clean up
|
|
|
+ logger.LogInfo("Exiting...");
|
|
|
+ ctSource.Cancel();
|
|
|
+ }
|
|
|
|
|
|
- void ExitHandler()
|
|
|
+ // Assign exit handler to be called when the process is terminated
|
|
|
+ // or the user hits CTRL+C
|
|
|
+ AppDomain.CurrentDomain.ProcessExit += (_, _) => ExitHandler();
|
|
|
+ Console.CancelKeyPress += (_, _) => ExitHandler();
|
|
|
+
|
|
|
+ // Then you can use the cancellation token to check for exit:
|
|
|
+ while (!ct.IsCancellationRequested)
|
|
|
+ {
|
|
|
+ try
|
|
|
{
|
|
|
- // You can add any arbitrary global clean up
|
|
|
- logger.LogInfo("Exiting...");
|
|
|
- ctSource.Cancel();
|
|
|
+ Task.Delay(1000, ct).Wait(ct);
|
|
|
}
|
|
|
-
|
|
|
- // Assign exit handler to be called when the process is terminated
|
|
|
- // or the user hits CTRL+C
|
|
|
- AppDomain.CurrentDomain.ProcessExit += (_, _) => ExitHandler();
|
|
|
- Console.CancelKeyPress += (_, _) => ExitHandler();
|
|
|
-
|
|
|
- // Then you can use the cancellation token to check for exit:
|
|
|
- while (!ct.IsCancellationRequested)
|
|
|
+ catch (OperationCanceledException e)
|
|
|
{
|
|
|
- try
|
|
|
- {
|
|
|
- Task.Delay(1000, ct).Wait(ct);
|
|
|
- }
|
|
|
- catch (OperationCanceledException e)
|
|
|
- {
|
|
|
- break;
|
|
|
- }
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- //stop components
|
|
|
- dhcp.Stop();
|
|
|
- tftp.Stop();
|
|
|
- apiServer.Stop();
|
|
|
- scriptServer.Stop();
|
|
|
- staticServer.Stop();
|
|
|
- httpServer.Stop();
|
|
|
+ //stop components
|
|
|
+ dhcp.Stop();
|
|
|
+ tftp.Stop();
|
|
|
+ apiModule.Stop();
|
|
|
+ scriptModule.Stop();
|
|
|
+ staticModule.Stop();
|
|
|
+ httpServer.Stop();
|
|
|
+
|
|
|
+ logger.LogInfo("Finished");
|
|
|
|
|
|
- logger.LogInfo("Finished");
|
|
|
- }
|
|
|
- catch (Exception ex)
|
|
|
- {
|
|
|
- logger.LogFatal(ex.Message, ex.ToString());
|
|
|
- }
|
|
|
LiveConsole.Stop();
|
|
|
}
|
|
|
}
|