http-old pylint fixes
This commit is contained in:
parent
5fcb7fc05e
commit
68e09a5e30
|
@ -1,3 +1,7 @@
|
||||||
|
"""
|
||||||
|
src/network/http-old.py
|
||||||
|
=======================
|
||||||
|
"""
|
||||||
import asyncore
|
import asyncore
|
||||||
import socket
|
import socket
|
||||||
import time
|
import time
|
||||||
|
@ -8,6 +12,7 @@ duration = 60
|
||||||
|
|
||||||
|
|
||||||
class HTTPClient(asyncore.dispatcher):
|
class HTTPClient(asyncore.dispatcher):
|
||||||
|
"""An asyncore dispatcher"""
|
||||||
port = 12345
|
port = 12345
|
||||||
|
|
||||||
def __init__(self, host, path, connect=True):
|
def __init__(self, host, path, connect=True):
|
||||||
|
@ -19,6 +24,7 @@ class HTTPClient(asyncore.dispatcher):
|
||||||
self.buffer = 'GET %s HTTP/1.0\r\n\r\n' % path
|
self.buffer = 'GET %s HTTP/1.0\r\n\r\n' % path
|
||||||
|
|
||||||
def handle_close(self):
|
def handle_close(self):
|
||||||
|
# pylint: disable=global-statement
|
||||||
global requestCount
|
global requestCount
|
||||||
requestCount += 1
|
requestCount += 1
|
||||||
self.close()
|
self.close()
|
||||||
|
@ -28,7 +34,7 @@ class HTTPClient(asyncore.dispatcher):
|
||||||
self.recv(8192)
|
self.recv(8192)
|
||||||
|
|
||||||
def writable(self):
|
def writable(self):
|
||||||
return (len(self.buffer) > 0)
|
return len(self.buffer) > 0
|
||||||
|
|
||||||
def handle_write(self):
|
def handle_write(self):
|
||||||
sent = self.send(self.buffer)
|
sent = self.send(self.buffer)
|
||||||
|
@ -40,8 +46,8 @@ if __name__ == "__main__":
|
||||||
for i in range(parallel):
|
for i in range(parallel):
|
||||||
HTTPClient('127.0.0.1', '/')
|
HTTPClient('127.0.0.1', '/')
|
||||||
start = time.time()
|
start = time.time()
|
||||||
while (time.time() - start < duration):
|
while time.time() - start < duration:
|
||||||
if (len(asyncore.socket_map) < parallel):
|
if len(asyncore.socket_map) < parallel:
|
||||||
for i in range(parallel - len(asyncore.socket_map)):
|
for i in range(parallel - len(asyncore.socket_map)):
|
||||||
HTTPClient('127.0.0.1', '/')
|
HTTPClient('127.0.0.1', '/')
|
||||||
print "Active connections: %i" % (len(asyncore.socket_map))
|
print "Active connections: %i" % (len(asyncore.socket_map))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user