MessageUDP
Summary
Represents a UDP (User Datagram Protocol) message object.
- Methods
- Properties
- Events
Structure
- class MessageUDP
- capture(filter: Filter = None) MessageUDP
Matches any message with the same protocol.
- Parameters
filter (
Filter
) – Filter to use to narrow down packets to capture- Returns
Listens to the bus until a message is received and returns this first message
- Return type
- capture(timeout: int32, filter: Filter = None) MessageUDP
Waits for the first message having the same protocol that the sent message without verify the IP address and the port between send and respond message and return it. A timeout is specified to guarantee that the script can continue if no message is captured in a certain time interval.
- Parameters
- Returns
First message captured from the bus or
None
in case no message is received.- Return type
- capture_list(timeout: int32, filter: Filter = None) IReadOnlyList[MessageUDP]
Waits for any response having the same protocol that the sent message without verify the IP address and the port between send and respond message and return them all as a list. A timeout is specified to guarantee that the script can continue if no message is received in a certain time interval.
- Parameters
- Returns
List of messages captured from the bus during a given period of time.
- Return type
- close_writer()
Closes the file previously created with
open_writer(file)
.
- decode_as_doip() IMessageDiagBasic
Tries to decode the payload of the UDP message as a DOIP packet.
- Returns
SOME/IP-SD message if the payload could be decoded as a SOME/IP-SD message,
None
value if not.- Return type
- decode_as_someip() MessageSomeIP
Tries to decode the payload of the UDP message as a SOME/IP packet (SOME/IP-SD packets are not considered)
- Returns
SOME/IP message if the payload could be decoded as a SOME/IP message,
None
value if not.- Return type
- decode_as_someip_sd() MessageSomeIPSD
Tries to decode the payload of the UDP message as a SOME/IP-SD packet.
- Returns
SOME/IP-SD message if the payload could be decoded as a SOME/IP-SD message,
None
value if not.- Return type
- get_hex_bytes() str
Converts the payload of the message from decimal to hex and outputs it to a string of bytes.
- Returns
Payload of message in hex bytes.
- Return type
- hex_view() str
Allows to visualize messages in hexadecimal format.
- Returns
Hexadecimal representation of the whole message.
- Return type
- is_segmented() bool
Checks if the message is segmented.
- Returns
True
if the message is segmented.False
if not- Return type
- open_writer(file: str, fileFormat: FILEFORMAT or None = None)
Creates a PCAP or PCAPNG file for writing the received messages. If the file already exists, it will be overwritten (old file data will be lost). Use the
store()
method to record received messages into the file.- Parameters
file (
str
) – Absolute path of the file where the messages will be storedfileFormat (
FILEFORMAT
or None) – Obsolete, you don't need to specify this argument anymore
- receive() MessageUDP
Matches a response for the used message.
- Returns
Listens to the bus until a message is received and returns this first message
- Return type
- receive(timeout: int32) MessageUDP
Waits for the first response having the IP address destination equals to the IP address source of the sent message and return it. A timeout is specified to guarantee that the script can continue if no message is received in a certain time interval.
- Parameters
timeout (
int32
) – Max time in milliseconds to wait for the response.- Returns
First message received from the bus or
None
in case no message is received.- Return type
- receive_list(timeout: int32) IReadOnlyList[MessageUDP]
Waits for any response having the IP address destination equals to the IP address source of sent message and return them all as a list. A timeout is specified to guarantee that the script can continue if no message is received in a certain time interval.
- Parameters
timeout (
int32
) – Max time in milliseconds to wait for the response.- Returns
List of messages received from the bus during a given period of time.
- Return type
- send() bool
Sends the message (the one used to call the method) through the Ethernet bus.
- Returns
Returns
True
if the message is sent successfully. Otherwise, an exception will be thrown.- Return type
- send_receive(timeout: int32 = 1000) MessageUDP
Sends the message (the one used to call the method) through the Ethernet bus and waits for a possible response, i.e. a message from the target address to our own address. It is possible to specify a timeout to guarantee that the script can continue if no response is detected in a certain time interval.
- Parameters
timeout (
int32
) – (optional) Max time in milliseconds to wait for the response. Default1
second- Returns
First message detected from the destination address to our address. This can be the response to the message sent but it is not
100%
guaranteed; additional traffic can be captured before this expected response and thus returned.- Return type
- send_receive_list(timeout: int32) IReadOnlyList[MessageUDP]
Sends the message through the Ethernet bus, listens for a while and returns a list with all the messages captured in that period. It is possible to specify a timeout to guarantee that the script can continue if no response is detected in a certain time interval.
- Parameters
timeout (
int32
) – Max time in milliseconds to wait for the response.- Returns
List of messages detected from the destination address to our address. This can be the response to the message sent but it is not
100%
guaranteed; additional traffic can be captured before this expected response and thus returned.- Return type
- set_all_bytes(all_packet: Array[uint8]) bool
Sets the content of the whole message from Ethernet layer, byte per byte.
- start_capture(filter: Filter = None)
Used for online capture(capturing network traffic from an adapter). Used with callback function(on_message_received()) and stop_capture() method.
- Parameters
filter (
Filter
) – Filter to use to narrow down packets to capture
- start_capture(file: str, wait_eof: bool, filter: Filter = None)
Used for offline capture(reading packets from pcap or asc file). Used with callback function(on_message_received()) and stop_capture() method.
- start_responding_machine()
With this function, it is possible to simulate an ECU. It captures packets and, for every received message, it calls is_request callback. If it returns
True
, then it calls the make_reply callback
- stop_capture()
Stops capturing Ethernet messages, either directly from the bus or from a trace file (depending on the version used to start the capture).
- stop_responding_machine()
Stops the responding machine activated with start_responding_machine.
- store(file: str)
Writes the message into the trace file.
- Parameters
file (
str
) – Path of the file where the messages will be stored.
- store()
Writes the message into the trace file opened with
open_writer(file)
.
- tree_view() str
Gives the tree view of the message.
- Returns
Tree view representation of the message.
- Return type
- @on_capture_start
The event is triggered when the capture of Ethernet messages is started. See start_capture .
- @on_capture_stop
The event is triggered when the capture of Ethernet messages is stopped. See stop_capture .
- @on_message_received(message: MessageUDP)
Event is triggered every time a message is read from the Ethernet bus or a trace file. See start_capture.
- Parameters
message (
MessageUDP
) – The message object being handled.
- capture_info
General information about the context in which the message was captured from.
None
if the message was not captured- Type
- ethernet_header
Object containing all the information from the Ethernet header like the source and destination MAC addresses of the message.
- Type
- frame_number
Number of the frame received, in the context of all the ethernet traffic captured.
- Type
- ip_header
Object containing all the information from the IP header like the source and destination IP addresses of the message.
- Type
- ipv4_header
Object containing all the information from the IPV4 header.
- Type
- ipv6_header
Object containing all the information from the IPV6 header.
- Type
- network_protocol
Network Protocol of the message.
- Type
- transport_header
Object containing all the information from the transport header (usually TCP or UDP) like the source and destination ports.
- Type
- transport_protocol
Object containing all the information from the transport protocol (usually TCP or UDP) like the source and destination ports.
- Type
- vlan_tag
Object containing all VLAN info.
- Type