mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
94 lines
3.4 KiB
C#
94 lines
3.4 KiB
C#
using System.Reflection;
|
|
using NetMQ;
|
|
using Phantom.Agent;
|
|
using Phantom.Agent.Rpc;
|
|
using Phantom.Agent.Services;
|
|
using Phantom.Agent.Services.Rpc;
|
|
using Phantom.Common.Data.Agent;
|
|
using Phantom.Common.Messages.Agent;
|
|
using Phantom.Common.Messages.Agent.ToController;
|
|
using Phantom.Utils.Actor;
|
|
using Phantom.Utils.Logging;
|
|
using Phantom.Utils.Rpc;
|
|
using Phantom.Utils.Rpc.Sockets;
|
|
using Phantom.Utils.Runtime;
|
|
|
|
const int ProtocolVersion = 1;
|
|
|
|
var shutdownCancellationTokenSource = new CancellationTokenSource();
|
|
var shutdownCancellationToken = shutdownCancellationTokenSource.Token;
|
|
|
|
ProgramCulture.UseInvariantCulture();
|
|
ThreadPool.SetMinThreads(workerThreads: 2, completionPortThreads: 1);
|
|
|
|
PosixSignals.RegisterCancellation(shutdownCancellationTokenSource, static () => {
|
|
PhantomLogger.Root.InformationHeading("Stopping Phantom Panel agent...");
|
|
});
|
|
|
|
try {
|
|
var fullVersion = AssemblyAttributes.GetFullVersion(Assembly.GetExecutingAssembly());
|
|
|
|
PhantomLogger.Root.InformationHeading("Initializing Phantom Panel agent...");
|
|
PhantomLogger.Root.Information("Agent version: {Version}", fullVersion);
|
|
|
|
var (controllerHost, controllerPort, javaSearchPath, agentKeyToken, agentKeyFilePath, agentName, maxInstances, maxMemory, allowedServerPorts, allowedRconPorts, maxConcurrentBackupCompressionTasks) = Variables.LoadOrStop();
|
|
|
|
var agentKey = await AgentKey.Load(agentKeyToken, agentKeyFilePath);
|
|
if (agentKey == null) {
|
|
return 1;
|
|
}
|
|
|
|
var folders = new AgentFolders("./data", "./temp", javaSearchPath);
|
|
if (!folders.TryCreate()) {
|
|
return 1;
|
|
}
|
|
|
|
var agentGuid = await GuidFile.CreateOrLoad(folders.DataFolderPath);
|
|
if (agentGuid == null) {
|
|
return 1;
|
|
}
|
|
|
|
var (controllerCertificate, agentToken) = agentKey.Value;
|
|
var agentInfo = new AgentInfo(agentGuid.Value, agentName, ProtocolVersion, fullVersion, maxInstances, maxMemory, allowedServerPorts, allowedRconPorts);
|
|
|
|
PhantomLogger.Root.InformationHeading("Launching Phantom Panel agent...");
|
|
|
|
var rpcConfiguration = new RpcConfiguration("Agent", controllerHost, controllerPort, controllerCertificate);
|
|
var rpcSocket = RpcClientSocket.Connect(rpcConfiguration, AgentMessageRegistries.Definitions, new RegisterAgentMessage(agentToken, agentInfo));
|
|
|
|
var agentServices = new AgentServices(agentInfo, folders, new AgentServiceConfiguration(maxConcurrentBackupCompressionTasks), new ControllerConnection(rpcSocket.Connection));
|
|
await agentServices.Initialize();
|
|
|
|
var rpcMessageHandlerInit = new ControllerMessageHandlerActor.Init(rpcSocket.Connection, agentServices, shutdownCancellationTokenSource);
|
|
var rpcMessageHandlerActor = agentServices.ActorSystem.ActorOf(ControllerMessageHandlerActor.Factory(rpcMessageHandlerInit), "ControllerMessageHandler");
|
|
|
|
var rpcDisconnectSemaphore = new SemaphoreSlim(0, 1);
|
|
var rpcTask = RpcClientRuntime.Launch(rpcSocket, rpcMessageHandlerActor, rpcDisconnectSemaphore, shutdownCancellationToken);
|
|
try {
|
|
await rpcTask.WaitAsync(shutdownCancellationToken);
|
|
} finally {
|
|
shutdownCancellationTokenSource.Cancel();
|
|
await agentServices.Shutdown();
|
|
|
|
rpcDisconnectSemaphore.Release();
|
|
await rpcTask;
|
|
rpcDisconnectSemaphore.Dispose();
|
|
|
|
NetMQConfig.Cleanup();
|
|
}
|
|
|
|
return 0;
|
|
} catch (OperationCanceledException) {
|
|
return 0;
|
|
} catch (StopProcedureException) {
|
|
return 1;
|
|
} catch (Exception e) {
|
|
PhantomLogger.Root.Fatal(e, "Caught exception in entry point.");
|
|
return 1;
|
|
} finally {
|
|
shutdownCancellationTokenSource.Dispose();
|
|
|
|
PhantomLogger.Root.Information("Bye!");
|
|
PhantomLogger.Dispose();
|
|
}
|