Adapt the flow-monitor module to the new module tree layout spec.
This commit is contained in:
@@ -1,143 +0,0 @@
|
||||
from __future__ import division
|
||||
import sys
|
||||
import os
|
||||
try:
|
||||
from xml.etree import cElementTree as ElementTree
|
||||
except ImportError:
|
||||
from xml.etree import ElementTree
|
||||
|
||||
def parse_time_ns(tm):
|
||||
if tm.endswith('ns'):
|
||||
return long(tm[:-2])
|
||||
raise ValueError(tm)
|
||||
|
||||
|
||||
|
||||
class FiveTuple(object):
|
||||
__slots__ = ['sourceAddress', 'destinationAddress', 'protocol', 'sourcePort', 'destinationPort']
|
||||
def __init__(self, el):
|
||||
self.sourceAddress = el.get('sourceAddress')
|
||||
self.destinationAddress = el.get('destinationAddress')
|
||||
self.sourcePort = int(el.get('sourcePort'))
|
||||
self.destinationPort = int(el.get('destinationPort'))
|
||||
self.protocol = int(el.get('protocol'))
|
||||
|
||||
class Histogram(object):
|
||||
__slots__ = 'bins', 'nbins', 'number_of_flows'
|
||||
def __init__(self, el=None):
|
||||
self.bins = []
|
||||
if el is not None:
|
||||
#self.nbins = int(el.get('nBins'))
|
||||
for bin in el.findall('bin'):
|
||||
self.bins.append( (float(bin.get("start")), float(bin.get("width")), int(bin.get("count"))) )
|
||||
|
||||
class Flow(object):
|
||||
__slots__ = ['flowId', 'delayMean', 'packetLossRatio', 'rxBitrate', 'txBitrate',
|
||||
'fiveTuple', 'packetSizeMean', 'probe_stats_unsorted',
|
||||
'hopCount', 'flowInterruptionsHistogram', 'rx_duration']
|
||||
def __init__(self, flow_el):
|
||||
self.flowId = int(flow_el.get('flowId'))
|
||||
rxPackets = long(flow_el.get('rxPackets'))
|
||||
txPackets = long(flow_el.get('txPackets'))
|
||||
tx_duration = float(long(flow_el.get('timeLastTxPacket')[:-2]) - long(flow_el.get('timeFirstTxPacket')[:-2]))*1e-9
|
||||
rx_duration = float(long(flow_el.get('timeLastRxPacket')[:-2]) - long(flow_el.get('timeFirstRxPacket')[:-2]))*1e-9
|
||||
self.rx_duration = rx_duration
|
||||
self.probe_stats_unsorted = []
|
||||
if rxPackets:
|
||||
self.hopCount = float(flow_el.get('timesForwarded')) / rxPackets + 1
|
||||
else:
|
||||
self.hopCount = -1000
|
||||
if rxPackets:
|
||||
self.delayMean = float(flow_el.get('delaySum')[:-2]) / rxPackets * 1e-9
|
||||
self.packetSizeMean = float(flow_el.get('rxBytes')) / rxPackets
|
||||
else:
|
||||
self.delayMean = None
|
||||
self.packetSizeMean = None
|
||||
if rx_duration > 0:
|
||||
self.rxBitrate = long(flow_el.get('rxBytes'))*8 / rx_duration
|
||||
else:
|
||||
self.rxBitrate = None
|
||||
if tx_duration > 0:
|
||||
self.txBitrate = long(flow_el.get('txBytes'))*8 / tx_duration
|
||||
else:
|
||||
self.txBitrate = None
|
||||
lost = float(flow_el.get('lostPackets'))
|
||||
#print "rxBytes: %s; txPackets: %s; rxPackets: %s; lostPackets: %s" % (flow_el.get('rxBytes'), txPackets, rxPackets, lost)
|
||||
if rxPackets == 0:
|
||||
self.packetLossRatio = None
|
||||
else:
|
||||
self.packetLossRatio = (lost / (rxPackets + lost))
|
||||
|
||||
interrupt_hist_elem = flow_el.find("flowInterruptionsHistogram")
|
||||
if interrupt_hist_elem is None:
|
||||
self.flowInterruptionsHistogram = None
|
||||
else:
|
||||
self.flowInterruptionsHistogram = Histogram(interrupt_hist_elem)
|
||||
|
||||
|
||||
class ProbeFlowStats(object):
|
||||
__slots__ = ['probeId', 'packets', 'bytes', 'delayFromFirstProbe']
|
||||
|
||||
class Simulation(object):
|
||||
def __init__(self, simulation_el):
|
||||
self.flows = []
|
||||
FlowClassifier_el, = simulation_el.findall("Ipv4FlowClassifier")
|
||||
flow_map = {}
|
||||
for flow_el in simulation_el.findall("FlowStats/Flow"):
|
||||
flow = Flow(flow_el)
|
||||
flow_map[flow.flowId] = flow
|
||||
self.flows.append(flow)
|
||||
for flow_cls in FlowClassifier_el.findall("Flow"):
|
||||
flowId = int(flow_cls.get('flowId'))
|
||||
flow_map[flowId].fiveTuple = FiveTuple(flow_cls)
|
||||
|
||||
for probe_elem in simulation_el.findall("FlowProbes/FlowProbe"):
|
||||
probeId = int(probe_elem.get('index'))
|
||||
for stats in probe_elem.findall("FlowStats"):
|
||||
flowId = int(stats.get('flowId'))
|
||||
s = ProbeFlowStats()
|
||||
s.packets = int(stats.get('packets'))
|
||||
s.bytes = long(stats.get('bytes'))
|
||||
s.probeId = probeId
|
||||
if s.packets > 0:
|
||||
s.delayFromFirstProbe = parse_time_ns(stats.get('delayFromFirstProbeSum')) / float(s.packets)
|
||||
else:
|
||||
s.delayFromFirstProbe = 0
|
||||
flow_map[flowId].probe_stats_unsorted.append(s)
|
||||
|
||||
|
||||
def main(argv):
|
||||
file_obj = open(argv[1])
|
||||
print "Reading XML file ",
|
||||
|
||||
sys.stdout.flush()
|
||||
level = 0
|
||||
sim_list = []
|
||||
for event, elem in ElementTree.iterparse(file_obj, events=("start", "end")):
|
||||
if event == "start":
|
||||
level += 1
|
||||
if event == "end":
|
||||
level -= 1
|
||||
if level == 0 and elem.tag == 'FlowMonitor':
|
||||
sim = Simulation(elem)
|
||||
sim_list.append(sim)
|
||||
elem.clear() # won't need this any more
|
||||
sys.stdout.write(".")
|
||||
sys.stdout.flush()
|
||||
print " done."
|
||||
|
||||
|
||||
for sim in sim_list:
|
||||
for flow in sim.flows:
|
||||
t = flow.fiveTuple
|
||||
proto = {6: 'TCP', 17: 'UDP'} [t.protocol]
|
||||
print "FlowID: %i (%s %s/%s --> %s/%i)" % \
|
||||
(flow.flowId, proto, t.sourceAddress, t.sourcePort, t.destinationAddress, t.destinationPort)
|
||||
print "\tTX bitrate: %.2f kbit/s" % (flow.txBitrate*1e-3,)
|
||||
print "\tRX bitrate: %.2f kbit/s" % (flow.rxBitrate*1e-3,)
|
||||
print "\tMean Delay: %.2f ms" % (flow.delayMean*1e3,)
|
||||
print "\tPacket Loss Ratio: %.2f %%" % (flow.packetLossRatio*100)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main(sys.argv)
|
||||
1
examples/flowmon/waf
vendored
1
examples/flowmon/waf
vendored
@@ -1 +0,0 @@
|
||||
exec "`dirname "$0"`"/../../waf "$@"
|
||||
@@ -1,171 +0,0 @@
|
||||
# -*- Mode: Python; -*-
|
||||
# Copyright (c) 2009 INESC Porto
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
# published by the Free Software Foundation;
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
# Authors: Gustavo Carneiro <gjc@inescporto.pt>
|
||||
|
||||
import sys
|
||||
import ns3
|
||||
|
||||
DISTANCE = 100 # (m)
|
||||
NUM_NODES_SIDE = 3
|
||||
|
||||
def main(argv):
|
||||
|
||||
cmd = ns3.CommandLine()
|
||||
|
||||
cmd.NumNodesSide = None
|
||||
cmd.AddValue("NumNodesSide", "Grid side number of nodes (total number of nodes will be this number squared)")
|
||||
|
||||
cmd.Results = None
|
||||
cmd.AddValue("Results", "Write XML results to file")
|
||||
|
||||
cmd.Plot = None
|
||||
cmd.AddValue("Plot", "Plot the results using the matplotlib python module")
|
||||
|
||||
cmd.Parse(argv)
|
||||
|
||||
wifi = ns3.WifiHelper.Default()
|
||||
wifiMac = ns3.NqosWifiMacHelper.Default()
|
||||
wifiPhy = ns3.YansWifiPhyHelper.Default()
|
||||
wifiChannel = ns3.YansWifiChannelHelper.Default()
|
||||
wifiPhy.SetChannel(wifiChannel.Create())
|
||||
ssid = ns3.Ssid("wifi-default")
|
||||
wifi.SetRemoteStationManager("ns3::ArfWifiManager")
|
||||
wifiMac.SetType ("ns3::AdhocWifiMac", "Ssid", ns3.SsidValue(ssid))
|
||||
|
||||
internet = ns3.InternetStackHelper()
|
||||
list_routing = ns3.Ipv4ListRoutingHelper()
|
||||
olsr_routing = ns3.OlsrHelper()
|
||||
static_routing = ns3.Ipv4StaticRoutingHelper()
|
||||
list_routing.Add(static_routing, 0)
|
||||
list_routing.Add(olsr_routing, 100)
|
||||
internet.SetRoutingHelper(list_routing)
|
||||
|
||||
ipv4Addresses = ns3.Ipv4AddressHelper()
|
||||
ipv4Addresses.SetBase(ns3.Ipv4Address("10.0.0.0"), ns3.Ipv4Mask("255.255.255.0"))
|
||||
|
||||
port = 9 # Discard port(RFC 863)
|
||||
onOffHelper = ns3.OnOffHelper("ns3::UdpSocketFactory",
|
||||
ns3.Address(ns3.InetSocketAddress(ns3.Ipv4Address("10.0.0.1"), port)))
|
||||
onOffHelper.SetAttribute("DataRate", ns3.DataRateValue(ns3.DataRate("100kbps")))
|
||||
onOffHelper.SetAttribute("OnTime", ns3.RandomVariableValue(ns3.ConstantVariable(1)))
|
||||
onOffHelper.SetAttribute("OffTime", ns3.RandomVariableValue(ns3.ConstantVariable(0)))
|
||||
|
||||
addresses = []
|
||||
nodes = []
|
||||
|
||||
if cmd.NumNodesSide is None:
|
||||
num_nodes_side = NUM_NODES_SIDE
|
||||
else:
|
||||
num_nodes_side = int(cmd.NumNodesSide)
|
||||
|
||||
for xi in range(num_nodes_side):
|
||||
for yi in range(num_nodes_side):
|
||||
|
||||
node = ns3.Node()
|
||||
nodes.append(node)
|
||||
|
||||
internet.Install(ns3.NodeContainer(node))
|
||||
|
||||
mobility = ns3.ConstantPositionMobilityModel()
|
||||
mobility.SetPosition(ns3.Vector(xi*DISTANCE, yi*DISTANCE, 0))
|
||||
node.AggregateObject(mobility)
|
||||
|
||||
devices = wifi.Install(wifiPhy, wifiMac, node)
|
||||
ipv4_interfaces = ipv4Addresses.Assign(devices)
|
||||
addresses.append(ipv4_interfaces.GetAddress(0))
|
||||
|
||||
for i, node in enumerate(nodes):
|
||||
destaddr = addresses[(len(addresses) - 1 - i) % len(addresses)]
|
||||
#print i, destaddr
|
||||
onOffHelper.SetAttribute("Remote", ns3.AddressValue(ns3.InetSocketAddress(destaddr, port)))
|
||||
app = onOffHelper.Install(ns3.NodeContainer(node))
|
||||
app.Start(ns3.Seconds(ns3.UniformVariable(20, 30).GetValue()))
|
||||
|
||||
#internet.EnablePcapAll("wifi-olsr")
|
||||
flowmon_helper = ns3.FlowMonitorHelper()
|
||||
#flowmon_helper.SetMonitorAttribute("StartTime", ns3.TimeValue(ns3.Seconds(31)))
|
||||
monitor = flowmon_helper.InstallAll()
|
||||
monitor.SetAttribute("DelayBinWidth", ns3.DoubleValue(0.001))
|
||||
monitor.SetAttribute("JitterBinWidth", ns3.DoubleValue(0.001))
|
||||
monitor.SetAttribute("PacketSizeBinWidth", ns3.DoubleValue(20))
|
||||
|
||||
ns3.Simulator.Stop(ns3.Seconds(44.0))
|
||||
ns3.Simulator.Run()
|
||||
|
||||
def print_stats(os, st):
|
||||
print >> os, " Tx Bytes: ", st.txBytes
|
||||
print >> os, " Rx Bytes: ", st.rxBytes
|
||||
print >> os, " Tx Packets: ", st.txPackets
|
||||
print >> os, " Rx Packets: ", st.rxPackets
|
||||
print >> os, " Lost Packets: ", st.lostPackets
|
||||
if st.rxPackets > 0:
|
||||
print >> os, " Mean{Delay}: ", (st.delaySum.GetSeconds() / st.rxPackets)
|
||||
print >> os, " Mean{Jitter}: ", (st.jitterSum.GetSeconds() / (st.rxPackets-1))
|
||||
print >> os, " Mean{Hop Count}: ", float(st.timesForwarded) / st.rxPackets + 1
|
||||
|
||||
if 0:
|
||||
print >> os, "Delay Histogram"
|
||||
for i in range(st.delayHistogram.GetNBins () ):
|
||||
print >> os, " ",i,"(", st.delayHistogram.GetBinStart (i), "-", \
|
||||
st.delayHistogram.GetBinEnd (i), "): ", st.delayHistogram.GetBinCount (i)
|
||||
print >> os, "Jitter Histogram"
|
||||
for i in range(st.jitterHistogram.GetNBins () ):
|
||||
print >> os, " ",i,"(", st.jitterHistogram.GetBinStart (i), "-", \
|
||||
st.jitterHistogram.GetBinEnd (i), "): ", st.jitterHistogram.GetBinCount (i)
|
||||
print >> os, "PacketSize Histogram"
|
||||
for i in range(st.packetSizeHistogram.GetNBins () ):
|
||||
print >> os, " ",i,"(", st.packetSizeHistogram.GetBinStart (i), "-", \
|
||||
st.packetSizeHistogram.GetBinEnd (i), "): ", st.packetSizeHistogram.GetBinCount (i)
|
||||
|
||||
for reason, drops in enumerate(st.packetsDropped):
|
||||
print " Packets dropped by reason %i: %i" % (reason, drops)
|
||||
#for reason, drops in enumerate(st.bytesDropped):
|
||||
# print "Bytes dropped by reason %i: %i" % (reason, drops)
|
||||
|
||||
monitor.CheckForLostPackets()
|
||||
classifier = flowmon_helper.GetClassifier()
|
||||
|
||||
if cmd.Results is None:
|
||||
for flow_id, flow_stats in monitor.GetFlowStats():
|
||||
t = classifier.FindFlow(flow_id)
|
||||
proto = {6: 'TCP', 17: 'UDP'} [t.protocol]
|
||||
print "FlowID: %i (%s %s/%s --> %s/%i)" % \
|
||||
(flow_id, proto, t.sourceAddress, t.sourcePort, t.destinationAddress, t.destinationPort)
|
||||
print_stats(sys.stdout, flow_stats)
|
||||
else:
|
||||
print monitor.SerializeToXmlFile(cmd.Results, True, True)
|
||||
|
||||
|
||||
if cmd.Plot is not None:
|
||||
import pylab
|
||||
delays = []
|
||||
for flow_id, flow_stats in monitor.GetFlowStats():
|
||||
tupl = classifier.FindFlow(flow_id)
|
||||
if tupl.protocol == 17 and tupl.sourcePort == 698:
|
||||
continue
|
||||
delays.append(flow_stats.delaySum.GetSeconds() / flow_stats.rxPackets)
|
||||
pylab.hist(delays, 20)
|
||||
pylab.xlabel("Delay (s)")
|
||||
pylab.ylabel("Number of Flows")
|
||||
pylab.show()
|
||||
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main(sys.argv))
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
|
||||
def build(bld):
|
||||
pass
|
||||
Reference in New Issue
Block a user