DataHistoryViewModel.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. using Aitex.Core.RT.DataCenter;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.UI.ControlDataContext;
  4. using ControlzEx.Standard;
  5. using LiveCharts.Wpf;
  6. using MECF.Framework.Common.CommonData;
  7. using MECF.Framework.Common.ControlDataContext;
  8. using MECF.Framework.Common.DataCenter;
  9. using Newtonsoft.Json;
  10. using OpenSEMI.ClientBase;
  11. using Prism.Commands;
  12. using Prism.Mvvm;
  13. using System;
  14. using System.Collections.Concurrent;
  15. using System.Collections.Generic;
  16. using System.Collections.ObjectModel;
  17. using System.Data;
  18. using System.Linq;
  19. using System.Text;
  20. using System.Threading.Tasks;
  21. using System.Windows;
  22. using System.Windows.Forms;
  23. using System.Windows.Input;
  24. using System.Windows.Media;
  25. using System.Windows.Threading;
  26. using System.Xml;
  27. using CyberX8_MainPages.Unity;
  28. using CyberX8_MainPages.Views;
  29. using WPF.Themes.UserControls;
  30. using Xceed.Wpf.DataGrid;
  31. namespace CyberX8_MainPages.ViewModels
  32. {
  33. public class DataHistoryViewModel : BindableBase
  34. {
  35. #region 私有字段
  36. private DataHistoryView DataHistoryView;
  37. private ObservableCollection<ParameterNode> _ParameterNodes;
  38. RealtimeProvider _provider = new RealtimeProvider();
  39. private object _lockSelection = new object();
  40. ConcurrentBag<QueryIndexer> _lstTokenTimeData = new ConcurrentBag<QueryIndexer>();
  41. ObservableCollection<string> m_Keys=new ObservableCollection<string> ();
  42. ObservableCollection<KeyData> m_KeyDataObservableCollection = new ObservableCollection<KeyData>();
  43. DispatcherTimer timer = new DispatcherTimer();
  44. public List<SolidColorBrush> solidColorBrushes = new List<SolidColorBrush> ();
  45. DateTime currentTime;
  46. private bool firstFlag = true;
  47. private DateTime startTime=DateTime.Now;
  48. #endregion
  49. #region 属性
  50. public ObservableCollection<KeyData> OldKeyDataCollection { get; set; }
  51. public ObservableCollection<ParameterNode> ParameterNodes
  52. {
  53. get { return _ParameterNodes; }
  54. set { SetProperty(ref _ParameterNodes, value); }
  55. }
  56. public ObservableCollection<string> Keys
  57. {
  58. get { return m_Keys; }
  59. set { SetProperty(ref m_Keys, value); }
  60. }
  61. public ObservableCollection<KeyData> KeyDataObservableCollection
  62. {
  63. get { return m_KeyDataObservableCollection; }
  64. set { SetProperty(ref m_KeyDataObservableCollection, value); }
  65. }
  66. #endregion
  67. #region 命令
  68. private DelegateCommand<object> _LoadCommand;
  69. public DelegateCommand<object> LoadCommand =>
  70. _LoadCommand ?? (_LoadCommand = new DelegateCommand<object>(OnLoad));
  71. private DelegateCommand _UnLoadCommand;
  72. public DelegateCommand UnLoadCommand =>
  73. _UnLoadCommand ?? (_UnLoadCommand = new DelegateCommand(OnUnLoad));
  74. private DelegateCommand<object> _ParameterCheckCommand;
  75. public DelegateCommand<object> ParameterCheckCommand =>
  76. _ParameterCheckCommand ?? (_ParameterCheckCommand = new DelegateCommand<object>(OnParameterCheck));
  77. private DelegateCommand _StartCommand;
  78. public DelegateCommand StartCommand =>
  79. _StartCommand ?? (_StartCommand = new DelegateCommand(OnStart));
  80. private DelegateCommand _ClearCommand;
  81. public DelegateCommand ClearCommand =>
  82. _ClearCommand ?? (_ClearCommand = new DelegateCommand(OnClear));
  83. private DelegateCommand<object> _StartRealTimeCommand;
  84. public DelegateCommand<object> StartRealTimeCommand =>
  85. _StartRealTimeCommand ?? (_StartRealTimeCommand = new DelegateCommand<object>(OnStartRealTime));
  86. private DelegateCommand _StopRealTimeCommand;
  87. public DelegateCommand StopRealTimeCommand =>
  88. _StopRealTimeCommand ?? (_StopRealTimeCommand = new DelegateCommand(OnStopRealTime));
  89. #endregion
  90. #region 构造函数
  91. public DataHistoryViewModel()
  92. {
  93. OldKeyDataCollection = new ObservableCollection<KeyData>();
  94. ParameterNodes = _provider.GetParameters();
  95. timer.Interval = TimeSpan.FromSeconds(1);
  96. timer.Tick += Timer_Tick;
  97. solidColorBrushes.Add(new SolidColorBrush (Colors.Green));
  98. solidColorBrushes.Add(new SolidColorBrush(Colors.Red));
  99. solidColorBrushes.Add(new SolidColorBrush(Colors.Blue));
  100. solidColorBrushes.Add(new SolidColorBrush(Colors.Orange));
  101. solidColorBrushes.Add(new SolidColorBrush(Colors.Yellow));
  102. solidColorBrushes.Add(new SolidColorBrush(Colors.YellowGreen));
  103. solidColorBrushes.Add(new SolidColorBrush(Colors.AliceBlue));
  104. solidColorBrushes.Add(new SolidColorBrush(Colors.Chocolate));
  105. solidColorBrushes.Add(new SolidColorBrush(Colors.Cyan));
  106. solidColorBrushes.Add(new SolidColorBrush(Colors.DarkGreen));
  107. }
  108. #endregion
  109. #region 命令方法
  110. private void OnLoad(Object eventView)
  111. {
  112. if (firstFlag)
  113. {
  114. this.DataHistoryView = (DataHistoryView)eventView;
  115. this.DataHistoryView.wfTimeFrom.Value = DateTime.Today;
  116. this.DataHistoryView.wfTimeTo.Value = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, 23, 59, 59, 999);
  117. //this.DataHistoryView.MyDrawGraphicsControl.PointCollections=new PointCollection(new Point[] {})
  118. }
  119. }
  120. private void OnUnLoad()
  121. {
  122. GC.Collect(); // This should pick up the control removed at a previous MouseDown
  123. GC.WaitForPendingFinalizers(); // Doesn't help either
  124. GC.Collect();
  125. GC.WaitForPendingFinalizers(); // Doesn't help either
  126. }
  127. private void OnParameterCheck(object obj)
  128. {
  129. startTime= DateTime.Now;
  130. ParameterNode node = obj as ParameterNode;
  131. if (!RefreshTreeStatusToChild(node))
  132. {
  133. node.Selected = !node.Selected;
  134. }
  135. else
  136. {
  137. RefreshTreeStatusToParent(node);
  138. }
  139. Keys.Clear();
  140. for (int i = 0; i < ParameterNodes.Count; i++)
  141. {
  142. CalKeys(ParameterNodes[i]);
  143. }
  144. OldKeyDataCollection.Clear();
  145. OldKeyDataCollection = DeepCopyJson(KeyDataObservableCollection);
  146. KeyDataObservableCollection.Clear();
  147. for (int i = 0; i < Keys.Count; i++)
  148. {
  149. if (i == 10)
  150. {
  151. break;
  152. }
  153. KeyDataObservableCollection.Add(new KeyData() { Key = Keys[i], Color = solidColorBrushes[i],UniqueId=i });
  154. }
  155. Compare(OldKeyDataCollection, KeyDataObservableCollection);
  156. KeyDataObservableCollection = DeepCopyJson(OldKeyDataCollection);
  157. }
  158. public void Compare(ObservableCollection<KeyData> olddata, ObservableCollection<KeyData> newdata)
  159. {
  160. if (newdata != null)
  161. {
  162. for (int i = 0; i < newdata.Count; i++)
  163. {
  164. var lists = olddata.ToList().Find(t => t.Key == newdata[i].Key);
  165. if (lists == null)
  166. {
  167. olddata.Add(new KeyData() { Key = newdata[i].Key, Color = solidColorBrushes[i], UniqueId = olddata.Count + 1 });
  168. }
  169. }
  170. for (int i = 0; i < olddata.Count; i++)
  171. {
  172. var lists = newdata.ToList().Find(t => t.Key == olddata[i].Key);
  173. if (lists == null)
  174. {
  175. olddata.Remove(olddata[i]);
  176. }
  177. }
  178. }
  179. }
  180. public static T DeepCopyJson<T>(T obj)
  181. {
  182. // 序列化
  183. string json = JsonConvert.SerializeObject(obj);
  184. // 反序列化
  185. return JsonConvert.DeserializeObject<T>(json);
  186. }
  187. private void OnStartRealTime(object obj)
  188. {
  189. if (Keys.Count > 10)
  190. {
  191. ((System.Windows.Controls.CheckBox)obj).IsChecked= false;
  192. timer.Stop();
  193. WPFMessageBox.ShowWarning("最多显示10个数据");
  194. return;
  195. }
  196. currentTime = DateTime.Now;
  197. timer.Start();
  198. }
  199. private void OnStopRealTime()
  200. {
  201. timer.Stop();
  202. }
  203. public void OnStart()
  204. {
  205. if (Keys.Count > 10)
  206. {
  207. WPFMessageBox.ShowWarning("最多显示10个数据");
  208. return;
  209. }
  210. this.DataHistoryView.MyDrawGraphicsControl.ClearPlotPoints();
  211. var result = GetData(Keys.Distinct().ToList(), this.DataHistoryView.wfTimeFrom.Value, this.DataHistoryView.wfTimeTo.Value);
  212. if (result == null)
  213. {
  214. return;
  215. }
  216. List<PointCollection> cls = new List<PointCollection>();
  217. for (int i = 0; i < Keys.Count; i++)
  218. {
  219. PointCollection points = new PointCollection();
  220. int k = 1;
  221. result[Keys[i]].ForEach(point =>
  222. {
  223. points.Add(new Point() { X = point.dateTime.ToOADate(), Y = point.value });
  224. k += 1;
  225. });
  226. cls.Add(points);
  227. }
  228. for (int i = 0; i < KeyDataObservableCollection.Count(); i++)
  229. {
  230. var _color = KeyDataObservableCollection[i].Color.Color;
  231. this.DataHistoryView.MyDrawGraphicsControl.m_PenCollencteions[i] = new System.Drawing.Pen(System.Drawing.Color.FromArgb(_color.A, _color.R, _color.G, _color.B), 2);
  232. }
  233. this.DataHistoryView.MyDrawGraphicsControl.PointCollections = cls;
  234. this.DataHistoryView.MyDrawGraphicsControl.FitControl();
  235. this.DataHistoryView.MyDrawGraphicsControl.YPoints.Clear();
  236. var item = QueryDataClient.Instance.Service.GetHistorySteps(this.DataHistoryView.wfTimeFrom.Value, this.DataHistoryView.wfTimeTo.Value);
  237. if (item != null)
  238. {
  239. item.ForEach(x =>
  240. {
  241. this.DataHistoryView.MyDrawGraphicsControl.YPoints.Add(new CyberX8_Core.StepItem() { StartValue = x.StartTime.ToOADate(), Information = $"{x.RecipeId}:{x.StepNo}" });
  242. });
  243. }
  244. }
  245. private void CloseAll(ObservableCollection<ParameterNode> parameterNodes)
  246. {
  247. foreach (var item in parameterNodes)
  248. {
  249. item.Selected = false;
  250. if (item.ChildNodes.Count > 0)
  251. {
  252. CloseAll(item.ChildNodes);
  253. }
  254. }
  255. }
  256. private void OnClear()
  257. {
  258. this.DataHistoryView.MyDrawGraphicsControl.ClearPlotPoints();
  259. this.DataHistoryView.MyDrawGraphicsControl.YPoints = new List<CyberX8_Core.StepItem>();
  260. KeyDataObservableCollection.Clear();
  261. CloseAll(ParameterNodes);
  262. }
  263. #endregion
  264. #region 私有方法
  265. private bool RefreshTreeStatusToChild(ParameterNode node)
  266. {
  267. if (node.ChildNodes.Count > 0)
  268. {
  269. for (int i = 0; i < node.ChildNodes.Count; i++)
  270. {
  271. ParameterNode n = node.ChildNodes[i];
  272. n.Selected = node.Selected;
  273. if (!RefreshTreeStatusToChild(n))
  274. {
  275. //uncheck left node
  276. for (int j = i; j < node.ChildNodes.Count; j++)
  277. {
  278. node.ChildNodes[j].Selected = !node.Selected;
  279. }
  280. //node.Selected = !node.Selected;
  281. return false;
  282. }
  283. }
  284. }
  285. //else
  286. //{
  287. // if (node.Selected == true)
  288. // {
  289. // keys.Add(node.Name);
  290. // }
  291. // else
  292. // {
  293. // keys.Remove(node.Name);
  294. // }
  295. //}
  296. return true;
  297. }
  298. private void RefreshTreeStatusToParent(ParameterNode node)
  299. {
  300. if (node.ParentNode != null)
  301. {
  302. if (node.Selected)
  303. {
  304. bool flag = true;
  305. for (int i = 0; i < node.ParentNode.ChildNodes.Count; i++)
  306. {
  307. if (!node.ParentNode.ChildNodes[i].Selected)
  308. {
  309. flag = false; //as least one child is unselected
  310. break;
  311. }
  312. }
  313. if (flag)
  314. node.ParentNode.Selected = true;
  315. }
  316. else
  317. {
  318. node.ParentNode.Selected = false;
  319. }
  320. RefreshTreeStatusToParent(node.ParentNode);
  321. }
  322. }
  323. private Dictionary<string, List<HistoryDataItem>> GetData(List<string> keys, DateTime from, DateTime to)
  324. {
  325. string sql = "select time AS InternalTimeStamp";
  326. foreach (var dataId in keys)
  327. {
  328. sql += "," + string.Format("\"{0}\"", dataId);
  329. }
  330. sql += string.Format(" from \"{0}\" where time > {1} and time <= {2} order by time asc",
  331. from.ToString("yyyyMMdd") + "." + "Data", from.Ticks, to.Ticks);
  332. DataTable dataTable = QueryDataClient.Instance.Service.QueryData(sql);
  333. Dictionary<string, List<HistoryDataItem>> historyData = new Dictionary<string, List<HistoryDataItem>>();
  334. if (dataTable == null || dataTable.Rows.Count == 0)
  335. return null;
  336. DateTime dt = new DateTime();
  337. Dictionary<int, string> colName = new Dictionary<int, string>();
  338. for (int colNo = 0; colNo < dataTable.Columns.Count; colNo++)
  339. {
  340. colName.Add(colNo, dataTable.Columns[colNo].ColumnName);
  341. historyData[dataTable.Columns[colNo].ColumnName] = new List<HistoryDataItem>();
  342. }
  343. for (int rowNo = 0; rowNo < dataTable.Rows.Count; rowNo++)
  344. {
  345. PointCollection points = new PointCollection();
  346. var row = dataTable.Rows[rowNo];
  347. for (int i = 0; i < dataTable.Columns.Count; i++)
  348. {
  349. HistoryDataItem data = new HistoryDataItem();
  350. if (i == 0)
  351. {
  352. long ticks = (long)row[i];
  353. dt = new DateTime(ticks);
  354. continue;
  355. }
  356. else
  357. {
  358. string dataId = colName[i];
  359. if (row[i] is DBNull || row[i] == null)
  360. {
  361. data.dateTime = dt;
  362. data.dbName = colName[i];
  363. data.value = 0;
  364. }
  365. else if (row[i] is bool)
  366. {
  367. data.dateTime = dt;
  368. data.dbName = colName[i];
  369. data.value = (bool)row[i] ? 1 : 0;
  370. }
  371. else
  372. {
  373. data.dateTime = dt;
  374. data.dbName = colName[i];
  375. data.value = float.Parse(row[i].ToString());
  376. }
  377. }
  378. historyData[data.dbName].Add(data);
  379. }
  380. }
  381. foreach (var item in historyData)
  382. {
  383. item.Value.Sort((x, y) => DateTime.Compare(x.dateTime, y.dateTime));
  384. }
  385. return historyData;
  386. }
  387. private void CalKeys(ParameterNode parameterNode)
  388. {
  389. if (parameterNode.ChildNodes.Count > 0)
  390. {
  391. foreach (var item in parameterNode.ChildNodes)
  392. {
  393. CalKeys(item);
  394. }
  395. }
  396. else
  397. {
  398. if (parameterNode.Selected == true)
  399. {
  400. Keys.Add(parameterNode.Name);
  401. }
  402. }
  403. }
  404. private void Timer_Tick(object sender, EventArgs e)
  405. {
  406. if (Keys.Count > 10)
  407. {
  408. WPFMessageBox.ShowWarning("最多显示10个数据");
  409. timer.Stop();
  410. return;
  411. }
  412. this.DataHistoryView.MyDrawGraphicsControl.ClearPlotPoints();
  413. var result = GetData(Keys.Distinct().ToList(), currentTime.AddMinutes(-1), DateTime.Now);
  414. if (result == null)
  415. {
  416. return;
  417. }
  418. List<PointCollection> cls = new List<PointCollection>();
  419. for (int i = 0; i < Keys.Count; i++)
  420. {
  421. PointCollection points = new PointCollection();
  422. int k = 1;
  423. result[Keys[i]].ForEach(point =>
  424. {
  425. points.Add(new Point() { X = point.dateTime.ToOADate(), Y = point.value });
  426. k += 1;
  427. });
  428. cls.Add(points);
  429. }
  430. this.DataHistoryView.MyDrawGraphicsControl.PointCollections = cls;
  431. //if (this.DataHistoryView.MyDrawGraphicsControl.IsHorizontalNavigationEnabled == false && this.DataHistoryView.MyDrawGraphicsControl.IsVerticalNavigationEnabled == false)
  432. //{
  433. // this.DataHistoryView.MyDrawGraphicsControl.FitControlWithoutDrawing();
  434. //}
  435. //DateTime dateTimeNow = DateTime.Now;
  436. this.DataHistoryView.MyDrawGraphicsControl.YPoints.Clear();
  437. var item = QueryDataClient.Instance.Service.GetHistorySteps(startTime, DateTime.Now);
  438. if (item.Count > 0)
  439. {
  440. item.ForEach(x =>
  441. {
  442. this.DataHistoryView.MyDrawGraphicsControl.YPoints.Add(new CyberX8_Core.StepItem() { StartValue = x.StartTime.ToOADate(),Information=$"{x.RecipeId}:{x.StepNo}" });
  443. });
  444. }
  445. }
  446. #endregion
  447. }
  448. public class QueryIndexer
  449. {
  450. public DateTime TimeToken { get; set; }
  451. public List<string> DataList { get; set; }
  452. public string Module { get; set; }
  453. }
  454. public class KeyData:BindableBase
  455. {
  456. public string Key { get; set; }
  457. public SolidColorBrush _Color;
  458. public SolidColorBrush Color
  459. {
  460. get { return _Color; }
  461. set { SetProperty(ref _Color, value); }
  462. }
  463. public int UniqueId { get; set; }
  464. }
  465. }