Source code for spinnman.model.version_info

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import re
import struct
from time import localtime, asctime
from six import raise_from
from spinnman.exceptions import SpinnmanInvalidParameterException

_VERSION_PATTERN = struct.Struct("<BBBBHHI")


[docs]class VersionInfo(object): """ Decodes SC&MP/SARK version information as returned by the SVER command. """ __slots__ = [ "_build_date", "_hardware", "_name", "_physical_cpu_id", "_version_number", "_version_string", "_x", "_y", "_p"] def __init__(self, version_data, offset=0): """ :param version_data: \ bytes from an SCP packet containing version information :param offset: the offset in the bytes from an SCP packet containing\ version information :type version_data: bytearray :raise spinnman.exceptions.SpinnmanInvalidParameterException: \ If the message does not contain valid version information """ (self._p, self._physical_cpu_id, self._y, self._x, _, version_no, self._build_date) = _VERSION_PATTERN.unpack_from( memoryview(version_data), offset) version_data = version_data[offset + 12:-1].decode("utf-8") if version_no < 0xFFFF: try: self._version_number = (version_no // 100, version_no % 100, 0) self._name, self._hardware = version_data.split("/") self._version_string = version_data except ValueError as exception: raise_from(SpinnmanInvalidParameterException( "version_data", version_data, "Incorrect format: {}".format(exception)), exception) else: name_hardware, _, version = version_data.partition("\0") self._version_string = version matches = re.match(r"(\d+)\.(\d+)\.(\d+)", version) if matches is None: raise SpinnmanInvalidParameterException( "version", version, "Cannot be parsed") self._version_number = tuple(map(int, matches.group(1, 2, 3))) self._name, self._hardware = name_hardware.rstrip("\0").split("/") @property def name(self): """ The name of the software. :return: The name :rtype: str """ return self._name @property def version_number(self): """ The version number of the software. :return: The version :rtype: tuple(int, int, int) """ return self._version_number @property def hardware(self): """ The hardware being run on. :return: The hardware :rtype: str """ return self._hardware @property def x(self): """ The x-coordinate of the chip where the information was obtained. :return: the x-coordinate :rtype: int """ return self._x @property def y(self): """ The y-coordinate of the chip where the information was obtained. :return: The y-coordinate :rtype: int """ return self._y @property def p(self): """ The processor ID of the processor where the information was\ obtained. :return: the processor ID :rtype: int """ return self._p @property def build_date(self): """ The build date of the software. :return: The number of seconds since 1st January 1970 :rtype: int """ return self._build_date @property def version_string(self): """ The version information as text. :return: The version information :rtype: str """ return self._version_string def __str__(self): return "[Version: {} {} at {}:{}:{}:{} (built {})]".format( self._name, self._version_string, self._hardware, self._x, self._y, self._p, asctime(localtime(self._build_date)))