forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogDownloadscp.cs
614 lines (506 loc) · 19.6 KB
/
LogDownloadscp.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
using log4net;
using MissionPlanner.Controls;
using MissionPlanner.Utilities;
using Renci.SshNet;
using Renci.SshNet.Sftp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
namespace MissionPlanner.Log
{
public partial class LogDownloadscp : Form
{
private static readonly ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
SerialStatus status = SerialStatus.Connecting;
bool closed;
string logfile = "";
uint receivedbytes; // current log file
uint tallyBytes; // previous downloaded logs
uint totalBytes; // total expected
List<SftpFile> logEntries = new List<SftpFile>();
private ConnectionInfo _connectionInfo;
//List<Model> orientation = new List<Model>();
Object thisLock = new Object();
enum SerialStatus
{
Connecting,
Createfile,
Closefile,
Reading,
Waiting,
Done
}
public LogDownloadscp()
{
InitializeComponent();
labelBytes.Text = "";
ThemeManager.ApplyThemeTo(this);
MissionPlanner.Utilities.Tracking.AddPage(this.GetType().ToString(), this.Text);
}
private void Log_Load(object sender, EventArgs e)
{
LoadLogList();
}
private static void ScpClient_Downloading(object sender, Renci.SshNet.Common.ScpDownloadEventArgs e)
{
Console.WriteLine("{0} - {1} {2}", e.Filename, e.Downloaded, (e.Downloaded / (double)e.Size) * 100);
}
void LoadLogList()
{
string path = Settings.Instance["LogDownloadscppath"];
if (path == null)
path = "user:[email protected]:/home/user/dflogger/dataflash/";
//solo - root:[email protected]:/log/dataflash/
InputBox.Show("", "Please enter scp path eg (user:password@host:/dir/path/to/files/)", ref path);
Uri ur = new Uri("http://" + path);
Settings.Instance["LogDownloadscppath"] = path;
CHK_logs.Items.Clear();
AppendSerialLog(LogStrings.FetchingLogfileList);
System.Threading.Tasks.Task.Factory.StartNew(() =>
{
try
{
SftpClient sshclient = new SftpClient(ur.Host, ur.UserInfo.Split(':').First(), ur.UserInfo.Split(':').Last());
sshclient.Connect();
var files = sshclient.ListDirectory(ur.AbsolutePath);
foreach (var sftpFile in files)
{
if (sftpFile.Name.ToLower().EndsWith(".bin"))
logEntries.Add(sftpFile);
}
_connectionInfo = sshclient.ConnectionInfo;
RunOnUIThread(LoadCheckedList);
}
catch (Exception ex)
{
AppendSerialLog(LogStrings.UnhandledException + ex.ToString());
}
});
}
private void LoadCheckedList()
{
if (logEntries != null)
{
foreach (var item in logEntries)
{
try
{
string caption = item.Name + " " + GetItemCaption(item) + " (" + item.Length + ")";
AddCheckedListBoxItem(caption);
}
catch (Exception ex)
{
log.Error(ex);
}
}
if (logEntries.Count == 0)
{
AppendSerialLog(LogStrings.NoLogsFound);
}
else
{
AppendSerialLog(string.Format(LogStrings.SomeLogsFound, logEntries.Count));
}
}
status = SerialStatus.Done;
}
string GetItemCaption(SftpFile item)
{
return item.LastWriteTime.ToString();
}
void AddCheckedListBoxItem(string caption)
{
RunOnUIThread(new Action(() =>
{
if (!CHK_logs.Items.Contains(caption))
{
CHK_logs.Items.Add(caption);
}
}));
}
void RunOnUIThread(Action a)
{
if (closed || this.IsDisposed)
{
return;
}
this.BeginInvoke(new Action(() =>
{
try
{
a();
}
catch (Exception e)
{
Debug.WriteLine(LogStrings.UnhandledException + e.ToString());
}
}));
}
private void BUT_DLall_Click(object sender, EventArgs e)
{
if (status == SerialStatus.Done)
{
if (CHK_logs.Items.Count == 0)
{
// try again...
LoadLogList();
return;
}
BUT_DLall.Enabled = false;
BUT_DLthese.Enabled = false;
int[] toDownload = GetAllLogIndices().ToArray();
try
{
Directory.CreateDirectory(Settings.Instance.LogDir);
}
catch (Exception ex)
{
AppendSerialLog(string.Format(LogStrings.LogDirectoryError, Settings.Instance.LogDir) + "\r\n" + ex.Message);
return;
}
AppendSerialLog(string.Format(LogStrings.DownloadStarting, Settings.Instance.LogDir));
System.Threading.Thread t11 =
new System.Threading.Thread(
delegate ()
{
DownloadThread(toDownload);
});
t11.Name = "Log Download All thread";
t11.Start();
}
}
string GetLog(string no, string fileName)
{
log.Info("GetLog " + no);
status = SerialStatus.Reading;
logfile = Settings.Instance.LogDir + Path.DirectorySeparatorChar
+ MakeValidFileName(fileName) + ".bin";
// make log dir
Directory.CreateDirectory(Path.GetDirectoryName(logfile));
log.Info("about to write: " + logfile);
// save memorystream to file
SftpClient client = new SftpClient(_connectionInfo);
client.Connect();
using (var logstream = File.Open(logfile, FileMode.Create, FileAccess.Write))
{
client.DownloadFile(no, logstream, downloadCallback);
}
client.Disconnect();
log.Info("about to convertbin: " + logfile);
// create ascii log
BinaryLog.ConvertBin(logfile, logfile + ".log");
//update the new filename
logfile = logfile + ".log";
// rename file if needed
log.Info("about to GetFirstGpsTime: " + logfile);
// get gps time of assci log
DateTime logtime = new DFLog(null).GetFirstGpsTime(logfile);
// rename log is we have a valid gps time
if (logtime != DateTime.MinValue)
{
string newlogfilename = Settings.Instance.LogDir + Path.DirectorySeparatorChar
+ logtime.ToString("yyyy-MM-dd HH-mm-ss") + ".log";
try
{
File.Move(logfile, newlogfilename);
// rename bin as well
File.Move(logfile.Replace(".log", ""), newlogfilename.Replace(".log", ".bin"));
logfile = newlogfilename;
}
catch
{
CustomMessageBox.Show(Strings.ErrorRenameFile + " " + logfile + "\nto " + newlogfilename,
Strings.ERROR);
}
}
MainV2.comPort.Progress -= comPort_Progress;
return logfile;
}
private void downloadCallback(ulong obj)
{
comPort_Progress((int)obj, "Downloading");
}
protected override void OnClosed(EventArgs e)
{
this.closed = true;
MainV2.comPort.Progress -= comPort_Progress;
base.OnClosed(e);
}
protected override void OnClosing(CancelEventArgs e)
{
if (status == SerialStatus.Reading)
{
if (CustomMessageBox.Show(LogStrings.CancelDownload, "Cancel Download", MessageBoxButtons.YesNo) ==
(int)System.Windows.Forms.DialogResult.No)
{
e.Cancel = true;
return;
}
}
base.OnClosing(e);
}
private string MakeValidFileName(string fileName)
{
return fileName.Replace('/', '-').Replace('\\', '-').Replace(':', '-').Replace('?', ' ').Replace('"', '\'').Replace('<', '[').Replace('>', ']').Replace('|', ' ');
}
void comPort_Progress(int progress, string status)
{
receivedbytes = (uint)progress;
UpdateProgress(0, totalBytes, tallyBytes + receivedbytes);
}
void CreateLog(string logfile)
{
TextReader tr = new StreamReader(logfile);
//
AppendSerialLog(string.Format(LogStrings.CreatingKmlPrompt, Path.GetFileName(logfile)));
LogOutput lo = new LogOutput();
while (tr.Peek() != -1)
{
lo.processLine(tr.ReadLine());
}
tr.Close();
try
{
lo.writeKML(logfile + ".kml");
}
catch
{
} // usualy invalid lat long error
status = SerialStatus.Done;
}
private void DownloadThread(int[] selectedLogs)
{
try
{
status = SerialStatus.Reading;
totalBytes = 0;
tallyBytes = 0;
receivedbytes = 0;
foreach (int a in selectedLogs)
{
var entry = logEntries[a]; // mavlink_log_entry_t
totalBytes += (uint)entry.Length;
}
UpdateProgress(0, totalBytes, 0);
foreach (int a in selectedLogs)
{
var entry = logEntries[a]; // mavlink_log_entry_t
string fileName = GetItemCaption(entry);
AppendSerialLog(string.Format(LogStrings.FetchingLog, fileName));
var logname = GetLog(entry.FullName, fileName);
CreateLog(logname);
tallyBytes += receivedbytes;
receivedbytes = 0;
UpdateProgress(0, totalBytes, tallyBytes);
}
UpdateProgress(0, totalBytes, totalBytes);
AppendSerialLog("Download complete.");
Console.Beep();
}
catch (Exception ex)
{
AppendSerialLog("Error in log " + ex.Message);
}
RunOnUIThread(() =>
{
BUT_DLall.Enabled = true;
BUT_DLthese.Enabled = true;
status = SerialStatus.Done;
});
}
IEnumerable<int> GetSelectedLogIndices()
{
foreach (int i in CHK_logs.CheckedIndices)
{
yield return i;
}
}
IEnumerable<int> GetAllLogIndices()
{
for (int i = 0, n = logEntries.Count; i < n; i++)
{
yield return i;
}
}
private void UpdateProgress(uint min, uint max, uint current)
{
RunOnUIThread(() =>
{
progressBar1.Minimum = (int)min;
progressBar1.Maximum = (int)max;
progressBar1.Value = (int)current;
progressBar1.Visible = (current < max);
if (current < max)
{
labelBytes.Text = current.ToString();
}
else
{
labelBytes.Text = "";
}
});
}
private void BUT_DLthese_Click(object sender, EventArgs e)
{
if (status == SerialStatus.Done)
{
int[] toDownload = GetSelectedLogIndices().ToArray();
if (toDownload.Length == 0)
{
AppendSerialLog(LogStrings.NothingSelected);
}
else
{
BUT_DLall.Enabled = false;
BUT_DLthese.Enabled = false;
System.Threading.Thread t11 = new System.Threading.Thread(delegate () { DownloadThread(toDownload); });
t11.Name = "Log download single thread";
t11.Start();
}
}
}
private void BUT_clearlogs_Click(object sender, EventArgs e)
{
if (CustomMessageBox.Show(LogStrings.Confirmation, "sure", MessageBoxButtons.YesNo) ==
(int)System.Windows.Forms.DialogResult.Yes)
{
try
{
SftpClient sshclient = new SftpClient(_connectionInfo);
sshclient.Connect();
foreach (var logEntry in logEntries)
{
sshclient.DeleteFile(logEntry.FullName);
}
sshclient.Disconnect();
AppendSerialLog(LogStrings.EraseComplete);
status = SerialStatus.Done;
CHK_logs.Items.Clear();
}
catch (Exception ex)
{
CustomMessageBox.Show(ex.Message, Strings.ERROR);
}
}
}
private void BUT_redokml_Click(object sender, EventArgs e)
{
using (OpenFileDialog openFileDialog1 = new OpenFileDialog())
{
openFileDialog1.Filter = "*.log|*.log";
openFileDialog1.FilterIndex = 2;
openFileDialog1.RestoreDirectory = true;
openFileDialog1.Multiselect = true;
try
{
openFileDialog1.InitialDirectory = Settings.Instance.LogDir + Path.DirectorySeparatorChar;
}
catch
{
} // incase dir doesnt exist
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
foreach (string logfile in openFileDialog1.FileNames)
{
AppendSerialLog(Environment.NewLine + Environment.NewLine +
string.Format(LogStrings.ProcessingLog, logfile));
this.Refresh();
LogOutput lo = new LogOutput();
try
{
using (TextReader tr = new StreamReader(logfile))
{
while (tr.Peek() != -1)
{
lo.processLine(tr.ReadLine());
}
}
}
catch (Exception ex)
{
AppendSerialLog(LogStrings.ErrorProcessingLogfile + Environment.NewLine + ex.ToString());
}
lo.writeKML(logfile + ".kml");
AppendSerialLog(LogStrings.Done);
}
}
}
}
private void AppendSerialLog(string msg)
{
RunOnUIThread(new Action(() =>
{
TXT_seriallog.AppendText(msg + Environment.NewLine);
}));
}
private void BUT_firstperson_Click(object sender, EventArgs e)
{
using (OpenFileDialog openFileDialog1 = new OpenFileDialog())
{
openFileDialog1.Filter = "*.log|*.log";
openFileDialog1.FilterIndex = 2;
openFileDialog1.RestoreDirectory = true;
openFileDialog1.Multiselect = true;
try
{
Directory.CreateDirectory(Settings.Instance.LogDir);
openFileDialog1.InitialDirectory = Settings.Instance.LogDir + Path.DirectorySeparatorChar;
}
catch
{
} // incase dir cannot be created
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
foreach (string logfile in openFileDialog1.FileNames)
{
AppendSerialLog(Environment.NewLine + Environment.NewLine +
string.Format(LogStrings.ProcessingLog, logfile));
this.Refresh();
LogOutput lo = new LogOutput();
try
{
TextReader tr = new StreamReader(logfile);
while (tr.Peek() != -1)
{
lo.processLine(tr.ReadLine());
}
tr.Close();
}
catch (Exception ex)
{
AppendSerialLog(LogStrings.ErrorProcessingLogfile + Environment.NewLine + ex.Message);
continue;
}
lo.writeKMLFirstPerson(logfile + "-fp.kml");
AppendSerialLog(LogStrings.Done);
}
}
}
}
private void BUT_bintolog_Click(object sender, EventArgs e)
{
using (OpenFileDialog ofd = new OpenFileDialog())
{
ofd.Filter = "Binary Log|*.bin;*.BIN";
ofd.ShowDialog();
if (File.Exists(ofd.FileName))
{
using (SaveFileDialog sfd = new SaveFileDialog())
{
sfd.Filter = "log|*.log;*.LOG";
DialogResult res = sfd.ShowDialog();
if (res == System.Windows.Forms.DialogResult.OK)
{
BinaryLog.ConvertBin(ofd.FileName, sfd.FileName);
}
}
}
}
}
}
}