def __init__(self, export_options=False, file_path=False, ignore=False): 
     AbstractInterpreter.__init__(self, export_options, file_path)
     if ignore: return
     
     # CSV Output
     self.ecu_ids = RefList()        
     self.first = True
Exemplo n.º 2
0
    def __init__(self, export_options=False, file_path=False): 
        AbstractInterpreter.__init__(self, export_options, file_path)
        
        self.file_path = file_path
        self._init_csv(file_path)
        self.known = []
        
        self._bus_ids = []
        self.bytes_trans = {}
        self.last_time = 0
        
        # counting msgs
        self.no_simple_msgs = {}  # depending on stream
        self.no_auth_msgs = {}  # per ECU
        self.no_str_msgs = {}  # per Stream

        # countings segments
        self.no_simple_msgs_seg = {}  # depending on stream
        self.no_auth_msgs_seg = {}  # per ECU
        self.no_str_msgs_seg = {}  # per Stream
        
        # counting bytes 
        self.no_simple_msgs_bytes = {}  # depending on stream
        self.no_auth_msgs_bytes = {}  # per ECU
        self.no_str_msgs_bytes = {}  # per Stream
Exemplo n.º 3
0
    def __init__(self, export_options=False, file_path=False):
        AbstractInterpreter.__init__(self, export_options, file_path)

        self.file_path = file_path
        self._init_csv(file_path)
        self.known = []

        self._bus_ids = []
        self.bytes_trans = {}
        self.last_time = 0

        # counting msgs
        self.no_simple_msgs = {}  # depending on stream
        self.no_auth_msgs = {}  # per ECU
        self.no_str_msgs = {}  # per Stream

        # countings segments
        self.no_simple_msgs_seg = {}  # depending on stream
        self.no_auth_msgs_seg = {}  # per ECU
        self.no_str_msgs_seg = {}  # per Stream

        # counting bytes
        self.no_simple_msgs_bytes = {}  # depending on stream
        self.no_auth_msgs_bytes = {}  # per ECU
        self.no_str_msgs_bytes = {}  # per Stream
Exemplo n.º 4
0
    def __init__(self, export_options=False, file_path=False, ignore=False):
        AbstractInterpreter.__init__(self, export_options, file_path)
        if ignore: return

        # CSV Output
        self.ecu_ids = RefList()
        self.first = True
Exemplo n.º 5
0
    def __init__(self, export_options=False, file_path=False, ignore=False):
        AbstractInterpreter.__init__(self, export_options, file_path)
        if ignore: return

        # CSV Output
        self._file_path = file_path
        self.core = CheckpointInterpreterCore()
        self.core.init_csv(self._file_path)
Exemplo n.º 6
0
 def __init__(self, export_options=False, file_path=False, ignore=False): 
     AbstractInterpreter.__init__(self, export_options, file_path)
     if ignore: return
     
     # CSV Output
     self._file_path = file_path
     self.core = CheckpointInterpreterCore()      
     self.core.init_csv(self._file_path)
Exemplo n.º 7
0
    def __init__(self, export_options=False, file_path=False):
        AbstractInterpreter.__init__(self, export_options, file_path)

        self.file_path = file_path
        self.init_csv(file_path)
Exemplo n.º 8
0
 def __init__(self, export_options=False, file_path=False): 
     AbstractInterpreter.__init__(self, export_options, file_path)
     
     self.file_path = file_path
     self.init_csv(file_path)