]> git.mxchange.org Git - quix0rs-apt-p2p.git/commitdiff
Make the upload limit a config option.
authorCameron Dale <camrdale@gmail.com>
Mon, 31 Mar 2008 22:47:15 +0000 (15:47 -0700)
committerCameron Dale <camrdale@gmail.com>
Mon, 31 Mar 2008 22:47:15 +0000 (15:47 -0700)
apt-p2p.conf
apt_p2p/HTTPServer.py
apt_p2p/apt_p2p.py
apt_p2p/apt_p2p_conf.py
debian/apt-p2p.conf.sgml
test.py

index 9a12eed990d0afe4803ba3afdd89040914fe7869..249de43f24d8851a75528d46607ca6ab8422b96b 100644 (file)
 # for uploads to other peers. If a port is not specified for the DHT, it will also
 # use this UDP port to listen for DHT requests.
 PORT = 9977
-    
+
+# The rate to limit sending data to peers to, in KBytes/sec.
+# Set this to 0 to not limit the upload bandwidth.
+UPLOAD_LIMIT = 0
+
 # Directory to store the downloaded files in
 CACHE_DIR = /var/cache/apt-p2p
     
@@ -26,7 +30,7 @@ CACHE_DIR = /var/cache/apt-p2p
 #          for everybody to download
 # OTHER_DIRS = 
     
-# Whether it's OK to use an IP addres from a known local/private range
+# Whether it's OK to use an IP address from a known local/private range
 LOCAL_OK = no
 
 # Unload the packages cache after an interval of inactivity this long.
@@ -39,7 +43,7 @@ UNLOAD_PACKAGES_CACHE = 5m
 KEY_REFRESH = 57m
 
 # Which DHT implementation to use.
-# It must be possile to do "from <DHT>.DHT import DHT" to get a class that
+# It must be possible to do "from <DHT>.DHT import DHT" to get a class that
 # implements the IDHT interface. There should also be a similarly named
 # section below to specify the options for the DHT.
 DHT = apt_p2p_Khashmir
index b12ca713057c229d604689418298b835a4687885..3a9a3a3177ced71374c3d4c4a51b0979d617bd0c 100644 (file)
@@ -167,7 +167,7 @@ class TopLevel(resource.Resource):
     
     addSlash = True
     
-    def __init__(self, directory, db, manager):
+    def __init__(self, directory, db, manager, uploadLimit):
         """Initialize the instance.
         
         @type directory: L{twisted.python.filepath.FilePath}
@@ -180,6 +180,9 @@ class TopLevel(resource.Resource):
         self.directory = directory
         self.db = db
         self.manager = manager
+        self.uploadLimit = None
+        if uploadLimit > 0:
+            self.uploadLimit = int(uploadLimit*1024)
         self.factory = None
 
     def getHTTPFactory(self):
@@ -188,7 +191,7 @@ class TopLevel(resource.Resource):
             self.factory = channel.HTTPFactory(server.Site(self),
                                                **{'maxPipeline': 10, 
                                                   'betweenRequestsTimeOut': 60})
-            self.factory = ThrottlingFactory(self.factory, writeLimit = 30*1024)
+            self.factory = ThrottlingFactory(self.factory, writeLimit = self.uploadLimit)
             self.factory.protocol = UploadThrottlingProtocol
         return self.factory
 
index 4a97d4c2a6c1ecd05619fbb969b6ea5ffa97fd7a..887f136a52c1453c5b3e35751cfae6c7823a1ff4 100644 (file)
@@ -70,14 +70,15 @@ class AptP2P:
         """
         log.msg('Initializing the main apt_p2p application')
         self.dhtClass = dhtClass
-        self.cache_dir = FilePath(config.get('DEFAULT', 'cache_dir'))
+        self.cache_dir = FilePath(config.get('DEFAULT', 'CACHE_DIR'))
         if not self.cache_dir.child(download_dir).exists():
             self.cache_dir.child(download_dir).makedirs()
         self.db = DB(self.cache_dir.child('apt-p2p.db'))
         self.dht = dhtClass()
         self.dht.loadConfig(config, config.get('DEFAULT', 'DHT'))
         self.dht.join().addCallbacks(self.joinComplete, self.joinError)
-        self.http_server = TopLevel(self.cache_dir.child(download_dir), self.db, self)
+        self.http_server = TopLevel(self.cache_dir.child(download_dir), self.db, self,
+                                    config.getint('DEFAULT', 'UPLOAD_LIMIT'))
         self.getHTTPFactory = self.http_server.getHTTPFactory
         self.peers = PeerManager()
         self.mirrors = MirrorManager(self.cache_dir, config.gettime('DEFAULT', 'UNLOAD_PACKAGES_CACHE'))
index c4ecb93aad214de4fa63227a90bbb89d8392eea6..e5c0f379d8761c0f16e5f7b6ff07a94b28f10975 100644 (file)
@@ -39,6 +39,10 @@ DEFAULTS = {
     # Port to listen on for all requests (TCP and UDP)
     'PORT': '9977',
     
+    # The rate to limit sending data to peers to, in KBytes/sec.
+    # Set this to 0 to not limit the upload bandwidth.
+    'UPLOAD_LIMIT': '0',
+
     # Directory to store the downloaded files in
     'CACHE_DIR': home + '/.apt-p2p/cache',
     
@@ -50,7 +54,7 @@ DEFAULTS = {
     # User name to try and run as
     'USERNAME': '',
     
-    # Whether it's OK to use an IP addres from a known local/private range
+    # Whether it's OK to use an IP address from a known local/private range
     'LOCAL_OK': 'no',
 
     # Unload the packages cache after an interval of inactivity this long.
@@ -63,7 +67,7 @@ DEFAULTS = {
     'KEY_REFRESH': '57m',
 
     # Which DHT implementation to use.
-    # It must be possile to do "from <DHT>.DHT import DHT" to get a class that
+    # It must be possible to do "from <DHT>.DHT import DHT" to get a class that
     # implements the IDHT interface.
     'DHT': 'apt_p2p_Khashmir',
 
index 301ccb1a5d7b7ec11a9e049b61600a9c2a6f1f1f..ce9913744d0d0268a516078e3e09dd62cb224e95 100644 (file)
                  (Default is 9977.)</para>
            </listitem>
          </varlistentry>
+         <varlistentry>
+           <term><option>UPLOAD_LIMIT = <replaceable>speed</replaceable></option></term>
+            <listitem>
+             <para>The <replaceable>speed</replaceable> to limit sending data to peers to, in KBytes/sec.
+               Set this to 0 to not limit the upload bandwidth.
+               (Default is 0)</para>
+           </listitem>
+         </varlistentry>
          <varlistentry>
            <term><option>CACHE_DIR = <replaceable>directory</replaceable></option></term>
             <listitem>
diff --git a/test.py b/test.py
index 10ca2d6ba3a21d44d011d31becd6d8bda47cfed0..3fb7057ccf7e17700bd871962ddf3944103bedd3 100755 (executable)
--- a/test.py
+++ b/test.py
@@ -318,6 +318,10 @@ apt_p2p_conf_template = """
 # Port to listen on for all requests (TCP and UDP)
 PORT = %(PORT)s
     
+# The rate to limit sending data to peers to, in KBytes/sec.
+# Set this to 0 to not limit the upload bandwidth.
+UPLOAD_LIMIT = 100
+
 # Directory to store the downloaded files in
 CACHE_DIR = %(CACHE_DIR)s