Add RoslynBridge.WebApi - ASP.NET Core 8.0 middleware that: - Provides a centralized REST API for accessing multiple VS instances - Manages instance registry with discovery by port, solution, or PID - Proxies requests to the appropriate VS instance - Tracks request/response history for debugging - Auto-cleanup of stale instances via background service Features: - Health endpoints: /api/health, /api/health/ping - Roslyn endpoints: /api/roslyn/projects, /api/roslyn/diagnostics, etc. - Instance management: /api/instances (register, heartbeat, unregister) - History tracking: /api/history, /api/history/stats - Swagger UI at root (/) for API documentation - CORS enabled for web applications Services: - InstanceRegistryService: Thread-safe registry of VS instances - HistoryService: In-memory request/response history (max 1000 entries) - InstanceCleanupService: Background service to remove stale instances - RoslynBridgeClient: HTTP client for proxying to VS instances Update RoslynBridge.sln to include RoslynBridge.WebApi project. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
namespace RoslynBridge.WebApi.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a single query history entry with request and response information
|
|
/// </summary>
|
|
public class QueryHistoryEntry
|
|
{
|
|
/// <summary>
|
|
/// Unique identifier for this history entry
|
|
/// </summary>
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
|
|
/// <summary>
|
|
/// Timestamp when the request was received
|
|
/// </summary>
|
|
public DateTime Timestamp { get; set; } = DateTime.UtcNow;
|
|
|
|
/// <summary>
|
|
/// The endpoint path that was called
|
|
/// </summary>
|
|
public string Path { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// HTTP method used
|
|
/// </summary>
|
|
public string Method { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// The Roslyn query request
|
|
/// </summary>
|
|
public RoslynQueryRequest? Request { get; set; }
|
|
|
|
/// <summary>
|
|
/// The Roslyn query response
|
|
/// </summary>
|
|
public RoslynQueryResponse? Response { get; set; }
|
|
|
|
/// <summary>
|
|
/// Request duration in milliseconds
|
|
/// </summary>
|
|
public long DurationMs { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether the request was successful
|
|
/// </summary>
|
|
public bool Success { get; set; }
|
|
|
|
/// <summary>
|
|
/// Client IP address
|
|
/// </summary>
|
|
public string? ClientIp { get; set; }
|
|
}
|