| #ifndef NLSR_SLH_HPP |
| #define NLSR_SLH_HPP |
| |
| #include <iostream> |
| |
| #include <ndn-cxx/face.hpp> |
| #include <nsync/sync-socket.h> |
| #include <ndn-cxx/security/validator-null.hpp> |
| #include <ndn-cxx/util/scheduler.hpp> |
| |
| #include "sequencing-manager.hpp" |
| |
| // class KeyManager; |
| |
| extern "C" { |
| #include <unistd.h> |
| } |
| |
| class InterestManager; |
| class ConfParameter; |
| |
| namespace nlsr { |
| |
| class SyncLogicHandler |
| { |
| public: |
| SyncLogicHandler(ndn::shared_ptr<boost::asio::io_service> ioService) |
| : m_validator(new ndn::ValidatorNull()) |
| , m_syncFace(new ndn::Face(ioService)) |
| {} |
| |
| |
| void |
| createSyncSocket(Nlsr& pnlsr); |
| |
| void |
| nsyncUpdateCallBack(const vector<Sync::MissingDataInfo>& v, |
| Sync::SyncSocket* socket, Nlsr& pnlsr); |
| |
| void |
| nsyncRemoveCallBack(const string& prefix, Nlsr& pnlsr); |
| |
| void |
| removeRouterFromSyncing(string& routerPrefix); |
| |
| void |
| publishRoutingUpdate(SequencingManager& sm, string updatePrefix); |
| |
| // void |
| // publishKeyUpdate(KeyManager& km); |
| |
| void |
| publishIdentityUpdate(string identityName); |
| |
| void |
| setSyncPrefix(string sp) |
| { |
| m_syncPrefix.clear(); |
| m_syncPrefix.set(sp); |
| } |
| |
| private: |
| void |
| processUpdateFromSync(std::string updateName, uint64_t seqNo, Nlsr& pnlsr); |
| |
| void |
| processRoutingUpdateFromSync(std::string routerName, uint64_t seqNo, |
| Nlsr& pnlsr); |
| |
| // void |
| // processKeysUpdateFromSync(std::string certName, uint64_t seqNo, Nlsr& pnlsr); |
| |
| void |
| publishSyncUpdate(string updatePrefix, uint64_t seqNo); |
| |
| private: |
| ndn::shared_ptr<ndn::ValidatorNull> m_validator; |
| ndn::shared_ptr<ndn::Face> m_syncFace; |
| ndn::shared_ptr<Sync::SyncSocket> m_syncSocket; |
| ndn::Name m_syncPrefix; |
| }; |
| |
| } //namespace nlsr |
| |
| #endif //NLSR_SLH_HPP |