2012-05-02 15:21:36 -07:00
|
|
|
# Copyright (c) 2011, 2012 Nicira, Inc.
|
2011-10-31 14:56:08 -07:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at:
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""
|
|
|
|
tcp module contains listener and sender classes for TCP protocol
|
|
|
|
"""
|
|
|
|
|
2017-02-24 10:03:26 +08:00
|
|
|
import time
|
|
|
|
|
2011-10-31 14:56:08 -07:00
|
|
|
from twisted.internet import interfaces
|
2017-02-24 10:03:26 +08:00
|
|
|
from twisted.internet.protocol import ClientFactory, Factory, Protocol
|
|
|
|
|
2021-06-15 11:58:02 -04:00
|
|
|
from zope.interface.declarations import implementer
|
2011-10-31 14:56:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
class TcpListenerConnection(Protocol):
|
|
|
|
"""
|
|
|
|
This per-connection class is instantiated each time sender connects
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
|
|
self.stats = 0
|
|
|
|
|
|
|
|
def dataReceived(self, data):
|
|
|
|
self.stats += len(data)
|
|
|
|
|
|
|
|
def connectionLost(self, reason):
|
|
|
|
self.factory.stats += self.stats
|
|
|
|
|
|
|
|
|
|
|
|
class TcpListenerFactory(Factory):
|
|
|
|
"""
|
|
|
|
This per-listening socket class is used to
|
|
|
|
instantiate TcpListenerConnections
|
|
|
|
"""
|
|
|
|
protocol = TcpListenerConnection
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.stats = 0
|
|
|
|
|
|
|
|
def getResults(self):
|
|
|
|
""" returns the number of bytes received as string"""
|
2012-03-29 19:03:08 -07:00
|
|
|
# XML RPC does not support 64bit int (http://bugs.python.org/issue2985)
|
|
|
|
# so we have to convert the amount of bytes into a string
|
2011-10-31 14:56:08 -07:00
|
|
|
return str(self.stats)
|
|
|
|
|
|
|
|
|
2021-06-15 11:58:02 -04:00
|
|
|
@implementer(interfaces.IPushProducer)
|
2011-10-31 14:56:08 -07:00
|
|
|
class Producer(object):
|
|
|
|
"""
|
|
|
|
This producer class generates infinite byte stream for a specified time
|
|
|
|
duration
|
|
|
|
"""
|
|
|
|
def __init__(self, proto, duration):
|
|
|
|
self.proto = proto
|
|
|
|
self.start = time.time()
|
|
|
|
self.produced = 0
|
|
|
|
self.paused = False
|
|
|
|
self.data = "X" * 65535
|
|
|
|
self.duration = duration
|
|
|
|
|
|
|
|
def pauseProducing(self):
|
|
|
|
"""This function is called whenever write() to socket would block"""
|
|
|
|
self.paused = True
|
|
|
|
|
|
|
|
def resumeProducing(self):
|
|
|
|
"""This function is called whenever socket becomes writable"""
|
|
|
|
self.paused = False
|
|
|
|
current = time.time()
|
|
|
|
while (not self.paused) and (current < self.start + self.duration):
|
|
|
|
self.proto.transport.write(self.data)
|
|
|
|
self.produced += len(self.data)
|
|
|
|
current = time.time()
|
|
|
|
if current >= self.start + self.duration:
|
|
|
|
self.proto.factory.stats += self.produced
|
|
|
|
self.proto.transport.unregisterProducer()
|
|
|
|
self.proto.transport.loseConnection()
|
|
|
|
|
|
|
|
def stopProducing(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class TcpSenderConnection(Protocol):
|
|
|
|
"""
|
|
|
|
TCP connection instance class that sends all traffic at full speed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def connectionMade(self):
|
|
|
|
producer = Producer(self, self.factory.duration)
|
|
|
|
self.transport.registerProducer(producer, True)
|
|
|
|
producer.resumeProducing()
|
|
|
|
|
|
|
|
def dataReceived(self, data):
|
|
|
|
self.transport.loseConnection()
|
|
|
|
|
|
|
|
|
|
|
|
class TcpSenderFactory(ClientFactory):
|
|
|
|
"""
|
|
|
|
This factory is responsible to instantiate TcpSenderConnection classes
|
|
|
|
each time sender initiates connection
|
|
|
|
"""
|
|
|
|
protocol = TcpSenderConnection
|
|
|
|
|
|
|
|
def __init__(self, duration):
|
|
|
|
self.duration = duration
|
|
|
|
self.stats = 0
|
|
|
|
|
|
|
|
def getResults(self):
|
|
|
|
"""Returns amount of bytes sent to the Listener (as a string)"""
|
|
|
|
return str(self.stats)
|