Source code for spinnman.messages.scp.impl.iptag_get

from spinnman.messages.scp import SCPRequestHeader
from spinnman.messages.scp.abstract_messages \
    import AbstractSCPRequest, AbstractSCPResponse
from spinnman.messages.scp.enums import SCPCommand, SCPResult
from spinnman.messages.sdp import SDPFlag, SDPHeader
from spinnman.exceptions import SpinnmanUnexpectedResponseCodeException

import struct


_IPTAG_GET = 2


[docs]class IPTagGet(AbstractSCPRequest): """ An SCP Request to get an IP tag """ def __init__(self, x, y, tag): """ :param x: The x-coordinate of a chip, between 0 and 255 :type x: int :param y: The y-coordinate of a chip, between 0 and 255 :type y: int :param tag: The tag to get details of, between 0 and 7 :type tag: int :param tag: The tag, between 0 and 7 :type tag: int """ super(IPTagGet, self).__init__( SDPHeader( flags=SDPFlag.REPLY_EXPECTED, destination_port=0, destination_cpu=0, destination_chip_x=x, destination_chip_y=y), SCPRequestHeader(command=SCPCommand.CMD_IPTAG), argument_1=(_IPTAG_GET << 16) | tag, argument_2=1)
[docs] def get_scp_response(self): return _SCPIPTagGetResponse()
class _SCPIPTagGetResponse(AbstractSCPResponse): """ An SCP response to a request for an IP tags """ def __init__(self): """ """ super(_SCPIPTagGetResponse, self).__init__() self._ip_address = None self._mac_address = None self._port = None self._timeout = None self._flags = None self._count = None self._rx_port = None self._spin_chip_y = None self._spin_chip_x = None self._spin_port = None def read_data_bytestring(self, data, offset): """ See\ :py:meth:`spinnman.messages.scp.abstract_scp_response.AbstractSCPResponse.read_data_bytestring` """ result = self.scp_response_header.result if result != SCPResult.RC_OK: raise SpinnmanUnexpectedResponseCodeException( "Get IP Tag Info", "CMD_IPTAG", result.name) (ip_address, mac_address, self._port, self._timeout, self._flags, self._count, self._rx_port, self._spin_chip_y, self._spin_chip_x, processor_and_port) = struct.unpack_from( "<4s6s3HIH3B", data, offset) self._ip_address = bytearray(ip_address) self._mac_address = bytearray(mac_address) self._spin_port = (processor_and_port >> 5) & 0x7 self._spin_cpu = processor_and_port & 0x1F @property def ip_address(self): """ The IP address of the tag, as a bytearray of 4 bytes :rtype: bytearray """ return self._ip_address @property def mac_address(self): """ The MAC address of the tag, as a bytearray of 6 bytes :rtype: bytearray """ return self._mac_address @property def port(self): """ The port of the tag :rtype: int """ return self._port @property def timeout(self): """ The timeout of the tag :rtype: int """ return self._timeout @property def flags(self): """ The flags of the tag :rtype: int """ return self._flags @property def in_use(self): """ True if the tag is marked as being in use :rtype: bool """ return (self._flags & 0x8000) > 0 @property def is_temporary(self): """ True if the tag is temporary :rtype: bool """ return (self._flags & 0x4000) > 0 @property def is_arp(self): """ True if the tag is in the ARP state (where the MAC address is\ being looked up - transient state so unlikely) :rtype: bool """ return (self._flags & 0x2000) > 0 @property def is_reverse(self): """ True if the tag is a reverse tag :rtype: bool """ return (self._flags & 0x0200) > 0 @property def strip_sdp(self): """ True if the tag is to strip sdp :rtype: bool """ return (self._flags & 0x0100) > 0 @property def count(self): """ The count of the number of packets that have been sent with the tag :rtype: int """ return self._count @property def rx_port(self): """ The receive port of the tag :rtype: int """ return self._rx_port @property def spin_chip_x(self): """ The x-coordinate of the chip on which the tag is defined :rtype: int """ return self._spin_chip_x @property def spin_chip_y(self): """ The y-coordinate of the chip on which the tag is defined :rtype: int """ return self._spin_chip_y @property def spin_port(self): """ The spin-port of the ip tag :rtype: int """ return self._spin_port @property def spin_cpu(self): """ The cpu id of the ip tag :rtype: int """ return self._spin_cpu