| #ifndef NLSR_LSA_HPP |
| #define NLSR_LSA_HPP |
| |
| #include <boost/cstdint.hpp> |
| #include <ndn-cxx/util/scheduler.hpp> |
| #include "adjacent.hpp" |
| #include "name-prefix-list.hpp" |
| #include "adjacency-list.hpp" |
| |
| namespace nlsr { |
| |
| class Lsa |
| { |
| public: |
| Lsa() |
| : m_origRouter() |
| , m_lsSeqNo() |
| , m_lifeTime() |
| , m_expiringEventId() |
| { |
| } |
| |
| |
| void |
| setLsType(const std::string& lst) |
| { |
| m_lsType = lst; |
| } |
| |
| const std::string& |
| getLsType() const |
| { |
| return m_lsType; |
| } |
| |
| void |
| setLsSeqNo(uint32_t lsn) |
| { |
| m_lsSeqNo = lsn; |
| } |
| |
| uint32_t |
| getLsSeqNo() const |
| { |
| return m_lsSeqNo; |
| } |
| |
| const ndn::Name& |
| getOrigRouter() const |
| { |
| return m_origRouter; |
| } |
| |
| void |
| setOrigRouter(const ndn::Name& org) |
| { |
| m_origRouter = org; |
| } |
| |
| uint32_t |
| getLifeTime() const |
| { |
| return m_lifeTime; |
| } |
| |
| void |
| setLifeTime(uint32_t lt) |
| { |
| m_lifeTime = lt; |
| } |
| |
| void |
| setExpiringEventId(const ndn::EventId leei) |
| { |
| m_expiringEventId = leei; |
| } |
| |
| ndn::EventId |
| getExpiringEventId() const |
| { |
| return m_expiringEventId; |
| } |
| |
| protected: |
| ndn::Name m_origRouter; |
| std::string m_lsType; |
| uint32_t m_lsSeqNo; |
| uint32_t m_lifeTime; |
| ndn::EventId m_expiringEventId; |
| }; |
| |
| class NameLsa: public Lsa |
| { |
| public: |
| NameLsa() |
| : Lsa() |
| , m_npl() |
| { |
| setLsType("name"); |
| } |
| |
| NameLsa(const ndn::Name& origR, const std::string& lst, uint32_t lsn, |
| uint32_t lt, |
| NamePrefixList& npl); |
| |
| NamePrefixList& |
| getNpl() |
| { |
| return m_npl; |
| } |
| |
| void |
| addName(const ndn::Name& name) |
| { |
| m_npl.insert(name); |
| } |
| |
| void |
| removeName(const ndn::Name& name) |
| { |
| m_npl.remove(name); |
| } |
| |
| const ndn::Name |
| getKey() const; |
| |
| std::string |
| getData(); |
| |
| bool |
| initializeFromContent(const std::string& content); |
| |
| void |
| writeLog(); |
| |
| private: |
| NamePrefixList m_npl; |
| |
| }; |
| |
| std::ostream& |
| operator<<(std::ostream& os, NameLsa& nLsa); |
| |
| class AdjLsa: public Lsa |
| { |
| public: |
| AdjLsa() |
| : Lsa() |
| , m_adl() |
| { |
| setLsType("adjacency"); |
| } |
| |
| AdjLsa(const ndn::Name& origR, const std::string& lst, uint32_t lsn, |
| uint32_t lt, |
| uint32_t nl , AdjacencyList& adl); |
| |
| AdjacencyList& |
| getAdl() |
| { |
| return m_adl; |
| } |
| |
| void |
| addAdjacent(Adjacent adj) |
| { |
| m_adl.insert(adj); |
| } |
| |
| const ndn::Name |
| getKey() const; |
| |
| std::string |
| getData(); |
| |
| bool |
| initializeFromContent(const std::string& content); |
| |
| uint32_t |
| getNoLink() |
| { |
| return m_noLink; |
| } |
| |
| bool |
| isEqualContent(AdjLsa& alsa); |
| |
| void |
| addNptEntries(Nlsr& pnlsr); |
| |
| void |
| removeNptEntries(Nlsr& pnlsr); |
| |
| private: |
| uint32_t m_noLink; |
| AdjacencyList m_adl; |
| }; |
| |
| std::ostream& |
| operator<<(std::ostream& os, AdjLsa& aLsa); |
| |
| class CoordinateLsa: public Lsa |
| { |
| public: |
| CoordinateLsa() |
| : Lsa() |
| , m_corRad(0) |
| , m_corTheta(0) |
| { |
| setLsType("coordinate"); |
| } |
| |
| CoordinateLsa(const ndn::Name& origR, const std::string lst, uint32_t lsn, |
| uint32_t lt |
| , double r, double theta); |
| |
| const ndn::Name |
| getKey() const; |
| |
| std::string |
| getData(); |
| |
| bool |
| initializeFromContent(const std::string& content); |
| |
| double |
| getCorRadius() const |
| { |
| if (m_corRad >= 0) |
| { |
| return m_corRad; |
| } |
| else |
| { |
| return -1; |
| } |
| } |
| |
| void |
| setCorRadius(double cr) |
| { |
| m_corRad = cr; |
| } |
| |
| double |
| getCorTheta() const |
| { |
| return m_corTheta; |
| } |
| |
| void |
| setCorTheta(double ct) |
| { |
| m_corTheta = ct; |
| } |
| |
| bool |
| isEqualContent(const CoordinateLsa& clsa); |
| |
| private: |
| double m_corRad; |
| double m_corTheta; |
| |
| }; |
| |
| std::ostream& |
| operator<<(std::ostream& os, const CoordinateLsa& cLsa); |
| |
| |
| }//namespace nlsr |
| |
| #endif //NLSR_LSA_HPP |