X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=processor.py;h=446c37fc3e49ab65e066429e6681b1afdc37853c;hb=27bd2d1754b5949678d1ee7ff5efad4b3c8bef6f;hp=c6da1505de308ad57242059e0dcead00b20485c0;hpb=5ee042c213baa4ae8a0f538de64644ae9abe7b36;p=electrum-server.git diff --git a/processor.py b/processor.py index c6da150..446c37f 100644 --- a/processor.py +++ b/processor.py @@ -5,6 +5,14 @@ import time import traceback, sys import Queue as queue +def random_string(N): + import random, string + return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N)) + +def timestr(): + return time.strftime("[%d/%m/%Y-%H:%M:%S]") + + class Shared: def __init__(self): @@ -32,7 +40,8 @@ class Processor(threading.Thread): pass def push_response(self, response): - self.dispatcher.request_dispatcher.push_response(response) + print "response", response + #self.dispatcher.request_dispatcher.push_response(response) @@ -125,6 +134,9 @@ class RequestDispatcher(threading.Thread): except: traceback.print_exc(file=sys.stdout) + if method in ['server.version']: + session.version = params[0] + def add_session(self, session): with self.lock: @@ -149,6 +161,19 @@ class Session: self._stopped = False self.lock = threading.Lock() self.subscriptions = [] + self.address = '' + self.name = '' + threading.Timer(2, self.info).start() + + def info(self): + for s in self.subscriptions: + m, p = s + if m == 'blockchain.address.subscribe': + addr = p[0] + break + else: + addr = None + print timestr(), self.name, self.address, addr, len(self.subscriptions), self.version def stopped(self): with self.lock: @@ -172,21 +197,22 @@ class ResponseDispatcher(threading.Thread): response = self.processor.pop_response() #print "pop response", response internal_id = response.get('id') - params = response.get('params',[]) - try: - method = response['method'] - except: - print "no method", response - continue - - if internal_id: - session, message_id = self.processor.get_session_id(internal_id) - response['id'] = message_id - session.send_response(response) - - else: + params = response.get('params', []) + + # This is wrong. "params" and "method" should never + # be in a response. + if internal_id is None: + method = response.get('method') + if method is None: + print "no method", response + continue for session in self.processor.sessions: if not session.stopped(): if (method,params) in session.subscriptions: session.send_response(response) + continue + + session, message_id = self.processor.get_session_id(internal_id) + response['id'] = message_id + session.send_response(response)