2017-05-29 12:56:59 +02:00
|
|
|
from binascii import hexlify
|
2017-05-29 00:24:07 +02:00
|
|
|
import collections
|
|
|
|
import Queue
|
|
|
|
import random
|
|
|
|
import threading
|
|
|
|
import time
|
|
|
|
|
|
|
|
import addresses
|
|
|
|
from bmconfigparser import BMConfigParser
|
|
|
|
from debug import logger
|
|
|
|
from helper_threading import StoppableThread
|
|
|
|
from network.bmproto import BMProto
|
|
|
|
from network.connectionpool import BMConnectionPool
|
|
|
|
from queues import invQueue
|
|
|
|
import protocol
|
|
|
|
import state
|
|
|
|
|
|
|
|
class InvThread(threading.Thread, StoppableThread):
|
|
|
|
size = 10
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
threading.Thread.__init__(self, name="InvThread")
|
|
|
|
self.initStop()
|
|
|
|
self.name = "InvThread"
|
|
|
|
|
|
|
|
self.shutdown = False
|
|
|
|
|
|
|
|
self.collectionOfInvs = []
|
|
|
|
for i in range(InvThread.size):
|
|
|
|
self.collectionOfInvs.append({})
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
iterator = 0
|
|
|
|
while not state.shutdown:
|
|
|
|
while True:
|
|
|
|
try:
|
2017-05-29 14:52:31 +02:00
|
|
|
data = invQueue.get(False)
|
|
|
|
if len(data) == 2:
|
2017-05-29 14:59:42 +02:00
|
|
|
BMConnectionPool().handleReceivedObject(data[0], data[1])
|
2017-05-29 14:52:31 +02:00
|
|
|
else:
|
2017-05-29 14:59:42 +02:00
|
|
|
BMConnectionPool().handleReceivedObject(data[0], data[1], data[2])
|
2017-05-29 15:04:22 +02:00
|
|
|
self.holdHash (data[0], data[1])
|
2017-05-29 12:56:59 +02:00
|
|
|
#print "Holding hash %i, %s" % (stream, hexlify(hash))
|
2017-05-29 00:24:07 +02:00
|
|
|
except Queue.Empty:
|
|
|
|
break
|
|
|
|
|
|
|
|
if len(self.collectionOfInvs[iterator]) > 0:
|
|
|
|
for connection in BMConnectionPool().inboundConnections.values() + BMConnectionPool().outboundConnections.values():
|
|
|
|
hashes = []
|
|
|
|
for stream in connection.streams:
|
|
|
|
try:
|
|
|
|
for hashId in self.collectionOfInvs[iterator][stream]:
|
|
|
|
if hashId in connection.objectsNewToThem:
|
|
|
|
hashes.append(hashId)
|
|
|
|
del connection.objectsNewToThem[hashId]
|
|
|
|
except KeyError:
|
|
|
|
continue
|
|
|
|
if len(hashes) > 0:
|
2017-05-29 12:56:59 +02:00
|
|
|
#print "sending inv of %i" % (len(hashes))
|
2017-05-29 14:35:08 +02:00
|
|
|
connection.writeQueue.put(protocol.CreatePacket('inv', addresses.encodeVarint(len(hashes)) + "".join(hashes)))
|
2017-05-29 00:47:41 +02:00
|
|
|
self.collectionOfInvs[iterator] = {}
|
2017-05-29 00:24:07 +02:00
|
|
|
iterator += 1
|
|
|
|
iterator %= InvThread.size
|
|
|
|
self.stop.wait(1)
|
|
|
|
|
|
|
|
def holdHash(self, stream, hash):
|
2017-05-29 00:47:41 +02:00
|
|
|
i = random.randrange(0, InvThread.size)
|
|
|
|
if stream not in self.collectionOfInvs[i]:
|
|
|
|
self.collectionOfInvs[i][stream] = []
|
|
|
|
self.collectionOfInvs[i][stream].append(hash)
|
2017-05-29 00:24:07 +02:00
|
|
|
|
|
|
|
def hasHash(self, hash):
|
|
|
|
for streamlist in self.collectionOfInvs:
|
|
|
|
for stream in streamlist:
|
|
|
|
if hash in streamlist[stream]:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def hashCount(self):
|
|
|
|
retval = 0
|
|
|
|
for streamlist in self.collectionOfInvs:
|
|
|
|
for stream in streamlist:
|
|
|
|
retval += len(streamlist[stream])
|
|
|
|
return retval
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.shutdown = True
|