TopViewModel.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  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. return;
  311. }
  312. if( RtDataValues != null )
  313. {
  314. SignalTowerData = CommonFunction.GetValue<AITSignalTowerData>(RtDataValues, $"System.SignalTower.DeviceData");
  315. HostCommunicationStatus = CommonFunction.GetValue<String>(RtDataValues, "System.CommunicationStatus");
  316. }
  317. //IsEnableEnable = FACommunicationState == CommunicationState.Disabled;
  318. //IsEnableDisable = FACommunicationState != CommunicationState.Disabled;
  319. HostBack = HostCommunicationStatusBackground;
  320. IsEnableEnable = (HostCommunicationStatus == FACommunicationState.Disabled.ToString());
  321. IsEnableDisable = (HostCommunicationStatus != FACommunicationState.Disabled.ToString());
  322. SystemControlIP = CommonFunction.GetValue<string>(RtDataValues, $"System.SystemControlIp");
  323. if (localIPs.Count > 0 && localIPs[0].Equals(SystemControlIP))
  324. {
  325. ControlPermission.Instance.Permission = true;
  326. IsControlPermission = true;
  327. }
  328. else
  329. {
  330. ControlPermission.Instance.Permission = false;
  331. IsControlPermission = false;
  332. }
  333. }
  334. private void OnSwitchLanguage()
  335. {
  336. List<ResourceDictionary> dictionaryList = new List<ResourceDictionary>();
  337. foreach (ResourceDictionary dictionary in Application.Current.Resources.MergedDictionaries)
  338. {
  339. if (dictionary.Source != null)
  340. {
  341. dictionaryList.Add(dictionary);
  342. }
  343. }
  344. string requestedCulture1 = @"/CyberX8_Themes;component/Languages/StringResources.en-US.xaml";
  345. string requestedCulture2 = @"/CyberX8_Themes;component/Languages/StringResources.zh-CN.xaml";
  346. ResourceDictionary resourceDictionary1 = dictionaryList.FirstOrDefault(d => d.Source.OriginalString.Equals(requestedCulture1));
  347. ResourceDictionary resourceDictionary2 = dictionaryList.FirstOrDefault(d => d.Source.OriginalString.Equals(requestedCulture2));
  348. if (dictionaryList.IndexOf(resourceDictionary1) < dictionaryList.IndexOf(resourceDictionary2))
  349. {
  350. Application.Current.Resources.MergedDictionaries.Remove(resourceDictionary1);
  351. Application.Current.Resources.MergedDictionaries.Add(resourceDictionary1);
  352. }
  353. else
  354. {
  355. Application.Current.Resources.MergedDictionaries.Remove(resourceDictionary2);
  356. Application.Current.Resources.MergedDictionaries.Add(resourceDictionary2);
  357. }
  358. }
  359. private void OnReset()
  360. {
  361. InvokeClient.Instance.Service.DoOperation("System.Reset");
  362. }
  363. private void AddDataKeys()
  364. {
  365. if (EFEMIsInstalled == true)
  366. {
  367. m_RtDataKeys.Add("EFEM.FsmState");
  368. }
  369. if(PUF1IsInstalled)
  370. {
  371. m_RtDataKeys.Add("PUF1.FsmState");
  372. }
  373. if(Loader1IsInstalled)
  374. {
  375. m_RtDataKeys.Add("Loader1.FsmState");
  376. }
  377. if(Transporter1IsInstalled)
  378. {
  379. m_RtDataKeys.Add("Transporter1.FsmState");
  380. }
  381. if(Transporter2IsInstalled)
  382. {
  383. m_RtDataKeys.Add("Transporter2.FsmState");
  384. }
  385. if(Srd1IsInstalled)
  386. {
  387. m_RtDataKeys.Add("SRD1.FsmState");
  388. }
  389. if(Srd2IsInstalled)
  390. {
  391. m_RtDataKeys.Add("SRD2.FsmState");
  392. }
  393. m_RtDataKeys.Add("SYSTEM.FsmState");
  394. m_RtDataKeys.Add("System.IsAutoMode");
  395. m_RtDataKeys.Add($"System.SignalTower.DeviceData");
  396. m_RtDataKeys.Add("System.CommunicationStatus");
  397. m_RtDataKeys.Add("System.SystemControlIp");
  398. }
  399. private void Instance_OnEvent(EventItem eventItem)
  400. {
  401. Unity.GlobalEvents.Instance.OnEventItemRaiseChanged(eventItem);
  402. switch (eventItem.Type)
  403. {
  404. case EventType.EventUI_Notify:
  405. Application.Current.Dispatcher.Invoke(delegate
  406. {
  407. EventLogList.Insert(0, eventItem);
  408. if (EventLogList.Count > logMaxCount)
  409. {
  410. EventLogList.RemoveAt(EventLogList.Count - 1);
  411. }
  412. if (eventItem.Level == EventLevel.Alarm)
  413. {
  414. alarmQuery.Enqueue(eventItem);
  415. //if (stopEntityId.Contains(eventItem.Id) && eventItem.Source.Contains("PM"))
  416. //{
  417. // InvokeClient.Instance.Service.DoOperation($"{eventItem.Source}.PmError");
  418. //}
  419. }
  420. if (alarmQuery.Count > 0)
  421. {
  422. CurrentEventItem = alarmQuery.Last();
  423. }
  424. else
  425. {
  426. CurrentEventItem = eventItem;
  427. }
  428. EventLogListSelectedIndex = 0;
  429. });
  430. break;
  431. case EventType.Dialog_Nofity:
  432. //PopDialog(obj);
  433. break;
  434. case EventType.KickOut_Notify:
  435. break;
  436. case EventType.Sound_Notify:
  437. break;
  438. case EventType.UIMessage_Notify:
  439. //PopUIMessage(obj);
  440. break;
  441. }
  442. }
  443. private void OnClear()
  444. {
  445. CurrentEventItem = null;
  446. alarmQuery.Clear();
  447. EventLogList.Clear();
  448. }
  449. private void OnSkip()
  450. {
  451. if (alarmQuery.Count > 0)
  452. {
  453. alarmQuery.Dequeue();
  454. if (alarmQuery.Count > 0)
  455. {
  456. CurrentEventItem = alarmQuery.First();
  457. }
  458. else
  459. {
  460. CurrentEventItem = null;
  461. }
  462. }
  463. }
  464. //private void OnBuzzerOff()
  465. //{
  466. // InvokeClient.Instance.Service.DoOperation($"{ModuleName}.SignalTower.SwitchOffBuzzer");
  467. //}
  468. public void FaDisable()
  469. {
  470. InvokeClient.Instance.Service.DoOperation($"FACommand", "FADisable");
  471. }
  472. public void FaEnable()
  473. {
  474. InvokeClient.Instance.Service.DoOperation($"FACommand", "FAEnable");
  475. }
  476. /// <summary>
  477. /// Logout
  478. /// </summary>
  479. private void OnLogout()
  480. {
  481. var _mainWindow = Application.Current.Windows.Cast<Window>().FirstOrDefault(window => window is Window) as Window;
  482. LogoutView heaterView = new LogoutView();
  483. heaterView.WindowStartupLocation = WindowStartupLocation.CenterScreen;
  484. heaterView.Owner = _mainWindow;
  485. heaterView.Show();
  486. }
  487. /// <summary>
  488. /// ControPermissionAction
  489. /// </summary>
  490. private void ControlPermissionAction()
  491. {
  492. if (localIPs.Count > 0)
  493. {
  494. InvokeClient.Instance.Service.DoOperation($"ApplySystemControl", localIPs[0]);
  495. }
  496. else
  497. {
  498. InvokeClient.Instance.Service.DoOperation($"ApplySystemControl","");
  499. }
  500. }
  501. /// <summary>
  502. /// ControPermissionRelease
  503. /// </summary>
  504. private void ControlReleaseAction()
  505. {
  506. if (localIPs.Count > 0)
  507. {
  508. InvokeClient.Instance.Service.DoOperation($"ReleaseSystemControl", localIPs[0]);
  509. }
  510. }
  511. #endregion
  512. }
  513. }