-WIP-electrum-btcp/server/server.py

743 lines
23 KiB
Python
Raw Normal View History

2011-11-04 10:15:16 -07:00
#!/usr/bin/env python
2012-03-19 22:39:57 -07:00
# Copyright(C) 2012 thomasv@gitorious
2011-11-04 10:15:16 -07:00
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with this program. If not, see
# <http://www.gnu.org/licenses/agpl.html>.
"""
Todo:
* server should check and return bitcoind status..
* improve txpoint sorting
2011-12-03 12:33:29 -08:00
* command to check cache
2011-12-10 12:31:20 -08:00
mempool transactions do not need to be added to the database; it slows it down
2011-11-04 10:15:16 -07:00
"""
2012-03-12 09:57:42 -07:00
import time, json, socket, operator, thread, ast, sys,re
2011-11-04 10:15:16 -07:00
import ConfigParser
2011-12-23 02:14:37 -08:00
from json import dumps, loads
import urllib
# we need to import electrum
sys.path.append('../client/')
2012-01-19 08:27:53 -08:00
from wallet import Wallet
from interface import Interface
config = ConfigParser.ConfigParser()
# set some defaults, which will be overwritten by the config file
config.add_section('server')
config.set('server','banner', 'Welcome to Electrum!')
2011-12-04 04:07:08 -08:00
config.set('server', 'host', 'localhost')
2012-03-19 22:28:37 -07:00
config.set('server', 'port', '50000')
config.set('server', 'password', '')
config.set('server', 'irc', 'yes')
2011-11-30 07:08:01 -08:00
config.set('server', 'ircname', 'Electrum server')
config.add_section('database')
config.set('database', 'type', 'psycopg2')
config.set('database', 'database', 'abe')
2011-11-14 11:54:45 -08:00
try:
f = open('/etc/electrum.conf','r')
config.readfp(f)
2011-11-14 11:54:45 -08:00
f.close()
except:
2011-12-01 08:39:27 -08:00
print "Could not read electrum.conf. I will use the default values."
2011-11-14 11:54:45 -08:00
2012-02-14 14:16:10 -08:00
try:
f = open('/etc/electrum.banner','r')
config.set('server','banner', f.read())
f.close()
except:
pass
2012-03-19 22:28:37 -07:00
2011-12-22 11:30:54 -08:00
password = config.get('server','password')
2011-11-16 09:09:57 -08:00
stopping = False
2011-11-18 07:42:05 -08:00
block_number = -1
2012-03-13 08:41:54 -07:00
old_block_number = -1
2011-11-04 10:15:16 -07:00
sessions = {}
2012-03-16 15:54:45 -07:00
sessions_sub_numblocks = {} # sessions that have subscribed to the service
2012-03-13 08:41:54 -07:00
2012-03-19 11:19:36 -07:00
m_sessions = [{}] # served by http
2011-11-16 09:09:57 -08:00
peer_list = {}
2011-11-04 10:15:16 -07:00
wallets = {} # for ultra-light clients such as bccapi
2012-03-13 08:41:54 -07:00
from Queue import Queue
input_queue = Queue()
output_queue = Queue()
2012-03-13 15:04:48 -07:00
address_queue = Queue()
2012-03-13 08:41:54 -07:00
2012-03-19 11:19:36 -07:00
2011-11-04 10:15:16 -07:00
2012-01-19 08:27:53 -08:00
class Direct_Interface(Interface):
def __init__(self):
pass
def handler(self, method, params = ''):
cmds = {'session.new':new_session,
'session.poll':poll_session,
'session.update':update_session,
2012-03-17 03:58:00 -07:00
'transaction.broadcast':send_tx,
'address.get_history':store.get_history
}
func = cmds[method]
return func( params )
2011-12-23 02:14:37 -08:00
2011-11-04 10:15:16 -07:00
def send_tx(tx):
2011-12-23 02:14:37 -08:00
postdata = dumps({"method": 'importtransaction', 'params': [tx], 'id':'jsonrpc'})
respdata = urllib.urlopen(bitcoind_url, postdata).read()
2011-12-26 01:00:14 -08:00
r = loads(respdata)
if r['error'] != None:
2012-03-12 09:57:42 -07:00
out = "error: transaction rejected by memorypool\n"+tx
else:
out = r['result']
return out
2011-11-04 10:15:16 -07:00
2011-12-23 02:14:37 -08:00
2011-12-22 14:57:13 -08:00
def random_string(N):
import random, string
return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N))
2012-03-19 11:19:36 -07:00
def cmd_stop(_,__,pw):
2011-12-22 14:57:13 -08:00
global stopping
2012-03-19 11:19:36 -07:00
if password == pw:
2011-12-22 14:57:13 -08:00
stopping = True
return 'ok'
else:
return 'wrong password'
2012-03-19 11:19:36 -07:00
def cmd_load(_,__,pw):
2011-12-22 14:57:13 -08:00
if password == pw:
return repr( len(sessions) )
else:
return 'wrong password'
2012-03-19 11:19:36 -07:00
def modified_addresses(session):
if 1:
2011-12-22 14:57:13 -08:00
t1 = time.time()
addresses = session['addresses']
session['last_time'] = time.time()
ret = {}
k = 0
for addr in addresses:
2012-03-13 08:41:54 -07:00
status = get_address_status( addr )
2012-03-19 11:19:36 -07:00
msg_id, last_status = addresses.get( addr )
2011-12-22 14:57:13 -08:00
if last_status != status:
2012-03-19 11:19:36 -07:00
addresses[addr] = msg_id, status
2011-12-22 14:57:13 -08:00
ret[addr] = status
2012-03-19 11:19:36 -07:00
2011-12-22 14:57:13 -08:00
t2 = time.time() - t1
2012-03-19 11:19:36 -07:00
#if t2 > 10: print "high load:", session_id, "%d/%d"%(k,len(addresses)), t2
return ret, addresses
def poll_session(session_id):
# native
session = sessions.get(session_id)
if session is None:
print time.asctime(), "session not found", session_id
return -1, {}
else:
ret, addresses = modified_addresses(session)
if ret: sessions[session_id]['addresses'] = addresses
return repr( (block_number,ret))
def poll_session_json(session_id, message_id):
session = m_sessions[0].get(session_id)
if session is None:
raise BaseException("session not found %s"%session_id)
else:
out = []
ret, addresses = modified_addresses(session)
if ret:
m_sessions[0][session_id]['addresses'] = addresses
for addr in ret:
msg_id, status = addresses[addr]
out.append( { 'id':msg_id, 'result':status } )
msg_id, last_nb = session.get('numblocks')
if last_nb:
if last_nb != block_number:
m_sessions[0][session_id]['numblocks'] = msg_id, block_number
out.append( {'id':msg_id, 'result':block_number} )
2011-12-22 14:57:13 -08:00
return out
2012-03-13 15:04:48 -07:00
def do_update_address(addr):
# an address was involved in a transaction; we check if it was subscribed to in a session
# the address can be subscribed in several sessions; the cache should ensure that we don't do redundant requests
2012-03-19 11:19:36 -07:00
2012-03-13 15:04:48 -07:00
for session_id in sessions.keys():
session = sessions[session_id]
2012-03-16 16:46:23 -07:00
if session.get('type') != 'persistent': continue
2012-03-13 15:04:48 -07:00
addresses = session['addresses'].keys()
if addr in addresses:
status = get_address_status( addr )
2012-03-16 15:54:45 -07:00
message_id, last_status = session['addresses'][addr]
2012-03-13 15:04:48 -07:00
if last_status != status:
2012-03-16 15:54:45 -07:00
#print "sending new status for %s:"%addr, status
send_status(session_id,message_id,addr,status)
sessions[session_id]['addresses'][addr] = (message_id,status)
2012-03-13 15:04:48 -07:00
2012-03-13 08:41:54 -07:00
def get_address_status(addr):
2012-03-13 15:04:48 -07:00
# get address status, i.e. the last block for that address.
2012-03-13 08:41:54 -07:00
tx_points = store.get_history(addr)
if not tx_points:
status = None
else:
lastpoint = tx_points[-1]
status = lastpoint['blk_hash']
# this is a temporary hack; move it up once old clients have disappeared
if status == 'mempool': # and session['version'] != "old":
status = status + ':%d'% len(tx_points)
return status
def send_numblocks(session_id):
2012-03-16 15:54:45 -07:00
message_id = sessions_sub_numblocks[session_id]
out = json.dumps( {'id':message_id, 'result':block_number} )
2012-03-13 08:41:54 -07:00
output_queue.put((session_id, out))
2012-03-16 15:54:45 -07:00
def send_status(session_id, message_id, address, status):
2012-03-16 16:03:08 -07:00
out = json.dumps( { 'id':message_id, 'result':status } )
2012-03-13 15:04:48 -07:00
output_queue.put((session_id, out))
2012-03-19 11:19:36 -07:00
def address_get_history_json(_,message_id,address):
return store.get_history(address)
2012-03-16 15:54:45 -07:00
def subscribe_to_numblocks(session_id, message_id):
sessions_sub_numblocks[session_id] = message_id
2012-03-13 08:41:54 -07:00
send_numblocks(session_id)
2012-03-19 11:19:36 -07:00
def subscribe_to_numblocks_json(session_id, message_id):
global m_sessions
m_sessions[0][session_id]['numblocks'] = message_id,block_number
return block_number
2012-03-16 15:54:45 -07:00
def subscribe_to_address(session_id, message_id, address):
2012-03-13 08:41:54 -07:00
status = get_address_status(address)
2012-03-16 15:54:45 -07:00
sessions[session_id]['addresses'][address] = (message_id, status)
2012-03-13 08:41:54 -07:00
sessions[session_id]['last_time'] = time.time()
2012-03-16 15:54:45 -07:00
send_status(session_id, message_id, address, status)
2011-12-22 14:57:13 -08:00
2012-03-19 11:19:36 -07:00
def add_address_to_session_json(session_id, message_id, address):
global m_sessions
sessions = m_sessions[0]
status = get_address_status(address)
sessions[session_id]['addresses'][address] = (message_id, status)
sessions[session_id]['last_time'] = time.time()
m_sessions[0] = sessions
return status
2012-03-17 03:58:00 -07:00
def add_address_to_session(session_id, address):
status = get_address_status(address)
2012-03-19 11:19:36 -07:00
sessions[session_id]['addresses'][addr] = ("", status)
2012-03-17 03:58:00 -07:00
sessions[session_id]['last_time'] = time.time()
return status
def new_session(version, addresses):
2011-12-22 14:57:13 -08:00
session_id = random_string(10)
2011-12-23 05:51:54 -08:00
sessions[session_id] = { 'addresses':{}, 'version':version }
2011-12-22 14:57:13 -08:00
for a in addresses:
2012-03-19 11:19:36 -07:00
sessions[session_id]['addresses'][a] = ('','')
2011-12-22 14:57:13 -08:00
out = repr( (session_id, config.get('server','banner').replace('\\n','\n') ) )
sessions[session_id]['last_time'] = time.time()
return out
2012-03-19 11:19:36 -07:00
def client_version_json(session_id, _, version):
global m_sessions
sessions = m_sessions[0]
sessions[session_id]['version'] = version
m_sessions[0] = sessions
def create_session_json(_, __):
sessions = m_sessions[0]
session_id = random_string(10)
print "creating session", session_id
sessions[session_id] = { 'addresses':{}, 'numblocks':('','') }
sessions[session_id]['last_time'] = time.time()
m_sessions[0] = sessions
return session_id
def get_banner(_,__):
2012-03-17 15:33:38 -07:00
return config.get('server','banner').replace('\\n','\n')
2011-12-23 05:51:54 -08:00
def update_session(session_id,addresses):
2012-03-17 15:33:38 -07:00
"""deprecated in 0.42"""
2011-12-22 14:57:13 -08:00
sessions[session_id]['addresses'] = {}
for a in addresses:
sessions[session_id]['addresses'][a] = ''
sessions[session_id]['last_time'] = time.time()
2011-12-23 05:51:54 -08:00
return 'ok'
2011-11-04 10:15:16 -07:00
2012-03-12 09:57:42 -07:00
def native_server_thread():
2011-11-04 10:15:16 -07:00
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((config.get('server','host'), config.getint('server','port')))
2011-11-04 10:15:16 -07:00
s.listen(1)
2011-11-16 09:09:57 -08:00
while not stopping:
2011-11-04 10:15:16 -07:00
conn, addr = s.accept()
2012-02-19 12:05:04 -08:00
try:
2012-03-12 09:57:42 -07:00
thread.start_new_thread(native_client_thread, (addr, conn,))
2012-02-19 12:05:04 -08:00
except:
# can't start new thread if there is no memory..
traceback.print_exc(file=sys.stdout)
2011-11-04 10:15:16 -07:00
2011-12-22 14:57:13 -08:00
2012-03-12 09:57:42 -07:00
def native_client_thread(ipaddr,conn):
2011-11-10 12:02:47 -08:00
#print "client thread", ipaddr
2011-11-04 10:15:16 -07:00
try:
ipaddr = ipaddr[0]
msg = ''
while 1:
d = conn.recv(1024)
2011-11-09 12:42:13 -08:00
msg += d
2011-12-06 03:48:51 -08:00
if not d:
break
if '#' in msg:
msg = msg.split('#', 1)[0]
2011-11-04 10:15:16 -07:00
break
2011-11-09 12:42:13 -08:00
try:
cmd, data = ast.literal_eval(msg)
2011-11-09 12:42:13 -08:00
except:
print "syntax error", repr(msg), ipaddr
2011-11-09 12:42:13 -08:00
conn.close()
return
2011-11-04 10:15:16 -07:00
2011-12-22 11:16:14 -08:00
out = do_command(cmd, data, ipaddr)
if out:
#print ipaddr, cmd, len(out)
2011-11-14 11:54:45 -08:00
try:
2011-12-22 11:16:14 -08:00
conn.send(out)
2011-11-14 11:54:45 -08:00
except:
2011-12-22 11:16:14 -08:00
print "error, could not send"
2011-11-14 11:54:45 -08:00
2011-12-22 11:16:14 -08:00
finally:
conn.close()
2011-12-22 14:34:50 -08:00
2011-11-04 10:15:16 -07:00
2012-03-16 15:54:45 -07:00
def timestr():
return time.strftime("[%d/%m/%Y-%H:%M:%S]")
2012-03-12 09:57:42 -07:00
# used by the native handler
2011-12-22 11:16:14 -08:00
def do_command(cmd, data, ipaddr):
2011-12-08 12:42:10 -08:00
2011-12-22 11:16:14 -08:00
if cmd=='b':
out = "%d"%block_number
2011-12-08 12:42:10 -08:00
2011-12-22 11:16:14 -08:00
elif cmd in ['session','new_session']:
try:
if cmd == 'session':
addresses = ast.literal_eval(data)
version = "old"
2011-11-16 09:09:57 -08:00
else:
2011-12-22 11:16:14 -08:00
version, addresses = ast.literal_eval(data)
if version[0]=="0": version = "v" + version
except:
print "error", data
return None
2012-03-16 15:54:45 -07:00
print timestr(), "new session", ipaddr, addresses[0] if addresses else addresses, len(addresses), version
out = new_session(version, addresses)
2011-12-08 06:35:20 -08:00
2012-03-17 03:58:00 -07:00
elif cmd=='address.subscribe':
try:
session_id, addr = ast.literal_eval(data)
except:
print "error"
return None
2012-03-17 15:33:38 -07:00
out = add_address_to_session(session_id,addr)
2012-03-17 03:58:00 -07:00
2011-12-22 11:16:14 -08:00
elif cmd=='update_session':
try:
session_id, addresses = ast.literal_eval(data)
except:
print "error"
return None
2012-03-16 15:54:45 -07:00
print timestr(), "update session", ipaddr, addresses[0] if addresses else addresses, len(addresses)
2011-12-23 05:51:54 -08:00
out = update_session(session_id,addresses)
2011-12-22 11:16:14 -08:00
elif cmd == 'bccapi_login':
import electrum
print "data",data
v, k = ast.literal_eval(data)
master_public_key = k.decode('hex') # todo: sanitize. no need to decode twice...
print master_public_key
wallet_id = random_string(10)
2012-01-19 08:27:53 -08:00
w = Wallet( Direct_Interface() )
2011-12-22 11:16:14 -08:00
w.master_public_key = master_public_key.decode('hex')
w.synchronize()
wallets[wallet_id] = w
out = wallet_id
print "wallets", wallets
elif cmd == 'bccapi_getAccountInfo':
2012-01-19 08:27:53 -08:00
from wallet import int_to_hex
2011-12-22 11:16:14 -08:00
v, wallet_id = ast.literal_eval(data)
w = wallets.get(wallet_id)
if w is not None:
num = len(w.addresses)
c, u = w.get_balance()
out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 )
out = out.decode('hex')
else:
print "error",data
out = "error"
elif cmd == 'bccapi_getAccountStatement':
2012-01-19 08:27:53 -08:00
from wallet import int_to_hex
2011-12-22 11:16:14 -08:00
v, wallet_id = ast.literal_eval(data)
w = wallets.get(wallet_id)
if w is not None:
num = len(w.addresses)
c, u = w.get_balance()
total_records = num_records = 0
out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 ) + int_to_hex( total_records ) + int_to_hex( num_records )
out = out.decode('hex')
else:
print "error",data
out = "error"
elif cmd == 'bccapi_getSendCoinForm':
out = ''
elif cmd == 'bccapi_submitTransaction':
out = ''
elif cmd=='poll':
2012-01-11 06:28:10 -08:00
out = poll_session(data)
2011-12-22 11:16:14 -08:00
elif cmd == 'h':
# history
address = data
out = repr( store.get_history( address ) )
elif cmd == 'load':
2011-12-22 14:34:50 -08:00
out = cmd_load(data)
2011-12-08 06:35:20 -08:00
2011-12-22 11:16:14 -08:00
elif cmd =='tx':
2012-01-14 20:44:28 -08:00
out = send_tx(data)
2012-03-16 15:54:45 -07:00
print timestr(), "sent tx:", ipaddr, out
2011-12-22 11:16:14 -08:00
elif cmd == 'stop':
2011-12-22 14:34:50 -08:00
out = cmd_stop(data)
2011-11-04 10:15:16 -07:00
2011-12-22 11:16:14 -08:00
elif cmd == 'peers':
out = repr(peer_list.values())
else:
out = None
return out
2011-11-04 10:15:16 -07:00
2012-03-12 09:57:42 -07:00
####################################################################
def tcp_server_thread():
2012-03-13 08:41:54 -07:00
thread.start_new_thread(process_input_queue, ())
thread.start_new_thread(process_output_queue, ())
2012-03-12 09:57:42 -07:00
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((config.get('server','host'), 50001))
s.listen(1)
while not stopping:
conn, addr = s.accept()
try:
thread.start_new_thread(tcp_client_thread, (addr, conn,))
except:
# can't start new thread if there is no memory..
traceback.print_exc(file=sys.stdout)
2012-03-14 06:56:27 -07:00
def close_session(session_id):
2012-03-17 15:33:38 -07:00
#print "lost connection", session_id
2012-03-14 00:59:34 -07:00
sessions.pop(session_id)
2012-03-14 06:56:27 -07:00
if session_id in sessions_sub_numblocks:
2012-03-16 15:54:45 -07:00
sessions_sub_numblocks.pop(session_id)
2012-03-14 00:59:34 -07:00
2012-03-13 08:41:54 -07:00
# one thread per client. put requests in a queue.
2012-03-12 09:57:42 -07:00
def tcp_client_thread(ipaddr,conn):
""" use a persistent connection. put commands in a queue."""
2012-03-16 15:54:45 -07:00
print timestr(), "TCP session", ipaddr
2012-03-12 09:57:42 -07:00
global sessions
session_id = random_string(10)
2012-03-16 16:46:23 -07:00
sessions[session_id] = { 'conn':conn, 'addresses':{}, 'version':'unknown', 'type':'persistent' }
2012-03-12 09:57:42 -07:00
ipaddr = ipaddr[0]
msg = ''
2012-03-13 08:41:54 -07:00
while not stopping:
2012-03-15 05:18:07 -07:00
try:
d = conn.recv(1024)
except socket.error:
d = ''
2012-03-13 15:04:48 -07:00
if not d:
2012-03-14 06:56:27 -07:00
close_session(session_id)
2012-03-13 15:04:48 -07:00
break
2012-03-15 05:18:07 -07:00
msg += d
2012-03-12 09:57:42 -07:00
while True:
s = msg.find('\n')
if s ==-1:
break
else:
2012-03-14 14:16:55 -07:00
c = msg[0:s].strip()
2012-03-12 09:57:42 -07:00
msg = msg[s+1:]
2012-03-14 14:16:55 -07:00
if c == 'quit':
conn.close()
close_session(session_id)
return
try:
c = json.loads(c)
except:
print "json error", repr(c)
continue
2012-03-12 09:57:42 -07:00
try:
2012-03-16 15:54:45 -07:00
message_id = c.get('id')
method = c.get('method')
params = c.get('params')
2012-03-12 09:57:42 -07:00
except:
print "syntax error", repr(c), ipaddr
continue
2012-03-13 08:41:54 -07:00
# add to queue
2012-03-16 15:54:45 -07:00
input_queue.put((session_id, message_id, method, params))
2012-03-13 08:41:54 -07:00
2012-03-14 14:16:55 -07:00
2012-03-13 08:41:54 -07:00
# read commands from the input queue. perform requests, etc. this should be called from the main thread.
def process_input_queue():
while not stopping:
2012-03-16 15:54:45 -07:00
session_id, message_id, method, data = input_queue.get()
2012-03-14 06:56:27 -07:00
if session_id not in sessions.keys():
continue
2012-03-13 08:41:54 -07:00
out = None
2012-03-16 15:54:45 -07:00
if method == 'address.subscribe':
address = data[0]
subscribe_to_address(session_id,message_id,address)
elif method == 'numblocks.subscribe':
subscribe_to_numblocks(session_id,message_id)
elif method == 'client.version':
sessions[session_id]['version'] = data[0]
elif method == 'server.banner':
out = { 'result':config.get('server','banner').replace('\\n','\n') }
elif method == 'server.peers':
out = { 'result':peer_list.values() }
elif method == 'address.get_history':
address = data[0]
out = { 'result':store.get_history( address ) }
elif method == 'transaction.broadcast':
2012-03-16 16:46:23 -07:00
postdata = dumps({"method": 'importtransaction', 'params': [data], 'id':'jsonrpc'})
txo = urllib.urlopen(bitcoind_url, postdata).read()
2012-03-13 15:04:48 -07:00
print "sent tx:", txo
2012-03-16 16:46:23 -07:00
out = json.loads(txo)
2012-03-13 08:41:54 -07:00
else:
2012-03-16 15:54:45 -07:00
print "unknown command", method
2012-03-13 08:41:54 -07:00
if out:
2012-03-16 15:54:45 -07:00
out['id'] = message_id
out = json.dumps( out )
2012-03-13 08:41:54 -07:00
output_queue.put((session_id, out))
2012-03-12 09:57:42 -07:00
2012-03-13 08:41:54 -07:00
# this is a separate thread
def process_output_queue():
while not stopping:
session_id, out = output_queue.get()
session = sessions.get(session_id)
if session:
2012-03-14 00:59:34 -07:00
try:
conn = session.get('conn')
conn.send(out+'\n')
except:
close_session(session_id)
2012-03-12 09:57:42 -07:00
####################################################################
2011-11-04 10:15:16 -07:00
2011-11-14 14:05:52 -08:00
def clean_session_thread():
2011-11-16 09:09:57 -08:00
while not stopping:
time.sleep(30)
t = time.time()
2011-12-09 10:29:14 -08:00
for k,s in sessions.items():
2012-03-16 16:46:23 -07:00
if s.get('type') == 'persistent': continue
2011-12-09 10:29:14 -08:00
t0 = s['last_time']
2011-12-05 08:37:19 -08:00
if t - t0 > 5*60:
sessions.pop(k)
2012-03-13 15:04:48 -07:00
print "lost session", k
2011-11-14 14:05:52 -08:00
2011-11-16 09:09:57 -08:00
def irc_thread():
global peer_list
NICK = 'E_'+random_string(10)
while not stopping:
try:
s = socket.socket()
s.connect(('irc.freenode.net', 6667))
s.send('USER electrum 0 * :'+config.get('server','host')+' '+config.get('server','ircname')+'\n')
2011-11-23 02:16:36 -08:00
s.send('NICK '+NICK+'\n')
2011-11-16 09:09:57 -08:00
s.send('JOIN #electrum\n')
sf = s.makefile('r', 0)
2011-11-16 09:09:57 -08:00
t = 0
while not stopping:
line = sf.readline()
2011-11-16 09:09:57 -08:00
line = line.rstrip('\r\n')
line = line.split()
if line[0]=='PING':
s.send('PONG '+line[1]+'\n')
elif '353' in line: # answer to /names
k = line.index('353')
for item in line[k+1:]:
2011-11-16 09:09:57 -08:00
if item[0:2] == 'E_':
s.send('WHO %s\n'%item)
elif '352' in line: # answer to /who
# warning: this is a horrible hack which apparently works
k = line.index('352')
ip = line[k+4]
ip = socket.gethostbyname(ip)
name = line[k+6]
host = line[k+9]
peer_list[name] = (ip,host)
if time.time() - t > 5*60:
2011-11-16 09:09:57 -08:00
s.send('NAMES #electrum\n')
t = time.time()
2011-12-03 02:50:49 -08:00
peer_list = {}
2011-11-16 09:09:57 -08:00
except:
traceback.print_exc(file=sys.stdout)
finally:
sf.close()
2011-11-16 09:09:57 -08:00
s.close()
2011-11-14 14:05:52 -08:00
2012-03-19 11:19:36 -07:00
def get_peers_json(_,__):
return peer_list.values()
2011-12-22 14:34:50 -08:00
2012-03-19 22:36:10 -07:00
def http_server_thread():
2011-12-22 14:34:50 -08:00
# see http://code.google.com/p/jsonrpclib/
2011-12-23 02:59:20 -08:00
from SocketServer import ThreadingMixIn
2012-03-19 11:19:36 -07:00
from StratumJSONRPCServer import StratumJSONRPCServer
class StratumThreadedJSONRPCServer(ThreadingMixIn, StratumJSONRPCServer): pass
server = StratumThreadedJSONRPCServer(( config.get('server','host'), 8081))
server.register_function(get_peers_json, 'server.peers')
2011-12-22 14:34:50 -08:00
server.register_function(cmd_stop, 'stop')
server.register_function(cmd_load, 'load')
2012-03-17 15:33:38 -07:00
server.register_function(get_banner, 'server.banner')
2012-03-19 11:26:28 -07:00
server.register_function(lambda a,b,c: send_tx(c), 'transaction.broadcast')
2012-03-19 11:19:36 -07:00
server.register_function(address_get_history_json, 'address.get_history')
server.register_function(add_address_to_session_json, 'address.subscribe')
server.register_function(subscribe_to_numblocks_json, 'numblocks.subscribe')
server.register_function(client_version_json, 'client.version')
2012-03-19 11:26:28 -07:00
server.register_function(create_session_json, 'session.create') # internal message (not part of protocol)
server.register_function(poll_session_json, 'session.poll') # internal message (not part of protocol)
2011-12-22 14:34:50 -08:00
server.serve_forever()
2011-11-04 10:15:16 -07:00
import traceback
if __name__ == '__main__':
if len(sys.argv)>1:
2011-12-22 14:34:50 -08:00
import jsonrpclib
2011-12-26 01:00:14 -08:00
server = jsonrpclib.Server('http://%s:8081'%config.get('server','host'))
2011-11-16 09:09:57 -08:00
cmd = sys.argv[1]
if cmd == 'load':
2011-12-22 14:34:50 -08:00
out = server.load(password)
2011-11-16 09:09:57 -08:00
elif cmd == 'peers':
2012-03-19 11:19:36 -07:00
out = server.server.peers()
2011-11-16 09:09:57 -08:00
elif cmd == 'stop':
2011-12-22 14:34:50 -08:00
out = server.stop(password)
2011-12-08 06:35:20 -08:00
elif cmd == 'clear_cache':
2011-12-22 14:34:50 -08:00
out = server.clear_cache(password)
2011-12-08 06:35:20 -08:00
elif cmd == 'get_cache':
2011-12-22 14:34:50 -08:00
out = server.get_cache(password,sys.argv[2])
elif cmd == 'h':
2012-03-17 03:58:00 -07:00
out = server.address.get_history(sys.argv[2])
2011-12-23 02:14:37 -08:00
elif cmd == 'tx':
2012-03-17 03:58:00 -07:00
out = server.transaction.broadcast(sys.argv[2])
2011-12-04 04:22:25 -08:00
elif cmd == 'b':
2012-03-19 11:19:36 -07:00
out = server.numblocks.subscribe()
else:
out = "Unknown command: '%s'" % cmd
print out
sys.exit(0)
2012-03-19 22:28:37 -07:00
# backend
import db
store = db.MyStore(config,address_queue)
2011-12-05 08:37:19 -08:00
2011-11-04 10:15:16 -07:00
2012-03-12 09:57:42 -07:00
# supported protocols
thread.start_new_thread(native_server_thread, ())
thread.start_new_thread(tcp_server_thread, ())
2012-03-19 22:36:10 -07:00
thread.start_new_thread(http_server_thread, ())
thread.start_new_thread(clean_session_thread, ())
2012-03-13 15:04:48 -07:00
if (config.get('server','irc') == 'yes' ):
thread.start_new_thread(irc_thread, ())
2011-11-04 10:15:16 -07:00
2012-03-19 22:28:37 -07:00
print "starting Electrum server"
2011-11-16 09:09:57 -08:00
while not stopping:
2012-03-19 22:28:37 -07:00
block_number = store.main_iteration()
2012-03-13 15:04:48 -07:00
2012-03-19 22:28:37 -07:00
if block_number != old_block_number:
old_block_number = block_number
for session_id in sessions_sub_numblocks.keys():
send_numblocks(session_id)
2012-03-13 15:04:48 -07:00
# do addresses
while True:
try:
addr = address_queue.get(False)
except:
break
do_update_address(addr)
2011-11-04 10:15:16 -07:00
time.sleep(10)
2011-11-16 09:09:57 -08:00
print "server stopped"