represents the ContentStore More...
#include <cs.hpp>
Classes | |
struct | EntryFromEntryImpl |
Public Types | |
typedef std::function< void(const Interest &, const Data &data)> | HitCallback |
typedef std::function< void(const Interest &)> | MissCallback |
typedef boost::transform_iterator< EntryFromEntryImpl, iterator, const Entry & > | const_iterator |
ContentStore iterator (public API) More... | |
Public Member Functions | |
Cs (size_t nMaxPackets=10, unique_ptr< Policy > policy=makeDefaultPolicy()) | |
bool | insert (const Data &data, bool isUnsolicited=false) |
inserts a Data packet More... | |
void | find (const Interest &interest, const HitCallback &hitCallback, const MissCallback &missCallback) const |
finds the best matching Data packet More... | |
void | erase (const Name &exactName) |
void | setLimit (size_t nMaxPackets) |
changes capacity (in number of packets) More... | |
size_t | getLimit () const |
void | setPolicy (unique_ptr< Policy > policy) |
changes cs replacement policy More... | |
Policy * | getPolicy () const |
size_t | size () const |
const_iterator | begin () const |
const_iterator | end () const |
typedef std::function<void(const Interest&, const Data& data)> nfd::cs::Cs::HitCallback |
typedef std::function<void(const Interest&)> nfd::cs::Cs::MissCallback |
typedef boost::transform_iterator<EntryFromEntryImpl, iterator, const Entry&> nfd::cs::Cs::const_iterator |
|
explicit |
bool nfd::cs::Cs::insert | ( | const Data & | data, |
bool | isUnsolicited = false |
||
) |
inserts a Data packet
Definition at line 82 of file cs.cpp.
References ndn::tlv::nfd::CachingPolicy, ndn::Data::getLocalControlHeader(), ndn::Data::getName(), nfd::cs::Entry::isUnsolicited(), ndn::tlv::nfd::LocalControlHeader, NFD_LOG_DEBUG, nfd::cs::EntryImpl::unsetUnsolicited(), and nfd::cs::Entry::updateStaleTime().
void nfd::cs::Cs::find | ( | const Interest & | interest, |
const HitCallback & | hitCallback, | ||
const MissCallback & | missCallback | ||
) | const |
finds the best matching Data packet
interest | the Interest for lookup |
hitCallback | a callback if a match is found; must not be empty |
missCallback | a callback if there's no match; must not be empty |
Definition at line 120 of file cs.cpp.
References nfd::cs::Entry::canSatisfy(), nfd::find_last_if(), ndn::Interest::getChildSelector(), ndn::Interest::getName(), ndn::Name::getPrefix(), ndn::Name::getSuccessor(), NFD_LOG_DEBUG, NFD_LOG_TRACE, and ndn::Name::size().
|
inline |
Definition at line 93 of file cs.hpp.
References getLimit(), setLimit(), and setPolicy().
void nfd::cs::Cs::setLimit | ( | size_t | nMaxPackets | ) |
size_t nfd::cs::Cs::getLimit | ( | ) | const |
void nfd::cs::Cs::setPolicy | ( | unique_ptr< Policy > | policy | ) |
|
inline |
|
inline |
Definition at line 125 of file cs.hpp.
References PUBLIC_WITH_TESTS_ELSE_PRIVATE.
|
inline |
|
inline |