NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
nfd::rib::Rib Class Reference

represents the Routing Information Base More...

#include <rib.hpp>

Inheritance diagram for nfd::rib::Rib:
Collaboration diagram for nfd::rib::Rib:

Public Types

typedef std::list< shared_ptr< RibEntry > > RibEntryList
 
typedef std::map< Name, shared_ptr< RibEntry > > RibTable
 
typedef RibTable::const_iterator const_iterator
 
typedef std::map< uint64_t, std::list< shared_ptr< RibEntry > > > FaceLookupTable
 
typedef bool(* RouteComparePredicate) (const Route &, const Route &)
 
typedef std::set< Route, RouteComparePredicateRouteSet
 
typedef function< void()> UpdateSuccessCallback
 
typedef function< void(uint32_t code, const std::string &error)> UpdateFailureCallback
 

Public Member Functions

 Rib ()
 
 ~Rib ()
 
void setFibUpdater (FibUpdater *updater)
 
const_iterator find (const Name &prefix) const
 
Routefind (const Name &prefix, const Route &route) const
 
const_iterator begin () const
 
const_iterator end () const
 
size_t size () const
 
bool empty () const
 
shared_ptr< RibEntryfindParent (const Name &prefix) const
 
std::list< shared_ptr< RibEntry > > findDescendants (const Name &prefix) const
 finds namespaces under the passed prefix More...
 
std::list< shared_ptr< RibEntry > > findDescendantsForNonInsertedName (const Name &prefix) const
 finds namespaces under the passed prefix More...
 
void beginApplyUpdate (const RibUpdate &update, const UpdateSuccessCallback &onSuccess, const UpdateFailureCallback &onFailure)
 passes the provided RibUpdateBatch to FibUpdater to calculate and send FibUpdates. More...
 
void beginRemoveFace (uint64_t faceId)
 starts the FIB update process when a face has been destroyed More...
 
void onFibUpdateSuccess (const RibUpdateBatch &batch, const RibUpdateList &inheritedRoutes, const Rib::UpdateSuccessCallback &onSuccess)
 
void onFibUpdateFailure (const Rib::UpdateFailureCallback &onFailure, uint32_t code, const std::string &error)
 
void onRouteExpiration (const Name &prefix, const Route &route)
 
void insert (const Name &prefix, const Route &route)
 

Public Attributes

ndn::util::signal::Signal< Rib, NameafterInsertEntry
 signals after a RIB entry is inserted More...
 
ndn::util::signal::Signal< Rib, NameafterEraseEntry
 signals after a RIB entry is erased More...
 
ndn::util::signal::Signal< Rib, RibRouteRefafterAddRoute
 signals after a Route is added More...
 
ndn::util::signal::Signal< Rib, RibRouteRefbeforeRemoveRoute
 signals before a route is removed More...
 

Friends

class FibUpdater
 

Detailed Description

represents the Routing Information Base

The Routing Information Base contains a collection of Routes, each represents a piece of static or dynamic routing information registered by applications, operators, or NFD itself. Routes associated with the same namespace are collected into a RIB entry.

Definition at line 59 of file rib.hpp.

Member Typedef Documentation

typedef std::list<shared_ptr<RibEntry> > nfd::rib::Rib::RibEntryList

Definition at line 62 of file rib.hpp.

typedef std::map<Name, shared_ptr<RibEntry> > nfd::rib::Rib::RibTable

Definition at line 63 of file rib.hpp.

typedef RibTable::const_iterator nfd::rib::Rib::const_iterator

Definition at line 64 of file rib.hpp.

typedef std::map<uint64_t, std::list<shared_ptr<RibEntry> > > nfd::rib::Rib::FaceLookupTable

Definition at line 65 of file rib.hpp.

typedef bool(* nfd::rib::Rib::RouteComparePredicate) (const Route &, const Route &)

Definition at line 66 of file rib.hpp.

Definition at line 67 of file rib.hpp.

typedef function<void()> nfd::rib::Rib::UpdateSuccessCallback

Definition at line 115 of file rib.hpp.

typedef function<void(uint32_t code, const std::string& error)> nfd::rib::Rib::UpdateFailureCallback

Definition at line 116 of file rib.hpp.

Constructor & Destructor Documentation

nfd::rib::Rib::Rib ( )

Definition at line 49 of file rib.cpp.

nfd::rib::Rib::~Rib ( )

Definition at line 55 of file rib.cpp.

Member Function Documentation

void nfd::rib::Rib::setFibUpdater ( FibUpdater updater)

Definition at line 60 of file rib.cpp.

Referenced by nfd::rib::FibUpdater::FibUpdater().

Rib::const_iterator nfd::rib::Rib::find ( const Name prefix) const

Definition at line 66 of file rib.cpp.

Referenced by nfd::rib::FibUpdater::computeAndSendFibUpdates().

Route * nfd::rib::Rib::find ( const Name prefix,
const Route route 
) const

Definition at line 72 of file rib.cpp.

Rib::const_iterator nfd::rib::Rib::begin ( ) const
inline

Definition at line 269 of file rib.hpp.

Rib::const_iterator nfd::rib::Rib::end ( ) const
inline

Definition at line 275 of file rib.hpp.

Referenced by nfd::rib::FibUpdater::computeAndSendFibUpdates().

size_t nfd::rib::Rib::size ( ) const
inline

Definition at line 281 of file rib.hpp.

bool nfd::rib::Rib::empty ( ) const
inline

Definition at line 287 of file rib.hpp.

References nfd::rib::operator<<().

shared_ptr< RibEntry > nfd::rib::Rib::findParent ( const Name prefix) const
std::list< shared_ptr< RibEntry > > nfd::rib::Rib::findDescendants ( const Name prefix) const

finds namespaces under the passed prefix

Returns
{ a list of entries which are under the passed prefix }

Definition at line 227 of file rib.cpp.

References ndn::Name::isPrefixOf().

Referenced by insert().

std::list< shared_ptr< RibEntry > > nfd::rib::Rib::findDescendantsForNonInsertedName ( const Name prefix) const

finds namespaces under the passed prefix

Note
Unlike findDescendants, needs to find where prefix would fit in tree before collecting list of descendant prefixes
Returns
{ a list of entries which would be under the passed prefix if the prefix existed in the RIB }

Definition at line 249 of file rib.cpp.

References afterEraseEntry, findParent(), nfd::rib::RibEntry::getParent(), ndn::nfd::RouteFlagsTraits< T >::isChildInherit(), ndn::Name::isPrefixOf(), and nfd::rib::sortRoutes().

Referenced by nfd::rib::FibUpdater::computeAndSendFibUpdates().

void nfd::rib::Rib::beginApplyUpdate ( const RibUpdate update,
const UpdateSuccessCallback onSuccess,
const UpdateFailureCallback onFailure 
)

passes the provided RibUpdateBatch to FibUpdater to calculate and send FibUpdates.

If the FIB is updated successfully, onFibUpdateSuccess() will be called, and the RIB will be updated

If the FIB update fails, onFibUpdateFailure() will be called, and the RIB will not be updated.

Definition at line 351 of file rib.cpp.

Referenced by nfd::rib::RibManager::onRibUpdateFailure(), and onRouteExpiration().

void nfd::rib::Rib::onFibUpdateSuccess ( const RibUpdateBatch batch,
const RibUpdateList inheritedRoutes,
const Rib::UpdateSuccessCallback onSuccess 
)
void nfd::rib::Rib::onFibUpdateFailure ( const Rib::UpdateFailureCallback onFailure,
uint32_t  code,
const std::string &  error 
)
void nfd::rib::Rib::onRouteExpiration ( const Name prefix,
const Route route 
)

Friends And Related Function Documentation

friend class FibUpdater
friend

Definition at line 250 of file rib.hpp.

Member Data Documentation

ndn::util::signal::Signal<Rib, Name> nfd::rib::Rib::afterInsertEntry

signals after a RIB entry is inserted

A RIB entry is inserted when the first route associated with a certain namespace is added.

Definition at line 225 of file rib.hpp.

Referenced by nfd::rib::AutoPrefixPropagator::enable(), insert(), and nfd::rib::NfdRibReadvertiseDestination::NfdRibReadvertiseDestination().

ndn::util::signal::Signal<Rib, Name> nfd::rib::Rib::afterEraseEntry

signals after a RIB entry is erased

A RIB entry is erased when the last route associated with a certain namespace is removed.

Definition at line 233 of file rib.hpp.

Referenced by nfd::rib::AutoPrefixPropagator::enable(), findDescendantsForNonInsertedName(), and nfd::rib::NfdRibReadvertiseDestination::NfdRibReadvertiseDestination().

ndn::util::signal::Signal<Rib, RibRouteRef> nfd::rib::Rib::afterAddRoute

signals after a Route is added

Definition at line 237 of file rib.hpp.

Referenced by insert(), and nfd::rib::Readvertise::Readvertise().

ndn::util::signal::Signal<Rib, RibRouteRef> nfd::rib::Rib::beforeRemoveRoute

signals before a route is removed

Definition at line 241 of file rib.hpp.

Referenced by insert(), and nfd::rib::Readvertise::Readvertise().


The documentation for this class was generated from the following files: