blob: 46bb18f4104180f9df2c6fcd4875ba210133ee36 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordon563611e2018-01-23 13:44:36 -06003 * Copyright (c) 2014-2018, 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/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
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
Nick Gordond0a7df32017-05-30 16:44:34 -050025#include "test-access-control.hpp"
Nick Gordon9eac4d92017-08-29 17:31:29 -050026#include "signals.hpp"
Nick Gordon727d4832017-10-13 18:04:25 -050027#include "lsa.hpp"
Nick Gordond0a7df32017-05-30 16:44:34 -050028
Vince Lehman904c2412014-09-23 19:36:11 -050029#include <ndn-cxx/face.hpp>
Nick Gordon9eac4d92017-08-29 17:31:29 -050030#include <ndn-cxx/util/signal.hpp>
Ashlesh Gawande415676b2016-12-22 00:26:23 -060031#include <ChronoSync/socket.hpp>
dmcoomes9f936662017-03-02 10:33:09 -060032#include <boost/throw_exception.hpp>
akmhoque53353462014-04-22 08:43:45 -050033
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;
Vince Lehman904c2412014-09-23 19:36:11 -050039
Nick Gordond0a7df32017-05-30 16:44:34 -050040/*! \brief NLSR-to-ChronoSync interaction point
41 *
42 * This class serves as the abstraction for the syncing portion of
43 * NLSR and its components. NLSR has no particular reliance on
44 * ChronoSync, except that the NLSR source would need to be modified
45 * for use with other sync protocols.
46 *
47 */
akmhoque53353462014-04-22 08:43:45 -050048class SyncLogicHandler
49{
50public:
Nick Gordon9eac4d92017-08-29 17:31:29 -050051 using IsLsaNew =
Nick Gordon727d4832017-10-13 18:04:25 -050052 std::function<bool(const ndn::Name&, const Lsa::Type& lsaType, const uint64_t&)>;
Nick Gordon9eac4d92017-08-29 17:31:29 -050053
Vince Lehman9d097802015-03-16 17:55:59 -050054 class Error : public std::runtime_error
55 {
56 public:
57 explicit
58 Error(const std::string& what)
59 : std::runtime_error(what)
60 {
61 }
62 };
akmhoque53353462014-04-22 08:43:45 -050063
Nick Gordon563611e2018-01-23 13:44:36 -060064 SyncLogicHandler(ndn::Face& face, const IsLsaNew& isLsaNew, const ConfParameter& conf);
akmhoque53353462014-04-22 08:43:45 -050065
Nick Gordond0a7df32017-05-30 16:44:34 -050066 /*! \brief Hook function to call whenever sync detects new data.
67 *
68 * This function packages the sync information into discrete updates
69 * and passes those off to another function, processUpdateFromSync.
70 * \sa processUpdateFromSync
71 *
72 * \param v A container with the new information sync has received
Nick G97e34942016-07-11 14:46:27 -050073 */
akmhoque53353462014-04-22 08:43:45 -050074 void
Ashlesh Gawande7600c902017-06-21 13:28:35 -050075 onChronoSyncUpdate(const std::vector<chronosync::MissingDataInfo>& v);
akmhoque53353462014-04-22 08:43:45 -050076
Nick Gordond0a7df32017-05-30 16:44:34 -050077 /*! \brief Instruct ChronoSync to publish an update.
78 *
79 * This function instructs sync to push an update into the network,
80 * based on whatever the state of the sequencing manager is when
81 * this is called. Since each ChronoSync instance maintains its own
82 * PIT, doing this satisfies those interests so that other routers
83 * know a sync update is available.
84 * \sa publishSyncUpdate
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050085 */
akmhoque53353462014-04-22 08:43:45 -050086 void
Nick Gordon727d4832017-10-13 18:04:25 -050087 publishRoutingUpdate(const Lsa::Type& type, const uint64_t& seqNo);
akmhoque53353462014-04-22 08:43:45 -050088
Nick Gordond0a7df32017-05-30 16:44:34 -050089 /*! \brief Create and configure a socket to enable ChronoSync for this NLSR.
90 *
91 * In a typical situation this only needs to be called once, when NLSR starts.
92 * \param syncPrefix The sync prefix you want this ChronoSync to use
93 * \sa Nlsr::initialize
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050094 */
akmhoque53353462014-04-22 08:43:45 -050095 void
Vince Lehman9d097802015-03-16 17:55:59 -050096 createSyncSocket(const ndn::Name& syncPrefix);
akmhoque53353462014-04-22 08:43:45 -050097
Nick Gordon8f23b5d2017-08-31 17:53:07 -050098PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Nick Gordond0a7df32017-05-30 16:44:34 -050099 /*! \brief Simple function to glue Name components together
100 */
Vince Lehmanc11cc202015-01-20 11:41:33 -0600101 void
102 buildUpdatePrefix();
103
Nick Gordon8f23b5d2017-08-31 17:53:07 -0500104private:
Nick Gordond0a7df32017-05-30 16:44:34 -0500105 /*! \brief Determine which kind of LSA was updated and fetch it.
106 *
107 * Checks that the received update is not from us, which can happen,
108 * and then inspects the update to determine which kind of LSA the
109 * update is for. Finally, it expresses interest for the correct LSA
110 * type.
111 * \throws SyncUpdate::Error If the sync update doesn't look like a sync LSA update.
112 */
akmhoque53353462014-04-22 08:43:45 -0500113 void
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500114 processUpdateFromSync(const ndn::Name& originRouter,
115 const ndn::Name& updateName, const uint64_t& seqNo);
Vince Lehman904c2412014-09-23 19:36:11 -0500116
Nick Gordond0a7df32017-05-30 16:44:34 -0500117 /*! \brief Instruct ChronoSync, via the sync socket, to publish an update.
118 *
119 * Each ChronoSync instance maintains its own PIT for sync
120 * updates. This function creates a data that satisfies that update,
121 * so that the interested routers will know new data is available.
122 */
akmhoque53353462014-04-22 08:43:45 -0500123 void
akmhoque31d1d4b2014-05-05 22:08:14 -0500124 publishSyncUpdate(const ndn::Name& updatePrefix, uint64_t seqNo);
akmhoque53353462014-04-22 08:43:45 -0500125
Nick Gordon9eac4d92017-08-29 17:31:29 -0500126public:
127 std::unique_ptr<OnNewLsa> onNewLsa;
128
akmhoque53353462014-04-22 08:43:45 -0500129private:
Vince Lehman904c2412014-09-23 19:36:11 -0500130 ndn::Face& m_syncFace;
Ashlesh Gawande415676b2016-12-22 00:26:23 -0600131 std::shared_ptr<chronosync::Socket> m_syncSocket;
akmhoque53353462014-04-22 08:43:45 -0500132 ndn::Name m_syncPrefix;
Nick Gordon9eac4d92017-08-29 17:31:29 -0500133 IsLsaNew m_isLsaNew;
Nick Gordond0a7df32017-05-30 16:44:34 -0500134 const ConfParameter& m_confParam;
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600135
Vince Lehmanc11cc202015-01-20 11:41:33 -0600136PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500137 ndn::Name m_nameLsaUserPrefix;
138 ndn::Name m_adjLsaUserPrefix;
139 ndn::Name m_coorLsaUserPrefix;
Vince Lehman904c2412014-09-23 19:36:11 -0500140
Vince Lehmanc11cc202015-01-20 11:41:33 -0600141private:
Vince Lehman904c2412014-09-23 19:36:11 -0500142 static const std::string NLSR_COMPONENT;
143 static const std::string LSA_COMPONENT;
Vince Lehman904c2412014-09-23 19:36:11 -0500144
akmhoque53353462014-04-22 08:43:45 -0500145};
146
Nick Gordonfad8e252016-08-11 14:21:38 -0500147} // namespace nlsr
akmhoque53353462014-04-22 08:43:45 -0500148
dmcoomes9f936662017-03-02 10:33:09 -0600149#endif // NLSR_SYNC_LOGIC_HANDLER_HPP