OnInitError.cs 4.46 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12
using FLY.OBJComponents.IService;
using MultiLayout.UiModule; 
using Misc;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using FLY.Thick.Base.UI;
using Unity;
13
using FLY.Thick.Base.Common;
潘栩锋's avatar
潘栩锋 committed
14 15 16

namespace FLY.Thick.Base.UI.OnInit
{
潘栩锋's avatar
潘栩锋 committed
17 18 19 20 21 22

    /// <summary>
    /// ERRNOs.Instance.SCAN_ERRNO_OVERCTRL
    /// ERRNOs.Instance.SCAN_ERRNO_OVERTOL
    /// 扫描报警时,全屏显示
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
23 24 25 26 27 28
    public class OnInitError : IOnInit
    {
        #region 延时推送 MARKNO
        const int MARKNO_WARNING_RING = 1;
        #endregion

29
        FLY.OBJComponents.IService.IWarningSystem2Service warningService;
潘栩锋's avatar
潘栩锋 committed
30 31 32
        ParamDictionary paramDictionary;
        IUnityContainer container;

33 34
        bool enableScanErrBigTip;
        int warningTipId=-1;
潘栩锋's avatar
潘栩锋 committed
35 36 37 38
        public int Level { get; }
        public OnInitError(
            IUnityContainer container,
            ParamDictionary paramDictionary, 
39
            FLY.OBJComponents.IService.IWarningSystem2Service warningService,
潘栩锋's avatar
潘栩锋 committed
40 41 42 43 44 45
            int lv = 1) 
        {
            Level = lv;
            this.container = container;
            this.paramDictionary = paramDictionary;
            this.warningService = warningService;
46

潘栩锋's avatar
潘栩锋 committed
47 48 49 50 51
        }
        public void OnInit()
        {
            paramDictionary.ValueChanged += ParamDictionary_ValueChanged;

52
            warningService.PropertyChanged += WarningService_PropertyChanged;
53 54

            updateErrCodesOfTip();
55 56


潘栩锋's avatar
潘栩锋 committed
57
        }
58
    
潘栩锋's avatar
潘栩锋 committed
59

60 61 62 63 64 65 66 67 68 69 70 71
        private void WarningService_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
        {
            if (e.PropertyName == nameof(warningService.ReasonList)) {
                if (!enableScanErrBigTip)
                    return;

                FObjBase.PollModule.Current.Poll_JustOnce(
                    new FObjBase.PollModule.PollHandler(delegate ()
                    {
                        List<int> errCodes = new List<int> { ERRNOs.Instance.SCAN_ERRNO_OVERCTRL.Code, ERRNOs.Instance.SCAN_ERRNO_OVERTOL.Code };

                        var record = warningService.ReasonList;
72 73 74 75 76 77 78 79 80 81 82 83 84
                        if (record == null)
                        {
                            //什么报警都没有
                            //不需要提示
                            if (warningTipId != -1)
                            {
                                //需要把之前的报警关闭
                                FLY.ControlLibrary.Window_WarningTip.Stop(warningTipId);
                                warningTipId = -1;
                            }
                            return;
                        }

85 86 87
                        var rs = from r in record where errCodes.Contains(r.ErrCode) select r;
                        if (rs.Count() == 0)
                        {
88 89
                            //不需要提示
                            if (warningTipId != -1)
90
                            {
91 92
                                //需要把之前的报警关闭
                                FLY.ControlLibrary.Window_WarningTip.Stop(warningTipId);
93 94
                                warningTipId = -1;
                            }
95
                            return;
96
                        }
97 98 99
  
                        int errcode = rs.First().ErrCode;
                        string msg = rs.First().Description;
100

101
                        string path = paramDictionary.GetValue<string>(ParamDistItemKeys.WarningTipPath);
102 103 104 105 106 107 108 109 110 111

                        //报警!!!!!!!!
                        //记录打开的报警提示框Id,用于以后关闭
                        warningTipId = FLY.ControlLibrary.Window_WarningTip.Show(
                                $"编码={errcode}",
                                msg,
                                TimeSpan.MaxValue,
                                path,
                                warningService.Reset
                                );
112
                        
113 114 115 116
                    }), this, MARKNO_WARNING_RING);
            }
        }

潘栩锋's avatar
潘栩锋 committed
117 118
        private void ParamDictionary_ValueChanged(object sender, ParamDictionaryValueChangedEventArgs e)
        {
119
            if (e.Key == ParamDistItemKeys.EnableScanErrBigTip)
潘栩锋's avatar
潘栩锋 committed
120 121 122 123 124 125 126 127
            {
                updateErrCodesOfTip();
            }
        }


        void updateErrCodesOfTip()
        {
128
            enableScanErrBigTip = paramDictionary.GetValue(ParamDistItemKeys.EnableScanErrBigTip, false);
潘栩锋's avatar
潘栩锋 committed
129 130 131 132

        }
    }
}