| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940 |
- using Aitex.Core.RT.Log;
- using Caliburn.Micro;
- using FurnaceUI.Client.Dialog;
- using FurnaceUI.Views.Editors;
- using MECF.Framework.Common.CommonData;
- using MECF.Framework.Common.DataCenter;
- using MECF.Framework.UI.Client.CenterViews.Editors;
- using MECF.Framework.UI.Client.CenterViews.Editors.Recipe;
- using MECF.Framework.UI.Client.CenterViews.Editors.Sequence;
- using MECF.Framework.UI.Client.ClientBase;
- using OpenSEMI.ClientBase;
- using RecipeEditorLib.RecipeModel.Params;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text.RegularExpressions;
- using System.Windows;
- using System.Windows.Controls;
- using System.Xml;
- namespace FurnaceUI.Views.Recipes
- {
- public class TwoStepDataItem : CompareItem
- {
- public string AStepNumber { get; set; }
- private string _aStepName;
- public string AStepName
- {
- get => _aStepName;
- set
- {
- _aStepName = value;
- InvokePropertyChanged("AStepName");
- }
- }
- public string BStepNumber { get; set; }
- public string BStepName { get; set; }
- }
- public class TwoParamDataItem : CompareItem
- {
- private string _paramName;
- public string ParamName
- {
- get => _paramName;
- set
- {
- _paramName = value;
- InvokePropertyChanged("_paramName");
- }
- }
- private string _aParamValue;
- public string AParamValue
- {
- get => _aParamValue;
- set
- {
- _aParamValue = value;
- InvokePropertyChanged("AParamValue");
- }
- }
- private string _bParamValue;
- public string BParamValue
- {
- get => _bParamValue;
- set
- {
- _bParamValue = value;
- InvokePropertyChanged("BParamValue");
- }
- }
- }
- public class TableDataItem : CompareItem
- {
- public string TableIndex { get; set; }
- public string TableName { get; set; }
- public string EndStatus { get; set; }
- }
- public class TwoTableDataItem : CompareItem
- {
- public int Index { get; set; }
- public string ATableName { get; set; }
- public string BTableName { get; set; }
- }
- public class RecipesCompareTwoViewModel : ModuleUiViewModelBase
- {
- private string _module = "PM1";
- public ObservableCollection<ProcessTypeFileItem> ProcessTypeFileList { get; set; }
- public ObservableCollection<string> ChamberType { get; set; }
- public ObservableCollection<string> RecipeProcessType { get; set; }
- public int ChamberTypeIndexSelection { get; set; }
- public int _processTypeIndexSelection;
- public int ProcessTypeIndexSelection
- {
- get { return _processTypeIndexSelection; }
- set { _processTypeIndexSelection = value; NotifyOfPropertyChange("ProcessTypeIndexSelection"); }
- }
- public string CurrentChamberType
- {
- get
- {
- return ChamberType[ChamberTypeIndexSelection];
- }
- }
- public string SelectedRecipeType { get; set; }
- private string _currentProcessType;
- public string CurrentProcessType
- {
- get
- {
- if (ProcessTypeIndexSelection < 0)
- ProcessTypeIndexSelection = 0;
- if (ProcessTypeFileList.Count == 0)
- return "Process";
- return ProcessTypeFileList[ProcessTypeIndexSelection].ProcessType;
- }
- set { _currentProcessType = CurrentProcessType; NotifyOfPropertyChange("CurrentProcessType"); }
- }
- public ObservableCollection<TwoStepDataItem> StepList { get; set; } = new ObservableCollection<TwoStepDataItem>();
- public ObservableCollection<TwoParamDataItem> ParamList { get; set; } = new ObservableCollection<TwoParamDataItem>();
- //-------------------------A Properties
- public ObservableCollection<StepDataItem> StepListA { get; set; }
- public ObservableCollection<ParamDataItem> ParamListA { get; set; }
- public ObservableCollection<LineDataItem> WholeListA { get; set; }
- public string RecipeA { get; set; }
- private XmlDocument _domA = new XmlDocument();
- private string _pathPrefixA;
- private Dictionary<string, ObservableCollection<ParamDataItem>> _mapStepParamA = new Dictionary<string, ObservableCollection<ParamDataItem>>();
- private Dictionary<TableDataItem, Dictionary<string, ObservableCollection<ParamDataItem>>> _mapTableStepParamA = new Dictionary<TableDataItem, Dictionary<string, ObservableCollection<ParamDataItem>>>();
- private Dictionary<string, LineDataItem> _mapLineTextA = new Dictionary<string, LineDataItem>();
- private List<string> BackInnerXmlTextA = new List<string>();
- private bool _isChangedA { get; set; }
- public bool EnableButtonRemoveA
- {
- get { return !string.IsNullOrEmpty(RecipeA); }
- }
- public bool EnableButtonUndoA
- {
- get { return false; }
- }
- public bool EnableButtonSaveA
- {
- get { return false; }
- }
- private Visibility _paramVisibility;
- public Visibility ParamVisibility
- {
- get => _paramVisibility;
- set
- {
- _paramVisibility = value;
- NotifyOfPropertyChange(nameof(ParamVisibility));
- }
- }
- private TwoStepDataItem _stepSelection;
- public TwoStepDataItem StepSelection
- {
- get
- {
- return _stepSelection;
- }
- set
- {
- if (!BtnTableIsEnabled)
- {
- SyncStepSelection(value);
- }
- else
- {
- SyncTableStepSelection(value);
- }
- SyncShowDiffParams(_isShowDiffParams);
- _stepSelection = value;
- ParamSelection = null;
- NotifyOfPropertyChange(nameof(StepSelection));
- }
- }
- private TwoParamDataItem _paramSelection;
- public TwoParamDataItem ParamSelection
- {
- get
- {
- return _paramSelection;
- }
- set
- {
- _paramSelection = value;
- if (value == null)
- {
- ParamVisibility = Visibility.Hidden;
- }
- else
- {
- ParamVisibility = Visibility.Visible;
- }
- NotifyOfPropertyChange(nameof(ParamSelection));
- }
- }
- //private ParamDataItem _paramSelectionA;
- //public ParamDataItem ParamSelectionA
- //{
- // get
- // {
- // return _paramSelectionA;
- // }
- // set
- // {
- // SyncParamSelection(value, false);
- // _paramSelectionA = value;
- // }
- //}
- private LineDataItem _lineSelectionA;
- public LineDataItem LineSelectionA
- {
- get
- {
- return _lineSelectionA;
- }
- set
- {
- SyncLineSelection(value, false);
- _lineSelectionA = value;
- }
- }
- //-------------------------B Properties-------------------------------------------------------------
- public ObservableCollection<StepDataItem> StepListB { get; set; }
- public ObservableCollection<ParamDataItem> ParamListB { get; set; }
- public ObservableCollection<LineDataItem> WholeListB { get; set; }
- public string RecipeB { get; set; }
- private XmlDocument _domB = new XmlDocument();
- private string _pathPrefixB;
- private Dictionary<string, ObservableCollection<ParamDataItem>> _mapStepParamB = new Dictionary<string, ObservableCollection<ParamDataItem>>();
- private Dictionary<TableDataItem, Dictionary<string, ObservableCollection<ParamDataItem>>> _mapTableStepParamB = new Dictionary<TableDataItem, Dictionary<string, ObservableCollection<ParamDataItem>>>();
- private Dictionary<string, LineDataItem> _mapLineTextB = new Dictionary<string, LineDataItem>();
- private List<string> BackInnerXmlTextB = new List<string>();
- private string BaseTextB = "";
- private bool _isChangedB { get; set; }
- public bool EnableButtonRemoveB
- {
- get { return !string.IsNullOrEmpty(RecipeB); }
- }
- public bool EnableButtonUndoB
- {
- get { return false; }
- }
- public bool EnableButtonSaveB
- {
- get { return false; }
- }
- private ParamDataItem _paramSelectionB;
- public ParamDataItem ParamSelectionB
- {
- get
- {
- return _paramSelectionB;
- }
- set
- {
- SyncParamSelection(value, true);
- _paramSelectionB = value;
- }
- }
- private LineDataItem _lineSelectionB;
- public LineDataItem LineSelectionB
- {
- get
- {
- return _lineSelectionB;
- }
- set
- {
- SyncLineSelection(value, true);
- _lineSelectionB = value;
- }
- }
- private bool _isCurrentSelected = true;
- public bool IsCurrentSelected
- {
- get => _isCurrentSelected;
- set
- {
- _isCurrentSelected = value;
- NotifyOfPropertyChange(nameof(IsCurrentSelected));
- NotifyOfPropertyChange(nameof(ChkboxString));
- }
- }
- public string ChkboxString
- {
- get
- {
- if (_isCurrentSelected)
- {
- return "Current";
- }
- else
- {
- return "History";
- }
- }
- }
- private bool _btnTableIsEnabled = false;
- public bool BtnTableIsEnabled
- {
- get => _btnTableIsEnabled;
- set
- {
- _btnTableIsEnabled = value;
- NotifyOfPropertyChange(nameof(BtnTableIsEnabled));
- }
- }
- private TwoTableDataItem _selectedTwoTableData;
- public TwoTableDataItem SelectedTwoTableData
- {
- get => _selectedTwoTableData;
- set
- {
- _selectedTwoTableData = value;
- NotifyOfPropertyChange(nameof(SelectedTwoTableData));
- }
- }
- Dictionary<int, ObservableCollection<StepDataItem>> tableStepListA = new Dictionary<int, ObservableCollection<StepDataItem>>();
- Dictionary<int, ObservableCollection<StepDataItem>> tableStepListB = new Dictionary<int, ObservableCollection<StepDataItem>>();
- /// <summary>
- /// IsVisibilityEdit
- /// </summary>
- public bool IsVisibilityEdit
- {
- get { return _isVisibilityEdit; }
- set { _isVisibilityEdit = value;
- NotifyOfPropertyChange(nameof(IsVisibilityEdit)); }
- }
- private bool _isVisibilityEdit = true;
- public string TimeA
- {
- get { return _timeA; }
- set
- {
- _timeA = value;
- NotifyOfPropertyChange("TimeA");
- }
- }
- private string _timeA = string.Empty;
- public string TimeB
- {
- get { return _timeB; }
- set
- {
- _timeB = value;
- NotifyOfPropertyChange("TimeB");
- }
- }
- private string _timeB = string.Empty;
- public int SelectTableIndex { get; set; } = 1;
- public RecipesCompareTwoViewModel()
- {
- StepListA = new ObservableCollection<StepDataItem>();
- ParamListA = new ObservableCollection<ParamDataItem>();
- WholeListA = new ObservableCollection<LineDataItem>();
- StepListB = new ObservableCollection<StepDataItem>();
- ParamListB = new ObservableCollection<ParamDataItem>();
- WholeListB = new ObservableCollection<LineDataItem>();
- }
- public RecipesCompareTwoViewModel(ShowRecipeHistory showRecipeHistoryA, ShowRecipeHistory showRecipeHistoryB)
- {
- IsVisibilityEdit = false;
- StepListA = new ObservableCollection<StepDataItem>();
- ParamListA = new ObservableCollection<ParamDataItem>();
- WholeListA = new ObservableCollection<LineDataItem>();
- StepListB = new ObservableCollection<StepDataItem>();
- ParamListB = new ObservableCollection<ParamDataItem>();
- WholeListB = new ObservableCollection<LineDataItem>();
- if (showRecipeHistoryA != null && showRecipeHistoryB != null)
- {
- TimeA = showRecipeHistoryA.LastRevisionTime.ToString("yyyy-MM-dd HH:mm:ss");
- TimeB = showRecipeHistoryB.LastRevisionTime.ToString("yyyy-MM-dd HH:mm:ss");
- RecipeA = showRecipeHistoryA.Recipe_Path;
- RecipeB = showRecipeHistoryB.Recipe_Path;
- LoadData(showRecipeHistoryA.Recipe_Path, true, true, false);
- LoadData(showRecipeHistoryB.Recipe_Path, false, true, false);
- Recompare();
- GetStepList();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- }
- protected override void OnInitialize()
- {
- base.OnInitialize();
- var chamberType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedChamberType");
- if (chamberType == null)
- {
- ChamberType = new ObservableCollection<string>() { "Default" };
- }
- else
- {
- ChamberType = new ObservableCollection<string>(((string)(chamberType)).Split(','));
- }
- ChamberTypeIndexSelection = 0;
- //Etch:Process,Clean,Chuck,Dechuck;CVD:Process,Clean;
- //var processType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedProcessType");
- //if (processType == null)
- //{
- // RecipeProcessType = new ObservableCollection<string>() { "Process" };
- //}
- //else
- //{
- // RecipeProcessType = new ObservableCollection<string>(((string)processType).Split(','));
- //}
- RecipeProcessType = new ObservableCollection<string>();
- var processType = QueryDataClient.Instance.Service.GetConfig("System.CompareRecipeType");
- if (processType != null)
- {
- var sss = ((string)processType).Split(';');
- foreach (var item in sss)
- {
- RecipeProcessType.Add(item);
- }
- }
- ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- UpdateProcessTypeFileList();
- }
- protected override void OnActivate()
- {
- base.OnActivate();
- }
- protected override void OnDeactivate(bool close)
- {
- base.OnDeactivate(close);
- }
- protected override void OnViewLoaded(object view)
- {
- base.OnViewLoaded(view);
- if (((RecipesCompareTwoView)view).CboRecipeType.Items.Count > 0)
- {
- ((RecipesCompareTwoView)view).CboRecipeType.SelectedIndex = 0;
- }
- }
- public void SelectChangedRecipeType(SelectionChangedEventArgs eventArgs)
- {
- string recipeType = null;
- recipeType = eventArgs.AddedItems[0].ToString();
- if (recipeType == "sub" || recipeType == "alarm" || recipeType == "abort" || recipeType == "idle" || recipeType == "reset")
- {
- BtnTableIsEnabled = true;
- }
- else
- {
- BtnTableIsEnabled = false;
- }
- }
- public void UpdateProcessTypeFileList()
- {
- ProcessTypeFileList.Clear();
- for (int i = 0; i < RecipeProcessType.Count; i++)
- {
- var type = new ProcessTypeFileItem();
- type.ProcessType = RecipeProcessType[i];
- var prefix = $"{ChamberType[ChamberTypeIndexSelection]}\\{RecipeProcessType[i]}";
- ProcessTypeFileList.Add(type);
- }
- while (ProcessTypeFileList.Count > RecipeProcessType.Count)
- {
- ProcessTypeFileList.RemoveAt(0);
- }
- }
- public void SelectA()
- {
- SelectRecipe(true);
- }
- public void SelectB()
- {
- SelectRecipe(false);
- //if (IsCurrentSelected)
- //{
- // SelectBCurrent();
- //}
- //else
- //{
- // SelectBHistory();
- //}
- }
- public void SelectBHistory()
- {
- // SelectRecipe(false);
- try
- {
- RecipeCompareSelectDialogViewModel dialog = new RecipeCompareSelectDialogViewModel();
- dialog.DisplayName = "Select Recipe";
- SystemName = _module;
- dialog.IsSelectedA = false;
- var recipeProvider = new RecipeProvider();
- dialog.Chambers.Clear();
- recipeProvider.RestoreRecipeFolderList().ForEach(x => dialog.Chambers.Add(x));
- string[] recipeProcessType = null;
- if (string.IsNullOrEmpty(SelectedRecipeType))
- {
- var processType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedProcessType");
- if (processType == null)
- {
- processType = "Process";
- }
- var ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- recipeProcessType = ((string)processType).Split(',');
- }
- else
- {
- recipeProcessType = new string[] { SelectedRecipeType };
- }
- string[] partsType1 = new string[] { };
- string[] partsType2 = new string[] { };
- for (int i = 0; i < recipeProcessType.Length; i++)
- {
- var type = new ProcessTypeFileItem();
- type.ProcessType = recipeProcessType[i];
- var prefix = $"Furnace\\{recipeProcessType[i]}";
- var recipes = recipeProvider.GetXmlRecipeList(prefix, false);
- string[] parts = Regex.Split(recipes, "<");
- if (i == 0)
- {
- partsType1 = parts;
- }
- else if (i == 1)
- {
- partsType2 = parts;
- }
- string recipeChamber;
- recipeChamber = "<" + parts[1];
- foreach (string part in parts)
- {
- if (part.Contains($".{SystemName}"))
- {
- string temp = part.Replace($".{SystemName}", string.Empty);
- recipeChamber += "<" + temp;
- }
- }
- if (parts.Length > 2)
- {
- recipeChamber += "<" + parts[parts.Length - 1];
- }
- type.FileListByProcessType = RecipeSequenceTreeBuilder.BuildFileNode(prefix, "", false, recipeChamber)[0].Files;
- ProcessTypeFileList.Add(type);
- }
- dialog.ProcessTypeFileList = ProcessTypeFileList;
- WindowManager wm = new WindowManager();
- bool? bret = wm.ShowDialog(dialog);
- if (!(bool)bret)
- return;
- _module = dialog.SelectedChamber;
- string suffix = $".{_module}";
- string dialogResult = dialog.DialogResult;
- bool isFullPath = false;
- if (dialogResult.Contains(".rcp"))
- isFullPath = true;
- string recipeName = dialogResult;
- RecipeB = recipeName;
- NotifyOfPropertyChange(nameof(RecipeB));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveB));
- if (string.IsNullOrEmpty(RecipeB))
- {
- string[] recipe2 = RecipeB.Split('\\'); string r2 = recipe2[0];
- }
- LoadData(recipeName, false, false, isFullPath);
- Recompare();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- catch (Exception ex)
- {
- throw;
- }
- }
- public void SelectBCurrent()
- {
- try
- {
- RecipeCompareSelectDialogViewModel dialog = new RecipeCompareSelectDialogViewModel();
- dialog.DisplayName = "Select Recipe";
- SystemName = _module;
- var recipeProvider = new RecipeProvider();
- var processType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedProcessType");
- if (processType == null)
- {
- processType = "Process";
- }
- var ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- string[] recipeProcessType = ((string)processType).Split(',');
- string[] partsType1 = new string[] { };
- string[] partsType2 = new string[] { };
- for (int i = 0; i < recipeProcessType.Length; i++)
- {
- var type = new ProcessTypeFileItem();
- type.ProcessType = recipeProcessType[i];
- var prefix = $"Furnace\\{recipeProcessType[i]}";
- type.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList(prefix);
- ProcessTypeFileList.Add(type);
- }
- dialog.ProcessTypeFileList = ProcessTypeFileList;
- WindowManager wm = new WindowManager();
- bool? bret = wm.ShowDialog(dialog);
- if (!(bool)bret)
- return;
- _module = dialog.SelectedChamber;
- string suffix = $".{_module}";
- string dialogResult = dialog.DialogResult;
- bool isFullPath = false;
- if (dialogResult.Contains(".rcp"))
- isFullPath = true;
- string recipeName = dialogResult;
- RecipeB = recipeName;
- NotifyOfPropertyChange(nameof(RecipeB));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveB));
- if (!string.IsNullOrEmpty(RecipeA) && !string.IsNullOrEmpty(RecipeB))
- {
- string[] recipe1 = RecipeA.Split('\\'); string r1 = recipe1[0];
- string[] recipe2 = RecipeB.Split('\\'); string r2 = recipe2[0];
- if (r1 != r2)
- {
- if (MessageBoxResult.Yes != MessageBox.Show($"腔体类型不一致! \n 是否继续比较 ?", "", MessageBoxButton.YesNo, MessageBoxImage.Information))
- {
- RemoveSelectB();
- return;
- }
- }
- }
- LoadData(recipeName, false, true, isFullPath);
- Recompare();
- GetStepList();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- catch (Exception ex)
- {
- LOG.Error(ex.Message);
- }
- }
- private void SelectRecipe(bool isSelectA)
- {
- if (!BtnTableIsEnabled)
- {
- NoTableRecipe(isSelectA);
- }
- else
- {
- TableRecipe(isSelectA);
- }
- }
- private void NoTableRecipe(bool isSelectA)
- {
- try
- {
- RecipeCompareSelectDialogViewModel dialog = new RecipeCompareSelectDialogViewModel();
- dialog.DisplayName = "Select Recipe";
- SystemName = _module;
- var recipeProvider = new RecipeProvider();
- string[] recipeProcessType = null;
- var ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- if (string.IsNullOrEmpty(SelectedRecipeType))
- {
- var processType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedProcessType");
- if (processType == null)
- {
- processType = "Process";
- }
- recipeProcessType = ((string)processType).Split(',');
- }
- else
- {
- recipeProcessType = new string[] { SelectedRecipeType };
- }
- string[] partsType1 = new string[] { };
- string[] partsType2 = new string[] { };
- for (int i = 0; i < recipeProcessType.Length; i++)
- {
- var type = new ProcessTypeFileItem();
- type.ProcessType = recipeProcessType[i];
- var prefix = $"Furnace\\{recipeProcessType[i]}";
- var recipes = recipeProvider.GetXmlRecipeList(prefix, false);
- type.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList(prefix);
- ProcessTypeFileList.Add(type);
- }
- dialog.ProcessTypeFileList = ProcessTypeFileList;
- WindowManager wm = new WindowManager();
- bool? bret = wm.ShowDialog(dialog);
- if (!(bool)bret)
- return;
- _module = dialog.SelectedChamber;
- string suffix = $".{_module}";
- string dialogResult = dialog.DialogResult;
- bool isFullPath = false;
- if (dialogResult.Contains(".rcp"))
- isFullPath = true;
- string recipeName = dialogResult;
- if (isSelectA)
- {
- RecipeA = recipeName;
- NotifyOfPropertyChange(nameof(RecipeA));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveA));
- }
- else
- {
- RecipeB = recipeName;
- NotifyOfPropertyChange(nameof(RecipeB));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveB));
- }
- if (!string.IsNullOrEmpty(RecipeA) && !string.IsNullOrEmpty(RecipeB))
- {
- string[] recipe1 = RecipeA.Split('\\'); string r1 = recipe1[0];
- string[] recipe2 = RecipeB.Split('\\'); string r2 = recipe2[0];
- if (r1 != r2)
- {
- if (MessageBoxResult.Yes != MessageBox.Show($"腔体类型不一致! \n 是否继续比较 ?", "", MessageBoxButton.YesNo, MessageBoxImage.Information))
- {
- RemoveSelectB();
- return;
- }
- }
- }
- LoadData(recipeName, isSelectA, true, isFullPath);
- Recompare();
- GetStepList();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- catch (Exception ex)
- {
- throw;
- }
- }
- private void TableRecipe(bool isSelectA)
- {
- try
- {
- RecipeCompareSelectDialogViewModel dialog = new RecipeCompareSelectDialogViewModel();
- dialog.DisplayName = "Select Recipe";
- SystemName = _module;
- var recipeProvider = new RecipeProvider();
- string recipeProcessType = null;
- var ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- if (string.IsNullOrEmpty(SelectedRecipeType))
- {
- //弹出告警消息
- return;
- }
- else
- {
- recipeProcessType = SelectedRecipeType;
- }
- string[] partsType1 = new string[] { };
- string[] partsType2 = new string[] { };
- var type = new ProcessTypeFileItem();
- type.ProcessType = recipeProcessType;
- var prefix = $"Furnace\\{recipeProcessType}";
- var recipes = recipeProvider.GetXmlRecipeList(prefix, false);
- type.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList(prefix);
- ProcessTypeFileList.Add(type);
- dialog.ProcessTypeFileList = ProcessTypeFileList;
- WindowManager wm = new WindowManager();
- bool? bret = wm.ShowDialog(dialog);
- if (!(bool)bret)
- return;
- _module = dialog.SelectedChamber;
- string suffix = $".{_module}";
- string dialogResult = dialog.DialogResult;
- bool isFullPath = false;
- if (dialogResult.Contains(".rcp"))
- isFullPath = true;
- string recipeName = dialogResult;
- if (isSelectA)
- {
- RecipeA = recipeName;
- NotifyOfPropertyChange(nameof(RecipeA));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveA));
- }
- else
- {
- RecipeB = recipeName;
- NotifyOfPropertyChange(nameof(RecipeB));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveB));
- }
- if (!string.IsNullOrEmpty(RecipeA) && !string.IsNullOrEmpty(RecipeB))
- {
- string[] recipe1 = RecipeA.Split('\\'); string r1 = recipe1[0];
- string[] recipe2 = RecipeB.Split('\\'); string r2 = recipe2[0];
- if (r1 != r2)
- {
- if (MessageBoxResult.Yes != MessageBox.Show($"腔体类型不一致! \n 是否继续比较 ?", "", MessageBoxButton.YesNo, MessageBoxImage.Information))
- {
- RemoveSelectB();
- return;
- }
- }
- }
- LoadTableData(recipeName, isSelectA, true, isFullPath);
- RecompareTableByName();
- GetTableStepList(isSelectA);
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- catch (Exception ex)
- {
- throw;
- }
- }
- public void GetStepList()
- {
- StepList.Clear();
- if (StepListA == null || StepListA.Count == 0)
- {
- if (StepListB == null || StepListB.Count == 0)
- { return; }
- else
- {
- foreach (var item in StepListB)
- {
- var tempStep = new TwoStepDataItem();
- tempStep.BStepNumber = item.StepNumber;
- tempStep.BStepName = item.StepName;
- tempStep.IsDiff = item.IsDiff;
- StepList.Add(tempStep);
- }
- }
- }
- else
- {
- if (StepListB == null || StepListB.Count == 0)
- {
- foreach (var item in StepListA)
- {
- var tempStep = new TwoStepDataItem();
- tempStep.AStepNumber = item.StepNumber;
- tempStep.AStepName = item.StepName;
- tempStep.IsDiff = item.IsDiff;
- StepList.Add(tempStep);
- }
- }
- else
- {
- int bIndex = 0;
- int oldIndex = 0;
- foreach (var item in StepListA)
- {
- var tempB = StepListB.FirstOrDefault(x => x.StepName == item.StepName);
- if (tempB != null)
- {
- bIndex = StepListB.IndexOf(tempB);
- if (bIndex != 0 && bIndex != oldIndex + 1)
- {
- for (int i = oldIndex + 1; i < bIndex; i++)
- {
- var bStep = new TwoStepDataItem();
- bStep.AStepNumber = "";
- bStep.AStepName = "";
- bStep.BStepNumber = StepListB[i].StepNumber;
- bStep.BStepName = StepListB[i].StepName;
- bStep.IsDiff = false;
- StepList.Add(bStep);
- }
- }
- if (oldIndex > bIndex)
- {
- var tempStepA = new TwoStepDataItem();
- tempStepA.AStepNumber = item.StepNumber;
- tempStepA.AStepName = item.StepName;
- tempStepA.IsDiff = false;
- StepList.Add(tempStepA);
- continue;
- }
- else
- {
- oldIndex = bIndex;
- }
- var tempStep = new TwoStepDataItem();
- tempStep.AStepNumber = item.StepNumber;
- tempStep.AStepName = item.StepName;
- tempStep.BStepNumber = tempB.StepNumber;
- tempStep.BStepName = tempB.StepName;
- tempStep.IsDiff = tempB.IsDiff;
- StepList.Add(tempStep);
- }
- else
- {
- var tempStep = new TwoStepDataItem();
- tempStep.AStepNumber = item.StepNumber;
- tempStep.AStepName = item.StepName;
- tempStep.IsDiff = item.IsDiff;
- tempStep.BStepNumber = "";
- tempStep.BStepName = "";
- StepList.Add(tempStep);
- }
- }
- if (bIndex + 1 < StepListB.Count)
- {
- for (int i = bIndex + 1; i < StepListB.Count; i++)
- {
- var bStep = new TwoStepDataItem();
- bStep.AStepNumber = "";
- bStep.AStepName = "";
- bStep.BStepNumber = StepListB[i].StepNumber;
- bStep.BStepName = StepListB[i].StepName;
- bStep.IsDiff = StepListB[i].IsDiff;
- StepList.Add(bStep);
- }
- }
- }
- }
- }
- public void GetTableStepList(bool isSelectA, int tableInex = 1)
- {
- StepList.Clear();
- TwoTableDataItem tempTable = new TwoTableDataItem();
- tempTable.Index = tableInex;
- var tableA = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == tableInex.ToString());
- if (tableA != null)
- {
- tempTable.ATableName = tableA.TableName;
- }
- var tableB = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == tableInex.ToString());
- if (tableB != null)
- {
- tempTable.BTableName = tableB.TableName;
- }
- if (isSelectA)
- {
- StepListA.Clear();
- if (tableStepListA.Keys.Contains(tableInex))
- {
- (tableStepListA[tableInex].OrderBy(x => int.Parse(x.StepNumber))).ToList().ForEach(x => StepListA.Add(x));
- }
- NotifyOfPropertyChange(nameof(StepListA));
- }
- else
- {
- StepListB.Clear();
- if (tableStepListB.Keys.Contains(tableInex))
- {
- (tableStepListB[tableInex].OrderBy(x => int.Parse(x.StepNumber))).ToList().ForEach(x => StepListB.Add(x));
- }
- NotifyOfPropertyChange(nameof(StepListB));
- }
- if (StepListA == null || StepListA.Count == 0)
- {
- if (StepListB == null || StepListB.Count == 0)
- { return; }
- else
- {
- foreach (var item in StepListB)
- {
- var tempStep = new TwoStepDataItem();
- tempStep.BStepNumber = item.StepNumber;
- tempStep.BStepName = item.StepName;
- tempStep.IsDiff = item.IsDiff;
- StepList.Add(tempStep);
- }
- }
- }
- else
- {
- if (StepListB == null || StepListB.Count == 0)
- {
- foreach (var item in StepListA)
- {
- var tempStep = new TwoStepDataItem();
- tempStep.AStepNumber = item.StepNumber;
- tempStep.AStepName = item.StepName;
- tempStep.IsDiff = item.IsDiff;
- StepList.Add(tempStep);
- }
- }
- else
- {
- int bIndex = 0;
- int oldIndex = 0;
- foreach (var item in StepListA)
- {
- var tempB = StepListB.FirstOrDefault(x => x.StepName == item.StepName);
- if (tempB != null)
- {
- bIndex = StepListB.IndexOf(tempB);
- if (bIndex != 0 && bIndex != oldIndex + 1)
- {
- for (int i = oldIndex + 1; i < bIndex; i++)
- {
- var bStep = new TwoStepDataItem();
- bStep.AStepNumber = "";
- bStep.AStepName = "";
- bStep.BStepNumber = StepListB[i].StepNumber;
- bStep.BStepName = StepListB[i].StepName;
- bStep.IsDiff = false;
- StepList.Add(bStep);
- }
- }
- if (oldIndex > bIndex)
- {
- var tempStepA = new TwoStepDataItem();
- tempStepA.AStepNumber = item.StepNumber;
- tempStepA.AStepName = item.StepName;
- tempStepA.IsDiff = false;
- StepList.Add(tempStepA);
- continue;
- }
- else
- {
- oldIndex = bIndex;
- }
- var tempStep = new TwoStepDataItem();
- tempStep.AStepNumber = item.StepNumber;
- tempStep.AStepName = item.StepName;
- tempStep.BStepNumber = tempB.StepNumber;
- tempStep.BStepName = tempB.StepName;
- tempStep.IsDiff = tempB.IsDiff;
- StepList.Add(tempStep);
- }
- else
- {
- var tempStep = new TwoStepDataItem();
- tempStep.AStepNumber = item.StepNumber;
- tempStep.AStepName = item.StepName;
- tempStep.IsDiff = item.IsDiff;
- tempStep.BStepNumber = "";
- tempStep.BStepName = "";
- StepList.Add(tempStep);
- }
- }
- if (bIndex + 1 < StepListB.Count)
- {
- for (int i = bIndex + 1; i < StepListB.Count; i++)
- {
- var bStep = new TwoStepDataItem();
- bStep.AStepNumber = "";
- bStep.AStepName = "";
- bStep.BStepNumber = StepListB[i].StepNumber;
- bStep.BStepName = StepListB[i].StepName;
- bStep.IsDiff = StepListB[i].IsDiff;
- StepList.Add(bStep);
- }
- }
- }
- }
- SelectedTwoTableData = tempTable;
- }
- public void LoadData(string selectedRecipePath, bool isSelectA, bool isCurrent, bool isFullPath)
- {
- var array = selectedRecipePath.Split(new char[] { '\\' });
- string recipeName = array[array.Length - 1];
- XmlDocument doc = isSelectA ? _domA : _domB;
- string prefixPath = (isSelectA ? RecipeA : RecipeB).Replace(recipeName, "");
- var _recipeProvider = new RecipeProvider();
- string recipeContent;
- if (isSelectA)
- {
- recipeContent = isFullPath ? _recipeProvider.LoadRecipeByFullPath(selectedRecipePath) : _recipeProvider.LoadRecipe(prefixPath, recipeName, false);
- }
- else
- {
- if (isCurrent)
- {
- recipeContent = _recipeProvider.LoadRecipe(prefixPath, recipeName);
- }
- else
- {
- recipeContent = _recipeProvider.LoadRestoreRecipe(prefixPath, recipeName);
- }
- }
- if (string.IsNullOrEmpty(recipeContent))
- {
- MessageBox.Show($"{prefixPath}\\{recipeName} is empty, please confirm the file is valid.");
- return;
- }
- if (isSelectA)
- {
- BackInnerXmlTextA.Clear();
- if (BackInnerXmlTextB.Count > 0)
- {
- string dataXml = BackInnerXmlTextB[0];
- BackInnerXmlTextB.Clear();
- BackInnerXmlTextB.Add(dataXml);
- }
- }
- else
- {
- BackInnerXmlTextB.Clear();
- if (BackInnerXmlTextA.Count > 0)
- {
- string dataXml = BackInnerXmlTextA[0];
- BackInnerXmlTextA.Clear();
- BackInnerXmlTextA.Add(dataXml);
- }
- }
- if (isSelectA)
- {
- _pathPrefixA = prefixPath;
- _mapLineTextA = new Dictionary<string, LineDataItem>();
- BackInnerXmlTextA.Add(recipeContent);
- }
- else
- {
- _pathPrefixB = prefixPath;
- _mapLineTextB = new Dictionary<string, LineDataItem>();
- BackInnerXmlTextB.Add(recipeContent);
- }
- LoadrecipeContentData(recipeContent, isSelectA);
- }
- public void LoadTableData(string selectedRecipePath, bool isSelectA, bool isCurrent, bool isFullPath)
- {
- var array = selectedRecipePath.Split(new char[] { '\\' });
- string recipeName = array[array.Length - 1];
- XmlDocument doc = isSelectA ? _domA : _domB;
- string prefixPath = (isSelectA ? RecipeA : RecipeB).Replace(recipeName, "");
- var _recipeProvider = new RecipeProvider();
- string recipeContent;
- if (isSelectA)
- {
- recipeContent = isFullPath ? _recipeProvider.LoadRecipeByFullPath(selectedRecipePath) : _recipeProvider.LoadRecipe(prefixPath, recipeName, false);
- }
- else
- {
- if (isCurrent)
- {
- recipeContent = _recipeProvider.LoadRecipe(prefixPath, recipeName);
- }
- else
- {
- recipeContent = _recipeProvider.LoadRestoreRecipe(prefixPath, recipeName);
- }
- }
- if (string.IsNullOrEmpty(recipeContent))
- {
- MessageBox.Show($"{prefixPath}\\{recipeName} is empty, please confirm the file is valid.");
- return;
- }
- if (isSelectA)
- {
- _pathPrefixA = prefixPath;
- }
- else
- {
- _pathPrefixB = prefixPath;
- }
- LoadTableRecipeContentData(recipeContent, isSelectA);
- }
- public void StepGridSelectionChangedA()
- {
- //if (StepSelectionA == null)
- //{
- // ParamListA.Clear();
- // NotifyOfPropertyChange(nameof(ParamListA));
- // return;
- //}
- //if (_mapStepParamA.ContainsKey(StepSelectionA.StepNumber))
- //{
- // ParamListA = _mapStepParamA[StepSelectionA.StepNumber];
- // foreach (ParamDataItem item in ParamListA)
- // {
- // item.IsHidden = (!item.IsDiff && !item.IsExtra && IsShowDiffParams) ? true : false;
- // }
- // NotifyOfPropertyChange(nameof(ParamListA));
- // NotifyOfPropertyChange(nameof(StepSelectionA));
- // StepSelectionA.InvokePropertyChanged();
- //}
- }
- private void LoadrecipeContentData(string recipeContent, bool isSelectA)
- {
- XmlDocument doc = isSelectA ? _domA : _domB;
- if (isSelectA)
- {
- _mapLineTextA = new Dictionary<string, LineDataItem>();
- //BackInnerXmlTextA.Add(recipeContent);
- }
- else
- {
- _mapLineTextB = new Dictionary<string, LineDataItem>();
- //BackInnerXmlTextB.Add(recipeContent);
- }
- string[] allText = recipeContent.Split(new string[] { "\r\n" }, StringSplitOptions.None);
- int number = 0;
- ObservableCollection<LineDataItem> lineData = new ObservableCollection<LineDataItem>();
- foreach (string lineText in allText)
- {
- LineDataItem line = new LineDataItem();
- line.LineNumber = (++number).ToString();
- line.LineText = lineText;
- if (!string.IsNullOrEmpty(lineText))
- {
- lineData.Add(line);
- if (isSelectA)
- {
- _mapLineTextA[line.LineNumber] = line;
- }
- else
- {
- _mapLineTextB[line.LineNumber] = line;
- }
- }
- }
- doc.LoadXml(recipeContent);
- ObservableCollection<StepDataItem> stepData = new ObservableCollection<StepDataItem>();
- XmlNodeList nodeSteps = doc.SelectNodes($"Aitex/TableRecipeData/Module[@Name='PM1']/Step");
- if (nodeSteps == null)
- nodeSteps = doc.SelectNodes($"Aitex/TableRecipeData/Step");
- foreach (XmlNode nodeStep in nodeSteps)
- {
- ObservableCollection<ParamDataItem> paramData = new ObservableCollection<ParamDataItem>();
- StepDataItem step = new StepDataItem();
- foreach (XmlAttribute attr in nodeStep.Attributes)
- {
- if (attr.Name == "StepNo")
- step.StepNumber = attr.Value;
- else if (attr.Name == "Name")
- step.StepName = attr.Value;
- else
- {
- if (!attr.Name.Contains("IsSaved"))
- {
- ParamDataItem param = new ParamDataItem();
- param.ParamName = attr.Name;
- param.ParamValue = attr.Value;
- paramData.Add(param);
- }
- }
- }
- stepData.Add(step);
- if (isSelectA)
- {
- _mapStepParamA[step.StepNumber] = paramData;
- }
- else
- {
- _mapStepParamB[step.StepNumber] = paramData;
- }
- }
- if (isSelectA)
- {
- StepListA = new ObservableCollection<StepDataItem>(stepData.OrderBy(x => int.Parse(x.StepNumber)));
- NotifyOfPropertyChange(nameof(StepListA));
- WholeListA = new ObservableCollection<LineDataItem>(lineData.OrderBy(x => int.Parse(x.LineNumber)));
- NotifyOfPropertyChange(nameof(WholeListA));
- }
- else
- {
- StepListB = new ObservableCollection<StepDataItem>(stepData.OrderBy(x => int.Parse(x.StepNumber)));
- NotifyOfPropertyChange(nameof(StepListB));
- WholeListB = new ObservableCollection<LineDataItem>(lineData.OrderBy(x => int.Parse(x.LineNumber)));
- NotifyOfPropertyChange(nameof(WholeListB));
- }
- }
- private void LoadTableRecipeContentData(string recipeContent, bool isSelectA)
- {
- XmlDocument doc = isSelectA ? _domA : _domB;
- string[] allText = recipeContent.Split(new string[] { "\r\n" }, StringSplitOptions.None);
- int number = 0;
- doc.LoadXml(recipeContent);
- XmlNodeList nodeTables = doc.SelectNodes($"Aitex/TableRecipeData/Tables/Table");
- if (isSelectA)
- {
- tableStepListA.Clear();
- _mapTableStepParamA.Clear();
- }
- else
- {
- tableStepListB.Clear();
- _mapTableStepParamB.Clear();
- }
- foreach (XmlNode nodeTable in nodeTables)
- {
- TableDataItem tableDataItem = new TableDataItem();
- foreach (XmlAttribute attrTable in nodeTable.Attributes)
- {
- switch (attrTable.Name)
- {
- case "Index":
- tableDataItem.TableIndex = attrTable.Value;
- break;
- case "Name":
- tableDataItem.TableName = attrTable.Value;
- break;
- case "EndStatus":
- tableDataItem.EndStatus = attrTable.Value;
- break;
- default:
- break;
- }
- }
- XmlNodeList nodeSteps = nodeTable.SelectNodes("Step");
- ObservableCollection<StepDataItem> stepData = new ObservableCollection<StepDataItem>();
- Dictionary<string, ObservableCollection<ParamDataItem>> _tempMapStepParamA = new Dictionary<string, ObservableCollection<ParamDataItem>>();
- Dictionary<string, ObservableCollection<ParamDataItem>> _tempMapStepParamB = new Dictionary<string, ObservableCollection<ParamDataItem>>();
- foreach (XmlNode nodeStep in nodeSteps)
- {
- ObservableCollection<ParamDataItem> paramData = new ObservableCollection<ParamDataItem>();
- StepDataItem step = new StepDataItem();
- foreach (XmlAttribute attr in nodeStep.Attributes)
- {
- if (attr.Name == "StepNo")
- step.StepNumber = attr.Value;
- else if (attr.Name == "Name")
- step.StepName = attr.Value;
- else
- {
- if (!attr.Name.Contains("IsSaved"))
- {
- ParamDataItem param = new ParamDataItem();
- param.ParamName = attr.Name;
- param.ParamValue = attr.Value;
- paramData.Add(param);
- }
- }
- }
- stepData.Add(step);
- if (isSelectA)
- {
- _mapStepParamA[step.StepNumber] = paramData;
- _tempMapStepParamA[step.StepNumber] = paramData;
- }
- else
- {
- _mapStepParamB[step.StepNumber] = paramData;
- _tempMapStepParamB[step.StepNumber] = paramData;
- }
- }
- if (isSelectA)
- {
- var tableTemp = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == tableDataItem.TableIndex);
- if (tableTemp != null)
- {
- _mapTableStepParamA[tableTemp] = _tempMapStepParamA;
- }
- else
- {
- _mapTableStepParamA.Add(tableDataItem, _tempMapStepParamA);
- }
- int tbIndex = 1;
- int.TryParse(tableDataItem.TableIndex, out tbIndex);
- if (tableStepListA.Keys.Contains(tbIndex))
- {
- tableStepListA[tbIndex] = stepData;
- }
- else
- {
- tableStepListA.Add(tbIndex, stepData);
- }
- }
- else
- {
- var tableTemp = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == tableDataItem.TableIndex);
- if (tableTemp != null)
- {
- _mapTableStepParamB[tableTemp] = _tempMapStepParamB;
- }
- else
- {
- _mapTableStepParamB.Add(tableDataItem, _tempMapStepParamB);
- }
- int tbIndex = 1;
- int.TryParse(tableDataItem.TableIndex, out tbIndex);
- if (tableStepListB.Keys.Contains(tbIndex))
- {
- tableStepListB[tbIndex] = stepData;
- }
- else
- {
- tableStepListB.Add(tbIndex, stepData);
- }
- }
- }
- }
- public void ParamGridSelectionChangedB()
- {
- if (ParamSelectionB == null)
- {
- return;
- }
- NotifyOfPropertyChange(nameof(ParamSelectionB));
- ParamSelectionB.InvokePropertyChanged();
- }
- public void WholeGridSelectionChangedA()
- {
- if (LineSelectionA == null)
- {
- return;
- }
- NotifyOfPropertyChange(nameof(LineSelectionA));
- LineSelectionA.InvokePropertyChanged();
- }
- public void WholeGridSelectionChangedB()
- {
- if (LineSelectionB == null)
- {
- return;
- }
- NotifyOfPropertyChange(nameof(LineSelectionB));
- LineSelectionB.InvokePropertyChanged();
- }
- public void SaveLineA()
- {
- if (LineSelectionA == null)
- return;
- foreach (LineDataItem lineDataItem in WholeListA)
- {
- if (lineDataItem.LineNumber == LineSelectionA.LineNumber)
- {
- lineDataItem.LineText = LineSelectionA.LineText;
- break;
- }
- }
- string recipeContent = "";
- for (int i = 0; i < WholeListA.Count; i++)
- {
- recipeContent += WholeListA[i].LineText + ((i == WholeListB.Count - 1) ? "" : "\r\n");
- }
- CopyToInnerXml(recipeContent, true);
- LoadrecipeContentData(recipeContent, true);
- Recompare();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- public void SaveLineB()
- {
- if (LineSelectionB == null)
- return;
- foreach (LineDataItem lineDataItem in WholeListB)
- {
- if (lineDataItem.LineNumber == LineSelectionB.LineNumber)
- {
- lineDataItem.LineText = LineSelectionB.LineText;
- break;
- }
- }
- string recipeContent = "";
- for (int i = 0; i < WholeListB.Count; i++)
- {
- recipeContent += WholeListB[i].LineText + ((i == WholeListB.Count - 1) ? "" : "\r\n");
- }
- CopyToInnerXml(recipeContent, false);
- LoadrecipeContentData(recipeContent, false);
- Recompare();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- private void Recompare()
- {
- if (IsCompareBySName)
- {
- RecompareStepByName();
- }
- RecompareWhole();
- }
- private void RecompareStepByStep()
- {
- if (StepListA == null || StepListB == null)
- return;
- var stepAMaxNumber = (StepListA == null || StepListA.Count() == 0) ? 0 : StepListA.Select(stepItem => int.Parse(stepItem.StepNumber)).Max();
- var stepBMaxNumber = (StepListB == null || StepListB.Count() == 0) ? 0 : StepListB.Select(stepItem => int.Parse(stepItem.StepNumber)).Max();
- int stepMaxNumber = stepAMaxNumber > stepBMaxNumber ? stepAMaxNumber : stepBMaxNumber;
- for (int i = 0; i < stepMaxNumber + 1; i++)
- {
- StepDataItem getStepA = (StepListA == null || StepListA.Count() == 0) ? null : (StepListA.Where(x => x.StepNumber == i.ToString()) == null ? null : StepListA.Where(x => x.StepNumber == i.ToString()).FirstOrDefault());
- StepDataItem getStepB = (StepListB == null || StepListB.Count() == 0) ? null : (StepListB.Where(x => x.StepNumber == i.ToString()) == null ? null : StepListB.Where(x => x.StepNumber == i.ToString()).FirstOrDefault());
- if (getStepA != null && getStepB != null)
- {
- if (getStepA.StepName == getStepB.StepName)
- getStepA.IsDiffName = getStepB.IsDiffName = false;
- else
- getStepA.IsDiffName = getStepB.IsDiffName = true;
- ObservableCollection<ParamDataItem> paramA = _mapStepParamA.ContainsKey(i.ToString()) ? _mapStepParamA[i.ToString()] : null;
- ObservableCollection<ParamDataItem> paramB = _mapStepParamB.ContainsKey(i.ToString()) ? _mapStepParamB[i.ToString()] : null;
- bool isDiff = false;
- bool IsExtra = true;
- if (paramA != null && paramB == null)
- {
- foreach (var pa in paramA)
- {
- pa.IsExtra = true;
- pa.IsDiff = false;
- }
- }
- else if (paramA == null && paramB != null)
- {
- foreach (var pb in paramB)
- {
- pb.IsExtra = true;
- pb.IsDiff = false;
- }
- }
- else if (paramA != null && paramB != null)
- {
- foreach (var pa in paramA)
- {
- var getParam = paramB.Where(pb => pb.ParamName == pa.ParamName).FirstOrDefault();
- if (getParam != null)
- {
- pa.IsExtra = false;
- getParam.IsExtra = false;
- getParam.IsDiff = pa.IsDiff = (pa.ParamValue != getParam.ParamValue);
- if (pa.ParamValue != getParam.ParamValue)
- {
- isDiff = true;
- }
- }
- }
- getStepA.IsExtra = getStepB.IsExtra = false;
- }
- if (paramA != null)
- {
- foreach (var pa in paramA)
- {
- pa.InvokePropertyChanged();
- }
- }
- if (paramB != null)
- {
- foreach (var pb in paramB)
- {
- pb.InvokePropertyChanged();
- }
- }
- getStepA.IsDiff = getStepB.IsDiff = isDiff;
- getStepA.IsHidden = getStepB.IsHidden = !isDiff && IsShowDiffSteps ? true : false;
- getStepA.InvokePropertyChanged();
- getStepB.InvokePropertyChanged();
- }
- else if (getStepA == null && getStepB != null)
- {
- getStepB.IsExtra = true;
- getStepB.IsDiff = false;
- ObservableCollection<ParamDataItem> paramB = _mapStepParamB.ContainsKey(getStepB.StepNumber) ? _mapStepParamB[getStepB.StepNumber] : null;
- foreach (var pb in paramB)
- {
- pb.IsExtra = false;
- pb.IsDiff = false;
- pb.InvokePropertyChanged();
- }
- getStepB.InvokePropertyChanged();
- continue;
- }
- else if (getStepA != null && getStepB == null)
- {
- getStepA.IsExtra = true;
- getStepA.IsDiff = false;
- ObservableCollection<ParamDataItem> paramA = _mapStepParamA.ContainsKey(getStepA.StepNumber) ? _mapStepParamA[getStepA.StepNumber] : null;
- foreach (var pa in paramA)
- {
- pa.IsExtra = false;
- pa.IsDiff = false;
- pa.InvokePropertyChanged();
- }
- getStepA.InvokePropertyChanged();
- continue;
- }
- else
- {
- continue;
- }
- }
- NotifyOfPropertyChange(nameof(StepListA));
- NotifyOfPropertyChange(nameof(StepListB));
- }
- private void RecompareStepByName()
- {
- if (StepListA == null || StepListB == null)
- return;
- var stepAMaxNumber = (StepListA == null || StepListA.Count() == 0) ? 0 : StepListA.Select(stepItem => int.Parse(stepItem.StepNumber)).Max();
- var stepBMaxNumber = (StepListB == null || StepListB.Count() == 0) ? 0 : StepListB.Select(stepItem => int.Parse(stepItem.StepNumber)).Max();
- int stepMaxNumber = stepAMaxNumber > stepBMaxNumber ? stepAMaxNumber : stepBMaxNumber;
- foreach (var getStepA in StepListA)
- {
- StepDataItem getStepB = (StepListB.Where(x => x.StepName == getStepA.StepName) == null ? null : StepListB.Where(x => x.StepName == getStepA.StepName).FirstOrDefault());
- if (getStepB == null)
- {
- getStepA.IsDiff = false;
- getStepA.IsExtra = true;
- continue;
- }
- getStepA.IsDiffName = getStepB.IsDiffName = true;
- ObservableCollection<ParamDataItem> paramA = _mapStepParamA.ContainsKey(getStepA.StepNumber) ? _mapStepParamA[getStepA.StepNumber] : null;
- ObservableCollection<ParamDataItem> paramB = _mapStepParamB.ContainsKey(getStepB.StepNumber) ? _mapStepParamB[getStepB.StepNumber] : null;
- bool isDiff = false;
- bool IsExtra = true;
- if (paramA != null && paramB == null)
- {
- foreach (var pa in paramA)
- {
- pa.IsExtra = true;
- pa.IsDiff = false;
- }
- }
- else if (paramA == null && paramB != null)
- {
- foreach (var pb in paramB)
- {
- pb.IsExtra = true;
- pb.IsDiff = false;
- }
- }
- else if (paramA != null && paramB != null)
- {
- foreach (var pa in paramA)
- {
- var getParam = paramB.Where(pb => pb.ParamName == pa.ParamName).FirstOrDefault();
- if (getParam != null)
- {
- pa.IsExtra = false;
- getParam.IsExtra = false;
- getParam.IsDiff = pa.IsDiff = (pa.ParamValue != getParam.ParamValue);
- if (pa.ParamValue != getParam.ParamValue)
- {
- isDiff = true;
- }
- }
- }
- getStepA.IsExtra = getStepB.IsExtra = false;
- }
- if (paramA != null)
- {
- foreach (var pa in paramA)
- {
- pa.InvokePropertyChanged();
- }
- }
- if (paramB != null)
- {
- foreach (var pb in paramB)
- {
- pb.InvokePropertyChanged();
- }
- }
- getStepA.IsDiff = getStepB.IsDiff = isDiff;
- getStepA.IsHidden = getStepB.IsHidden = !isDiff && IsShowDiffSteps ? true : false;
- getStepA.InvokePropertyChanged();
- getStepB.InvokePropertyChanged();
- }
- foreach (var getStepB in StepListB)
- {
- StepDataItem getStepA = (StepListA.Where(x => x.StepName == getStepB.StepName) == null ? null : StepListA.Where(x => x.StepName == getStepB.StepName).FirstOrDefault());
- if (getStepA == null)
- {
- getStepB.IsDiff = false;
- getStepB.IsExtra = true;
- continue;
- }
- ObservableCollection<ParamDataItem> paramA = _mapStepParamA.ContainsKey(getStepA.StepNumber) ? _mapStepParamA[getStepA.StepNumber] : null;
- ObservableCollection<ParamDataItem> paramB = _mapStepParamB.ContainsKey(getStepB.StepNumber) ? _mapStepParamB[getStepB.StepNumber] : null;
- bool isDiff = false;
- foreach (var pb in paramB)
- {
- var getParam = paramA.Where(p => p.ParamName == pb.ParamName).FirstOrDefault();
- if (getParam != null)
- {
- pb.IsExtra = false;
- getParam.IsExtra = false;
- getParam.IsDiff = pb.IsDiff = (pb.ParamValue != getParam.ParamValue);
- if (pb.ParamValue != getParam.ParamValue)
- {
- isDiff = true;
- }
- getParam.IsDiff = pb.IsDiff = (pb.ParamValue != getParam.ParamValue);
- }
- pb.InvokePropertyChanged();
- }
- getStepB.IsExtra = false;
- getStepB.IsDiff = isDiff;
- getStepB.InvokePropertyChanged();
- }
- NotifyOfPropertyChange(nameof(StepListA));
- NotifyOfPropertyChange(nameof(StepListB));
- }
- private void RecompareTableByName()
- {
- for (int i = 1; i < 21; i++)
- {
- ObservableCollection<StepDataItem> _stepListA = null;
- ObservableCollection<StepDataItem> _stepListB = null;
- if (tableStepListA.Keys.Contains(i))
- {
- _stepListA = tableStepListA[i];
- }
- if (tableStepListB.Keys.Contains(i))
- {
- _stepListB = tableStepListB[i];
- }
- if (_stepListA == null || _stepListB == null)
- return;
- var stepAMaxNumber = (_stepListA == null || _stepListA.Count() == 0) ? 0 : _stepListA.Select(stepItem => int.Parse(stepItem.StepNumber)).Max();
- var stepBMaxNumber = (_stepListB == null || _stepListB.Count() == 0) ? 0 : _stepListB.Select(stepItem => int.Parse(stepItem.StepNumber)).Max();
- int stepMaxNumber = stepAMaxNumber > stepBMaxNumber ? stepAMaxNumber : stepBMaxNumber;
- foreach (var getStepA in _stepListA)
- {
- StepDataItem getStepB = (_stepListB.Where(x => x.StepName == getStepA.StepName) == null ? null : _stepListB.Where(x => x.StepName == getStepA.StepName).FirstOrDefault());
- if (getStepB == null)
- {
- getStepA.IsDiff = false;
- getStepA.IsExtra = true;
- continue;
- }
- getStepA.IsDiffName = getStepB.IsDiffName = true;
- var tempA = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == i.ToString());
- ObservableCollection<ParamDataItem> paramA = tempA != null && _mapTableStepParamA[tempA].ContainsKey(getStepA.StepNumber) ? _mapTableStepParamA[tempA][getStepA.StepNumber] : null;
- var tempB = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == i.ToString());
- ObservableCollection<ParamDataItem> paramB = tempB != null && _mapTableStepParamB[tempB].ContainsKey(getStepB.StepNumber) ? _mapTableStepParamB[tempB][getStepB.StepNumber] : null;
- bool isDiff = false;
- bool IsExtra = true;
- if (paramA != null && paramB == null)
- {
- foreach (var pa in paramA)
- {
- pa.IsExtra = true;
- pa.IsDiff = false;
- }
- }
- else if (paramA == null && paramB != null)
- {
- foreach (var pb in paramB)
- {
- pb.IsExtra = true;
- pb.IsDiff = false;
- }
- }
- else if (paramA != null && paramB != null)
- {
- foreach (var pa in paramA)
- {
- var getParam = paramB.Where(pb => pb.ParamName == pa.ParamName).FirstOrDefault();
- if (getParam != null)
- {
- pa.IsExtra = false;
- getParam.IsExtra = false;
- getParam.IsDiff = pa.IsDiff = (pa.ParamValue != getParam.ParamValue);
- if (pa.ParamValue != getParam.ParamValue)
- {
- isDiff = true;
- }
- }
- }
- getStepA.IsExtra = getStepB.IsExtra = false;
- }
- if (paramA != null)
- {
- foreach (var pa in paramA)
- {
- pa.InvokePropertyChanged();
- }
- }
- if (paramB != null)
- {
- foreach (var pb in paramB)
- {
- pb.InvokePropertyChanged();
- }
- }
- getStepA.IsDiff = getStepB.IsDiff = isDiff;
- getStepA.IsHidden = getStepB.IsHidden = !isDiff && IsShowDiffSteps ? true : false;
- //getStepA.InvokePropertyChanged();
- //getStepB.InvokePropertyChanged();
- }
- foreach (var getStepB in _stepListB)
- {
- StepDataItem getStepA = (_stepListA.Where(x => x.StepName == getStepB.StepName) == null ? null : _stepListA.Where(x => x.StepName == getStepB.StepName).FirstOrDefault());
- if (getStepA == null)
- {
- getStepB.IsDiff = false;
- getStepB.IsExtra = true;
- continue;
- }
- var tempA = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == i.ToString());
- ObservableCollection<ParamDataItem> paramA = tempA != null && _mapTableStepParamA[tempA].ContainsKey(getStepA.StepNumber) ? _mapTableStepParamA[tempA][getStepA.StepNumber] : null;
- var tempB = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == i.ToString());
- ObservableCollection<ParamDataItem> paramB = tempB != null && _mapTableStepParamB[tempB].ContainsKey(getStepB.StepNumber) ? _mapTableStepParamB[tempB][getStepB.StepNumber] : null;
- bool isDiff = false;
- foreach (var pb in paramB)
- {
- var getParam = paramA.Where(p => p.ParamName == pb.ParamName).FirstOrDefault();
- if (getParam != null)
- {
- pb.IsExtra = false;
- getParam.IsExtra = false;
- getParam.IsDiff = pb.IsDiff = (pb.ParamValue != getParam.ParamValue);
- if (pb.ParamValue != getParam.ParamValue)
- {
- isDiff = true;
- }
- getParam.IsDiff = pb.IsDiff = (pb.ParamValue != getParam.ParamValue);
- }
- pb.InvokePropertyChanged();
- }
- getStepB.IsExtra = false;
- getStepB.IsDiff = isDiff;
- getStepB.InvokePropertyChanged();
- }
- var tempParA = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == i.ToString());
- var tempParB = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == i.ToString());
- if (tempParA != null) tempParA.IsDiff = _stepListA?.Where(x => x.IsDiff).Count() == 0 ? false : true;
- if (tempParB != null) tempParB.IsDiff = _stepListB?.Where(x => x.IsDiff).Count() == 0 ? false : true;
- }
- NotifyOfPropertyChange(nameof(StepListA));
- NotifyOfPropertyChange(nameof(StepListB));
- }
- //private void RecompareStep()
- //{
- // if (StepListA == null || StepListB == null)
- // return;
- // int i = 0;
- // for (i = 0; i < StepListA.Count && i < StepListB.Count; i++)
- // {
- // if (StepListA[i].StepName == StepListB[i].StepName)
- // StepListA[i].IsDiffName = StepListB[i].IsDiffName = false;
- // else
- // StepListA[i].IsDiffName = StepListB[i].IsDiffName = true;
- // ObservableCollection<ParamDataItem> paramA = _mapStepParamA[StepListA[i].StepNumber];
- // ObservableCollection<ParamDataItem> paramB = _mapStepParamB[StepListB[i].StepNumber];
- // bool isDiff = false;
- // bool IsExtra = true;
- // foreach (var pa in paramA)
- // {
- // pa.IsExtra = true;
- // }
- // foreach (var pb in paramB)
- // {
- // pb.IsExtra = true;
- // }
- // foreach (var pa in paramA)
- // {
- // foreach (var pb in paramB)
- // {
- // if (pb.ParamName == pa.ParamName)
- // {
- // pb.IsExtra = false;
- // pa.IsExtra = false;
- // pb.IsDiff = pa.IsDiff = (pa.ParamValue != pb.ParamValue);
- // if (pa.IsDiff)
- // isDiff = true;
- // break;
- // }
- // }
- // }
- // foreach (var pa in paramA)
- // {
- // pa.InvokePropertyChanged();
- // }
- // foreach (var pb in paramB)
- // {
- // pb.InvokePropertyChanged();
- // }
- // StepListA[i].IsDiff = StepListB[i].IsDiff = isDiff;
- // StepListA[i].IsExtra = StepListB[i].IsExtra = false;
- // StepListA[i].IsHidden = StepListB[i].IsHidden = !isDiff && IsShowDiffSteps ? true : false;
- // StepListA[i].InvokePropertyChanged();
- // StepListB[i].InvokePropertyChanged();
- // }
- // for (int j = i; j < StepListA.Count; j++)
- // {
- // StepListA[j].IsDiff = false;
- // StepListA[j].IsExtra = true;
- // StepListA[j].InvokePropertyChanged();
- // foreach (var pa in _mapStepParamA[StepListA[j].StepNumber])
- // {
- // pa.InvokePropertyChanged();
- // }
- // }
- // for (int k = i; k < StepListB.Count; k++)
- // {
- // StepListB[k].IsDiff = false;
- // StepListB[k].IsExtra = true;
- // WholeListB[k].InvokePropertyChanged();
- // _mapLineTextB[WholeListB[k].LineNumber].InvokePropertyChanged();
- // foreach (var pb in _mapStepParamB[StepListB[k].StepNumber])
- // {
- // pb.InvokePropertyChanged();
- // }
- // }
- // NotifyOfPropertyChange(nameof(StepListA));
- // NotifyOfPropertyChange(nameof(StepListB));
- //}
- private void RecompareWhole()
- {
- if (WholeListA == null || WholeListB == null)
- return;
- int i = 0;
- for (i = 0; i < WholeListA.Count && i < WholeListB.Count; i++)
- {
- LineDataItem lineA = _mapLineTextA[WholeListA[i].LineNumber];
- LineDataItem lineB = _mapLineTextB[WholeListB[i].LineNumber];
- bool isDiff = false;
- lineB.IsDiff = lineA.IsDiff = (lineA.LineText != lineB.LineText);
- if (lineA.IsDiff)
- isDiff = true;
- WholeListA[i].IsDiff = WholeListB[i].IsDiff = isDiff;
- WholeListA[i].IsExtra = WholeListB[i].IsExtra = false;
- _mapLineTextA[WholeListA[i].LineNumber].IsDiff = _mapLineTextB[WholeListB[i].LineNumber].IsDiff = isDiff;
- _mapLineTextA[WholeListA[i].LineNumber].IsExtra = _mapLineTextB[WholeListB[i].LineNumber].IsExtra = false;
- lineA.InvokePropertyChanged();
- lineB.InvokePropertyChanged();
- WholeListA[i].InvokePropertyChanged();
- WholeListB[i].InvokePropertyChanged();
- }
- for (int j = i; j < WholeListA.Count; j++)
- {
- WholeListA[j].IsDiff = false;
- WholeListA[j].IsExtra = true;
- _mapLineTextA[WholeListA[j].LineNumber].IsDiff = false;
- _mapLineTextA[WholeListA[j].LineNumber].IsExtra = true;
- if (!(_mapLineTextA[WholeListA[j].LineNumber].LineText.Contains("<Step StepNo") || _mapLineTextA[WholeListA[j].LineNumber].LineText.Contains("<Moudule Name")))
- {
- WholeListA[j].IsDiff = false;
- WholeListA[j].IsExtra = false;
- }
- WholeListA[j].InvokePropertyChanged();
- _mapLineTextA[WholeListA[j].LineNumber].InvokePropertyChanged();
- }
- for (int k = i; k < WholeListB.Count; k++)
- {
- WholeListB[k].IsDiff = false;
- WholeListB[k].IsExtra = true;
- _mapLineTextB[WholeListB[k].LineNumber].IsDiff = false;
- _mapLineTextB[WholeListB[k].LineNumber].IsExtra = true;
- if (!(_mapLineTextB[WholeListB[k].LineNumber].LineText.Contains("<Step StepNo") || _mapLineTextB[WholeListB[k].LineNumber].LineText.Contains("<Moudule Name")))
- {
- WholeListB[k].IsDiff = false;
- WholeListB[k].IsExtra = false;
- }
- WholeListB[k].InvokePropertyChanged();
- _mapLineTextB[WholeListB[k].LineNumber].InvokePropertyChanged();
- }
- NotifyOfPropertyChange(nameof(WholeListA));
- NotifyOfPropertyChange(nameof(WholeListB));
- }
- private void SyncStepSelection(TwoStepDataItem stepData)
- {
- if (stepData == null)
- return;
- var getStepA = StepListA.Where(x => x.StepName == stepData.AStepName).FirstOrDefault();
- var getStepB = StepListB.Where(x => x.StepName == stepData.BStepName).FirstOrDefault();
- if (getStepA == null && getStepB == null)
- {
- ParamList.Clear();
- return;
- }
- else if (getStepA != null && getStepB == null)
- {
- ParamListA = _mapStepParamA[getStepA.StepNumber];
- foreach (var item in ParamListA)
- {
- var par = ParamList.FirstOrDefault(x => x.ParamName == item.ParamName);
- if (par != null)
- {
- par.AParamValue = item.ParamValue;
- par.IsDiff = false;
- par.IsExtra = item.IsExtra;
- par.BParamValue = "--";
- }
- else
- {
- TwoParamDataItem param = new TwoParamDataItem();
- param.ParamName = item.ParamName;
- param.AParamValue = item.ParamValue;
- param.IsDiff = item.IsDiff;
- param.IsExtra = item.IsExtra;
- param.BParamValue = "--";
- ParamList.Add(param);
- }
- }
- }
- else if (getStepA == null && getStepB != null)
- {
- ParamListB = _mapStepParamB[getStepB.StepNumber];
- foreach (var item in ParamListB)
- {
- var par = ParamList.FirstOrDefault(x => x.ParamName == item.ParamName);
- if (par != null)
- {
- par.BParamValue = item.ParamValue;
- par.IsDiff = false;
- par.IsExtra = item.IsExtra;
- par.AParamValue = "--";
- }
- else
- {
- var param = new TwoParamDataItem();
- param.ParamName = item.ParamName;
- param.BParamValue = item.ParamValue;
- param.IsDiff = item.IsDiff;
- param.IsExtra = item.IsExtra;
- param.AParamValue = "--";
- ParamList.Add(param);
- }
- }
- }
- else
- {
- ParamListA = _mapStepParamA[getStepA.StepNumber];
- ParamListB = _mapStepParamB[getStepB.StepNumber];
- foreach (var item in ParamListA)
- {
- var bValue = ParamListB.FirstOrDefault(x => x.ParamName == item.ParamName)?.ParamValue;
- var par = ParamList.FirstOrDefault(x => x.ParamName == item.ParamName);
- if (par != null)
- {
- par.AParamValue = item.ParamValue;
- par.IsDiff = item.IsDiff;
- par.IsExtra = item.IsExtra;
- if (bValue != null)
- {
- par.BParamValue = bValue;
- }
- else
- {
- par.BParamValue = "--";
- }
- }
- else
- {
- var param = new TwoParamDataItem();
- param.ParamName = item.ParamName;
- param.AParamValue = item.ParamValue;
- param.IsDiff = item.IsDiff;
- param.IsExtra = item.IsExtra;
- if (bValue != null)
- {
- param.BParamValue = bValue;
- }
- else
- {
- param.BParamValue = "--";
- }
- ParamList.Add(param);
- }
- }
- }
- //NotifyOfPropertyChange(nameof(StepSelection));
- //StepSelection.InvokePropertyChanged();
- }
- private void SyncTableStepSelection(TwoStepDataItem stepData)
- {
- if (stepData == null)
- return;
- var getStepA = tableStepListA[SelectTableIndex].Where(x => x.StepName == stepData.AStepName).FirstOrDefault();
- var getStepB = tableStepListB[SelectTableIndex].Where(x => x.StepName == stepData.BStepName).FirstOrDefault();
- if (getStepA == null && getStepB == null)
- {
- ParamList.Clear();
- return;
- }
- else if (getStepA != null && getStepB == null)
- {
- var tempPar = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == SelectTableIndex.ToString());
- ParamListA.Clear();
- if (tempPar != null)
- {
- _mapTableStepParamA[tempPar][getStepA.StepNumber].ToList().ForEach(x => ParamListA.Add(x));
- }
- foreach (var item in ParamListA)
- {
- var par = ParamList.FirstOrDefault(x => x.ParamName == item.ParamName);
- if (par != null)
- {
- par.AParamValue = item.ParamValue;
- par.IsDiff = false;
- par.IsExtra = item.IsExtra;
- par.BParamValue = "--";
- }
- else
- {
- TwoParamDataItem param = new TwoParamDataItem();
- param.ParamName = item.ParamName;
- param.AParamValue = item.ParamValue;
- param.IsDiff = item.IsDiff;
- param.IsExtra = item.IsExtra;
- param.BParamValue = "--";
- ParamList.Add(param);
- }
- }
- }
- else if (getStepA == null && getStepB != null)
- {
- var tempPar = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == SelectTableIndex.ToString());
- ParamListB.Clear();
- if (tempPar != null)
- {
- _mapTableStepParamB[tempPar][getStepB.StepNumber].ToList().ForEach(x => ParamListB.Add(x));
- }
- foreach (var item in ParamListB)
- {
- var par = ParamList.FirstOrDefault(x => x.ParamName == item.ParamName);
- if (par != null)
- {
- par.BParamValue = item.ParamValue;
- par.IsDiff = false;
- par.IsExtra = item.IsExtra;
- par.AParamValue = "--";
- }
- else
- {
- var param = new TwoParamDataItem();
- param.ParamName = item.ParamName;
- param.BParamValue = item.ParamValue;
- param.IsDiff = item.IsDiff;
- param.IsExtra = item.IsExtra;
- param.AParamValue = "--";
- ParamList.Add(param);
- }
- }
- }
- else
- {
- var tempPar = _mapTableStepParamA.Keys.FirstOrDefault(x => x.TableIndex == SelectTableIndex.ToString());
- ParamListA.Clear();
- if (tempPar != null)
- {
- _mapTableStepParamA[tempPar][getStepA.StepNumber].ToList().ForEach(x => ParamListA.Add(x));
- }
- var tempParB = _mapTableStepParamB.Keys.FirstOrDefault(x => x.TableIndex == SelectTableIndex.ToString());
- ParamListB.Clear();
- if (tempParB != null)
- {
- _mapTableStepParamB[tempParB][getStepB.StepNumber].ToList().ForEach(x => ParamListB.Add(x));
- }
- foreach (var item in ParamListA)
- {
- var bValue = ParamListB.FirstOrDefault(x => x.ParamName == item.ParamName)?.ParamValue;
- var par = ParamList.FirstOrDefault(x => x.ParamName == item.ParamName);
- if (par != null)
- {
- par.AParamValue = item.ParamValue;
- par.IsExtra = item.IsExtra;
- if (bValue != null)
- {
- par.IsDiff = item.ParamValue != bValue;
- par.BParamValue = bValue;
- }
- else
- {
- par.BParamValue = "--";
- }
- }
- else
- {
- var param = new TwoParamDataItem();
- param.ParamName = item.ParamName;
- param.AParamValue = item.ParamValue;
- param.IsDiff = item.IsDiff;
- param.IsExtra = item.IsExtra;
- if (bValue != null)
- {
- param.BParamValue = bValue;
- }
- else
- {
- param.BParamValue = "--";
- }
- ParamList.Add(param);
- }
- }
- }
- //NotifyOfPropertyChange(nameof(StepSelection));
- //StepSelection.InvokePropertyChanged();
- }
- private void SyncParamSelection(ParamDataItem paramData, bool isSelectA)
- {
- try
- {
- if (paramData == null)
- return;
- if (isSelectA)
- {
- if (IsCompareBySName)
- {
- //var getSameStepName = StepListA.Where(x => x.StepName == StepSelectionB.StepName).FirstOrDefault();
- //if (getSameStepName == null) return;
- //if (_mapStepParamA.ContainsKey(getSameStepName.StepNumber))
- //{
- // ParamListA = _mapStepParamA[getSameStepName.StepNumber];
- // NotifyOfPropertyChange(nameof(ParamListA));
- //}
- //else
- // return;
- //foreach (var item in ParamListA)
- //{
- // if (item.ParamName == paramData.ParamName)
- // {
- // _paramSelectionA = item;
- // NotifyOfPropertyChange(nameof(ParamSelectionA));
- // ParamSelectionA.InvokePropertyChanged();
- // }
- //}
- }
- }
- else
- {
- //if (IsCompareByStep)
- //{
- // if (ParamListB == null)
- // {
- // if (_mapStepParamB.ContainsKey(StepSelectionA.StepNumber))
- // {
- // ParamListB = _mapStepParamB[StepSelectionA.StepNumber];
- // NotifyOfPropertyChange(nameof(ParamListB));
- // }
- // else
- // return;
- // }
- // foreach (var item in ParamListB)
- // {
- // if (item.ParamName == paramData.ParamName)
- // {
- // _paramSelectionB = item;
- // NotifyOfPropertyChange(nameof(ParamSelectionB));
- // ParamSelectionB.InvokePropertyChanged();
- // }
- // }
- //}
- //if (IsCompareBySName)
- //{
- // if (ParamListB == null)
- // {
- // var getSameStepName = StepListB.Where(x => x.StepName == StepSelectionA.StepName).FirstOrDefault();
- // if (_mapStepParamB.ContainsKey(getSameStepName.StepNumber))
- // {
- // ParamListB = _mapStepParamB[getSameStepName.StepNumber];
- // NotifyOfPropertyChange(nameof(ParamListB));
- // }
- // else
- // return;
- // }
- // foreach (var item in ParamListB)
- // {
- // if (item.ParamName == paramData.ParamName)
- // {
- // _paramSelectionB = item;
- // NotifyOfPropertyChange(nameof(ParamSelectionB));
- // ParamSelectionB.InvokePropertyChanged();
- // }
- // }
- //}
- }
- }
- catch (Exception ex)
- {
- LOG.Write(ex.Message);
- }
- }
- private void SyncLineSelection(LineDataItem lineData, bool isSelectA)
- {
- if (lineData == null)
- return;
- if (isSelectA)
- {
- foreach (var item in WholeListA)
- {
- if (item.LineNumber == lineData.LineNumber)
- {
- _lineSelectionA = item;
- NotifyOfPropertyChange(nameof(LineSelectionA));
- LineSelectionA.InvokePropertyChanged();
- }
- }
- }
- else
- {
- foreach (var item in WholeListB)
- {
- if (item.LineNumber == lineData.LineNumber)
- {
- _lineSelectionB = item;
- NotifyOfPropertyChange(nameof(LineSelectionB));
- LineSelectionB.InvokePropertyChanged();
- }
- }
- }
- }
- public void RemoveA()
- {
- RemoveRecipe(true);
- }
- public void RemoveB()
- {
- RemoveRecipe(false);
- }
- private void RemoveSelectB()
- {
- StepListB?.Clear();
- ParamListB?.Clear();
- WholeListB?.Clear();
- RecipeB = string.Empty;
- _mapStepParamB?.Clear();
- _paramSelectionB = null;
- NotifyOfPropertyChange(nameof(StepListB));
- NotifyOfPropertyChange(nameof(ParamListB));
- NotifyOfPropertyChange(nameof(RecipeB));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveB));
- NotifyOfPropertyChange(nameof(ParamSelectionB));
- }
- private void RemoveRecipe(bool isSelectA)
- {
- if (!DialogBox.Confirm($"Are you sure you want to remove the recipe? \r\n{RecipeB}"))
- return;
- if (isSelectA)
- {
- StepListA?.Clear();
- ParamListA?.Clear();
- WholeListA?.Clear();
- RecipeA = string.Empty;
- _mapStepParamA?.Clear();
- NotifyOfPropertyChange(nameof(StepListA));
- NotifyOfPropertyChange(nameof(ParamListA));
- NotifyOfPropertyChange(nameof(RecipeA));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveA));
- }
- else
- {
- StepListB?.Clear();
- ParamListB?.Clear();
- WholeListB?.Clear();
- RecipeB = string.Empty;
- _mapStepParamB?.Clear();
- _paramSelectionB = null;
- NotifyOfPropertyChange(nameof(StepListB));
- NotifyOfPropertyChange(nameof(ParamListB));
- NotifyOfPropertyChange(nameof(RecipeB));
- NotifyOfPropertyChange(nameof(EnableButtonRemoveB));
- NotifyOfPropertyChange(nameof(ParamSelectionB));
- }
- }
- private void DeleteInnerXml(bool isSelectA)
- {
- try
- {
- XmlDocument docTo = isSelectA ? _domA : _domB;
- //XmlNode nodeModule = docTo.SelectSingleNode($"Aitex/TableRecipeData/Module[@Name='PM1']");{_module}
- // doc.SelectNodes($"Aitex/TableRecipeData/Module[@Name='PM1']/Step");
- XmlNodeList nodeSteps = docTo.SelectNodes($"Aitex/TableRecipeData/Module[@Name='PM1']/Step");
- if (nodeSteps == null)
- nodeSteps = docTo.SelectNodes($"Aitex/TableRecipeData/Step");
- List<XmlNode> oldNodeSteps = new List<XmlNode>();
- foreach (XmlNode nodeTemp in nodeSteps)
- {
- oldNodeSteps.Add(nodeTemp.Clone());
- }
- XmlNodeList backSteps = docTo.SelectNodes($"Aitex/TableRecipeData/Module[@Name='PM1']/BakeStep");
- if (backSteps == null)
- backSteps = docTo.SelectNodes($"Aitex/TableRecipeData/BakeStep");
- List<XmlNode> oldBackNodeSteps = new List<XmlNode>();
- foreach (XmlNode nodeTemp in backSteps)
- {
- oldBackNodeSteps.Add(nodeTemp.Clone());
- }
- XmlNode stepsNode = docTo.SelectSingleNode($"Aitex/TableRecipeData/Module[@Name='PM1']/Step").ParentNode;
- stepsNode.RemoveAll();
- (stepsNode as XmlElement).SetAttribute("Name", "PM1"); //微釜的recipe为什么都是PM1?,如果recipe改了,此处要改回(stepsNode as XmlElement).SetAttribute("Name", _module);
- ObservableCollection<StepDataItem> stepListTo = isSelectA ? StepListA : StepListB;
- if (stepsNode == null)
- {
- return;
- }
- foreach (StepDataItem item in stepListTo)
- {
- XmlElement DeviceTree = docTo.CreateElement("Step");
- DeviceTree.SetAttribute("StepNo", item.StepNumber.ToString());
- DeviceTree.SetAttribute("Name", item.StepName);
- stepsNode.AppendChild(DeviceTree);
- }
- foreach (XmlNode nodeStep in stepsNode)
- {
- string stepNumber = nodeStep.Attributes["StepNo"].Value;
- ObservableCollection<ParamDataItem> paramList =
- isSelectA ? _mapStepParamA[stepNumber] : _mapStepParamB[stepNumber];
- foreach (var param in paramList)
- {
- (nodeStep as XmlElement).SetAttribute(param.ParamName, param.ParamValue);
- }
- }
- foreach (XmlNode nodeStep in backSteps)
- {
- stepsNode.AppendChild(nodeStep);
- }
- string backText = getXmlText(isSelectA ? _domA : _domB);
- LoadrecipeContentData(backText, isSelectA);
- Recompare();
- SyncShowDiffSteps(IsShowDiffSteps);
- if (isSelectA)
- {
- BackInnerXmlTextA.Add(backText);
- }
- else
- {
- BackInnerXmlTextB.Add(backText);
- }
- }
- catch (Exception ex)
- {
- LOG.Write(ex.Message);
- }
- }
- public void SelectedRecipeTable()
- {
- ItemsSelectDialogViewModel itemsSelectDialogViewModel = new ItemsSelectDialogViewModel();
- itemsSelectDialogViewModel.Items.Clear();
- var tables = _mapTableStepParamA.Keys;
- foreach (var item in tables)
- {
- TwoTableDataItem twoTableDataItem = new TwoTableDataItem();
- int tableIndex = -1;
- int.TryParse(item.TableIndex, out tableIndex);
- if (tableIndex != -1)
- {
- twoTableDataItem.Index = tableIndex;
- twoTableDataItem.ATableName = item.TableName;
- var tablesB = _mapTableStepParamB.Keys;
- var tableB = tablesB.FirstOrDefault(x => x.TableIndex == item.TableIndex);
- if (tableB != null)
- {
- twoTableDataItem.BTableName = tableB.TableName;
- twoTableDataItem.IsDiff = tableB.IsDiff;
- }
- itemsSelectDialogViewModel.Items.Add(twoTableDataItem);
- }
- }
- WindowManager wm = new WindowManager();
- bool? bret = wm.ShowDialog(itemsSelectDialogViewModel);
- if ((bool)bret)
- {
- var item = itemsSelectDialogViewModel.SelectedItem;
- SelectedTwoTableData = item;
- SelectTableIndex = item.Index;
- GetTableStepList(true, item.Index);
- GetTableStepList(false, item.Index);
- SyncShowDiffSteps(IsShowDiffSteps);
- if (StepList != null && StepList.Count > 0)
- SyncTableStepSelection(StepList[0]);
- SyncShowDiffParams(_isShowDiffParams);
- }
- }
- private string getXmlText(XmlDocument xmlDocument)
- {
- (new RecipeProvider()).SaveRecipe("", "RecipeTemp", xmlDocument.InnerXml);
- var _recipeProvider = new RecipeProvider();
- var recipeContent = _recipeProvider.LoadRecipe("", "RecipeTemp", false);
- return recipeContent;
- }
- public void LineCopyToLeft(LineDataItem lineData)
- {
- LineCopy(lineData, false);
- }
- public void LineCopyToRight(LineDataItem lineData)
- {
- LineCopy(lineData, true);
- }
- public void LineCopy(LineDataItem lineData, bool isFromA)
- {
- try
- {
- LineDataItem lineFrom = lineData;
- ObservableCollection<LineDataItem> lineListTo = isFromA ? WholeListB : WholeListA;
- Dictionary<string, LineDataItem> mapFrom = isFromA ? _mapLineTextA : _mapLineTextB;
- Dictionary<string, LineDataItem> mapTo = isFromA ? _mapLineTextB : _mapLineTextA;
- var tempLine = lineListTo.Where(x => x.LineNumber == lineFrom.LineNumber).FirstOrDefault();
- if (tempLine != null)
- {
- tempLine.LineText = lineFrom.LineText;
- tempLine.IsDiff = lineFrom.IsDiff = false;
- tempLine.IsExtra = lineFrom.IsExtra = false;
- }
- string recipeContent = "";
- if (isFromA)
- {
- for (int i = 0; i < WholeListB.Count; i++)
- {
- recipeContent += WholeListB[i].LineText + ((i == WholeListB.Count - 1) ? "" : "\r\n");
- }
- }
- else
- {
- for (int i = 0; i < WholeListA.Count; i++)
- {
- recipeContent += WholeListA[i].LineText + ((i == WholeListB.Count - 1) ? "" : "\r\n");
- }
- }
- CopyToInnerXml(recipeContent, !isFromA);
- LoadrecipeContentData(recipeContent, !isFromA);
- Recompare();
- SyncShowDiffSteps(IsShowDiffSteps);
- }
- catch (Exception ex)
- {
- LOG.Write(ex.Message);
- }
- }
- private void CopyToInnerXml(string recipeContent, bool isSelectA)
- {
- XmlDocument doc = isSelectA ? _domA : _domB;
- doc.InnerXml = recipeContent;
- if (isSelectA)
- {
- BackInnerXmlTextA.Add(recipeContent);
- }
- else
- {
- BackInnerXmlTextB.Add(recipeContent);
- }
- }
- public void SaveA()
- {
- Save(true);
- }
- public void SaveB()
- {
- Save(false);
- }
- private void Save(bool isSelectA)
- {
- XmlDocument doc = isSelectA ? _domA : _domB;
- XmlNodeList nodeSteps = doc.SelectNodes($"Aitex/TableRecipeData/Module[@Name='PM1']/Step");
- if (nodeSteps == null)
- nodeSteps = doc.SelectNodes($"Aitex/TableRecipeData/Step");
- if (isSelectA)
- {
- (new RecipeProvider()).SaveRecipe("", RecipeA, doc.InnerXml);
- }
- else
- {
- (new RecipeProvider()).SaveRecipe("", RecipeB, doc.InnerXml);
- }
- }
- private bool _isStepModel = true;
- public bool IsStepModel
- {
- get { return _isStepModel; }
- set
- {
- _isStepModel = value;
- _isWholeModel = !_isStepModel;
- StepVisibility = _isStepModel ? Visibility.Visible : Visibility.Hidden;
- WholeVisibility = _isWholeModel ? Visibility.Visible : Visibility.Hidden;
- InvokePropertyChanged(nameof(IsStepModel));
- InvokePropertyChanged(nameof(IsWholeModel));
- InvokePropertyChanged(nameof(StepVisibility));
- InvokePropertyChanged(nameof(WholeVisibility));
- }
- }
- private bool _isWholeModel;
- public bool IsWholeModel
- {
- get { return _isWholeModel; }
- set
- {
- _isWholeModel = value;
- _isStepModel = !_isWholeModel;
- StepVisibility = _isStepModel ? Visibility.Visible : Visibility.Hidden;
- WholeVisibility = _isWholeModel ? Visibility.Visible : Visibility.Hidden;
- InvokePropertyChanged(nameof(IsWholeModel));
- InvokePropertyChanged(nameof(IsStepModel));
- InvokePropertyChanged(nameof(StepVisibility));
- InvokePropertyChanged(nameof(WholeVisibility));
- }
- }
- public Visibility StepVisibility
- {
- get; set;
- }
- public Visibility WholeVisibility
- {
- get; set;
- }
- private bool _isShowDiffSteps;
- public bool IsShowDiffSteps
- {
- get { return _isShowDiffSteps; }
- set
- {
- _isShowDiffSteps = value;
- _isShowAllSteps = !_isShowDiffSteps;
- SyncShowDiffSteps(_isShowDiffSteps);
- InvokePropertyChanged(nameof(IsShowDiffSteps));
- InvokePropertyChanged(nameof(IsShowAllSteps));
- }
- }
- private bool _isShowAllSteps = true;
- public bool IsShowAllSteps
- {
- get { return _isShowAllSteps; }
- set
- {
- _isShowAllSteps = value;
- _isShowDiffSteps = !_isShowAllSteps;
- SyncShowDiffSteps(_isShowDiffSteps);
- InvokePropertyChanged(nameof(IsShowAllSteps));
- InvokePropertyChanged(nameof(IsShowDiffSteps));
- }
- }
- private bool _isShowDiffParams;
- public bool IsShowDiffParams
- {
- get { return _isShowDiffParams; }
- set
- {
- _isShowDiffParams = value;
- SyncShowDiffParams(_isShowDiffParams);
- _isShowAllParams = !_isShowDiffParams;
- InvokePropertyChanged(nameof(IsShowDiffParams));
- InvokePropertyChanged(nameof(IsShowAllParams));
- }
- }
- private bool _isShowAllParams = true;
- public bool IsShowAllParams
- {
- get { return _isShowAllParams; }
- set
- {
- _isShowAllParams = value;
- _isShowDiffParams = !_isShowAllParams;
- SyncShowDiffParams(_isShowDiffParams);
- InvokePropertyChanged(nameof(IsShowDiffParams));
- InvokePropertyChanged(nameof(IsShowAllParams));
- }
- }
- private bool _isCompareBySName = true;
- public bool IsCompareBySName
- {
- get { return _isCompareBySName; }
- set
- {
- _isCompareBySName = value;
- Recompare();
- SyncShowDiffSteps(_isShowDiffSteps);
- InvokePropertyChanged(nameof(IsCompareBySName));
- }
- }
- private void SyncShowDiffSteps(bool isShowDiffSteps)
- {
- if (StepListA == null || StepListB == null)
- return;
- foreach (var item in StepList)
- {
- item.IsHidden = (IsShowDiffSteps ? (item.IsDiff == false && item.IsExtra == false) : false);
- }
- NotifyOfPropertyChange(nameof(StepList));
- }
- private void SyncShowDiffParams(bool isShowDiffParams)
- {
- if (ParamListA == null || ParamListB == null)
- return;
- if (isShowDiffParams)
- {
- foreach (var item in ParamList)
- {
- if (item.IsDiff == false && item.IsExtra == false)
- {
- item.IsHidden = isShowDiffParams;
- }
- else
- {
- item.IsHidden = false;
- }
- }
- }
- else
- {
- foreach (var item in ParamList)
- {
- item.IsHidden = isShowDiffParams;
- }
- }
- NotifyOfPropertyChange(nameof(ParamList));
- }
- }
- }
|