1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
"""
Copyright (c) 2012, NOVI Consortium, European FP7 NOVI Project
Copyright according to BSD License
For full text of the license see: ./novi/Software/Monitoring/MonitoringTool/PacketTracking/license.txt
@author <a href="mailto:ramon.masek@fokus.fraunhofer.de">Ramon Masek</a>, Fraunhofer FOKUS
@author <a href="mailto:c.henke@tu-berlin.de">Christian Henke</a>, Technical University Berlin
@author <a href="mailto:carsten.schmoll@fokus.fraunhofer.de">Carsten Schmoll</a>, Fraunhofer FOKUS
@author <a href="mailto:Julian.Vetter@campus.tu-berlin.de">Julian Vetter</a>, Fraunhofer FOKUS
@author <a href="mailto:">Jens Krenzin</a>, Fraunhofer FOKUS
@author <a href="mailto:">Michael Gehring</a>, Fraunhofer FOKUS
@author <a href="mailto:">Tacio Grespan Santos</a>, Fraunhofer FOKUS
@author <a href="mailto:">Fabian Wolff</a>, Fraunhofer FOKUS
"""
from time import mktime, time, strftime, localtime
from Task.Passive.Monitoring.DataTypes import Node
class PtHopStats(object):
"""
Packet tracking Hop statistics, i.e. delay/volume statistics between two
neighbor Pt probes
"""
def __init__(self, startTime = time(), stopTime = time(),
src = Node.Node(), dst = Node.Node(), number = 0,
avgPktSize = 0, avgDelay = 0):
self.startTime = mktime(startTime)
self.stopTime = mktime(stopTime)
self.src = src
self.dst = dst
self.number = number
self.avgPktSize = avgPktSize
self.avgDelay = avgDelay
def __str__(self):
startTime = strftime("%a, %d %b %Y %H:%M:%S",
localtime(self.startTime))
stopTime = strftime("%a, %d %b %Y %H:%M:%S",
localtime(self.stopTime))
return ("PtHopStats:\n"
" Src. Node: " + str(self.src) + "\n" +
" Dst. Node: " + str(self.dst) + "\n" +
" StartTime: " + startTime + "\n" +
" StopTime: " + stopTime + "\n" +
" Packets: " + str(self.number) + " Pkts\n"
" Avg. Pktsize: " + str(self.avgPktSize) + " Bytes\n" +
" Avg. Delay: " + str(self.avgDelay) + " ms")
def set_startTime(self, startTime):
"""
Overwritten setter functions to convert the time_struct into a real
timestamp.
@type StartTime: struct_time
@param StartTime Time that defines the start of the
observation
"""
self.startTime = mktime(startTime)
def set_stopTime(self, stopTime):
"""
Overwritten setter functions to convert the time_struct into a real
timestamp.
@type StartTime: struct_time
@param StartTime Time that defines the end of the observation
"""
self.stopTime = mktime(stopTime)
|