A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
flow-probe.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
//
3
// Copyright (c) 2009 INESC Porto
4
//
5
// This program is free software; you can redistribute it and/or modify
6
// it under the terms of the GNU General Public License version 2 as
7
// published by the Free Software Foundation;
8
//
9
// This program is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with this program; if not, write to the Free Software
16
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
//
18
// Author: Gustavo J. A. M. Carneiro <gjc@inescporto.pt> <gjcarneiro@gmail.com>
19
//
20
21
#ifndef FLOW_PROBE_H
22
#define FLOW_PROBE_H
23
24
#include <map>
25
#include <vector>
26
27
#include "ns3/object.h"
28
#include "ns3/flow-classifier.h"
29
#include "ns3/nstime.h"
30
31
namespace
ns3 {
32
33
class
FlowMonitor;
34
39
class
FlowProbe
:
public
Object
40
{
41
private
:
42
FlowProbe
(
FlowProbe
const
&);
43
FlowProbe
&
operator=
(
FlowProbe
const
&);
44
45
protected
:
46
47
FlowProbe
(
Ptr<FlowMonitor>
flowMonitor);
48
virtual
void
DoDispose
(
void
);
49
50
public
:
51
virtual
~FlowProbe
();
52
53
struct
FlowStats
54
{
55
FlowStats
() :
delayFromFirstProbeSum
(Seconds (0)),
bytes
(0),
packets
(0) {}
56
58
std::vector<uint32_t>
packetsDropped
;
60
std::vector<uint64_t>
bytesDropped
;
63
Time
delayFromFirstProbeSum
;
65
uint64_t
bytes
;
67
uint32_t
packets
;
68
};
69
70
typedef
std::map<FlowId, FlowStats>
Stats
;
71
72
void
AddPacketStats
(
FlowId
flowId, uint32_t packetSize,
Time
delayFromFirstProbe);
73
void
AddPacketDropStats
(
FlowId
flowId, uint32_t packetSize, uint32_t reasonCode);
74
78
Stats
GetStats
()
const
;
79
80
void
SerializeToXmlStream
(std::ostream &os,
int
indent
, uint32_t index)
const
;
81
82
protected
:
83
Ptr<FlowMonitor>
m_flowMonitor
;
84
Stats
m_stats
;
85
86
};
87
88
89
}
// namespace ns3
90
91
#endif
/* FLOW_PROBE_H */
ns3::Time
keep track of time values and allow control of global simulation resolution
Definition:
nstime.h:81
ns3::Ptr
smart pointer class similar to boost::intrusive_ptr
Definition:
ptr.h:59
ns3::FlowProbe::FlowStats::bytesDropped
std::vector< uint64_t > bytesDropped
bytesDropped[reasonCode] => number of dropped bytes
Definition:
flow-probe.h:60
ns3::FlowProbe::~FlowProbe
virtual ~FlowProbe()
Definition:
flow-probe.cc:27
ns3::FlowProbe::AddPacketStats
void AddPacketStats(FlowId flowId, uint32_t packetSize, Time delayFromFirstProbe)
Definition:
flow-probe.cc:46
ns3::FlowProbe::m_flowMonitor
Ptr< FlowMonitor > m_flowMonitor
Definition:
flow-probe.h:83
ns3::FlowProbe::FlowStats::packets
uint32_t packets
Number of packets seen of this flow.
Definition:
flow-probe.h:67
ns3::FlowProbe::FlowStats::bytes
uint64_t bytes
Number of bytes seen of this flow.
Definition:
flow-probe.h:65
ns3::FlowProbe::operator=
FlowProbe & operator=(FlowProbe const &)
check-style.indent
def indent
Definition:
check-style.py:286
ns3::FlowProbe::FlowStats::packetsDropped
std::vector< uint32_t > packetsDropped
packetsDropped[reasonCode] => number of dropped packets
Definition:
flow-probe.h:58
ns3::FlowProbe::FlowStats
Definition:
flow-probe.h:53
ns3::FlowProbe::AddPacketDropStats
void AddPacketDropStats(FlowId flowId, uint32_t packetSize, uint32_t reasonCode)
Definition:
flow-probe.cc:55
ns3::FlowProbe::FlowStats::FlowStats
FlowStats()
Definition:
flow-probe.h:55
ns3::FlowProbe
Definition:
flow-probe.h:39
ns3::FlowProbe::FlowStats::delayFromFirstProbeSum
Time delayFromFirstProbeSum
Definition:
flow-probe.h:63
ns3::FlowProbe::SerializeToXmlStream
void SerializeToXmlStream(std::ostream &os, int indent, uint32_t index) const
Definition:
flow-probe.cc:75
ns3::FlowProbe::Stats
std::map< FlowId, FlowStats > Stats
Definition:
flow-probe.h:70
ns3::FlowProbe::GetStats
Stats GetStats() const
Definition:
flow-probe.cc:69
ns3::Object
a base class which provides memory management and object aggregation
Definition:
object.h:63
ns3::FlowId
uint32_t FlowId
Definition:
flow-classifier.h:29
ns3::FlowProbe::FlowProbe
FlowProbe(FlowProbe const &)
ns3::FlowProbe::DoDispose
virtual void DoDispose(void)
Definition:
flow-probe.cc:39
ns3::FlowProbe::m_stats
Stats m_stats
Definition:
flow-probe.h:84
src
flow-monitor
model
flow-probe.h
Generated on Sat Nov 16 2013 12:55:27 for ns-3 by
1.8.5