blob: fc7935f0dfd0154e3731737203bcfcc0c4bd621d [file] [log] [blame]
Yingdi Yuf7ede412014-08-30 20:37:52 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
Ashlesh Gawande9a306fe2019-01-04 11:38:18 -06003 * Copyright (c) 2012-2019 University of California, Los Angeles
Yingdi Yuf7ede412014-08-30 20:37:52 -07004 *
5 * This file is part of ChronoSync, synchronization library for distributed realtime
6 * applications for NDN.
7 *
8 * ChronoSync is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation, either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * ChronoSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Zhenkai Zhu <http://irl.cs.ucla.edu/~zhenkai/>
20 * @author Chaoyi Bian <bcy@pku.edu.cn>
21 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
22 * @author Yingdi Yu <yingdi@cs.ucla.edu>
Sonu Mishra4d3a2e02017-01-18 20:27:51 -080023 * @author Sonu Mishra <https://www.linkedin.com/in/mishrasonu>
Yingdi Yuf7ede412014-08-30 20:37:52 -070024 */
25
26#ifndef CHRONOSYNC_LOGIC_HPP
27#define CHRONOSYNC_LOGIC_HPP
28
Ashlesh Gawande687cf922017-05-30 15:04:16 -050029#include "diff-state-container.hpp"
30#include "interest-table.hpp"
31
Ashlesh Gawande9a306fe2019-01-04 11:38:18 -060032#include <ndn-cxx/util/random.hpp>
33
Ashlesh Gawande08784d42017-09-06 23:40:21 -050034#include <boost/archive/iterators/dataflow_exception.hpp>
35#include <boost/archive/iterators/transform_width.hpp>
36#include <boost/assert.hpp>
37#include <boost/iterator/transform_iterator.hpp>
Ashlesh Gawande08784d42017-09-06 23:40:21 -050038#include <boost/throw_exception.hpp>
39
Yingdi Yuf7ede412014-08-30 20:37:52 -070040#include <memory>
Qiuhan Ding8c095fd2014-11-19 17:38:32 -080041#include <unordered_map>
Yingdi Yuf7ede412014-08-30 20:37:52 -070042
Yingdi Yuf7ede412014-08-30 20:37:52 -070043namespace chronosync {
44
45/**
46 * @brief The missing sequence numbers for a session
47 *
48 * This class is used to notify the clients of Logic
49 * the details of state changes.
50 *
51 * Instances of this class is usually used as elements of some containers
52 * such as std::vector, thus it is copyable.
53 */
Sonu Mishra4d3a2e02017-01-18 20:27:51 -080054class NodeInfo
55{
Qiuhan Ding8c095fd2014-11-19 17:38:32 -080056public:
57 Name userPrefix;
58 Name signingId;
59 Name sessionName;
60 SeqNo seqNo;
61};
62
Yingdi Yuf7ede412014-08-30 20:37:52 -070063class MissingDataInfo
64{
65public:
66 /// @brief session name
67 Name session;
68 /// @brief the lowest one of missing sequence numbers
69 SeqNo low;
70 /// @brief the highest one of missing sequence numbers
71 SeqNo high;
72};
73
74/**
75 * @brief The callback function to handle state updates
76 *
77 * The parameter is a set of MissingDataInfo, of which each corresponds to
78 * a session that has changed its state.
79 */
Ashlesh Gawande08784d42017-09-06 23:40:21 -050080using UpdateCallback = function<void(const std::vector<MissingDataInfo>&)>;
Yingdi Yuf7ede412014-08-30 20:37:52 -070081
82/**
83 * @brief Logic of ChronoSync
84 */
85class Logic : noncopyable
86{
87public:
Qiuhan Ding8c095fd2014-11-19 17:38:32 -080088 class Error : public std::runtime_error
89 {
90 public:
91 explicit
92 Error(const std::string& what)
93 : std::runtime_error(what)
94 {
95 }
96 };
97
98public:
Yingdi Yuf7ede412014-08-30 20:37:52 -070099 static const time::steady_clock::Duration DEFAULT_RESET_TIMER;
100 static const time::steady_clock::Duration DEFAULT_CANCEL_RESET_TIMER;
101 static const time::milliseconds DEFAULT_RESET_INTEREST_LIFETIME;
102 static const time::milliseconds DEFAULT_SYNC_INTEREST_LIFETIME;
103 static const time::milliseconds DEFAULT_SYNC_REPLY_FRESHNESS;
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800104 static const time::milliseconds DEFAULT_RECOVERY_INTEREST_LIFETIME;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700105
106 /**
107 * @brief Constructor
108 *
Yingdi Yu9d5679a2015-02-01 00:17:58 -0800109 * @param face The face used to communication, will be shutdown in destructor
Yingdi Yuf7ede412014-08-30 20:37:52 -0700110 * @param syncPrefix The prefix of the sync group
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800111 * @param defaultUserPrefix The prefix of the first user added to this session
Yingdi Yuf7ede412014-08-30 20:37:52 -0700112 * @param onUpdate The callback function to handle state updates
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800113 * @param defaultSigningId The signing Id of the default user
Yingdi Yucd339022014-11-05 17:51:19 -0800114 * @param validator The validator for packet validation
Yingdi Yuf7ede412014-08-30 20:37:52 -0700115 * @param resetTimer The timer to periodically send Reset Interest
Yingdi Yuf7ede412014-08-30 20:37:52 -0700116 * @param cancelResetTimer The timer to exit from Reset state
Ashlesh Gawande097bb442017-05-31 13:38:00 -0500117 * @param resetInterestLifetime The lifetime of Reset Interest
118 * @param syncInterestLifetime The lifetime of sync interest
119 * @param syncReplyFreshness The FreshnessPeriod of sync reply
120 * @param recoveryInterestLifetime The lifetime of recovery interest
Alexander Afanasyevbf5bc6c2018-02-19 11:26:09 -0500121 * @param session Manually defined session ID
Yingdi Yuf7ede412014-08-30 20:37:52 -0700122 */
123 Logic(ndn::Face& face,
124 const Name& syncPrefix,
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800125 const Name& defaultUserPrefix,
Yingdi Yuf7ede412014-08-30 20:37:52 -0700126 const UpdateCallback& onUpdate,
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800127 const Name& defaultSigningId = DEFAULT_NAME,
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500128 std::shared_ptr<Validator> validator = DEFAULT_VALIDATOR,
Yingdi Yuf7ede412014-08-30 20:37:52 -0700129 const time::steady_clock::Duration& resetTimer = DEFAULT_RESET_TIMER,
130 const time::steady_clock::Duration& cancelResetTimer = DEFAULT_CANCEL_RESET_TIMER,
131 const time::milliseconds& resetInterestLifetime = DEFAULT_RESET_INTEREST_LIFETIME,
132 const time::milliseconds& syncInterestLifetime = DEFAULT_SYNC_INTEREST_LIFETIME,
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800133 const time::milliseconds& syncReplyFreshness = DEFAULT_SYNC_REPLY_FRESHNESS,
Alexander Afanasyevbf5bc6c2018-02-19 11:26:09 -0500134 const time::milliseconds& recoveryInterestLifetime = DEFAULT_RECOVERY_INTEREST_LIFETIME,
Ashlesh Gawandedb862e02018-03-30 17:15:08 -0500135 const name::Component& session = name::Component());
Yingdi Yuf7ede412014-08-30 20:37:52 -0700136
137 ~Logic();
138
Qiuhan Dingfb8c9e02015-01-30 14:04:55 -0800139 /**
140 * @brief Reset the sync tree (and restart synchronization again)
141 *
142 * @param isOnInterest a flag that tells whether the reset is called by reset interest.
143 */
Yingdi Yuf7ede412014-08-30 20:37:52 -0700144 void
Qiuhan Dingfb8c9e02015-01-30 14:04:55 -0800145 reset(bool isOnInterest = false);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700146
147 /**
148 * @brief Set user prefix
149 *
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800150 * This method will also change the default user and signing Id of that user.
Yingdi Yuf7ede412014-08-30 20:37:52 -0700151 *
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800152 * @param defaultUserPrefix The prefix of user.
Yingdi Yuf7ede412014-08-30 20:37:52 -0700153 */
154 void
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800155 setDefaultUserPrefix(const Name& defaultUserPrefix);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700156
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800157 /// @brief Get the name of default user.
Yingdi Yuf7ede412014-08-30 20:37:52 -0700158 const Name&
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800159 getDefaultUserPrefix() const
Yingdi Yuf7ede412014-08-30 20:37:52 -0700160 {
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800161 return m_defaultUserPrefix;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700162 }
163
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800164 /**
165 * @brief Add user node into the local session.
166 *
167 * This method also reset after adding
168 *
169 * @param userPrefix prefix of the added node
170 * @param signingId signing Id of the added node
Alexander Afanasyevbf5bc6c2018-02-19 11:26:09 -0500171 * @param session manually defined session ID
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800172 */
173 void
Ashlesh Gawandedb862e02018-03-30 17:15:08 -0500174 addUserNode(const Name& userPrefix, const Name& signingId = DEFAULT_NAME,
175 const name::Component& session = name::Component());
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800176
177 /// @brief remove the node from the local session
178 void
179 removeUserNode(const Name& userPrefix);
180
181 /**
182 * @brief Get the name of the local session.
183 *
184 * This method gets the session name according to prefix, if prefix is not specified,
185 * it returns the session name of default user.
186 *
187 * @param prefix prefix of the node
188 */
189 const Name&
190 getSessionName(Name prefix = EMPTY_NAME);
191
192 /**
193 * @brief Get current seqNo of the local session.
194 *
195 * This method gets the seqNo according to prefix, if prefix is not specified,
196 * it returns the seqNo of default user.
197 *
198 * @param prefix prefix of the node
199 */
Yingdi Yuf7ede412014-08-30 20:37:52 -0700200 const SeqNo&
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800201 getSeqNo(Name prefix = EMPTY_NAME);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700202
203 /**
204 * @brief Update the seqNo of the local session
205 *
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800206 * The method updates the existing seqNo with the supplied seqNo and prefix.
Yingdi Yuf7ede412014-08-30 20:37:52 -0700207 *
208 * @param seq The new seqNo.
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800209 * @param updatePrefix The prefix of node to update.
Yingdi Yuf7ede412014-08-30 20:37:52 -0700210 */
211 void
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800212 updateSeqNo(const SeqNo& seq, const Name& updatePrefix = EMPTY_NAME);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700213
214 /// @brief Get root digest of current sync tree
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500215 ConstBufferPtr
Yingdi Yuf7ede412014-08-30 20:37:52 -0700216 getRootDigest() const;
217
218 /// @brief Get the name of all sessions
219 std::set<Name>
220 getSessionNames() const;
221
Yingdi Yu906c2ea2014-10-31 11:24:50 -0700222CHRONOSYNC_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Yingdi Yuf7ede412014-08-30 20:37:52 -0700223 void
224 printState(std::ostream& os) const;
225
226 ndn::Scheduler&
227 getScheduler()
228 {
229 return m_scheduler;
230 }
231
232 State&
233 getState()
234 {
235 return m_state;
236 }
237
Alexander Afanasyev6ee98ff2018-02-13 19:12:28 -0500238 /// Create a subset @p partialState excluding @p nExcludedStates from @p state
Ashlesh Gawande4a9ecd52018-02-06 14:36:19 -0600239 void
Alexander Afanasyev6ee98ff2018-02-13 19:12:28 -0500240 trimState(State& partialState, const State& state, size_t excludedStates);
241
242 Data
243 encodeSyncReply(const Name& nodePrefix, const Name& name, const State& state);
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800244
Yingdi Yuf7ede412014-08-30 20:37:52 -0700245private:
246 /**
247 * @brief Callback to handle Sync Interest
248 *
249 * This method checks whether an incoming interest is a normal one or a reset
250 * and dispatches the incoming interest to corresponding processing methods.
251 *
252 * @param prefix The prefix of the sync group.
253 * @param interest The incoming sync interest.
254 */
255 void
256 onSyncInterest(const Name& prefix, const Interest& interest);
257
258 /**
259 * @brief Callback to handle Sync prefix registration failure
260 *
261 * This method does nothing for now.
262 *
263 * @param prefix The prefix of the sync group.
264 * @param msg The error message.
265 */
266 void
267 onSyncRegisterFailed(const Name& prefix, const std::string& msg);
268
269 /**
270 * @brief Callback to handle Sync Reply
271 *
272 * This method calls validator to validate Sync Reply.
273 * For now, validation is disabled, Logic::onSyncDataValidated is called
274 * directly.
275 *
276 * @param interest The Sync Interest
277 * @param data The reply to the Sync Interest
278 */
279 void
Alexander Afanasyeve9eda8a2017-03-09 14:40:03 -0800280 onSyncData(const Interest& interest, const Data& data);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700281
282 /**
283 * @brief Callback to handle reply to Reset Interest.
284 *
285 * This method does nothing, since reply to Reset Interest is not useful for now.
286 *
287 * @param interest The Reset Interest
288 * @param data The reply to the Reset Interest
289 */
290 void
Alexander Afanasyeve9eda8a2017-03-09 14:40:03 -0800291 onResetData(const Interest& interest, const Data& data);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700292
293 /**
294 * @brief Callback to handle Sync Interest timeout.
295 *
296 * This method does nothing, since Logic per se handles timeout explicitly.
297 *
298 * @param interest The Sync Interest
299 */
300 void
301 onSyncTimeout(const Interest& interest);
302
303 /**
304 * @brief Callback to invalid Sync Reply.
305 *
306 * This method does nothing but drops the invalid reply.
307 *
308 * @param data The invalid Sync Reply
309 */
310 void
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500311 onSyncDataValidationFailed(const Data& data);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700312
313 /**
314 * @brief Callback to valid Sync Reply.
315 *
316 * This method simply passes the valid reply to processSyncData.
317 *
318 * @param data The valid Sync Reply.
319 */
320 void
Ashlesh Gawande1d1092d2018-08-03 14:36:49 -0500321 onSyncDataValidated(const Data& data);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700322
323 /**
324 * @brief Process normal Sync Interest
325 *
326 * This method extracts the digest from the incoming Sync Interest,
327 * compares it against current local digest, and process the Sync
328 * Interest according to the comparison result. See docs/design.rst
329 * for more details.
330 *
331 * @param interest The incoming interest
332 * @param isTimedProcessing True if the interest needs an immediate reply,
333 * otherwise hold the interest for a while before
334 * making a reply (to avoid unnecessary recovery)
335 */
336 void
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500337 processSyncInterest(const Interest& interest, bool isTimedProcessing = false);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700338
339 /**
340 * @brief Process reset Sync Interest
341 *
342 * This method simply call Logic::reset()
343 *
344 * @param interest The incoming interest.
345 */
346 void
347 processResetInterest(const Interest& interest);
348
349 /**
350 * @brief Process Sync Reply.
351 *
352 * This method extracts state update information from Sync Reply and applies
353 * it to the Sync Tree and re-express Sync Interest.
354 *
355 * @param name The data name of the Sync Reply.
356 * @param digest The digest in the data name.
357 * @param syncReplyBlock The content of the Sync Reply.
358 */
359 void
360 processSyncData(const Name& name,
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500361 ConstBufferPtr digest,
Ashlesh Gawande1d1092d2018-08-03 14:36:49 -0500362 const Block& syncReplyBlock);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700363
364 /**
365 * @brief Insert state diff into log
366 *
367 * @param diff The diff .
368 * @param previousRoot The root digest before state changes.
369 */
370 void
371 insertToDiffLog(DiffStatePtr diff,
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500372 ConstBufferPtr previousRoot);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700373
374 /**
375 * @brief Reply to all pending Sync Interests with a particular commit (or diff)
376 *
377 * @param commit The diff.
378 */
379 void
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800380 satisfyPendingSyncInterests(const Name& updatedPrefix, ConstDiffStatePtr commit);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700381
382 /// @brief Helper method to send normal Sync Interest
383 void
384 sendSyncInterest();
385
386 /// @brief Helper method to send reset Sync Interest
387 void
388 sendResetInterest();
389
390 /// @brief Helper method to send Sync Reply
391 void
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800392 sendSyncData(const Name& nodePrefix, const Name& name, const State& state);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700393
394 /**
395 * @brief Unset reset status
396 *
397 * By invoking this method, one can add its own state into the Sync Tree, thus
398 * jumping out of the reset status
399 */
400 void
401 cancelReset();
402
403 void
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500404 printDigest(ConstBufferPtr digest);
Yingdi Yuf7ede412014-08-30 20:37:52 -0700405
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800406 /**
407 * @brief Helper method to send Recovery Interest
408 *
409 * @param digest The digest to be included in the recovery interest
410 */
411 void
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500412 sendRecoveryInterest(ConstBufferPtr digest);
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800413
414 /**
415 * @brief Process Recovery Interest
416 *
417 * This method extracts the digest from the incoming Recovery Interest.
418 * If it recognizes this incoming digest, then it sends its full state
419 * as reply.
420 *
421 * @param interest The incoming interest
422 */
423 void
424 processRecoveryInterest(const Interest& interest);
425
426 /**
427 * @brief Callback to handle Recovery Reply
428 *
429 * This method calls Logic::onSyncDataValidated directly.
430 *
431 * @param interest The Recovery Interest
432 * @param data The reply to the Recovery Interest
433 */
434 void
Alexander Afanasyeve9eda8a2017-03-09 14:40:03 -0800435 onRecoveryData(const Interest& interest, const Data& data);
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800436
437 /**
438 * @brief Callback to handle Recovery Interest timeout.
439 *
440 * This method does nothing.
441 *
442 * @param interest The Recovery Interest
443 */
444 void
445 onRecoveryTimeout(const Interest& interest);
446
Alexander Afanasyevfcbf81d2018-02-19 10:25:46 -0500447 // /**
448 // * @brief Helper method to send Exclude Interest
449 // *
450 // * @param interest The interest whose exclude filter will be augmented
451 // * @param data The data whose implicit digest will be inserted into exclude filter
452 // */
453 // void
454 // sendExcludeInterest(const Interest& interest, const Data& data);
Sonu Mishraf42aa2c2017-01-22 18:47:33 -0800455
Alexander Afanasyevfcbf81d2018-02-19 10:25:46 -0500456 // /**
457 // * @brief Helper method to form the exclude Interest and calls sendExcludeInterest
458 // *
459 // * @param interest The interest whose exclude filter will be augmented
460 // * @param nodePrefix The prefix of the sender node
461 // * @param commit The commit whose contents will be used to obtain the implicit
462 // digest to be excluded
463 // * @param previousRoot The digest to be included in the interest
464 // */
465 // void
466 // formAndSendExcludeInterest(const Name& nodePrefix,
467 // const State& commit,
468 // ConstBufferPtr previousRoot);
Sonu Mishraf42aa2c2017-01-22 18:47:33 -0800469
Nick Gordon0b3beab2018-03-02 13:03:28 -0600470 void
471 cleanupPendingInterest(const ndn::PendingInterestId* pendingInterestId);
472
Yingdi Yucd339022014-11-05 17:51:19 -0800473public:
474 static const ndn::Name DEFAULT_NAME;
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800475 static const ndn::Name EMPTY_NAME;
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500476 static const std::shared_ptr<Validator> DEFAULT_VALIDATOR;
Yingdi Yucd339022014-11-05 17:51:19 -0800477
Yingdi Yuf7ede412014-08-30 20:37:52 -0700478private:
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500479 using NodeList = std::unordered_map<ndn::Name, NodeInfo>;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700480
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500481 static const ConstBufferPtr EMPTY_DIGEST;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700482 static const ndn::name::Component RESET_COMPONENT;
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800483 static const ndn::name::Component RECOVERY_COMPONENT;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700484
485 // Communication
486 ndn::Face& m_face;
487 Name m_syncPrefix;
Junxiao Shi8e4e76d2019-02-08 15:25:08 -0700488 ndn::ScopedRegisteredPrefixHandle m_syncRegisteredPrefix;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700489 Name m_syncReset;
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800490 Name m_defaultUserPrefix;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700491
492 // State
Qiuhan Ding8c095fd2014-11-19 17:38:32 -0800493 NodeList m_nodeList;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700494 State m_state;
495 DiffStateContainer m_log;
496 InterestTable m_interestTable;
Junxiao Shi8e4e76d2019-02-08 15:25:08 -0700497 Name m_pendingSyncInterestName;
498 ndn::ScopedPendingInterestHandle m_pendingSyncInterest;
499 ndn::ScopedPendingInterestHandle m_pendingResetInterest;
500 std::map<std::string, ndn::ScopedPendingInterestHandle> m_pendingRecoveryInterests;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700501 bool m_isInReset;
502 bool m_needPeriodReset;
503
504 // Callback
505 UpdateCallback m_onUpdate;
506
507 // Event
Davide Pesavento0d837e32019-03-16 22:31:14 -0400508 ndn::Scheduler m_scheduler;
509 ndn::scheduler::ScopedEventId m_delayedInterestProcessingId;
510 ndn::scheduler::ScopedEventId m_reexpressingInterestId;
511 ndn::scheduler::ScopedEventId m_resetInterestId;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700512
513 // Timer
Ashlesh Gawande9a306fe2019-01-04 11:38:18 -0600514 ndn::random::RandomNumberEngine& m_rng;
Ashlesh Gawande4a9ecd52018-02-06 14:36:19 -0600515 std::uniform_int_distribution<> m_rangeUniformRandom;
516 std::uniform_int_distribution<> m_reexpressionJitter;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700517 /// @brief Timer to send next reset 0 for no reset
518 time::steady_clock::Duration m_resetTimer;
519 /// @brief Timer to cancel reset state
520 time::steady_clock::Duration m_cancelResetTimer;
521 /// @brief Lifetime of reset interest
522 time::milliseconds m_resetInterestLifetime;
523 /// @brief Lifetime of sync interest
524 time::milliseconds m_syncInterestLifetime;
525 /// @brief FreshnessPeriod of SyncReply
526 time::milliseconds m_syncReplyFreshness;
Sonu Mishra4d3a2e02017-01-18 20:27:51 -0800527 /// @brief Lifetime of recovery interest
528 time::milliseconds m_recoveryInterestLifetime;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700529
Yingdi Yucd339022014-11-05 17:51:19 -0800530 // Security
Yingdi Yuf7ede412014-08-30 20:37:52 -0700531 ndn::KeyChain m_keyChain;
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500532 std::shared_ptr<Validator> m_validator;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700533
Yingdi Yuf7ede412014-08-30 20:37:52 -0700534 int m_instanceId;
Ashlesh Gawande08784d42017-09-06 23:40:21 -0500535 static int s_instanceCounter;
Yingdi Yuf7ede412014-08-30 20:37:52 -0700536};
537
Alexander Afanasyev89036292018-02-13 17:19:50 -0500538#ifdef CHRONOSYNC_HAVE_TESTS
539size_t
540getMaxPacketLimit();
541#endif // CHRONOSYNC_HAVE_TESTS
Yingdi Yuf7ede412014-08-30 20:37:52 -0700542
543} // namespace chronosync
544
Alexander Afanasyeve9eda8a2017-03-09 14:40:03 -0800545#endif // CHRONOSYNC_LOGIC_HPP