Source code for spinn_utilities.socket_address

# Copyright (c) 2017 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from spinn_utilities.config_holder import get_config_int, get_config_str


[docs]class SocketAddress(object): """ Data holder for a socket interface for notification protocol. """ __slots__ = [ "_listen_port", "_notify_host_name", "_notify_port_no", "__hash"] def __init__(self, notify_host_name=None, notify_port_no=None, listen_port=None): """ :param notify_host_name: Host to talk to tell that the database (and application) is ready. :type notify_host_name: str or None :param notify_port_no: Port to talk to tell that the database (and application) is ready. :type notify_port_no: int or None :param listen_port: Port on which to listen for an acknowledgement that the simulation should start. :type listen_port: int or None """ if notify_port_no is None: notify_port_no = get_config_int("Database", "notify_port") else: notify_port_no = int(notify_port_no) if notify_host_name is None: notify_host_name = get_config_str("Database", "notify_hostname") elif notify_host_name == "0.0.0.0": notify_host_name = "localhost" else: notify_host_name = str(notify_host_name) if listen_port is None: listen_port = get_config_int("Database", "listen_port") else: listen_port = int(listen_port) self._notify_host_name = notify_host_name self._notify_port_no = notify_port_no self._listen_port = listen_port self.__hash = None @property def notify_host_name(self): """ The host name or IP address to send a notification message to. """ return self._notify_host_name @property def notify_port_no(self): """ The UDP port number to send a notification message to. """ return self._notify_port_no @property def listen_port(self): """ The port to listen to for responses. """ return self._listen_port def __eq__(self, other): if not isinstance(other, SocketAddress): return False return (self._notify_host_name == other.notify_host_name and self._notify_port_no == other.notify_port_no and self._listen_port == other.listen_port) def __ne__(self, other): return not self.__eq__(other) def __hash__(self): if self.__hash is None: self.__hash = hash((self._listen_port, self._notify_host_name, self._notify_port_no)) return self.__hash def __repr__(self): return "SocketAddress({}, {}, {})".format( repr(self._notify_host_name), self._notify_port_no, self._listen_port)