blob: 3b7df8cfd1d8b9c46cb3e0bb490d59baae1c71df [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>
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080021 */
22
Chaoyi Bian11f294f2012-03-08 14:28:06 -080023#ifndef SYNC_LOGIC_H
24#define SYNC_LOGIC_H
Alexander Afanasyev45fba082012-03-12 18:05:24 -070025
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080026#include <boost/shared_ptr.hpp>
Alexander Afanasyev750d1872012-03-12 15:33:56 -070027#include <boost/thread/recursive_mutex.hpp>
Alexander Afanasyev45fba082012-03-12 18:05:24 -070028#include <boost/random.hpp>
Zhenkai Zhuce66e212012-03-12 22:27:19 -070029#include <memory>
Zhenkai Zhud5aec4b2012-10-09 12:01:19 -070030#include <map>
Alexander Afanasyev387ac952012-03-11 23:49:27 -070031
Yingdi Yu43e71612013-10-30 22:19:31 -070032#include <ndn.cxx/wrapper/wrapper.h>
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080033#include "sync-interest-table.h"
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080034#include "sync-diff-state.h"
35#include "sync-full-state.h"
Chaoyi Bian4194b742012-03-08 17:21:35 -080036#include "sync-std-name-info.h"
Alexander Afanasyev45fba082012-03-12 18:05:24 -070037#include "sync-scheduler.h"
Yingdi Yu43e71612013-10-30 22:19:31 -070038#include "sync-policy-manager.h"
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080039
Alexander Afanasyevc1030192012-03-08 22:21:28 -080040#include "sync-diff-state-container.h"
41
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070042#ifdef _DEBUG
43#ifdef HAVE_LOG4CXX
44#include <log4cxx/logger.h>
45#endif
46#endif
47
Alexander Afanasyev181d7e52012-04-09 13:54:11 -070048#ifdef NS3_MODULE
49#include <ns3/application.h>
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -070050#include <ns3/random-variable.h>
Alexander Afanasyev181d7e52012-04-09 13:54:11 -070051#endif
52
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080053namespace Sync {
54
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070055struct MissingDataInfo {
56 std::string prefix;
57 SeqNo low;
58 SeqNo high;
59};
60
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080061/**
62 * \ingroup sync
Zhenkai Zhuaae81522012-03-06 11:05:44 -080063 * @brief A wrapper for SyncApp, which handles ccnx related things (process
64 * interests and data)
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080065 */
Zhenkai Zhub9f19592012-10-16 14:27:38 -070066
Chaoyi Bian11f294f2012-03-08 14:28:06 -080067class SyncLogic
Alexander Afanasyev181d7e52012-04-09 13:54:11 -070068#ifdef NS3_MODULE
69 : public ns3::Application
70#endif
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080071{
72public:
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070073 //typedef boost::function< void ( const std::string &/*prefix*/, const SeqNo &/*newSeq*/, const SeqNo &/*oldSeq*/ ) > LogicUpdateCallback;
74 typedef boost::function< void (const std::vector<MissingDataInfo> & ) > LogicUpdateCallback;
Alexander Afanasyevd95c2312013-11-07 13:45:34 -080075 typedef boost::function< void (const std::string &/*prefix*/ ) > LogicRemoveCallback;
Zhenkai Zhub9f19592012-10-16 14:27:38 -070076 typedef boost::function< void (const std::string &)> LogicPerBranchCallback;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080077
Alexander Afanasyevc1030192012-03-08 22:21:28 -080078 /**
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080079 * @brief Constructor
Alexander Afanasyevc1030192012-03-08 22:21:28 -080080 * @param syncPrefix the name prefix to use for the Sync Interest
Alexander Afanasyev03a58b72012-03-12 18:11:56 -070081 * @param onUpdate function that will be called when new state is detected
82 * @param onRemove function that will be called when state is removed
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080083 * @param ccnxHandle ccnx handle
Alexander Afanasyevc1030192012-03-08 22:21:28 -080084 * the app data when new remote names are learned
85 */
Yingdi Yu43e71612013-10-30 22:19:31 -070086 SyncLogic (const ndn::Name& syncPrefix,
87 ndn::Ptr<SyncPolicyManager> syncPolicyManager,
Yingdi Yu8600a092013-11-01 16:12:31 -070088 ndn::Ptr<ndn::Wrapper> handler,
Alexander Afanasyev750d1872012-03-12 15:33:56 -070089 LogicUpdateCallback onUpdate,
Zhenkai Zhuce66e212012-03-12 22:27:19 -070090 LogicRemoveCallback onRemove);
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080091
Yingdi Yu43e71612013-10-30 22:19:31 -070092 SyncLogic (const ndn::Name& syncPrefix,
93 ndn::Ptr<SyncPolicyManager> syncPolicyManager,
Yingdi Yu8600a092013-11-01 16:12:31 -070094 ndn::Ptr<ndn::Wrapper> handler,
Zhenkai Zhub9f19592012-10-16 14:27:38 -070095 LogicPerBranchCallback onUpdateBranch);
96
Alexander Afanasyevc1030192012-03-08 22:21:28 -080097 ~SyncLogic ();
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080098
Alexander Afanasyevc1030192012-03-08 22:21:28 -080099 /**
100 * a wrapper for the same func in SyncApp
101 */
102 void addLocalNames (const std::string &prefix, uint32_t session, uint32_t seq);
Zhenkai Zhu46b26a12012-03-06 13:51:16 -0800103
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800104 /**
105 * @brief respond to the Sync Interest; a lot of logic needs to go in here
106 * @param interest the Sync Interest in string format
107 */
Yingdi Yu43e71612013-10-30 22:19:31 -0700108 void respondSyncInterest (ndn::Ptr<ndn::Interest>);
Zhenkai Zhu46b26a12012-03-06 13:51:16 -0800109
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800110 /**
111 * @brief process the fetched sync data
Chaoyi Bian633255f2012-03-09 21:25:38 -0800112 * @param name the data name
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800113 * @param dataBuffer the sync data
114 */
Yingdi Yu43e71612013-10-30 22:19:31 -0700115 void respondSyncData (ndn::Ptr<ndn::Data> data);
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800116
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700117 /**
118 * @brief remove a participant's subtree from the sync tree
Alexander Afanasyev03a58b72012-03-12 18:11:56 -0700119 * @param prefix the name prefix for the participant
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700120 */
Alexander Afanasyev03a58b72012-03-12 18:11:56 -0700121 void remove (const std::string &prefix);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700122
Zhenkai Zhue5660932012-06-04 15:25:20 -0700123 std::string
124 getRootDigest();
125
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700126#ifdef _DEBUG
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700127 Scheduler &
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700128 getScheduler () { return m_scheduler; }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700129#endif
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700130
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700131#ifdef NS3_MODULE
Alexander Afanasyev40942f42012-04-21 20:53:16 -0700132public:
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700133 virtual void StartApplication ();
134 virtual void StopApplication ();
135#endif
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700136
Zhenkai Zhueb1d8652012-12-23 15:25:39 -0800137 void stop();
138
Alexander Afanasyev5548c042012-10-04 19:10:09 -0700139 void
140 printState () const;
141
Zhenkai Zhud5aec4b2012-10-09 12:01:19 -0700142 std::map<std::string, bool>
143 getBranchPrefixes() const;
144
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800145private:
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700146 void
147 delayedChecksLoop ();
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700148
149 void
Yingdi Yu43e71612013-10-30 22:19:31 -0700150 onSyncDataTimeout(ndn::Ptr<ndn::Closure> closure, ndn::Ptr<ndn::Interest> interest, int retry);
151
152 void
153 onSyncDataUnverified();
154
155 void
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700156 processSyncInterest (const std::string &name,
157 DigestConstPtr digest, bool timedProcessing=false);
158
159 void
160 processSyncData (const std::string &name,
Zhenkai Zhu3cfdcb92012-06-06 15:20:10 -0700161 DigestConstPtr digest, const char *wireData, size_t len);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700162
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700163 void
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700164 processSyncRecoveryInterest (const std::string &name,
165 DigestConstPtr digest);
166
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700167 void
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700168 insertToDiffLog (DiffStatePtr diff);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700169
170 void
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700171 satisfyPendingSyncInterests (DiffStateConstPtr diff);
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800172
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700173 boost::tuple<DigestConstPtr, std::string>
174 convertNameToDigestAndType (const std::string &name);
175
176 void
177 sendSyncInterest ();
178
179 void
Alexander Afanasyev46eb5262012-05-10 16:30:35 -0700180 sendSyncRecoveryInterests (DigestConstPtr digest);
181
182 void
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700183 sendSyncData (const std::string &name,
184 DigestConstPtr digest, StateConstPtr state);
Alexander Afanasyev80237382012-10-04 10:20:47 -0700185
Zhenkai Zhu2d3e2702012-10-15 14:18:05 -0700186 void
187 sendSyncData (const std::string &name,
188 DigestConstPtr digest, SyncStateMsg &msg);
189
Alexander Afanasyev80237382012-10-04 10:20:47 -0700190 size_t
191 getNumberOfBranches () const;
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700192
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800193private:
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700194 FullStatePtr m_state;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800195 DiffStateContainer m_log;
Alexander Afanasyev80237382012-10-04 10:20:47 -0700196 mutable boost::recursive_mutex m_stateMutex;
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700197
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700198 std::string m_outstandingInterestName;
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800199 SyncInterestTable m_syncInterestTable;
200
Yingdi Yu43e71612013-10-30 22:19:31 -0700201 ndn::Name m_syncPrefix;
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700202 LogicUpdateCallback m_onUpdate;
203 LogicRemoveCallback m_onRemove;
Zhenkai Zhub9f19592012-10-16 14:27:38 -0700204 LogicPerBranchCallback m_onUpdateBranch;
205 bool m_perBranch;
Yingdi Yu43e71612013-10-30 22:19:31 -0700206 ndn::Ptr<SyncPolicyManager> m_policyManager;
207 ndn::Ptr<ndn::Wrapper> m_handler;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800208
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700209 Scheduler m_scheduler;
Chaoyi Bian633255f2012-03-09 21:25:38 -0800210
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -0700211#ifndef NS3_MODULE
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700212 boost::mt19937 m_randomGenerator;
213 boost::variate_generator<boost::mt19937&, boost::uniform_int<> > m_rangeUniformRandom;
Alexander Afanasyev085742a2012-04-26 12:24:57 -0700214 boost::variate_generator<boost::mt19937&, boost::uniform_int<> > m_reexpressionJitter;
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -0700215#else
216 ns3::UniformVariable m_rangeUniformRandom;
Alexander Afanasyev085742a2012-04-26 12:24:57 -0700217 ns3::UniformVariable m_reexpressionJitter;
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -0700218#endif
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700219
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700220 static const int m_unknownDigestStoreTime = 10; // seconds
Alexander Afanasyev89571f12012-04-23 13:44:57 -0700221#ifdef NS3_MODULE
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700222 static const int m_syncResponseFreshness = 100; // milliseconds
Alexander Afanasyev55608612012-04-30 13:24:50 -0700223 static const int m_syncInterestReexpress = 10; // seconds
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700224 // don't forget to adjust value in SyncCcnxWrapper
Alexander Afanasyev40942f42012-04-21 20:53:16 -0700225#else
Zhenkai Zhu60e8cb32012-06-04 17:29:30 -0700226 static const int m_syncResponseFreshness = 4;
Alexander Afanasyev89571f12012-04-23 13:44:57 -0700227 static const int m_syncInterestReexpress = 4;
Alexander Afanasyev40942f42012-04-21 20:53:16 -0700228#endif
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700229
Alexander Afanasyeva76010b2012-05-24 21:31:49 -0700230 static const int m_defaultRecoveryRetransmitInterval = 200; // milliseconds
231 uint32_t m_recoveryRetransmissionInterval; // milliseconds
232
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700233 enum EventLabels
234 {
235 DELAYED_INTEREST_PROCESSING = 1,
Alexander Afanasyev46eb5262012-05-10 16:30:35 -0700236 REEXPRESSING_INTEREST = 2,
237 REEXPRESSING_RECOVERY_INTEREST = 3
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700238 };
Zhenkai Zhu8d935c82012-03-06 10:44:12 -0800239};
240
241
242} // Sync
243
Zhenkai Zhu1ac6f802012-03-06 17:40:27 -0800244#endif // SYNC_APP_WRAPPER_H