blob: 7deb06ac3fb12d8beb74fdc43979ea84510e3ab5 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -08003 * Copyright (c) 2014-2020, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
Vince Lehmanc2e51f62015-01-20 15:03:11 -060019 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070020 */
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
akmhoquefdbddb12014-05-02 18:35:19 -050022#ifndef NLSR_SYNC_LOGIC_HANDLER_HPP
23#define NLSR_SYNC_LOGIC_HANDLER_HPP
akmhoque53353462014-04-22 08:43:45 -050024
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -060025#include "conf-parameter.hpp"
Nick Gordond0a7df32017-05-30 16:44:34 -050026#include "test-access-control.hpp"
Nick Gordon9eac4d92017-08-29 17:31:29 -050027#include "signals.hpp"
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -080028#include "lsa/lsa.hpp"
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050029#include "sync-protocol-adapter.hpp"
Nick Gordond0a7df32017-05-30 16:44:34 -050030
Vince Lehman904c2412014-09-23 19:36:11 -050031#include <ndn-cxx/face.hpp>
Nick Gordon9eac4d92017-08-29 17:31:29 -050032#include <ndn-cxx/util/signal.hpp>
dmcoomes9f936662017-03-02 10:33:09 -060033#include <boost/throw_exception.hpp>
akmhoque53353462014-04-22 08:43:45 -050034
akmhoque53353462014-04-22 08:43:45 -050035class InterestManager;
akmhoque53353462014-04-22 08:43:45 -050036
37namespace nlsr {
38
Vince Lehman904c2412014-09-23 19:36:11 -050039class ConfParameter;
Vince Lehman904c2412014-09-23 19:36:11 -050040
Nick Gordond0a7df32017-05-30 16:44:34 -050041/*! \brief NLSR-to-ChronoSync interaction point
42 *
43 * This class serves as the abstraction for the syncing portion of
44 * NLSR and its components. NLSR has no particular reliance on
45 * ChronoSync, except that the NLSR source would need to be modified
46 * for use with other sync protocols.
47 *
48 */
akmhoque53353462014-04-22 08:43:45 -050049class SyncLogicHandler
50{
51public:
Nick Gordon9eac4d92017-08-29 17:31:29 -050052 using IsLsaNew =
Nick Gordon727d4832017-10-13 18:04:25 -050053 std::function<bool(const ndn::Name&, const Lsa::Type& lsaType, const uint64_t&)>;
Nick Gordon9eac4d92017-08-29 17:31:29 -050054
Vince Lehman9d097802015-03-16 17:55:59 -050055 class Error : public std::runtime_error
56 {
57 public:
58 explicit
59 Error(const std::string& what)
60 : std::runtime_error(what)
61 {
62 }
63 };
akmhoque53353462014-04-22 08:43:45 -050064
Nick Gordon563611e2018-01-23 13:44:36 -060065 SyncLogicHandler(ndn::Face& face, const IsLsaNew& isLsaNew, const ConfParameter& conf);
akmhoque53353462014-04-22 08:43:45 -050066
Nick Gordond0a7df32017-05-30 16:44:34 -050067 /*! \brief Instruct ChronoSync to publish an update.
68 *
69 * This function instructs sync to push an update into the network,
70 * based on whatever the state of the sequencing manager is when
71 * this is called. Since each ChronoSync instance maintains its own
72 * PIT, doing this satisfies those interests so that other routers
73 * know a sync update is available.
74 * \sa publishSyncUpdate
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050075 */
akmhoque53353462014-04-22 08:43:45 -050076 void
Nick Gordon727d4832017-10-13 18:04:25 -050077 publishRoutingUpdate(const Lsa::Type& type, const uint64_t& seqNo);
akmhoque53353462014-04-22 08:43:45 -050078
Ashlesh Gawande85998a12017-12-07 22:22:13 -060079PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Ashlesh Gawande85998a12017-12-07 22:22:13 -060080 /*! \brief Callback from Sync protocol
81 *
82 * In a typical situation this only needs to be called once, when NLSR starts.
83 * \param updateName The prefix for which sync reports an update
84 * \param highSeq The latest sequence number of the update
85 */
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050086 void
87 processUpdate(const ndn::Name& updateName, uint64_t highSeq);
88
Nick Gordond0a7df32017-05-30 16:44:34 -050089 /*! \brief Determine which kind of LSA was updated and fetch it.
90 *
91 * Checks that the received update is not from us, which can happen,
92 * and then inspects the update to determine which kind of LSA the
93 * update is for. Finally, it expresses interest for the correct LSA
94 * type.
95 * \throws SyncUpdate::Error If the sync update doesn't look like a sync LSA update.
96 */
akmhoque53353462014-04-22 08:43:45 -050097 void
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050098 processUpdateFromSync(const ndn::Name& originRouter,
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050099 const ndn::Name& updateName, uint64_t seqNo);
Vince Lehman904c2412014-09-23 19:36:11 -0500100
Nick Gordon9eac4d92017-08-29 17:31:29 -0500101public:
102 std::unique_ptr<OnNewLsa> onNewLsa;
103
akmhoque53353462014-04-22 08:43:45 -0500104private:
Vince Lehman904c2412014-09-23 19:36:11 -0500105 ndn::Face& m_syncFace;
Nick Gordon9eac4d92017-08-29 17:31:29 -0500106 IsLsaNew m_isLsaNew;
Nick Gordond0a7df32017-05-30 16:44:34 -0500107 const ConfParameter& m_confParam;
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600108
Vince Lehmanc11cc202015-01-20 11:41:33 -0600109PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500110 ndn::Name m_nameLsaUserPrefix;
111 ndn::Name m_adjLsaUserPrefix;
112 ndn::Name m_coorLsaUserPrefix;
Vince Lehman904c2412014-09-23 19:36:11 -0500113
Ashlesh Gawande6b388fc2019-09-30 10:14:41 -0500114 SyncProtocolAdapter m_syncLogic;
115
Vince Lehmanc11cc202015-01-20 11:41:33 -0600116private:
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700117 const std::string NLSR_COMPONENT = "nlsr";
118 const std::string LSA_COMPONENT = "LSA";
akmhoque53353462014-04-22 08:43:45 -0500119};
120
Nick Gordonfad8e252016-08-11 14:21:38 -0500121} // namespace nlsr
akmhoque53353462014-04-22 08:43:45 -0500122
dmcoomes9f936662017-03-02 10:33:09 -0600123#endif // NLSR_SYNC_LOGIC_HANDLER_HPP