| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2014-2019, Regents of the University of California, |
| * Arizona Board of Regents, |
| * Colorado State University, |
| * University Pierre & Marie Curie, Sorbonne University, |
| * Washington University in St. Louis, |
| * Beijing Institute of Technology, |
| * The University of Memphis. |
| * |
| * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| * See AUTHORS.md for complete list of NFD authors and contributors. |
| * |
| * NFD is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #ifndef NFD_DAEMON_RIB_RIB_HPP |
| #define NFD_DAEMON_RIB_RIB_HPP |
| |
| #include "rib-entry.hpp" |
| #include "rib-update-batch.hpp" |
| |
| #include <ndn-cxx/mgmt/nfd/control-parameters.hpp> |
| |
| namespace nfd { |
| namespace rib { |
| |
| using ndn::nfd::ControlParameters; |
| |
| class FibUpdater; |
| |
| /** \brief references a route |
| */ |
| struct RibRouteRef |
| { |
| shared_ptr<RibEntry> entry; |
| RibEntry::const_iterator route; |
| }; |
| |
| bool |
| operator<(const RibRouteRef& lhs, const RibRouteRef& rhs); |
| |
| /** \brief 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. |
| */ |
| class Rib : noncopyable |
| { |
| public: |
| using RibEntryList = std::list<shared_ptr<RibEntry>>; |
| using RibTable = std::map<Name, shared_ptr<RibEntry>>; |
| using const_iterator = RibTable::const_iterator; |
| |
| void |
| setFibUpdater(FibUpdater* updater); |
| |
| const_iterator |
| find(const Name& prefix) const; |
| |
| Route* |
| find(const Name& prefix, const Route& route) const; |
| |
| Route* |
| findLongestPrefix(const Name& prefix, const Route& route) const; |
| |
| const_iterator |
| begin() const |
| { |
| return m_rib.begin(); |
| } |
| |
| const_iterator |
| end() const |
| { |
| return m_rib.end(); |
| } |
| |
| size_t |
| size() const |
| { |
| return m_nItems; |
| } |
| |
| bool |
| empty() const |
| { |
| return m_rib.empty(); |
| } |
| |
| shared_ptr<RibEntry> |
| findParent(const Name& prefix) const; |
| |
| public: |
| using UpdateSuccessCallback = std::function<void()>; |
| using UpdateFailureCallback = std::function<void(uint32_t code, const std::string& error)>; |
| |
| /** \brief 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. |
| */ |
| void |
| beginApplyUpdate(const RibUpdate& update, |
| const UpdateSuccessCallback& onSuccess, |
| const UpdateFailureCallback& onFailure); |
| |
| /** \brief starts the FIB update process when a face has been destroyed |
| */ |
| void |
| beginRemoveFace(uint64_t faceId); |
| |
| void |
| beginRemoveFailedFaces(const std::set<uint64_t>& activeFaceIds); |
| |
| void |
| onRouteExpiration(const Name& prefix, const Route& route); |
| |
| void |
| insert(const Name& prefix, const Route& route); |
| |
| private: |
| void |
| enqueueRemoveFace(const RibEntry& entry, uint64_t faceId); |
| |
| /** \brief Append the RIB update to the update queue. |
| * |
| * To start updates, invoke sendBatchFromQueue() . |
| */ |
| void |
| addUpdateToQueue(const RibUpdate& update, |
| const Rib::UpdateSuccessCallback& onSuccess, |
| const Rib::UpdateFailureCallback& onFailure); |
| |
| /** \brief Send the first update batch in the queue, if no other update is in progress. |
| */ |
| void |
| sendBatchFromQueue(); |
| |
| 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); |
| |
| PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| void |
| erase(const Name& prefix, const Route& route); |
| |
| private: |
| using RouteComparePredicate = bool (*)(const Route&, const Route&); |
| using RouteSet = std::set<Route, RouteComparePredicate>; |
| |
| /** \brief find entries under \p prefix |
| * \pre a RIB entry exists at \p prefix |
| */ |
| std::list<shared_ptr<RibEntry>> |
| findDescendants(const Name& prefix) const; |
| |
| /** \brief find entries under \p prefix |
| * \pre a RIB entry does not exist at \p prefix |
| */ |
| std::list<shared_ptr<RibEntry>> |
| findDescendantsForNonInsertedName(const Name& prefix) const; |
| |
| RibTable::iterator |
| eraseEntry(RibTable::iterator it); |
| |
| void |
| updateRib(const RibUpdateBatch& batch); |
| |
| /** \brief returns routes inherited from the entry's ancestors |
| * |
| * \return{ a list of inherited routes } |
| */ |
| RouteSet |
| getAncestorRoutes(const RibEntry& entry) const; |
| |
| /** \brief returns routes inherited from the parent of the name and the parent's ancestors |
| * |
| * \note A parent is first found for the passed name before inherited routes are collected |
| * |
| * \return{ a list of inherited routes } |
| */ |
| RouteSet |
| getAncestorRoutes(const Name& name) const; |
| |
| /** \brief applies the passed inheritedRoutes and their actions to the corresponding RibEntries' |
| * inheritedRoutes lists |
| */ |
| void |
| modifyInheritedRoutes(const RibUpdateList& inheritedRoutes); |
| |
| public: |
| /** \brief signals after a RIB entry is inserted |
| * |
| * A RIB entry is inserted when the first route associated with a |
| * certain namespace is added. |
| */ |
| signal::Signal<Rib, Name> afterInsertEntry; |
| |
| /** \brief signals after a RIB entry is erased |
| * |
| * A RIB entry is erased when the last route associated with a |
| * certain namespace is removed. |
| */ |
| signal::Signal<Rib, Name> afterEraseEntry; |
| |
| /** \brief signals after a Route is added |
| */ |
| signal::Signal<Rib, RibRouteRef> afterAddRoute; |
| |
| /** \brief signals before a route is removed |
| */ |
| signal::Signal<Rib, RibRouteRef> beforeRemoveRoute; |
| |
| private: |
| RibTable m_rib; |
| std::multimap<uint64_t, shared_ptr<RibEntry>> m_faceEntries; ///< FaceId => Entry with Route on this face |
| size_t m_nItems = 0; |
| FibUpdater* m_fibUpdater = nullptr; |
| |
| struct UpdateQueueItem |
| { |
| RibUpdateBatch batch; |
| const Rib::UpdateSuccessCallback managerSuccessCallback; |
| const Rib::UpdateFailureCallback managerFailureCallback; |
| }; |
| |
| using UpdateQueue = std::list<UpdateQueueItem>; |
| UpdateQueue m_updateBatches; |
| bool m_isUpdateInProgress = false; |
| |
| friend class FibUpdater; |
| }; |
| |
| std::ostream& |
| operator<<(std::ostream& os, const Rib& rib); |
| |
| } // namespace rib |
| } // namespace nfd |
| |
| #endif // NFD_DAEMON_RIB_RIB_HPP |