represents a CS replacement policy More...
#include <cs-policy.hpp>
Public Member Functions | |
Policy (const std::string &policyName) | |
virtual | ~Policy ()=default |
const std::string & | getName () const |
Cs * | getCs () const |
gets cs More... | |
void | setCs (Cs *cs) |
sets cs More... | |
size_t | getLimit () const |
gets hard limit (in number of entries) More... | |
void | setLimit (size_t nMaxEntries) |
sets hard limit (in number of entries) More... | |
void | afterInsert (iterator i) |
invoked by CS after a new entry is inserted More... | |
void | afterRefresh (iterator i) |
invoked by CS after an existing entry is refreshed by same Data More... | |
void | beforeErase (iterator i) |
invoked by CS before an entry is erased due to management command More... | |
void | beforeUse (iterator i) |
invoked by CS before an entry is used to match a lookup More... | |
Static Public Member Functions | |
template<typename P > | |
static void | registerPolicy () |
static unique_ptr< Policy > | create (const std::string &key) |
Public Attributes | |
signal::Signal< Policy, iterator > | beforeEvict |
emits when an entry is being evicted More... | |
Protected Member Functions | |
virtual void | doAfterInsert (iterator i)=0 |
invoked after a new entry is created in CS More... | |
virtual void | doAfterRefresh (iterator i)=0 |
invoked after an existing entry is refreshed by same Data More... | |
virtual void | doBeforeErase (iterator i)=0 |
invoked before an entry is erased due to management command More... | |
virtual void | doBeforeUse (iterator i)=0 |
invoked before an entry is used to match a lookup More... | |
virtual void | evictEntries ()=0 |
evicts zero or more entries More... | |
represents a CS replacement policy
Definition at line 39 of file cs-policy.hpp.
|
explicit |
Definition at line 50 of file cs-policy.cpp.
Referenced by registerPolicy().
|
virtualdefault |
Referenced by registerPolicy().
|
inlinestatic |
Definition at line 44 of file cs-policy.hpp.
References create(), getCs(), getLimit(), getName(), Policy(), setCs(), setLimit(), and ~Policy().
|
static |
key
, or nullptr if key
is unknown Definition at line 43 of file cs-policy.cpp.
Referenced by nfd::cs::makeDefaultPolicy(), and registerPolicy().
|
inline |
Definition at line 188 of file cs-policy.hpp.
Referenced by registerPolicy().
|
inline |
gets cs
Definition at line 194 of file cs-policy.hpp.
Referenced by nfd::cs::lru::LruPolicy::LruPolicy(), registerPolicy(), and nfd::cs::priority_fifo::PriorityFifoPolicy::~PriorityFifoPolicy().
|
inline |
|
inline |
gets hard limit (in number of entries)
Definition at line 206 of file cs-policy.hpp.
Referenced by nfd::cs::lru::LruPolicy::LruPolicy(), registerPolicy(), and nfd::cs::priority_fifo::PriorityFifoPolicy::~PriorityFifoPolicy().
void nfd::cs::Policy::setLimit | ( | size_t | nMaxEntries | ) |
sets hard limit (in number of entries)
The policy may evict entries if necessary.
Definition at line 56 of file cs-policy.cpp.
References evictEntries(), and NFD_LOG_INFO.
Referenced by registerPolicy().
void nfd::cs::Policy::afterInsert | ( | iterator | i | ) |
invoked by CS after a new entry is inserted
The policy may evict entries if necessary. During this process, i
might be evicted.
Definition at line 64 of file cs-policy.cpp.
References doAfterInsert().
void nfd::cs::Policy::afterRefresh | ( | iterator | i | ) |
invoked by CS after an existing entry is refreshed by same Data
The policy may witness this refresh to make better eviction decisions in the future.
Definition at line 71 of file cs-policy.cpp.
References doAfterRefresh().
void nfd::cs::Policy::beforeErase | ( | iterator | i | ) |
invoked by CS before an entry is erased due to management command
Definition at line 78 of file cs-policy.cpp.
References doBeforeErase().
void nfd::cs::Policy::beforeUse | ( | iterator | i | ) |
invoked by CS before an entry is used to match a lookup
The policy may witness this usage to make better eviction decisions in the future.
Definition at line 85 of file cs-policy.cpp.
References doBeforeUse().
|
protectedpure virtual |
invoked after a new entry is created in CS
When overridden in a subclass, a policy implementation should decide whether to accept i
. If i
is accepted, it should be inserted into a cleanup index. Otherwise, beforeEvict
signal should be emitted with i
to inform CS to erase the entry. A policy implementation may decide to evict other entries by emitting beforeEvict
signal, in order to keep CS size under limit.
Referenced by afterInsert().
|
protectedpure virtual |
invoked after an existing entry is refreshed by same Data
When overridden in a subclass, a policy implementation may witness this operation and adjust its cleanup index.
Referenced by afterRefresh().
|
protectedpure virtual |
invoked before an entry is erased due to management command
When overridden in a subclass, a policy implementation should erase i
from its cleanup index without emitted afterErase
signal.
Referenced by beforeErase().
|
protectedpure virtual |
invoked before an entry is used to match a lookup
When overridden in a subclass, a policy implementation may witness this operation and adjust its cleanup index.
Referenced by beforeUse().
|
protectedpure virtual |
evicts zero or more entries
Referenced by setLimit().
signal::Signal<Policy, iterator> nfd::cs::Policy::beforeEvict |
emits when an entry is being evicted
A policy implementation should emit this signal to cause CS to erase the entry from its index. CS should connect to this signal and erase the entry upon signal emission.
Definition at line 97 of file cs-policy.hpp.
Referenced by nfd::cs::lru::LruPolicy::LruPolicy(), and nfd::cs::priority_fifo::PriorityFifoPolicy::~PriorityFifoPolicy().