blob: 403138a5f638d4c01e999ee59ebf2469601401ad [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
Chaoyi Bian11f294f2012-03-08 14:28:06 -080023#include "sync-logic.h"
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080024#include "sync-diff-leaf.h"
25#include "sync-full-leaf.h"
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070026#include "sync-log.h"
27
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -080028#include <boost/make_shared.hpp>
29#include <boost/foreach.hpp>
Alexander Afanasyev387ac952012-03-11 23:49:27 -070030#include <boost/lexical_cast.hpp>
31#include <boost/date_time/posix_time/posix_time.hpp>
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080032#include <vector>
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080033
34using namespace std;
35using namespace boost;
36
Alexander Afanasyevca6f3292012-04-09 10:03:30 -070037#ifndef _STANDALONE
38INIT_LOGGER ("SyncLogic");
39#endif
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070040
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080041namespace Sync
42{
43
Alexander Afanasyev750d1872012-03-12 15:33:56 -070044SyncLogic::SyncLogic (const std::string &syncPrefix,
45 LogicUpdateCallback onUpdate,
Zhenkai Zhuce66e212012-03-12 22:27:19 -070046 LogicRemoveCallback onRemove)
Alexander Afanasyevc1030192012-03-08 22:21:28 -080047 : m_syncPrefix (syncPrefix)
Alexander Afanasyev750d1872012-03-12 15:33:56 -070048 , m_onUpdate (onUpdate)
49 , m_onRemove (onRemove)
Alexander Afanasyev3f93c2b2012-03-13 00:02:31 -070050 , m_ccnxHandle(new CcnxWrapper())
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -070051#ifndef NS3_MODULE
Alexander Afanasyev45fba082012-03-12 18:05:24 -070052 , m_randomGenerator (static_cast<unsigned int> (std::time (0)))
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070053 , m_rangeUniformRandom (m_randomGenerator, uniform_int<> (20,80))
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -070054#else
55 , m_rangeUniformRandom (20,80)
56#endif
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080057{
Alexander Afanasyevca6f3292012-04-09 10:03:30 -070058#ifdef _STANDALONE
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070059#ifdef _DEBUG
60#ifdef HAVE_LOG4CXX
61 // _LOG_FUNCTION (syncPrefix);
62 static int id = 0;
63 staticModuleLogger = log4cxx::Logger::getLogger ("SyncLogic." + lexical_cast<string> (id));
64 id ++;
65#endif
66#endif
Alexander Afanasyevca6f3292012-04-09 10:03:30 -070067#endif
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -070068
69 _LOG_DEBUG ("syncPrefix");
70
71#ifndef NS3_MODULE
72 // In NS3 module these functions are moved to StartApplication method
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070073
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070074 m_ccnxHandle->setInterestFilter (m_syncPrefix,
Alexander Afanasyev387ac952012-03-11 23:49:27 -070075 bind (&SyncLogic::respondSyncInterest, this, _1));
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070076
Alexander Afanasyev181d7e52012-04-09 13:54:11 -070077 m_scheduler.schedule (TIME_SECONDS (0),
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070078 bind (&SyncLogic::sendSyncInterest, this),
79 REEXPRESSING_INTEREST);
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -070080#endif
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080081}
82
Alexander Afanasyevc1030192012-03-08 22:21:28 -080083SyncLogic::~SyncLogic ()
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080084{
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070085 // _LOG_FUNCTION (this);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070086 // cout << "SyncLogic::~SyncLogic ()" << endl;
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080087
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070088 m_ccnxHandle.reset ();
89}
Alexander Afanasyev387ac952012-03-11 23:49:27 -070090
Alexander Afanasyevb550d6a2012-04-09 15:03:16 -070091#ifdef NS3_MODULE
92void
93SyncLogic::StartApplication ()
94{
95 m_ccnxHandle->SetNode (GetNode ());
96 m_ccnxHandle->StartApplication ();
97
98 m_ccnxHandle->setInterestFilter (m_syncPrefix,
99 bind (&SyncLogic::respondSyncInterest, this, _1));
100
101 m_scheduler.schedule (TIME_SECONDS (0),
102 bind (&SyncLogic::sendSyncInterest, this),
103 REEXPRESSING_INTEREST);
104}
105
106void
107SyncLogic::StopApplication ()
108{
109 m_ccnxHandle->StopApplication ();
110}
111#endif
112
113
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700114void
115SyncLogic::respondSyncInterest (const string &interest)
116{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700117 _LOG_TRACE ("<< I " << interest);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700118 //cout << "Respond Sync Interest" << endl;
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700119 string hash = interest.substr(interest.find_last_of("/") + 1);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700120 // cout << "Received Sync Interest: " << hash << endl;
121
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700122 DigestPtr digest = make_shared<Digest> ();
123 try
124 {
125 istringstream is (hash);
126 is >> *digest;
127 }
128 catch (Error::DigestCalculationError &e)
129 {
130 // log error. ignoring it for now, later we should log it
131 return;
132 }
133
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700134 processSyncInterest (digest, interest, false);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700135}
136
137void
138SyncLogic::processSyncInterest (DigestConstPtr digest, const std::string &interestName, bool timedProcessing/*=false*/)
139{
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700140 recursive_mutex::scoped_lock lock (m_stateMutex);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700141
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700142 // Special case when state is not empty and we have received request with zero-root digest
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700143 if (digest->isZero () && !m_state.getDigest()->isZero ())
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700144 {
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700145 _LOG_TRACE (">> D " << interestName << "/state" << " (zero)");
146
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700147 m_syncInterestTable.remove (interestName + "/state");
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700148 m_ccnxHandle->publishData (interestName + "/state",
149 lexical_cast<string> (m_state),
150 m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700151 if (m_outstandingInterest == interestName)
152 {
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700153 m_scheduler.schedule (TIME_SECONDS (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700154 bind (&SyncLogic::sendSyncInterest, this),
155 REEXPRESSING_INTEREST);
156 }
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700157 return;
158 }
Alexander Afanasyev763855a2012-03-13 14:17:37 -0700159
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700160 if (*m_state.getDigest() == *digest)
161 {
162 // cout << interestName << "\n";
163 if (digest->isZero ())
164 {
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700165 _LOG_TRACE ("processSyncInterest (): Digest is zero, adding /state to PIT");
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700166 m_syncInterestTable.insert (interestName + "/state");
167 }
168 else
169 {
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700170 _LOG_TRACE ("processSyncInterest (): Same state. Adding to PIT");
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700171 m_syncInterestTable.insert (interestName);
172 }
173 return;
174 }
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700175
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700176 DiffStateContainer::iterator stateInDiffLog = m_log.find (digest);
177
178 if (stateInDiffLog != m_log.end ())
179 {
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700180 DiffStateConstPtr stateDiff = (*stateInDiffLog)->diff ();
181 // string state = lexical_cast<string> (*stateDiff);
182 // erase_all (state, "\n");
183 // _LOG_TRACE (">> D " << interestName << ", state: " << state);
184 // _LOG_DEBUG ("Log size: " << m_log.size ());
185
186 // BOOST_FOREACH (DiffStateConstPtr ds, m_log.get<sequenced> ())
187 // {
188 // string state = lexical_cast<string> (*ds);
189 // erase_all (state, "\n");
190 // _LOG_DEBUG (" " << state << ", " << *ds->getDigest ());
191 // }
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700192
193 m_syncInterestTable.remove (interestName);
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -0700194 _LOG_DEBUG (">> D" << interestName);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700195 m_ccnxHandle->publishData (interestName,
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700196 lexical_cast<string> (*stateDiff),
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700197 m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700198 if (m_outstandingInterest == interestName)
199 {
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700200 m_scheduler.schedule (TIME_SECONDS (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700201 bind (&SyncLogic::sendSyncInterest, this),
202 REEXPRESSING_INTEREST);
203 }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700204 return;
205 }
206
207 if (!timedProcessing)
208 {
Alexander Afanasyev73f7f9a2012-04-09 15:45:47 -0700209 uint32_t waitDelay =
210#ifndef NS3_MODULE
211 m_rangeUniformRandom ()
212#else
213 m_rangeUniformRandom.GetValue ()
214#endif
215 ;
216
217 _LOG_DEBUG ("Digest is not in the log. Schedule processing after small delay: " << waitDelay << "ms");
218 m_scheduler.schedule (TIME_MILLISECONDS (waitDelay) /*from 20 to 100ms*/,
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700219 bind (&SyncLogic::processSyncInterest, this, digest, interestName, true),
220 DELAYED_INTEREST_PROCESSING);
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700221
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700222 }
223 else
224 {
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700225 _LOG_TRACE (">> D " << interestName << "/state" << " (timed processing)");
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700226
227 m_syncInterestTable.remove (interestName + "/state");
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700228 m_ccnxHandle->publishData (interestName + "/state",
229 lexical_cast<string> (m_state),
230 m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700231
232 if (m_outstandingInterest == interestName)
233 {
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700234 m_scheduler.schedule (TIME_SECONDS (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700235 bind (&SyncLogic::sendSyncInterest, this),
236 REEXPRESSING_INTEREST);
237 }
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700238 }
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800239}
240
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800241void
242SyncLogic::processSyncData (const string &name, const string &dataBuffer)
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800243{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700244 _LOG_TRACE ("<< D " << name);
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700245 DiffStatePtr diffLog = make_shared<DiffState> ();
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -0700246
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700247 try
248 {
249 recursive_mutex::scoped_lock lock (m_stateMutex);
Alexander Afanasyev02f1bff2012-04-09 15:44:42 -0700250
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700251 string last = name.substr(name.find_last_of("/") + 1);
252 istringstream ss (dataBuffer);
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700253
Alexander Afanasyev02f1bff2012-04-09 15:44:42 -0700254 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 -0700255 if (last == "state")
256 {
Alexander Afanasyev02f1bff2012-04-09 15:44:42 -0700257 m_syncInterestTable.remove (name.substr(0, name.find_last_of("/")));
258
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700259 FullState full;
260 ss >> full;
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700261 BOOST_FOREACH (LeafConstPtr leaf, full.getLeaves()) // order doesn't matter
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700262 {
263 NameInfoConstPtr info = leaf->getInfo ();
264 SeqNo seq = leaf->getSeq ();
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700265
266 bool inserted = false;
267 bool updated = false;
268 SeqNo oldSeq;
269 tie (inserted, updated, oldSeq) = m_state.update (info, seq);
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800270
Alexander Afanasyevd4adce52012-03-13 13:59:39 -0700271 if (inserted || updated)
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700272 {
273 diffLog->update (info, seq);
Chaoyi Bian98135192012-03-27 18:34:11 -0700274 m_onUpdate (info->toString (), seq, oldSeq);
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700275 }
276 }
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700277 }
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700278 else
279 {
280 DiffState diff;
281 ss >> diff;
282 BOOST_FOREACH (LeafConstPtr leaf, diff.getLeaves().get<ordered>())
283 {
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700284 DiffLeafConstPtr diffLeaf = dynamic_pointer_cast<const DiffLeaf> (leaf);
285 BOOST_ASSERT (diffLeaf != 0);
286
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700287 NameInfoConstPtr info = diffLeaf->getInfo();
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700288 if (diffLeaf->getOperation() == UPDATE)
289 {
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700290 SeqNo seq = diffLeaf->getSeq();
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800291
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700292 bool inserted = false;
293 bool updated = false;
294 SeqNo oldSeq;
295 tie (inserted, updated, oldSeq) = m_state.update (info, seq);
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800296
Alexander Afanasyevd4adce52012-03-13 13:59:39 -0700297 if (inserted || updated)
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700298 {
299 diffLog->update (info, seq);
Chaoyi Bian98135192012-03-27 18:34:11 -0700300 m_onUpdate (info->toString (), seq, oldSeq);
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700301 }
302 }
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700303 else if (diffLeaf->getOperation() == REMOVE)
304 {
305 if (m_state.remove (info))
306 {
307 diffLog->remove (info);
308 m_onRemove (info->toString ());
309 }
310 }
311 else
312 {
313 BOOST_ASSERT (false); // just in case
314 }
315 }
316 }
317
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700318 insertToDiffLog (diffLog);
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700319 }
320 catch (Error::SyncXmlDecodingFailure &e)
321 {
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700322 diffLog.reset ();
323 // don't do anything
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700324 }
325
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700326 // if state has changed, then it is safe to express a new interest
Alexander Afanasyev750d1872012-03-12 15:33:56 -0700327 if (diffLog->getLeaves ().size () > 0)
328 {
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700329 m_scheduler.schedule (TIME_SECONDS (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700330 bind (&SyncLogic::sendSyncInterest, this),
331 REEXPRESSING_INTEREST);
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700332 }
333 else
334 {
335 // should not reexpress the same interest. Need at least wait for data lifetime
336 // Otherwise we will get immediate reply from the local daemon and there will be 100% utilization
337 m_scheduler.cancel (REEXPRESSING_INTEREST);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700338 // m_scheduler.schedule (posix_time::seconds (0),
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700339 m_scheduler.schedule (TIME_SECONDS (m_syncResponseFreshness) + TIME_MILLISECONDS (1),
Alexander Afanasyevd4cca472012-03-13 14:25:46 -0700340 bind (&SyncLogic::sendSyncInterest, this),
341 REEXPRESSING_INTEREST);
Alexander Afanasyev04fd8a82012-03-12 15:40:48 -0700342 }
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800343}
344
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800345void
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700346SyncLogic::satisfyPendingSyncInterests (DiffStatePtr diffLog)
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800347{
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800348 vector<string> pis = m_syncInterestTable.fetchAll ();
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700349 if (pis.size () > 0)
350 {
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700351 stringstream ss;
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700352 ss << *diffLog;
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700353 bool satisfiedOwnInterest = false;
354
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700355 for (vector<string>::iterator ii = pis.begin(); ii != pis.end(); ++ii)
356 {
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700357 _LOG_TRACE (">> D " << *ii);
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700358 m_ccnxHandle->publishData (*ii, ss.str(), m_syncResponseFreshness);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700359
360 {
361 recursive_mutex::scoped_lock lock (m_stateMutex);
362 // _LOG_DEBUG (*ii << " == " << m_outstandingInterest << " = " << (*ii == m_outstandingInterest));
363 satisfiedOwnInterest = satisfiedOwnInterest || (*ii == m_outstandingInterest) || (*ii == (m_outstandingInterest + "/state"));
364 }
365 }
366
367 if (satisfiedOwnInterest)
368 {
369 _LOG_DEBUG ("Have satisfied our own interest. Scheduling interest reexpression");
370 // we need to reexpress interest only if we satisfied our own interest
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700371 m_scheduler.schedule (TIME_SECONDS (0),
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700372 bind (&SyncLogic::sendSyncInterest, this),
373 REEXPRESSING_INTEREST);
Alexander Afanasyevf07ab352012-03-13 12:57:46 -0700374 }
375 }
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800376}
377
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800378void
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700379SyncLogic::insertToDiffLog (DiffStatePtr diffLog)
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700380{
381 //cout << "Process Pending Interests" <<endl;
382 diffLog->setDigest (m_state.getDigest());
383 if (m_log.size () > 0)
384 {
385 m_log.get<sequenced> ().front ()->setNext (diffLog);
386 }
387 m_log.erase (m_state.getDigest()); // remove diff state with the same digest. next pointers are still valid
388 /// @todo Optimization
Alexander Afanasyev7df73332012-03-15 12:31:49 -0700389 m_log.get<sequenced> ().push_front (diffLog);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700390 // _LOG_DEBUG (*diffLog->getDigest () << " " << m_log.size ());
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700391}
392
393void
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700394SyncLogic::addLocalNames (const string &prefix, uint32_t session, uint32_t seq)
395{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700396 DiffStatePtr diff;
397 {
398 //cout << "Add local names" <<endl;
399 recursive_mutex::scoped_lock lock (m_stateMutex);
400 NameInfoConstPtr info = StdNameInfo::FindOrCreate(prefix);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700401
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700402 SeqNo seqN (session, seq);
403 m_state.update(info, seqN);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700404
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700405 _LOG_DEBUG ("addLocalNames (): new state " << *m_state.getDigest ());
406
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700407 diff = make_shared<DiffState>();
408 diff->update(info, seqN);
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700409 insertToDiffLog (diff);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700410 }
411
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700412 // _LOG_DEBUG ("PIT size: " << m_syncInterestTable.size ());
413 satisfyPendingSyncInterests (diff);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700414}
415
416void
Alexander Afanasyevd91497c2012-03-12 15:39:30 -0700417SyncLogic::remove(const string &prefix)
418{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700419 DiffStatePtr diff;
420 {
421 recursive_mutex::scoped_lock lock (m_stateMutex);
422 NameInfoConstPtr info = StdNameInfo::FindOrCreate(prefix);
423 m_state.remove(info);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700424
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700425 diff = make_shared<DiffState>();
426 diff->remove(info);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700427
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700428 insertToDiffLog (diff);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700429 }
430
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700431 satisfyPendingSyncInterests (diff);
Zhenkai Zhu0efa37b2012-03-12 13:54:12 -0700432}
433
434void
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800435SyncLogic::sendSyncInterest ()
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800436{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800437 ostringstream os;
Chaoyi Bian89ee2dc2012-03-09 14:06:01 -0800438
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700439 {
440 // cout << "Sending Sync Interest" << endl;
441 recursive_mutex::scoped_lock lock (m_stateMutex);
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700442
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700443 os << m_syncPrefix << "/" << *m_state.getDigest();
444
445 _LOG_TRACE (">> I " << os.str ());
446
447 m_outstandingInterest = os.str ();
448 }
449
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800450 m_ccnxHandle->sendInterest (os.str (),
451 bind (&SyncLogic::processSyncData, this, _1, _2));
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700452
453 m_scheduler.cancel (REEXPRESSING_INTEREST);
Alexander Afanasyev181d7e52012-04-09 13:54:11 -0700454 m_scheduler.schedule (TIME_SECONDS (4),
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -0700455 bind (&SyncLogic::sendSyncInterest, this),
456 REEXPRESSING_INTEREST);
Chaoyi Bian44fff0c2012-03-07 21:07:22 -0800457}
458
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800459}