123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- using AI.Common;
- using AI.Common.Log;
- using AIDiagnosis.Common.Enums;
- using AIDiagnosis.Common.Models;
- using AutoVTICalculationLib;
- using AutoVTIDiagnosisSDK;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.IO;
- using System.Threading;
- using Vinno.AI.AutoVTIDiagnosisSDK.Interfaces;
- using Vinno.AI.AutoVTIDiagnosisSDK.Models;
- using Vinno.AI.AutoVTIDiagnosisService.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;
- namespace Vinno.AI.AutoVTIDiagnosisService
- {
- public class AutoVTIDiagnosisService : IAutoVTIDiagnosisService, IDisposable, IEngine
- {
- private readonly string _modelFolder = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Networks");
- private readonly ConcurrentStack<byte[]> _singleImageCache;
- private PipeServer _singleImagePipeServer;
- private ImageProvider _imageProvider;
- private AutoVTIDiagnosis _autoVTIDiagnosis;
- private bool _disposed;
- public static List<FunctionInfo> AllFunctions { get; }
- static AutoVTIDiagnosisService()
- {
- AllFunctions = AutoVTIDiagnosis.AllFunctions;
- }
- public static void Init(FunctionInfo enableFunction, FunctionInfo currentUsedFunction)
- {
- AutoVTIDiagnosis.Init(enableFunction, currentUsedFunction);
- }
- public AutoVTIDiagnosisService()
- {
- try
- {
- _singleImageCache = new ConcurrentStack<byte[]>();
- _singleImagePipeServer = new PipeServer(AIDiagnosisSystemConsts.PipeForAutoVTIDiagnosisSingleImage);
- _singleImagePipeServer.LogMsgThrow += OnLogMsgThrow;
- _singleImagePipeServer.DataReceived += OnDataReceived;
- _singleImagePipeServer.StartAndReceive();
- _imageProvider = new ImageProvider(AIEnumType.AutoVTIDiagnosis);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-Constructor error:{ex}");
- }
- }
- private void OnDataReceived(object sender, byte[] e)
- {
- try
- {
- _singleImageCache.Push(e);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-OnDataReceived error:{ex}");
- }
- }
- public void Initialize(AutoVTIDiagnosisParameter autoVTIParameter, bool hasImageProvider)
- {
- try
- {
- CloseDiagnosis();
- var cpuNumber = autoVTIParameter.CPUNumber;
- var detectMode = (EnumDetectMode)autoVTIParameter.DetectMode;
- var detectTps = autoVTIParameter.DetectTps;
- var intervalTime = autoVTIParameter.IntervalTime;
- var cmPerPixel = autoVTIParameter.CmPerPixel;
- var isIncludeContour = autoVTIParameter.IsIncludeCountour;
- _autoVTIDiagnosis = new AutoVTIDiagnosis(Setting.Instance.IsSaveDetectImage, Setting.Instance.IsSaveAllImage, Logger.LogDir, hasImageProvider ? _imageProvider : null, cpuNumber, _modelFolder, cmPerPixel, detectMode, detectTps, intervalTime, isIncludeContour);
- _autoVTIDiagnosis.StartEvaluation += OnStartEvaluation;
- _autoVTIDiagnosis.FinishEvaluation += OnFinishEvaluation;
- _autoVTIDiagnosis.NotifyError += OnNotifyError;
- _autoVTIDiagnosis.NotifyLog += OnNotifyLog;
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-Initialize error:{ex}");
- }
- }
- /// <summary>
- /// 切换引擎
- /// </summary>
- /// <param name="functionInfo"></param>
- public void SwitchEngines(FunctionInfo functionInfo)
- {
- try
- {
- AutoVTIDiagnosis.SwitchAIEngines(functionInfo);
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.SwitchAIEngines2(functionInfo);
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-SwitchEngines error:{ex}");
- }
- }
- public void Start()
- {
- try
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.Start();
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-Start error:{ex}");
- }
- }
- public void Stop()
- {
- try
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.Stop();
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-Stop error:{ex}");
- }
- }
- public void SetDetectTps(int detectTps)
- {
- try
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.DetectTps = detectTps;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-SetDetectTps error:{ex}");
- }
- }
- public void SetIntervalTime(int intervalTime)
- {
- try
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.IntervalTime = intervalTime;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-SetIntervalTime error:{ex}");
- }
- }
- public void SetDetectMode(AIEnumDetectMode detectMode)
- {
- try
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.DetectMode = (EnumDetectMode)detectMode;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-SetDetectMode error:{ex}");
- }
- }
- /// <summary>
- /// 设置一个像素代表的实际物理距离是多少cm
- /// </summary>
- /// <param name="cmPerPixel"></param>
- public void SetCmPerPixel(float cmPerPixel)
- {
- try
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.CmPerPixel = cmPerPixel;
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-SetCmPerPixel error:{ex}");
- }
- }
- /// <summary>
- /// 检测单张Byte Image
- /// </summary>
- /// <param name="cmPerPixel">图像上一个像素实际代表的物理距离是多少cm</param>
- /// <returns></returns>
- public AIAutoVTICalcResult 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($"AutoVTIDiagnosisService-DetectOneByteImage Get Image Cache Fail");
- return null;
- }
- var autoVTICalculationResults = _autoVTIDiagnosis.DetectOneImage(byteImage, cmPerPixel);
- return AIConvertHelper.ConvertAutoVTICalcResultToAIAutoVTICalcResult(autoVTICalculationResults);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-DetectOneByteImage error:{ex}");
- return null;
- }
- }
- public AIAutoVTICalcResult 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($"AutoVTIDiagnosisService-DetectOneRawImage Get Image Cache Fail");
- return null;
- }
- var rawImage = new RawImage(byteImage, width, height, (EnumColorType)colorType);
- var autoVTICalculationResults = _autoVTIDiagnosis.DetectOneImage(rawImage, cmPerPixel);
- return AIConvertHelper.ConvertAutoVTICalcResultToAIAutoVTICalcResult(autoVTICalculationResults);
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-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($"AutoVTIDiagnosisService-SendRawImageData error:{ex}");
- }
- }
- /// <summary>
- /// Send Byte Image Data For Pipe
- /// </summary>
- public void SendByteImageData()
- {
- try
- {
- _imageProvider?.ReceiveByteImageData();
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-SendByteImageData error:{ex}");
- }
- }
- public void Close()
- {
- try
- {
- Logger.Info($"AutoVTIDiagnosisService-Close Invoke");
- CloseDiagnosis();
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-Close error:{ex}");
- }
- }
- private void CloseDiagnosis()
- {
- if (_autoVTIDiagnosis != null)
- {
- _autoVTIDiagnosis.StartEvaluation -= OnStartEvaluation;
- _autoVTIDiagnosis.FinishEvaluation -= OnFinishEvaluation;
- _autoVTIDiagnosis.NotifyError -= OnNotifyError;
- _autoVTIDiagnosis.NotifyLog -= OnNotifyLog;
- _autoVTIDiagnosis.Close();
- _autoVTIDiagnosis = null;
- }
- }
- public void Dispose()
- {
- try
- {
- if (!_disposed)
- {
- Logger.Info($"AutoVTIDiagnosisService-Start Dispose");
- CloseDiagnosis();
- if (_singleImagePipeServer != null)
- {
- _singleImagePipeServer.DataReceived -= OnDataReceived;
- _singleImagePipeServer.Dispose();
- _singleImagePipeServer.LogMsgThrow -= OnLogMsgThrow;
- _singleImagePipeServer = null;
- }
- _imageProvider.Dispose();
- _imageProvider = null;
- _disposed = true;
- Logger.Info($"AutoVTIDiagnosisService Dispose End");
- }
- }
- catch (Exception ex)
- {
- Logger.Error($"AutoVTIDiagnosisService-Dispose error:{ex}");
- }
- }
- private void OnStartEvaluation(object sender, EventArgs e)
- {
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoVTIDiagnosisStartEvaluationRaised, Params = e });
- }
- private void OnFinishEvaluation(object sender, AutoVTICalcResult e)
- {
- var aiAutoVTICalculationResults = AIConvertHelper.ConvertAutoVTICalcResultToAIAutoVTICalcResult(e);
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoVTIDiagnosisFinishEvaluationRaised, Params = aiAutoVTICalculationResults });
- }
- private void OnNotifyLog(object sender, LogEventArgs e)
- {
- if (e == null)
- {
- return;
- }
- switch (e.LogType)
- {
- case EnumLogType.InfoLog:
- Logger.Info($"AutoVTIDiagnosisService OnNotifyLog:{e.Msg}");
- break;
- case EnumLogType.WarnLog:
- Logger.Warning($"AutoVTIDiagnosisService OnNotifyLog:{e.Msg}");
- break;
- case EnumLogType.ErrorLog:
- case EnumLogType.FatalLog:
- default:
- Logger.Error($"AutoVTIDiagnosisService OnNotifyLog:{e.Msg}");
- break;
- }
- var logEventArgs = AICommonServiceConvertHelper.ConvertLogEventArgsToAILogEventArgs(e);
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoVTIDiagnosisNotifyLogRaised, Params = logEventArgs });
- }
- private void OnNotifyError(object sender, ErrorEventArgs e)
- {
- Logger.Error($"AutoVTIDiagnosisService OnNotifyError:{e.GetException()}");
- var logEventArgs = AICommonServiceConvertHelper.ConvertErrorEventArgsToAILogEventArgs(e);
- NotificationSender.SendNotification(new AINotificationArgs() { NotificationType = AIEnumNotificationType.AutoVTIDiagnosisNotifyLogRaised, 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;
- }
- }
- }
- }
|