akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame^] | 1 | #ifndef NLSR_RT_HPP |
| 2 | #define NLSR_RT_HPP |
| 3 | |
| 4 | #include<iostream> |
| 5 | #include<utility> |
| 6 | #include<string> |
| 7 | |
| 8 | #include "nlsr_rte.hpp" |
| 9 | |
| 10 | class nlsr; |
| 11 | class NextHop; |
| 12 | |
| 13 | using namespace std; |
| 14 | |
| 15 | class RoutingTable |
| 16 | { |
| 17 | public: |
| 18 | RoutingTable() |
| 19 | : NO_NEXT_HOP(-12345) |
| 20 | { |
| 21 | } |
| 22 | void calculate(nlsr& pnlsr); |
| 23 | void addNextHop(string destRouter, NextHop& nh); |
| 24 | void printRoutingTable(); |
| 25 | |
| 26 | void addNextHopToDryTable(string destRouter, NextHop& nh); |
| 27 | void printDryRoutingTable(); |
| 28 | std::pair<RoutingTableEntry&, bool> findRoutingTableEntry(string destRouter); |
| 29 | void scheduleRoutingTableCalculation(nlsr& pnlsr); |
| 30 | |
| 31 | private: |
| 32 | void calculateLsRoutingTable(nlsr& pnlsr); |
| 33 | void calculateHypRoutingTable(nlsr& pnlsr); |
| 34 | void calculateHypDryRoutingTable(nlsr&pnlsr); |
| 35 | |
| 36 | void clearRoutingTable(); |
| 37 | void clearDryRoutingTable(); |
| 38 | |
| 39 | const int NO_NEXT_HOP; |
| 40 | |
| 41 | std::list< RoutingTableEntry > rTable; |
| 42 | std::list< RoutingTableEntry > dryTable; |
| 43 | }; |
| 44 | |
| 45 | #endif |