2020-06-26 06:52:56 +00:00
|
|
|
from core.experiment import Experiment, ExperimentParameter
|
2020-06-24 15:18:40 +00:00
|
|
|
import os
|
|
|
|
|
2020-06-25 14:57:27 +00:00
|
|
|
|
2020-06-26 06:52:56 +00:00
|
|
|
class VLCParameter(ExperimentParameter):
|
2020-06-25 14:57:27 +00:00
|
|
|
FILE = "vlcFile"
|
|
|
|
TIME = "vlcTime"
|
|
|
|
|
2020-06-26 06:52:56 +00:00
|
|
|
def __init__(self, experiment_parameter_filename):
|
|
|
|
super(VLCParameter, self).__init__(experiment_parameter_filename)
|
2020-06-25 14:57:27 +00:00
|
|
|
self.default_parameters.update({
|
|
|
|
VLCParameter.FILE: "bunny_ibmff_360.mpd",
|
|
|
|
VLCParameter.TIME: "0",
|
|
|
|
})
|
|
|
|
|
2020-06-26 06:52:56 +00:00
|
|
|
class VLC(Experiment):
|
2020-06-24 15:18:40 +00:00
|
|
|
NAME = "vlc"
|
|
|
|
|
|
|
|
SERVER_LOG = "vlc_server.log"
|
|
|
|
CLIENT_LOG = "vlc_client.log"
|
|
|
|
VLC_BIN = "/home/mininet/vlc/vlc"
|
|
|
|
PING_OUTPUT = "ping.log"
|
|
|
|
|
2020-06-26 06:52:56 +00:00
|
|
|
def __init__(self, experiment_parameter_filename, topo, topo_config):
|
|
|
|
super(VLC, self).__init__(experiment_parameter_filename, topo, topo_config)
|
2020-06-25 12:56:47 +00:00
|
|
|
self.load_parameters()
|
2020-06-24 15:18:40 +00:00
|
|
|
self.ping()
|
|
|
|
|
|
|
|
def ping(self):
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "rm " + \
|
2020-06-24 15:18:40 +00:00
|
|
|
VLC.PING_OUTPUT )
|
2020-06-26 06:52:56 +00:00
|
|
|
count = self.experiment_parameter.get(ExperimentParameter.PING_COUNT)
|
2020-06-25 08:53:56 +00:00
|
|
|
for i in range(0, self.topo_config.getClientInterfaceCount()):
|
|
|
|
cmd = self.pingCommand(self.topo_config.getClientIP(i),
|
|
|
|
self.topo_config.getServerIP(), n = count)
|
|
|
|
self.topo.command_to(self.topo_config.client, cmd)
|
2020-06-24 15:18:40 +00:00
|
|
|
|
|
|
|
def pingCommand(self, fromIP, toIP, n=5):
|
|
|
|
s = "ping -c " + str(n) + " -I " + fromIP + " " + toIP + \
|
|
|
|
" >> " + VLC.PING_OUTPUT
|
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
2020-06-25 12:56:47 +00:00
|
|
|
def load_parameters(self):
|
2020-06-26 06:52:56 +00:00
|
|
|
self.file = self.experiment_parameter.get(VLCParameter.FILE)
|
|
|
|
self.time = self.experiment_parameter.get(VLCParameter.TIME)
|
2020-06-24 15:18:40 +00:00
|
|
|
|
|
|
|
def prepare(self):
|
|
|
|
super(VLC, self).prepare()
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "rm " + \
|
2020-06-24 15:18:40 +00:00
|
|
|
VLC.CLIENT_LOG )
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "Xvfb :66 &")
|
|
|
|
self.topo.command_to(self.topo_config.server, "rm " + \
|
2020-06-24 15:18:40 +00:00
|
|
|
VLC.SERVER_LOG )
|
|
|
|
|
2020-06-25 14:57:27 +00:00
|
|
|
def get_vlc_server_cmd(self):
|
|
|
|
s = "/etc/init.d/apache2 restart &> {}".format(VLC.SERVER_LOG)
|
2020-06-24 15:18:40 +00:00
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
2020-06-25 14:57:27 +00:00
|
|
|
def get_vlc_client_cmd(self):
|
|
|
|
s = "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/mininet/usr/lib/ && sudo ldconfig && \
|
|
|
|
{} -I dummy --x11-display :66 --adaptive-logic 3 --no-loop --play-and-exit \
|
|
|
|
http://{}/{} 2>&1 | grep -E '(Neb|halp|bandwidth|late|Buffering|buffering)' > {} {}".format(
|
|
|
|
VLC.VLC_BIN, self.topo_config.getServerIP(), self.file, VLC.CLIENT_LOG,
|
|
|
|
"&" if self.time != "0" else "")
|
2020-06-24 15:18:40 +00:00
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
super(VLC, self).clean(self)
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "pkill Xvfb")
|
2020-06-24 15:18:40 +00:00
|
|
|
|
|
|
|
def run(self):
|
2020-06-25 14:57:27 +00:00
|
|
|
cmd = self.get_vlc_server_cmd()
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.server, cmd)
|
2020-06-24 15:18:40 +00:00
|
|
|
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "sleep 1")
|
2020-06-25 14:57:27 +00:00
|
|
|
cmd = self.get_vlc_client_cmd()
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, cmd)
|
2020-06-24 15:18:40 +00:00
|
|
|
|
|
|
|
if self.time != "0" :
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "sleep " + self.time)
|
|
|
|
self.topo.command_to(self.topo_config.client, "pkill -9 -f vlc")
|
2020-06-24 15:18:40 +00:00
|
|
|
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "sleep 2")
|