You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
393 lines
11 KiB
393 lines
11 KiB
#!/usr/bin/env python |
|
# |
|
# Electrum - lightweight Bitcoin client |
|
# Copyright (C) 2011 thomasv@gitorious |
|
# |
|
# 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 random, socket, ast, re |
|
import threading, traceback, sys, time, json, Queue |
|
|
|
from version import ELECTRUM_VERSION |
|
|
|
DEFAULT_TIMEOUT = 5 |
|
DEFAULT_SERVERS = [ 'ecdsa.org:50001:t', 'electrum.novit.ro:50001:t', 'electrum.bitcoins.sk:50001:t'] # list of default servers |
|
|
|
|
|
def old_to_new(s): |
|
s = s.replace("'blk_hash'", "'block_hash'") |
|
s = s.replace("'pos'", "'index'") |
|
s = s.replace("'nTime'", "'timestamp'") |
|
s = s.replace("'is_in'", "'is_input'") |
|
s = s.replace("'raw_scriptPubKey'","'raw_output_script'") |
|
return s |
|
|
|
|
|
class Interface(threading.Thread): |
|
def __init__(self, host, port): |
|
threading.Thread.__init__(self) |
|
self.daemon = True |
|
self.host = host |
|
self.port = port |
|
|
|
self.servers = [] # actual list from IRC |
|
self.rtime = 0 |
|
|
|
self.is_connected = True |
|
self.poll_interval = 1 |
|
|
|
#json |
|
self.message_id = 0 |
|
self.responses = Queue.Queue() |
|
self.unanswered_requests = {} |
|
|
|
def poke(self): |
|
# push a fake response so that the getting thread exits its loop |
|
self.responses.put(None) |
|
|
|
def queue_json_response(self, c): |
|
|
|
#print "<--",c |
|
msg_id = c.get('id') |
|
error = c.get('error') |
|
|
|
if error: |
|
print "received error:", c |
|
return |
|
|
|
if msg_id is not None: |
|
method, params = self.unanswered_requests.pop(msg_id) |
|
result = c.get('result') |
|
else: |
|
# notification |
|
method = c.get('method') |
|
params = c.get('params') |
|
|
|
if method == 'blockchain.numblocks.subscribe': |
|
result = params[0] |
|
params = [] |
|
|
|
elif method == 'blockchain.address.subscribe': |
|
addr = params[0] |
|
result = params[1] |
|
params = [addr] |
|
|
|
self.responses.put({'method':method, 'params':params, 'result':result}) |
|
|
|
|
|
|
|
def subscribe(self, addresses): |
|
messages = [] |
|
for addr in addresses: |
|
messages.append(('blockchain.address.subscribe', [addr])) |
|
self.send(messages) |
|
|
|
|
|
|
|
|
|
class PollingInterface(Interface): |
|
""" non-persistent connection. synchronous calls""" |
|
|
|
def __init__(self, host, port): |
|
Interface.__init__(self, host, port) |
|
self.session_id = None |
|
|
|
def get_history(self, address): |
|
self.send([('blockchain.address.get_history', [address] )]) |
|
|
|
def poll(self): |
|
pass |
|
#if is_new or wallet.remote_url: |
|
# self.was_updated = True |
|
# is_new = wallet.synchronize() |
|
# wallet.update_tx_history() |
|
# wallet.save() |
|
# return is_new |
|
#else: |
|
# return False |
|
|
|
def run(self): |
|
self.is_connected = True |
|
while self.is_connected: |
|
try: |
|
if self.session_id: |
|
self.poll() |
|
time.sleep(self.poll_interval) |
|
except socket.gaierror: |
|
break |
|
except socket.error: |
|
break |
|
except: |
|
traceback.print_exc(file=sys.stdout) |
|
break |
|
|
|
self.is_connected = False |
|
self.poke() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HttpStratumInterface(PollingInterface): |
|
|
|
def poll(self): |
|
self.send([]) |
|
|
|
def send(self, messages): |
|
import urllib2, json, time, cookielib |
|
|
|
cj = cookielib.CookieJar() |
|
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) |
|
urllib2.install_opener(opener) |
|
|
|
t1 = time.time() |
|
|
|
data = [] |
|
for m in messages: |
|
method, params = m |
|
if type(params) != type([]): params = [params] |
|
data.append( { 'method':method, 'id':self.message_id, 'params':params } ) |
|
self.unanswered_requests[self.message_id] = method, params |
|
self.message_id += 1 |
|
|
|
if data: |
|
data_json = json.dumps(data) |
|
else: |
|
# poll with GET |
|
data_json = None |
|
|
|
host = 'http://%s:%d'%( self.host, self.port ) |
|
headers = {'content-type': 'application/json'} |
|
if self.session_id: |
|
headers['cookie'] = 'SESSION=%s'%self.session_id |
|
|
|
req = urllib2.Request(host, data_json, headers) |
|
response_stream = urllib2.urlopen(req) |
|
|
|
for index, cookie in enumerate(cj): |
|
if cookie.name=='SESSION': |
|
self.session_id = cookie.value |
|
|
|
response = response_stream.read() |
|
if response: |
|
response = json.loads( response ) |
|
if type(response) is not type([]): |
|
self.queue_json_response(response) |
|
else: |
|
for item in response: |
|
self.queue_json_response(item) |
|
|
|
if response: |
|
self.poll_interval = 1 |
|
else: |
|
if self.poll_interval < 15: |
|
self.poll_interval += 1 |
|
#print self.poll_interval, response |
|
|
|
self.rtime = time.time() - t1 |
|
self.is_connected = True |
|
|
|
|
|
|
|
|
|
class TcpStratumInterface(Interface): |
|
"""json-rpc over persistent TCP connection, asynchronous""" |
|
|
|
def __init__(self, host, port): |
|
Interface.__init__(self, host, port) |
|
self.s = socket.socket( socket.AF_INET, socket.SOCK_STREAM ) |
|
self.s.settimeout(5*60) |
|
self.s.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1) |
|
try: |
|
self.s.connect(( self.host, self.port)) |
|
self.is_connected = True |
|
self.send([('server.version', [ELECTRUM_VERSION])]) |
|
except: |
|
self.is_connected = False |
|
print "not connected" |
|
|
|
def run(self): |
|
try: |
|
out = '' |
|
while self.is_connected: |
|
try: msg = self.s.recv(1024) |
|
except socket.timeout: |
|
# ping the server with server.version, as a real ping does not exist yet |
|
self.send([('server.version', [ELECTRUM_VERSION])]) |
|
continue |
|
out += msg |
|
if msg == '': |
|
self.is_connected = False |
|
print "disconnected." |
|
|
|
while True: |
|
s = out.find('\n') |
|
if s==-1: break |
|
c = out[0:s] |
|
out = out[s+1:] |
|
c = json.loads(c) |
|
self.queue_json_response(c) |
|
|
|
except: |
|
traceback.print_exc(file=sys.stdout) |
|
|
|
self.is_connected = False |
|
print "poking" |
|
self.poke() |
|
|
|
def send(self, messages): |
|
out = '' |
|
for m in messages: |
|
method, params = m |
|
request = json.dumps( { 'id':self.message_id, 'method':method, 'params':params } ) |
|
self.unanswered_requests[self.message_id] = method, params |
|
#print "-->",request |
|
self.message_id += 1 |
|
out += request + '\n' |
|
self.s.send( out ) |
|
|
|
def get_history(self, addr): |
|
self.send([('blockchain.address.get_history', [addr])]) |
|
|
|
|
|
|
|
|
|
|
|
class WalletSynchronizer(threading.Thread): |
|
|
|
def __init__(self, wallet, loop=False): |
|
threading.Thread.__init__(self) |
|
self.daemon = True |
|
self.wallet = wallet |
|
self.loop = loop |
|
self.start_interface() |
|
|
|
|
|
def handle_response(self, r): |
|
if r is None: |
|
return |
|
|
|
method = r['method'] |
|
params = r['params'] |
|
result = r['result'] |
|
|
|
if method == 'server.banner': |
|
self.wallet.banner = result |
|
self.wallet.was_updated = True |
|
|
|
elif method == 'server.peers.subscribe': |
|
servers = [] |
|
for item in result: |
|
s = [] |
|
host = item[1] |
|
ports = [] |
|
if len(item)>2: |
|
for v in item[2]: |
|
if re.match("[th]\d+",v): |
|
ports.append((v[0],v[1:])) |
|
if ports: |
|
servers.append( (host, ports) ) |
|
self.interface.servers = servers |
|
|
|
elif method == 'blockchain.address.subscribe': |
|
addr = params[0] |
|
self.wallet.receive_status_callback(addr, result) |
|
|
|
elif method == 'blockchain.address.get_history': |
|
addr = params[0] |
|
self.wallet.receive_history_callback(addr, result) |
|
self.wallet.was_updated = True |
|
|
|
elif method == 'blockchain.transaction.broadcast': |
|
self.wallet.tx_result = result |
|
self.wallet.tx_event.set() |
|
|
|
elif method == 'blockchain.numblocks.subscribe': |
|
self.wallet.blocks = result |
|
|
|
elif method == 'server.version': |
|
pass |
|
|
|
else: |
|
print "unknown message:", method, params, result |
|
|
|
|
|
def start_interface(self): |
|
try: |
|
host, port, protocol = self.wallet.server.split(':') |
|
port = int(port) |
|
except: |
|
self.wallet.pick_random_server() |
|
host, port, protocol = self.wallet.server.split(':') |
|
port = int(port) |
|
|
|
#print protocol, host, port |
|
if protocol == 't': |
|
InterfaceClass = TcpStratumInterface |
|
elif protocol == 'h': |
|
InterfaceClass = HttpStratumInterface |
|
else: |
|
print "unknown protocol" |
|
InterfaceClass = TcpStratumInterface |
|
|
|
self.interface = InterfaceClass(host, port) |
|
self.interface.start() |
|
self.wallet.interface = self.interface |
|
|
|
if self.interface.is_connected: |
|
self.wallet.start_session(self.interface) |
|
|
|
|
|
|
|
def run(self): |
|
import socket, time |
|
while True: |
|
while self.interface.is_connected: |
|
new_addresses = self.wallet.synchronize() |
|
if new_addresses: |
|
self.interface.subscribe(new_addresses) |
|
|
|
if self.wallet.is_up_to_date(): |
|
if not self.wallet.up_to_date: |
|
self.wallet.up_to_date = True |
|
self.wallet.was_updated = True |
|
self.wallet.up_to_date_event.set() |
|
else: |
|
if self.wallet.up_to_date: |
|
self.wallet.up_to_date = False |
|
self.wallet.was_updated = True |
|
|
|
if self.wallet.was_updated: |
|
self.wallet.gui_callback() |
|
self.wallet.was_updated = False |
|
|
|
response = self.interface.responses.get() |
|
self.handle_response(response) |
|
|
|
print "disconnected, gui callback" |
|
self.wallet.gui_callback() |
|
if self.loop: |
|
time.sleep(5) |
|
self.start_interface() |
|
continue |
|
else: |
|
break |
|
|
|
|
|
|
|
|