forked from spesmilo/electrum-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessor.py
265 lines (199 loc) · 6.84 KB
/
processor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
import json
import Queue as queue
import socket
import threading
import time
import traceback
import sys
from utils import random_string, timestr, print_log
class Shared:
def __init__(self, config):
self.lock = threading.Lock()
self._stopped = False
self.config = config
def stop(self):
print_log("Stopping Stratum")
with self.lock:
self._stopped = True
def stopped(self):
with self.lock:
return self._stopped
class Processor(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.daemon = True
self.dispatcher = None
self.queue = queue.Queue()
def process(self, session, request):
pass
def add_request(self, session, request):
self.queue.put((session, request))
def push_response(self, session, response):
#print "response", response
self.dispatcher.request_dispatcher.push_response(session, response)
def run(self):
while not self.shared.stopped():
request, session = self.queue.get(10000000000)
try:
self.process(request, session)
except:
traceback.print_exc(file=sys.stdout)
print_log("processor terminating")
class Dispatcher:
def __init__(self, config):
self.shared = Shared(config)
self.request_dispatcher = RequestDispatcher(self.shared)
self.request_dispatcher.start()
self.response_dispatcher = \
ResponseDispatcher(self.shared, self.request_dispatcher)
self.response_dispatcher.start()
def register(self, prefix, processor):
processor.dispatcher = self
processor.shared = self.shared
processor.start()
self.request_dispatcher.processors[prefix] = processor
class RequestDispatcher(threading.Thread):
def __init__(self, shared):
self.shared = shared
threading.Thread.__init__(self)
self.daemon = True
self.request_queue = queue.Queue()
self.response_queue = queue.Queue()
self.lock = threading.Lock()
self.idlock = threading.Lock()
self.sessions = {}
self.processors = {}
def push_response(self, session, item):
self.response_queue.put((session, item))
def pop_response(self):
return self.response_queue.get()
def push_request(self, session, item):
self.request_queue.put((session, item))
def pop_request(self):
return self.request_queue.get()
def get_session_by_address(self, address):
for x in self.sessions.values():
if x.address == address:
return x
def run(self):
if self.shared is None:
raise TypeError("self.shared not set in Processor")
lastgc = 0
while not self.shared.stopped():
session, request = self.pop_request()
try:
self.do_dispatch(session, request)
except:
traceback.print_exc(file=sys.stdout)
if time.time() - lastgc > 60.0:
self.collect_garbage()
lastgc = time.time()
self.stop()
def stop(self):
pass
def do_dispatch(self, session, request):
""" dispatch request to the relevant processor """
method = request['method']
params = request.get('params', [])
suffix = method.split('.')[-1]
if session is not None:
if suffix == 'subscribe':
session.subscribe_to_service(method, params)
prefix = request['method'].split('.')[0]
try:
p = self.processors[prefix]
except:
print_log("error: no processor for", prefix)
return
p.add_request(session, request)
if method in ['server.version']:
session.version = params[0]
try:
session.protocol_version = float(params[1])
except:
pass
def get_sessions(self):
with self.lock:
r = self.sessions.values()
return r
def add_session(self, session):
key = session.key()
with self.lock:
self.sessions[key] = session
def remove_session(self, session):
key = session.key()
with self.lock:
self.sessions.pop(key)
def collect_garbage(self):
now = time.time()
for session in self.sessions.values():
if (now - session.time) > session.timeout:
session.stop()
class Session:
def __init__(self, dispatcher):
self.dispatcher = dispatcher
self.bp = self.dispatcher.processors['blockchain']
self._stopped = False
self.lock = threading.Lock()
self.subscriptions = []
self.address = ''
self.name = ''
self.version = 'unknown'
self.protocol_version = 0.
self.time = time.time()
threading.Timer(2, self.info).start()
def key(self):
return self.name + self.address
# Debugging method. Doesn't need to be threadsafe.
def info(self):
for sub in self.subscriptions:
#print sub
method = sub[0]
if method == 'blockchain.address.subscribe':
addr = sub[1]
break
else:
addr = None
if self.subscriptions:
print_log("%4s" % self.name,
"%15s" % self.address,
"%35s" % addr,
"%3d" % len(self.subscriptions),
self.version)
def stop(self):
with self.lock:
if self._stopped:
return
self._stopped = True
self.shutdown()
self.dispatcher.remove_session(self)
self.stop_subscriptions()
def shutdown(self):
pass
def stopped(self):
with self.lock:
return self._stopped
def subscribe_to_service(self, method, params):
with self.lock:
if self._stopped:
return
if (method, params) not in self.subscriptions:
self.subscriptions.append((method,params))
self.bp.do_subscribe(method, params, self)
def stop_subscriptions(self):
with self.lock:
s = self.subscriptions[:]
for method, params in s:
self.bp.do_unsubscribe(method, params, self)
with self.lock:
self.subscriptions = []
class ResponseDispatcher(threading.Thread):
def __init__(self, shared, request_dispatcher):
self.shared = shared
self.request_dispatcher = request_dispatcher
threading.Thread.__init__(self)
self.daemon = True
def run(self):
while not self.shared.stopped():
session, response = self.request_dispatcher.pop_response()
session.send_response(response)