751248feb6
Adds a new HiLo alarm trigger type with four configurable setpoints
(LoLo / Lo / Hi / HiHi). Each setpoint carries an optional priority,
deadband (for hysteresis), and operator message. The site runtime emits
AlarmStateChanged with an AlarmLevel field so consumers can differentiate
warning vs critical bands.
Plumbing:
- new AlarmLevel enum + AlarmStateChanged.Level/Message init properties
- AlarmTriggerEditor (Blazor) gets a HiLo render with severity tinting
- AlarmTriggerConfigCodec extracted from the editor for testability
- sitestream.proto carries level + message over gRPC
- SemanticValidator enforces numeric attribute, setpoint ordering,
non-negative deadband
- on-trigger scripts get an Alarm global (Name/Level/Priority/Message)
so notification routing can branch by severity
- per-instance InstanceAlarmOverride entity + EF migration + flattening
step + CLI commands; HiLo overrides merge setpoint-by-setpoint, binary
types whole-replace
- DebugView shows a Level badge + per-band message tooltip
- App.razor auto-reloads on permanent Blazor circuit failure
- docker/regen-proto.sh automates the proto regen workflow (the linux/arm64
protoc segfault means generated files are checked in for now)
197 lines
7.9 KiB
C#
197 lines
7.9 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using ScadaLink.Commons.Entities.Deployment;
|
|
using ScadaLink.Commons.Entities.Instances;
|
|
using ScadaLink.Commons.Interfaces.Repositories;
|
|
|
|
namespace ScadaLink.ConfigurationDatabase.Repositories;
|
|
|
|
/// <summary>
|
|
/// EF Core implementation of IDeploymentManagerRepository.
|
|
/// Provides storage/query of deployed configuration snapshots per instance,
|
|
/// current deployment status, and optimistic concurrency on deployment status records.
|
|
///
|
|
/// WP-24: Stub level sufficient for diff/staleness support.
|
|
/// </summary>
|
|
public class DeploymentManagerRepository : IDeploymentManagerRepository
|
|
{
|
|
private readonly ScadaLinkDbContext _dbContext;
|
|
|
|
public DeploymentManagerRepository(ScadaLinkDbContext dbContext)
|
|
{
|
|
_dbContext = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
|
|
}
|
|
|
|
// --- DeploymentRecord ---
|
|
|
|
public async Task<DeploymentRecord?> GetDeploymentRecordByIdAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.DeploymentRecords.FindAsync([id], cancellationToken);
|
|
}
|
|
|
|
public async Task<IReadOnlyList<DeploymentRecord>> GetAllDeploymentRecordsAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.DeploymentRecords
|
|
.OrderByDescending(d => d.DeployedAt)
|
|
.ToListAsync(cancellationToken);
|
|
}
|
|
|
|
public async Task<IReadOnlyList<DeploymentRecord>> GetDeploymentsByInstanceIdAsync(int instanceId, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.DeploymentRecords
|
|
.Where(d => d.InstanceId == instanceId)
|
|
.OrderByDescending(d => d.DeployedAt)
|
|
.ToListAsync(cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the most recent deployment record for an instance (current deployment status).
|
|
/// Used for staleness detection by comparing revision hashes.
|
|
/// </summary>
|
|
public async Task<DeploymentRecord?> GetCurrentDeploymentStatusAsync(int instanceId, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.DeploymentRecords
|
|
.Where(d => d.InstanceId == instanceId)
|
|
.OrderByDescending(d => d.DeployedAt)
|
|
.FirstOrDefaultAsync(cancellationToken);
|
|
}
|
|
|
|
public async Task<DeploymentRecord?> GetDeploymentByDeploymentIdAsync(string deploymentId, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.DeploymentRecords
|
|
.FirstOrDefaultAsync(d => d.DeploymentId == deploymentId, cancellationToken);
|
|
}
|
|
|
|
public async Task AddDeploymentRecordAsync(DeploymentRecord record, CancellationToken cancellationToken = default)
|
|
{
|
|
await _dbContext.DeploymentRecords.AddAsync(record, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates a deployment record. Uses optimistic concurrency on deployment status records —
|
|
/// EF Core's change tracking will detect concurrent modifications via the row version/concurrency token
|
|
/// configured in the entity configuration.
|
|
/// </summary>
|
|
public Task UpdateDeploymentRecordAsync(DeploymentRecord record, CancellationToken cancellationToken = default)
|
|
{
|
|
_dbContext.DeploymentRecords.Update(record);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task DeleteDeploymentRecordAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
var record = _dbContext.DeploymentRecords.Local.FirstOrDefault(d => d.Id == id);
|
|
if (record != null)
|
|
{
|
|
_dbContext.DeploymentRecords.Remove(record);
|
|
}
|
|
else
|
|
{
|
|
var stub = new DeploymentRecord("stub", "stub") { Id = id };
|
|
_dbContext.DeploymentRecords.Attach(stub);
|
|
_dbContext.DeploymentRecords.Remove(stub);
|
|
}
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
// --- SystemArtifactDeploymentRecord ---
|
|
|
|
public async Task<SystemArtifactDeploymentRecord?> GetSystemArtifactDeploymentByIdAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.SystemArtifactDeploymentRecords.FindAsync([id], cancellationToken);
|
|
}
|
|
|
|
public async Task<IReadOnlyList<SystemArtifactDeploymentRecord>> GetAllSystemArtifactDeploymentsAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.SystemArtifactDeploymentRecords
|
|
.OrderByDescending(d => d.DeployedAt)
|
|
.ToListAsync(cancellationToken);
|
|
}
|
|
|
|
public async Task AddSystemArtifactDeploymentAsync(SystemArtifactDeploymentRecord record, CancellationToken cancellationToken = default)
|
|
{
|
|
await _dbContext.SystemArtifactDeploymentRecords.AddAsync(record, cancellationToken);
|
|
}
|
|
|
|
public Task UpdateSystemArtifactDeploymentAsync(SystemArtifactDeploymentRecord record, CancellationToken cancellationToken = default)
|
|
{
|
|
_dbContext.SystemArtifactDeploymentRecords.Update(record);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task DeleteSystemArtifactDeploymentAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
var record = _dbContext.SystemArtifactDeploymentRecords.Local.FirstOrDefault(d => d.Id == id);
|
|
if (record != null)
|
|
{
|
|
_dbContext.SystemArtifactDeploymentRecords.Remove(record);
|
|
}
|
|
else
|
|
{
|
|
var stub = new SystemArtifactDeploymentRecord("stub", "stub") { Id = id };
|
|
_dbContext.SystemArtifactDeploymentRecords.Attach(stub);
|
|
_dbContext.SystemArtifactDeploymentRecords.Remove(stub);
|
|
}
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
// --- WP-8: DeployedConfigSnapshot ---
|
|
|
|
public async Task<DeployedConfigSnapshot?> GetDeployedSnapshotByInstanceIdAsync(int instanceId, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.Set<DeployedConfigSnapshot>()
|
|
.FirstOrDefaultAsync(s => s.InstanceId == instanceId, cancellationToken);
|
|
}
|
|
|
|
public async Task AddDeployedSnapshotAsync(DeployedConfigSnapshot snapshot, CancellationToken cancellationToken = default)
|
|
{
|
|
await _dbContext.Set<DeployedConfigSnapshot>().AddAsync(snapshot, cancellationToken);
|
|
}
|
|
|
|
public Task UpdateDeployedSnapshotAsync(DeployedConfigSnapshot snapshot, CancellationToken cancellationToken = default)
|
|
{
|
|
_dbContext.Set<DeployedConfigSnapshot>().Update(snapshot);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public async Task DeleteDeployedSnapshotAsync(int instanceId, CancellationToken cancellationToken = default)
|
|
{
|
|
var snapshot = await _dbContext.Set<DeployedConfigSnapshot>()
|
|
.FirstOrDefaultAsync(s => s.InstanceId == instanceId, cancellationToken);
|
|
if (snapshot != null)
|
|
{
|
|
_dbContext.Set<DeployedConfigSnapshot>().Remove(snapshot);
|
|
}
|
|
}
|
|
|
|
// --- Instance lookups for deployment pipeline ---
|
|
|
|
public async Task<Instance?> GetInstanceByIdAsync(int instanceId, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.Set<Instance>()
|
|
.Include(i => i.AttributeOverrides)
|
|
.Include(i => i.AlarmOverrides)
|
|
.Include(i => i.ConnectionBindings)
|
|
.FirstOrDefaultAsync(i => i.Id == instanceId, cancellationToken);
|
|
}
|
|
|
|
public async Task<Instance?> GetInstanceByUniqueNameAsync(string uniqueName, CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.Set<Instance>()
|
|
.Include(i => i.AttributeOverrides)
|
|
.Include(i => i.AlarmOverrides)
|
|
.Include(i => i.ConnectionBindings)
|
|
.FirstOrDefaultAsync(i => i.UniqueName == uniqueName, cancellationToken);
|
|
}
|
|
|
|
public Task UpdateInstanceAsync(Instance instance, CancellationToken cancellationToken = default)
|
|
{
|
|
_dbContext.Set<Instance>().Update(instance);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public async Task<int> SaveChangesAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return await _dbContext.SaveChangesAsync(cancellationToken);
|
|
}
|
|
}
|