blob: 6a2c443356886bb7f1a5d056e6e970d4a7b8bce8 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014 University of Memphis,
4 * Regents of the University of California
5 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>
19 *
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
akmhoquefdbddb12014-05-02 18:35:19 -050021#ifndef NLSR_SYNC_LOGIC_HANDLER_HPP
22#define NLSR_SYNC_LOGIC_HANDLER_HPP
akmhoque53353462014-04-22 08:43:45 -050023
Vince Lehman904c2412014-09-23 19:36:11 -050024#include <ndn-cxx/face.hpp>
25#include <ndn-cxx/security/validator-null.hpp>
26#include <nsync/sync-socket.h>
27
akmhoque53353462014-04-22 08:43:45 -050028#include <iostream>
Vince Lehman904c2412014-09-23 19:36:11 -050029#include <unistd.h>
akmhoquefdbddb12014-05-02 18:35:19 -050030#include <boost/cstdint.hpp>
akmhoque53353462014-04-22 08:43:45 -050031
Vince Lehmanc11cc202015-01-20 11:41:33 -060032#include "test-access-control.hpp"
33
akmhoque53353462014-04-22 08:43:45 -050034class InterestManager;
akmhoque53353462014-04-22 08:43:45 -050035
36namespace nlsr {
37
Vince Lehman904c2412014-09-23 19:36:11 -050038class ConfParameter;
39class Lsdb;
40class SequencingManager;
41class SyncUpdate;
42
akmhoque53353462014-04-22 08:43:45 -050043class SyncLogicHandler
44{
45public:
Vince Lehman0bcf9a32014-12-10 11:24:45 -060046 SyncLogicHandler(ndn::Face& face, Lsdb& lsdb, ConfParameter& conf, SequencingManager& seqManager);
akmhoque53353462014-04-22 08:43:45 -050047
Vince Lehman904c2412014-09-23 19:36:11 -050048 void
49 createSyncSocket();
akmhoque53353462014-04-22 08:43:45 -050050
51 void
Vince Lehman904c2412014-09-23 19:36:11 -050052 onNsyncUpdate(const std::vector<Sync::MissingDataInfo>& v, Sync::SyncSocket* socket);
akmhoque53353462014-04-22 08:43:45 -050053
54 void
Vince Lehman904c2412014-09-23 19:36:11 -050055 onNsyncRemoval(const std::string& prefix);
akmhoque53353462014-04-22 08:43:45 -050056
57 void
Vince Lehman0bcf9a32014-12-10 11:24:45 -060058 publishRoutingUpdate();
akmhoque53353462014-04-22 08:43:45 -050059
60 void
akmhoquefdbddb12014-05-02 18:35:19 -050061 setSyncPrefix(const std::string& sp)
akmhoque53353462014-04-22 08:43:45 -050062 {
63 m_syncPrefix.clear();
64 m_syncPrefix.set(sp);
65 }
66
Vince Lehmanc11cc202015-01-20 11:41:33 -060067 void
68 buildUpdatePrefix();
69
akmhoque53353462014-04-22 08:43:45 -050070private:
71 void
Vince Lehman904c2412014-09-23 19:36:11 -050072 processUpdateFromSync(const SyncUpdate& updateName);
73
74 bool
75 isLsaNew(const ndn::Name& originRouter, const std::string& lsaType, uint64_t seqNo);
akmhoque53353462014-04-22 08:43:45 -050076
77 void
Vince Lehman904c2412014-09-23 19:36:11 -050078 expressInterestForLsa(const SyncUpdate& updateName, std::string lsaType, uint64_t seqNo);
akmhoque53353462014-04-22 08:43:45 -050079
akmhoque53353462014-04-22 08:43:45 -050080 void
akmhoque31d1d4b2014-05-05 22:08:14 -050081 publishSyncUpdate(const ndn::Name& updatePrefix, uint64_t seqNo);
akmhoque53353462014-04-22 08:43:45 -050082
83private:
84 ndn::shared_ptr<ndn::ValidatorNull> m_validator;
Vince Lehman904c2412014-09-23 19:36:11 -050085 ndn::Face& m_syncFace;
akmhoque53353462014-04-22 08:43:45 -050086 ndn::shared_ptr<Sync::SyncSocket> m_syncSocket;
87 ndn::Name m_syncPrefix;
Vince Lehman904c2412014-09-23 19:36:11 -050088
Vince Lehmanc11cc202015-01-20 11:41:33 -060089private:
Vince Lehman904c2412014-09-23 19:36:11 -050090 Lsdb& m_lsdb;
91 ConfParameter& m_confParam;
Vince Lehman0bcf9a32014-12-10 11:24:45 -060092 const SequencingManager& m_sequencingManager;
93
Vince Lehmanc11cc202015-01-20 11:41:33 -060094PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Vince Lehman0bcf9a32014-12-10 11:24:45 -060095 ndn::Name m_updatePrefix;
Vince Lehman904c2412014-09-23 19:36:11 -050096
Vince Lehmanc11cc202015-01-20 11:41:33 -060097private:
Vince Lehman904c2412014-09-23 19:36:11 -050098 static const std::string NLSR_COMPONENT;
99 static const std::string LSA_COMPONENT;
100 static const std::string NAME_COMPONENT;
101 static const std::string ADJACENCY_COMPONENT;
102 static const std::string COORDINATE_COMPONENT;
103
akmhoque53353462014-04-22 08:43:45 -0500104};
105
106} //namespace nlsr
107
akmhoquefdbddb12014-05-02 18:35:19 -0500108#endif //NLSR_SYNC_LOGIC_HANDLER_HPP