Source code for autopilot.networking.station

import threading
import time
import os
import multiprocessing
import base64
import socket
from copy import copy
from itertools import count
import typing
from typing import Optional, Union

import zmq
from tornado.ioloop import IOLoop
from zmq.eventloop.zmqstream import ZMQStream

from autopilot import prefs
from autopilot.utils.loggers import init_logger
from autopilot.networking.message import Message


[docs]class Station(multiprocessing.Process): """ Independent networking class used for messaging between computers. These objects send and handle :class:`.networking.Message` s by using a dictionary of :attr:`~.networking.Station.listens`, or methods that are called to respond to different types of messages. Each sent message is given an ID, and a thread is spawned to periodically resend it (up until some time-to-live, typically 5 times) until confirmation is received. By default, the only listen these objects have is :meth:`.l_confirm`, which responds to message confirmations. Accordingly, `listens` should be added by using :meth:`dict.update` rather than reassigning the attribute. Station objects can be made with or without a :attr:`~.networking.Station.pusher`, a :class:`zmq.DEALER` socket that connects to the :class:`zmq.ROUTER` socket of an upstream Station object. This class can be instantiated on its own if all of the required arguments are supplied, but the intended pattern of use is to subclass it with any custom ``listen`` methods for handling message types and other logic that would be specific for an agent type that uses it. .. note:: This object will likely be deprecated in v0.5.0, as the gains of a separate messaging process are not as great as the complications caused by having two different kinds of networking object in the system. In the future we will move to having a single type of networking object that can either be spawned as a separate process or as a thread. Args are similar to the documented Attributes, and so only those that differ from attributes are documented here Args: pusher (bool): If ``True``, create a ``zmq.DEALER`` socket connected to ``push_ip``, ``push_port``, and ``push_id``. (Default: ``False``). Attributes: context (:class:`zmq.Context`): zeromq context loop (:class:`tornado.ioloop.IOLoop`): a tornado ioloop pusher (:class:`zmq.Socket`): pusher socket - a dealer socket that connects to other routers push_ip (str): If we have a dealer, IP to push messages to push_port (str): If we have a dealer, port to push messages to push_id (str): :attr:`~zmq.Socket.identity` of the Router we push to listener (:class:`zmq.Socket`): The main router socket to send/recv messages listen_port (str): Port our router listens on logger (:class:`logging.Logger`): Used to log messages and network events. id (str): What are we known as? What do we set our :attr:`~zmq.Socket.identity` as? ip (str): Device IP listens (dict): Dictionary of functions to call for different types of messages. keys match the :attr:`.Message.key`. senders (dict): Identities of other sockets (keys, ie. directly connected) and their state (values) if they keep one push_outbox (dict): Messages that have been sent but have not been confirmed to our :attr:`Station.pusher` send_outbox (dict): Messages that have been sent but have not been confirmed to our :attr:`Station.listener` timers (dict): dict of :class:`threading.Timer` s that will check in on outbox messages msg_counter (:class:`itertools.count`): counter to index our sent messages file_block (:class:`threading.Event`): Event to signal when a file is being received. """ repeat_interval = 5.0 # seconds to wait before retrying messages def __init__(self, id: Optional[str] = None, push_ip: Optional[str] = None, push_port: Optional[int] = None, push_id: Optional[str] = None, pusher: bool = False, listen_port: Optional[int] = None, listens: Optional[typing.Dict[str, typing.Callable]] = None, ): super(Station, self).__init__() # Prefs should be passed by the terminal, if not, try to load from default locatio # init instance attrs that are populated either by a child object or # in run self.context = None self.loop = None # type: Optional[IOLoop] self.push_ip = push_ip self.push_port = push_port self.push_id = push_id.encode('utf-8') if isinstance(push_id, str) else push_id self.pusher = pusher # type: Union[bool, zmq.Socket] self.listen_port = listen_port self.listener = None self.id = id self.repeat_thread = None self.senders = {} self.push_outbox = {} self.send_outbox = {} self.timers = {} self.child = False self.routes = {} self.msgs_received = multiprocessing.Value('i', lock=True) self.msgs_received.value = 0 try: self.ip = self.get_ip() except Exception as e: Warning("Couldn't get IP!: {}".format(e)) self.ip = "" self.file_block = multiprocessing.Event() # to wait for file transfer # number messages as we send them self.msg_counter = count() # we have a few builtin listens if listens is None: listens = {} self.listens = listens self.listens.update({ 'CONFIRM': self.l_confirm, 'STREAM' : self.l_stream, 'KILL' : self.l_kill }) # even tthat signals when we are closing self.closing = multiprocessing.Event() self.closing.clear() def __del__(self): try: self.release() except: pass
[docs] def run(self): """ A :class:`zmq.Context` and :class:`tornado.IOLoop` are spawned, the listener and optionally the pusher are instantiated and connected to :meth:`~.Station.handle_listen` using :meth:`~zmq.eventloop.zmqstream.ZMQStream.on_recv` . The process is kept open by the :class:`tornado.IOLoop` . """ try: self.logger = init_logger(self) # init zmq objects self.context = zmq.Context() self.loop = IOLoop() # Our networking topology is treelike: # each Station object binds one Router to # send and receive messages from its descendants # each Station object may have one Dealer that # connects it with its antecedents. self.listener = self.context.socket(zmq.ROUTER) self.listener.setsockopt_string(zmq.IDENTITY, self.id) self.listener.bind('tcp://*:{}'.format(self.listen_port)) self.listener = ZMQStream(self.listener, self.loop) self.listener.on_recv(self.handle_listen) if self.pusher is True: self.pusher = self.context.socket(zmq.DEALER) self.pusher.setsockopt_string(zmq.IDENTITY, self.id) self.pusher.connect('tcp://{}:{}'.format(self.push_ip, self.push_port)) self.pusher = ZMQStream(self.pusher, self.loop) self.pusher.on_recv(self.handle_listen) # TODO: Make sure handle_listen knows how to handle ID-less messages # start thread that periodically resends messages self.repeat_thread = threading.Thread(target=self.repeat) self.repeat_thread.setDaemon(True) self.repeat_thread.start() self.logger.info('Starting IOLoop') self.loop.start() except KeyboardInterrupt: # normal quitting behavior self.logger.debug("Stopped with KeyboardInterrupt") pass finally: self.context.destroy() self.loop.close() self.logger.debug("Reached finally, closing Station")
# self.release()
[docs] def prepare_message(self, to, key, value, repeat=True, flags=None): """ If a message originates with us, a :class:`.Message` class is instantiated, given an ID and the rest of its attributes. Args: flags: repeat: to (str): The identity of the socket this message is to key (str): The type of message - used to select which method the receiver uses to process this message. value: Any information this message should contain. Can be any type, but must be JSON serializable. """ msg = Message() msg.sender = self.id try: msg.to = to.decode('utf-8') except AttributeError: msg.to = to try: msg.key = key.decode('utf-8') except AttributeError: msg.key = key msg.value = value msg_num = next(self.msg_counter) msg.id = "{}_{}".format(self.id, msg_num) if not repeat: msg.flags['NOREPEAT'] = True if flags: for k, v in flags.items(): msg.flags[k] = v return msg
[docs] def send(self, to=None, key=None, value=None, msg=None, repeat=True, flags=None): """ Send a message via our :attr:`~.Station.listener` , ROUTER socket. Either an already created :class:`.Message` should be passed as `msg`, or at least `to` and `key` must be provided for a new message created by :meth:`~.Station.prepare_message` . A :class:`threading.Timer` is created to resend the message using :meth:`~.Station.repeat` unless `repeat` is False. Args: flags: to (str): The identity of the socket this message is to key (str): The type of message - used to select which method the receiver uses to process this message. value: Any information this message should contain. Can be any type, but must be JSON serializable. msg (`.Message`): An already created message. repeat (bool): Should this message be resent if confirmation is not received? """ if not msg and not all([to, key]): self.logger.exception('Need either a message or \'to\' and \'key\' fields.\ Got\nto: {}\nkey: {}\nvalue: {}\nmsg: {}'.format(to, key, value, msg)) return manual_to = False if not msg: # we're sending this ourselves, new message. msg = self.prepare_message(to, key, value, repeat, flags) elif to: # if given both message and to, send it to our 'to' # don't want to force a reserialization of the message manual_to = True if 'NOREPEAT' in msg.flags.keys(): repeat = False # if we didn't send it, we shouldn't double-confirm it. if msg.sender not in [self.name, '_'+self.name]: repeat = False # Make sure our message has everything if not msg.validate(): self.logger.exception('Message Invalid:\n{}'.format(str(msg))) # encode message msg_enc = msg.serialize() if not msg_enc: self.logger.exception('Message could not be encoded:\n{}'.format(str(msg))) return if manual_to: self.listener.send_multipart([to.encode('utf-8'), msg_enc]) else: if isinstance(msg.to, list): self.listener.send_multipart([*[hop.encode('utf-8') for hop in to], msg_enc]) else: self.listener.send_multipart([msg.to.encode('utf-8'), msg_enc]) # messages can have a flag that says not to log # log_this = True # if 'NOLOG' in msg.flags.keys(): # log_this = False #if msg.key != "CONFIRM": self.logger.debug('MESSAGE SENT - {}'.format(str(msg))) if repeat and not msg.key == "CONFIRM": # add to outbox and spawn timer to resend self.send_outbox[msg.id] = (time.time(), msg)
# self.timers[msg.id] = threading.Timer(5.0, self.repeat, args=(msg.id,'send')) # self.timers[msg.id].start() #self.outbox.put((msg.id))
[docs] def push(self, to=None, key = None, value = None, msg=None, repeat=True, flags=None): """ Send a message via our :attr:`~.Station.pusher` , DEALER socket. Unlike :meth:`~.Station.send` , `to` is not required. Every message is always sent to :attr:`~.Station.push_id` . `to` can be included to send a message further up the network tree to a networking object we're not directly connected to. Either an already created :class:`.Message` should be passed as `msg`, or at least `key` must be provided for a new message created by :meth:`~.Station.prepare_message` . A :class:`threading.Timer` is created to resend the message using :meth:`~.Station.repeat` unless `repeat` is False. Args: flags: to (str): The identity of the socket this message is to. If not included, sent to :meth:`~.Station.push_id` . key (str): The type of message - used to select which method the receiver uses to process this message. value: Any information this message should contain. Can be any type, but must be JSON serializable. msg (`.Message`): An already created message. repeat (bool): Should this message be resent if confirmation is not received? """ # send message via the dealer # even though we only have one connection over our dealer, # we still include 'to' in case we are sending further upstream # but can push without 'to', just fill in with upstream id if not msg and not key: self.logger.exception('Need either a message or a \'key\' field.\ Got\nto: {}\nkey: {}\nvalue: {}\nmsg: {}'.format(to, key, value, msg)) if not msg: if to is None: to = self.push_id msg = self.prepare_message(to, key, value, repeat, flags) if 'NOREPEAT' in msg.flags.keys(): repeat = False log_this = True if 'NOLOG' in msg.flags.keys(): log_this = False # Make sure our message has everything if not msg.validate(): self.logger.error('Message Invalid:\n{}'.format(str(msg))) # encode message msg_enc = msg.serialize() if not msg_enc: self.logger.error('Message could not be encoded:\n{}'.format(str(msg))) return # Even if the message is not to our upstream node, we still send it # upstream because presumably our target is upstream. self.pusher.send_multipart([self.push_id, bytes(msg.to, encoding="utf-8"), msg_enc]) if not (msg.key == "CONFIRM") and log_this: self.logger.debug('MESSAGE PUSHED - {}'.format(str(msg))) if repeat and not msg.key == 'CONFIRM': # add to outbox and spawn timer to resend self.push_outbox[msg.id] = (time.time(), msg)
#self.timers[msg.id] = threading.Timer(5.0, self.repeat, args=(msg.id, 'push')) #self.timers[msg.id].start()
[docs] def repeat(self): """ Periodically (according to :attr:`~.repeat_interval`) resend messages that haven't been confirmed TTL is decremented, and messages are resent until their TTL is 0. """ while not self.closing.is_set(): # make local copies push_outbox = copy(self.push_outbox) send_outbox = copy(self.send_outbox) # try to send any outstanding messages and delete if too old if len(push_outbox)>0: for id in push_outbox.keys(): if push_outbox[id][1].ttl <= 0: self.logger.warning('PUBLISH FAILED {} - {}'.format(id, str(push_outbox[id][1]))) try: del self.push_outbox[id] except KeyError: # fine, already deleted pass else: # if we didn't just put this message in our outbox if (time.time() - push_outbox[id][0]) > self.repeat_interval*2: self.logger.debug('REPUBLISH {} - {}'.format(id, str(push_outbox[id][1]))) self.pusher.send_multipart([self.push_id, push_outbox[id][1].serialize()]) self.push_outbox[id][1].ttl -= 1 if len(send_outbox)>0: for id in send_outbox.keys(): if send_outbox[id][1].ttl <= 0: self.logger.warning('PUBLISH FAILED {} - {}'.format(id, str(send_outbox[id][1]))) try: del self.send_outbox[id] except KeyError: # fine, already deleted pass else: # if we didn't just put this message in our outbox if (time.time() - send_outbox[id][0]) > self.repeat_interval*2: self.logger.debug('REPUBLISH {} - {}'.format(id, str(send_outbox[id][1]))) self.listener.send_multipart([bytes(send_outbox[id][1].to, encoding="utf-8"), send_outbox[id][1].serialize()]) self.send_outbox[id][1].ttl -= 1 # wait to do it again time.sleep(self.repeat_interval)
[docs] def l_confirm(self, msg): """ Confirm that a message was received. Args: msg (:class:`.Message`): A confirmation message - note that this message has its own unique ID, so the value of this message contains the ID of the message that is being confirmed """ # confirmation that a published message was received # value should be the message id # delete message from outbox if we still have it try: if msg.value in self.send_outbox.keys(): del self.send_outbox[msg.value] elif msg.value in self.push_outbox.keys(): del self.push_outbox[msg.value] except KeyError: # fine, already deleted pass # if this is a message to our internal net_node, make sure it gets the memo that shit was confirmed too if msg.to == "_{}".format(self.id): self.send("_{}".format(self.id), 'CONFIRM', msg.value)
#self.logger.info('CONFIRMED MESSAGE {}'.format(msg.value))
[docs] def l_stream(self, msg): """ Reconstitute the original stream of messages and call their handling methods The ``msg`` should contain an ``inner_key`` that indicates the key, and thus the handling method. Args: msg (dict): Compressed stream sent by :meth:`Net_Node._stream` """ listen_fn = self.listens[msg.value['inner_key']] old_value = copy(msg.value) delattr(msg, 'value') msg.key = old_value['inner_key'] for v in old_value['payload']: if isinstance(v, dict) and ('headers' in old_value.keys()): v.update(old_value['headers']) msg.value = v listen_fn(msg)
[docs] def l_kill(self, msg: Message): """ Terminal wants us to die :( Stop the :attr:`.Station.loop` Args: msg (:class:`.Message`): """ self.logger.info('Received kill request') self.closing.set() # Stopping the loop should kill the process, as it's what's holding us in run() self.listener.stop_on_recv() self.listener.close() if self.pusher: self.listener.stop_on_recv() self.pusher.close() self.loop.add_callback(lambda:IOLoop.instance().stop()) self.logger.debug(self.loop) self.logger.info('Stopped IOLoop')
[docs] def handle_listen(self, msg:typing.List[bytes]): """ Upon receiving a message, call the appropriate listen method in a new thread. If the message is :attr:`~.Message.to` us, send confirmation. If the message is not :attr:`~.Message.to` us, attempt to forward it. Args: msg (str): JSON :meth:`.Message.serialize` d message. """ # TODO: This check is v. fragile, pyzmq has a way of sending the stream along with the message #####################33 # Parse the message with self.msgs_received.get_lock(): self.msgs_received.value += 1 if msg[-1] == b'CLOSING': self.loop.stop() if len(msg)==1: # from our dealer, these are always to us. send_type = 'dealer' #msg = json.loads(msg[0]) #msg = Message(**msg) msg = Message(msg[0]) elif len(msg)>=2: # from the router send_type = 'router' sender = msg[0] # if this message was a multihop message, store the route if len(msg)>4: self.routes[sender] = msg[0:-3] # # if this is a new sender, add them to the list if sender not in self.senders.keys(): self.senders[sender] = "" self.senders[b'_' + sender] = '' # connection pings are blank frames, # respond to let them know we're alive if msg[-1] == b'': self.listener.send_multipart(msg) return # if this message wasn't to us, forward without deserializing # the second to last should always be the intended recipient unserialized_to = msg[-2] if unserialized_to.decode('utf-8') not in [self.id, "_{}".format(self.id)]: # forward it!! if len(msg) > 4: # multihop message, just determine whether the next hop is through # our pusher or router if self.pusher and msg[2] not in self.senders.keys(): self.pusher.send_multipart(msg[2:]) self.logger.debug(f'FORWARDING (multihop dealer): {msg}') else: self.listener.send_multipart(msg[2:]) self.logger.debug(f'FORWARDING (multihop router): {msg}') else: if unserialized_to not in self.senders.keys() and self.pusher: # if we don't know who they are and we have a pusher, try to push it self.pusher.send_multipart([self.push_id, *msg[2:]]) self.logger.debug(f'FORWARDING (dealer): {msg}') else: # if we know who they are or not, try to send it through router anyway. # send everything but the first two frames, which should be the ID of # the sender and us self.listener.send_multipart(msg[2:]) self.logger.debug(f'FORWARDING (router): {msg}') return msg = Message(msg[-1]) # if this is a new sender, add them to the list if msg['sender'] not in self.senders.keys(): self.senders[msg['sender']] = "" self.senders['_' + msg['sender']] = '' else: self.logger.error('Dont know what this message is:{}'.format(msg)) return ################################### # Handle the message # unstack and listed to fields remaining from forwarding if isinstance(msg.to, list): if len(msg.to) == 1: msg.to = msg.to[0] # if this message is to us, just handle it and return if msg.to in [self.id, "_{}".format(self.id)]: if (msg.key != "CONFIRM"): self.logger.debug('RECEIVED: {}'.format(str(msg))) # Log and spawn thread to respond to listen try: listen_funk = self.listens[msg.key] listen_thread = threading.Thread(target=listen_funk, args=(msg,)) listen_thread.start() except KeyError: self.logger.exception('No function could be found for msg id {} with key: {}'.format(msg.id, msg.key)) # send a return message that confirms even if we except # don't confirm confirmations if (msg.key != "CONFIRM") and ('NOREPEAT' not in msg.flags.keys()): if send_type == 'router': self.send(msg.sender, 'CONFIRM', msg.id) elif send_type == 'dealer': self.push(msg.sender, 'CONFIRM', msg.id) return elif self.child and (msg.to == 'T'): # FIXME UGLY HACK self.push(msg=msg) else: self.logger.exception(f'Message not to us, but wasnt forwarded previously in handling method, message must be misformatted: {msg}')
# all of the below should be removed but i am paranoid and like # sorta bad at reverting changes on git so i am just commenting for now # # # elif msg.to in self.senders.keys(): # self.send(msg=msg) # # otherwise, if we have a pusher, send it there # # it's either for them or some other upstream node we don't know about # elif self.pusher: # self.push(msg=msg) # else: # # self.logger.warning('Message to unconfirmed recipient, attempting to send: {}'.format(str(msg))) # self.send(msg=msg) # finally, if there's something we're supposed to do, do it # even if the message is not to us, # sometimes we do work en passant to reduce effort doubling # FIXME Seems like a really bad idea. # if msg.key in self.listens.keys(): # listen_funk = self.listens[msg.key] # listen_thread = threading.Thread(target=listen_funk, args=(msg,)) # listen_thread.start() # # # since we return if it's to us before, confirm is repeated down here. # # FIXME: Inelegant # if (msg.key != "CONFIRM") and ('NOREPEAT' not in msg.flags.keys()): # if send_type == 'router': # self.send(sender, 'CONFIRM', msg.id) # elif send_type == 'dealer': # self.push(msg.sender, 'CONFIRM', msg.id)
[docs] def get_ip(self): """ Find our IP address returns (str): our IPv4 address. """ # shamelessly stolen from https://www.w3resource.com/python-exercises/python-basic-exercise-55.php # variables are badly named because this is just a rough unwrapping of what was a monstrous one-liner # (and i don't really understand how it works) # get ips that aren't the loopback unwrap00 = [ip for ip in socket.gethostbyname_ex(socket.gethostname())[2] if not ip.startswith("127.")][:1] # ??? truly dk unwrap01 = [[(s.connect(('8.8.8.8', 53)), s.getsockname()[0], s.close()) for s in [socket.socket(socket.AF_INET, socket.SOCK_DGRAM)]][0][1]] unwrap2 = [l for l in (unwrap00, unwrap01) if l][0][0] return unwrap2
[docs] def release(self): self.closing.set() # send a message to ourselves from the parent process to this one ctx = zmq.Context().instance() sock = ctx.socket(zmq.DEALER) sock.setsockopt_string(zmq.IDENTITY, f"{self.id}.closer") sock.connect(f'tcp://localhost:{self.listen_port}') sock.send_multipart([self.id.encode('utf-8'), 'CLOSING'.encode('utf-8')]) sock.close() # self.loop.stop() self.terminate()
# except AttributeError: # # already been called, NoneTypes have no attribute terminate # pass # Stopping the loop should kill the process, as it's what's holding us in run() #self.loop.stop() def _check_stop(self): """ periodic callback called by the IOLoop to check if the `closing` flag has been set, and closing process if so """ if self.closing.is_set(): self.loop.stop()
[docs]class Terminal_Station(Station): """ :class:`~.networking.Station` object used by :class:`~.Terminal` objects. Spawned without a :attr:`~.Station.pusher`. **Listens** +-------------+-------------------------------------------+-----------------------------------------------+ | Key | Method | Description | +=============+===========================================+===============================================+ | 'PING' | :meth:`~.Terminal_Station.l_ping` | We are asked to confirm that we are alive | +-------------+-------------------------------------------+-----------------------------------------------+ | 'INIT' | :meth:`~.Terminal_Station.l_init` | Ask all pilots to confirm that they are alive | +-------------+-------------------------------------------+-----------------------------------------------+ | 'CHANGE' | :meth:`~.Terminal_Station.l_change` | Change a parameter on the Pi | +-------------+-------------------------------------------+-----------------------------------------------+ | 'STOPALL' | :meth:`~.Terminal_Station.l_stopall` | Stop all pilots and plots | +-------------+-------------------------------------------+-----------------------------------------------+ | 'KILL' | :meth:`~.Terminal_Station.l_kill` | Terminal wants us to die :( | +-------------+-------------------------------------------+-----------------------------------------------+ | 'DATA' | :meth:`~.Terminal_Station.l_data` | Stash incoming data from a Pilot | +-------------+-------------------------------------------+-----------------------------------------------+ | 'STATE' | :meth:`~.Terminal_Station.l_state` | A Pilot has changed state | +-------------+-------------------------------------------+-----------------------------------------------+ | 'HANDSHAKE' | :meth:`~.Terminal_Station.l_handshake` | A Pi is telling us it's alive and its IP | +-------------+-------------------------------------------+-----------------------------------------------+ | 'FILE' | :meth:`~.Terminal_Station.l_file` | The pi needs some file from us | +-------------+-------------------------------------------+-----------------------------------------------+ """ plot_timer = None #send_plot = threading.Event() #send_plot.clear() # dict of threading events that determine how frequently we send plot updates sent_plot = {} def __init__(self, pilots): """ Args: pilots (dict): The :attr:`.Terminal.pilots` dictionary. """ super(Terminal_Station, self).__init__() # by default terminal doesn't have a pusher, everything connects to it self.pusher = False # Store some prefs values self.listen_port = prefs.get('MSGPORT') self.id = 'T' # Message dictionary - What method to call for each type of message received by the terminal class self.listens.update({ 'PING': self.l_ping, # We are asked to confirm that we are alive 'INIT': self.l_init, # We should ask all the pilots to confirm that they are alive 'CHANGE': self.l_change, # Change a parameter on the Pi 'STOPALL': self.l_stopall, # Stop all pilots and plots 'DATA': self.l_data, # Stash incoming data from an autopilot 'CONTINUOUS': self.l_continuous, # handle incoming continuous data 'STATE': self.l_state, # The Pi is confirming/notifying us that it has changed state 'HANDSHAKE': self.l_handshake, # initial connection with some initial info 'FILE': self.l_file, # The pi needs some file from us }) # dictionary that keeps track of our pilots self.pilots = pilots # start a timer at the draw FPS of the terminal -- only send if prefs.get( 'DRAWFPS'): self.data_fps = float(prefs.get('DRAWFPS')) else: self.data_fps = 20 self.data_ifps = 1.0/self.data_fps self.loop = None
[docs] def start_plot_timer(self): """ Start a timer that controls how often streamed video frames are sent to :class:`.gui.Video` plots. """ self.plot_timer = threading.Thread(target=self._fps_clock) self.plot_timer.setDaemon(True) self.plot_timer.start()
def _fps_clock(self): while not self.closing.is_set(): for k, v in self.sent_plot.items(): try: v.set() except: pass # TODO: Too General #self.send_plot.set() time.sleep(self.data_ifps) ########################## # Message Handling Methods
[docs] def l_ping(self, msg:Message): """ We are asked to confirm that we are alive Respond with a blank 'STATE' message. Args: msg (:class:`.Message`): """ # we are being asked if we're alive # respond with blank message since the terminal isn't really stateful self.send(msg.sender, 'STATE', flags={'NOLOG':True})
[docs] def l_init(self, msg:Message): """ Ask all pilots to confirm that they are alive Sends a "PING" to everyone in the pilots dictionary. Args: msg (:class:`.Message`): """ # Ping all pis that we are expecting given our pilot db # Responses will be handled with l_state so not much needed here for p in self.pilots.keys(): self.send(p, 'PING', flags={'NOLOG':True})
[docs] def l_change(self, msg:Message): """ Change a parameter on the Pi Warning: Not Implemented Args: msg (:class:`.Message`): """ # TODO: Should also handle param changes to GUI objects like ntrials, etc. pass
[docs] def l_stopall(self, msg:Message): """ Stop all pilots and plots Args: msg (:class:`.Message`): """ # let all the pilots and plot objects know that they should stop for p in self.pilots.keys(): self.send(p, 'STOP') self.send("P_{}".format(p), 'STOP')
[docs] def l_data(self, msg:Message): """ Stash incoming data from a Pilot Just forward this along to the internal terminal object ('_T') and a copy to the relevant plot. Args: msg (:class:`.Message`): """ # Send through to terminal #self.send('_T', 'DATA', msg.value, flags=msg.flags) self.send(to='_T', msg=msg) # Send to plot widget, which should be listening to "P_{pilot_name}" #self.send('P_{}'.format(msg.value['pilot']), 'DATA', msg.value, flags=msg.flags) self.send(to='P_{}'.format(msg.value['pilot']), msg=msg)
[docs] def l_continuous(self, msg:Message): """ Handle the storage of continuous data Forwards all data on to the Terminal's internal :class:`Net_Node`, send to :class:`.Plot` according to update rate in ``prefs.get('DRAWFPS')`` Args: msg (:class:`.Message`): A continuous data message """ # Send through to terminal #msg.value.update({'continuous':True}) self.send(to='_T', msg=msg) # Send to plot widget, which should be listening to "P_{pilot_name}" plot_id = 'P_{}'.format(msg.value['pilot']) if plot_id in self.senders.keys(): if not self.plot_timer: self.start_plot_timer() if msg.sender not in self.sent_plot.keys(): self.sent_plot[msg.sender] = threading.Event() if self.sent_plot[msg.sender].is_set(): self.send(to=plot_id, msg=msg) self.sent_plot[msg.sender].clear()
[docs] def l_state(self, msg:Message): """ A Pilot has changed state. Stash in 'state' field of pilot dict and send along to _T Args: msg (:class:`.Message`): """ if msg.sender not in self.pilots.keys(): self.pilots[msg.sender] = {} #if 'state' in self.pilots[msg.sender].keys(): # if msg.value == self.pilots[msg.sender]['state']: # # if we've already gotten this one, don't send to terminal # return self.pilots[msg.sender]['state'] = msg.value # Tell the terminal so it can update the pilot_db file state = {'state':msg.value, 'pilot':msg.sender} self.send('_T', 'STATE', state) # Tell the plot self.send("P_{}".format(msg.sender), 'STATE', msg.value) self.senders[msg.sender] = msg.value
[docs] def l_handshake(self, msg:Message): """ A Pi is telling us it's alive and its IP. Send along to _T Args: msg (:class:`.Message`): """ # only rly useful for our terminal object self.send('_T', 'HANDSHAKE', value=msg.value)
[docs] def l_file(self, msg:Message): """ A Pilot needs some file from us. Send it back after :meth:`base64.b64encode` ing it. TODO: Split large files into multiple messages... Args: msg (:class:`.Message`): The value field of the message should contain some relative path to a file contained within `prefs.get('SOUNDDIR')` . eg. `'/songs/sadone.wav'` would return `'os.path.join(prefs.get('SOUNDDIR')/songs.sadone.wav'` """ # The <target> pi has requested some file <value> from us, let's send it back # This assumes the file is small, if this starts crashing we'll have to split the message... full_path = os.path.join(prefs.get('SOUNDDIR'), msg.value) with open(full_path, 'rb') as open_file: # encode in base64 so json doesn't complain file_contents = base64.b64encode(open_file.read()) file_message = {'path':msg.value, 'file':file_contents} self.send(msg.sender, 'FILE', file_message)
[docs]class Pilot_Station(Station): """ :class:`~.networking.Station` object used by :class:`~.Pilot` objects. Spawned with a :attr:`~.Station.pusher` connected back to the :class:`~.Terminal` . **Listens** +-------------+-------------------------------------+-----------------------------------------------+ | Key | Method | Description | +=============+=====================================+===============================================+ | 'STATE' | :meth:`~.Pilot_Station.l_state` | Pilot has changed state | | 'COHERE' | :meth:`~.Pilot_Station.l_cohere` | Make sure our data and the Terminal's match. | | 'PING' | :meth:`~.Pilot_Station.l_ping` | The Terminal wants to know if we're listening | | 'START' | :meth:`~.Pilot_Station.l_start` | We are being sent a task to start | | 'STOP' | :meth:`~.Pilot_Station.l_stop` | We are being told to stop the current task | | 'PARAM' | :meth:`~.Pilot_Station.l_change` | The Terminal is changing some task parameter | | 'FILE' | :meth:`~.Pilot_Station.l_file` | We are receiving a file | +-------------+-------------------------------------+-----------------------------------------------+ """ def __init__(self): # Pilot has a pusher - connects back to terminal super(Pilot_Station, self).__init__() self.pusher = True if prefs.get('LINEAGE') == 'CHILD': self.push_id = prefs.get('PARENTID').encode('utf-8') self.push_port = prefs.get('PARENTPORT') self.push_ip = prefs.get('PARENTIP') self.child = True else: self.push_id = b'T' self.push_port = prefs.get('PUSHPORT') self.push_ip = prefs.get('TERMINALIP') self.child = False # Store some prefs values self.listen_port = prefs.get('MSGPORT') #self.id = prefs.get('NAME').encode('utf-8') self.id = prefs.get('NAME') if self.id is None or self.id == '': self.logger.exception(f"pilot NAME in prefs.json cannot be blank, got {self.id}") raise ValueError(f"pilot NAME in prefs.json cannot be blank, got {self.id}") self.pi_id = "_{}".format(self.id) self.subject = None # Store current subject ID self.state = 'IDLE' # store current pi state self.child = False # Are we acting as a child right now? self.parent = False # Are we acting as a parent right now? self.listens.update({ 'STATE': self.l_state, # Confirm or notify terminal of state change 'COHERE': self.l_cohere, # Sending our temporary data table at the end of a run to compare w/ terminal's copy 'PING': self.l_ping, # The Terminal wants to know if we're listening 'START': self.l_start, # We are being sent a task to start 'STOP': self.l_stop, # We are being told to stop the current task 'PARAM': self.l_change, # The Terminal is changing some task parameter 'FILE': self.l_file, # We are receiving a file 'CONTINUOUS': self.l_continuous, # we are sending continuous data to the terminal 'CHILD': self.l_child, 'HANDSHAKE': self.l_noop, 'CALIBRATE_PORT': self.l_forward, 'CALIBRATE_RESULT': self.l_forward, 'BANDWIDTH': self.l_forward, 'STREAM_VIDEO': self.l_forward }) # ping back our status to the terminal every so often if prefs.get('PING_INTERVAL') is None: self.ping_interval = 5 else: self.ping_interval = float(prefs.get('PING_INTERVAL')) self._ping_thread = threading.Timer(self.ping_interval, self._pinger) self._ping_thread.setDaemon(True) self._ping_thread.start() def _pinger(self): """ Periodically ping the terminal with our status Calls its own timer to replace it Returns: """ # before .run is called, pusher is a boolean flag telling us to make one when it is # not great and should be changed, but these modules are not long for this world # in their current form anyway if not isinstance(self.pusher, bool): self.l_ping() if not self.closing.is_set(): self._ping_thread = threading.Timer(self.ping_interval, self._pinger) self._ping_thread.setDaemon(True) self._ping_thread.start() ###########################3 # Message/Listen handling methods
[docs] def l_noop(self, msg): pass
[docs] def l_state(self, msg:Message): """ Pilot has changed state Stash it and alert the Terminal Args: msg (:class:`.Message`): """ # Save locally so we can respond to queries on our own, then push 'er on through # Value will just have the state, we want to add our name self.state = msg.value self.push(to=self.push_id, key='STATE', value=msg.value)
[docs] def l_cohere(self, msg:Message): """ Send our local version of the data table so the terminal can double check Warning: Not Implemented Args: msg (:class:`.Message`): """ pass
[docs] def l_ping(self, msg:Message=None): """ The Terminal wants to know our status Push back our current state. Args: msg (:class:`.Message`): """ # The terminal wants to know if we are alive, respond with our name and IP # don't bother the pi self.push(key='STATE', value=self.state, flags={'NOLOG':True})
[docs] def l_start(self, msg:Message): """ We are being sent a task to start If we need any files, request them. Then send along to the pilot. Args: msg (:class:`.Message`): value will contain a dictionary containing a task description. """ self.subject = msg.value['subject'] # TODO: Refactor into a general preflight check. # First make sure we have any sound files that we need # TODO: stim managers need to be able to return list of stimuli and this is a prime reason why if 'stim' in msg.value.keys(): if 'sounds' in msg.value['stim'].keys(): # nested list comprehension to get value['sounds']['L/R'][0-n] f_sounds = [sound for sounds in msg.value['stim']['sounds'].values() for sound in sounds if sound['type'] in ['File', 'Speech']] elif 'manager' in msg.value['stim'].keys(): # we have a manager if msg.value['stim']['type'] == 'sounds': f_sounds = [] for group in msg.value['stim']['groups']: f_sounds.extend([sound for sounds in group['sounds'].values() for sound in sounds if sound['type'] in ['File', 'Speech']]) else: f_sounds = [] if len(f_sounds)>0: # check to see if we have these files, if not, request them for sound in f_sounds: full_path = os.path.join(prefs.get('SOUNDDIR'), sound['path']) if not os.path.exists(full_path): # We ask the terminal to send us the file and then wait. self.logger.info('REQUESTING SOUND {}'.format(sound['path'])) self.push(key='FILE', value=sound['path']) # wait here to get the sound, # the receiving thread will set() when we get it. self.file_block.clear() self.file_block.wait() # If we're starting the task as a child, stash relevant params if 'child' in msg.value.keys(): self.child = True self.parent_id = msg.value['child']['parent'] self.subject = msg.value['child']['subject'] else: self.child = False # once we make sure we have everything, tell the Pilot to start. self.send(self.pi_id, 'START', msg.value)
[docs] def l_stop(self, msg:Message): """ Tell the pi to stop the task Args: msg (:class:`.Message`): """ self.send(self.pi_id, 'STOP')
[docs] def l_change(self, msg:Message): """ The terminal is changing a parameter Warning: Not implemented Args: msg (:class:`.Message`): """ # TODO: Changing some task parameter from the Terminal pass
[docs] def l_file(self, msg:Message): """ We are receiving a file. Decode from b64 and save. Set the file_block. Args: msg (:class:`.Message`): value will have 'path' and 'file', where the path determines where in `prefs.get('SOUNDDIR')` the b64 encoded 'file' will be saved. """ # The file should be of the structure {'path':path, 'file':contents} full_path = os.path.join(prefs.get('SOUNDDIR'), msg.value['path']) # TODO: give Message full deserialization capabilities including this one file_data = base64.b64decode(msg.value['file']) try: os.makedirs(os.path.dirname(full_path)) except: # TODO: Make more specific - only if dir already exists pass with open(full_path, 'wb') as open_file: open_file.write(file_data) self.logger.info('SOUND RECEIVED {}'.format(msg.value['path'])) # If we requested a file, some poor start fn is probably waiting on us self.file_block.set()
[docs] def l_continuous(self, msg:Message): """ Forwards continuous data sent by children back to terminal. Continuous data sources from this pilot should be streamed directly to the terminal. Args: msg (:class:`Message`): Continuous data message """ if self.child: msg.value['pilot'] = self.parent_id msg.value['subject'] = self.subject msg.value['continuous'] = True self.push(to='T', key='DATA', value=msg.value, repeat=False) else: self.logger.warning('Received continuous data but no child found, \ continuous data should be streamed directly to terminal \ from pilot')
[docs] def l_child(self, msg:Message): """ Tell one or more children to start running a task. By default, the `key` argument passed to `self.send` is 'START'. However, this can be overriden by providing the desired string as `msg.value['KEY']`. This checks the pref `CHILDID` to get the names of one or more children. If that pref is a string, sends the message to just that child. If that pref is a list, sends the message to each child in the list. Args: msg (): A message to send to the child or children. Returns: nothing """ # Take `KEY` from msg.value['KEY'] if available # Otherwise, use 'START' if 'KEY' in msg.value.keys(): KEY = msg.value['KEY'] else: KEY = 'START' # Get the list of children pref_childid = prefs.get('CHILDID') # Send to one or more children if isinstance(pref_childid, list): # It's a list of multiple children, send to each for childid in pref_childid: self.send(to=childid, key=KEY, value=msg.value) else: # Send to the only child self.send(to=pref_childid, key=KEY, value=msg.value)
[docs] def l_forward(self, msg:Message): """ Just forward the message to the pi. """ self.send(to=self.pi_id, key=msg.key, value=msg.value)