26 #ifndef NFD_RIB_RIB_ENTRY_HPP 27 #define NFD_RIB_RIB_ENTRY_HPP 36 class RibEntry :
public enable_shared_from_this<RibEntry>
44 : m_nRoutesWithCaptureSet(0)
61 addChild(shared_ptr<RibEntry> child);
66 const std::list<shared_ptr<RibEntry>>&
80 std::pair<RibEntry::iterator, bool>
130 RouteList::const_iterator
180 setParent(shared_ptr<RibEntry> parent);
184 std::list<shared_ptr<RibEntry>> m_children;
185 shared_ptr<RibEntry> m_parent;
187 RouteList m_inheritedRoutes;
195 uint64_t m_nRoutesWithCaptureSet;
211 RibEntry::setParent(shared_ptr<RibEntry> parent)
216 inline shared_ptr<RibEntry>
222 inline const std::list<shared_ptr<RibEntry> >&
237 return m_inheritedRoutes;
243 return m_routes.begin();
249 return m_routes.end();
255 return m_routes.begin();
261 return m_routes.end();
270 #endif // NFD_RIB_RIB_ENTRY_HPP shared_ptr< RibEntry > getParent() const
void removeChild(shared_ptr< RibEntry > child)
iterator findRoute(const Route &route)
void addChild(shared_ptr< RibEntry > child)
bool hasFaceId(const uint64_t faceId) const
bool hasRoute(const Route &route)
std::ostream & operator<<(std::ostream &os, const FibUpdate &update)
size_t getNRoutes() const
const Route * getRouteWithSecondLowestCostByFaceId(uint64_t faceId) const
RouteList::iterator iterator
const Name & getName() const
void removeInheritedRoute(const Route &route)
Table::const_iterator iterator
void addInheritedRoute(const Route &route)
Copyright (c) 2011-2015 Regents of the University of California.
const Route * getRouteWithLowestCostAndChildInheritByFaceId(uint64_t faceId) const
Returns the route with the lowest cost that has the passed face ID and its child inherit flag set...
represents a RIB entry, which contains one or more Routes with the same prefix
represents a route for a name prefix
bool hasInheritedRoute(const Route &route) const
Determines if the entry has an inherited route with a matching face ID.
RouteList::const_iterator findInheritedRoute(const Route &route) const
Finds an inherited route with a matching face ID.
Name abstraction to represent an absolute name.
const_iterator begin() const
bool hasChildInheritOnFaceId(uint64_t faceId) const
Determines if the entry has an inherited route with the passed face ID and its child inherit flag set...
std::pair< RibEntry::iterator, bool > insertRoute(const Route &route)
inserts a new route into the entry's route list If another route already exists with the same faceId ...
RouteList::const_iterator const_iterator
void setName(const Name &prefix)
std::list< Route > RouteList
const RouteList & getInheritedRoutes() const
Returns the routes this namespace has inherited.
void eraseRoute(const Route &route)
erases a Route with the same faceId and origin
const Route * getRouteWithLowestCostByFaceId(uint64_t faceId) const
Returns the route with the lowest cost that has the passed face ID.
const_iterator end() const
const std::list< shared_ptr< RibEntry > > & getChildren() const