eabf270d71
Resolve all 622 issues flagged by the enhanced CommentChecker: add missing <returns> tags (incl. the standard phrasing on non-generic Task methods), add missing <summary> tags, and replace misused/redundant <inheritdoc/> on members that override or implement nothing with real documentation. Documentation-only — no behavior change; solution builds clean.
62 lines
2.4 KiB
C#
62 lines
2.4 KiB
C#
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Interfaces.Transport;
|
|
|
|
namespace ZB.MOM.WW.ScadaBridge.Transport.Import;
|
|
|
|
/// <summary>
|
|
/// T-007: periodic background sweep that drives <see cref="IBundleSessionStore.EvictExpired"/>
|
|
/// so abandoned import sessions clear from memory on their own, without needing a
|
|
/// new <see cref="IBundleSessionStore.Get"/> to trigger lazy eviction. Each session
|
|
/// owns the decrypted bundle content (potentially up to ~100 MB of secrets — DB
|
|
/// connection strings, SMTP credentials, external-system auth configs), and the
|
|
/// design contract is "bundles are not retained server-side after ApplyAsync
|
|
/// commits". This service keeps abandoned / failed sessions from pinning that
|
|
/// plaintext for the full 30-minute TTL when no other traffic flows.
|
|
/// </summary>
|
|
internal sealed class BundleSessionEvictionService : BackgroundService
|
|
{
|
|
private static readonly TimeSpan SweepInterval = TimeSpan.FromMinutes(1);
|
|
|
|
private readonly IBundleSessionStore _sessionStore;
|
|
private readonly ILogger<BundleSessionEvictionService> _logger;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of <see cref="BundleSessionEvictionService"/>.
|
|
/// </summary>
|
|
/// <param name="sessionStore">The bundle session store to sweep for expired sessions.</param>
|
|
/// <param name="logger">Logger for sweep diagnostics.</param>
|
|
public BundleSessionEvictionService(
|
|
IBundleSessionStore sessionStore,
|
|
ILogger<BundleSessionEvictionService> logger)
|
|
{
|
|
_sessionStore = sessionStore ?? throw new ArgumentNullException(nameof(sessionStore));
|
|
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
|
{
|
|
while (!stoppingToken.IsCancellationRequested)
|
|
{
|
|
try
|
|
{
|
|
await Task.Delay(SweepInterval, stoppingToken).ConfigureAwait(false);
|
|
}
|
|
catch (OperationCanceledException) when (stoppingToken.IsCancellationRequested)
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
_sessionStore.EvictExpired();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogWarning(ex, "Bundle session sweep failed; will retry on next interval.");
|
|
}
|
|
}
|
|
}
|
|
}
|