123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- using AI.Common;
- using AI.Common.Log;
- using AIDiagnosis.Common.Enums;
- using AIDiagnosis.Common.Models;
- using AutoDFRCalculationLib;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.IO;
- using System.Threading;
- using Vinno.AI.AutoDFRDiagnosisSDK.Interfaces;
- using Vinno.AI.AutoDFRDiagnosisSDK.Models;
- using Vinno.AI.AutoDFRDiagnosisService.Tools;
- using Vinno.AI.CommonSDK.Enums;
- using Vinno.AI.CommonSDK.Models;
- using Vinno.AI.CommonSDK.Tools;
- using Vinno.AI.Service.Common.Interfaces;
- using Vinno.AI.Service.Common.Models;
- using Vinno.AI.Service.Common.Tools;
- using AutoDFRDiagnosis = AutoDFRDiagnosisSDK.AutoDFRDiagnosis;
- namespace Vinno.AI.AutoDFRDiagnosisService
- {
- public class AutoDFRDiagnosisService : IAutoDFRDiagnosisService, IDisposable, IEngine
- {
- private readonly string _modelFolder = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Networks");
- private readonly ConcurrentStack<byte[]> _singleImageCache;
- private PipeServer _singleImagePipeServer;
- private ImageProvider _imageProvider;
- private AutoDFRDiagnosis _autoDFRDiagnosis;
- private bool _disposed;
- public static List<FunctionInfo> AllFunctions { get; }
- static AutoDFRDiagnosisService()
- {
- AllFunctions = AutoDFRDiagnosis.AllFunctions;
- }
- public static void Init(FunctionInfo enableFunction, FunctionInfo currentUsedFunction)
- {
- AutoDFRDiagnosis.Init(enableFunction, currentUsedFunction);
- }
- public AutoDFRDiagnosisService()
- {
- try
- {
- _singleImageCache = new ConcurrentStack<byte[]>();
- _singleImagePipeServer = new PipeServer(AIDiagnosisSystemConsts.PipeForAutoDFRDiagnosisSingleImage);
- _singleImagePipeServer.LogMsgThrow += OnLogMsgThrow;
- _singleImagePipeServer.DataReceived += OnDataReceived;
- _singleImagePipeServer.StartAndReceive();
- _imageProvider = new ImageProvider(AIEnumType.AutoDFRDiagnosis);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-Constructor error:{ex}");
- }
- }
- public void Initialize(AutoDFRDiagnosisParameter autoDFRParameter, bool hasImageProvider)
- {
- try
- {
- CloseDiagnosis();
- var cpuNumber = autoDFRParameter.CPUNumber;
- var detectMode = (EnumDetectMode)autoDFRParameter.DetectMode;
- var detectTps = autoDFRParameter.DetectTps;
- var intervalTime = autoDFRParameter.IntervalTime;
- var cmPerPixel = autoDFRParameter.CmPerPixel;
- var isIncludeContour = autoDFRParameter.IsIncludeContour;
- _autoDFRDiagnosis = new AutoDFRDiagnosis(Setting.Instance.IsSaveDetectImage, Setting.Instance.IsSaveAllImage, Logger.LogDir, hasImageProvider ? _imageProvider : null, cpuNumber, _modelFolder, cmPerPixel, detectMode, detectTps, intervalTime, isIncludeContour);
- _autoDFRDiagnosis.StartEvaluation += OnStartEvaluation;
- _autoDFRDiagnosis.FinishEvaluation += OnFinishEvaluation;
- _autoDFRDiagnosis.NotifyError += OnNotifyError;
- _autoDFRDiagnosis.NotifyLog += OnNotifyLog;
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-Initialize error:{ex}");
- }
- }
- /// <summary>
- /// 切换引擎
- /// </summary>
- /// <param name="functionInfo"></param>
- public void SwitchEngines(FunctionInfo functionInfo)
- {
- try
- {
- AutoDFRDiagnosis.SwitchAIEngines(functionInfo);
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.SwitchAIEngines2(functionInfo);
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SwitchEngines error:{ex}");
- }
- }
- public void Start()
- {
- try
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.Start();
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-Start error:{ex}");
- }
- }
- public void Stop()
- {
- try
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.Stop();
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-Stop error:{ex}");
- }
- }
- public void SetDetectTps(int detectTps)
- {
- try
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.DetectTps = detectTps;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SetDetectTps error:{ex}");
- }
- }
- public void SetIntervalTime(int intervalTime)
- {
- try
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.IntervalTime = intervalTime;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SetIntervalTime error:{ex}");
- }
- }
- public void SetDetectMode(AIEnumDetectMode detectMode)
- {
- try
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.DetectMode = (EnumDetectMode)detectMode;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SetDetectMode error:{ex}");
- }
- }
- /// <summary>
- /// 设置一个像素代表的实际物理距离是多少cm
- /// </summary>
- /// <param name="cmPerPixel"></param>
- public void SetCmPerPixel(float cmPerPixel)
- {
- try
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.CmPerPixel = cmPerPixel;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SetCmPerPixel error:{ex}");
- }
- }
- /// <summary>
- /// 检测单张Byte Image
- /// </summary>
- /// <param name="cmPerPixel">图像上一个像素实际代表的物理距离是多少cm</param>
- /// <returns></returns>
- public AIAutoDFRCalcResult DetectOneByteImage(float cmPerPixel)
- {
- try
- {
- byte[] byteImage = null;
- int retryCount = 0;
- while (!_singleImageCache.TryPop(out byteImage) && retryCount < 50)
- {
- Thread.Sleep(10);
- retryCount++;
- }
- if (byteImage == null)
- {
- Logger.Error($"AutoDFRDiagnosisService-DetectOneByteImage Get Image Cache Fail");
- return null;
- }
- var autoDFRCalcResult = _autoDFRDiagnosis.DetectOneImage(byteImage, cmPerPixel);
- return AIConvertHelper.ConvertAutoDFRCalcResultToAIAutoDFRCalcResult(autoDFRCalcResult);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-DetectOneByteImage error:{ex}");
- return null;
- }
- }
- public AIAutoDFRCalcResult DetectOneRawImage(int height, int width, AIEnumColorType colorType, float cmPerPixel)
- {
- try
- {
- byte[] byteImage = null;
- int retryCount = 0;
- while (!_singleImageCache.TryPop(out byteImage) && retryCount < 50)
- {
- Thread.Sleep(10);
- retryCount++;
- }
- if (byteImage == null)
- {
- Logger.Error($"AutoDFRDiagnosisService-DetectOneRawImage Get Image Cache Fail");
- return null;
- }
- var rawImage = new RawImage(byteImage, width, height, (EnumColorType)colorType);
- var autoDFRCalcResult = _autoDFRDiagnosis.DetectOneImage(rawImage, cmPerPixel);
- return AIConvertHelper.ConvertAutoDFRCalcResultToAIAutoDFRCalcResult(autoDFRCalcResult);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-DetectOneRawImage error:{ex}");
- return null;
- }
- }
- /// <summary>
- /// Send Raw Image Data For Pipe
- /// </summary>
- /// <param name="height"></param>
- /// <param name="width"></param>
- /// <param name="colorType"></param>
- public void SendRawImageData(int height, int width, AIEnumColorType colorType)
- {
- try
- {
- _imageProvider?.ReceiveRawImageData(height, width, (EnumColorType)colorType);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SendRawImageData error:{ex}");
- }
- }
- /// <summary>
- /// Send Byte Image Data For Pipe
- /// </summary>
- public void SendByteImageData()
- {
- try
- {
- _imageProvider?.ReceiveByteImageData();
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-SendByteImageData error:{ex}");
- }
- }
- public void Close()
- {
- try
- {
- Logger.Info($"AutoDFRDiagnosisService-Close Invoke");
- CloseDiagnosis();
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-Close error:{ex}");
- }
- }
- private void CloseDiagnosis()
- {
- if (_autoDFRDiagnosis != null)
- {
- _autoDFRDiagnosis.StartEvaluation -= OnStartEvaluation;
- _autoDFRDiagnosis.FinishEvaluation -= OnFinishEvaluation;
- _autoDFRDiagnosis.NotifyError -= OnNotifyError;
- _autoDFRDiagnosis.NotifyLog -= OnNotifyLog;
- _autoDFRDiagnosis.Close();
- _autoDFRDiagnosis = null;
- }
- }
- public void Dispose()
- {
- try
- {
- if (!_disposed)
- {
- Logger.Info($"AutoDFRDiagnosisService-Start Dispose");
- CloseDiagnosis();
- if (_singleImagePipeServer != null)
- {
- _singleImagePipeServer.DataReceived -= OnDataReceived;
- _singleImagePipeServer.Dispose();
- _singleImagePipeServer.LogMsgThrow -= OnLogMsgThrow;
- _singleImagePipeServer = null;
- }
- _imageProvider.Dispose();
- _imageProvider = null;
- _disposed = true;
- Logger.Info($"AutoDFRDiagnosisService Dispose End");
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-Dispose error:{ex}");
- }
- }
- private void OnStartEvaluation(object sender, EventArgs e)
- {
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoDFRDiagnosisStartEvaluationRaised, Params = e });
- }
- private void OnFinishEvaluation(object sender, AutoDFRCalcResult e)
- {
- var aiAutoDFRCalcResult = AIConvertHelper.ConvertAutoDFRCalcResultToAIAutoDFRCalcResult(e);
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoDFRDiagnosisFinishEvaluationRaised, Params = aiAutoDFRCalcResult });
- }
- private void OnNotifyLog(object sender, LogEventArgs e)
- {
- if (e == null)
- {
- return;
- }
- switch (e.LogType)
- {
- case EnumLogType.InfoLog:
- Logger.Info($"AutoDFRDiagnosisService OnNotifyLog:{e.Msg}");
- break;
- case EnumLogType.WarnLog:
- Logger.Warning($"AutoDFRDiagnosisService OnNotifyLog:{e.Msg}");
- break;
- case EnumLogType.ErrorLog:
- case EnumLogType.FatalLog:
- default:
- Logger.Error($"AutoDFRDiagnosisService OnNotifyLog:{e.Msg}");
- break;
- }
- var logEventArgs = AICommonServiceConvertHelper.ConvertLogEventArgsToAILogEventArgs(e);
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoDFRDiagnosisNotifyLogRaised, Params = logEventArgs });
- }
- private void OnNotifyError(object sender, ErrorEventArgs e)
- {
- Logger.Error($"AutoDFRDiagnosisService OnNotifyError:{e.GetException()}");
- var logEventArgs = AICommonServiceConvertHelper.ConvertErrorEventArgsToAILogEventArgs(e);
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoDFRDiagnosisNotifyLogRaised, Params = logEventArgs });
- }
- private void OnLogMsgThrow(object sender, AILogEventArgs e)
- {
- if (e == null)
- {
- return;
- }
- switch (e.LogType)
- {
- case AIEnumLogType.ErrorLog:
- case AIEnumLogType.FatalLog:
- Logger.Error(e.Msg);
- break;
- case AIEnumLogType.WarnLog:
- Logger.Warning(e.Msg);
- break;
- case AIEnumLogType.InfoLog:
- default:
- Logger.Info(e.Msg);
- break;
- }
- }
- private void OnDataReceived(object sender, byte[] e)
- {
- try
- {
- _singleImageCache.Push(e);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoDFRDiagnosisService-OnDataReceived error:{ex}");
- }
- }
- }
- }
|