TopViewModel.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. using Aitex.Core.Common.DeviceData;
  2. using Aitex.Core.RT.Event;
  3. using Aitex.Core.Util;
  4. using Aitex.Core.WCF;
  5. using MECF.Framework.Common.DataCenter;
  6. using MECF.Framework.Common.Equipment;
  7. using MECF.Framework.Common.OperationCenter;
  8. using Prism.Commands;
  9. using Prism.Mvvm;
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Collections.ObjectModel;
  13. using System.Linq;
  14. using System.Text;
  15. using System.Threading;
  16. using System.Threading.Tasks;
  17. using System.Windows;
  18. using System.Windows.Threading;
  19. using CyberX8_Core;
  20. using CyberX8_MainPages.Unity;
  21. using CyberX8_Themes.UserControls;
  22. using MECF.Framework.Common.Utilities;
  23. using CyberX8_MainPages.Views;
  24. using System.Net.Sockets;
  25. using System.Net;
  26. namespace CyberX8_MainPages.ViewModels
  27. {
  28. internal class TopViewModel : BindableBase
  29. {
  30. #region 私有字段
  31. private string m_Title;
  32. private string m_SoftwareVersion;
  33. private List<string> m_RtDataKeys = new List<string>();
  34. private Dictionary<string, object> m_RtDataValues;
  35. //private string ModuleName;
  36. private ObservableCollection<EventItem> m_EventLogList = new ObservableCollection<EventItem>();
  37. private EventItem m_CurrentEventItem = new EventItem();
  38. private string m_CurrentEventItemValue;
  39. private object _lockObj = new object();
  40. private int m_EventLogListSelectedIndex;
  41. private Queue<EventItem> alarmQuery = new Queue<EventItem>();//控制alarm log 在 top UI显示
  42. private int logMaxCount = 50;//log在ui最多显示数量
  43. private AITSignalTowerData m_SignalTowerData;
  44. private string m_HostCommunicationStatus;
  45. private string m_TimeTick;
  46. //private JetChamber m_SelectedJetChamber = JetChamber.None;
  47. private bool _EFEMIsInstalled;
  48. private bool _PUF1IsInstalled;
  49. private bool _loader1Installed;
  50. private bool _transporter2Installed;
  51. private bool _transporter1Installed;
  52. private bool _srd1Installed;
  53. private bool _srd2Installed;
  54. private List<int> stopEntityId = new List<int>() { 17 };
  55. private string _systemControlIP;
  56. private string _toolID;
  57. private List<string> localIPs = new List<string>();
  58. private bool _isControlPermission;
  59. /// <summary>
  60. /// 用户名
  61. /// </summary>
  62. private string _userName;
  63. #endregion
  64. #region 属性
  65. public string Title
  66. {
  67. get { return m_Title; }
  68. set { SetProperty(ref m_Title, value); }
  69. }
  70. public string SoftwareVersion
  71. {
  72. get { return m_SoftwareVersion; }
  73. set { SetProperty(ref m_SoftwareVersion, value); }
  74. }
  75. public string SystemControlIP
  76. {
  77. get { return _systemControlIP; }
  78. set { SetProperty(ref _systemControlIP, value); }
  79. }
  80. public string ToolID
  81. {
  82. get { return _toolID; }
  83. set { SetProperty(ref _toolID, value); }
  84. }
  85. public string TimeTick
  86. {
  87. get { return m_TimeTick; }
  88. set { SetProperty(ref m_TimeTick, value); }
  89. }
  90. public Dictionary<string, object> RtDataValues
  91. {
  92. get { return m_RtDataValues; }
  93. set { SetProperty(ref m_RtDataValues, value); }
  94. }
  95. public ObservableCollection<EventItem> EventLogList
  96. {
  97. get { return m_EventLogList; }
  98. set { SetProperty(ref m_EventLogList, value); }
  99. }
  100. public EventItem CurrentEventItem
  101. {
  102. get { return m_CurrentEventItem; }
  103. set { SetProperty(ref m_CurrentEventItem, value); }
  104. }
  105. public int EventLogListSelectedIndex
  106. {
  107. get { return m_EventLogListSelectedIndex; }
  108. set { SetProperty(ref m_EventLogListSelectedIndex, value); }
  109. }
  110. public string CurrentEventItemValue
  111. {
  112. get { return m_CurrentEventItemValue; }
  113. set { SetProperty(ref m_CurrentEventItemValue, value); }
  114. }
  115. public AITSignalTowerData SignalTowerData
  116. {
  117. get { return m_SignalTowerData; }
  118. set { SetProperty(ref m_SignalTowerData, value); }
  119. }
  120. public string HostCommunicationStatusBackground
  121. {
  122. get
  123. {
  124. switch (HostCommunicationStatus)
  125. {
  126. case "Disabled":
  127. return "Yellow";
  128. case "Enabled":
  129. case "EnabledNotCommunicating":
  130. case "WaitCRA":
  131. case "WaitDelay":
  132. case "WaitCRFromHost":
  133. return "Transparent";
  134. case "EnabledCommunicating":
  135. return "LawnGreen";
  136. default:
  137. return "Yellow";
  138. }
  139. }
  140. }
  141. public string m_HostBack;
  142. public string HostBack
  143. {
  144. get { return m_HostBack; }
  145. set { SetProperty(ref m_HostBack, value); }
  146. }
  147. [Subscription("System.CommunicationStatus")]
  148. public string HostCommunicationStatus
  149. {
  150. get { return m_HostCommunicationStatus; }
  151. set
  152. {
  153. SetProperty(ref m_HostCommunicationStatus, value);
  154. }
  155. }
  156. public bool IsEnableFAEnable
  157. {
  158. get
  159. {
  160. return HostCommunicationStatus == "Disabled";
  161. }
  162. }
  163. public bool _IsEnableEnable;
  164. public bool IsEnableEnable
  165. {
  166. get { return _IsEnableEnable; }
  167. set { SetProperty(ref _IsEnableEnable, value); }
  168. }
  169. public bool _IsEnableDisable;
  170. public bool IsEnableDisable
  171. {
  172. get { return _IsEnableDisable; }
  173. set { SetProperty(ref _IsEnableDisable, value); }
  174. }
  175. public FACommunicationState FACommunicationState
  176. {
  177. get
  178. {
  179. return string.IsNullOrEmpty(HostCommunicationStatus) ? FACommunicationState.Disabled
  180. : (FACommunicationState)Enum.Parse(typeof(FACommunicationState), HostCommunicationStatus);
  181. }
  182. }
  183. public bool IsControlPermission
  184. {
  185. get { return _isControlPermission; }
  186. set { SetProperty(ref _isControlPermission, value); }
  187. }
  188. public bool EFEMIsInstalled
  189. {
  190. get { return _EFEMIsInstalled; }
  191. set { SetProperty(ref _EFEMIsInstalled, value); }
  192. }
  193. public bool PUF1IsInstalled
  194. {
  195. get { return _PUF1IsInstalled; }
  196. set { SetProperty(ref _PUF1IsInstalled, value); }
  197. }
  198. public bool Loader1IsInstalled
  199. {
  200. get { return _loader1Installed; }
  201. set { SetProperty(ref _loader1Installed, value); }
  202. }
  203. public bool Transporter2IsInstalled
  204. {
  205. get { return _transporter2Installed; }
  206. set { SetProperty(ref _transporter2Installed, value); }
  207. }
  208. public bool Transporter1IsInstalled
  209. {
  210. get { return _transporter1Installed; }
  211. set { SetProperty(ref _transporter1Installed, value); }
  212. }
  213. public bool Srd1IsInstalled
  214. {
  215. get { return _srd1Installed; }
  216. set { SetProperty(ref _srd1Installed, value); }
  217. }
  218. public bool Srd2IsInstalled
  219. {
  220. get { return _srd2Installed; }
  221. set { SetProperty(ref _srd2Installed, value); }
  222. }
  223. /// <summary>
  224. /// 用户名
  225. /// </summary>
  226. public string UserName
  227. {
  228. get { return _userName; }
  229. set { SetProperty(ref _userName, value); }
  230. }
  231. #endregion
  232. #region 命令
  233. private DelegateCommand _SwichLanguageCommand;
  234. public DelegateCommand SwichLanguageCommand =>
  235. _SwichLanguageCommand ?? (_SwichLanguageCommand = new DelegateCommand(OnSwitchLanguage));
  236. private DelegateCommand _ResetCommand;
  237. public DelegateCommand ResetCommand =>
  238. _ResetCommand ?? (_ResetCommand = new DelegateCommand(OnReset));
  239. private DelegateCommand _ClearCommand;
  240. public DelegateCommand ClearCommand =>
  241. _ClearCommand ?? (_ClearCommand = new DelegateCommand(OnClear));
  242. private DelegateCommand _SkipCommand;
  243. public DelegateCommand SkipCommand =>
  244. _SkipCommand ?? (_SkipCommand = new DelegateCommand(OnSkip));
  245. //private DelegateCommand _BuzzerOffCommand;
  246. //public DelegateCommand BuzzerOffCommand =>
  247. // _BuzzerOffCommand ?? (_BuzzerOffCommand = new DelegateCommand(OnBuzzerOff));
  248. private DelegateCommand _FADisableCommand;
  249. public DelegateCommand FADisableCommand =>
  250. _FADisableCommand ?? (_FADisableCommand = new DelegateCommand(FaDisable));
  251. private DelegateCommand _FAEnableCommand;
  252. public DelegateCommand FAEnableCommand =>
  253. _FAEnableCommand ?? (_FAEnableCommand = new DelegateCommand(FaEnable));
  254. private DelegateCommand _LogoutCommand;
  255. public DelegateCommand LogoutCommand =>
  256. _LogoutCommand ?? (_LogoutCommand = new DelegateCommand(OnLogout));
  257. private DelegateCommand _ControlPermissionCommand;
  258. public DelegateCommand ControlPermissionCommand =>
  259. _ControlPermissionCommand ?? (_ControlPermissionCommand = new DelegateCommand(ControlPermissionAction));
  260. private DelegateCommand _ControlReleaseCommand;
  261. public DelegateCommand ControlReleaseCommand =>
  262. _ControlReleaseCommand ?? (_ControlReleaseCommand = new DelegateCommand(ControlReleaseAction));
  263. #endregion
  264. #region 构造函数
  265. public TopViewModel()
  266. {
  267. string ipConfigFilter = QueryDataClient.Instance.Service.GetConfig($"System.ControlIPFilter").ToString();
  268. string hostName = Dns.GetHostName();
  269. IPHostEntry host = Dns.GetHostEntry(hostName);
  270. foreach (IPAddress ip in host.AddressList)
  271. {
  272. if (ip.AddressFamily == AddressFamily.InterNetwork && ip.ToString().Trim().StartsWith($"{ipConfigFilter}"))
  273. {
  274. localIPs.Add(ip.ToString());
  275. }
  276. }
  277. ToolID = QueryDataClient.Instance.Service.GetConfig($"System.ToolID").ToString();
  278. m_SoftwareVersion = System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();
  279. Dictionary<string,object> allModulesDictionary = QueryDataClient.Instance.Service.PollData(new List<string>() { "System.InstalledModules" });
  280. if (allModulesDictionary != null)
  281. {
  282. List<string> allModules = CommonFunction.GetValue<List<string>>(allModulesDictionary, "System.InstalledModules");
  283. EFEMIsInstalled = allModules.Contains("EFEM");
  284. PUF1IsInstalled = allModules.Contains("PUF1");
  285. Loader1IsInstalled = allModules.Contains("Loader1");
  286. Transporter1IsInstalled = allModules.Contains("Transporter1");
  287. Transporter2IsInstalled = allModules.Contains("Transporter2");
  288. Srd1IsInstalled = allModules.Contains("SRD1");
  289. Srd2IsInstalled = allModules.Contains("SRD2");
  290. }
  291. //ModuleName = "PMA";
  292. AddDataKeys();
  293. DispatcherTimer timer = new DispatcherTimer();
  294. timer.Interval = TimeSpan.FromSeconds(0.5);
  295. timer.Tick += timer_Tick;
  296. timer.Start();
  297. EventClient.Instance.OnEvent += Instance_OnEvent;
  298. EventClient.Instance.Start();
  299. Title = QueryDataClient.Instance.Service.GetConfig($"System.Name").ToString();
  300. UserName = GlobalUser.Instance.User.Name;
  301. }
  302. #endregion
  303. #region 方法
  304. void timer_Tick(object sender, EventArgs e)
  305. {
  306. TimeTick = DateTime.Now.ToString();
  307. RtDataValues = QueryDataClient.Instance.Service.PollData(m_RtDataKeys);
  308. if( RtDataValues != null )
  309. {
  310. SignalTowerData = CommonFunction.GetValue<AITSignalTowerData>(RtDataValues, $"System.SignalTower.DeviceData");
  311. HostCommunicationStatus = CommonFunction.GetValue<String>(RtDataValues, "System.CommunicationStatus");
  312. }
  313. //IsEnableEnable = FACommunicationState == CommunicationState.Disabled;
  314. //IsEnableDisable = FACommunicationState != CommunicationState.Disabled;
  315. HostBack = HostCommunicationStatusBackground;
  316. IsEnableEnable = (HostCommunicationStatus == FACommunicationState.Disabled.ToString());
  317. IsEnableDisable = (HostCommunicationStatus != FACommunicationState.Disabled.ToString());
  318. SystemControlIP = CommonFunction.GetValue<string>(RtDataValues, $"System.SystemControlIp");
  319. if (localIPs.Count > 0 && localIPs[0].Equals(SystemControlIP))
  320. {
  321. ControlPermission.Instance.Permission = true;
  322. IsControlPermission = true;
  323. }
  324. else
  325. {
  326. ControlPermission.Instance.Permission = false;
  327. IsControlPermission = false;
  328. }
  329. }
  330. private void OnSwitchLanguage()
  331. {
  332. List<ResourceDictionary> dictionaryList = new List<ResourceDictionary>();
  333. foreach (ResourceDictionary dictionary in Application.Current.Resources.MergedDictionaries)
  334. {
  335. if (dictionary.Source != null)
  336. {
  337. dictionaryList.Add(dictionary);
  338. }
  339. }
  340. string requestedCulture1 = @"/CyberX8_Themes;component/Languages/StringResources.en-US.xaml";
  341. string requestedCulture2 = @"/CyberX8_Themes;component/Languages/StringResources.zh-CN.xaml";
  342. ResourceDictionary resourceDictionary1 = dictionaryList.FirstOrDefault(d => d.Source.OriginalString.Equals(requestedCulture1));
  343. ResourceDictionary resourceDictionary2 = dictionaryList.FirstOrDefault(d => d.Source.OriginalString.Equals(requestedCulture2));
  344. if (dictionaryList.IndexOf(resourceDictionary1) < dictionaryList.IndexOf(resourceDictionary2))
  345. {
  346. Application.Current.Resources.MergedDictionaries.Remove(resourceDictionary1);
  347. Application.Current.Resources.MergedDictionaries.Add(resourceDictionary1);
  348. }
  349. else
  350. {
  351. Application.Current.Resources.MergedDictionaries.Remove(resourceDictionary2);
  352. Application.Current.Resources.MergedDictionaries.Add(resourceDictionary2);
  353. }
  354. }
  355. private void OnReset()
  356. {
  357. InvokeClient.Instance.Service.DoOperation("System.Reset");
  358. }
  359. private void AddDataKeys()
  360. {
  361. if (EFEMIsInstalled == true)
  362. {
  363. m_RtDataKeys.Add("EFEM.FsmState");
  364. }
  365. if(PUF1IsInstalled)
  366. {
  367. m_RtDataKeys.Add("PUF1.FsmState");
  368. }
  369. if(Loader1IsInstalled)
  370. {
  371. m_RtDataKeys.Add("Loader1.FsmState");
  372. }
  373. if(Transporter1IsInstalled)
  374. {
  375. m_RtDataKeys.Add("Transporter1.FsmState");
  376. }
  377. if(Transporter2IsInstalled)
  378. {
  379. m_RtDataKeys.Add("Transporter2.FsmState");
  380. }
  381. if(Srd1IsInstalled)
  382. {
  383. m_RtDataKeys.Add("SRD1.FsmState");
  384. }
  385. if(Srd2IsInstalled)
  386. {
  387. m_RtDataKeys.Add("SRD2.FsmState");
  388. }
  389. m_RtDataKeys.Add("SYSTEM.FsmState");
  390. m_RtDataKeys.Add("System.IsAutoMode");
  391. m_RtDataKeys.Add($"System.SignalTower.DeviceData");
  392. m_RtDataKeys.Add("System.CommunicationStatus");
  393. m_RtDataKeys.Add("System.SystemControlIp");
  394. }
  395. private void Instance_OnEvent(EventItem eventItem)
  396. {
  397. Unity.GlobalEvents.Instance.OnEventItemRaiseChanged(eventItem);
  398. switch (eventItem.Type)
  399. {
  400. case EventType.EventUI_Notify:
  401. Application.Current.Dispatcher.Invoke(delegate
  402. {
  403. EventLogList.Insert(0, eventItem);
  404. if (EventLogList.Count > logMaxCount)
  405. {
  406. EventLogList.RemoveAt(EventLogList.Count - 1);
  407. }
  408. if (eventItem.Level == EventLevel.Alarm)
  409. {
  410. alarmQuery.Enqueue(eventItem);
  411. //if (stopEntityId.Contains(eventItem.Id) && eventItem.Source.Contains("PM"))
  412. //{
  413. // InvokeClient.Instance.Service.DoOperation($"{eventItem.Source}.PmError");
  414. //}
  415. }
  416. if (alarmQuery.Count > 0)
  417. {
  418. CurrentEventItem = alarmQuery.Last();
  419. }
  420. else
  421. {
  422. CurrentEventItem = eventItem;
  423. }
  424. EventLogListSelectedIndex = 0;
  425. });
  426. break;
  427. case EventType.Dialog_Nofity:
  428. //PopDialog(obj);
  429. break;
  430. case EventType.KickOut_Notify:
  431. break;
  432. case EventType.Sound_Notify:
  433. break;
  434. case EventType.UIMessage_Notify:
  435. //PopUIMessage(obj);
  436. break;
  437. }
  438. }
  439. private void OnClear()
  440. {
  441. CurrentEventItem = null;
  442. alarmQuery.Clear();
  443. EventLogList.Clear();
  444. }
  445. private void OnSkip()
  446. {
  447. if (alarmQuery.Count > 0)
  448. {
  449. alarmQuery.Dequeue();
  450. if (alarmQuery.Count > 0)
  451. {
  452. CurrentEventItem = alarmQuery.First();
  453. }
  454. else
  455. {
  456. CurrentEventItem = null;
  457. }
  458. }
  459. }
  460. //private void OnBuzzerOff()
  461. //{
  462. // InvokeClient.Instance.Service.DoOperation($"{ModuleName}.SignalTower.SwitchOffBuzzer");
  463. //}
  464. public void FaDisable()
  465. {
  466. InvokeClient.Instance.Service.DoOperation($"FACommand", "FADisable");
  467. }
  468. public void FaEnable()
  469. {
  470. InvokeClient.Instance.Service.DoOperation($"FACommand", "FAEnable");
  471. }
  472. /// <summary>
  473. /// Logout
  474. /// </summary>
  475. private void OnLogout()
  476. {
  477. var _mainWindow = Application.Current.Windows.Cast<Window>().FirstOrDefault(window => window is Window) as Window;
  478. LogoutView heaterView = new LogoutView();
  479. heaterView.WindowStartupLocation = WindowStartupLocation.CenterScreen;
  480. heaterView.Owner = _mainWindow;
  481. heaterView.Show();
  482. }
  483. /// <summary>
  484. /// ControPermissionAction
  485. /// </summary>
  486. private void ControlPermissionAction()
  487. {
  488. if (localIPs.Count > 0)
  489. {
  490. InvokeClient.Instance.Service.DoOperation($"ApplySystemControl", localIPs[0]);
  491. }
  492. else
  493. {
  494. InvokeClient.Instance.Service.DoOperation($"ApplySystemControl","");
  495. }
  496. }
  497. /// <summary>
  498. /// ControPermissionRelease
  499. /// </summary>
  500. private void ControlReleaseAction()
  501. {
  502. if (localIPs.Count > 0)
  503. {
  504. InvokeClient.Instance.Service.DoOperation($"ReleaseSystemControl", localIPs[0]);
  505. }
  506. }
  507. #endregion
  508. }
  509. }