spinnman.connections.udp_packet_connections package¶
Module contents¶
- class spinnman.connections.udp_packet_connections.BMPConnection(connection_data: BMPConnectionData)¶
Bases:
UDPConnection,AbstractSCPConnectionA BMP connection which supports queries to the BMP of a SpiNNaker machine.
- Parameters:
connection_data – The description of what to connect to.
- get_scp_data(scp_request: AbstractSCPRequest) bytes[source]¶
- Returns:
the data of an SCP request as it would be sent down this connection.
- receive_scp_response(timeout: float | None = 1.0) Tuple[SCPResult, int, bytes, int][source]¶
Receives an SCP response from this connection. Blocks until a message has been received, or a timeout occurs.
- Parameters:
timeout – The time in seconds to wait for the message to arrive; if None, will wait forever, or until the connection is closed
- Returns:
The SCP result, the sequence number, the data of the response and the offset at which the data starts (i.e., where the SDP header starts).
- Raises:
SpinnmanIOException – If there is an error receiving the message
SpinnmanTimeoutException – If there is a timeout before a message is received
- class spinnman.connections.udp_packet_connections.BootConnection(remote_host: str | None = None)¶
Bases:
UDPConnectionA connection to the SpiNNaker board that uses UDP to for booting.
- Parameters:
remote_host – The remote host name or IP address to send packets to. If not specified, the socket will be available for listening only, and will throw and exception if used for sending
- Raises:
SpinnmanIOException – If there is an error setting up the communication channel
- receive_boot_message(timeout: float | None = None) SpinnakerBootMessage[source]¶
Receives a boot message from this connection. Blocks until a message has been received, or a timeout occurs.
- Parameters:
timeout – The time in seconds to wait for the message to arrive; if not specified, will wait forever, or until the connection is closed.
- Returns:
a boot message
- Raises:
SpinnmanIOException – If there is an error receiving the message
SpinnmanTimeoutException – If there is a timeout before a message is received
SpinnmanInvalidPacketException – If the received packet is not a valid SpiNNaker boot message
SpinnmanInvalidParameterException – If one of the fields of the SpiNNaker boot message is invalid
- send_boot_message(boot_message: SpinnakerBootMessage) None[source]¶
Sends a SpiNNaker boot message using this connection.
- Parameters:
boot_message – The message to be sent
- Raises:
SpinnmanIOException – If there is an error sending the message
- class spinnman.connections.udp_packet_connections.EIEIOConnection(local_host: str | None = None, local_port: int | None = None, remote_host: str | None = None, remote_port: int | None = None)¶
Bases:
UDPConnection,Listenable[AbstractEIEIOMessage]A UDP connection for sending and receiving raw EIEIO messages.
- Parameters:
local_host – The local host name or IP address to bind to. If not specified defaults to bind to all interfaces, unless remote_host is specified, in which case binding is done to the IP address that will be used to send packets
local_port – The local port to bind to, between 1025 and 65535. If not specified, defaults to a random unused local port
remote_host – The remote host name or IP address to send packets to. If not specified, the socket will be available for listening only, and will throw and exception if used for sending
remote_port – The remote port to send packets to. If remote_host is None, this is ignored. If remote_host is specified specified, this must also be specified for the connection to allow sending
- Raises:
SpinnmanIOException – If there is an error setting up the communication channel
- get_receive_method() Callable[[], AbstractEIEIOMessage][source]¶
- Returns:
The method that receives this connection.
- receive_eieio_message(timeout: float | None = None) AbstractEIEIOMessage[source]¶
Receives an EIEIO message from this connection. Blocks until a message has been received, or a timeout occurs.
- Parameters:
timeout – The time in seconds to wait for the message to arrive; if not specified, will wait forever, or until the connection is closed
- Returns:
an EIEIO message
- Raises:
SpinnmanIOException – If there is an error receiving the message.
SpinnmanTimeoutException – If there is a timeout before a message is received.
SpinnmanInvalidPacketException – If the received packet is not a valid EIEIO message.
SpinnmanInvalidParameterException – If one of the fields of the EIEIO message is invalid.
- send_eieio_message(eieio_message: AbstractEIEIOMessage) None[source]¶
Sends an EIEIO message down this connection.
- Parameters:
eieio_message – The EIEIO message to be sent
- Raises:
SpinnmanIOException – If there is an error sending the message
- class spinnman.connections.udp_packet_connections.IPAddressesConnection(local_host: str | None = None, local_port: int = 54321)¶
Bases:
UDPConnectionA connection that detects any UDP packet that is transmitted by SpiNNaker boards prior to boot.
- Parameters:
local_host
local_port
- class spinnman.connections.udp_packet_connections.SCAMPConnection(chip_x: int = 255, chip_y: int = 255, local_host: str | None = None, local_port: int | None = None, remote_host: str | None = None, remote_port: int | None = None)¶
Bases:
SDPConnection,AbstractSCPConnectionA UDP connection to SCAMP on the board.
- Parameters:
chip_x – The x-coordinate of the chip on the board with this remote_host
chip_y – The y-coordinate of the chip on the board with this remote_host
local_host – The optional IP address or host name of the local interface to listen on
local_port – The optional local port to listen on
remote_host – The optional remote host name or IP address to send messages to. If not specified, sending will not be possible using this connection
remote_port – The optional remote port number to send messages to. If not specified, sending will not be possible using this connection
- property chip_x: int¶
The X-coordinate of the chip at which messages sent down this connection will arrive at first.
- property chip_y: int¶
The Y-coordinate of the chip at which messages sent down this connection will arrive at first.
- get_scp_data(scp_request: AbstractSCPRequest, x: int | None = None, y: int | None = None) bytes[source]¶
- Returns:
the data of an SCP request as it would be sent down this connection.
- Parameters:
x – Optional: x-coordinate of where to send to
y – Optional: y-coordinate of where to send to
- receive_scp_response(timeout: float | None = 1.0) Tuple[SCPResult, int, bytes, int][source]¶
Receives an SCP response from this connection. Blocks until a message has been received, or a timeout occurs.
- Parameters:
timeout – The time in seconds to wait for the message to arrive; if None, will wait forever, or until the connection is closed
- Returns:
The SCP result, the sequence number, the data of the response and the offset at which the data starts (i.e., where the SDP header starts).
- Raises:
SpinnmanIOException – If there is an error receiving the message
SpinnmanTimeoutException – If there is a timeout before a message is received
- receive_scp_response_with_address(timeout: float = 1.0) Tuple[SCPResult, int, bytes, int, str, int][source]¶
Receive data from the connection along with the address where the data was received from.
- Parameters:
timeout – The timeout, or None to wait forever
- Returns:
A tuple of SCPResult, sequence number, the data received the number2, IP address and port used.
- class spinnman.connections.udp_packet_connections.SDPConnection(chip_x: int, chip_y: int, local_host: str | None = None, local_port: int | None = None, remote_host: str | None = None, remote_port: int | None = None)¶
Bases:
UDPConnection,Listenable[SDPMessage]A connection that talks SpiNNaker Datagram Protocol.
- Parameters:
chip_x – The optional x-coordinate of the chip at the remote end of the connection. If not specified, it will not be possible to send SDP messages that require a response with this connection.
chip_y – The optional y-coordinate of the chip at the remote end of the connection. If not specified, it will not be possible to send SDP messages that require a response with this connection.
local_host – The optional IP address or host name of the local interface to listen on
local_port – The optional local port to listen on
remote_host – The optional remote host name or IP address to send messages to. If not specified, sending will not be possible using this connection
remote_port – The optional remote port number to send messages to. If not specified, sending will not be possible using this connection
- get_receive_method() Callable[[], SDPMessage][source]¶
- Returns:
The method that receives this connection.
- receive_sdp_message(timeout: float | None = None) SDPMessage[source]¶
Receives an SDP message from this connection. Blocks until the message has been received, or a timeout occurs.
- Parameters:
timeout – The time in seconds to wait for the message to arrive; if not specified, will wait forever, or until the connection is closed.
- Returns:
The received SDP message
- Raises:
SpinnmanIOException – If there is an error receiving the message
SpinnmanTimeoutException – If there is a timeout before a message is received
SpinnmanInvalidPacketException – If the received packet is not a valid SDP message
SpinnmanInvalidParameterException – If one of the fields of the SDP message is invalid
- send_sdp_message(sdp_message: SDPMessage) None[source]¶
Sends an SDP message down this connection.
- Parameters:
sdp_message – The SDP message to be sent
- Raises:
SpinnmanIOException – If there is an error sending the message.
- class spinnman.connections.udp_packet_connections.UDPConnection(local_host: str | None = None, local_port: int | None = None, remote_host: str | None = None, remote_port: int | None = None)¶
Bases:
Connection,Listenable[bytes]A connection that routes messages via UDP to some remote host.
Subclasses of this should be aware that UDP messages may be dropped, reordered, or duplicated, and that there’s no way to tell whether the other end of the connection truly exists except by listening for occasional messages from them. There is also an upper size limit on messages, formally of 64kB, but usually of about 1500 bytes (the typical maximum size of an Ethernet packet); SDP messages have lower maximum lengths.
- Parameters:
local_host – The local host name or IP address to bind to. If not specified defaults to bind to all interfaces, unless remote_host is specified, in which case binding is done to the IP address that will be used to send packets
local_port – The local port to bind to, between 1025 and 65535. If not specified, defaults to a random unused local port
remote_host – The remote host name or IP address to send packets to. If not specified, the socket will be available for listening only, and will throw and exception if used for sending
remote_port – The remote port to send packets to. If remote_host is None, this is ignored. If remote_host is specified specified, this must also be specified for the connection to allow sending
- Raises:
SpinnmanIOException – If there is an error setting up the communication channel
- get_receive_method() Callable[[], bytes][source]¶
- Returns:
The method that receives this connection.
- is_connected() bool[source]¶
Determines if the medium is connected at this point in time.
- Returns:
True if the medium is connected, False otherwise
- Raises:
SpinnmanIOException – If there is an error when determining the connectivity of the medium.
- is_ready_to_receive(timeout: float = 0) bool[source]¶
Determines if there is an SCP packet to be read without blocking.
- Parameters:
timeout – The time to wait before returning if the connection is not ready
- Returns:
True if there is an SCP packet to be read
- property local_ip_address: str¶
The local IP address to which the connection is bound, as a dotted string, e.g., 0.0.0.0.
- receive(timeout: float | None = None) bytes[source]¶
Receive data from the connection.
- Parameters:
timeout – The timeout in seconds, or None to wait forever
- Returns:
The data received as a byte-string
- Raises:
SpinnmanTimeoutException – If a timeout occurs before any data is received
SpinnmanIOException – If an error occurs receiving the data
- receive_with_address(timeout: float | None = None) Tuple[bytes, Tuple[str, int]][source]¶
Receive data from the connection along with the address where the data was received from.
- Parameters:
timeout – The timeout, or None to wait forever
- Returns:
A tuple of the data received and a tuple of the (address, port) received from
- Raises:
SpinnmanTimeoutException – If a timeout occurs before any data is received
SpinnmanIOException – If an error occurs receiving the data
- property remote_ip_address: str | None¶
The remote IP address to which the connection is connected, or None if not connected remotely.
- property remote_port: int | None¶
The remote port number to which the connection is connected, or None if not connected remotely.
- send(data: bytes) None[source]¶
Send data down this connection.
- Parameters:
data – The data to be sent
- Raises:
SpinnmanIOException – If there is an error sending the data
- spinnman.connections.udp_packet_connections.update_sdp_header_for_udp_send(sdp_header: SDPHeader, source_x: int, source_y: int) None¶
Apply defaults to the SDP header for sending over UDP.
Deprecated since version 7.0: Use
SDPHeader.update_for_send()instead.- Parameters:
sdp_header – The SDP header to update
source_x – Where the packet is deemed to originate: X coordinate
source_y – Where the packet is deemed to originate: Y coordinate