-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
796 lines (706 loc) · 33.1 KB
/
Program.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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
using System.Diagnostics;
using System.Text;
using System;
using System.Reflection;
using Kaenx.Konnect.Addresses;
using Kaenx.Konnect.Messages.Response;
using KnxFileTransferClient.Lib;
using System.Net.NetworkInformation;
using System.IO.Hashing;
namespace KnxFileTransferClient;
class Program
{
static void PrintOpenKNXHeader(string addCustomText = "", ConsoleColor customTextColor = ConsoleColor.Green)
{
Console.WriteLine();
Console.Write("Open ");
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("■");
Console.ResetColor();
string unicodeString = $"{(char)0x252C}{(char)0x2500}{(char)0x2500}{(char)0x2500}{(char)0x2500}{(char)0x2534} ";
Console.Write($"{unicodeString} ");
if (!string.IsNullOrEmpty(addCustomText)) {
Console.ForegroundColor = customTextColor;
Console.WriteLine($"{addCustomText}");
Console.ResetColor();
}
Console.ForegroundColor = ConsoleColor.Green;
Console.Write("■");
Console.ResetColor();
Console.WriteLine(" KNX");
Console.WriteLine();
}
private static Kaenx.Konnect.Connections.IKnxConnection? conn = null;
private static Kaenx.Konnect.Classes.BusDevice? device = null;
private static bool verbose = false;
static async Task<int> Main(string[] args)
{
PrintOpenKNXHeader("KnxFileTransferClient");
//Print the client version of the client and the lib
Console.ForegroundColor = ConsoleColor.DarkGray;
System.Version? clientVersion = typeof(Program).Assembly.GetName().Version;
if(clientVersion != null) {
Console.WriteLine($"Version Client: {clientVersion.Major}.{clientVersion.Minor}.{clientVersion.Build}.{clientVersion.Revision}");
}
// Get the custom library attributes
Assembly libAssembly = typeof(KnxFileTransferClient.Lib.FileTransferClient).Assembly;
System.Version? libVersion = new Version(libAssembly.GetCustomAttributes<AssemblyMetadataAttribute>()
.FirstOrDefault(attr => attr.Key == "LibVersion")?.Value ?? "0.0.0.0");
if (libAssembly != null && libVersion != null)
{
Console.WriteLine($"Version Client.Lib: {libVersion.Major}.{libVersion.Minor}.{libVersion.Build}");
}
Console.ResetColor();
Arguments arguments = new Arguments();
try{
await arguments.Init(args);
} catch(Exception ex)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Error: " + ex.Message);
Console.ResetColor();
await Finish();
return -1;
}
if(arguments.Command == "version") return 0; // The version is requested, so exit with 0
if(arguments.Command == "help")
return help();
verbose = arguments.Get<bool>("verbose");
try { int top = Console.CursorTop; }
catch { canFancy = false; }
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine($"IP-Adresse: {arguments.Interface}" + (arguments.IsRouting ? " (Multicast)" : ""));
Console.WriteLine($"IP-Port: {arguments.Get<int>("port")}");
Console.WriteLine($"PA: {arguments.PhysicalAddress}");
Console.WriteLine();
Console.ResetColor();
int code = -2;
try
{
if(arguments.IsRouting)
conn = new Kaenx.Konnect.Connections.KnxIpRouting(UnicastAddress.FromString(arguments.Get<string>("gs")), arguments.Interface, arguments.Get<int>("port"));
else
conn = new Kaenx.Konnect.Connections.KnxIpTunneling(arguments.Interface, arguments.Get<int>("port"));
try {
await conn.Connect();
} catch(Exception ex) {
throw new Exception("Die Schnittstelle ist nicht erreichbar.", ex);
}
Console.WriteLine("Info: Verbindung zum Bus hergestellt");
if(arguments.IsRouting) {
Console.WriteLine("Info: Verwendete Source-PA ist " + conn.PhysicalAddress);
Console.WriteLine($"Info: Router MaxAPDU: {conn.MaxFrameLength}");
}
else {
Console.WriteLine("Info: PA der Schnittstelle ist " + conn.PhysicalAddress);
Console.WriteLine($"Info: Schnittstelle MaxAPDU: {conn.MaxFrameLength}");
}
if(arguments.PhysicalAddress == null)
throw new Exception("Keine PA angegeben");
device = new Kaenx.Konnect.Classes.BusDevice(arguments.PhysicalAddress, conn);
try {
await device.Connect();
if(arguments.GetWasSet("device-timeout"))
device.SetTimeout(arguments.Get<int>("device-timeout"));
} catch(Exception ex) {
throw new Exception($"Das Zielgerät {arguments.PhysicalAddress} ist nicht erreichbar.", ex);
}
Console.WriteLine($"Info: Verbindung zum KNX-Gerät {arguments.Get<string>("pa")} hergestellt");
int useMaxAPDU = 1000;
// TODO get real MaxFrameLength from connection
// if(conn.MaxFrameLength < useMaxAPDU)
// useMaxAPDU = conn.MaxFrameLength;
if(device.MaxFrameLength < useMaxAPDU)
useMaxAPDU = device.MaxFrameLength;
device.SetMaxFrameLength(useMaxAPDU);
Console.WriteLine($"Info: Gerät MaxAPDU: {device.MaxFrameLength}");
Console.WriteLine($"Info: Verwende MaxAPDU: {useMaxAPDU}");
Console.WriteLine($"Info: Verwende Package: {arguments.Get<int>("pkg")}");
if(arguments.Get<int>("pkg") > (useMaxAPDU - 3)) {
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.WriteLine("WARN: Package ist größer als MaxAPDU");
Console.WriteLine($"WARN: Package wird geändert auf {useMaxAPDU-3}");
Console.ResetColor();
arguments.Set("pkg", useMaxAPDU-3);
}
FileTransferClient client = new FileTransferClient(device);
client.ProcessChanged += ProcessChanged;
client.OnError += OnError;
client.PrintInfo += PrintInfo;
try {
string remoteVersion = await client.CheckVersion();
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.WriteLine($"Version Remote: {remoteVersion}");
Console.ResetColor();
} catch {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"Version Remote: Unbekannt");
Console.ResetColor();
}
bool isOpen = false;
do
{
if(isOpen)
{
await device.Disconnect();
Console.WriteLine("Info: Neuen Befehl eingeben:");
string args3 = Console.ReadLine() ?? "";
string[] args2 = args3.Split(" ");
arguments = new Arguments();
await arguments.Init(args2, true);
await device.Connect(true);
}
try
{
switch(arguments.Command)
{
case "help":
code = help();
break;
case "format":
await format(arguments, client);
break;
case "exists":
await exists(arguments, client);
break;
case "rename":
await rename(arguments, client);
break;
case "upload":
await upload(arguments, client);
break;
case "download":
await download(arguments, client);
break;
case "delete":
await delete(arguments, client);
break;
case "list":
await list(arguments, client);
break;
case "mkdir":
await mkdir(arguments, client);
break;
case "rmdir":
await rmdir(arguments, client);
break;
case "open":
{
Console.WriteLine("Info: Verbindung wurde geöffnet");
isOpen = true;
break;
}
case "close":
{
code = 0;
isOpen = false;
break;
}
case "fwupdate":
await update(arguments, client);
break;
default:
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Unbekanntes Kommando: " + arguments.Command);
Console.ResetColor();
break;
}
}
} catch(Exception ex) {
if(isOpen)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Error: " + ex.Message);
if(arguments.Get<bool>("verbose"))
Console.WriteLine(ex.StackTrace);
Console.ResetColor();
} else {
throw new Exception(ex.Message, ex);
}
}
} while(isOpen);
} catch(FileTransferException ex)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Error: " + ex.Message);
if(arguments.Get<bool>("verbose"))
Console.WriteLine(ex.StackTrace);
Console.ResetColor();
await Finish();
return ex.ErrorCode;
} catch(Exception ex)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Error: " + ex.Message);
#if DEBUG
Console.WriteLine(ex.StackTrace);
#else
if(arguments.Get<bool>("verbose"))
Console.WriteLine(ex.StackTrace);
#endif
Console.ResetColor();
await Finish();
return -1;
}
await Finish();
return code;
}
private static async Task Finish()
{
if (device != null)
await device.Disconnect(); // Use .Wait() to synchronously wait for completion. Deadlocks uncritical here, because the program is exiting anyway.
if (conn != null)
await conn.Disconnect();
}
static bool firstSpeed = true;
static bool firstDraw = true;
static bool canFancy = true;
static int errorCounting = 1;
static int lastProgress = 0;
private static void ProcessChanged(int progress, int speed, int timeLeft)
{
if(firstSpeed)
{
speed = 0;
timeLeft = 0;
firstSpeed = false;
}
if (firstDraw)
{
lastProgress = 0;
firstDraw = false;
if (canFancy)
Console.Write("Progress: [ ] % - B/s - 000m:00s left");
}
if (canFancy)
{
Console.SetCursorPosition(36 - progress.ToString().Length, Console.CursorTop);
Console.Write(progress);
Console.SetCursorPosition(11, Console.CursorTop);
int currentProgress = ((int)Math.Floor(progress / 5.0));
if(currentProgress > lastProgress)
for (int i = 0; i < currentProgress; i++)
Console.Write("=");
Console.SetCursorPosition(40, Console.CursorTop);
for (int i = 0; i < 3 - speed.ToString().Length; i++)
Console.Write(" ");
Console.Write(speed);
Console.SetCursorPosition(50, Console.CursorTop);
TimeSpan t = TimeSpan.FromSeconds(timeLeft);
Console.Write(string.Format("{0:D3}m:{1:D2}s left", t.TotalMinutes, t.Seconds));
Console.SetCursorPosition(0, Console.CursorTop);
}
else
{
Console.Write("Progress: [");
for (int i = 0; i < ((int)Math.Floor(progress / 5.0)); i++)
Console.Write("=");
for (int i = 0; i < 20 - ((int)Math.Floor(progress / 5.0)); i++)
Console.Write(" ");
Console.Write("] ");
for (int i = 0; i < (3 - progress.ToString().Length); i++)
Console.Write(" ");
Console.Write(progress + "% - ");
for (int i = 0; i < 3 - speed.ToString().Length; i++)
Console.Write(" ");
Console.Write(speed + " B/s - ");
TimeSpan t = TimeSpan.FromSeconds(timeLeft);
Console.Write(string.Format("{0:D3}m:{1:D2}s left", t.TotalMinutes, t.Seconds));
Console.WriteLine();
}
}
private static void OnError(Exception ex)
{
if(canFancy && !firstDraw)
{
Console.SetCursorPosition(62, Console.CursorTop);
Console.WriteLine();
}
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"Error ({errorCounting++:D2}): " + ex.Message);
if(verbose)
Console.WriteLine(ex.StackTrace);
Console.ResetColor();
firstDraw = true;
}
private static void PrintInfo(string info)
{
if(canFancy && !firstDraw)
{
Console.SetCursorPosition(62, Console.CursorTop);
Console.WriteLine();
}
Console.ForegroundColor = ConsoleColor.DarkCyan;
Console.Write("Info: " + info);
for(int i = (7+info.Length); i < 64; i++)
Console.Write(" ");
Console.WriteLine();
Console.ResetColor();
firstDraw = true;
}
private static int help()
{
Arguments args = new Arguments();
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine($"KnxFileTransferClient <Befehl> <Quelle?> <Ziel?>");
Console.Write($" ");
foreach(Argument arg in args.GetArguments())
{
Console.Write($" --{arg.Name}");
if(arg.Type != Argument.ArgumentType.Bool)
Console.Write($" {arg.Value}");
}
Console.WriteLine();
Console.ResetColor();
Console.WriteLine($"In Session:");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine($"<Befehl> <Quelle?> <Ziel?>");
Console.ResetColor();
Console.WriteLine();
Console.WriteLine("Befehl: Folgende Befehle sind vorhanden");
Console.WriteLine(" format/exists/rename/list/mkdir/rmdir/open/close");
Console.WriteLine(" upload/download/fwupdate/delete");
Console.WriteLine("Quelle*: Pfad zur Datei auf dem Host");
Console.WriteLine("Ziel**: Pfad zur Datei auf dem KNX-Gerät");
int maxLength = 17;
foreach(Argument arg in args.GetArguments())
{
Console.Write(arg.Name);
for(int i = 0; i < maxLength-arg.Name.Length; i++)
Console.Write(" ");
Console.Write(arg.Display);
if(arg.Type != Argument.ArgumentType.Bool)
Console.Write($" (Default: {arg.Value})");
Console.WriteLine();
}
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.WriteLine("* nur bei Befehl upload/download");
Console.WriteLine("** nur bei Befehl exists/rename/upload/download/list/mkdir/rmdir");
Console.WriteLine();
Console.WriteLine("Open = Session Öffnen");
Console.WriteLine("Close = Session Beenden");
Console.ResetColor();
return 0;
}
private static async Task format(Arguments args, FileTransferClient client)
{
Console.WriteLine("Info: Dateisystem wird formatiert");
await client.Format();
Console.WriteLine("Info: Dateisystem erfolgreich formatiert");
}
private static async Task exists(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Pfad angegeben");
if(!args.Source.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner/datei.txt)");
Console.WriteLine("Info: Exists - " + args.Source);
bool exists = await client.Exists(args.Source);
Console.WriteLine("Info: Existiert" + (exists ? "":" nicht"));
}
private static async Task rename(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Source-Pfad angegeben");
if(string.IsNullOrEmpty(args.Target))
throw new Exception("Kein Ziel-Pfad angegeben");
Console.WriteLine("Info: Umbenennen - " + args.Source + " in " + args.Target);
await client.Rename(args.Source, args.Target);
Console.WriteLine("Info: Umbenennen erfolgreich");
}
private static async Task upload(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Source-Pfad angegeben");
if(string.IsNullOrEmpty(args.Target))
throw new Exception("Kein Ziel-Pfad angegeben");
if(!args.Target.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner/datei.txt)");
if(device == null)
throw new Exception("Kein Gerät verbunden");
Console.WriteLine("Info: Datei hochladen - von " + args.Source + " in " + args.Target);
if(await client.Exists(args.Target))
{
Console.WriteLine(" Die Datei existiert bereits.");
Console.Write(" Datei löschen? (J/N): "); // Yes/No or Ja/Nein but not Ja/Yes nor J/Y!
await device.Disconnect();
ConsoleKeyInfo input = Console.ReadKey();
if(input.Key != ConsoleKey.J && input.Key != ConsoleKey.Y)
{
await device.Connect(true);
Console.WriteLine("");
Console.WriteLine("Info: Datei wird nicht gelöscht");
} else {
await device.Connect(true);
await client.FileDelete(args.Target);
Console.WriteLine("");
Console.WriteLine("Info: Datei wurde gelöscht");
}
}
short start_sequence = 0;
if(args.Get<bool>("no-resume"))
{
Console.WriteLine("Info: Keine Wiederaufnahme");
} else {
start_sequence = await GetFileStartSequence(client, args.Source, args.Target, args.Get<int>("pkg"), true);
}
await client.FileUpload(args.Source, args.Target, args.Get<int>("pkg"), start_sequence);
Console.WriteLine($"Info: Datei hochladen abgeschlossen");
}
private static async Task download(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Source-Pfad angegeben");
if(string.IsNullOrEmpty(args.Target))
throw new Exception("Kein Ziel-Pfad angegeben");
if(!args.Source.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner/datei.txt)");
Console.WriteLine("Info: Datei runterladen - von " + args.Source + " in " + args.Target);
await client.FileDownload(args.Source, args.Target, args.Get<int>("pkg"));
Console.WriteLine("Info: Datei runterladen abgeschlossen");
}
private static async Task delete(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Pfad angegeben");
if(!args.Source.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner/datei.txt)");
Console.WriteLine("Info: Datei löschen - " + args.Source);
await client.FileDelete(args.Source);
Console.WriteLine("Info: Datei erfolgreich gelöscht");
}
private static async Task list(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Pfad angegeben");
if(!args.Source.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner/datei.txt)");
Console.WriteLine("Info: Ordner auflisten - " + args.Source);
List<FileTransferPath> list = await client.List(args.Source);
string root = args.Source;
if(!root.EndsWith("/"))
root += "/";
foreach(FileTransferPath path in list)
Console.WriteLine($" - {(path.IsFile ? "Datei ":"Ordner")} {root}{path.Name}");
}
private static async Task mkdir(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Pfad angegeben");
if(!args.Source.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner)");
Console.WriteLine("Info: Ordner erstellen - " + args.Source);
await client.DirCreate(args.Source);
Console.WriteLine("Info: Ordner erfolgreich erstellt");
}
private static async Task rmdir(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Pfad angegeben");
if(!args.Source.StartsWith("/"))
throw new Exception("Pfadangaben auf dem Zielgerät müssen absolut angegeben werden (zB /ordner)");
Console.WriteLine("Info: Ordner löschen - " + args.Source);
await client.DirDelete(args.Source);
Console.WriteLine("Info: Ordner erfolgreich gelöscht");
}
private static async Task update(Arguments args, FileTransferClient client)
{
if(string.IsNullOrEmpty(args.Source))
throw new Exception("Kein Pfad angegeben");
if (!File.Exists(args.Source))
throw new Exception("Das Programm kann die angegebene Firmware nicht finden");
if(device == null)
throw new Exception("Kein Gerät verbunden");
string extension = args.Source.Substring(args.Source.LastIndexOf("."));
switch(extension)
{
case ".bin":
Console.WriteLine("Info: Bei diesem Dateiformat kann die Kompatibilität\r\n zur Applikation nicht überprüft werden.");
Console.WriteLine("Info: (beta) Die Firmware wird komprimiert übertragen!");
break;
case ".gz":
Console.WriteLine("Info: Bei diesem Dateiformat kann die Kompatibilität\r\n zur Applikation nicht überprüft werden.");
break;
case ".uf2":
Console.WriteLine("Info: Die Firmware wird komprimiert übertragen!");
break;
}
if(extension == ".uf2")
{
if(!args.Get<bool>("force"))
{
List<Tag> tags = Converter.GetTags(args.Source);
Tag? infoTag = tags.SingleOrDefault(t => t.Type == Converter.KNX_EXTENSION_TYPE);
if(infoTag != null)
{
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.WriteLine($"Version UF2: 0x{infoTag.Data[0] << 8 | infoTag.Data[1]:X4} {infoTag.Data[2]>>4}.{infoTag.Data[2]&0xF}.{infoTag.Data[3]}");
Console.ResetColor();
// if(!device.IsConnected())
// await device.Connect(true);
uint deviceOpenKnxId, deviceAppNumber, deviceAppVersion, deviceAppRevision = 0;
try
{
byte[] res = await device.PropertyRead(0, 78);
if (res.Length == 6) {
deviceOpenKnxId = res[2];
deviceAppNumber = res[3];
deviceAppVersion = res[4];
res = await device.PropertyRead(0, 25);
if(res.Length == 2)
{
deviceAppRevision = (uint)(res[0] >> 3);
} else {
throw new Exception("PropertyResponse für Version war ungültig");
}
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.WriteLine($"Version Device: 0x{deviceOpenKnxId << 8 | deviceAppNumber:X4} {deviceAppVersion>>4}.{deviceAppVersion&0xF}.{deviceAppRevision}");
Console.ResetColor();
} else {
throw new Exception("PropertyResponse für HardwareType war ungültig");
}
if(!CheckApplication(infoTag, deviceOpenKnxId, deviceAppNumber, deviceAppVersion, deviceAppRevision))
return;
}
catch (Exception ex)
{
Console.WriteLine("Error beim Lesen der Version. Die Kompatibilität wird nicht geprüft!");
if(args.Get<bool>("verbose"))
{
Console.WriteLine(ex.Message);
Console.WriteLine(ex.StackTrace);
}
}
//Konvertieren und abfrage können länger dauern
//await device.Disconnect();
} else {
Console.WriteLine("Info: UF2 enthält keine Angaben zur Version!");
}
} else {
Console.WriteLine("Info: Firmware wird übertragen, egal welche Version auf dem Gerät ist.");
Console.WriteLine(" Du musst sicher sein, dass die Hardware die Firmware unterstützt, die hochgeladen wird!");
}
}
using(MemoryStream stream = new MemoryStream())
{
Console.WriteLine($"File: Passe Firmware für Übertragung an...");
long origsize = FileHandler.GetBytes(stream, args.Source); //, args.Get("force") == 1, deviceOpenKnxId, deviceAppNumber, deviceAppVersion, deviceAppRevision);
Console.WriteLine($"Size: {origsize} Bytes\t({origsize / 1024} kB) original");
if(origsize != stream.Length)
{
Console.WriteLine($"Size: {stream.Length} Bytes\t({stream.Length / 1024} kB) komprimiert");
}
Console.WriteLine();
Console.WriteLine();
byte[] initdata = BitConverter.GetBytes(stream.Length);
if(!device.IsConnected())
await device.Connect(true);
try{
short start_sequence = await GetFileStartSequence(client, args.Source, "/fw.bin", args.Get<int>("pkg"), false);
await client.FileUpload("/fw.bin", stream, args.Get<int>("pkg"), 0);
} catch {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Upload fehlgeschlagen. Breche Update ab ");
Console.ResetColor();
return;
}
Console.WriteLine("Info: Gerät wird neu gestartet ");
await device.InvokeFunctionProperty(159, 101, System.Text.UTF8Encoding.UTF8.GetBytes("/fw.bin" + char.MinValue));
}
}
private static bool CheckApplication(Tag tag, uint deviceOpenKnxId, uint deviceAppNumber, uint deviceAppVersion, uint deviceAppRevision)
{
uint openKnxId = tag.Data[0];
uint appNumber = tag.Data[1];
uint appVersion = tag.Data[2];
uint appRevision = tag.Data[3];
if(openKnxId != deviceOpenKnxId)
{
Console.WriteLine("Conv: Die OpenKnxId auf dem Gerät ist {0:X2}, die der Firmware ist {1:X2}.", deviceOpenKnxId, openKnxId);
Console.WriteLine(" Das führt zu einem neuen Gerät, die PA ist dann 15.15.255.");
Console.WriteLine(" Es muss komplett über die ETS neu aufgesetzt werden!");
Console.WriteLine(" Du musst sicher sein, dass die Hardware die Firmware unterstützt, die hochgeladen wird!");
return Continue();
} else if(appNumber != deviceAppNumber)
{
Console.WriteLine("Conv: Die Applikationsnummer auf dem Gerät entspricht nicht der Firmware.", deviceAppNumber, appNumber);
Console.WriteLine(" Das führt zu einem neuen Gerät, die PA ist dann 15.15.255.");
Console.WriteLine(" Es muss komplett über die ETS neu aufgesetzt werden!");
Console.WriteLine(" Du musst sicher sein, dass die Hardware die Firmware unterstützt, die hochgeladen wird!");
return Continue();
} else if (appVersion == deviceAppVersion) {
if(appRevision == deviceAppRevision)
{
Console.WriteLine("Conv: Die Applikationsversion auf dem Gerät und der Firmware ist identisch.", deviceAppVersion);
return Continue();
}
if(appRevision < deviceAppRevision)
{
Console.WriteLine("Conv: Die Applikationrevision auf dem Gerät ist größer als der Firmware.", deviceAppRevision, appRevision);
Console.WriteLine(" Das führt zu einem Downgrade!");
return Continue();
}
} else if (appVersion < deviceAppVersion) {
Console.WriteLine("Conv: Die Applikationsversion auf dem Gerät ist größer als der Firmware.", deviceAppVersion, appVersion);
Console.WriteLine(" Das führt zu einem Downgrade!");
Console.WriteLine(" Das Gerät muss mit der ETS neu programmiert werden (die PA bleibt erhalten).");
return Continue();
}
return true;
}
private static bool Continue()
{
Console.Write("Conv: Update trotzdem durchführen? (j/n) ");
var key = Console.ReadKey(false);
Console.WriteLine();
if (key.KeyChar == 'J' || key.KeyChar == 'j') {
Console.WriteLine("Conv: Update wird ausgeführt!");
return true;
}
return false;
}
private static async Task<short> GetFileStartSequence(FileTransferClient client, string source, string target, int length, bool isGZipped)
{
try
{
Lib.FileInfo info = await client.FileInfo(target);
if(info.Size == 0)
{
Console.WriteLine("Info: Datei ist leer");
return 0;
}
byte[] file;
if(isGZipped)
file = FileHandler.GetBytes(source).Take(info.Size).ToArray();
else
file = System.IO.File.ReadAllBytes(source).Take(info.Size).ToArray();
CRCTool crc = new();
crc.Init(CRCTool.CRCCode.CRC32);
ulong crc32 = crc.CalculateCRC(file);
byte[] x = BitConverter.GetBytes(crc32).Take(4).Reverse().ToArray();
string crc32str = BitConverter.ToString(x).Replace("-", "");
Console.WriteLine($"Info: Dateiinfos CRC32 Lokal={crc32str} Remote={info.GetCrc()}");
if(info.GetCrc() == crc32str)
{
Console.WriteLine("Info: Datei ist identisch");
short start_sequence = (short)Math.Floor(info.Size / (length - 3.0));
int start_byte = start_sequence * (length - 3);
int start_perc = (int)(info.Size / (double)start_byte * 100);
Console.WriteLine($"Info: Starte bei {start_sequence*length} Byte ({start_perc}%)");
start_sequence++; // sequence starts at 1, 0 is open file etc.
return start_sequence;
} else {
Console.WriteLine("Info: Datei ist nicht identisch");
return 0;
}
}
catch
{
Console.WriteLine("Info: Dateiinfos konnten nicht abgerufen werden");
}
return 0;
}
}