NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
u
v
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
w
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
+
Enumerator
a
d
e
f
i
k
l
n
p
r
s
u
w
+
Related Functions
b
c
d
e
f
g
i
k
l
m
n
o
p
s
v
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
u
v
w
+
Functions
c
f
h
m
r
s
u
w
+
Variables
a
c
d
g
k
l
n
p
r
s
Typedefs
+
Macros
b
d
e
f
i
l
m
n
p
r
s
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
measurements-accessor.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26
#include "
measurements-accessor.hpp
"
27
28
namespace
nfd
{
29
namespace
measurements {
30
31
using
fw::Strategy
;
32
33
MeasurementsAccessor::MeasurementsAccessor
(
Measurements
& measurements,
34
const
StrategyChoice
& strategyChoice,
35
const
Strategy
& strategy)
36
: m_measurements(measurements)
37
, m_strategyChoice(strategyChoice)
38
, m_strategy(&strategy)
39
{
40
}
41
42
MeasurementsAccessor::~MeasurementsAccessor
()
43
{
44
}
45
46
Entry
*
47
MeasurementsAccessor::filter(
Entry
* entry)
const
48
{
49
if
(entry ==
nullptr
) {
50
return
entry;
51
}
52
53
Strategy
& effectiveStrategy = m_strategyChoice.
findEffectiveStrategy
(*entry);
54
if
(&effectiveStrategy == m_strategy) {
55
return
entry;
56
}
57
return
nullptr
;
58
}
59
60
}
// namespace measurements
61
}
// namespace nfd
nfd::measurements::MeasurementsAccessor::~MeasurementsAccessor
~MeasurementsAccessor()
Definition:
measurements-accessor.cpp:42
nfd::measurements::Entry
represents a Measurements entry
Definition:
measurements-entry.hpp:42
nfd::fw::Strategy
Strategy
Definition:
strategy.cpp:35
measurements-accessor.hpp
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
nfd::strategy_choice::StrategyChoice::findEffectiveStrategy
fw::Strategy & findEffectiveStrategy(const Name &prefix) const
get effective strategy for prefix
Definition:
strategy-choice.cpp:184
nfd::measurements::Measurements
represents the Measurements table
Definition:
measurements.hpp:75
nfd::fw::Strategy
represents a forwarding strategy
Definition:
strategy.hpp:38
nfd::strategy_choice::StrategyChoice
represents the Strategy Choice table
Definition:
strategy-choice.hpp:48
nfd::measurements::MeasurementsAccessor::MeasurementsAccessor
MeasurementsAccessor(Measurements &measurements, const StrategyChoice &strategyChoice, const fw::Strategy &strategy)
Definition:
measurements-accessor.cpp:33
ndnSIM
NFD
daemon
table
measurements-accessor.cpp
Generated on Wed Jan 11 2017 18:17:15 for ndnSIM by
1.8.13