NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: 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
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
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
v
w
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Enumerations
a
b
c
d
f
i
k
l
n
p
q
r
s
t
u
v
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
j
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
v
w
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Enumerations
_
a
c
e
r
s
t
v
+
Enumerator
a
c
d
e
f
h
i
l
m
n
p
r
s
u
v
w
+
Related Functions
a
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
o
p
r
s
t
u
v
w
z
+
Functions
b
c
d
e
f
g
h
m
o
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
i
k
l
m
n
p
r
s
t
+
Typedefs
b
c
d
e
i
m
p
s
u
w
Enumerations
Enumerator
+
Macros
_
a
b
d
e
i
l
m
n
o
p
r
s
t
u
v
z
•
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:41
nfd::fw::Strategy
Strategy
Definition:
strategy.cpp:38
measurements-accessor.hpp
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:39
nfd::strategy_choice::StrategyChoice::findEffectiveStrategy
fw::Strategy & findEffectiveStrategy(const Name &prefix) const
Get effective strategy for prefix.
Definition:
strategy-choice.cpp:191
nfd::measurements::Measurements
The Measurements table.
Definition:
measurements.hpp:79
nfd::fw::Strategy
Represents a forwarding strategy.
Definition:
strategy.hpp:38
nfd::strategy_choice::StrategyChoice
Represents the Strategy Choice table.
Definition:
strategy-choice.hpp:51
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 Fri May 6 2022 12:34:14 for ndnSIM by
1.8.13