mininet-sample/mpExperienceAb.py

81 lines
2.6 KiB
Python
Raw Normal View History

2020-06-24 08:36:26 +00:00
from core.experience import Experience, ExperienceParameter
2015-12-02 14:22:51 +00:00
from mpPvAt import MpPvAt
import os
2020-06-24 08:36:26 +00:00
class ExperienceAb(Experience):
2015-12-02 14:22:51 +00:00
SERVER_LOG = "ab_server.log"
CLIENT_LOG = "ab_client.log"
AB_BIN = "ab"
PING_OUTPUT = "ping.log"
def __init__(self, xpParamFile, mpTopo, mpConfig):
2020-06-24 08:36:26 +00:00
Experience.__init__(self, xpParamFile, mpTopo, mpConfig)
2015-12-02 14:22:51 +00:00
self.loadParam()
self.ping()
2020-06-24 08:36:26 +00:00
Experience.classicRun(self)
2015-12-02 14:22:51 +00:00
def ping(self):
self.mpTopo.commandTo(self.mpConfig.client,
2020-06-24 08:36:26 +00:00
"rm " + ExperienceAb.PING_OUTPUT)
count = self.xpParam.getParam(ExperienceParameter.PINGCOUNT)
2015-12-02 14:22:51 +00:00
for i in range(0, self.mpConfig.getClientInterfaceCount()):
cmd = self.pingCommand(self.mpConfig.getClientIP(i),
self.mpConfig.getServerIP(), n = count)
self.mpTopo.commandTo(self.mpConfig.client, cmd)
def pingCommand(self, fromIP, toIP, n=5):
s = "ping -c " + str(n) + " -I " + fromIP + " " + toIP + \
2020-06-24 08:36:26 +00:00
" >> " + ExperienceAb.PING_OUTPUT
2015-12-02 14:22:51 +00:00
print(s)
return s
def loadParam(self):
"""
todo : param LD_PRELOAD ??
"""
2020-06-24 08:36:26 +00:00
self.file = self.xpParam.getParam(ExperienceParameter.HTTPFILE)
self.random_size = self.xpParam.getParam(ExperienceParameter.HTTPRANDOMSIZE)
self.concurrent_requests = self.xpParam.getParam(ExperienceParameter.ABCONCURRENTREQUESTS)
self.timelimit = self.xpParam.getParam(ExperienceParameter.ABTIMELIMIT)
2015-12-02 14:22:51 +00:00
def prepare(self):
2020-06-24 08:36:26 +00:00
Experience.prepare(self)
2015-12-02 14:22:51 +00:00
self.mpTopo.commandTo(self.mpConfig.client, "rm " + \
2020-06-24 08:36:26 +00:00
ExperienceAb.CLIENT_LOG )
2015-12-02 14:22:51 +00:00
self.mpTopo.commandTo(self.mpConfig.server, "rm " + \
2020-06-24 08:36:26 +00:00
ExperienceAb.SERVER_LOG )
2015-12-02 14:22:51 +00:00
if self.file == "random":
self.mpTopo.commandTo(self.mpConfig.client,
"dd if=/dev/urandom of=random bs=1K count=" + \
self.random_size)
def getAbServerCmd(self):
s = "python " + os.path.dirname(os.path.abspath(__file__)) + \
2020-06-24 08:36:26 +00:00
"/http.py &>" + ExperienceAb.SERVER_LOG + "&"
2015-12-02 14:22:51 +00:00
print(s)
return s
def getAbClientCmd(self):
2020-06-24 08:36:26 +00:00
s = ExperienceAb.AB_BIN + " -c " + self.concurrent_requests + " -t " + \
2015-12-02 14:22:51 +00:00
self.timelimit + " http://" + self.mpConfig.getServerIP() + "/" + self.file + \
2020-06-24 08:36:26 +00:00
" &>" + ExperienceAb.CLIENT_LOG
2015-12-02 14:22:51 +00:00
print(s)
return s
def clean(self):
2020-06-24 08:36:26 +00:00
Experience.clean(self)
2015-12-02 14:22:51 +00:00
if self.file == "random":
self.mpTopo.commandTo(self.mpConfig.client, "rm random*")
#todo use cst
#self.mpTopo.commandTo(self.mpConfig.server, "killall netcat")
def run(self):
cmd = self.getAbServerCmd()
self.mpTopo.commandTo(self.mpConfig.server, cmd)
self.mpTopo.commandTo(self.mpConfig.client, "sleep 2")
cmd = self.getAbClientCmd()
self.mpTopo.commandTo(self.mpConfig.client, cmd)
self.mpTopo.commandTo(self.mpConfig.client, "sleep 2")