1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-18 06:42:50 +02:00

Compare commits

..

No commits in common. "e40459a039ff84baf10012b4ee3e53a41b79e3cc" and "07eed8b6896663d0cedb7a73fb2dd573236f524f" have entirely different histories.

8 changed files with 13 additions and 24 deletions

View File

@ -33,8 +33,6 @@ public sealed class AgentServices {
Logger.Information("Stopping services...");
await InstanceSessionManager.StopAll();
InstanceSessionManager.Dispose();
await TaskManager.Stop();
Logger.Information("Services stopped.");

View File

@ -174,10 +174,10 @@ sealed class Instance : IDisposable {
}
public void Dispose() {
stateTransitioningActionSemaphore.Dispose();
if (currentState is IDisposable disposable) {
disposable.Dispose();
}
stateTransitioningActionSemaphore.Dispose();
}
}

View File

@ -138,24 +138,15 @@ sealed class InstanceSessionManager : IDisposable {
await semaphore.WaitAsync(CancellationToken.None);
try {
await Task.WhenAll(instances.Values.Select(static instance => instance.StopAndWait(TimeSpan.FromSeconds(30))));
DisposeAllInstances();
instances.Clear();
} finally {
semaphore.Release();
}
}
public void Dispose() {
DisposeAllInstances();
minecraftServerExecutables.Dispose();
shutdownCancellationTokenSource.Dispose();
semaphore.Dispose();
}
private void DisposeAllInstances() {
foreach (var (_, instance) in instances) {
instance.Dispose();
}
instances.Clear();
}
}

View File

@ -1,6 +1,6 @@
namespace Phantom.Common.Data.Instance;
public enum InstanceLaunchFailReason : byte {
public enum InstanceLaunchFailReason {
UnknownError,
ServerPortNotAllowed,
ServerPortAlreadyInUse,

View File

@ -1,11 +1,11 @@
namespace Phantom.Common.Data.Replies;
public enum LaunchInstanceResult : byte {
UnknownError,
LaunchInitiated,
InstanceAlreadyLaunching,
InstanceAlreadyRunning,
InstanceIsStopping
InstanceIsStopping,
UnknownError
}
public static class LaunchInstanceResultExtensions {

View File

@ -1,8 +1,8 @@
namespace Phantom.Common.Data.Replies;
public enum SendCommandToInstanceResult : byte {
UnknownError,
Success
Success,
UnknownError
}
public static class SendCommandToInstanceResultExtensions {

View File

@ -1,10 +1,10 @@
namespace Phantom.Common.Data.Replies;
public enum StopInstanceResult : byte {
UnknownError,
StopInitiated,
InstanceAlreadyStopping,
InstanceAlreadyStopped
InstanceAlreadyStopped,
UnknownError
}
public static class StopInstanceResultExtensions {

View File

@ -1,14 +1,14 @@
namespace Phantom.Server.Services.Instances;
public enum AddInstanceResult : byte {
UnknownError,
public enum AddInstanceResult {
Success,
InstanceAlreadyExists,
InstanceNameMustNotBeEmpty,
InstanceMemoryMustNotBeZero,
AgentNotFound,
AgentInstanceLimitExceeded,
AgentMemoryLimitExceeded
AgentMemoryLimitExceeded,
UnknownError
}
public static class AddInstanceResultExtensions {