forked from Blackfrosch/VAGEDCSuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CompareResults.cs
496 lines (438 loc) · 18.2 KB
/
CompareResults.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using DevExpress.XtraGrid;
using DevExpress.XtraGrid.Views.Grid;
namespace VAGSuite
{
public partial class CompareResults : DevExpress.XtraEditors.XtraUserControl
{
public delegate void NotifySelectSymbol(object sender, SelectSymbolEventArgs e);
public event CompareResults.NotifySelectSymbol onSymbolSelect;
private string m_OriginalFilename = string.Empty;
public string OriginalFilename
{
get { return m_OriginalFilename; }
set { m_OriginalFilename = value; }
}
private string m_CompareFilename = string.Empty;
public string CompareFilename
{
get { return m_CompareFilename; }
set { m_CompareFilename = value; }
}
private SymbolCollection m_originalSymbolCollection = new SymbolCollection();
public SymbolCollection OriginalSymbolCollection
{
get { return m_originalSymbolCollection; }
set { m_originalSymbolCollection = value; }
}
private SymbolCollection m_compareSymbolCollection = new SymbolCollection();
public SymbolCollection CompareSymbolCollection
{
get { return m_compareSymbolCollection; }
set { m_compareSymbolCollection = value; }
}
private bool m_UseForFind = false;
public bool UseForFind
{
get { return m_UseForFind; }
set
{
m_UseForFind = value;
if (m_UseForFind)
{
// hide certain columns
gridColumn7.Visible = false;
gridColumn8.Visible = false;
gridColumn9.Visible = false;
gridColumn10.Visible = false;
gridColumn11.Visible = false;
gridColumn12.Visible = false;
gridColumn13.Visible = false;
gcMissingInCompareFile.Visible = false;
gcMissingInOriFile.Visible = false;
showDifferenceMapToolStripMenuItem.Visible = false;
saveLayoutToolStripMenuItem.Visible = false;
}
}
}
private string m_filename = "";
public string Filename
{
get { return m_filename; }
set { m_filename = value; }
}
private bool m_ShowAddressesInHex = true;
public bool ShowAddressesInHex
{
get { return m_ShowAddressesInHex; }
set { m_ShowAddressesInHex = value; }
}
public void SetFilterMode(bool IsHexMode)
{
if (IsHexMode)
{
gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn2.DisplayFormat.FormatString = "X6";
gridColumn2.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn3.DisplayFormat.FormatString = "X6";
gridColumn3.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn4.DisplayFormat.FormatString = "X6";
gridColumn4.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn5.DisplayFormat.FormatString = "X6";
gridColumn5.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn12.DisplayFormat.FormatString = "X6";
gridColumn12.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn13.DisplayFormat.FormatString = "X6";
gridColumn13.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
}
else
{
gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn2.DisplayFormat.FormatString = "";
gridColumn2.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.Value;
gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn3.DisplayFormat.FormatString = "";
gridColumn3.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.Value;
gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn4.DisplayFormat.FormatString = "";
gridColumn4.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.Value;
gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn5.DisplayFormat.FormatString = "";
gridColumn5.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.Value;
gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn12.DisplayFormat.FormatString = "";
gridColumn12.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.Value;
gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
gridColumn13.DisplayFormat.FormatString = "";
gridColumn13.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.Value;
}
}
public CompareResults()
{
InitializeComponent();
try
{
gridView1.RestoreLayoutFromRegistry("HKEY_CURRENT_USER\\Software\\VAGEDCSuite\\CompareView");
}
catch (Exception)
{
}
}
public void SetGridWidth()
{
gridView1.BestFitColumns();
}
private void CastSelectEvent(int m_map_address, int m_map_length, string m_map_name, int symbolnumber1, int symbolnumber2, int codeblock1, int codeblock2)
{
if (onSymbolSelect != null)
{
// haal eerst de data uit de tabel van de gridview
onSymbolSelect(this, new SelectSymbolEventArgs(m_map_address, m_map_length, m_map_name, m_filename, false, m_compareSymbolCollection, symbolnumber1, symbolnumber2, codeblock1, codeblock2));
}
}
private void CastDifferenceEvent(int m_map_address, int m_map_length, string m_map_name, int symbolnumber1, int symbolnumber2, int codeblock1, int codeblock2)
{
if (onSymbolSelect != null)
{
// haal eerst de data uit de tabel van de gridview
onSymbolSelect(this, new SelectSymbolEventArgs(m_map_address, m_map_length, m_map_name, m_filename, true, m_compareSymbolCollection, symbolnumber1, symbolnumber2, codeblock1, codeblock2));
}
}
public void OpenGridViewGroups(GridControl ctrl, int groupleveltoexpand)
{
// open grouplevel 0 (if available)
ctrl.BeginUpdate();
try
{
GridView view = (GridView)ctrl.DefaultView;
//view.ExpandAllGroups();
view.MoveFirst();
while (!view.IsLastRow)
{
int rowhandle = view.FocusedRowHandle;
if (view.IsGroupRow(rowhandle))
{
int grouplevel = view.GetRowLevel(rowhandle);
if (grouplevel <= groupleveltoexpand)
{
view.ExpandGroupRow(rowhandle);
}
}
view.MoveNext();
}
view.MoveFirst();
}
catch (Exception E)
{
Console.WriteLine(E.Message);
}
ctrl.EndUpdate();
}
private void StartTableViewer()
{
if (gridView1.SelectedRowsCount > 0)
{
int[] selrows = gridView1.GetSelectedRows();
if (selrows.Length > 0)
{
DataRowView dr = (DataRowView)gridView1.GetRow((int)selrows.GetValue(0));
string Map_name = dr.Row["SYMBOLNAME"].ToString();
int address = Convert.ToInt32(dr.Row["FLASHADDRESS"].ToString());
int length = Convert.ToInt32(dr.Row["LENGTHBYTES"].ToString());
int symbolnumber1 = 0;
int symbolnumber2 = 0;
int codeblock1 = 1;
int codeblock2 = 1;
if (dr.Row["SymbolNumber1"] != DBNull.Value)
{
symbolnumber1 = Convert.ToInt32(dr.Row["SymbolNumber1"]);
}
if (dr.Row["SymbolNumber2"] != DBNull.Value)
{
symbolnumber2 = Convert.ToInt32(dr.Row["SymbolNumber2"]);
}
try
{
if (dr.Row["CodeBlock1"] != DBNull.Value)
{
codeblock1 = Convert.ToInt32(dr.Row["CodeBlock1"]);
}
if (dr.Row["CodeBlock2"] != DBNull.Value)
{
codeblock2 = Convert.ToInt32(dr.Row["CodeBlock2"]);
}
}
catch (Exception)
{
}
CastSelectEvent(address, length, Map_name, symbolnumber1, symbolnumber2, codeblock1, codeblock2);
}
}
}
private void gridView1_DoubleClick(object sender, EventArgs e)
{
int[] selectedrows = gridView1.GetSelectedRows();
if (selectedrows.Length > 0)
{
int grouplevel = gridView1.GetRowLevel((int)selectedrows.GetValue(0));
if (grouplevel >= gridView1.GroupCount)
{
StartTableViewer();
}
}
}
public class SelectSymbolEventArgs : System.EventArgs
{
private int _codeBlock1;
public int CodeBlock1
{
get { return _codeBlock1; }
set { _codeBlock1 = value; }
}
private int _codeBlock2;
public int CodeBlock2
{
get { return _codeBlock2; }
set { _codeBlock2 = value; }
}
private int _symbolnumber1;
public int Symbolnumber1
{
get { return _symbolnumber1; }
set { _symbolnumber1 = value; }
}
private int _symbolnumber2;
public int Symbolnumber2
{
get { return _symbolnumber2; }
set { _symbolnumber2 = value; }
}
private int _address;
private int _length;
private string _mapname;
private string _filename;
private bool _showdiffmap;
private SymbolCollection _symbols;
public SymbolCollection Symbols
{
get { return _symbols; }
set { _symbols = value; }
}
public bool ShowDiffMap
{
get
{
return _showdiffmap;
}
}
public int SymbolAddress
{
get
{
return _address;
}
}
public int SymbolLength
{
get
{
return _length;
}
}
public string SymbolName
{
get
{
return _mapname;
}
}
public string Filename
{
get
{
return _filename;
}
}
public SelectSymbolEventArgs(int address, int length, string mapname, string filename, bool showdiffmap, SymbolCollection symColl, int symbolnumber1, int symbolnumber2, int codeblock1, int codeblock2)
{
this._address = address;
this._length = length;
this._mapname = mapname;
this._filename = filename;
this._showdiffmap = showdiffmap;
this._symbols = symColl;
this._symbolnumber1 = symbolnumber1;
this._symbolnumber2 = symbolnumber2;
this._codeBlock1 = codeblock1;
this._codeBlock2 = codeblock2;
}
}
private void gridView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
StartTableViewer();
e.Handled = true;
}
}
private void gridView1_CustomDrawCell(object sender, DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventArgs e)
{
if (e.Column.Name == gridColumn6.Name)
{
object o = gridView1.GetRowCellValue(e.RowHandle, "CATEGORY");
Color c = Color.White;
if (o != DBNull.Value)
{
if (Convert.ToInt32(o) == (int)XDFCategories.Fuel)
{
c = Color.LightSteelBlue;
}
else if (Convert.ToInt32(o) == (int)XDFCategories.Ignition)
{
c = Color.LightGreen;
}
else if (Convert.ToInt32(o) == (int)XDFCategories.Boost_control)
{
c = Color.OrangeRed;
}
else if (Convert.ToInt32(o) == (int)XDFCategories.Misc)
{
c = Color.LightGray;
}
else if (Convert.ToInt32(o) == (int)XDFCategories.Sensor)
{
c = Color.Yellow;
}
else if (Convert.ToInt32(o) == (int)XDFCategories.Correction)
{
c = Color.LightPink;
}
else if (Convert.ToInt32(o) == (int)XDFCategories.Idle)
{
c = Color.BurlyWood;
}
}
if (c != Color.White)
{
System.Drawing.Drawing2D.LinearGradientBrush gb = new System.Drawing.Drawing2D.LinearGradientBrush(e.Bounds, c, Color.White, System.Drawing.Drawing2D.LinearGradientMode.Horizontal);
e.Graphics.FillRectangle(gb, e.Bounds);
}
}
else if (e.Column.Name == gridColumn2.Name || e.Column.Name == gridColumn3.Name || e.Column.Name == gridColumn4.Name || e.Column.Name == gridColumn5.Name)
{
/*if (!m_ShowAddressesInHex)
{
if (e.CellValue != null)
{
if (e.CellValue != DBNull.Value)
{
e.DisplayText = e.CellValue.ToString();
}
}
}*/
}
}
private void showDifferenceMapToolStripMenuItem_Click(object sender, EventArgs e)
{
// trek de ene map van de andere af en toon het resultaat in een mapviewer!
if (gridView1.SelectedRowsCount > 0)
{
int[] selrows = gridView1.GetSelectedRows();
if (selrows.Length > 0)
{
DataRowView dr = (DataRowView)gridView1.GetRow((int)selrows.GetValue(0));
string Map_name = dr.Row["SYMBOLNAME"].ToString();
int address = Convert.ToInt32(dr.Row["FLASHADDRESS"].ToString());
int length = Convert.ToInt32(dr.Row["LENGTHBYTES"].ToString());
int symbolnumber1 = 0;
int symbolnumber2 = 0;
int codeblock1 = 1;
int codeblock2 = 1;
if (dr.Row["SymbolNumber1"] != DBNull.Value)
{
symbolnumber1 = Convert.ToInt32(dr.Row["SymbolNumber1"]);
}
if (dr.Row["SymbolNumber2"] != DBNull.Value)
{
symbolnumber2 = Convert.ToInt32(dr.Row["SymbolNumber2"]);
}
if (dr.Row["CodeBlock1"] != DBNull.Value)
{
codeblock1 = Convert.ToInt32(dr.Row["CodeBlock1"]);
}
if (dr.Row["CodeBlock2"] != DBNull.Value)
{
codeblock2 = Convert.ToInt32(dr.Row["CodeBlock2"]);
}
CastDifferenceEvent(address, length, Map_name, symbolnumber1, symbolnumber2, codeblock1, codeblock2);
}
}
}
private void exportToExcelToolStripMenuItem_Click(object sender, EventArgs e)
{
gridControl1.ExportToXls(Tools.Instance.GetWorkingDirectory() + "\\diffexport" + ".xls");
System.Diagnostics.Process.Start(Tools.Instance.GetWorkingDirectory() + "\\diffexport" + ".xls");
}
private void saveLayoutToolStripMenuItem_Click(object sender, EventArgs e)
{
gridView1.SaveLayoutToRegistry("HKEY_CURRENT_USER\\Software\\VAGEDCSuite\\CompareView");
}
internal void HideMissingSymbolIndicators()
{
gcMissingInOriFile.Visible = false;
gcMissingInCompareFile.Visible = false;
}
}
}