Source code for uds.packet.can_packet_record

"""CAN bus specific implementation of UDS packets records."""

__all__ = ["CanPacketRecord"]

from typing import Union, Any, Optional

from can import Message as PythonCanMessage

from uds.utilities import RawByte, RawBytesTuple, TimeStamp, InconsistentArgumentsError
from uds.transmission_attributes import AddressingType, AddressingTypeAlias, TransmissionDirectionAlias
from uds.can import CanAddressingFormat, CanAddressingFormatAlias, CanAddressingInformationHandler, \
    CanDlcHandler, CanIdHandler, CanFlowStatusAlias
from .can_packet import CanPacket
from .can_packet_type import CanPacketType, CanPacketTypeAlias
from .abstract_packet import AbstractUdsPacketRecord


CanFrameAlias = Union[PythonCanMessage]
"""Alias of supported CAN frames objects."""


[docs]class CanPacketRecord(AbstractUdsPacketRecord): """ Definition of a CAN packet Record. Objects of this class act as a storage for historic information about transmitted or received :ref:`CAN packet <knowledge-base-uds-can-packet>`. """ def __init__(self, frame: CanFrameAlias, direction: TransmissionDirectionAlias, addressing_type: AddressingTypeAlias, addressing_format: CanAddressingFormatAlias, transmission_time: TimeStamp) -> None: """ Create a record of a historic information about a CAN packet that was either received or transmitted. :param frame: Either received or transmitted CAN frame that carried this CAN Packet. :param direction: Information whether this packet was transmitted or received. :param addressing_type: Addressing type for which this CAN packet is relevant. :param addressing_format: CAN addressing format that this CAN packet used. :param transmission_time: Time stamp when this packet was fully transmitted on a CAN bus. """ AddressingType.validate_member(addressing_type) CanAddressingFormat.validate_member(addressing_format) super().__init__(frame=frame, direction=direction, transmission_time=transmission_time) self.__addressing_type = AddressingType(addressing_type) self.__addressing_format = CanAddressingFormat(addressing_format) self.__packet_type: CanPacketType self.__target_address: Optional[RawByte] self.__source_address: Optional[RawByte] self.__address_extension: Optional[RawByte] self.__assess_packet_type() self.__assess_ai_attributes() @property def raw_frame_data(self) -> RawBytesTuple: """Raw data bytes of a frame that carried this CAN packet.""" if isinstance(self.frame, PythonCanMessage): return tuple(self.frame.data) raise NotImplementedError(f"Missing implementation for: {self.frame}") @property def addressing_type(self) -> AddressingTypeAlias: """Addressing type over which this CAN packet was transmitted.""" return self.__addressing_type @property def addressing_format(self) -> CanAddressingFormatAlias: """CAN addressing format used by this CAN packet.""" return self.__addressing_format @property def packet_type(self) -> CanPacketTypeAlias: """CAN packet type value - N_PCI value of this N_PDU.""" return self.__packet_type @property def payload(self) -> Optional[RawBytesTuple]: """Payload bytes of a diagnostic message carried by this CAN packet.""" return CanPacket.payload.fget(self) # type: ignore @property def data_length(self) -> Optional[int]: """Payload bytes number of a diagnostic message which was carried by this CAN packet.""" return CanPacket.data_length.fget(self) # type: ignore @property def can_id(self) -> int: """CAN Identifier (CAN ID) of a CAN Frame that carries this CAN packet.""" if isinstance(self.frame, PythonCanMessage): return self.frame.arbitration_id raise NotImplementedError(f"Missing implementation for: {self.frame}") @property def dlc(self) -> int: """Value of Data Length Code (DLC) of a CAN Frame that carries this CAN packet.""" return CanDlcHandler.encode_dlc(len(self.raw_frame_data)) @property def target_address(self) -> Optional[RawByte]: """ Target Address (TA) value of this CAN Packet. Target Address value is used with following :ref:`addressing formats <knowledge-base-can-addressing>`: - :ref:`Normal Fixed Addressing <knowledge-base-can-normal-fixed-addressing>` - :ref:`Extended Addressing <knowledge-base-can-extended-addressing>` - :ref:`Mixed 29-bit Addressing <knowledge-base-can-mixed-29-bit-addressing>` None in other cases. """ return self.__target_address @property def source_address(self) -> Optional[RawByte]: """ Source Address (SA) value of this CAN Packet. Source Address value is used with following :ref:`addressing formats <knowledge-base-can-addressing>`: - :ref:`Normal Fixed Addressing <knowledge-base-can-normal-fixed-addressing>` - :ref:`Mixed 29-bit Addressing <knowledge-base-can-mixed-29-bit-addressing>` None in other cases. """ return self.__source_address @property def address_extension(self) -> Optional[RawByte]: """ Address Extension (AE) value of this CAN Packet. Address Extension is used with following :ref:`addressing formats <knowledge-base-can-addressing>`: - :ref:`Mixed Addressing <knowledge-base-can-mixed-addressing>` - either: - :ref:`Mixed 11-bit Addressing <knowledge-base-can-mixed-11-bit-addressing>` - :ref:`Mixed 29-bit Addressing <knowledge-base-can-mixed-29-bit-addressing>` None in other cases. """ return self.__address_extension @property def sequence_number(self) -> Optional[int]: """ Sequence Number carried by this CAN packet. :ref:`Sequence Number <knowledge-base-can-sequence-number>` is only provided by packets of following types: - :ref:`Consecutive Frame <knowledge-base-can-consecutive-frame>` None in other cases. """ return CanPacket.sequence_number.fget(self) # type: ignore @property def flow_status(self) -> Optional[CanFlowStatusAlias]: """ Flow Status carried by this CAN packet. :ref:`Flow Status <knowledge-base-can-flow-status>` is only provided by packets of following types: - :ref:`Flow Control <knowledge-base-can-flow-control>` None in other cases. """ return CanPacket.flow_status.fget(self) # type: ignore @property def block_size(self) -> Optional[RawByte]: """ Block Size value carried by this CAN packet. :ref:`Block Size <knowledge-base-can-flow-status>` is only provided by packets of following types: - :ref:`Flow Control <knowledge-base-can-block-size>` None in other cases. """ return CanPacket.block_size.fget(self) # type: ignore @property def st_min(self) -> Optional[RawByte]: """ Separation Time minimum (STmin) value carried by this CAN packet. :ref:`STmin <knowledge-base-can-st-min>` is only provided by packets of following types: - :ref:`Flow Control <knowledge-base-can-block-size>` None in other cases. """ return CanPacket.st_min.fget(self) # type: ignore
[docs] @staticmethod def _validate_frame(value: Any) -> None: """ Validate a CAN frame argument. :param value: Value to validate. :raise TypeError: The frame argument has unsupported. :raise ValueError: Some attribute of the frame argument is missing or its value is unexpected. """ if isinstance(value, PythonCanMessage): CanIdHandler.validate_can_id(value.arbitration_id, extended_can_id=value.is_extended_id) CanDlcHandler.validate_data_bytes_number(len(value.data)) return None raise TypeError(f"Unsupported CAN Frame type was provided. Actual type: {type(value)}")
def __assess_packet_type(self) -> None: """Assess and set value of Packet Type attribute.""" ai_data_bytes = CanAddressingInformationHandler.get_ai_data_bytes_number(self.addressing_format) n_pci_value = self.raw_frame_data[ai_data_bytes] >> 4 CanPacketType.validate_member(n_pci_value) self.__packet_type = CanPacketType(n_pci_value) def __assess_ai_attributes(self) -> None: """ Assess and set values of attributes with Addressing Information. :raise InconsistentArgumentsError: Value of Addressing Type that is already set does not match decoded one. """ ai_data_bytes_number = CanAddressingInformationHandler.get_ai_data_bytes_number(self.addressing_format) ai_info = CanAddressingInformationHandler.decode_ai(addressing_format=self.addressing_format, can_id=self.can_id, ai_data_bytes=self.raw_frame_data[:ai_data_bytes_number]) self.__target_address = ai_info[CanAddressingInformationHandler.TARGET_ADDRESS_NAME] # type: ignore self.__source_address = ai_info[CanAddressingInformationHandler.SOURCE_ADDRESS_NAME] # type: ignore self.__address_extension = ai_info[CanAddressingInformationHandler.ADDRESS_EXTENSION_NAME] # type: ignore if ai_info[CanAddressingInformationHandler.ADDRESSING_TYPE_NAME] not in (self.addressing_type, None): raise InconsistentArgumentsError("Decoded Addressing Type does not match the one that is already set.")