ErrorConf.cs 7.91 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using FLY.OBJComponents.Common;
using FLY.OBJComponents.IService;
using FObjBase;
using Misc;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.OBJComponents.Server
{
    public class ErrorConf
    {
        #region 延时推送 MARKNO
        const int MARKNO_DELAY_ISCONNECTED = 4;
        #endregion
19

20 21 22
        /// <summary>
        /// 需要设置
        /// </summary>
23
        PLCProxySystem PLCos;
24 25 26
        /// <summary>
        /// 报警系统
        /// </summary>
27
        WarningSystem2 mWarning;
28 29 30 31 32 33
        /// <summary>
        /// 报警码自动排号,再枚举IsError 属性,对应的异常会被设置为ErrCode, 然后ErrCode++
        /// </summary>
        public int ErrCode =0;

        class PlcDisconnectedErrMsg 
34
        {
35 36
            public int ErrCode;
            public string Description;
37
        }
38 39 40 41 42 43 44
        List<PlcDisconnectedErrMsg> plcDisconnectedErrMsgs = new List<PlcDisconnectedErrMsg>();

        public ErrorConf(PLCProxySystem PLCos, WarningSystem2 mWarning, string plcName) : this(PLCos, mWarning, new string[] { plcName })
        { 
        
        }
        
45
        public ErrorConf(PLCProxySystem PLCos, WarningSystem2 mWarning, string[] plcNames)
46 47 48 49 50 51 52 53 54
        {
            initialize(PLCos, mWarning, plcNames, PlcErrNos.Instance.ERRNO_PLC_DISCONNECTED.Code - (PLCos.PLCs.Count() - 1));
        }

        public ErrorConf(PLCProxySystem PLCos, WarningSystem2 mWarning, string[] plcNames, int plcErrCodeBegin)
        {
            initialize(PLCos, mWarning, plcNames, plcErrCodeBegin);
        }
        void initialize(PLCProxySystem PLCos, WarningSystem2 mWarning, string[] plcNames, int plcErrCodeBegin) 
55 56 57
        {
            this.PLCos = PLCos;
            this.mWarning = mWarning;
58 59 60 61

            //初始化 PLC连接断开的描述列表
            int plcCnt = PLCos.PLCs.Count();
            int errCode = plcErrCodeBegin;
62
            string descrption = PlcErrNos.Instance.ERRNO_PLC_DISCONNECTED.Description;
63 64 65 66 67 68 69 70
            for (int i = 0; i < plcCnt; i++)
            {
                plcDisconnectedErrMsgs.Add(new PlcDisconnectedErrMsg()
                {
                    ErrCode = errCode + i,
                    Description = $"{GetPlcName(plcCnt, i, plcNames)} " + descrption
                });
            }
71 72 73 74 75 76 77 78 79 80 81 82
        }
        #region 报警
        public class ErrorAction
        {
            public List<ErrorInfo> error_property;
            public object state;
            public delegate void ErrorHandler(ref string msg, object state);
            public ErrorHandler action;
        }
        public class ErrorInfo
        {
            public string property;
83
            public int code;
84 85 86 87
            public string msg;
        }
        Dictionary<INotifyPropertyChanged, ErrorAction> obj_error = new Dictionary<INotifyPropertyChanged, ErrorAction>();

88
        public void AddErrorAction(INotifyPropertyChanged sender, ErrorAction.ErrorHandler errorHandler = null, object state = null)
89 90 91 92 93 94 95 96 97
        {
            //反射找出全部是报警的property
            List<ErrorInfo> error_property = new List<ErrorInfo>();
            foreach (var propertyInfo in sender.GetType().GetProperties())
            {
                if (propertyInfo.GetCustomAttributes(typeof(IsErrorAttribute), false).Count() > 0)
                {
                    //肯定有,没有就让它出错!!!
                    string desp = (propertyInfo.GetCustomAttributes(typeof(DescriptionAttribute), false).First() as DescriptionAttribute).Description;
98 99
                    //报警如果是反向, 会被设置为放大=-1, 所以 最后属性 肯定是 true 时报警, offIsError没有用
                    
100 101 102 103
                    ErrorInfo errorInfo = new ErrorInfo()
                    {
                        property = propertyInfo.Name,
                        msg = desp,
104
                        code = ErrCode
105 106
                    };
                    error_property.Add(errorInfo);
107
                    ErrCode++;
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
                }
            }
            obj_error.Add(sender, new ErrorAction()
            {
                error_property = error_property,
                action = errorHandler,
                state = state
            });
        }

        /// <summary>
        /// 执行之前,需要调用 AddErrorAction, 向 obj_error 添加报警寄存器操作
        /// </summary>
        public void InitError()
        {
            foreach (var obj in obj_error.Keys)
            {
                obj.PropertyChanged += Obj_PropertyChanged_ForError;
            }

            //--------------------------------------------------------------------------------
            //添加任务
            foreach (var kv in obj_error)
            {
                string objname = PLCos.ObjNames.First(_kv => _kv.Value == kv.Key).Key;
                PLCos.SetPlan(objname, kv.Value.error_property.Select(ei => ei.property).ToArray(), 0);
            }

            //--------------------------------------------------------------------------------
137
            //连接断开事件, 3秒后再查一次,不能有复位的机会
138 139 140
            FObjBase.PollModule.Current.Poll_Config(PollModule.POLL_CONFIG.ADD,
                () =>
                {
141
                    for (int i = 0; i < PLCos.PLCs.Count(); i++)
142
                    {
143 144 145 146 147 148 149 150 151 152
                        int errcode = plcDisconnectedErrMsgs[i].ErrCode;
                        string description = plcDisconnectedErrMsgs[i].Description;

                        if (!PLCos.PLCs[i].Client.IsConnected)
                        {
                            mWarning.Add(errcode, description, canReset: false);
                        }
                        else {
                            mWarning.Remove(errcode);
                        }
153 154 155
                    }

                }, TimeSpan.FromSeconds(3), true, false, this, MARKNO_DELAY_ISCONNECTED, false);
156
        }
157 158

        string GetPlcName(int plcCnt, int index, string[] plcNames)
159
        {
160
            if (plcCnt == 1)
161 162 163 164 165
            {
                return plcNames[0];
            }

            //多个PLC
166
            if (plcCnt != plcNames.Count())
167 168 169 170
            {
                //没有定义全部名字
                return $"{plcNames[0]} No.{index + 1}";
            }
171

172 173
            return plcNames[index];
        }
174 175 176
        public void ResetError(INotifyPropertyChanged sender) 
        {
            var type = sender.GetType();
177
            foreach (var ei in obj_error[sender].error_property) 
178
            {
179 180 181 182 183 184 185 186
                var property = type.GetProperty(ei.property);
                property.SetValue(sender, false);
            }
        }
        public void ResetError()
        {
            foreach (var sender in obj_error.Keys) {
                ResetError(sender);
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
            }
        }
        void Obj_PropertyChanged_ForError(object sender, PropertyChangedEventArgs e)
        {
            ErrorAction errorAction = obj_error[sender as INotifyPropertyChanged];

            var eis = from ei in errorAction.error_property where ei.property == e.PropertyName select ei;
            if (eis.Count() > 0)
            {
                var ei = eis.First();

                //获取描述
                var type = sender.GetType();
                var property = type.GetProperty(ei.property);
                bool b = (bool)property.GetValue(sender, null);
202
                string description = ei.msg;
203
                int errcode = ei.code;//每个报警必须不一样!!
204

205 206 207 208 209 210 211 212 213 214
                if (b)
                {
                    //修改报警文字内容
                    errorAction.action?.Invoke(ref description, errorAction.state);
                    //报警, 不能被复位的!!!
                    mWarning.Add(errcode, description, canReset: false);
                }
                else {
                    mWarning.Remove(errcode);
                }
215 216 217 218 219
            }
        }
        #endregion     
    }
}