LoaderCycleViewModel.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. using Aitex.Core.Common;
  2. using Aitex.Core.UI.MVVM;
  3. using Aitex.Core.Util;
  4. using Aitex.Core.Utilities;
  5. using LiveCharts;
  6. using MECF.Framework.Common.Beckhoff.AxisProvider;
  7. using MECF.Framework.Common.Beckhoff.Station;
  8. using MECF.Framework.Common.CommonData.PUF;
  9. using MECF.Framework.Common.DataCenter;
  10. using MECF.Framework.Common.OperationCenter;
  11. using MECF.Framework.Common.Utilities;
  12. using CyberX8_MainPages.Unity;
  13. using Prism.Mvvm;
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17. using System.Text;
  18. using System.Threading.Tasks;
  19. using System.Timers;
  20. using System.Windows.Input;
  21. using System.Windows.Threading;
  22. namespace CyberX8_MainPages.ViewModels
  23. {
  24. public class LoaderCycleViewModel : BindableBase
  25. {
  26. #region 常量
  27. #endregion
  28. #region 内部变量
  29. /// <summary>
  30. /// 模块名称
  31. /// </summary>
  32. private string _module = "";
  33. /// <summary>
  34. /// 定时器
  35. /// </summary>
  36. private DispatcherTimer _timer;
  37. /// <summary>
  38. /// RT查询key集合
  39. /// </summary>
  40. private List<string> _rtDataKeys = new List<string>();
  41. /// <summary>
  42. /// rt查询key数值字典
  43. /// </summary>
  44. private Dictionary<string, object> _rtDataValueDic = new Dictionary<string, object>();
  45. /// <summary>
  46. /// A面循环次数
  47. /// </summary>
  48. private string _sideACurrentCycle;
  49. /// <summary>
  50. /// A面当前状态
  51. /// </summary>
  52. private string _sideAState;
  53. /// <summary>
  54. /// A面总共循环次数
  55. /// </summary>
  56. private int _sideATotalCycle;
  57. /// <summary>
  58. /// A面当前步骤
  59. /// </summary>
  60. private string _sideACurrentStep;
  61. /// <summary>
  62. /// A面忽略LeakTest
  63. /// </summary>
  64. private bool _sideAIgnoreLeakTest;
  65. /// <summary>
  66. /// B面循环次数
  67. /// </summary>
  68. private string _sideBCurrentCycle;
  69. /// <summary>
  70. /// B面当前状态
  71. /// </summary>
  72. private string _sideBState;
  73. /// <summary>
  74. /// B面总共循环次数
  75. /// </summary>
  76. private int _sideBTotalCycle;
  77. /// <summary>
  78. /// B面当前步聚
  79. /// </summary>
  80. private string _sideBCurrentStep;
  81. /// <summary>
  82. /// B面忽略LeakTest
  83. /// </summary>
  84. private bool _sideBIgnoreLeakTest;
  85. #endregion
  86. #region 属性
  87. /// <summary>
  88. /// 模块名称
  89. /// </summary>
  90. public string Module
  91. {
  92. get { return _module; }
  93. set { SetProperty(ref _module, value); }
  94. }
  95. /// <summary>
  96. /// A面当前循环次数
  97. /// </summary>
  98. public string SideACurrentCycle
  99. {
  100. get { return _sideACurrentCycle; }
  101. set { SetProperty(ref _sideACurrentCycle, value);}
  102. }
  103. /// <summary>
  104. /// A面当前状态
  105. /// </summary>
  106. public string SideAState
  107. {
  108. get { return _sideAState; }
  109. set { SetProperty(ref _sideAState, value); }
  110. }
  111. /// <summary>
  112. /// A面总共循环次数
  113. /// </summary>
  114. public int SideATotalCycle
  115. {
  116. get { return _sideATotalCycle; }
  117. set { SetProperty(ref _sideATotalCycle, value); }
  118. }
  119. /// <summary>
  120. /// A面当前步骤
  121. /// </summary>
  122. public string SideACurrentStep
  123. {
  124. get { return _sideACurrentStep; }
  125. set { SetProperty(ref _sideACurrentStep, value); }
  126. }
  127. /// <summary>
  128. /// A面忽略LeakTest
  129. /// </summary>
  130. public bool SideAIgnoreLeakTest
  131. {
  132. get { return _sideAIgnoreLeakTest; }
  133. set { SetProperty(ref _sideAIgnoreLeakTest, value); }
  134. }
  135. /// <summary>
  136. /// B面当前循环次数
  137. /// </summary>
  138. public string SideBCurrentCycle
  139. {
  140. get { return _sideBCurrentCycle; }
  141. set { SetProperty(ref _sideBCurrentCycle, value); }
  142. }
  143. /// <summary>
  144. /// B面当前状态
  145. /// </summary>
  146. public string SideBState
  147. {
  148. get { return _sideBState; }
  149. set { SetProperty(ref _sideBState, value); }
  150. }
  151. /// <summary>
  152. /// B面总共循环次数
  153. /// </summary>
  154. public int SideBTotalCycle
  155. {
  156. get { return _sideBTotalCycle; }
  157. set { SetProperty(ref _sideBTotalCycle, value); }
  158. }
  159. /// <summary>
  160. /// B面当前步骤
  161. /// </summary>
  162. public string SideBCurrentStep
  163. {
  164. get { return _sideBCurrentStep; }
  165. set { SetProperty(ref _sideBCurrentStep, value); }
  166. }
  167. /// <summary>
  168. /// B面忽略LeakTest
  169. /// </summary>
  170. public bool SideBIgnoreLeakTest
  171. {
  172. get { return _sideBIgnoreLeakTest; }
  173. set { SetProperty(ref _sideBIgnoreLeakTest, value);}
  174. }
  175. #endregion
  176. #region 指令
  177. /// <summary>
  178. /// A面启动循环Command
  179. /// </summary>
  180. public ICommand SideAStartCycleCommand { get;private set; }
  181. /// <summary>
  182. /// A面启动循环Command
  183. /// </summary>
  184. public ICommand SideAStopCycleCommand { get; private set; }
  185. /// <summary>
  186. /// B面启动循环Command
  187. /// </summary>
  188. public ICommand SideBStartCycleCommand { get; private set; }
  189. /// <summary>
  190. /// B面启动循环Command
  191. /// </summary>
  192. public ICommand SideBStopCycleCommand { get; private set; }
  193. #endregion
  194. /// <summary>
  195. /// 构造函数
  196. /// </summary>
  197. public LoaderCycleViewModel()
  198. {
  199. SideAStartCycleCommand = new DelegateCommand<object>(SideAStartCycleAction);
  200. SideAStopCycleCommand = new DelegateCommand<object>(SideAStopCycleAction);
  201. SideBStartCycleCommand = new DelegateCommand<object>(SideBStartCycleAction);
  202. SideBStopCycleCommand = new DelegateCommand<object>(SideBStopCycleAction);
  203. }
  204. /// <summary>
  205. /// 加载数据
  206. /// </summary>
  207. public void LoadData(string systemName)
  208. {
  209. Module = systemName;
  210. if (_timer == null)
  211. {
  212. _timer = new DispatcherTimer();
  213. _timer.Interval = TimeSpan.FromMilliseconds(100);
  214. _timer.Tick += Timer_Tick; ;
  215. }
  216. _rtDataKeys.Add($"{Module}.SideA.CurrentCycle");
  217. _rtDataKeys.Add($"{Module}.SideA.CurrentCycleStep");
  218. _rtDataKeys.Add($"{Module}.SideB.CurrentCycle");
  219. _rtDataKeys.Add($"{Module}.SideB.CurrentCycleStep");
  220. _timer.Start();
  221. }
  222. /// <summary>
  223. /// 定时器执行
  224. /// </summary>
  225. /// <param name="sender"></param>
  226. /// <param name="e"></param>
  227. private void Timer_Tick(object sender, EventArgs e)
  228. {
  229. if (_rtDataKeys.Count != 0)
  230. {
  231. _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  232. if (_rtDataValueDic != null)
  233. {
  234. SideACurrentCycle = CommonFunction.GetValue<string>(_rtDataValueDic, $"{Module}.SideA.CurrentCycle");
  235. SideBCurrentCycle = CommonFunction.GetValue<string>(_rtDataValueDic, $"{Module}.SideB.CurrentCycle");
  236. SideACurrentStep = CommonFunction.GetValue<string>(_rtDataValueDic, $"{Module}.SideA.CurrentCycleStep");
  237. SideBCurrentStep = CommonFunction.GetValue<string>(_rtDataValueDic, $"{Module}.SideB.CurrentCycleStep");
  238. }
  239. }
  240. }
  241. /// <summary>
  242. /// 隐藏
  243. /// </summary>
  244. public void Hide()
  245. {
  246. if (_timer != null)
  247. {
  248. _timer.Stop();
  249. }
  250. }
  251. #region Action
  252. private void SideAStartCycleAction(object param)
  253. {
  254. InvokeClient.Instance.Service.DoOperation($"{Module}.SideA.StartCycle",SideATotalCycle, SideAIgnoreLeakTest);
  255. }
  256. private void SideAStopCycleAction(object param)
  257. {
  258. InvokeClient.Instance.Service.DoOperation($"{Module}.SideA.StopCycle");
  259. }
  260. private void SideBStartCycleAction(object param)
  261. {
  262. InvokeClient.Instance.Service.DoOperation($"{Module}.SideB.StartCycle",SideBTotalCycle, SideBIgnoreLeakTest);
  263. }
  264. private void SideBStopCycleAction(object param)
  265. {
  266. InvokeClient.Instance.Service.DoOperation($"{Module}.SideB.StopCycle");
  267. }
  268. #endregion
  269. }
  270. }