You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.6 KiB
138 lines
3.6 KiB
# distutils: language = c++
|
|
# cython: c_string_encoding=ascii, language_level=3
|
|
|
|
from libcpp.string cimport string
|
|
from libcpp.vector cimport vector
|
|
from libcpp cimport bool
|
|
from libcpp.unordered_set cimport unordered_set
|
|
from libc.stdint cimport uint32_t, uint64_t, uint16_t
|
|
from libcpp.map cimport map
|
|
|
|
from common cimport CANParser as cpp_CANParser
|
|
from common cimport SignalParseOptions, MessageParseOptions, dbc_lookup, SignalValue, DBC
|
|
|
|
|
|
from libcpp cimport bool
|
|
import os
|
|
import numbers
|
|
|
|
cdef int CAN_INVALID_CNT = 5
|
|
|
|
|
|
cdef class CANParser:
|
|
cdef:
|
|
cpp_CANParser *can
|
|
const DBC *dbc
|
|
map[string, uint32_t] msg_name_to_address
|
|
map[uint32_t, string] address_to_msg_name
|
|
vector[SignalValue] can_values
|
|
bool test_mode_enabled
|
|
|
|
cdef public:
|
|
string dbc_name
|
|
dict vl
|
|
dict ts
|
|
bool can_valid
|
|
int can_invalid_cnt
|
|
|
|
def __init__(self, dbc_name, signals, checks=None, bus=0):
|
|
if checks is None:
|
|
checks = []
|
|
|
|
self.can_valid = True
|
|
self.dbc_name = dbc_name
|
|
self.dbc = dbc_lookup(dbc_name)
|
|
self.vl = {}
|
|
self.ts = {}
|
|
|
|
self.can_invalid_cnt = CAN_INVALID_CNT
|
|
|
|
num_msgs = self.dbc[0].num_msgs
|
|
for i in range(num_msgs):
|
|
msg = self.dbc[0].msgs[i]
|
|
name = msg.name.decode('utf8')
|
|
|
|
self.msg_name_to_address[name] = msg.address
|
|
self.address_to_msg_name[msg.address] = name
|
|
self.vl[msg.address] = {}
|
|
self.vl[name] = {}
|
|
self.ts[msg.address] = {}
|
|
self.ts[name] = {}
|
|
|
|
# Convert message names into addresses
|
|
for i in range(len(signals)):
|
|
s = signals[i]
|
|
if not isinstance(s[1], numbers.Number):
|
|
name = s[1].encode('utf8')
|
|
s = (s[0], self.msg_name_to_address[name], s[2])
|
|
signals[i] = s
|
|
|
|
for i in range(len(checks)):
|
|
c = checks[i]
|
|
if not isinstance(c[0], numbers.Number):
|
|
name = c[0].encode('utf8')
|
|
c = (self.msg_name_to_address[name], c[1])
|
|
checks[i] = c
|
|
|
|
cdef vector[SignalParseOptions] signal_options_v
|
|
cdef SignalParseOptions spo
|
|
for sig_name, sig_address, sig_default in signals:
|
|
spo.address = sig_address
|
|
spo.name = sig_name
|
|
spo.default_value = sig_default
|
|
signal_options_v.push_back(spo)
|
|
|
|
message_options = dict((address, 0) for _, address, _ in signals)
|
|
message_options.update(dict(checks))
|
|
|
|
cdef vector[MessageParseOptions] message_options_v
|
|
cdef MessageParseOptions mpo
|
|
for msg_address, freq in message_options.items():
|
|
mpo.address = msg_address
|
|
mpo.check_frequency = freq
|
|
message_options_v.push_back(mpo)
|
|
|
|
self.can = new cpp_CANParser(bus, dbc_name, message_options_v, signal_options_v)
|
|
self.update_vl()
|
|
|
|
cdef unordered_set[uint32_t] update_vl(self):
|
|
cdef string sig_name
|
|
cdef unordered_set[uint32_t] updated_val
|
|
|
|
can_values = self.can.query_latest()
|
|
valid = self.can.can_valid
|
|
|
|
# Update invalid flag
|
|
self.can_invalid_cnt += 1
|
|
if valid:
|
|
self.can_invalid_cnt = 0
|
|
self.can_valid = self.can_invalid_cnt < CAN_INVALID_CNT
|
|
|
|
|
|
for cv in can_values:
|
|
# Cast char * directly to unicde
|
|
name = <unicode>self.address_to_msg_name[cv.address].c_str()
|
|
cv_name = <unicode>cv.name
|
|
|
|
self.vl[cv.address][cv_name] = cv.value
|
|
self.ts[cv.address][cv_name] = cv.ts
|
|
|
|
self.vl[name][cv_name] = cv.value
|
|
self.ts[name][cv_name] = cv.ts
|
|
|
|
updated_val.insert(cv.address)
|
|
|
|
return updated_val
|
|
|
|
def update_string(self, dat):
|
|
self.can.update_string(dat)
|
|
return self.update_vl()
|
|
|
|
def update_strings(self, strings):
|
|
updated_vals = set()
|
|
|
|
for s in strings:
|
|
updated_val = self.update_string(s)
|
|
updated_vals.update(updated_val)
|
|
|
|
return updated_vals
|
|
|