forked from ddrilling/AsbCloudServer
150 lines
5.8 KiB
C#
150 lines
5.8 KiB
C#
using AsbCloudDb.Model;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AsbCloudInfrastructure.Services.DetectOperations.Detectors;
|
|
using AsbCloudInfrastructure.Background;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations
|
|
{
|
|
#nullable enable
|
|
public static class OperationDetectionWorkFactory
|
|
{
|
|
private const string workId = "Operation detection";
|
|
private static readonly TimeSpan workPeriod = TimeSpan.FromMinutes(30);
|
|
|
|
private static readonly DetectorAbstract[] detectors = new DetectorAbstract[]
|
|
{
|
|
new DetectorRotor(),
|
|
new DetectorSlide(),
|
|
new DetectorDevelopment(),
|
|
new DetectorTemplating(),
|
|
new DetectorSlipsTime(),
|
|
new DetectorStaticSurveying(),
|
|
new DetectorFlashingBeforeConnection(),
|
|
new DetectorFlashing(),
|
|
new DetectorTemplatingWhileDrilling(),
|
|
};
|
|
|
|
public static WorkPeriodic MakeWork()
|
|
{
|
|
var workPeriodic = new WorkPeriodic(workId, WorkAction, workPeriod);
|
|
workPeriodic.Timeout = TimeSpan.FromMinutes(30);
|
|
return workPeriodic;
|
|
}
|
|
|
|
// TODO: Разделить этот акшн на более мелкие части И использовать telemetryServiceData<..> вместо прямого обращения к БД.
|
|
private static async Task WorkAction(string _, IServiceProvider serviceProvider, CancellationToken token)
|
|
{
|
|
using var db = serviceProvider.GetRequiredService<IAsbCloudDbContext>();
|
|
|
|
var lastDetectedDates = await db.DetectedOperations
|
|
.GroupBy(o => o.IdTelemetry)
|
|
.Select(g => new
|
|
{
|
|
IdTelemetry = g.Key,
|
|
LastDate = g.Max(o => o.DateEnd)
|
|
})
|
|
.ToListAsync(token);
|
|
|
|
var telemetryIds = await db.Telemetries
|
|
.Where(t => t.Info != null && t.TimeZone != null)
|
|
.Select(t => t.Id)
|
|
.ToListAsync(token);
|
|
|
|
var joinedlastDetectedDates = telemetryIds
|
|
.GroupJoin(lastDetectedDates,
|
|
t => t,
|
|
o => o.IdTelemetry,
|
|
(outer, inner) => new
|
|
{
|
|
IdTelemetry = outer,
|
|
inner.SingleOrDefault()?.LastDate,
|
|
});
|
|
|
|
var affected = 0;
|
|
foreach (var item in joinedlastDetectedDates)
|
|
{
|
|
var stopwatch = Stopwatch.StartNew();
|
|
var newOperations = await DetectOperationsAsync(item.IdTelemetry, item.LastDate ?? DateTimeOffset.MinValue, db, token);
|
|
stopwatch.Stop();
|
|
if (newOperations.Any())
|
|
{
|
|
db.DetectedOperations.AddRange(newOperations);
|
|
affected += await db.SaveChangesAsync(token);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static async Task<IEnumerable<DetectedOperation>> DetectOperationsAsync(int idTelemetry, DateTimeOffset begin, IAsbCloudDbContext db, CancellationToken token)
|
|
{
|
|
var query = db.TelemetryDataSaub
|
|
.AsNoTracking()
|
|
.Where(d => d.IdTelemetry == idTelemetry)
|
|
.Select(d => new DetectableTelemetry
|
|
{
|
|
DateTime = d.DateTime,
|
|
IdUser = d.IdUser,
|
|
WellDepth = d.WellDepth ?? float.NaN,
|
|
Pressure = d.Pressure ?? float.NaN,
|
|
HookWeight = d.HookWeight ?? float.NaN,
|
|
BlockPosition = d.BlockPosition ?? float.NaN,
|
|
BitDepth = d.BitDepth ?? float.NaN,
|
|
RotorSpeed = d.RotorSpeed ?? float.NaN,
|
|
})
|
|
.OrderBy(d => d.DateTime);
|
|
|
|
var take = 4 * 86_400; // 4 дня
|
|
var startDate = begin;
|
|
var detectedOperations = new List<DetectedOperation>(8);
|
|
DetectedOperation? lastDetectedOperation = null;
|
|
const int minOperationLength = 5;
|
|
const int maxDetectorsInterpolationFrameLength = 30;
|
|
const int gap = maxDetectorsInterpolationFrameLength + minOperationLength;
|
|
|
|
while (true)
|
|
{
|
|
var data = await query
|
|
.Where(d => d.DateTime > startDate)
|
|
.Take(take)
|
|
.ToArrayAsync(token);
|
|
|
|
if (data.Length < gap)
|
|
break;
|
|
|
|
var isDetected = false;
|
|
var positionBegin = 0;
|
|
var positionEnd = data.Length - gap;
|
|
while (positionEnd > positionBegin)
|
|
{
|
|
for (int i = 0; i < detectors.Length; i++)
|
|
{
|
|
if (detectors[i].TryDetect(idTelemetry, data, positionBegin, positionEnd, lastDetectedOperation, out OperationDetectorResult? result))
|
|
{
|
|
detectedOperations.Add(result!.Operation);
|
|
lastDetectedOperation = result.Operation;
|
|
isDetected = true;
|
|
positionBegin = result.TelemetryEnd;
|
|
break;
|
|
}
|
|
}
|
|
positionBegin++;
|
|
}
|
|
|
|
if (isDetected)
|
|
startDate = lastDetectedOperation!.DateEnd;
|
|
else
|
|
startDate = data[positionEnd].DateTime;
|
|
}
|
|
|
|
return detectedOperations;
|
|
}
|
|
}
|
|
#nullable disable
|
|
}
|