add graceful exit on SIGKILL/SIGTERM

This commit is contained in:
Li 2022-06-18 00:52:51 +12:00
parent e42b0bf782
commit ca39f783b9
6 changed files with 15 additions and 7 deletions

View file

@ -62,6 +62,8 @@ namespace HISP.Cli
public static void Main(string[] args)
{
AppDomain.CurrentDomain.ProcessExit += ProcessQuitHandler;
string BaseDir = Directory.GetCurrentDirectory();
Logger.SetCallback(LogStdout);
@ -132,5 +134,10 @@ namespace HISP.Cli
shutdownHandle = new EventWaitHandle(false, EventResetMode.ManualReset);
shutdownHandle.WaitOne();
}
private static void ProcessQuitHandler(object sender, EventArgs e)
{
GameServer.ShutdownServer();
}
}
}

View file

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.20.0")]
[assembly: AssemblyFileVersion("1.7.20.0")]
[assembly: AssemblyVersion("1.7.21.0")]
[assembly: AssemblyFileVersion("1.7.21.0")]

View file

@ -1,5 +1,5 @@
Package: hisp
Version: 1.7.20
Version: 1.7.21
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
Maintainer: Li
Homepage: https://islehorse.com

View file

@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.7.20.0")]
[assembly: AssemblyFileVersion("1.7.20.0")]
[assembly: AssemblyVersion("1.7.21.0")]
[assembly: AssemblyFileVersion("1.7.21.0")]

View file

@ -8258,6 +8258,7 @@ namespace HISP.Server
}
public static void ShutdownServer()
{
Logger.InfoPrint("Shutting down.");
GameClient.OnShutdown();
GameServer.OnShutdown();
Database.OnShutdown();

View file

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.20.0")]
[assembly: AssemblyFileVersion("1.7.20.0")]
[assembly: AssemblyVersion("1.7.21.0")]
[assembly: AssemblyFileVersion("1.7.21.0")]