nfd::cs::Entry Class Reference

represents a base class for CS entry More...

#include <daemon/table/cs-entry.hpp>

+ Inheritance diagram for nfd::cs::Entry:

Public Member Functions

bool canSatisfy (const Interest &interest) const
 determines whether Interest can be satisified by the stored Data More...
 
const Data & getData () const
 
const Name & getFullName () const
 
const Name & getName () const
 
const time::steady_clock::TimePoint & getStaleTime () const
 
bool hasData () const
 
bool isStale () const
 checks if the stored Data is stale now More...
 
bool isUnsolicited () const
 
void reset ()
 clears the entry More...
 
void setData (shared_ptr< const Data > data, bool isUnsolicited)
 replaces the stored Data More...
 
void setData (const Data &data, bool isUnsolicited)
 replaces the stored Data More...
 
void updateStaleTime ()
 refreshes stale time relative to current time More...
 

Detailed Description

represents a base class for CS entry

Definition at line 36 of file cs-entry.hpp.

Member Function Documentation

bool nfd::cs::Entry::canSatisfy ( const Interest &  interest) const

determines whether Interest can be satisified by the stored Data

Note
ChildSelector is not considered
Precondition
hasData()

Definition at line 55 of file cs-entry.cpp.

const Data& nfd::cs::Entry::getData ( ) const
inline
Returns
the stored Data
Precondition
hasData()

Definition at line 43 of file cs-entry.hpp.

const Name& nfd::cs::Entry::getFullName ( ) const
inline
Returns
full name (including implicit digest) of the stored Data
Precondition
hasData()

Definition at line 63 of file cs-entry.hpp.

const Name& nfd::cs::Entry::getName ( ) const
inline
Returns
Name of the stored Data
Precondition
hasData()

Definition at line 53 of file cs-entry.hpp.

const time::steady_clock::TimePoint& nfd::cs::Entry::getStaleTime ( ) const
inline
Returns
the absolute time when the stored Data becomes stale
Note
if the returned TimePoint is in the past, the Data is stale
Precondition
hasData()

Definition at line 84 of file cs-entry.hpp.

bool nfd::cs::Entry::hasData ( ) const
inline
Returns
true if a Data packet is stored

Definition at line 107 of file cs-entry.hpp.

bool nfd::cs::Entry::isStale ( ) const

checks if the stored Data is stale now

Precondition
hasData()

Definition at line 41 of file cs-entry.cpp.

bool nfd::cs::Entry::isUnsolicited ( ) const
inline
Returns
whether the stored Data is unsolicited
Precondition
hasData()

Definition at line 73 of file cs-entry.hpp.

void nfd::cs::Entry::reset ( )

clears the entry

Postcondition
!hasData()

Definition at line 70 of file cs-entry.cpp.

void nfd::cs::Entry::setData ( shared_ptr< const Data >  data,
bool  isUnsolicited 
)

replaces the stored Data

Definition at line 32 of file cs-entry.cpp.

void nfd::cs::Entry::setData ( const Data &  data,
bool  isUnsolicited 
)
inline

replaces the stored Data

Definition at line 120 of file cs-entry.hpp.

void nfd::cs::Entry::updateStaleTime ( )

refreshes stale time relative to current time

Definition at line 48 of file cs-entry.cpp.