nlsr::Lsa Class Referenceabstract

#include <lsa.hpp>

Inheritance diagram for nlsr::Lsa:
[legend]
Collaboration diagram for nlsr::Lsa:
[legend]

Public Types

enum  Type {
  Type::ADJACENCY, Type::COORDINATE, Type::NAME, Type::BASE,
  Type::MOCK
}
 

Public Member Functions

 Lsa ()
 
virtual Type getType () const
 
void setLsSeqNo (uint32_t lsn)
 
uint32_t getLsSeqNo () const
 
const ndn::Name & getOrigRouter () const
 
void setOrigRouter (const ndn::Name &org)
 
const ndn::time::system_clock::TimePoint & getExpirationTimePoint () const
 
void setExpirationTimePoint (const ndn::time::system_clock::TimePoint &lt)
 
void setExpiringEventId (const ndn::EventId leei)
 
ndn::EventId getExpiringEventId () const
 
virtual std::string serialize () const =0
 Return the data that this LSA represents. More...
 
const ndn::Name getKey () const
 Gets the key for this LSA. More...
 
virtual bool deserialize (const std::string &content) noexcept=0
 Populate this LSA with content from the string "content". More...
 
virtual void writeLog () const =0
 

Protected Member Functions

std::string getData () const
 
std::string toString () const
 
bool deserializeCommon (boost::tokenizer< boost::char_separator< char >>::iterator &iterator)
 

Protected Attributes

ndn::Name m_origRouter
 
uint32_t m_lsSeqNo
 
ndn::time::system_clock::TimePoint m_expirationTimePoint
 
ndn::EventId m_expiringEventId
 

Detailed Description

Definition at line 38 of file lsa.hpp.

Member Enumeration Documentation

enum nlsr::Lsa::Type
strong
Enumerator
ADJACENCY 
COORDINATE 
NAME 
BASE 
MOCK 

Definition at line 41 of file lsa.hpp.

Constructor & Destructor Documentation

nlsr::Lsa::Lsa ( )
inline

Definition at line 49 of file lsa.hpp.

Member Function Documentation

virtual bool nlsr::Lsa::deserialize ( const std::string &  content)
pure virtualnoexcept

Populate this LSA with content from the string "content".

Parameters
contentThe string containing a valid serialization of LSA content.

This method populates "this" LSA with data from the string.

Implemented in nlsr::CoordinateLsa, nlsr::AdjLsa, and nlsr::NameLsa.

Here is the caller graph for this function:

bool nlsr::Lsa::deserializeCommon ( boost::tokenizer< boost::char_separator< char >>::iterator &  iterator)
protected

Definition at line 56 of file lsa.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

std::string nlsr::Lsa::getData ( ) const
protected

Get data common to all LSA types.

This method should be called by all LSA classes in their serialize() method.

Definition at line 41 of file lsa.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

const ndn::time::system_clock::TimePoint& nlsr::Lsa::getExpirationTimePoint ( ) const
inline

Definition at line 88 of file lsa.hpp.

Here is the caller graph for this function:

ndn::EventId nlsr::Lsa::getExpiringEventId ( ) const
inline

Definition at line 106 of file lsa.hpp.

Here is the call graph for this function:

Here is the caller graph for this function:

const ndn::Name nlsr::Lsa::getKey ( ) const

Gets the key for this LSA.

Format is: <router name>/<LSA type>\

Definition at line 50 of file lsa.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

uint32_t nlsr::Lsa::getLsSeqNo ( ) const
inline

Definition at line 70 of file lsa.hpp.

Here is the caller graph for this function:

const ndn::Name& nlsr::Lsa::getOrigRouter ( ) const
inline

Definition at line 76 of file lsa.hpp.

Here is the caller graph for this function:

virtual Type nlsr::Lsa::getType ( ) const
inlinevirtual

Reimplemented in nlsr::CoordinateLsa, nlsr::AdjLsa, and nlsr::NameLsa.

Definition at line 58 of file lsa.hpp.

Here is the caller graph for this function:

virtual std::string nlsr::Lsa::serialize ( ) const
pure virtual

Return the data that this LSA represents.

Implemented in nlsr::CoordinateLsa, nlsr::AdjLsa, and nlsr::NameLsa.

Here is the caller graph for this function:

void nlsr::Lsa::setExpirationTimePoint ( const ndn::time::system_clock::TimePoint &  lt)
inline

Definition at line 94 of file lsa.hpp.

Here is the caller graph for this function:

void nlsr::Lsa::setExpiringEventId ( const ndn::EventId  leei)
inline

Definition at line 100 of file lsa.hpp.

Here is the caller graph for this function:

void nlsr::Lsa::setLsSeqNo ( uint32_t  lsn)
inline

Definition at line 64 of file lsa.hpp.

Here is the caller graph for this function:

void nlsr::Lsa::setOrigRouter ( const ndn::Name &  org)
inline

Definition at line 82 of file lsa.hpp.

std::string nlsr::Lsa::toString ( ) const
protected

Print data common to all LSA types.

Definition at line 365 of file lsa.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

virtual void nlsr::Lsa::writeLog ( ) const
pure virtual

Implemented in nlsr::CoordinateLsa, nlsr::AdjLsa, and nlsr::NameLsa.

Here is the caller graph for this function:

Field Documentation

ndn::time::system_clock::TimePoint nlsr::Lsa::m_expirationTimePoint
protected

Definition at line 154 of file lsa.hpp.

ndn::EventId nlsr::Lsa::m_expiringEventId
protected

Definition at line 155 of file lsa.hpp.

uint32_t nlsr::Lsa::m_lsSeqNo
protected

Definition at line 153 of file lsa.hpp.

ndn::Name nlsr::Lsa::m_origRouter
protected

Definition at line 152 of file lsa.hpp.