mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
66 lines
2.0 KiB
C#
66 lines
2.0 KiB
C#
using System.Text.Json.Serialization;
|
|
using LanMountainDesktop.Shared.Contracts.Launcher;
|
|
|
|
namespace LanMountainDesktop.Launcher.Models;
|
|
|
|
internal enum StartupAttemptState
|
|
{
|
|
Pending,
|
|
SoftTimeout,
|
|
DetachedWaiting,
|
|
Succeeded,
|
|
Failed,
|
|
WaitingForShell
|
|
}
|
|
|
|
internal sealed class StartupAttemptRecord
|
|
{
|
|
[JsonPropertyName("attemptId")]
|
|
public string AttemptId { get; set; } = Guid.NewGuid().ToString("N");
|
|
|
|
[JsonPropertyName("hostPid")]
|
|
public int HostPid { get; set; }
|
|
|
|
[JsonPropertyName("coordinatorPid")]
|
|
public int CoordinatorPid { get; set; }
|
|
|
|
[JsonPropertyName("coordinatorPipeName")]
|
|
public string CoordinatorPipeName { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("startedAtUtc")]
|
|
public DateTimeOffset StartedAtUtc { get; set; } = DateTimeOffset.UtcNow;
|
|
|
|
[JsonPropertyName("updatedAtUtc")]
|
|
public DateTimeOffset UpdatedAtUtc { get; set; } = DateTimeOffset.UtcNow;
|
|
|
|
[JsonPropertyName("heartbeatAtUtc")]
|
|
public DateTimeOffset HeartbeatAtUtc { get; set; } = DateTimeOffset.UtcNow;
|
|
|
|
[JsonPropertyName("launchSource")]
|
|
public string LaunchSource { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("successPolicy")]
|
|
public string SuccessPolicy { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("lastObservedStage")]
|
|
public StartupStage LastObservedStage { get; set; } = StartupStage.Initializing;
|
|
|
|
[JsonPropertyName("lastObservedMessage")]
|
|
public string LastObservedMessage { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("ipcConnected")]
|
|
public bool IpcConnected { get; set; }
|
|
|
|
[JsonPropertyName("publicIpcConnected")]
|
|
public bool PublicIpcConnected { get; set; }
|
|
|
|
[JsonPropertyName("shellStatus")]
|
|
public string ShellStatus { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("reservedBeforeHostStart")]
|
|
public bool ReservedBeforeHostStart { get; set; }
|
|
|
|
[JsonPropertyName("state")]
|
|
public StartupAttemptState State { get; set; } = StartupAttemptState.Pending;
|
|
}
|