forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatLab.cs
529 lines (443 loc) · 20.3 KB
/
MatLab.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using csmatio.io;
using csmatio.types;
using System.Globalization;
using log4net;
using System.Reflection;
using MissionPlanner.Utilities;
using MissionPlanner.Comms;
namespace MissionPlanner.Log
{
public class MatLab
{
private static readonly ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private static MLArray CreateCellArray(string name, string[] names)
{
MLCell cell = new MLCell(name, new int[] {names.Length, 1});
for (int i = 0; i < names.Length; i++)
cell[i] = new MLChar(null, names[i].Trim());
return cell;
}
private static MLCell CreateCellArrayCustom(string name, string[] items)
{
var cell = new MLCell(name, new int[] { items.Length, 1 });
int i = 0;
foreach (var item in items)
{
double ans = 0;
if (double.TryParse(items[i], out ans))
{
cell[i] = new MLDouble(null, new double[] { ans }, 1);
i++;
continue;
}
if (items[i].TrimStart().StartsWith("[") && items[i].TrimEnd().EndsWith("]"))
{
cell[i] = CreateCellArrayCustom("",
items[i].Split(new[] { ' ', '[', ']' }, StringSplitOptions.RemoveEmptyEntries));
i++;
continue;
}
cell[i] = new MLChar(null, (string)items[i].Trim());
i++;
}
return cell;
}
public static void ProcessLog(string fn, Action<string> ProgressEvent = null)
{
using (DFLogBuffer colbuf = new DFLogBuffer(File.OpenRead(fn)))
{
// store all the arrays
List<MLArray> mlList = new List<MLArray>();
// store data to putinto the arrays
Dictionary<string, MatLab.DoubleList> data = new Dictionary<string, MatLab.DoubleList>();
Dictionary<string, List<MLCell>> dataCell = new Dictionary<string, List<MLCell>>();
// store line item lengths
Hashtable len = new Hashtable();
// store whats we have seen in the log
Hashtable seen = new Hashtable();
// store the params seen
SortedDictionary<string, double> param = new SortedDictionary<string, double>();
// keep track of line no
int a = 0;
log.Info("ProcessLog start " + (GC.GetTotalMemory(false)/1024.0/1024.0));
foreach (var line in colbuf)
{
a++;
if (a%1000 == 0)
{
Console.Write(a + "/" + colbuf.Count + "\r");
ProgressEvent?.Invoke("Processing "+a + "/" + colbuf.Count);
}
string strLine = line.Replace(", ", ",");
strLine = strLine.Replace(": ", ":");
string[] items = strLine.Split(',', ':');
// process the fmt messages
if (line.StartsWith("FMT"))
{
// +1 for line no
string[] names = new string[items.Length - 5 + 1];
names[0] = "LineNo";
Array.ConstrainedCopy(items, 5, names, 1, names.Length - 1);
MLArray format = CreateCellArray(items[3].Trim() + "_label", names);
if (items[3] == "PARM")
{
}
else
{
mlList.Add(format);
}
len[items[3]] = names.Length;
} // process param messages
else if (line.StartsWith("PARM"))
{
try
{
param[items[colbuf.dflog.FindMessageOffset("PARM", "Name")]] = double.Parse(items[colbuf.dflog.FindMessageOffset("PARM", "Value")], CultureInfo.InvariantCulture);
}
catch
{
}
} // everyting else is generic
else
{
// make sure the line is long enough
if (items.Length < 2)
continue;
var linetype = items[0];
var logtype = linetype;
// check we have a valid fmt message for this message type
if (!len.ContainsKey(linetype))
continue;
// check the fmt length matchs what the log has
if (items.Length != (int) len[linetype])
continue;
// mark it as being seen
seen[linetype] = 1;
// filter out msg text strings
if (linetype.ToLower().Equals("msg"))
{
var cells = CreateCellArrayCustom(linetype, items);
if (!dataCell.ContainsKey(linetype))
dataCell[linetype] = new List<MLCell>();
dataCell[linetype].Add(cells);
}
if (linetype.ToUpper().Equals("ISBD"))
{
//ISBD
var cells = CreateCellArrayCustom(linetype, items);
if (!dataCell.ContainsKey(linetype))
dataCell[linetype] = new List<MLCell>();
dataCell[linetype].Add(cells);
}
int idx = -1;
if ((idx = colbuf.getInstanceIndex(linetype)) > 0)
{
linetype = linetype + "_" + items[idx];
}
double[] dbarray = new double[items.Length];
// set line no
dbarray[0] = a;
for (int n = 1; n < items.Length; n++)
{
double dbl = 0;
double.TryParse(items[n], NumberStyles.Any, CultureInfo.InvariantCulture, out dbl);
dbarray[n] = dbl;
}
if (!data.ContainsKey(linetype))
data[linetype] = new MatLab.DoubleList();
data[linetype].Add(dbarray);
}
// split at x records
if (a%2000000 == 0 && !Environment.Is64BitProcess)
{
GC.Collect();
DoWrite(fn + "-" + a, data, dataCell, param, mlList, seen);
mlList.Clear();
data.Clear();
dataCell.Clear();
param.Clear();
seen.Clear();
GC.Collect();
}
}
DoWrite(fn + "-" + a, data, dataCell, param, mlList, seen);
}
}
static void DoWrite(string fn, Dictionary<string, MatLab.DoubleList> data, Dictionary<string, List<MLCell>> dataCell, SortedDictionary<string, double> param,
List<MLArray> mlList, Hashtable seen)
{
log.Info("DoWrite start " + (GC.GetTotalMemory(false)/1024.0/1024.0));
foreach (var item in data)
{
double[][] temp = item.Value.ToArray();
MLArray dbarray = new MLDouble(item.Key, temp);
mlList.Add(dbarray);
log.Info("DoWrite Double " + item.Key + " " + (GC.GetTotalMemory(false)/1024.0/1024.0));
}
// datacell contains rows
foreach (var item in dataCell)
{
// create msg table
MLCell temp1 = new MLCell(item.Key+"1", new int[] {1, item.Value.Count});
int a = 0;
// add rows to msg table
foreach (var mlCell in item.Value)
{
temp1[a] = item.Value[a];
a++;
}
// add table to masterlist
mlList.Add(temp1);
log.Info("DoWrite Cell " + item.Key + " " + (GC.GetTotalMemory(false) / 1024.0 / 1024.0));
}
log.Info("DoWrite mllist " + (GC.GetTotalMemory(false)/1024.0/1024.0));
MLCell cell = new MLCell("PARM", new int[] {param.Keys.Count, 2});
int m = 0;
foreach (var item in param.Keys)
{
cell[m, 0] = new MLChar(null, item.ToString());
cell[m, 1] = new MLDouble(null, new double[] {(double) param[item]}, 1);
m++;
}
mlList.Add(cell);
MLArray seenmsg = CreateCellArray("Seen", seen.Keys.Cast<string>().ToArray());
mlList.Add(seenmsg);
try
{
log.Info("write " + fn + ".mat");
log.Info("DoWrite before" + (GC.GetTotalMemory(false)/1024.0/1024.0));
MatFileWriter mfw = new MatFileWriter(fn + ".mat", mlList, false);
log.Info("DoWrite done" + (GC.GetTotalMemory(false)/1024.0/1024.0));
}
catch (Exception err)
{
throw new Exception("There was an error when creating the MAT-file: \n" + err.ToString(), err);
}
}
public static void tlog(string logfile)
{
List<MLArray> mlList = new List<MLArray>();
Hashtable datappl = new Hashtable();
using (Comms.CommsFile cf = new CommsFile(logfile))
using (CommsStream cs = new CommsStream(cf, cf.BytesToRead))
{
MAVLink.MavlinkParse parse = new MAVLink.MavlinkParse(true);
while (cs.Position < cs.Length)
{
MAVLink.MAVLinkMessage packet = parse.ReadPacket(cs);
if(packet == null)
continue;
object data = packet.data;
if (data == null)
continue;
if (data is MAVLink.mavlink_heartbeat_t)
{
if (((MAVLink.mavlink_heartbeat_t)data).type == (byte)MAVLink.MAV_TYPE.GCS)
continue;
}
Type test = data.GetType();
DateTime time = packet.rxtime;
double matlabtime = GetMatLabSerialDate(time);
try
{
foreach (var field in test.GetFields())
{
// field.Name has the field's name.
object fieldValue = field.GetValue(data); // Get value
if (field.FieldType.IsArray)
{
}
else
{
if (!datappl.ContainsKey(field.Name + "_" + field.DeclaringType.Name))
{
datappl[field.Name + "_" + field.DeclaringType.Name] = new List<double[]>();
}
List<double[]> list =
((List<double[]>)datappl[field.Name + "_" + field.DeclaringType.Name]);
object value = fieldValue;
if (value.GetType() == typeof(Single))
{
list.Add(new double[] { matlabtime, (double)(Single)field.GetValue(data) });
}
else if (value.GetType() == typeof(short))
{
list.Add(new double[] { matlabtime, (double)(short)field.GetValue(data) });
}
else if (value.GetType() == typeof(ushort))
{
list.Add(new double[] { matlabtime, (double)(ushort)field.GetValue(data) });
}
else if (value.GetType() == typeof(byte))
{
list.Add(new double[] { matlabtime, (double)(byte)field.GetValue(data) });
}
else if (value.GetType() == typeof(sbyte))
{
list.Add(new double[] { matlabtime, (double)(sbyte)field.GetValue(data) });
}
else if (value.GetType() == typeof(Int32))
{
list.Add(new double[] { matlabtime, (double)(Int32)field.GetValue(data) });
}
else if (value.GetType() == typeof(UInt32))
{
list.Add(new double[] { matlabtime, (double)(UInt32)field.GetValue(data) });
}
else if (value.GetType() == typeof(ulong))
{
list.Add(new double[] { matlabtime, (double)(ulong)field.GetValue(data) });
}
else if (value.GetType() == typeof(long))
{
list.Add(new double[] { matlabtime, (double)(long)field.GetValue(data) });
}
else if (value.GetType() == typeof(double))
{
list.Add(new double[] { matlabtime, (double)(double)field.GetValue(data) });
}
else
{
Console.WriteLine("Unknown data type");
}
}
}
}
catch
{
}
}
}
foreach (string item in datappl.Keys)
{
double[][] temp = ((List<double[]>) datappl[item]).ToArray();
MLArray dbarray = new MLDouble(item.Replace(" ", "_"), temp);
mlList.Add(dbarray);
}
try
{
MatFileWriter mfw = new MatFileWriter(logfile + ".mat", mlList, false);
}
catch (Exception err)
{
throw new Exception("There was an error when creating the MAT-file: \n" + err.ToString(), err);
}
}
/// <summary>
/// http://www.mathworks.com.au/help/matlab/matlab_prog/represent-date-and-times-in-MATLAB.html#bth57t1-1
/// MATLAB also uses serial time to represent fractions of days beginning at midnight; for example, 6 p.m. equals 0.75 serial days.
/// So the string '31-Oct-2003, 6:00 PM' in MATLAB is date number 731885.75.
/// </summary>
/// <param name="dt"></param>
/// <returns></returns>
public static double GetMatLabSerialDate(DateTime dt)
{
// in c# i cant represent year 0000, so we add one year and the leap year
DateTime timebase = DateTime.MinValue; // = 1
double answer = (dt.AddYears(1).AddDays(2) - timebase).TotalDays;
return answer;
}
/// <summary>
/// File backed list
/// One file for data (double)
/// One file for offsets (long)
/// </summary>
public class DoubleList : IDisposable
{
Stream file;
string filename;
Stream offsetfile;
string offsetfilename;
const int offsetsize = sizeof (long);
public int Count
{
get { return (int) (offsetfile.Length/offsetsize); }
}
public DoubleList()
{
filename = Path.GetTempFileName();
file = File.Open(filename, FileMode.Create);
offsetfilename = Path.GetTempFileName();
offsetfile = File.Open(offsetfilename, FileMode.Create);
}
void setoffset(int index, long offset)
{
byte[] data = BitConverter.GetBytes(offset);
offsetfile.Seek(offsetsize*index, SeekOrigin.Begin);
offsetfile.Write(data, 0, offsetsize);
}
long getoffset(int index)
{
byte[] data = new byte[offsetsize];
offsetfile.Seek(offsetsize*index, SeekOrigin.Begin);
offsetfile.Read(data, 0, offsetsize);
return BitConverter.ToInt64(data, 0);
}
~DoubleList()
{
Dispose();
}
public void Dispose()
{
offsetfile.Close();
offsetfile = null;
file.Close();
file = null;
File.Delete(filename);
File.Delete(offsetfilename);
}
public double[] this[int index]
{
get
{
// init a buffer
byte[] buffer = new byte[sizeof (double)];
// seek to the offset of this index we want
file.Seek(getoffset(index), SeekOrigin.Begin);
// read the number of elements following
file.Read(buffer, 0, sizeof (int));
int elements = BitConverter.ToInt32(buffer, 0);
// read the elements
List<double> data = new List<double>();
for (int a = 0; a < elements; a++)
{
file.Read(buffer, 0, buffer.Length);
data.Add(BitConverter.ToDouble(buffer, 0));
}
// return the data
return data.ToArray();
}
}
public int Add(double[] items)
{
// goto the end of the file
file.Seek(0, SeekOrigin.End);
// save the position of the data following
setoffset(Count, file.Position);
// save the number of elements following
file.Write(BitConverter.GetBytes(items.Length), 0, sizeof (int));
// save the elements
foreach (var item in items)
{
file.Write(BitConverter.GetBytes(item), 0, sizeof (double));
}
// return the index
return Count;
}
public double[][] ToArray()
{
double[][] data = new double[Count][];
for (int a = 0; a < Count; a++)
{
data[a] = this[a];
}
return data;
}
}
}
}