Example #1
0
 def __init__(self, app, config):
     self.app = app
     self.config = config
     self.metainfo = config.metainfo
     self.info_hash = self.metainfo.info_hash
     self.downloadSpeedMonitor = SpeedMonitor(5)
     self.uploadSpeedMonitor = SpeedMonitor(5)
     self.my_peer_id = generate_peer_id()
     self.connectionManager = ConnectionManager(self)
     self.pieceManager = BTPieceManager(self)
     if len(self.metainfo.announce_list) > 0:
         self.bttrackerclient = BTTrackerClient(self)
     else:
         raise Exception("Torrent needs at least one tracker")
     self.status = None
Example #2
0
 def __init__(self, app, config):
     self.app = app
     self.config = config
     self.metainfo = config.metainfo
     self.info_hash = self.metainfo.info_hash
     self.downloadSpeedMonitor = SpeedMonitor(5)
     self.uploadSpeedMonitor = SpeedMonitor(5)
     self.my_peer_id = generate_peer_id()
     self.connectionManager = ConnectionManager(self)
     self.pieceManager = BTPieceManager(self)
     if len(self.metainfo.announce_list) > 0:
         self.bttrackerclient = BTTrackerClient(self)
     elif self.app.enable_DHT == True:
         print("TrackerLess Torrent, I will continue on DHT")
         self.bttrackerclient = BTTrackerClientDummy(self)
     else:
         raise Exception(
             "Torrent needs at least one tracker, and DHT is disabled.")
     self.status = None
Example #3
0
 def __init__(self, app, config):
     self.app = app
     self.config = config
     self.metainfo = config.metainfo
     self.info_hash = self.metainfo.info_hash
     self.download_speed_monitor = SpeedMonitor(5)
     self.upload_speed_monitor = SpeedMonitor(5)
     self.my_peer_id = generate_peer_id()
     self.connection_manager = ConnectionManager(self)
     self.piece_manager = BTPieceManager(self)
     self.tracker_client = BTTrackerClient(self)
     
     self.status = None
Example #4
0
 def __init__(self, app, config):
     self.app = app
     self.config = config
     self.metainfo = config.metainfo
     self.info_hash = self.metainfo.info_hash
     self.downloadSpeedMonitor = SpeedMonitor(5)
     self.uploadSpeedMonitor = SpeedMonitor(5)
     self.my_peer_id = generate_peer_id()
     self.connectionManager = ConnectionManager(self)
     self.pieceManager = BTPieceManager(self)
     if len(self.metainfo.announce_list) > 0:
         self.bttrackerclient = BTTrackerClient(self)
     else: 
         raise Exception("Torrent needs at least one tracker")
     self.status = None
Example #5
0
class BTManager(object):
    def __init__(self, app, config):
        self.app = app
        self.config = config
        self.metainfo = config.metainfo
        self.info_hash = self.metainfo.info_hash
        self.downloadSpeedMonitor = SpeedMonitor(5)
        self.uploadSpeedMonitor = SpeedMonitor(5)
        self.my_peer_id = generate_peer_id()
        self.connectionManager = ConnectionManager(self)
        self.pieceManager = BTPieceManager(self)
        if len(self.metainfo.announce_list) > 0:
            self.bttrackerclient = BTTrackerClient(self)
        else:
            raise Exception("Torrent needs at least one tracker")
        self.status = None

    def startDownload(self):
        self.pieceManager.start()

        self.connectionManager.start()

        self.downloadSpeedMonitor.start()
        self.uploadSpeedMonitor.start()

        self.bttrackerclient.start()

        self.status = 'running'

    def stopDownload(self):
        self.pieceManager.stop()

        self.connectionManager.stop()

        self.downloadSpeedMonitor.stop()
        self.uploadSpeedMonitor.stop()

        self.bttrackerclient.stop()

        self.status = 'stopped'

    def get_speed(self):
        """Returns the speed in kibibit per second (Kibit/s).
        """
        return {
            "down": self.downloadSpeedMonitor.get_speed(),
            "up": self.uploadSpeedMonitor.get_speed()
        }

    def get_num_connections(self):
        return {
            "client":
            len(self.connectionManager.clientFactory.active_connection),
            "server":
            len(self.connectionManager.serverFactory.active_connection)
        }

    def get_progress(self):
        return self.pieceManager.getProgress()

    def add_peers(self, peers):
        """Adds peers to the torrent for downloading pieces.

        @param peers list of tuples e.g. [('173.248.194.166', 12005),
            ('192.166.145.8', 13915)]
        """
        self.connectionManager.clientFactory.updateTrackerPeers(peers)

    def exit(self):
        if self.status == 'running':
            self.stopDownload()

        for i in self.__dict__:
            del self.__dict__[i]
Example #6
0
class BTManager (object):
    def __init__(self, app, config):
        self.app = app
        self.config = config
        self.metainfo = config.metainfo
        self.info_hash = self.metainfo.info_hash
        self.download_speed_monitor = SpeedMonitor(5)
        self.upload_speed_monitor = SpeedMonitor(5)
        self.my_peer_id = generate_peer_id()
        self.connection_manager = ConnectionManager(self)
        self.piece_manager = BTPieceManager(self)
        self.tracker_client = BTTrackerClient(self)
        
        self.status = None

    def start_download(self):
        self.piece_manager.start()

        self.connection_manager.start()
        
        self.download_speed_monitor.start()
        self.upload_speed_monitor.start()

        self.tracker_client.start()

        self.status = 'running'

    def stop_download(self):
        self.piece_manager.stop()

        self.connection_manager.stop()
        
        self.download_speed_monitor.stop()
        self.upload_speed_monitor.stop()

        self.tracker_client.stop()

        self.status = 'stopped'

    def get_speed(self):
        """Returns the speed in kibibit per second (Kibit/s).
        """
        return {
            "down": self.download_speed_monitor.get_speed(),
            "up":   self.upload_speed_monitor.get_speed()  }

    def get_num_connections(self):
        return {
            "client": len(self.connection_manager.client_factory.active_connection),
            "server": len(self.connection_manager.server_factory.active_connection)}

    def exit(self):
        if self.status == 'running' :
            self.stop_download()

        for i in self.__dict__ :
            del self.__dict__[i]
    
    def add_peers(self, peers):
        """Adds peers to the torrent for downloading pieces.

        @param peers list of tuples e.g. [('173.248.194.166', 12005),
            ('192.166.145.8', 13915)]
        """
        self.connection_manager.client_factory.update_tracker_peers(peers)