blob: 7fc92951c3709c44078758b4d2fa8a5bcb8e6476 [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>
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080022
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -070023#include <ns3/ccnx-pit.h>
24#include <ns3/ccnx.h>
25
Chaoyi Bian11f294f2012-03-08 14:28:06 -080026#include "sync-logic.h"
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080027#include "sync-diff-leaf.h"
28#include "sync-full-leaf.h"
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070029#include "sync-log.h"
30
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080031#include <boost/make_shared.hpp>
32#include <boost/foreach.hpp>
Alexander Afanasyev387ac952012-03-11 23:49:27 -070033#include <boost/lexical_cast.hpp>
34#include <boost/date_time/posix_time/posix_time.hpp>
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080035#include <vector>
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080036
37using namespace std;
38using namespace boost;
39
Alexander Afanasyevca6f3292012-04-09 10:03:30 -070040#ifndef _STANDALONE
41INIT_LOGGER ("SyncLogic");
42#endif
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070043
Alexander Afanasyev983b0e92012-04-26 12:44:18 -070044
45#ifdef NS3_MODULE
46#define GET_RANDOM(var) var.GetValue ()
47#else
48#define GET_RANDOM(var) var ()
49#endif
50
51#define TIME_SECONDS_WITH_JITTER(sec) \
52 (TIME_SECONDS (sec) + TIME_MILLISECONDS (GET_RANDOM (m_reexpressionJitter)))
53
54#define TIME_MILLISECONDS_WITH_JITTER(sec) \
55 (TIME_MILLISECONDS (sec) + TIME_MILLISECONDS (GET_RANDOM (m_reexpressionJitter)))
56
57
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080058namespace Sync
59{
60
Alexander Afanasyev750d1872012-03-12 15:33:56 -070061SyncLogic::SyncLogic (const std::string &syncPrefix,
62 LogicUpdateCallback onUpdate,
Zhenkai Zhuce66e212012-03-12 22:27:19 -070063 LogicRemoveCallback onRemove)
Alexander Afanasyevc1030192012-03-08 22:21:28 -080064 : m_syncPrefix (syncPrefix)
Alexander Afanasyev750d1872012-03-12 15:33:56 -070065 , m_onUpdate (onUpdate)
66 , m_onRemove (onRemove)
Alexander Afanasyev3f93c2b2012-03-13 00:02:31 -070067 , m_ccnxHandle(new CcnxWrapper())
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -070068#ifndef NS3_MODULE
Alexander Afanasyev45fba082012-03-12 18:05:24 -070069 , m_randomGenerator (static_cast<unsigned int> (std::time (0)))
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -070070 , m_rangeUniformRandom (m_randomGenerator, uniform_int<> (500,1000))
Alexander Afanasyev085742a2012-04-26 12:24:57 -070071 , m_reexpressionJitter (m_randomGenerator, uniform_int<> (0,100))
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -070072#else
Alexander Afanasyev55608612012-04-30 13:24:50 -070073 , m_rangeUniformRandom (200,1000)
74 , m_reexpressionJitter (100,500)
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -070075#endif
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080076{
Alexander Afanasyevca6f3292012-04-09 10:03:30 -070077#ifdef _STANDALONE
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070078#ifdef _DEBUG
79#ifdef HAVE_LOG4CXX
80 // _LOG_FUNCTION (syncPrefix);
81 static int id = 0;
82 staticModuleLogger = log4cxx::Logger::getLogger ("SyncLogic." + lexical_cast<string> (id));
83 id ++;
84#endif
85#endif
Alexander Afanasyevca6f3292012-04-09 10:03:30 -070086#endif
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -070087
88#ifndef NS3_MODULE
89 // In NS3 module these functions are moved to StartApplication method
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070090
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070091 m_ccnxHandle->setInterestFilter (m_syncPrefix,
Alexander Afanasyev387ac952012-03-11 23:49:27 -070092 bind (&SyncLogic::respondSyncInterest, this, _1));
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070093
Alexander Afanasyev983b0e92012-04-26 12:44:18 -070094 m_scheduler.schedule (TIME_SECONDS (0), // no need to add jitter
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070095 bind (&SyncLogic::sendSyncInterest, this),
96 REEXPRESSING_INTEREST);
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -070097#endif
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080098}
99
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800100SyncLogic::~SyncLogic ()
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800101{
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700102 // _LOG_FUNCTION (this);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700103 // cout << "SyncLogic::~SyncLogic ()" << endl;
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800104
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700105 m_ccnxHandle.reset ();
106}
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700107
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -0700108#ifdef NS3_MODULE
109void
110SyncLogic::StartApplication ()
111{
112 m_ccnxHandle->SetNode (GetNode ());
113 m_ccnxHandle->StartApplication ();
114
115 m_ccnxHandle->setInterestFilter (m_syncPrefix,
116 bind (&SyncLogic::respondSyncInterest, this, _1));
117
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700118 m_scheduler.schedule (TIME_SECONDS (0), // need to send first interests at exactly the same time
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -0700119 bind (&SyncLogic::sendSyncInterest, this),
120 REEXPRESSING_INTEREST);
121}
122
123void
124SyncLogic::StopApplication ()
125{
Alexander Afanasyev434f1612012-04-21 21:19:15 -0700126 m_ccnxHandle->clearInterestFilter (m_syncPrefix);
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -0700127 m_ccnxHandle->StopApplication ();
Alexander Afanasyev40942f42012-04-21 20:53:16 -0700128 m_scheduler.cancel (REEXPRESSING_INTEREST);
129 m_scheduler.cancel (DELAYED_INTEREST_PROCESSING);
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -0700130}
131#endif
132
133
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700134void
135SyncLogic::respondSyncInterest (const string &interest)
136{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700137 _LOG_TRACE ("<< I " << interest);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700138 //cout << "Respond Sync Interest" << endl;
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700139 string hash = interest.substr(interest.find_last_of("/") + 1);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700140 // cout << "Received Sync Interest: " << hash << endl;
141
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700142 DigestPtr digest = make_shared<Digest> ();
143 try
144 {
145 istringstream is (hash);
146 is >> *digest;
147 }
148 catch (Error::DigestCalculationError &e)
149 {
150 // log error. ignoring it for now, later we should log it
151 return;
152 }
153
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700154 processSyncInterest (digest, interest, false);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700155}
156
157void
158SyncLogic::processSyncInterest (DigestConstPtr digest, const std::string &interestName, bool timedProcessing/*=false*/)
159{
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700160 recursive_mutex::scoped_lock lock (m_stateMutex);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700161
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700162 // Special case when state is not empty and we have received request with zero-root digest
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700163 if (digest->isZero () && !m_state.getDigest()->isZero ())
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700164 {
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700165 _LOG_TRACE (">> D " << interestName << "/state" << " (zero)");
166
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700167 m_syncInterestTable.remove (interestName + "/state");
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700168 m_ccnxHandle->publishData (interestName + "/state",
169 lexical_cast<string> (m_state),
170 m_syncResponseFreshness);
171 return;
172 }
Alexander Afanasyev763855a2012-03-13 14:17:37 -0700173
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700174 if (*m_state.getDigest() == *digest)
175 {
176 // cout << interestName << "\n";
177 if (digest->isZero ())
178 {
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700179 _LOG_TRACE ("processSyncInterest (): Digest is zero, adding /state to PIT");
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700180 m_syncInterestTable.insert (interestName + "/state");
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -0700181 // _LOG_TRACE (*GetNode ()->GetObject<ns3::Ccnx> ()->GetPit ());
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700182 }
183 else
184 {
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700185 _LOG_TRACE ("processSyncInterest (): Same state. Adding to PIT");
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700186 m_syncInterestTable.insert (interestName);
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -0700187 // _LOG_TRACE (*GetNode ()->GetObject<ns3::Ccnx> ()->GetPit ());
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700188 }
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -0700189
190 if (m_outstandingInterest == interestName)
191 {
192 _LOG_DEBUG ("Cancelling interest reexpressing 1");
193 // !!! important change !!!
194 m_scheduler.cancel (REEXPRESSING_INTEREST);
195 m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (m_syncInterestReexpress),
196 bind (&SyncLogic::sendSyncInterest, this),
197 REEXPRESSING_INTEREST);
198 }
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700199 return;
200 }
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700201
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700202 DiffStateContainer::iterator stateInDiffLog = m_log.find (digest);
203
204 if (stateInDiffLog != m_log.end ())
205 {
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700206 DiffStateConstPtr stateDiff = (*stateInDiffLog)->diff ();
207 // string state = lexical_cast<string> (*stateDiff);
208 // erase_all (state, "\n");
209 // _LOG_TRACE (">> D " << interestName << ", state: " << state);
210 // _LOG_DEBUG ("Log size: " << m_log.size ());
211
212 // BOOST_FOREACH (DiffStateConstPtr ds, m_log.get<sequenced> ())
213 // {
214 // string state = lexical_cast<string> (*ds);
215 // erase_all (state, "\n");
216 // _LOG_DEBUG (" " << state << ", " << *ds->getDigest ());
217 // }
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700218
219 m_syncInterestTable.remove (interestName);
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -0700220 _LOG_DEBUG (">> D" << interestName);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700221 m_ccnxHandle->publishData (interestName,
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700222 lexical_cast<string> (*stateDiff),
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700223 m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700224 if (m_outstandingInterest == interestName)
225 {
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700226 m_scheduler.cancel (REEXPRESSING_INTEREST);
227 m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700228 bind (&SyncLogic::sendSyncInterest, this),
229 REEXPRESSING_INTEREST);
230 }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700231 return;
232 }
233
234 if (!timedProcessing)
235 {
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700236 UnknownDigestContainer::index<hashed>::type::iterator previousUnknownDigest = m_recentUnknownDigests.get<hashed> ().find (digest);
237 if (previousUnknownDigest != m_recentUnknownDigests.get<hashed> ().end ())
238 {
239 _LOG_DEBUG ("Digest is not in the log, but we have already seen it. (Don't do anything)");
240 }
241 else
242 {
Alexander Afanasyev03793b42012-05-01 13:03:07 -0700243 bool exists = m_syncInterestTable.remove (interestName);
244 if (exists)
245 return;
246
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -0700247 // m_recentUnknownDigests.insert (DigestTime (digest, TIME_NOW + TIME_SECONDS (m_unknownDigestStoreTime)));
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700248
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700249 uint32_t waitDelay = GET_RANDOM (m_rangeUniformRandom);
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700250 _LOG_DEBUG ("Digest is not in the log. Schedule processing after small delay: " << waitDelay << "ms");
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700251
252 m_scheduler.schedule (TIME_MILLISECONDS (waitDelay),
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700253 bind (&SyncLogic::processSyncInterest, this, digest, interestName, true),
254 DELAYED_INTEREST_PROCESSING);
Alexander Afanasyev03793b42012-05-01 13:03:07 -0700255
Alexander Afanasyev1f8f0682012-04-26 13:00:14 -0700256 // just in case, re-express our interest (e.g., probably something bad happened)
257
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -0700258 // m_scheduler.cancel (REEXPRESSING_INTEREST);
259 // m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (0),
260 // bind (&SyncLogic::sendSyncInterest, this),
261 // REEXPRESSING_INTEREST);
Alexander Afanasyev3a229132012-04-25 15:07:26 -0700262 }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700263 }
264 else
265 {
Alexander Afanasyev280882c2012-04-30 02:33:00 -0700266 // _LOG_TRACE (" (timed processing)");
267 _LOG_TRACE (">> D " << interestName << "/state" << " (timed processing)");
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700268
Alexander Afanasyev03793b42012-05-01 13:03:07 -0700269 m_syncInterestTable.remove (interestName);
Alexander Afanasyev280882c2012-04-30 02:33:00 -0700270 m_ccnxHandle->publishData (interestName + "/state",
271 lexical_cast<string> (m_state),
272 m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700273
Alexander Afanasyev0ac399e2012-04-27 13:28:28 -0700274 // exit (1);
275 // if (m_outstandingInterest == interestName)
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700276 {
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700277 m_scheduler.cancel (REEXPRESSING_INTEREST);
278 m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700279 bind (&SyncLogic::sendSyncInterest, this),
280 REEXPRESSING_INTEREST);
281 }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700282 }
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800283}
284
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800285void
286SyncLogic::processSyncData (const string &name, const string &dataBuffer)
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800287{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700288 _LOG_TRACE ("<< D " << name);
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700289 DiffStatePtr diffLog = make_shared<DiffState> ();
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -0700290
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700291 try
292 {
293 recursive_mutex::scoped_lock lock (m_stateMutex);
Alexander Afanasyev02f1bff2012-04-09 15:44:42 -0700294
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700295 string last = name.substr(name.find_last_of("/") + 1);
296 istringstream ss (dataBuffer);
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700297
Alexander Afanasyev02f1bff2012-04-09 15:44:42 -0700298 m_syncInterestTable.remove (name); // just in case, remove both interests from our interest table. No reason to keep them there
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700299 if (last == "state")
300 {
Alexander Afanasyev02f1bff2012-04-09 15:44:42 -0700301 m_syncInterestTable.remove (name.substr(0, name.find_last_of("/")));
302
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700303 FullState full;
304 ss >> full;
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700305 BOOST_FOREACH (LeafConstPtr leaf, full.getLeaves()) // order doesn't matter
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700306 {
307 NameInfoConstPtr info = leaf->getInfo ();
308 SeqNo seq = leaf->getSeq ();
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700309
310 bool inserted = false;
311 bool updated = false;
312 SeqNo oldSeq;
313 tie (inserted, updated, oldSeq) = m_state.update (info, seq);
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800314
Alexander Afanasyevd4adce52012-03-13 13:59:39 -0700315 if (inserted || updated)
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700316 {
317 diffLog->update (info, seq);
Chaoyi Bian98135192012-03-27 18:34:11 -0700318 m_onUpdate (info->toString (), seq, oldSeq);
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700319 }
320 }
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700321 }
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700322 else
323 {
324 DiffState diff;
325 ss >> diff;
326 BOOST_FOREACH (LeafConstPtr leaf, diff.getLeaves().get<ordered>())
327 {
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700328 DiffLeafConstPtr diffLeaf = dynamic_pointer_cast<const DiffLeaf> (leaf);
329 BOOST_ASSERT (diffLeaf != 0);
330
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700331 NameInfoConstPtr info = diffLeaf->getInfo();
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700332 if (diffLeaf->getOperation() == UPDATE)
333 {
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700334 SeqNo seq = diffLeaf->getSeq();
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800335
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700336 bool inserted = false;
337 bool updated = false;
338 SeqNo oldSeq;
339 tie (inserted, updated, oldSeq) = m_state.update (info, seq);
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800340
Alexander Afanasyevd4adce52012-03-13 13:59:39 -0700341 if (inserted || updated)
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700342 {
343 diffLog->update (info, seq);
Chaoyi Bian98135192012-03-27 18:34:11 -0700344 m_onUpdate (info->toString (), seq, oldSeq);
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700345 }
346 }
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700347 else if (diffLeaf->getOperation() == REMOVE)
348 {
349 if (m_state.remove (info))
350 {
351 diffLog->remove (info);
352 m_onRemove (info->toString ());
353 }
354 }
355 else
356 {
357 BOOST_ASSERT (false); // just in case
358 }
359 }
360 }
361
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700362 insertToDiffLog (diffLog);
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700363 }
364 catch (Error::SyncXmlDecodingFailure &e)
365 {
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700366 diffLog.reset ();
367 // don't do anything
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700368 }
369
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700370 // if state has changed, then it is safe to express a new interest
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700371 if (diffLog->getLeaves ().size () > 0)
372 {
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700373 m_scheduler.cancel (REEXPRESSING_INTEREST);
374 m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700375 bind (&SyncLogic::sendSyncInterest, this),
376 REEXPRESSING_INTEREST);
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700377 }
378 else
379 {
380 // should not reexpress the same interest. Need at least wait for data lifetime
381 // Otherwise we will get immediate reply from the local daemon and there will be 100% utilization
382 m_scheduler.cancel (REEXPRESSING_INTEREST);
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700383 m_scheduler.schedule (TIME_MILLISECONDS_WITH_JITTER (m_syncResponseFreshness),
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700384 bind (&SyncLogic::sendSyncInterest, this),
385 REEXPRESSING_INTEREST);
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700386 }
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800387}
388
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800389void
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700390SyncLogic::satisfyPendingSyncInterests (DiffStatePtr diffLog)
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800391{
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800392 vector<string> pis = m_syncInterestTable.fetchAll ();
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700393 if (pis.size () > 0)
394 {
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700395 stringstream ss;
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700396 ss << *diffLog;
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700397 bool satisfiedOwnInterest = false;
398
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700399 for (vector<string>::iterator ii = pis.begin(); ii != pis.end(); ++ii)
400 {
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700401 _LOG_TRACE (">> D " << *ii);
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700402 m_ccnxHandle->publishData (*ii, ss.str(), m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700403
404 {
405 recursive_mutex::scoped_lock lock (m_stateMutex);
406 // _LOG_DEBUG (*ii << " == " << m_outstandingInterest << " = " << (*ii == m_outstandingInterest));
407 satisfiedOwnInterest = satisfiedOwnInterest || (*ii == m_outstandingInterest) || (*ii == (m_outstandingInterest + "/state"));
408 }
409 }
410
411 if (satisfiedOwnInterest)
412 {
413 _LOG_DEBUG ("Have satisfied our own interest. Scheduling interest reexpression");
414 // we need to reexpress interest only if we satisfied our own interest
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700415 m_scheduler.cancel (REEXPRESSING_INTEREST);
416 m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700417 bind (&SyncLogic::sendSyncInterest, this),
418 REEXPRESSING_INTEREST);
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700419 }
420 }
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800421}
422
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800423void
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700424SyncLogic::insertToDiffLog (DiffStatePtr diffLog)
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700425{
426 //cout << "Process Pending Interests" <<endl;
427 diffLog->setDigest (m_state.getDigest());
428 if (m_log.size () > 0)
429 {
430 m_log.get<sequenced> ().front ()->setNext (diffLog);
431 }
432 m_log.erase (m_state.getDigest()); // remove diff state with the same digest. next pointers are still valid
433 /// @todo Optimization
Alexander Afanasyev7df73332012-03-15 12:31:49 -0700434 m_log.get<sequenced> ().push_front (diffLog);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700435 // _LOG_DEBUG (*diffLog->getDigest () << " " << m_log.size ());
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700436}
437
438void
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700439SyncLogic::addLocalNames (const string &prefix, uint32_t session, uint32_t seq)
440{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700441 DiffStatePtr diff;
442 {
443 //cout << "Add local names" <<endl;
444 recursive_mutex::scoped_lock lock (m_stateMutex);
445 NameInfoConstPtr info = StdNameInfo::FindOrCreate(prefix);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700446
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700447 SeqNo seqN (session, seq);
448 m_state.update(info, seqN);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700449
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700450 _LOG_DEBUG ("addLocalNames (): new state " << *m_state.getDigest ());
451
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700452 diff = make_shared<DiffState>();
453 diff->update(info, seqN);
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700454 insertToDiffLog (diff);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700455 }
456
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700457 // _LOG_DEBUG ("PIT size: " << m_syncInterestTable.size ());
458 satisfyPendingSyncInterests (diff);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700459}
460
461void
Alexander Afanasyevd91497c2012-03-12 15:39:30 -0700462SyncLogic::remove(const string &prefix)
463{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700464 DiffStatePtr diff;
465 {
466 recursive_mutex::scoped_lock lock (m_stateMutex);
467 NameInfoConstPtr info = StdNameInfo::FindOrCreate(prefix);
468 m_state.remove(info);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700469
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700470 diff = make_shared<DiffState>();
471 diff->remove(info);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700472
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700473 insertToDiffLog (diff);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700474 }
475
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700476 satisfyPendingSyncInterests (diff);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700477}
478
479void
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800480SyncLogic::sendSyncInterest ()
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800481{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800482 ostringstream os;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800483
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700484 {
485 // cout << "Sending Sync Interest" << endl;
486 recursive_mutex::scoped_lock lock (m_stateMutex);
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700487
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700488 os << m_syncPrefix << "/" << *m_state.getDigest();
489
490 _LOG_TRACE (">> I " << os.str ());
491
492 m_outstandingInterest = os.str ();
493 }
494
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800495 m_ccnxHandle->sendInterest (os.str (),
496 bind (&SyncLogic::processSyncData, this, _1, _2));
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700497
498 m_scheduler.cancel (REEXPRESSING_INTEREST);
Alexander Afanasyev983b0e92012-04-26 12:44:18 -0700499 m_scheduler.schedule (TIME_SECONDS_WITH_JITTER (m_syncInterestReexpress),
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700500 bind (&SyncLogic::sendSyncInterest, this),
501 REEXPRESSING_INTEREST);
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800502}
503
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800504}