forked from BGriffy78/SRecordizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SRecordView.cs
582 lines (521 loc) · 20.3 KB
/
SRecordView.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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using WeifenLuo.WinFormsUI.Docking;
using BrightIdeasSoftware;
using SRecordizer.Objects;
namespace SRecordizer
{
public partial class SRecordView : DockContent
{
#region _CONSTANTS_
const int INST_COL_IDX = 0;
const int SIZE_COL_IDX = 1;
const int ADDR_COL_IDX = 2;
const int DATA_COL_IDX = 3;
const int CSUM_COL_IDX = 4;
#endregion
#region _DATA_TYPES_
#endregion
#region _PUBLIC_PROPERTIES_
public string ActiveFile { get { return _S19Record.FileName; } }
#endregion
#region _PRIVATE_MEMBERS_
S19 _S19Record;
bool _DataByteSpacingEnabled = false;
#endregion
#region _CONSTRUCTORS_
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="filename"></param>
/// <param name="newFile"></param>
public SRecordView(string filename, bool newFile)
{
InitializeComponent();
try
{
FileInfo info = new FileInfo(filename);
_S19Record = new S19(filename, newFile);
this.Text = info.Name;
//SRecordizer.LogIt(LogView.LogType.Info, "Loaded \'" + filename + "\'...");
/* set highlighted row style */
RowBorderDecoration rbd = new RowBorderDecoration();
rbd.BorderPen = new Pen(Color.DarkOliveGreen, 1);
rbd.BoundsPadding = new Size(0, -1);
s19ListView.SelectedRowDecoration = rbd;
}
catch
{
ExceptionTrap.Trap("Error Parsing S19 File!!");
}
}
#endregion
#region _PUBLIC_METHODS_
/*********************************************************************/
/// <summary>
///
/// </summary>
public void UpdateView()
{
try
{
s19ListView.SetObjects(_S19Record.SRecordLines);
/* set the address length to display */
int addrDispLen = (int)((_S19Record.MaxAddressLength / 8) * 2);
addressColumn.AspectToStringFormat = "{0:X" + addrDispLen.ToString() + "}";
}
catch
{
ExceptionTrap.Trap("Error Displaying S19 File!!");
}
}
/*********************************************************************/
/// <summary>
/// Intitiates the checking of an S19 record for errors.
/// </summary>
public void CheckFile()
{
_S19Record.CheckForErrors();
s19ListView.Refresh();
}
/*********************************************************************/
/// <summary>
/// Clears row error status highlighting
/// </summary>
public void ClearHighlighting()
{
_S19Record.ResetErrorStates();
s19ListView.Refresh();
}
/*********************************************************************/
/// <summary>
///
/// </summary>
public void ToggleAscii()
{
if (asciiColumn.IsVisible)
asciiColumn.IsVisible = false;
else
asciiColumn.IsVisible = true;
s19ListView.RebuildColumns();
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <returns></returns>
public bool SaveFile()
{
if (_S19Record.Output())
return true;
else
return false;
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <returns></returns>
public bool SaveFileAs(string file)
{
if (_S19Record.Output(file))
return true;
else
return false;
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="enabled"></param>
public void ToggleDataByteSpacing()
{
_DataByteSpacingEnabled = !_DataByteSpacingEnabled;
foreach (S19Line l in _S19Record.SRecordLines)
l.ByteSpacingEnabled = _DataByteSpacingEnabled;
s19ListView.CancelCellEdit();
s19ListView.DeselectAll();
s19ListView.Refresh();
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="lineNumber"></param>
public void GoToLine(int lineNumber)
{
foreach (S19Line l in _S19Record.SRecordLines)
{
if (l.LineNumber == lineNumber)
{
s19ListView.EnsureVisible(lineNumber);
s19ListView.SelectObject(l);
return;
}
}
MessageBox.Show("Line number not found!", "Information.", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="address"></param>
public void GoToAddress(int address)
{
foreach (S19Line l in _S19Record.SRecordLines)
{
if ((l.Instruction == S19Line.S19Instruction.S1) ||
(l.Instruction == S19Line.S19Instruction.S2) ||
(l.Instruction == S19Line.S19Instruction.S3))
{
/* calculate the start and end addresses */
int startAddr = System.Convert.ToInt32(l.Address, 16);
int endAddr = startAddr + l.Size;
switch (l.Instruction)
{
/* subtract from the size the bytes that aren't part of data */
case S19Line.S19Instruction.S0:
case S19Line.S19Instruction.S1:
case S19Line.S19Instruction.S5:
case S19Line.S19Instruction.S9:
endAddr -= 4;
break;
case S19Line.S19Instruction.S2:
case S19Line.S19Instruction.S8:
endAddr -= 5;
break;
case S19Line.S19Instruction.S3:
case S19Line.S19Instruction.S7:
endAddr -= 6;
break;
}
if ((address >= startAddr) && (address <= endAddr))
{
/* show the object containing the search results */
s19ListView.EnsureVisible(l.LineNumber);
s19ListView.SelectObject(l);
/* calculate where to move the caret to within the row*/
int moveLeft;
if (_DataByteSpacingEnabled == false)
moveLeft = (endAddr - address + 1) * 2;
else
moveLeft = ((endAddr - address + 1) * 3) - 1;
/* move the caret to the address position */
string action = "";
for (int i = 0; i < moveLeft; i++)
action += "{LEFT}";
s19ListView.StartCellEdit(s19ListView.SelectedItem, DATA_COL_IDX + 1);
SendKeys.Send(action);
/* test - highlight the searched for byte */
string g = s19ListView.SelectedItem.Text;
return;
}
}
}
MessageBox.Show("Address not found!", "Information.", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
/*********************************************************************/
/// <summary>
///
/// </summary>
public void SearchAscii(string asciiText)
{
var line = _S19Record.SearchAscii(asciiText, s19ListView.SelectedIndex + 1);
if (line != null)
{
s19ListView.EnsureVisible(line.LineNumber);
s19ListView.SelectObject(line);
}
}
/*********************************************************************/
/// <summary>
///
/// </summary>
public void InsertRowAbove()
{
int row = s19ListView.SelectedIndex;
_S19Record.InsertRow(row);
s19ListView.SetObjects(_S19Record.SRecordLines);
}
/*********************************************************************/
/// <summary>
///
/// </summary>
public void InsertRowBelow()
{
int row = s19ListView.SelectedIndex;
_S19Record.InsertRow(row + 1);
s19ListView.SetObjects(_S19Record.SRecordLines);
}
/*********************************************************************/
/// <summary>
///
/// </summary>
public void DeleteRow()
{
int row = s19ListView.SelectedIndex;
_S19Record.DeleteRow(row);
s19ListView.SetObjects(_S19Record.SRecordLines);
}
#endregion
#region _PRIVATE_METHODS_
#endregion
#region _GUI_HANDLERS_
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="message"></param>
private void ShowWarning(string message)
{
MessageBox.Show(message, "Editor Warning!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void SRecordView_Load(object sender, EventArgs e)
{
UpdateView();
}
/*********************************************************************/
/// <summary>
/// Called when a cells editing context has completed. If it wasn't cancelled
/// the update will be performed.
/// </summary>
/// <param name="sender">Called of the handler</param>
/// <param name="e">Cell editing event information</param>
private void s19ListView_CellEditFinishing(object sender, CellEditEventArgs e)
{
/* if the editing was cancelled, return with out any updating (the cell will
only hold onto the new value if is gets assigned to the row object) */
if (e.Cancel)
return;
/* get the changed line object and an identifier to which column was changed */
S19Line s19line = (S19Line)e.RowObject;
OLVColumn col = e.Column;
/* process the column and the parent row that was changed */
if (col == instructionColumn)
{
try
{
string newValue = Util.RemoveSpaces(e.NewValue.ToString());
if(Util.CheckValidSrecInstruction(newValue))
{
s19line.UpdateLine(S19Line.S19ElementType.Instruction, e.NewValue);
}
else
{
ShowWarning("Invalid SRecord Instruction!");
}
}
catch { ExceptionTrap.Trap("Input Error! (Instruction)"); }
}
else if (col == sizeColumn)
{
try
{
string newValue = Util.RemoveSpaces(e.NewValue.ToString());
if ((Util.CheckStringIsHexOnly(newValue)) &&
(Util.CheckStringIsCorrectByteLength(newValue)))
{
s19line.UpdateLine(S19Line.S19ElementType.Size, e.NewValue);
}
else
{
ShowWarning("Invalid HEX byte(s) entered in 'Size'!\n\n - Check all bytes are complete (e.g. '0xAA')\n - Check all characters are Hex (0-F)");
}
}
catch { ExceptionTrap.Trap("Input Error! (Size)"); }
}
else if (col == addressColumn)
{
try
{
string newValue = Util.RemoveSpaces(e.NewValue.ToString());
if ((Util.CheckStringIsHexOnly(newValue)) &&
(Util.CheckStringIsCorrectByteLength(newValue)))
{
s19line.UpdateLine(S19Line.S19ElementType.Address, e.NewValue);
}
else
{
ShowWarning("Invalid HEX byte(s) entered in 'Address'!\n\n - Check all bytes are complete (e.g. '0xAA')\n - Check all characters are Hex (0-F)");
}
}
catch { ExceptionTrap.Trap("Input Error! (Address)"); }
}
else if (col == dataColumn)
{
try
{
string newValue = Util.RemoveSpaces(e.NewValue.ToString());
if ((Util.CheckStringIsHexOnly(newValue)) &&
(Util.CheckStringIsCorrectByteLength(newValue)))
{
s19line.UpdateLine(S19Line.S19ElementType.Data, newValue);
}
else
{
ShowWarning("Invalid HEX byte(s) entered in 'Data'!\n\n - Check all bytes are complete (e.g. '0xAA')\n - Check all characters are Hex (0-F)");
}
}
catch { ExceptionTrap.Trap("Input Error! (Data)"); }
}
else if (col == checksumColumn)
{
try
{
string newValue = Util.RemoveSpaces(e.NewValue.ToString());
if ((Util.CheckStringIsHexOnly(newValue)) &&
(Util.CheckStringIsCorrectByteLength(newValue)))
{
s19line.UpdateLine(S19Line.S19ElementType.Checksum, e.NewValue); ;
}
else
{
ShowWarning("Invalid HEX byte(s) entered in 'CSum'!\n\n - Check all bytes are complete (e.g. '0xAA')\n - Check all characters are HEX");
}
}
catch { ExceptionTrap.Trap(" Input Error! (Checksum)"); }
}
else
{ /* should never get here - do nothing! */ }
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void s19ListView_FormatRow(object sender, FormatRowEventArgs e)
{
S19Line line = (S19Line)e.Model;
switch (line.ErrorInRow)
{
case S19Line.S19LineError.NotTested:
e.Item.BackColor = System.Drawing.Color.White;
infoLabel.Text = "";
break;
case S19Line.S19LineError.InstructionError:
e.Item.BackColor = System.Drawing.Color.LightCoral;
infoLabel.Text = ">> ERROR: Instruction Error!";
break;
case S19Line.S19LineError.SizeError:
e.Item.BackColor = System.Drawing.Color.LightCoral;
infoLabel.Text = ">> ERROR: Size Error!";
break;
case S19Line.S19LineError.AddressError:
e.Item.BackColor = System.Drawing.Color.LightCoral;
infoLabel.Text = ">> ERROR: General Address Error!";
break;
case S19Line.S19LineError.AddressLengthError:
e.Item.BackColor = System.Drawing.Color.LightCoral;
infoLabel.Text = ">> ERROR: Address Length Error!";
break;
case S19Line.S19LineError.DataError:
e.Item.BackColor = System.Drawing.Color.LightCoral;
infoLabel.Text = ">> ERROR: Data Error!";
break;
case S19Line.S19LineError.ChecksumError:
e.Item.BackColor = System.Drawing.Color.LightCoral;
infoLabel.Text = ">> ERROR: Checksum Error!";
break;
case S19Line.S19LineError.NoError:
default:
e.Item.BackColor = System.Drawing.Color.YellowGreen;
infoLabel.Text = ">> Line OK!";
break;
}
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void insertRowToolStripMenuItem_Click(object sender, EventArgs e)
{
InsertRowAbove();
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void insertRowBelowToolStripMenuItem_Click(object sender, EventArgs e)
{
InsertRowBelow();
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void deleteRowsToolStripMenuItem_Click(object sender, EventArgs e)
{
DeleteRow();
}
#endregion
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="inEditMode"></param>
private void UpdateCurrentAddress()
{
S19Line l;
if (s19ListView.SelectedItem != null)
{
/* get the address of the current line */
l = (S19Line)s19ListView.SelectedObject;
lblCurrentAddress.Text = "Address = 0x" + l.Address;
}
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="col"></param>
/// <param name="row"></param>
private void UpdateCurrentAddress(OLVColumn col, S19Line row)
{
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void s19ListView_SelectionChanged(object sender, EventArgs e)
{
UpdateCurrentAddress();
}
/*********************************************************************/
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void s19ListView_CellEditStarting(object sender, CellEditEventArgs e)
{
OLVColumn col = e.Column;
if (col == dataColumn)
{
UpdateCurrentAddress(col, (S19Line)e.RowObject);
}
}
}
}