forked from ddrilling/AsbCloudServer
179 lines
6.4 KiB
C#
179 lines
6.4 KiB
C#
using AsbCloudDb.Model;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Hosting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Diagnostics;
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations
|
|
{
|
|
public class OperationDetectorBackgroundService : BackgroundService
|
|
{
|
|
private readonly IEnumerable<DetectorAbstract> detectors = new List<DetectorAbstract>
|
|
{
|
|
new Detectors.DetectorSlipsTime(),
|
|
// new Detectors.DetectorDrillingRotor(),
|
|
// new Detectors.DetectorDrillingSlide(),
|
|
};
|
|
|
|
private readonly int minStepLength;
|
|
private readonly int minFragmentLength;
|
|
private readonly string connectionString;
|
|
private readonly TimeSpan period = TimeSpan.FromHours(1);
|
|
|
|
public OperationDetectorBackgroundService(IConfiguration configuration)
|
|
{
|
|
minStepLength = detectors.Min(d => d.StepLength);
|
|
minStepLength = minStepLength > 0 ? minStepLength : 3;
|
|
|
|
minFragmentLength = detectors.Min(d => d.FragmentLength);
|
|
minFragmentLength = minFragmentLength > 0 ? minFragmentLength : 6;
|
|
|
|
connectionString = configuration.GetConnectionString("DefaultConnection");
|
|
}
|
|
|
|
protected override async Task ExecuteAsync(CancellationToken token = default)
|
|
{
|
|
var timeToStartAnalysis = DateTime.Now;
|
|
var options = new DbContextOptionsBuilder<AsbCloudDbContext>()
|
|
.UseNpgsql(connectionString)
|
|
.Options;
|
|
|
|
while (!token.IsCancellationRequested)
|
|
{
|
|
if (DateTime.Now > timeToStartAnalysis)
|
|
{
|
|
timeToStartAnalysis = DateTime.Now + period;
|
|
try
|
|
{
|
|
using var context = new AsbCloudDbContext(options);
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Trace.TraceError(ex.Message);
|
|
Console.WriteLine(ex.Message);
|
|
}
|
|
GC.Collect();
|
|
}
|
|
|
|
var ms = (int)(timeToStartAnalysis - DateTime.Now).TotalMilliseconds;
|
|
ms = ms > 100 ? ms : 100;
|
|
await Task.Delay(ms, token).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
public override async Task StopAsync(CancellationToken token)
|
|
{
|
|
await base.StopAsync(token).ConfigureAwait(false);
|
|
}
|
|
|
|
private async Task<DateTime> GetLastAnalysisDateAsync(int idTelemetry, IAsbCloudDbContext db, CancellationToken token)
|
|
{
|
|
var lastAnalysisInDb = await (from analysis in db.TelemetryAnalysis
|
|
where analysis.IdTelemetry == idTelemetry
|
|
orderby analysis.UnixDate
|
|
select analysis)
|
|
.LastOrDefaultAsync(token)
|
|
.ConfigureAwait(false);
|
|
|
|
DateTime lastAnalysisDate = new DateTime(0, DateTimeKind.Utc);
|
|
|
|
if (lastAnalysisInDb is not null)
|
|
lastAnalysisDate = DateTime.UnixEpoch.AddSeconds(lastAnalysisInDb.DurationSec + lastAnalysisInDb.UnixDate);
|
|
|
|
return lastAnalysisDate;
|
|
}
|
|
|
|
private 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,
|
|
Pressure = d.Pressure,
|
|
HookWeight = d.HookWeight,
|
|
BlockPosition = d.BlockPosition,
|
|
BitDepth = d.BitDepth,
|
|
RotorSpeed = d.RotorSpeed,
|
|
})
|
|
.OrderBy(d => d.DateTime);
|
|
|
|
var take = 4 * 86_400;
|
|
var startDate = begin;
|
|
var detectedOperations = new List<DetectedOperation>(8);
|
|
|
|
var dbRequests_ = 0;
|
|
var dbTime_ = 0d;
|
|
var sw_ = new System.Diagnostics.Stopwatch();
|
|
var otherTime_ = 0d;
|
|
|
|
while (true)
|
|
{
|
|
sw_.Restart();
|
|
var data = await query
|
|
.Where(d => d.DateTime > startDate)
|
|
.Take(take)
|
|
.ToArrayAsync(token);
|
|
|
|
sw_.Stop();
|
|
dbTime_ += sw_.ElapsedMilliseconds;
|
|
dbRequests_++;
|
|
sw_.Restart();
|
|
|
|
if (data.Length < minFragmentLength)
|
|
break;
|
|
|
|
var skip = 0;
|
|
|
|
var isDetected = false;
|
|
|
|
while (data.Length > skip + minFragmentLength)
|
|
{
|
|
var isDetected1 = false;
|
|
|
|
foreach (var detector in detectors)
|
|
{
|
|
if(data.Length < skip + detector.StepLength + detector.FragmentLength)
|
|
continue;
|
|
|
|
var detectedOperation = detector.DetectOrDefault(data, ref skip);
|
|
if (detectedOperation is not null)
|
|
{
|
|
isDetected1 = true;
|
|
isDetected = true;
|
|
detectedOperations.Add(detectedOperation);
|
|
startDate = detectedOperation.DateEnd;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!isDetected1)
|
|
skip += minStepLength;
|
|
}
|
|
|
|
sw_.Stop();
|
|
otherTime_ += sw_.ElapsedMilliseconds;
|
|
|
|
if (!isDetected)
|
|
{
|
|
if (data.Length < take)
|
|
break;
|
|
|
|
var lastPartDate = data.Last().DateTime;
|
|
startDate = startDate + (0.75 * (lastPartDate - startDate));
|
|
}
|
|
}
|
|
|
|
return detectedOperations;
|
|
}
|
|
}
|
|
}
|