领胜LDS 键盘AOI检测项目
wells.liu
2020-07-07 5918194fccdb2a2303e713b8d2f3335243b9e2ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
using Bro.Common.Interface;
using Newtonsoft.Json;
using System;
using System.Threading;
 
namespace Bro.Common.Base
{
    public class InputConfigBase : IInputConfig
    {
        //public InputConfigBase()
        //{
        //    StateMachine.OnDeviceInput += OnDeviceInput;
        //}
 
        //[JsonIgnore]
        //public AutoResetEvent InputHanlder { get; set; } = new AutoResetEvent(false);
 
        // [JsonIgnore]
        //public string IConfigId = Guid.NewGuid().ToString();
 
        //[JsonIgnore]
        //public Dictionary<string, AutoResetEvent> InputHanlderDict { get; set; } = new Dictionary<string, AutoResetEvent>();
 
        //[JsonIgnore]
        //public Dictionary<string, bool> InputFlagDict { get; set; } = new Dictionary<string, bool>();
 
        //[JsonIgnore]
        //public ConcurrentDictionary<string, AutoResetEvent> InputHanlderDict { get; set; } = new ConcurrentDictionary<string, AutoResetEvent>();
 
        //[JsonIgnore]
        //public ConcurrentDictionary<string, bool> InputFlagDict { get; set; } = new ConcurrentDictionary<string, bool>();
 
        [JsonIgnore]
        public bool BoundFlag { get; set; } = false;
 
        public bool IsInputNeed { get; set; } = false;
 
        public string InputMethodName { get; set; }
 
        /// <summary>
        /// 第三方设备输入参数
        /// </summary>
        [JsonIgnore]
        public dynamic InputPara { get; set; }
 
        private string processId;
        [JsonIgnore]
        public string ProcessId
        {
            get
            {
                return processId;
            }
            set
            {
                if (processId != value)
                {
                    //仅在工序编号赋值后建立消息连接
                    processId = value;
 
                    //if (conn == null)
                    //{
                    //    conn = new HubConnection(GlobalVar.SignalRServer);
 
                    //    proxy = conn.CreateHubProxy("DeviceHub");
                    //    proxy.On<InputPara>("OnDeviceInput", OnDeviceInput);
 
                    //    conn.Start().Wait();
                    //}
                    //lock (this)
                    {
                        //InputHanlderDict[processId] = new AutoResetEvent(false);
                        //InputFlagDict[processId] = false;
                        //InputHanlderDict.AddOrUpdate(processId, new AutoResetEvent(false), (a, b) => { return new AutoResetEvent(false); });
                        //InputFlagDict.AddOrUpdate(processId, false, (a, b) => { return false; });
 
                        InputHandle = new AutoResetEvent(false);
                        //StateMachine.OnDeviceInput += OnDeviceInput;
                    }
 
                    //if (StateMachine.OnDeviceInput != null)
                    //{
                    //    var list = StateMachine.OnDeviceInput.GetInvocationList().ToList();
                    //    if (list != null)
                    //    {
                    //        if (!list.Any(d =>
                    //        {
                    //            InputConfigBase icb = d.Target as InputConfigBase;
                    //            return icb.ProcessId == ProcessId;
                    //        }))
                    //        {
                    //            StateMachine.OnDeviceInput += OnDeviceInput;
                    //        }
                    //    }
                    //    else
                    //    {
                    //        StateMachine.OnDeviceInput += OnDeviceInput;
                    //    }
                    //}
                    //else
                    //{
                    //StateMachine.OnDeviceInput += OnDeviceInput;
                    //PubSubCenter.GetInstance().Subscribe(processId, OnDeviceInput);
                    //}
                }
            }
        }
 
        [JsonIgnore]
        public AutoResetEvent InputHandle { get; set; } = new AutoResetEvent(false);
 
        public string ProcessName { get; set; }
 
 
 
        //HubConnection conn;
        //IHubProxy proxy;
 
        /// <summary>
        /// 适用于第三方的信号输入
        /// </summary>
        /// <param name="obj"></param>
        //private object OnDeviceInput(ISubscriber sub, object param1, object param2)
        private void OnDeviceInput(InputPara obj)
        {
            //Debug.WriteLine(DateTime.Now.ToString("mm:ss.fff") + "\t输入流程:" + obj.ProcessId + ";\t本流程编号:" + ProcessId);
            //输入参数必须有一个字段是ProcessId,保存工序编号
            //string processId = obj.ProcessId;
 
            //if (obj.ProcessId == ProcessId)
            //{
            //    InputPara = obj.ParaObj;
            //    InputHanlderDict[].Set();
            //    BoundFlag = false;
            //}
 
            //InputPara obj = param1 as InputPara;
 
            //lock (this)
            {
                try
                {
                    //if (InputHanlderDict.Keys.Contains(obj.ProcessId))
                    if (ProcessId == obj.ProcessId)
                    {
                        //Debug.WriteLine(DateTime.Now.ToString("mm:ss.fff") + "\t流程编号:" + obj.ProcessId);
                        //InputHanlderDict[obj.ProcessId].Set();
                        //InputFlagDict[obj.ProcessId] = true;
                        InputHandle.Set();
                        //InputHanlderDict.Remove(obj.ProcessId);
                        //StateMachine.OnDeviceInput -= OnDeviceInput;
                        //PubSubCenter.GetInstance().RemoveSubscriber(ProcessId, OnDeviceInput);
                    }
                }
                catch (Exception)
                {
                }
 
                //return null;
            }
        }
 
        public virtual void Dispose()
        {
            //foreach (var handle in InputHanlderDict)
            //{
            //    handle.Value.Set();
            //}
 
            //StateMachine.OnDeviceInput -= OnDeviceInput;
 
            //InputHanlderDict = new ConcurrentDictionary<string, AutoResetEvent>();
            //InputFlagDict = new ConcurrentDictionary<string, bool>();
 
            //GC.Collect();
        }
 
    }
 
    [Serializable]
    public class InputPara : IProcessID
    {
        public string ProcessId { get; set; }
 
        //[DataMember]
        public dynamic ParaObj { get; set; }
 
        public string ProcessName { get; set; }
    }
}