forked from zero-motorcycle-community/zero-log-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zero_log_parser.py
executable file
·1337 lines (1175 loc) · 52.4 KB
/
zero_log_parser.py
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
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
"""
Little decoder utility to parse Zero Motorcycle main bike board (MBB) and
battery management system (BMS) logs. These may be extracted from the bike
using the Zero mobile app. Once paired over bluetooth, select 'Support' >
'Email bike logs' and send the logs to yourself rather than / in addition to
zero support.
Usage:
$ python zero_log_parser.py <*.bin file> [-o output_file]
"""
import codecs
import logging
import os
import re
import string
import struct
from collections import OrderedDict, namedtuple
from datetime import datetime, timedelta
from math import trunc
from time import gmtime, localtime, strftime
from typing import Dict, List, Union
ZERO_TIME_FORMAT = '%m/%d/%Y %H:%M:%S'
# The output from the MBB (via serial port) lists time as GMT-7
MBB_TIMESTAMP_GMT_OFFSET = -7 * 60 * 60
# noinspection PyMissingOrEmptyDocstring
class BinaryTools:
"""
Utility class for dealing with serialised data from the Zero's
"""
TYPES = {
'int8': 'b',
'uint8': 'B',
'int16': 'h',
'uint16': 'H',
'int32': 'l',
'uint32': 'L',
'int64': 'q',
'uint64': 'Q',
'float': 'f',
'double': 'd',
'char': 's',
'bool': '?'
}
TYPE_CONVERSIONS = {
'int8': int,
'uint8': int,
'int16': int,
'uint16': int,
'int32': int,
'uint32': int,
'int64': int,
'uint64': int,
'float': float,
'double': float,
'char': None, # chr
'bool': bool
}
@classmethod
def unpack(cls,
type_name: str,
buff: bytearray,
address: int,
count=1, offset=0) -> Union[bytearray, int, float, bool]:
# noinspection PyAugmentAssignment
buff = buff + bytearray(32)
type_key = type_name.lower()
type_char = cls.TYPES[type_key]
type_convert = cls.TYPE_CONVERSIONS[type_key]
type_format = '<{}{}'.format(count, type_char)
unpacked = struct.unpack_from(type_format, buff, address + offset)[0]
if type_convert:
# if count > 1:
# return [type_convert(each) for each in unpacked]
# else:
return type_convert(unpacked)
else:
return unpacked
@staticmethod
def unescape_block(data):
start_offset = 0
escape_offset = data.find(b'\xfe')
while escape_offset != -1:
escape_offset += start_offset
if escape_offset + 1 < len(data):
data[escape_offset] = data[escape_offset] ^ data[escape_offset + 1] - 1
data = data[0:escape_offset + 1] + data[escape_offset + 2:]
start_offset = escape_offset + 1
escape_offset = data[start_offset:].find(b'\xfe')
return data
@staticmethod
def decode_str(log_text_segment: bytearray, encoding='utf-8') -> str:
"""Decodes UTF-8 strings from a test segment, ignoring any errors"""
return log_text_segment.decode(encoding=encoding, errors='ignore')
@classmethod
def unpack_str(cls, log_text_segment: bytearray, address, count=1, offset=0,
encoding='utf-8') -> str:
"""Unpacks and decodes UTF-8 strings from a test segment, ignoring any errors"""
unpacked = cls.unpack('char', log_text_segment, address, count, offset)
return cls.decode_str(unpacked.partition(b'\0')[0], encoding=encoding)
@staticmethod
def is_printable(bytes_or_str: str) -> bool:
return all(c in string.printable for c in bytes_or_str)
vin_length = 17
vin_guaranteed_prefix = '538'
def is_vin(vin: str):
"""Whether the string matches a Zero VIN."""
return (BinaryTools.is_printable(vin)
and len(vin) == vin_length
and vin.startswith(vin_guaranteed_prefix))
# noinspection PyMissingOrEmptyDocstring
class LogFile:
"""
Wrapper for our raw log file
"""
def __init__(self, file_path: str, logger=None):
self.file_path = file_path
self._data = bytearray()
self.reload()
self.log_type = self.get_log_type()
def reload(self):
with open(self.file_path, 'rb') as f:
self._data = bytearray(f.read())
def index_of_sequence(self, sequence, start=None):
try:
return self._data.index(sequence, start)
except ValueError:
return None
def indexes_of_sequence(self, sequence, start=None):
result = []
last_index = self.index_of_sequence(sequence, start)
while last_index is not None:
result.append(last_index)
last_index = self.index_of_sequence(sequence, last_index + 1)
return result
def unpack(self, type_name, address, count=1, offset=0):
return BinaryTools.unpack(type_name, self._data, address + offset,
count=count)
def decode_str(self, address, count=1, offset=0, encoding='utf-8'):
return BinaryTools.decode_str(BinaryTools.unpack('char', self._data, address + offset,
count=count), encoding=encoding)
def unpack_str(self, address, count=1, offset=0, encoding='utf-8') -> str:
"""Unpacks and decodes UTF-8 strings from a test segment, ignoring any errors"""
unpacked = self.unpack('char', address, count, offset)
return BinaryTools.decode_str(unpacked.partition(b'\0')[0], encoding=encoding)
def is_printable(self, address, count=1, offset=0) -> bool:
unpacked = self.unpack('char', address, count, offset).decode('utf-8', 'ignore')
return BinaryTools.is_printable(unpacked) and len(unpacked) == count
def extract(self, start_address, length, offset=0):
return self._data[start_address + offset:
start_address + length + offset]
def raw(self):
return bytearray(self._data)
log_type_mbb = 'MBB'
log_type_bms = 'BMS'
log_type_unknown = 'Unknown Type'
def get_log_type(self):
log_type = None
if self.is_printable(0x000, count=3):
log_type = self.unpack_str(0x000, count=3)
elif self.is_printable(0x00d, count=3):
log_type = self.unpack_str(0x00d, count=3)
elif self.log_type_mbb in self.file_path.upper():
log_type = self.log_type_mbb
elif self.log_type_bms in self.file_path.upper():
log_type = self.log_type_bms
if log_type not in [self.log_type_mbb, self.log_type_bms]:
log_type = self.log_type_unknown
return log_type
def is_mbb(self):
return self.log_type == self.log_type_mbb
def is_bms(self):
return self.log_type == self.log_type_bms
def is_unknown(self):
return self.log_type == self.log_type_unknown
def get_filename_vin(self):
basename = os.path.basename(self.file_path)
if basename and len(basename) > vin_length and vin_guaranteed_prefix in basename:
vin_index = basename.index(vin_guaranteed_prefix)
return basename[vin_index:vin_index + vin_length]
def convert_mv_to_v(milli_volts: int) -> float:
return milli_volts / 1000.0
def convert_ratio_to_percent(numerator: Union[int, float], denominator: Union[int, float]) -> float:
return numerator * 100 / denominator if denominator != 0 else 0
def convert_bit_to_on_off(bit: int) -> str:
return 'On' if bit else 'Off'
def hex_of_value(value):
if isinstance(value, str):
return value
if isinstance(value, float):
return value.hex()
if isinstance(value, bytearray):
return value.hex()
if isinstance(value, bytes):
return value.hex()
return str(value)
def display_bytes_hex(x: Union[List[int], bytearray, bytes, str]):
byte_values = bytearray(x, 'utf8') if isinstance(x, str) else x
return ' '.join(['0x{:02x}'.format(c) for c in byte_values])
EMPTY_CSV_VALUE = ''
def print_value_tabular(value, omit_units=False):
"""Stringify the value for CSV/TSV; treat None as empty text."""
if value is None:
return EMPTY_CSV_VALUE
if isinstance(value, str) and not BinaryTools.is_printable(value):
return display_bytes_hex(value)
if isinstance(value, int):
return str(value)
if isinstance(value, bytearray):
return display_bytes_hex(value)
if isinstance(value, float):
return '{0:.2f}'.format(value)
if omit_units and value is str:
matches = re.match(r"^([0-9.]+)\s*([A-Za-z]+)$", value)
if matches:
return matches.group(1)
return str(value)
class Gen2:
@classmethod
def timestamp_from_event(cls, unescaped_block, use_local_time=False, timezone_offset=None):
timestamp = BinaryTools.unpack('uint32', unescaped_block, 0x01)
if timestamp > 0xfff:
if use_local_time:
timestamp_corrected = localtime(timestamp)
else:
timestamp_corrected = gmtime(timestamp + timezone_offset)
return strftime(ZERO_TIME_FORMAT, timestamp_corrected)
else:
return str(timestamp)
@classmethod
def bms_discharge_level(cls, x):
bike = {
0x01: 'Bike On',
0x02: 'Charge',
0x03: 'Idle'
}
return {
'event': 'Discharge level',
'conditions':
'{AH:03.0f} AH, SOC:{SOC:3d}%, I:{I:3.0f}A, L:{L}, l:{l}, H:{H}, B:{B:03d}, '
'PT:{PT:03d}C, BT:{BT:03d}C, PV:{PV:6d}, M:{M}'.format(
AH=trunc(BinaryTools.unpack('uint32', x, 0x06) / 1000000.0),
B=BinaryTools.unpack('uint16', x, 0x02) - BinaryTools.unpack('uint16', x, 0x0),
I=trunc(BinaryTools.unpack('int32', x, 0x10) / 1000000.0),
L=BinaryTools.unpack('uint16', x, 0x0),
H=BinaryTools.unpack('uint16', x, 0x02),
PT=BinaryTools.unpack('uint8', x, 0x04),
BT=BinaryTools.unpack('uint8', x, 0x05),
SOC=BinaryTools.unpack('uint8', x, 0x0a),
PV=BinaryTools.unpack('uint32', x, 0x0b),
l=BinaryTools.unpack('uint16', x, 0x14),
M=bike.get(BinaryTools.unpack('uint8', x, 0x0f)),
X=BinaryTools.unpack('uint16', x, 0x16))
}
@classmethod
def bms_charge_event_fields(cls, x):
return {
'AH': trunc(BinaryTools.unpack('uint32', x, 0x06) / 1000000.0),
'B': BinaryTools.unpack('uint16', x, 0x02) - BinaryTools.unpack('uint16', x, 0x0),
'L': BinaryTools.unpack('uint16', x, 0x00),
'H': BinaryTools.unpack('uint16', x, 0x02),
'PT': BinaryTools.unpack('uint8', x, 0x04),
'BT': BinaryTools.unpack('uint8', x, 0x05),
'SOC': BinaryTools.unpack('uint8', x, 0x0a),
'PV': BinaryTools.unpack('uint32', x, 0x0b)
}
@classmethod
def bms_charge_full(cls, x):
fields = cls.bms_charge_event_fields(x)
return {
'event': 'Charged To Full',
'conditions':
('{AH:03.0f} AH, SOC: {SOC}%, L:{L}, H:{H}, B:{B:03d}, '
'PT:{PT:03d}C, BT:{BT:03d}C, PV:{PV:6d}').format_map(fields)
}
@classmethod
def bms_discharge_low(cls, x):
fields = cls.bms_charge_event_fields(x)
return {
'event': 'Discharged To Low',
'conditions':
('{AH:03.0f} AH, SOC:{SOC:3d}%, L:{L}, H:{H}, B:{B:03d}, '
'PT:{PT:03d}C, BT:{BT:03d}C, PV:{PV:6d}').format_map(fields)
}
@classmethod
def bms_system_state(cls, x):
return {
'event': 'System Turned ' + convert_bit_to_on_off(BinaryTools.unpack('bool', x, 0x0))
}
@classmethod
def bms_soc_adj_voltage(cls, x):
return {
'event': 'SOC adjusted for voltage',
'conditions':
('old: {old}uAH (soc:{old_soc}%), '
'new: {new}uAH (soc:{new_soc}%), '
'low cell: {low} mV').format(
old=BinaryTools.unpack('uint32', x, 0x00),
old_soc=BinaryTools.unpack('uint8', x, 0x04),
new=BinaryTools.unpack('uint32', x, 0x05),
new_soc=BinaryTools.unpack('uint8', x, 0x09),
low=BinaryTools.unpack('uint16', x, 0x0a))
}
@classmethod
def bms_curr_sens_zero(cls, x):
return {
'event': 'Current Sensor Zeroed',
'conditions': 'old: {old}mV, new: {new}mV, corrfact: {corrfact}'.format(
old=BinaryTools.unpack('uint16', x, 0x00),
new=BinaryTools.unpack('uint16', x, 0x02),
corrfact=BinaryTools.unpack('uint8', x, 0x04))
}
@classmethod
def bms_state(cls, x):
entering_hibernate = BinaryTools.unpack('bool', x, 0x0)
return {
'event': ('Entering' if entering_hibernate else 'Exiting') + ' Hibernate'
}
@classmethod
def bms_isolation_fault(cls, x):
return {
'event': 'Chassis Isolation Fault',
'conditions': '{ohms} ohms to cell {cell}'.format(
ohms=BinaryTools.unpack('uint32', x, 0x00),
cell=BinaryTools.unpack('uint8', x, 0x04))
}
@classmethod
def bms_reflash(cls, x):
return dict(event='BMS Reflash', conditions='Revision {rev}, ' 'Built {build}'.format(
rev=BinaryTools.unpack('uint8', x, 0x00),
build=BinaryTools.unpack_str(x, 0x01, 20)))
@classmethod
def bms_change_can_id(cls, x):
return {
'event': 'Changed CAN Node ID',
'conditions': 'old: {old:02d}, new: {new:02d}'.format(
old=BinaryTools.unpack('uint8', x, 0x00),
new=BinaryTools.unpack('uint8', x, 0x01))
}
@classmethod
def bms_contactor_state(cls, x):
pack_voltage = BinaryTools.unpack('uint32', x, 0x01)
switched_voltage = BinaryTools.unpack('uint32', x, 0x05)
return {
'event': '{state}'.format(
state='Contactor was ' +
('Closed' if BinaryTools.unpack('bool', x, 0x0) else 'Opened')),
'conditions':
('Pack V: {pv}mV, '
'Switched V: {sv}mV, '
'Prechg Pct: {pc:2.0f}%, '
'Dischg Cur: {dc}mA').format(
pv=pack_voltage,
sv=switched_voltage,
pc=convert_ratio_to_percent(switched_voltage, pack_voltage),
dc=BinaryTools.unpack('int32', x, 0x09))
}
@classmethod
def bms_discharge_cut(cls, x):
return {
'event': 'Discharge cutback',
'conditions': '{cut:2.0f}%'.format(
cut=convert_ratio_to_percent(BinaryTools.unpack('uint8', x, 0x00), 255.0)
)
}
@classmethod
def bms_contactor_drive(cls, x):
return {
'event': 'Contactor drive turned on',
'conditions': 'Pack V: {pv}mV, Switched V: {sv}mV, Duty Cycle: {dc}%'.format(
pv=BinaryTools.unpack('uint32', x, 0x01),
sv=BinaryTools.unpack('uint32', x, 0x05),
dc=BinaryTools.unpack('uint8', x, 0x09))
}
@classmethod
def debug_message(cls, x):
return {
'event': BinaryTools.unpack_str(x, 0x0, count=len(x) - 1)
}
@classmethod
def board_status(cls, x):
causes = {
0x04: 'Software',
}
return {
'event': 'BMS Reset',
'conditions': causes.get(BinaryTools.unpack('uint8', x, 0x00),
'Unknown')
}
@classmethod
def key_state(cls, x):
key_on = BinaryTools.unpack('bool', x, 0x0)
return {
'event': 'Key ' + convert_bit_to_on_off(key_on) + (' ' if key_on else '')
}
@classmethod
def battery_can_link_up(cls, x):
return {
'event': 'Module {module:02} CAN Link Up'.format(
module=BinaryTools.unpack('uint8', x, 0x0)
)
}
@classmethod
def battery_can_link_down(cls, x):
return {
'event': 'Module {module:02} CAN Link Down'.format(
module=BinaryTools.unpack('uint8', x, 0x0)
)
}
@classmethod
def sevcon_can_link_up(cls, _):
return {
'event': 'Sevcon CAN Link Up'
}
@classmethod
def sevcon_can_link_down(cls, x):
return {
'event': 'Sevcon CAN Link Down'
}
@classmethod
def run_status(cls, x):
mod_translate = {
0x00: '00',
0x01: '10',
0x02: '01',
0x03: '11',
}
return {
'event': 'Riding',
'conditions':
('PackTemp: h {pack_temp_hi}C, l {pack_temp_low}C, '
'PackSOC:{soc:3d}%, '
'Vpack:{pack_voltage:7.3f}V, '
'MotAmps:{motor_current:4d}, BattAmps:{battery_current:4d}, '
'Mods: {mods}, '
'MotTemp:{motor_temp:4d}C, CtrlTemp:{controller_temp:4d}C, '
'AmbTemp:{ambient_temp:4d}C, '
'MotRPM:{rpm:4d}, '
'Odo:{odometer:5d}km').format(
pack_temp_hi=BinaryTools.unpack('uint8', x, 0x0),
pack_temp_low=BinaryTools.unpack('uint8', x, 0x1),
soc=BinaryTools.unpack('uint16', x, 0x2),
pack_voltage=convert_mv_to_v(BinaryTools.unpack('uint32', x, 0x4)),
motor_temp=BinaryTools.unpack('int16', x, 0x8),
controller_temp=BinaryTools.unpack('int16', x, 0xa),
rpm=BinaryTools.unpack('uint16', x, 0xc),
battery_current=BinaryTools.unpack('int16', x, 0x10),
mods=mod_translate.get(BinaryTools.unpack('uint8', x, 0x12),
'Unknown'),
motor_current=BinaryTools.unpack('int16', x, 0x13),
ambient_temp=BinaryTools.unpack('int16', x, 0x15),
odometer=BinaryTools.unpack('uint32', x, 0x17))
}
@classmethod
def charging_status(cls, x):
return {
'event': 'Charging',
'conditions':
'PackTemp: h {pack_temp_hi}C, l {pack_temp_low}C, AmbTemp: {ambient_temp}C, '
'PackSOC:{soc:3d}%, Vpack:{pack_voltage:7.3f}V, BattAmps: {battery_current:3d}, '
'Mods: {mods:02b}, MbbChgEn: Yes, BmsChgEn: No'.format(
pack_temp_hi=BinaryTools.unpack('uint8', x, 0x00),
pack_temp_low=BinaryTools.unpack('uint8', x, 0x01),
soc=BinaryTools.unpack('uint16', x, 0x02),
pack_voltage=convert_mv_to_v(BinaryTools.unpack('uint32', x, 0x4)),
battery_current=BinaryTools.unpack('int8', x, 0x08),
mods=BinaryTools.unpack('uint8', x, 0x0c),
ambient_temp=BinaryTools.unpack('int8', x, 0x0d))
}
@classmethod
def sevcon_status(cls, x):
cause = {
0x4681: 'Preop',
0x4884: 'Sequence Fault',
0x4981: 'Throttle Fault',
}
return {
'event': 'SEVCON CAN EMCY Frame',
'conditions':
('Error Code: 0x{code:04X}, Error Reg: 0x{reg:02X}, '
'Sevcon Error Code: 0x{sevcon_code:04X}, Data: {data}, {cause}').format(
code=BinaryTools.unpack('uint16', x, 0x00),
reg=BinaryTools.unpack('uint8', x, 0x04),
sevcon_code=BinaryTools.unpack('uint16', x, 0x02),
data=' '.join(['{:02X}'.format(c) for c in x[5:]]),
cause=cause.get(BinaryTools.unpack('uint16', x, 0x02), 'Unknown')
)
}
@classmethod
def charger_status(cls, x):
states = {
0x00: 'Disconnected',
0x01: 'Connected',
}
name = {
0x00: 'Calex 720W',
0x01: 'Calex 1200W',
0x02: 'External Chg 0',
0x03: 'External Chg 1',
}
charger_state = BinaryTools.unpack('uint8', x, 0x1)
charger_id = BinaryTools.unpack('uint8', x, 0x0)
return {
'event': '{name} Charger {charger_id} {state:13s}'.format(
charger_id=charger_id,
state=states.get(charger_state),
name=name.get(charger_id, 'Unknown')
)
}
@classmethod
def battery_status(cls, x):
opening_contactor = 'Opening Contactor'
closing_contactor = 'Closing Contactor'
registered = 'Registered'
events = {
0x00: opening_contactor,
0x01: closing_contactor,
0x02: registered,
}
event = BinaryTools.unpack('uint8', x, 0x0)
event_name = events.get(event, 'Unknown (0x{:02x})'.format(event))
mod_volt = convert_mv_to_v(BinaryTools.unpack('uint32', x, 0x2))
sys_max = convert_mv_to_v(BinaryTools.unpack('uint32', x, 0x6))
sys_min = convert_mv_to_v(BinaryTools.unpack('uint32', x, 0xa))
capacitor_volt = convert_mv_to_v(BinaryTools.unpack('uint32', x, 0x0e))
battery_current = BinaryTools.unpack('int16', x, 0x12)
serial_no = BinaryTools.unpack_str(x, 0x14, count=len(x[0x14:]))
# Ensure the serial is printable
printable_serial_no = ''.join(c for c in serial_no
if c not in string.printable)
if not printable_serial_no:
printable_serial_no = hex_of_value(serial_no)
if event_name == opening_contactor:
conditions_msg = 'vmod: {modvolt:7.3f}V, batt curr: {batcurr:3.0f}A'.format(
modvolt=mod_volt,
batcurr=battery_current
)
elif event_name == closing_contactor:
conditions_msg = ('vmod: {modvolt:7.3f}V, maxsys: {sysmax:7.3f}V, '
'minsys: {sysmin:7.3f}V, diff: {diff:0.03f}V, vcap: {vcap:6.3f}V, '
'prechg: {prechg:2.0f}%').format(
modvolt=mod_volt,
sysmax=sys_max,
sysmin=sys_min,
vcap=capacitor_volt,
batcurr=battery_current,
serial=printable_serial_no,
diff=sys_max - sys_min,
prechg=convert_ratio_to_percent(capacitor_volt, mod_volt))
elif event_name == registered:
conditions_msg = 'serial: {serial}, vmod: {modvolt:3.3f}V'.format(
serial=printable_serial_no,
modvolt=mod_volt
)
else:
conditions_msg = ''
return {
'event': 'Module {module:02} {event}'.format(
module=BinaryTools.unpack('uint8', x, 0x1),
event=event_name
),
'conditions': conditions_msg
}
@classmethod
def power_state(cls, x):
sources = {
0x01: 'Key Switch',
0x02: 'Ext Charger 0',
0x03: 'Ext Charger 1',
0x04: 'Onboard Charger',
}
power_on_cause = BinaryTools.unpack('uint8', x, 0x1)
power_on = BinaryTools.unpack('bool', x, 0x0)
return {
'event': 'Power ' + convert_bit_to_on_off(power_on),
'conditions': sources.get(power_on_cause, 'Unknown')
}
@classmethod
def sevcon_power_state(cls, x):
return {
'event': 'Sevcon Turned ' + convert_bit_to_on_off(BinaryTools.unpack('bool', x, 0x0))
}
@classmethod
def show_bluetooth_state(cls, x):
return {
'event': 'BT RX buffer reset'
}
@classmethod
def battery_discharge_current_limited(cls, x):
limit = BinaryTools.unpack('uint16', x, 0x00)
max_amp = BinaryTools.unpack('uint16', x, 0x05)
return {
'event': 'Batt Dischg Cur Limited',
'conditions':
'{limit} A ({percent:.2f}%), MinCell: {min_cell}mV, MaxPackTemp: {temp}C'.format(
limit=limit,
min_cell=BinaryTools.unpack('uint16', x, 0x02),
temp=BinaryTools.unpack('uint8', x, 0x04),
max_amp=max_amp,
percent=convert_ratio_to_percent(limit, max_amp)
)
}
@classmethod
def low_chassis_isolation(cls, x):
return {
'event': 'Low Chassis Isolation',
'conditions': '{kohms} KOhms to cell {cell}'.format(
kohms=BinaryTools.unpack('uint32', x, 0x00),
cell=BinaryTools.unpack('uint8', x, 0x04)
)
}
@classmethod
def precharge_decay_too_steep(cls, x):
return {
'event': 'Precharge Decay Too Steep. Restarting Sevcon.'
}
@classmethod
def disarmed_status(cls, x):
return {
'event': 'Disarmed',
'conditions':
('PackTemp: h {pack_temp_hi}C, l {pack_temp_low}C, '
'PackSOC:{soc:3d}%, '
'Vpack:{pack_voltage:03.3f}V, '
'MotAmps:{motor_current:4d}, BattAmps:{battery_current:4d}, '
'Mods: {mods:02b}, '
'MotTemp:{motor_temp:4d}C, CtrlTemp:{controller_temp:4d}C, '
'AmbTemp:{ambient_temp:4d}C, '
'MotRPM:{rpm:4d}, '
'Odo:{odometer:5d}km').format(
pack_temp_hi=BinaryTools.unpack('uint8', x, 0x0),
pack_temp_low=BinaryTools.unpack('uint8', x, 0x1),
soc=BinaryTools.unpack('uint16', x, 0x2),
pack_voltage=convert_mv_to_v(BinaryTools.unpack('uint32', x, 0x4)),
motor_temp=BinaryTools.unpack('int16', x, 0x8),
controller_temp=BinaryTools.unpack('int16', x, 0xa),
rpm=BinaryTools.unpack('uint16', x, 0xc),
battery_current=BinaryTools.unpack('uint8', x, 0x10),
mods=BinaryTools.unpack('uint8', x, 0x12),
motor_current=BinaryTools.unpack('int8', x, 0x13),
ambient_temp=BinaryTools.unpack('int16', x, 0x15),
odometer=BinaryTools.unpack('uint32', x, 0x17))
}
@classmethod
def battery_contactor_closed(cls, x):
return {
'event': 'Battery module {module:02} contactor closed'.format(
module=BinaryTools.unpack('uint8', x, 0x0))
}
@classmethod
def type_from_block(cls, unescaped_block):
return BinaryTools.unpack('uint8', unescaped_block, 0x00)
@classmethod
def unhandled_entry_format(cls, message_type, x):
return {
'event': '{message_type} {message}'.format(
message_type=display_bytes_hex([message_type]),
message=display_bytes_hex(x)
),
'conditions': chr(message_type) + '???'
}
@classmethod
def parse_entry(cls, log_data, address, unhandled, logger, timezone_offset=None):
"""
Parse an individual entry from a LogFile into a human readable form
"""
try:
header = log_data[address]
# IndexError: bytearray index out of range
except IndexError:
logger.warn("IndexError log_data[%r]: forcing header_bad", address)
header = 0
# correct header offset as needed to prevent errors
header_bad = header != 0xb2
while header_bad:
address += 1
try:
header = log_data[address]
except IndexError:
# IndexError: bytearray index out of range
logger.warn("IndexError log_data[%r]: forcing header_bad", address)
header = 0
header_bad = True
break
header_bad = header != 0xb2
try:
length = log_data[address + 1]
# IndexError: bytearray index out of range
except IndexError:
length = 0
unescaped_block = BinaryTools.unescape_block(log_data[address + 0x2:address + length])
message_type = cls.type_from_block(unescaped_block)
message = unescaped_block[0x05:]
parsers = {
# Unknown entry types to be added when defined: type, length, source, example
0x01: cls.board_status,
# 0x02: unknown, 2, 6350_MBB_2016-04-12, 0x02 0x2e 0x11 ???
0x03: cls.bms_discharge_level,
0x04: cls.bms_charge_full,
# 0x05: unknown, 17, 6890_BMS0_2016-07-03, 0x05 0x34 0x0b 0xe0 0x0c 0x35 0x2a 0x89 0x71
# 0xb5 0x01 0x00 0xa5 0x62 0x01 0x00 0x20 0x90 ???
0x06: cls.bms_discharge_low,
0x08: cls.bms_system_state,
0x09: cls.key_state,
0x0b: cls.bms_soc_adj_voltage,
0x0d: cls.bms_curr_sens_zero,
# 0x0e: unknown, 3, 6350_BMS0_2017-01-30 0x0e 0x05 0x00 0xff ???
0x10: cls.bms_state,
0x11: cls.bms_isolation_fault,
0x12: cls.bms_reflash,
0x13: cls.bms_change_can_id,
0x15: cls.bms_contactor_state,
0x16: cls.bms_discharge_cut,
0x18: cls.bms_contactor_drive,
# 0x1c: unknown, 8, 3455_MBB_2016-09-11, 0x1c 0xdf 0x56 0x01 0x00 0x00 0x00 0x30 0x02
# ???
# 0x1e: unknown, 4, 6472_MBB_2016-12-12, 0x1e 0x32 0x00 0x06 0x23 ???
# 0x1f: unknown, 4, 5078_MBB_2017-01-20, 0x1f 0x00 0x00 0x08 0x43 ???
# 0x20: unknown, 3, 6472_MBB_2016-12-12, 0x20 0x02 0x32 0x00 ???
# 0x26: unknown, 6, 3455_MBB_2016-09-11, 0x26 0x72 0x00 0x40 0x00 0x80 0x00 ???
0x28: cls.battery_can_link_up,
0x29: cls.battery_can_link_down,
0x2a: cls.sevcon_can_link_up,
0x2b: cls.sevcon_can_link_down,
0x2c: cls.run_status,
0x2d: cls.charging_status,
0x2f: cls.sevcon_status,
0x30: cls.charger_status,
# 0x31: unknown, 1, 6350_MBB_2016-04-12, 0x31 0x00 ???
0x33: cls.battery_status,
0x34: cls.power_state,
# 0x35: unknown, 5, 6472_MBB_2016-12-12, 0x35 0x00 0x46 0x01 0xcb 0xff ???
0x36: cls.sevcon_power_state,
# 0x37: unknown, 0, 3558_MBB_2016-12-25, 0x37 ???
0x38: cls.show_bluetooth_state,
0x39: cls.battery_discharge_current_limited,
0x3a: cls.low_chassis_isolation,
0x3b: cls.precharge_decay_too_steep,
0x3c: cls.disarmed_status,
0x3d: cls.battery_contactor_closed,
0xfd: cls.debug_message
}
entry_parser = parsers.get(message_type)
try:
if entry_parser:
entry = entry_parser(message)
else:
entry = cls.unhandled_entry_format(message_type, message)
except Exception as e:
entry = cls.unhandled_entry_format(message_type, message)
entry['event'] = 'Exception caught: ' + entry['event']
unhandled += 1
entry['time'] = cls.timestamp_from_event(unescaped_block, timezone_offset=timezone_offset)
return length, entry, unhandled
class Gen3:
entry_data_fencepost = b'\x00\xb2'
Entry = namedtuple('Gen3EntryType', ['event', 'time', 'conditions', 'uninterpreted'])
min_timestamp = datetime.strptime('2019-01-01', '%Y-%M-%d')
max_timestamp = datetime.now() + timedelta(days=365)
@classmethod
def timestamp_is_valid(cls, event_timestamp: datetime):
return cls.min_timestamp < event_timestamp < cls.max_timestamp
@classmethod
def payload_to_entry(cls, entry_payload: bytearray, hex_on_error=False, logger=None) -> Entry:
timestamp_bytes = list(entry_payload[0:4])
timestamp_int = int.from_bytes(timestamp_bytes, byteorder='big', signed=False)
event_timestamp = datetime.fromtimestamp(timestamp_int)
if not cls.timestamp_is_valid(event_timestamp) and logger:
logger.warning('Timestamp out of normal range: {}'.format(
event_timestamp.strftime(ZERO_TIME_FORMAT)))
# event_counter = BinaryTools.unpack('int16', entry_payload, 4)
payload_string = BinaryTools.unpack_str(entry_payload, 7, len(entry_payload) - 7).strip()
event_message = payload_string
event_conditions = ''
conditions = OrderedDict()
conditions_str = ''
data_payload = None
try:
data_fencepost = entry_payload.index(cls.entry_data_fencepost)
data_payload = entry_payload[data_fencepost + 2:]
except ValueError:
pass
if len(payload_string) < 2:
if hex_on_error:
event_message = display_bytes_hex(entry_payload)
else:
pass
# conditions_str = 'Payload: ' + display_bytes_hex(entry_payload)
elif '. ' in payload_string:
sentences = payload_string.split(sep='. ')
event_conditions = sentences[-1]
event_message = '. '.join(sentences[:-1]) if len(sentences) > 2 else sentences[0]
elif payload_string.startswith('I_('):
match = re.match(r'(I_)\((.*)\)(.*)', payload_string)
if match:
event_message = 'Current'
key_prefix = match.group(1)
event_conditions = match.group(2)
value_suffix = match.group(3)
kv_parts = event_conditions.split(', ')
for list_part in kv_parts:
if ': ' in list_part:
[k, v] = list_part.split(': ', maxsplit=1)
conditions[key_prefix + k] = v + value_suffix
event_conditions = ''
elif ': ' in payload_string:
[event_message, event_conditions] = payload_string.split(': ', maxsplit=1)
elif ' = ' in payload_string:
[event_message, event_conditions] = payload_string.split(' = ', maxsplit=1)
elif ' from ' in payload_string and ' to ' in payload_string:
[event_message, event_conditions] = payload_string.split(' from ', maxsplit=1)
match = re.match(r'(.*) to (.*)', event_conditions)
if match:
conditions['from'] = match.group(1)
conditions['to'] = match.group(2)
event_conditions = ''
else:
match = re.match(r'([^()]+) \(([^()]+)\)', payload_string)
if match:
event_message = match.group(1)
event_conditions = match.group(2)
if event_conditions.startswith('V_('):
match = re.match(r'(V_)\((.*)\)(.*)', event_conditions)
if match:
key_prefix = match.group(1)
event_conditions = match.group(2)
value_suffix = match.group(3).rstrip(',')
kv_parts = event_conditions.split(', ')
for list_part in kv_parts:
if ': ' in list_part:
[k, v] = list_part.split(': ', maxsplit=1)
conditions[key_prefix + k] = v + value_suffix
elif 'Old: ' in event_conditions and 'New: ' in event_conditions:
matches = re.search('Old: (0x[0-9a-fA-F]+) New: (0x[0-9a-fA-F]+)', event_conditions)
if matches:
old = matches.group(1)
old_int = int(old, 16)
old_bits = '{0:b}'.format(old_int)
new = matches.group(2)
new_int = int(new, 16)
new_bits = '{0:b}'.format(new_int)
if len(new_bits) != len(old_bits):
max_len = max(len(new_bits), len(old_bits))
bitwise_format = '{0:0' + str(max_len) + 'b}'
new_bits = bitwise_format.format(new_int)
old_bits = bitwise_format.format(old_int)
conditions['old'] = old_bits
conditions['new'] = new_bits
elif ', ' in event_conditions:
list_parts = [x.strip() for x in event_conditions.split(', ')]
for list_part in list_parts:
if ': ' in list_part:
[k, v] = list_part.split(': ', maxsplit=1)
else:
list_part_words = list_part.split(' ')
if len(list_part_words) == 2:
[k, v] = list_part_words
else:
k = list_part
v = ''
conditions[k] = v
if len(conditions) > 0:
for k, v in conditions.items():
if conditions_str:
conditions_str += ', '
conditions_str += (k + ': ' + v) if k and v else k or v
elif event_conditions:
conditions_str = event_conditions
return cls.Entry(event_message, event_timestamp, conditions_str,
display_bytes_hex(data_payload) if data_payload else '')
REV0 = 0
REV1 = 1
REV2 = 2
class LogData(object):
"""
:type log_version: int
:type header_info: Dict[str, str]
:type entries_count: Optional[int]
:type entries: List[str]
:type timezone_offset: int
"""