blob: 98ab0aafeaf26038743e035e40f22028659c9d54 [file] [log] [blame]
Zhenkai Zhu8d935c82012-03-06 10:44:12 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
Chaoyi Bian3e1eb162012-04-03 16:59:32 -070019 * Chaoyi Bian <bcy@pku.edu.cn>
Alexander Afanasyevc1030192012-03-08 22:21:28 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Yingdi Yu6d638f02014-01-24 11:01:21 -080021 * Yingdi Yu <yingdi@cs.ucla.edu>
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080022 */
23
Chaoyi Bian11f294f2012-03-08 14:28:06 -080024#ifndef SYNC_LOGIC_H
25#define SYNC_LOGIC_H
Alexander Afanasyev45fba082012-03-12 18:05:24 -070026
Alexander Afanasyev45fba082012-03-12 18:05:24 -070027#include <boost/random.hpp>
Zhenkai Zhuce66e212012-03-12 22:27:19 -070028#include <memory>
Zhenkai Zhud5aec4b2012-10-09 12:01:19 -070029#include <map>
Alexander Afanasyev387ac952012-03-11 23:49:27 -070030
Yingdi Yue8154712014-01-21 10:20:14 -080031#include <ndn-cpp-dev/face.hpp>
Yingdi Yu280bb962014-01-30 09:52:43 -080032#include <ndn-cpp-dev/security/validator.hpp>
Yingdi Yue8154712014-01-21 10:20:14 -080033#include <ndn-cpp-dev/security/key-chain.hpp>
Yingdi Yu280bb962014-01-30 09:52:43 -080034#include <ndn-cpp-dev/util/scheduler.hpp>
Yingdi Yu46c9f1a2013-12-18 15:15:46 +080035
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080036#include "sync-interest-table.h"
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080037#include "sync-diff-state.h"
38#include "sync-full-state.h"
Chaoyi Bian4194b742012-03-08 17:21:35 -080039#include "sync-std-name-info.h"
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080040
Alexander Afanasyevc1030192012-03-08 22:21:28 -080041#include "sync-diff-state-container.h"
42
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070043#ifdef _DEBUG
44#ifdef HAVE_LOG4CXX
45#include <log4cxx/logger.h>
46#endif
47#endif
48
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080049namespace Sync {
50
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070051struct MissingDataInfo {
52 std::string prefix;
53 SeqNo low;
54 SeqNo high;
55};
56
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080057/**
58 * \ingroup sync
Zhenkai Zhuaae81522012-03-06 11:05:44 -080059 * @brief A wrapper for SyncApp, which handles ccnx related things (process
60 * interests and data)
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080061 */
Zhenkai Zhub9f19592012-10-16 14:27:38 -070062
Chaoyi Bian11f294f2012-03-08 14:28:06 -080063class SyncLogic
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080064{
65public:
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070066 //typedef boost::function< void ( const std::string &/*prefix*/, const SeqNo &/*newSeq*/, const SeqNo &/*oldSeq*/ ) > LogicUpdateCallback;
67 typedef boost::function< void (const std::vector<MissingDataInfo> & ) > LogicUpdateCallback;
Alexander Afanasyevd95c2312013-11-07 13:45:34 -080068 typedef boost::function< void (const std::string &/*prefix*/ ) > LogicRemoveCallback;
Zhenkai Zhub9f19592012-10-16 14:27:38 -070069 typedef boost::function< void (const std::string &)> LogicPerBranchCallback;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080070
Yingdi Yu43e71612013-10-30 22:19:31 -070071 SyncLogic (const ndn::Name& syncPrefix,
Yingdi Yu3da10fe2014-02-27 16:37:34 -080072 const ndn::IdentityCertificate& myCertificate,
Yingdi Yu280bb962014-01-30 09:52:43 -080073 ndn::shared_ptr<ndn::Validator> validator,
74 ndn::shared_ptr<ndn::Face> face,
Alexander Afanasyev750d1872012-03-12 15:33:56 -070075 LogicUpdateCallback onUpdate,
Zhenkai Zhuce66e212012-03-12 22:27:19 -070076 LogicRemoveCallback onRemove);
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080077
Yingdi Yu43e71612013-10-30 22:19:31 -070078 SyncLogic (const ndn::Name& syncPrefix,
Yingdi Yu3da10fe2014-02-27 16:37:34 -080079 const ndn::IdentityCertificate& myCertificate,
Yingdi Yu280bb962014-01-30 09:52:43 -080080 ndn::shared_ptr<ndn::Validator> validator,
81 ndn::shared_ptr<ndn::Face> face,
Zhenkai Zhub9f19592012-10-16 14:27:38 -070082 LogicPerBranchCallback onUpdateBranch);
83
Alexander Afanasyevc1030192012-03-08 22:21:28 -080084 ~SyncLogic ();
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080085
Alexander Afanasyevc1030192012-03-08 22:21:28 -080086 /**
87 * a wrapper for the same func in SyncApp
88 */
Yingdi Yu280bb962014-01-30 09:52:43 -080089 void addLocalNames (const ndn::Name &prefix, uint64_t session, uint64_t seq);
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080090
Alexander Afanasyevc1030192012-03-08 22:21:28 -080091 /**
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -070092 * @brief remove a participant's subtree from the sync tree
Alexander Afanasyev03a58b72012-03-12 18:11:56 -070093 * @param prefix the name prefix for the participant
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -070094 */
Yingdi Yu6d638f02014-01-24 11:01:21 -080095 void remove (const ndn::Name &prefix);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -070096
Zhenkai Zhue5660932012-06-04 15:25:20 -070097 std::string
98 getRootDigest();
99
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700100#ifdef _DEBUG
Yingdi Yu280bb962014-01-30 09:52:43 -0800101 ndn::Scheduler &
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700102 getScheduler () { return m_scheduler; }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700103#endif
Zhenkai Zhueb1d8652012-12-23 15:25:39 -0800104
Alexander Afanasyev5548c042012-10-04 19:10:09 -0700105 void
106 printState () const;
107
Zhenkai Zhud5aec4b2012-10-09 12:01:19 -0700108 std::map<std::string, bool>
109 getBranchPrefixes() const;
110
Yingdi Yu280bb962014-01-30 09:52:43 -0800111private:
Yingdi Yu46c9f1a2013-12-18 15:15:46 +0800112 void
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700113 delayedChecksLoop ();
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700114
115 void
Yingdi Yu51c80252014-02-10 19:32:05 -0800116 onSyncInterest (const ndn::Name& prefix, const ndn::Interest& interest);
Yingdi Yu43e71612013-10-30 22:19:31 -0700117
118 void
Yingdi Yu51c80252014-02-10 19:32:05 -0800119 onSyncRegisterFailed(const ndn::Name& prefix, const std::string& msg);
Yingdi Yu46c9f1a2013-12-18 15:15:46 +0800120
121 void
Yingdi Yu51c80252014-02-10 19:32:05 -0800122 onSyncData(const ndn::Interest& interest, ndn::Data& data);
Yingdi Yu46c9f1a2013-12-18 15:15:46 +0800123
124 void
Yingdi Yu51c80252014-02-10 19:32:05 -0800125 onSyncTimeout(const ndn::Interest& interest);
Yingdi Yu46c9f1a2013-12-18 15:15:46 +0800126
127 void
Yingdi Yu280bb962014-01-30 09:52:43 -0800128 onSyncDataValidationFailed(const ndn::shared_ptr<const ndn::Data>& data);
Yingdi Yu46c9f1a2013-12-18 15:15:46 +0800129
130 void
Yingdi Yu280bb962014-01-30 09:52:43 -0800131 onSyncDataValidated(const ndn::shared_ptr<const ndn::Data>& data);
Yingdi Yu46c9f1a2013-12-18 15:15:46 +0800132
133 void
Yingdi Yu6d638f02014-01-24 11:01:21 -0800134 processSyncInterest (const ndn::Name &name,
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700135 DigestConstPtr digest, bool timedProcessing=false);
136
137 void
Yingdi Yu6d638f02014-01-24 11:01:21 -0800138 processSyncData (const ndn::Name &name,
Zhenkai Zhu3cfdcb92012-06-06 15:20:10 -0700139 DigestConstPtr digest, const char *wireData, size_t len);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700140
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700141 void
Yingdi Yu6d638f02014-01-24 11:01:21 -0800142 processSyncRecoveryInterest (const ndn::Name &name,
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700143 DigestConstPtr digest);
144
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700145 void
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700146 insertToDiffLog (DiffStatePtr diff);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700147
148 void
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700149 satisfyPendingSyncInterests (DiffStateConstPtr diff);
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800150
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700151 boost::tuple<DigestConstPtr, std::string>
Yingdi Yu6d638f02014-01-24 11:01:21 -0800152 convertNameToDigestAndType (const ndn::Name &name);
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700153
154 void
155 sendSyncInterest ();
156
157 void
Alexander Afanasyev46eb5262012-05-10 16:30:35 -0700158 sendSyncRecoveryInterests (DigestConstPtr digest);
159
160 void
Yingdi Yu6d638f02014-01-24 11:01:21 -0800161 sendSyncData (const ndn::Name &name,
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700162 DigestConstPtr digest, StateConstPtr state);
Alexander Afanasyev80237382012-10-04 10:20:47 -0700163
Zhenkai Zhu2d3e2702012-10-15 14:18:05 -0700164 void
Yingdi Yu6d638f02014-01-24 11:01:21 -0800165 sendSyncData (const ndn::Name &name,
Zhenkai Zhu2d3e2702012-10-15 14:18:05 -0700166 DigestConstPtr digest, SyncStateMsg &msg);
167
Alexander Afanasyev80237382012-10-04 10:20:47 -0700168 size_t
169 getNumberOfBranches () const;
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700170
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800171private:
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700172 FullStatePtr m_state;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800173 DiffStateContainer m_log;
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700174
Yingdi Yu6d638f02014-01-24 11:01:21 -0800175 ndn::Name m_outstandingInterestName;
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800176 SyncInterestTable m_syncInterestTable;
177
Yingdi Yu43e71612013-10-30 22:19:31 -0700178 ndn::Name m_syncPrefix;
Yingdi Yu3da10fe2014-02-27 16:37:34 -0800179 ndn::IdentityCertificate m_myCertificate;
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700180 LogicUpdateCallback m_onUpdate;
181 LogicRemoveCallback m_onRemove;
Zhenkai Zhub9f19592012-10-16 14:27:38 -0700182 LogicPerBranchCallback m_onUpdateBranch;
183 bool m_perBranch;
Yingdi Yu3da10fe2014-02-27 16:37:34 -0800184 ndn::shared_ptr<ndn::Validator> m_validator;
185 ndn::KeyChain m_keyChain;
186 ndn::shared_ptr<ndn::Face> m_face;
Yingdi Yu280bb962014-01-30 09:52:43 -0800187 const ndn::RegisteredPrefixId* m_syncRegisteredPrefixId;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800188
Yingdi Yu280bb962014-01-30 09:52:43 -0800189 ndn::Scheduler m_scheduler;
Chaoyi Bian633255f2012-03-09 21:25:38 -0800190
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700191 boost::mt19937 m_randomGenerator;
192 boost::variate_generator<boost::mt19937&, boost::uniform_int<> > m_rangeUniformRandom;
Alexander Afanasyev085742a2012-04-26 12:24:57 -0700193 boost::variate_generator<boost::mt19937&, boost::uniform_int<> > m_reexpressionJitter;
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700194
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700195 static const int m_unknownDigestStoreTime = 10; // seconds
Yingdi Yu6e1c9cd2014-03-25 10:26:54 -0700196 static const int m_syncResponseFreshness; // MUST BE dividable by 1000!!!
197 static const int m_syncInterestReexpress; // seconds
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700198
Alexander Afanasyeva76010b2012-05-24 21:31:49 -0700199 static const int m_defaultRecoveryRetransmitInterval = 200; // milliseconds
200 uint32_t m_recoveryRetransmissionInterval; // milliseconds
201
Yingdi Yu280bb962014-01-30 09:52:43 -0800202 ndn::EventId m_delayedInterestProcessingId;
203 ndn::EventId m_reexpressingInterestId;
204 ndn::EventId m_reexpressingRecoveryInterestId;
Yingdi Yu7ad4e4f2014-02-03 18:27:36 -0800205
206 std::string m_instanceId;
207 static int m_instanceCounter;
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800208};
209
210
211} // Sync
212
Zhenkai Zhu1ac6f802012-03-06 17:40:27 -0800213#endif // SYNC_APP_WRAPPER_H