overload import_block
[electrum-server.git] / server.py
1 #!/usr/bin/env python
2 # Copyright(C) 2011 thomasv@gitorious
3
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as
6 # published by the Free Software Foundation, either version 3 of the
7 # License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public
15 # License along with this program.  If not, see
16 # <http://www.gnu.org/licenses/agpl.html>.
17
18 """
19 Todo:
20    * server should check and return bitcoind status..
21    * improve txpoint sorting
22    * command to check cache
23
24  mempool transactions do not need to be added to the database; it slows it down
25 """
26
27
28 import time, json, socket, operator, thread, ast, sys,re
29 import psycopg2, binascii
30
31 from Abe.abe import hash_to_address, decode_check_address
32 from Abe.DataStore import DataStore as Datastore_class
33 from Abe import DataStore, readconf, BCDataStream,  deserialize, util, base58
34
35 import ConfigParser
36 from json import dumps, loads
37 import urllib
38
39 # we need to import electrum
40 sys.path.append('../client/')
41 from wallet import Wallet
42 from interface import Interface
43
44
45 config = ConfigParser.ConfigParser()
46 # set some defaults, which will be overwritten by the config file
47 config.add_section('server')
48 config.set('server','banner', 'Welcome to Electrum!')
49 config.set('server', 'host', 'localhost')
50 config.set('server', 'port', 50000)
51 config.set('server', 'password', '')
52 config.set('server', 'irc', 'yes')
53 config.set('server', 'ircname', 'Electrum server')
54 config.add_section('database')
55 config.set('database', 'type', 'psycopg2')
56 config.set('database', 'database', 'abe')
57
58 try:
59     f = open('/etc/electrum.conf','r')
60     config.readfp(f)
61     f.close()
62 except:
63     print "Could not read electrum.conf. I will use the default values."
64
65 try:
66     f = open('/etc/electrum.banner','r')
67     config.set('server','banner', f.read())
68     f.close()
69 except:
70     pass
71
72 password = config.get('server','password')
73 bitcoind_url = 'http://%s:%s@%s:%s/' % ( config.get('bitcoind','user'), config.get('bitcoind','password'), config.get('bitcoind','host'), config.get('bitcoind','port'))
74
75 stopping = False
76 block_number = -1
77 old_block_number = -1
78 sessions = {}
79 sessions_sub_numblocks = [] # sessions that have subscribed to the service
80
81 dblock = thread.allocate_lock()
82 peer_list = {}
83
84 wallets = {} # for ultra-light clients such as bccapi
85
86 from Queue import Queue
87 input_queue = Queue()
88 output_queue = Queue()
89 address_queue = Queue()
90
91 class MyStore(Datastore_class):
92
93     def import_block(self, b, chain_ids=frozenset()):
94         block_id = super(MyStore, self).import_block(b, chain_ids)
95         print "import block", block_id
96         for pos in xrange(len(b['transactions'])):
97             tx = b['transactions'][pos]
98             if 'hash' not in tx:
99                 tx['hash'] = util.double_sha256(tx['tx'])
100             tx_id = store.tx_find_id_and_value(tx)
101             if tx_id:
102                 self.update_tx_cache(tx_id)
103             else:
104                 print "error: import_block: no tx_id"
105         return block_id
106
107
108     def update_tx_cache(self, txid):
109         inrows = self.get_tx_inputs(txid, False)
110         for row in inrows:
111             _hash = store.binout(row[6])
112             address = hash_to_address(chr(0), _hash)
113             if self.tx_cache.has_key(address):
114                 print "cache: invalidating", address
115                 self.tx_cache.pop(address)
116             address_queue.put(address)
117
118         outrows = self.get_tx_outputs(txid, False)
119         for row in outrows:
120             _hash = store.binout(row[6])
121             address = hash_to_address(chr(0), _hash)
122             if self.tx_cache.has_key(address):
123                 print "cache: invalidating", address
124                 self.tx_cache.pop(address)
125             address_queue.put(address)
126
127     def safe_sql(self,sql, params=(), lock=True):
128         try:
129             if lock: dblock.acquire()
130             ret = self.selectall(sql,params)
131             if lock: dblock.release()
132             return ret
133         except:
134             print "sql error", sql
135             return []
136
137     def get_tx_outputs(self, tx_id, lock=True):
138         return self.safe_sql("""SELECT
139                 txout.txout_pos,
140                 txout.txout_scriptPubKey,
141                 txout.txout_value,
142                 nexttx.tx_hash,
143                 nexttx.tx_id,
144                 txin.txin_pos,
145                 pubkey.pubkey_hash
146               FROM txout
147               LEFT JOIN txin ON (txin.txout_id = txout.txout_id)
148               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
149               LEFT JOIN tx nexttx ON (txin.tx_id = nexttx.tx_id)
150              WHERE txout.tx_id = %d 
151              ORDER BY txout.txout_pos
152         """%(tx_id), (), lock)
153
154     def get_tx_inputs(self, tx_id, lock=True):
155         return self.safe_sql(""" SELECT
156                 txin.txin_pos,
157                 txin.txin_scriptSig,
158                 txout.txout_value,
159                 COALESCE(prevtx.tx_hash, u.txout_tx_hash),
160                 prevtx.tx_id,
161                 COALESCE(txout.txout_pos, u.txout_pos),
162                 pubkey.pubkey_hash
163               FROM txin
164               LEFT JOIN txout ON (txout.txout_id = txin.txout_id)
165               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
166               LEFT JOIN tx prevtx ON (txout.tx_id = prevtx.tx_id)
167               LEFT JOIN unlinked_txin u ON (u.txin_id = txin.txin_id)
168              WHERE txin.tx_id = %d
169              ORDER BY txin.txin_pos
170              """%(tx_id,), (), lock)
171
172     def get_address_out_rows(self, dbhash):
173         return self.safe_sql(""" SELECT
174                 b.block_nTime,
175                 cc.chain_id,
176                 b.block_height,
177                 1,
178                 b.block_hash,
179                 tx.tx_hash,
180                 tx.tx_id,
181                 txin.txin_pos,
182                 -prevout.txout_value
183               FROM chain_candidate cc
184               JOIN block b ON (b.block_id = cc.block_id)
185               JOIN block_tx ON (block_tx.block_id = b.block_id)
186               JOIN tx ON (tx.tx_id = block_tx.tx_id)
187               JOIN txin ON (txin.tx_id = tx.tx_id)
188               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
189               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
190              WHERE pubkey.pubkey_hash = ?
191                AND cc.in_longest = 1""", (dbhash,))
192
193     def get_address_out_rows_memorypool(self, dbhash):
194         return self.safe_sql(""" SELECT
195                 1,
196                 tx.tx_hash,
197                 tx.tx_id,
198                 txin.txin_pos,
199                 -prevout.txout_value
200               FROM tx 
201               JOIN txin ON (txin.tx_id = tx.tx_id)
202               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
203               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
204              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
205
206     def get_address_in_rows(self, dbhash):
207         return self.safe_sql(""" SELECT
208                 b.block_nTime,
209                 cc.chain_id,
210                 b.block_height,
211                 0,
212                 b.block_hash,
213                 tx.tx_hash,
214                 tx.tx_id,
215                 txout.txout_pos,
216                 txout.txout_value
217               FROM chain_candidate cc
218               JOIN block b ON (b.block_id = cc.block_id)
219               JOIN block_tx ON (block_tx.block_id = b.block_id)
220               JOIN tx ON (tx.tx_id = block_tx.tx_id)
221               JOIN txout ON (txout.tx_id = tx.tx_id)
222               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
223              WHERE pubkey.pubkey_hash = ?
224                AND cc.in_longest = 1""", (dbhash,))
225
226     def get_address_in_rows_memorypool(self, dbhash):
227         return self.safe_sql( """ SELECT
228                 0,
229                 tx.tx_hash,
230                 tx.tx_id,
231                 txout.txout_pos,
232                 txout.txout_value
233               FROM tx
234               JOIN txout ON (txout.tx_id = tx.tx_id)
235               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
236              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
237
238     def get_history(self, addr):
239         
240         cached_version = self.tx_cache.get( addr )
241         if cached_version is not None:
242             return cached_version
243
244         version, binaddr = decode_check_address(addr)
245         if binaddr is None:
246             return None
247
248         dbhash = self.binin(binaddr)
249         rows = []
250         rows += self.get_address_out_rows( dbhash )
251         rows += self.get_address_in_rows( dbhash )
252
253         txpoints = []
254         known_tx = []
255
256         for row in rows:
257             try:
258                 nTime, chain_id, height, is_in, blk_hash, tx_hash, tx_id, pos, value = row
259             except:
260                 print "cannot unpack row", row
261                 break
262             tx_hash = self.hashout_hex(tx_hash)
263             txpoint = {
264                     "nTime":    int(nTime),
265                     "height":   int(height),
266                     "is_in":    int(is_in),
267                     "blk_hash": self.hashout_hex(blk_hash),
268                     "tx_hash":  tx_hash,
269                     "tx_id":    int(tx_id),
270                     "pos":      int(pos),
271                     "value":    int(value),
272                     }
273
274             txpoints.append(txpoint)
275             known_tx.append(self.hashout_hex(tx_hash))
276
277
278         # todo: sort them really...
279         txpoints = sorted(txpoints, key=operator.itemgetter("nTime"))
280
281         # read memory pool
282         rows = []
283         rows += self.get_address_in_rows_memorypool( dbhash )
284         rows += self.get_address_out_rows_memorypool( dbhash )
285         address_has_mempool = False
286
287         for row in rows:
288             is_in, tx_hash, tx_id, pos, value = row
289             tx_hash = self.hashout_hex(tx_hash)
290             if tx_hash in known_tx:
291                 continue
292
293             # this means that pending transactions were added to the db, even if they are not returned by getmemorypool
294             address_has_mempool = True
295
296             # this means pending transactions are returned by getmemorypool
297             if tx_hash not in self.mempool_keys:
298                 continue
299
300             #print "mempool", tx_hash
301             txpoint = {
302                     "nTime":    0,
303                     "height":   0,
304                     "is_in":    int(is_in),
305                     "blk_hash": 'mempool', 
306                     "tx_hash":  tx_hash,
307                     "tx_id":    int(tx_id),
308                     "pos":      int(pos),
309                     "value":    int(value),
310                     }
311             txpoints.append(txpoint)
312
313
314         for txpoint in txpoints:
315             tx_id = txpoint['tx_id']
316             
317             txinputs = []
318             inrows = self.get_tx_inputs(tx_id)
319             for row in inrows:
320                 _hash = self.binout(row[6])
321                 address = hash_to_address(chr(0), _hash)
322                 txinputs.append(address)
323             txpoint['inputs'] = txinputs
324             txoutputs = []
325             outrows = self.get_tx_outputs(tx_id)
326             for row in outrows:
327                 _hash = self.binout(row[6])
328                 address = hash_to_address(chr(0), _hash)
329                 txoutputs.append(address)
330             txpoint['outputs'] = txoutputs
331
332             # for all unspent inputs, I want their scriptpubkey. (actually I could deduce it from the address)
333             if not txpoint['is_in']:
334                 # detect if already redeemed...
335                 for row in outrows:
336                     if row[6] == dbhash: break
337                 else:
338                     raise
339                 #row = self.get_tx_output(tx_id,dbhash)
340                 # pos, script, value, o_hash, o_id, o_pos, binaddr = row
341                 # if not redeemed, we add the script
342                 if row:
343                     if not row[4]: txpoint['raw_scriptPubKey'] = row[1]
344
345         # cache result
346         if not address_has_mempool:
347             self.tx_cache[addr] = txpoints
348         
349         return txpoints
350
351
352
353 class Direct_Interface(Interface):
354     def __init__(self):
355         pass
356
357     def handler(self, method, params = ''):
358         cmds = {'session.new':new_session,
359                 'session.poll':poll_session,
360                 'session.update':update_session,
361                 'blockchain.transaction.broadcast':send_tx,
362                 'blockchain.address.get_history':store.get_history
363                 }
364         func = cmds[method]
365         return func( params )
366
367
368
369 def send_tx(tx):
370     postdata = dumps({"method": 'importtransaction', 'params': [tx], 'id':'jsonrpc'})
371     respdata = urllib.urlopen(bitcoind_url, postdata).read()
372     r = loads(respdata)
373     if r['error'] != None:
374         out = "error: transaction rejected by memorypool\n"+tx
375     else:
376         out = r['result']
377     return out
378
379
380
381 def random_string(N):
382     import random, string
383     return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N))
384
385     
386
387 def cmd_stop(data):
388     global stopping
389     if password == data:
390         stopping = True
391         return 'ok'
392     else:
393         return 'wrong password'
394
395 def cmd_load(pw):
396     if password == pw:
397         return repr( len(sessions) )
398     else:
399         return 'wrong password'
400
401
402 def clear_cache(pw):
403     if password == pw:
404         store.tx_cache = {}
405         return 'ok'
406     else:
407         return 'wrong password'
408
409 def get_cache(pw,addr):
410     if password == pw:
411         return store.tx_cache.get(addr)
412     else:
413         return 'wrong password'
414
415
416 def poll_session(session_id):
417     session = sessions.get(session_id)
418     if session is None:
419         print time.asctime(), "session not found", session_id
420         out = repr( (-1, {}))
421     else:
422         t1 = time.time()
423         addresses = session['addresses']
424         session['last_time'] = time.time()
425         ret = {}
426         k = 0
427         for addr in addresses:
428             if store.tx_cache.get( addr ) is not None: k += 1
429             status = get_address_status( addr )
430             last_status = addresses.get( addr )
431             if last_status != status:
432                 addresses[addr] = status
433                 ret[addr] = status
434         if ret:
435             sessions[session_id]['addresses'] = addresses
436         out = repr( (block_number, ret ) )
437         t2 = time.time() - t1 
438         if t2 > 10:
439             print "high load:", session_id, "%d/%d"%(k,len(addresses)), t2
440
441         return out
442
443
444 def do_update_address(addr):
445     # an address was involved in a transaction; we check if it was subscribed to in a session
446     # the address can be subscribed in several sessions; the cache should ensure that we don't do redundant requests
447     for session_id in sessions.keys():
448         session = sessions[session_id]
449         if session.get('type') != 'subscribe': continue
450         addresses = session['addresses'].keys()
451
452         if addr in addresses:
453             print "address ", addr, "is watched by", session_id
454             status = get_address_status( addr )
455             last_status = session['addresses'][addr]
456             if last_status != status:
457                 print "sending new status for %s:"%addr, status
458                 send_status(session_id,addr,status)
459                 sessions[session_id]['addresses'][addr] = status
460
461
462 def get_address_status(addr):
463     # get address status, i.e. the last block for that address.
464     tx_points = store.get_history(addr)
465     if not tx_points:
466         status = None
467     else:
468         lastpoint = tx_points[-1]
469         status = lastpoint['blk_hash']
470         # this is a temporary hack; move it up once old clients have disappeared
471         if status == 'mempool': # and session['version'] != "old":
472             status = status + ':%d'% len(tx_points)
473     return status
474
475
476 def send_numblocks(session_id):
477     out = json.dumps( {'method':'numblocks.subscribe', 'result':block_number} )
478     output_queue.put((session_id, out))
479
480 def send_status(session_id, address, status):
481     out = json.dumps( { 'method':'address.subscribe', 'address':address, 'status':status } )
482     output_queue.put((session_id, out))
483
484 def subscribe_to_numblocks(session_id):
485     sessions_sub_numblocks.append(session_id)
486     send_numblocks(session_id)
487
488 def subscribe_to_address(session_id, address):
489     status = get_address_status(address)
490     sessions[session_id]['type'] = 'subscribe'
491     sessions[session_id]['addresses'][address] = status
492     sessions[session_id]['last_time'] = time.time()
493     send_status(session_id, address, status)
494
495 def new_session(version, addresses):
496     session_id = random_string(10)
497     sessions[session_id] = { 'addresses':{}, 'version':version }
498     for a in addresses:
499         sessions[session_id]['addresses'][a] = ''
500     out = repr( (session_id, config.get('server','banner').replace('\\n','\n') ) )
501     sessions[session_id]['last_time'] = time.time()
502     return out
503
504 def update_session(session_id,addresses):
505     sessions[session_id]['addresses'] = {}
506     for a in addresses:
507         sessions[session_id]['addresses'][a] = ''
508     sessions[session_id]['last_time'] = time.time()
509     return 'ok'
510
511 def native_server_thread():
512     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
513     s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
514     s.bind((config.get('server','host'), config.getint('server','port')))
515     s.listen(1)
516     while not stopping:
517         conn, addr = s.accept()
518         try:
519             thread.start_new_thread(native_client_thread, (addr, conn,))
520         except:
521             # can't start new thread if there is no memory..
522             traceback.print_exc(file=sys.stdout)
523
524
525 def native_client_thread(ipaddr,conn):
526     #print "client thread", ipaddr
527     try:
528         ipaddr = ipaddr[0]
529         msg = ''
530         while 1:
531             d = conn.recv(1024)
532             msg += d
533             if not d: 
534                 break
535             if '#' in msg:
536                 msg = msg.split('#', 1)[0]
537                 break
538         try:
539             cmd, data = ast.literal_eval(msg)
540         except:
541             print "syntax error", repr(msg), ipaddr
542             conn.close()
543             return
544
545         out = do_command(cmd, data, ipaddr)
546         if out:
547             #print ipaddr, cmd, len(out)
548             try:
549                 conn.send(out)
550             except:
551                 print "error, could not send"
552
553     finally:
554         conn.close()
555
556
557
558 # used by the native handler
559 def do_command(cmd, data, ipaddr):
560
561     timestr = time.strftime("[%d/%m/%Y-%H:%M:%S]")
562
563     if cmd=='b':
564         out = "%d"%block_number
565
566     elif cmd in ['session','new_session']:
567         try:
568             if cmd == 'session':
569                 addresses = ast.literal_eval(data)
570                 version = "old"
571             else:
572                 version, addresses = ast.literal_eval(data)
573                 if version[0]=="0": version = "v" + version
574         except:
575             print "error", data
576             return None
577         print timestr, "new session", ipaddr, addresses[0] if addresses else addresses, len(addresses), version
578         out = new_session(version, addresses)
579
580     elif cmd=='update_session':
581         try:
582             session_id, addresses = ast.literal_eval(data)
583         except:
584             print "error"
585             return None
586         print timestr, "update session", ipaddr, addresses[0] if addresses else addresses, len(addresses)
587         out = update_session(session_id,addresses)
588
589     elif cmd == 'bccapi_login':
590         import electrum
591         print "data",data
592         v, k = ast.literal_eval(data)
593         master_public_key = k.decode('hex') # todo: sanitize. no need to decode twice...
594         print master_public_key
595         wallet_id = random_string(10)
596         w = Wallet( Direct_Interface() )
597         w.master_public_key = master_public_key.decode('hex')
598         w.synchronize()
599         wallets[wallet_id] = w
600         out = wallet_id
601         print "wallets", wallets
602
603     elif cmd == 'bccapi_getAccountInfo':
604         from wallet import int_to_hex
605         v, wallet_id = ast.literal_eval(data)
606         w = wallets.get(wallet_id)
607         if w is not None:
608             num = len(w.addresses)
609             c, u = w.get_balance()
610             out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 )
611             out = out.decode('hex')
612         else:
613             print "error",data
614             out = "error"
615
616     elif cmd == 'bccapi_getAccountStatement':
617         from wallet import int_to_hex
618         v, wallet_id = ast.literal_eval(data)
619         w = wallets.get(wallet_id)
620         if w is not None:
621             num = len(w.addresses)
622             c, u = w.get_balance()
623             total_records = num_records = 0
624             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 )
625             out = out.decode('hex')
626         else:
627             print "error",data
628             out = "error"
629
630     elif cmd == 'bccapi_getSendCoinForm':
631         out = ''
632
633     elif cmd == 'bccapi_submitTransaction':
634         out = ''
635             
636     elif cmd=='poll': 
637         out = poll_session(data)
638
639     elif cmd == 'h': 
640         # history
641         address = data
642         out = repr( store.get_history( address ) )
643
644     elif cmd == 'load': 
645         out = cmd_load(data)
646
647     elif cmd =='tx':
648         out = send_tx(data)
649         print timestr, "sent tx:", ipaddr, out
650
651     elif cmd == 'stop':
652         out = cmd_stop(data)
653
654     elif cmd == 'peers':
655         out = repr(peer_list.values())
656
657     else:
658         out = None
659
660     return out
661
662
663
664 ####################################################################
665
666 def tcp_server_thread():
667     thread.start_new_thread(process_input_queue, ())
668     thread.start_new_thread(process_output_queue, ())
669
670     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
671     s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
672     s.bind((config.get('server','host'), 50001))
673     s.listen(1)
674     while not stopping:
675         conn, addr = s.accept()
676         try:
677             thread.start_new_thread(tcp_client_thread, (addr, conn,))
678         except:
679             # can't start new thread if there is no memory..
680             traceback.print_exc(file=sys.stdout)
681
682
683 def close_session(session_id):
684     print "lost connection", session_id
685     sessions.pop(session_id)
686     if session_id in sessions_sub_numblocks:
687         sessions_sub_numblocks.remove(session_id)
688
689
690 # one thread per client. put requests in a queue.
691 def tcp_client_thread(ipaddr,conn):
692     """ use a persistent connection. put commands in a queue."""
693     print "persistent client thread", ipaddr
694     global sessions
695
696     session_id = random_string(10)
697     sessions[session_id] = { 'conn':conn, 'addresses':{}, 'version':'unknown' }
698
699     ipaddr = ipaddr[0]
700     msg = ''
701
702     while not stopping:
703         try:
704             d = conn.recv(1024)
705         except socket.error:
706             d = ''
707         if not d:
708             close_session(session_id)
709             break
710
711         msg += d
712         while True:
713             s = msg.find('\n')
714             if s ==-1:
715                 break
716             else:
717                 c = msg[0:s].strip()
718                 msg = msg[s+1:]
719                 if c == 'quit': 
720                     conn.close()
721                     close_session(session_id)
722                     return
723                 try:
724                     c = json.loads(c)
725                 except:
726                     print "json error", repr(c)
727                     continue
728                 try:
729                     cmd = c.get('method')
730                     data = c.get('params')
731                 except:
732                     print "syntax error", repr(c), ipaddr
733                     continue
734
735                 # add to queue
736                 input_queue.put((session_id, cmd, data))
737
738
739
740 # read commands from the input queue. perform requests, etc. this should be called from the main thread.
741 def process_input_queue():
742     while not stopping:
743         session_id, cmd, data = input_queue.get()
744         if session_id not in sessions.keys():
745             continue
746         out = None
747         if cmd == 'address.subscribe':
748             subscribe_to_address(session_id,data)
749         elif cmd == 'numblocks.subscribe':
750             subscribe_to_numblocks(session_id)
751         elif cmd == 'client.version':
752             sessions[session_id]['version'] = data
753         elif cmd == 'server.banner':
754             out = json.dumps( { 'method':'server.banner', 'result':config.get('server','banner').replace('\\n','\n') } )
755         elif cmd == 'server.peers':
756             out = json.dumps( { 'method':'server.peers', 'result':peer_list.values() } )
757         elif cmd == 'address.get_history':
758             address = data
759             out = json.dumps( { 'method':'address.get_history', 'address':address, 'result':store.get_history( address ) } )
760         elif cmd == 'transaction.broadcast':
761             txo = send_tx(data)
762             print "sent tx:", txo
763             out = json.dumps( { 'method':'transaction.broadcast', 'result':txo } )
764         else:
765             print "unknown command", cmd
766         if out:
767             output_queue.put((session_id, out))
768
769 # this is a separate thread
770 def process_output_queue():
771     while not stopping:
772         session_id, out = output_queue.get()
773         session = sessions.get(session_id)
774         if session: 
775             try:
776                 conn = session.get('conn')
777                 conn.send(out+'\n')
778             except:
779                 close_session(session_id)
780                 
781
782
783
784 ####################################################################
785
786
787 def memorypool_update(store):
788
789     ds = BCDataStream.BCDataStream()
790     previous_transactions = store.mempool_keys
791     store.mempool_keys = []
792
793     postdata = dumps({"method": 'getmemorypool', 'params': [], 'id':'jsonrpc'})
794     respdata = urllib.urlopen(bitcoind_url, postdata).read()
795     r = loads(respdata)
796     if r['error'] != None:
797         return
798
799     v = r['result'].get('transactions')
800     for hextx in v:
801         ds.clear()
802         ds.write(hextx.decode('hex'))
803         tx = deserialize.parse_Transaction(ds)
804         tx['hash'] = util.double_sha256(tx['tx'])
805         tx_hash = store.hashin(tx['hash'])
806
807         store.mempool_keys.append(tx_hash)
808         if store.tx_find_id_and_value(tx):
809             pass
810         else:
811             tx_id = store.import_tx(tx, False)
812             store.update_tx_cache(tx_id)
813
814     store.commit()
815
816
817 def clean_session_thread():
818     while not stopping:
819         time.sleep(30)
820         t = time.time()
821         for k,s in sessions.items():
822             if s.get('type') == 'subscribe': continue
823             t0 = s['last_time']
824             if t - t0 > 5*60:
825                 sessions.pop(k)
826                 print "lost session", k
827             
828
829 def irc_thread():
830     global peer_list
831     NICK = 'E_'+random_string(10)
832     while not stopping:
833         try:
834             s = socket.socket()
835             s.connect(('irc.freenode.net', 6667))
836             s.send('USER electrum 0 * :'+config.get('server','host')+' '+config.get('server','ircname')+'\n')
837             s.send('NICK '+NICK+'\n')
838             s.send('JOIN #electrum\n')
839             sf = s.makefile('r', 0)
840             t = 0
841             while not stopping:
842                 line = sf.readline()
843                 line = line.rstrip('\r\n')
844                 line = line.split()
845                 if line[0]=='PING': 
846                     s.send('PONG '+line[1]+'\n')
847                 elif '353' in line: # answer to /names
848                     k = line.index('353')
849                     for item in line[k+1:]:
850                         if item[0:2] == 'E_':
851                             s.send('WHO %s\n'%item)
852                 elif '352' in line: # answer to /who
853                     # warning: this is a horrible hack which apparently works
854                     k = line.index('352')
855                     ip = line[k+4]
856                     ip = socket.gethostbyname(ip)
857                     name = line[k+6]
858                     host = line[k+9]
859                     peer_list[name] = (ip,host)
860                 if time.time() - t > 5*60:
861                     s.send('NAMES #electrum\n')
862                     t = time.time()
863                     peer_list = {}
864         except:
865             traceback.print_exc(file=sys.stdout)
866         finally:
867             sf.close()
868             s.close()
869
870
871
872 def http_server_thread(store):
873     # see http://code.google.com/p/jsonrpclib/
874     from SocketServer import ThreadingMixIn
875     from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCServer
876     class SimpleThreadedJSONRPCServer(ThreadingMixIn, SimpleJSONRPCServer): pass
877     server = SimpleThreadedJSONRPCServer(( config.get('server','host'), 8081))
878     server.register_function(lambda : peer_list.values(), 'peers')
879     server.register_function(cmd_stop, 'stop')
880     server.register_function(cmd_load, 'load')
881     server.register_function(lambda : block_number, 'blocks')
882     server.register_function(clear_cache, 'clear_cache')
883     server.register_function(get_cache, 'get_cache')
884     server.register_function(send_tx, 'blockchain.transaction.broadcast')
885     server.register_function(store.get_history, 'blockchain.address.get_history')
886     server.register_function(new_session, 'session.new')
887     server.register_function(update_session, 'session.update')
888     server.register_function(poll_session, 'session.poll')
889     server.serve_forever()
890
891
892 import traceback
893
894
895 if __name__ == '__main__':
896
897     if len(sys.argv)>1:
898         import jsonrpclib
899         server = jsonrpclib.Server('http://%s:8081'%config.get('server','host'))
900         cmd = sys.argv[1]
901         if cmd == 'load':
902             out = server.load(password)
903         elif cmd == 'peers':
904             out = server.peers()
905         elif cmd == 'stop':
906             out = server.stop(password)
907         elif cmd == 'clear_cache':
908             out = server.clear_cache(password)
909         elif cmd == 'get_cache':
910             out = server.get_cache(password,sys.argv[2])
911         elif cmd == 'h':
912             out = server.blockchain.address.get_history(sys.argv[2])
913         elif cmd == 'tx':
914             out = server.blockchain.transaction.broadcast(sys.argv[2])
915         elif cmd == 'b':
916             out = server.blocks()
917         else:
918             out = "Unknown command: '%s'" % cmd
919         print out
920         sys.exit(0)
921
922
923     print "starting Electrum server"
924
925     conf = DataStore.CONFIG_DEFAULTS
926     args, argv = readconf.parse_argv( [], conf)
927     args.dbtype= config.get('database','type')
928     if args.dbtype == 'sqlite3':
929         args.connect_args = { 'database' : config.get('database','database') }
930     elif args.dbtype == 'MySQLdb':
931         args.connect_args = { 'db' : config.get('database','database'), 'user' : config.get('database','username'), 'passwd' : config.get('database','password') }
932     elif args.dbtype == 'psycopg2':
933         args.connect_args = { 'database' : config.get('database','database') }
934     store = MyStore(args)
935     store.tx_cache = {}
936     store.mempool_keys = {}
937
938     # supported protocols
939     thread.start_new_thread(native_server_thread, ())
940     thread.start_new_thread(tcp_server_thread, ())
941     thread.start_new_thread(http_server_thread, (store,))
942
943     thread.start_new_thread(clean_session_thread, ())
944
945     if (config.get('server','irc') == 'yes' ):
946         thread.start_new_thread(irc_thread, ())
947
948     while not stopping:
949         try:
950             dblock.acquire()
951             store.catch_up()
952             memorypool_update(store)
953
954             block_number = store.get_block_number(1)
955             if block_number != old_block_number:
956                 old_block_number = block_number
957                 for session_id in sessions_sub_numblocks:
958                     send_numblocks(session_id)
959
960         except IOError:
961             print "IOError: cannot reach bitcoind"
962             block_number = 0
963         except:
964             traceback.print_exc(file=sys.stdout)
965             block_number = 0
966         finally:
967             dblock.release()
968
969         # do addresses
970         while True:
971             try:
972                 addr = address_queue.get(False)
973             except:
974                 break
975             do_update_address(addr)
976
977         time.sleep(10)
978
979     print "server stopped"
980