mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
69 lines
1.9 KiB
C#
69 lines
1.9 KiB
C#
using Phantom.Utils.Collections;
|
|
using Phantom.Utils.Runtime;
|
|
|
|
namespace Phantom.Agent.Minecraft.Instance;
|
|
|
|
public sealed class InstanceProcess : IDisposable {
|
|
public InstanceProperties InstanceProperties { get; }
|
|
public CancellableSemaphore BackupSemaphore { get; } = new (1, 1);
|
|
|
|
private readonly RingBuffer<string> outputBuffer = new (10000);
|
|
private event EventHandler<string>? OutputEvent;
|
|
|
|
public event EventHandler? Ended;
|
|
public bool HasEnded { get; private set; }
|
|
|
|
private readonly Process process;
|
|
|
|
internal InstanceProcess(InstanceProperties instanceProperties, Process process) {
|
|
this.InstanceProperties = instanceProperties;
|
|
this.process = process;
|
|
this.process.Exited += ProcessOnExited;
|
|
this.process.OutputReceived += ProcessOutputReceived;
|
|
}
|
|
|
|
public async Task SendCommand(string command, CancellationToken cancellationToken) {
|
|
await process.StandardInput.WriteLineAsync(command.AsMemory(), cancellationToken);
|
|
}
|
|
|
|
public void AddOutputListener(EventHandler<string> listener, uint maxLinesToReadFromHistory = uint.MaxValue) {
|
|
OutputEvent += listener;
|
|
|
|
foreach (var line in outputBuffer.EnumerateLast(maxLinesToReadFromHistory)) {
|
|
listener(this, line);
|
|
}
|
|
}
|
|
|
|
public void RemoveOutputListener(EventHandler<string> listener) {
|
|
OutputEvent -= listener;
|
|
}
|
|
|
|
private void ProcessOutputReceived(object? sender, Process.Output output) {
|
|
outputBuffer.Add(output.Line);
|
|
OutputEvent?.Invoke(this, output.Line);
|
|
}
|
|
|
|
private void ProcessOnExited(object? sender, EventArgs e) {
|
|
OutputEvent = null;
|
|
HasEnded = true;
|
|
Ended?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
|
|
public void Kill() {
|
|
process.Kill(true);
|
|
}
|
|
|
|
public async Task WaitForExit(CancellationToken cancellationToken) {
|
|
if (!HasEnded) {
|
|
await process.WaitForExitAsync(cancellationToken);
|
|
}
|
|
}
|
|
|
|
public void Dispose() {
|
|
process.Dispose();
|
|
BackupSemaphore.Dispose();
|
|
OutputEvent = null;
|
|
Ended = null;
|
|
}
|
|
}
|