2022-04-11 18:00:34 +05:00
|
|
|
|
using AsbCloudApp.Services;
|
2021-11-15 14:56:11 +05:00
|
|
|
|
using AsbCloudDb;
|
2022-04-11 18:00:34 +05:00
|
|
|
|
using AsbCloudDb.Model;
|
2021-09-17 16:24:01 +05:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2021-11-13 18:47:11 +05:00
|
|
|
|
using System.Diagnostics;
|
2021-09-17 16:24:01 +05:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
#nullable enable
|
2022-04-11 18:00:34 +05:00
|
|
|
|
namespace AsbCloudInfrastructure.Services.SAUB
|
2021-09-17 16:24:01 +05:00
|
|
|
|
{
|
2022-11-15 17:44:48 +05:00
|
|
|
|
public abstract class TelemetryDataBaseService<TDto, TEntity> : ITelemetryDataService<TDto>
|
2021-09-17 16:24:01 +05:00
|
|
|
|
where TDto : AsbCloudApp.Data.ITelemetryData
|
2022-11-15 17:44:48 +05:00
|
|
|
|
where TEntity : class, ITelemetryData
|
2021-09-17 16:24:01 +05:00
|
|
|
|
{
|
2022-10-06 13:49:20 +05:00
|
|
|
|
protected readonly IAsbCloudDbContext db;
|
2023-01-13 14:34:26 +05:00
|
|
|
|
protected readonly ITelemetryService telemetryService;
|
|
|
|
|
protected readonly TelemetryDataCache<TDto> telemetryDataCache;
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
2021-09-23 10:53:48 +05:00
|
|
|
|
public TelemetryDataBaseService(
|
2021-09-17 16:24:01 +05:00
|
|
|
|
IAsbCloudDbContext db,
|
|
|
|
|
ITelemetryService telemetryService,
|
2022-11-18 12:58:53 +05:00
|
|
|
|
TelemetryDataCache<TDto> telemetryDataCache)
|
2021-09-17 16:24:01 +05:00
|
|
|
|
{
|
|
|
|
|
this.db = db;
|
|
|
|
|
this.telemetryService = telemetryService;
|
2022-11-15 17:44:48 +05:00
|
|
|
|
this.telemetryDataCache = telemetryDataCache;
|
2021-09-17 16:24:01 +05:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
/// <inheritdoc/>
|
2021-11-15 14:56:11 +05:00
|
|
|
|
public virtual async Task<int> UpdateDataAsync(string uid, IEnumerable<TDto> dtos, CancellationToken token = default)
|
2021-09-17 16:24:01 +05:00
|
|
|
|
{
|
|
|
|
|
if (dtos == default || !dtos.Any())
|
|
|
|
|
return 0;
|
2021-11-15 14:56:11 +05:00
|
|
|
|
|
2022-04-08 13:10:06 +05:00
|
|
|
|
var dtosList = dtos.OrderBy(d => d.DateTime).ToList();
|
2021-10-28 10:56:18 +05:00
|
|
|
|
|
2022-04-08 13:10:06 +05:00
|
|
|
|
var dtoMinDate = dtosList.First().DateTime;
|
|
|
|
|
var dtoMaxDate = dtosList.Last().DateTime;
|
2021-11-13 18:47:11 +05:00
|
|
|
|
|
|
|
|
|
if (dtosList.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
var duplicates = new List<TDto>(8);
|
|
|
|
|
for (int i = 1; i < dtosList.Count; i++)
|
2022-04-11 18:00:34 +05:00
|
|
|
|
if (dtosList[i].DateTime - dtosList[i - 1].DateTime < TimeSpan.FromMilliseconds(100))
|
2021-11-13 18:47:11 +05:00
|
|
|
|
duplicates.Add(dtosList[i - 1]);
|
2021-11-15 14:56:11 +05:00
|
|
|
|
foreach (var duplicate in duplicates)
|
2021-11-13 18:47:11 +05:00
|
|
|
|
dtosList.Remove(duplicate);
|
|
|
|
|
}
|
2022-01-10 18:12:31 +05:00
|
|
|
|
|
|
|
|
|
var idTelemetry = telemetryService.GetOrCreateTelemetryIdByUid(uid);
|
|
|
|
|
var timezone = telemetryService.GetTimezone(idTelemetry);
|
2021-12-30 17:05:44 +05:00
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
telemetryDataCache.AddRange(idTelemetry, dtos);
|
|
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
|
var entities = dtosList.Select(dto =>
|
|
|
|
|
{
|
|
|
|
|
var entity = Convert(dto, timezone.Hours);
|
|
|
|
|
entity.IdTelemetry = idTelemetry;
|
|
|
|
|
return entity;
|
|
|
|
|
});
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
2022-04-01 17:55:44 +05:00
|
|
|
|
var entityMaxDate = entities.Max(e => e.DateTime);
|
2022-10-31 15:21:53 +05:00
|
|
|
|
telemetryService.TelemetryTracker.SaveRequestDate(uid, entityMaxDate);
|
2021-12-24 10:38:14 +05:00
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
var dbset = db.Set<TEntity>();
|
2021-12-24 13:00:16 +05:00
|
|
|
|
var stopwatch = Stopwatch.StartNew();
|
2021-11-13 18:47:11 +05:00
|
|
|
|
try
|
2021-09-17 16:24:01 +05:00
|
|
|
|
{
|
2021-11-17 15:54:01 +05:00
|
|
|
|
return await db.Database.ExecInsertOrUpdateAsync(dbset, entities, token).ConfigureAwait(false);
|
2021-11-13 18:47:11 +05:00
|
|
|
|
}
|
2022-04-11 18:00:34 +05:00
|
|
|
|
catch (Exception ex)
|
2021-11-13 18:47:11 +05:00
|
|
|
|
{
|
2021-12-24 13:00:16 +05:00
|
|
|
|
stopwatch.Stop();
|
2021-12-30 17:05:44 +05:00
|
|
|
|
Trace.WriteLine($"Fail to save data telemetry " +
|
2021-12-24 13:00:16 +05:00
|
|
|
|
$"uid: {uid}, " +
|
|
|
|
|
$"idTelemetry {idTelemetry}, " +
|
|
|
|
|
$"count: {entities.Count()}, " +
|
2022-04-01 17:55:44 +05:00
|
|
|
|
$"dataDate: {entities.FirstOrDefault()?.DateTime}, " +
|
2021-12-24 13:00:16 +05:00
|
|
|
|
$"dbSaveDurationTime:{stopwatch.ElapsedMilliseconds}ms. " +
|
|
|
|
|
$"Message: {ex.Message}");
|
2021-11-15 14:56:11 +05:00
|
|
|
|
return 0;
|
2021-09-17 16:24:01 +05:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-11-15 17:44:48 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: It shouldn`t be nullable. Throw exceptions instead and return empty.
|
2022-11-08 17:49:04 +05:00
|
|
|
|
/// <inheritdoc/>
|
2022-11-15 17:44:48 +05:00
|
|
|
|
public virtual async Task<IEnumerable<TDto>?> GetOrDefaultAsync(int idWell,
|
2021-09-17 16:24:01 +05:00
|
|
|
|
DateTime dateBegin = default, double intervalSec = 600d,
|
2022-01-05 17:50:45 +05:00
|
|
|
|
int approxPointsCount = 1024, CancellationToken token = default)
|
2021-09-17 16:24:01 +05:00
|
|
|
|
{
|
2022-11-15 17:44:48 +05:00
|
|
|
|
var idTelemetry = telemetryService.GetOrDefaultIdTelemetryByIdWell(idWell) ?? -1;
|
2022-10-31 15:21:53 +05:00
|
|
|
|
if (idTelemetry == -1)
|
|
|
|
|
return null;
|
2021-11-22 11:30:08 +05:00
|
|
|
|
|
2022-01-05 17:50:45 +05:00
|
|
|
|
var timezone = telemetryService.GetTimezone(idTelemetry);
|
2021-12-30 17:05:44 +05:00
|
|
|
|
|
2021-12-03 17:34:24 +05:00
|
|
|
|
var filterByDateEnd = dateBegin != default;
|
2021-12-30 17:05:44 +05:00
|
|
|
|
DateTimeOffset dateBeginUtc;
|
2021-10-27 17:48:19 +05:00
|
|
|
|
if (dateBegin == default)
|
2021-10-28 11:12:03 +05:00
|
|
|
|
{
|
2022-10-31 15:21:53 +05:00
|
|
|
|
dateBeginUtc = telemetryService.GetLastTelemetryDate(idTelemetry)
|
|
|
|
|
.ToUtcDateTimeOffset(timezone.Hours);
|
2021-12-30 17:05:44 +05:00
|
|
|
|
if (dateBeginUtc != default)
|
|
|
|
|
dateBeginUtc = dateBeginUtc.AddSeconds(-intervalSec);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2022-01-05 17:50:45 +05:00
|
|
|
|
dateBeginUtc = dateBegin.ToUtcDateTimeOffset(timezone.Hours);
|
2021-12-30 17:05:44 +05:00
|
|
|
|
}
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
2021-12-30 17:05:44 +05:00
|
|
|
|
if (dateBeginUtc == default)
|
|
|
|
|
dateBeginUtc = DateTime.UtcNow.AddSeconds(-intervalSec);
|
2022-04-11 18:00:34 +05:00
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
var cacheData = telemetryDataCache.GetOrDefault(idTelemetry, dateBeginUtc.ToRemoteDateTime(timezone.Hours), intervalSec, approxPointsCount);
|
|
|
|
|
if (cacheData is not null)
|
|
|
|
|
return cacheData;
|
|
|
|
|
|
2021-12-30 17:05:44 +05:00
|
|
|
|
var dateEnd = dateBeginUtc.AddSeconds(intervalSec);
|
2022-11-15 17:44:48 +05:00
|
|
|
|
var dbSet = db.Set<TEntity>();
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
2021-11-22 11:30:08 +05:00
|
|
|
|
var query = dbSet
|
|
|
|
|
.Where(d => d.IdTelemetry == idTelemetry
|
2022-04-01 17:55:44 +05:00
|
|
|
|
&& d.DateTime >= dateBeginUtc);
|
2021-12-03 17:34:24 +05:00
|
|
|
|
|
|
|
|
|
if (filterByDateEnd)
|
2022-04-01 17:55:44 +05:00
|
|
|
|
query = query.Where(d => d.DateTime <= dateEnd);
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
|
|
|
|
var fullDataCount = await query.CountAsync(token)
|
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
if (fullDataCount == 0)
|
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
if (fullDataCount > 1.75 * approxPointsCount)
|
|
|
|
|
{
|
|
|
|
|
var m = (int)Math.Round(1d * fullDataCount / approxPointsCount);
|
|
|
|
|
if (m > 1)
|
2022-04-11 18:00:34 +05:00
|
|
|
|
query = query.Where((d) => (((d.DateTime.DayOfYear * 24 + d.DateTime.Hour) * 60 + d.DateTime.Minute) * 60 + d.DateTime.Second) % m == 0);
|
2021-09-17 16:24:01 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-29 17:05:27 +05:00
|
|
|
|
var entities = await query
|
2022-04-11 18:00:34 +05:00
|
|
|
|
.OrderBy(d => d.DateTime)
|
2021-09-29 17:05:27 +05:00
|
|
|
|
.AsNoTracking()
|
|
|
|
|
.ToListAsync(token)
|
|
|
|
|
.ConfigureAwait(false);
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
2022-01-05 17:50:45 +05:00
|
|
|
|
var dtos = entities.Select(e => Convert(e, timezone.Hours));
|
2022-04-11 18:00:34 +05:00
|
|
|
|
|
2021-09-17 16:24:01 +05:00
|
|
|
|
return dtos;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
public abstract TDto Convert(TEntity src, double timezoneOffset);
|
2021-09-17 16:24:01 +05:00
|
|
|
|
|
2022-11-15 17:44:48 +05:00
|
|
|
|
public abstract TEntity Convert(TDto src, double timezoneOffset);
|
2022-01-10 18:12:31 +05:00
|
|
|
|
|
2021-09-17 16:24:01 +05:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-11-15 17:44:48 +05:00
|
|
|
|
#nullable disable
|