using Aitex.Core.RT.Log; using MECF.Framework.Common.DataCenter; using MECF.Framework.UI.Client.CenterViews.DataLogs.ProcessHistory; using MECF.Framework.UI.Client.ClientBase; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Data; using System.Linq; using System.Windows; using Sicentury.Core.Tree; namespace SicUI.Models.PMs.Charting { public class ChartingSelectDataViewModel: UiViewModelBase { #region private const int MAX_PARAMETERS = 20; public DateTime BeginDate { get; set; } public DateTime StartDateTime { get; set; } public DateTime EndDateTime { get; set; } public ObservableCollection Recipes { get; set; } public ObservableCollection SelectedRecipes { get; set; } private ObservableCollection _ParameterNodes; public ObservableCollection ParameterNodes { get { return _ParameterNodes; } set { _ParameterNodes = value; NotifyOfPropertyChange("TreeNodes"); } } public ObservableCollection SelectedParameters { get; set; } object _lockSelection = new object(); public ObservableCollection SourcePM { get; set; } public string SelectedValuePM { get; set; } public ObservableCollection SourceSLot { get; set; } public string SelectedValueSLot { get; set; } public string RecipeName { get; set; } public string LotID { get; set; } public bool CheckAllRecipeFlag = false; public ObservableCollection ParameterNodes1 = new ObservableCollection(); #endregion public ChartingSelectDataViewModel() { var now = DateTime.Now; this.StartDateTime = now; this.BeginDate = now; this.StartDateTime = new DateTime(now.Year, now.Month, now.Day, 0, 0, 0, 0); this.EndDateTime = new DateTime(now.Year, now.Month, now.Day, 23, 59, 59, 999); Recipes = new ObservableCollection(); SelectedRecipes = new ObservableCollection(); SelectedParameters = new ObservableCollection(); ParameterNodes = ProcessHistoryProvider.Instance.GetParameters(); SourcePM = new ObservableCollection(new[] { "PM1", "PM2" }); SourceSLot = new ObservableCollection(); for (int i = 0; i < 25; i++) { SourceSLot.Add((i + 1).ToString()); } } protected override void OnViewLoaded(object _view) { base.OnViewLoaded(_view); this.view = (ChartingSelectDataView)_view; this.view.wfTimeFrom.Value = this.StartDateTime; this.view.wfTimeTo.Value = this.EndDateTime; } protected override void OnActivate() { base.OnActivate(); ParameterNodes = ProcessHistoryProvider.Instance.GetParameters(); foreach (var recipeItem in Recipes) { recipeItem.Selected = false; } } private ChartingSelectDataView view; public void SearchRecipe() { Recipes.Clear(); this.StartDateTime = this.view.wfTimeFrom.Value; this.EndDateTime = this.view.wfTimeTo.Value; if (StartDateTime > EndDateTime) { MessageBox.Show("Time range invalid, start time should be early than end time"); return; } try { string sql = $"SELECT * FROM \"process_data\",\"cj_data\",\"pj_data\",\"wafer_data\" where \"process_data\".\"wafer_data_guid\"=\"wafer_data\".\"guid\"" + $" and \"wafer_data\".\"pj_data_guid\" =\"pj_data\".\"guid\" and \"cj_data\".\"guid\"=\"pj_data\".\"cj_data_guid\" and \"process_data\".\"process_begin_time\" >='{StartDateTime:yyyyMMdd HHmmss}' and \"process_data\".\"process_end_time\" <='{EndDateTime:yyyyMMdd HHmmss}'"; if (!string.IsNullOrEmpty(SelectedValuePM)) { string[] pms = SelectedValuePM.Split(','); if (pms.Length > 0) { sql += " and (FALSE "; foreach (var pm in pms) { sql += $" OR \"process_data\".\"process_in\"='{pm}' "; } sql += " ) "; } ParameterNodes = ProcessHistoryProvider.Instance.GetParameters(); bool pm1 = ((System.Collections.IList)pms).Contains("PM1");//True bool pm2 = ((System.Collections.IList)pms).Contains("PM2");//True ParameterNodes1.Clear(); if (pm1) ParameterNodes1.Add(ParameterNodes[0]); if (pm2) ParameterNodes1.Add(ParameterNodes[1]); ParameterNodes.Clear(); ParameterNodes = ParameterNodes1; } if (!string.IsNullOrEmpty(RecipeName)) { sql += string.Format(" and lower( \"process_data\".\"recipe_name\") like '%{0}%'", RecipeName.ToLower()); } if (!string.IsNullOrEmpty(LotID)) { sql += string.Format(" and lower(\"wafer_data\".\"lot_id\") like '%{0}%'", LotID.ToLower()); } if (!string.IsNullOrEmpty(SelectedValueSLot)) { string[] pms = SelectedValueSLot.Split(','); if (pms.Length > 0) { sql += " and (FALSE "; foreach (var pm in pms) { sql += $" OR \"wafer_data\".\"create_slot\"='{pm}' "; } sql += " ) "; } } sql += " order by \"process_data\".\"process_begin_time\" ASC;"; DataTable dbData = QueryDataClient.Instance.Service.QueryData(sql); Application.Current.Dispatcher.BeginInvoke(new Action(() => { if (dbData == null || dbData.Rows.Count == 0) return; for (int i = 0; i < dbData.Rows.Count; i++) { RecipeItemSic item = new RecipeItemSic(); item.Recipe = dbData.Rows[i]["recipe_name"].ToString(); item.LotID = dbData.Rows[i]["lot_id"].ToString(); item.SlotID = dbData.Rows[i]["create_slot"].ToString(); item.CjName = dbData.Rows[i]["name"].ToString(); item.PjName = dbData.Rows[i]["name1"].ToString(); item.Chamber = dbData.Rows[i]["process_in"].ToString(); item.Status = dbData.Rows[i]["process_status"].ToString(); item.SyncStep = dbData.Rows[i]["sequence_name"].ToString(); item.ProcessGuid = dbData.Rows[i]["guid"].ToString(); if (!dbData.Rows[i]["process_begin_time"].Equals(DBNull.Value)) item.StartTime = ((DateTime)dbData.Rows[i]["process_begin_time"]).ToString("yyyy/MM/dd HH:mm:ss.fff"); if (!dbData.Rows[i]["process_end_time"].Equals(DBNull.Value)) item.EndTime = ((DateTime)dbData.Rows[i]["process_end_time"]).ToString("yyyy/MM/dd HH:mm:ss.fff"); Recipes.Add(item); } })); } catch (Exception e) { LOG.Write(e); } } public void CheckAllRecipe() { SelectedRecipes.Clear(); CheckAllRecipeFlag = !CheckAllRecipeFlag; if (CheckAllRecipeFlag) { foreach (var recipe in Recipes) { recipe.Selected = true; SelectedRecipes.Add(recipe); } } else { foreach (var recipe in Recipes) { recipe.Selected = false; } } } public void CheckRecipe(RecipeItemSic recipe) { if (recipe.Selected) { SelectedRecipes.Add(recipe); } else { RecipeItemSic item = SelectedRecipes.FirstOrDefault(t => t.Recipe == recipe.Recipe); if (item != null) SelectedRecipes.Remove(item); } } public void Preset() { } public void UnSelect() { } //public void ParameterCheck(TreeNode node) //{ // bool result = RefreshTreeStatusToChild(node); // if (!result) // { // node.Selected = !node.Selected; // DialogBox.ShowWarning($"The max number of parameters is {MAX_PARAMETERS}."); // } // else // { // RefreshTreeStatusToParent(node); // } //} ///// ///// Refresh tree node status from current to children, and add data to SelectedData ///// //private bool RefreshTreeStatusToChild(TreeNode node) //{ // if (node.ChildNodes.Count > 0) // { // for (int i = 0; i < node.ChildNodes.Count; i++) // { // TreeNode n = node.ChildNodes[i]; // n.Selected = node.Selected; // if (!RefreshTreeStatusToChild(n)) // { // //uncheck left node // for (int j = i; j < node.ChildNodes.Count; j++) // { // node.ChildNodes[j].Selected = !node.Selected; // } // node.Selected = !node.Selected; // return false; // } // } // } // else //leaf node // { // lock (_lockSelection) // { // bool flag = SelectedParameters.Contains(node.Name); // if (node.Selected && !flag) // { // if (SelectedParameters.Count < MAX_PARAMETERS) // { // SelectedParameters.Add(node.Name); // } // else // { // return false; // } // } // else if (!node.Selected && flag) // { // SelectedParameters.Remove(node.Name); // } // } // } // return true; //} ///// ///// Refresh tree node status from current to parent ///// ///// ///// //private void RefreshTreeStatusToParent(TreeNode node) //{ // if (node.ParentNode != null) // { // if (node.Selected) // { // bool flag = true; // for (int i = 0; i < node.ParentNode.ChildNodes.Count; i++) // { // if (!node.ParentNode.ChildNodes[i].Selected) // { // flag = false; //as least one child is unselected // break; // } // } // if (flag) // node.ParentNode.Selected = true; // } // else // { // node.ParentNode.Selected = false; // } // RefreshTreeStatusToParent(node.ParentNode); // } //} public void OnTreeSelectedChanged(object obj) { } public void Add() { this.TryClose(true); } public void Cancel() { this.TryClose(false); } public bool GetDbData(string chamber, DateTime from, DateTime to, IEnumerable dataIdList, out Dictionary>> returnDatas, ref double min, ref double max) { returnDatas = new Dictionary>>(); for (DateTime dfrom = new DateTime(from.Year, from.Month, from.Day); dfrom < to; dfrom += new TimeSpan(1, 0, 0, 0)) { DateTime begin = (dfrom.Year == from.Year && dfrom.Month == from.Month && dfrom.Day == from.Day) ? from : new DateTime(dfrom.Year, dfrom.Month, dfrom.Day, 0, 0, 0, 0); DateTime end = (dfrom.Date == to.Date) ? to : new DateTime(dfrom.Year, dfrom.Month, dfrom.Day, 23, 59, 59, 999); //if (begin.Date > DateTime.Today) // continue; try { string sql = "select time AS InternalTimeStamp"; foreach (var dataId in dataIdList) { if (!returnDatas.Keys.Contains(dataId) && dataId.StartsWith($"{chamber}.")) { returnDatas[dataId] = new List>(); sql += "," + string.Format("\"{0}\"", dataId); } } sql += string.Format(" from \"{0}\" where time > {1} and time <= {2} order by time asc;", begin.ToString("yyyyMMdd") + "." + chamber, begin.Ticks, end.Ticks); using (var table = QueryDataClient.Instance.Service.QueryData(sql)) { if (table == null || table.Rows.Count == 0) continue; DateTime dt = new DateTime(); Dictionary colName = new Dictionary(); for (int colNo = 0; colNo < table.Columns.Count; colNo++) colName.Add(colNo, table.Columns[colNo].ColumnName); for (int rowNo = 0; rowNo < table.Rows.Count; rowNo++) { var row = table.Rows[rowNo]; for (int i = 0; i < table.Columns.Count; i++) { if (i == 0) { long ticks = (long)row[i]; dt = new DateTime(ticks); } else { string dataId = colName[i]; double value = 0.0; if (row[i] is DBNull || row[i] == null) { value = 0.0; } else if (row[i] is bool) { value = (bool)row[i] ? 1.0 : 0; } else { value = (double)float.Parse(row[i].ToString()); } returnDatas[dataId].Add(Tuple.Create(dt, value)); if (value < min) min = value; if (value > max) max = value; } } } table.Clear(); } } catch (Exception ex) { LOG.Write(ex); return false; } } return true; } private string ConvertFileName(string str) { string ret = null; string specialkey = "[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#?……&*()——|{}??‘;:”“'?,?? -]"; ret = System.Text.RegularExpressions.Regex.Replace(str, specialkey, ""); return ret; } } }