blob: a4ddfc656af8c9f1d50e7a5c376db04bf68539da [file] [log] [blame]
Zhenkai Zhu8224bb62013-01-06 15:58:02 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013 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 *
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -080018 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Zhenkai Zhu8224bb62013-01-06 15:58:02 -080020 */
21
22#include "sync-core.h"
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080023#include "sync-state-helper.h"
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080024#include "logging.h"
Alexander Afanasyevabe952a2013-01-17 17:06:32 -080025#include "random-interval-generator.h"
26
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080027#include <boost/lexical_cast.hpp>
28
29INIT_LOGGER ("Sync.Core");
30
Zhenkai Zhue851b952013-01-13 22:29:57 -080031const string SyncCore::RECOVER = "RECOVER";
Zhenkai Zhue573ae82013-01-15 13:15:52 -080032const double SyncCore::WAIT = 0.05;
Zhenkai Zhue851b952013-01-13 22:29:57 -080033const double SyncCore::RANDOM_PERCENT = 0.5;
34
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080035using namespace boost;
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080036using namespace Ccnx;
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080037
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080038SyncCore::SyncCore(SyncLogPtr syncLog, const Name &userName, const Name &localPrefix, const Name &syncPrefix,
Alexander Afanasyevd94a8c62013-01-24 13:53:40 -080039 const StateMsgCallback &callback, CcnxWrapperPtr ccnx)
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080040 : m_ccnx (ccnx)
41 , m_log(syncLog)
Alexander Afanasyevd94a8c62013-01-24 13:53:40 -080042 , m_scheduler(new Scheduler ())
43 , m_stateMsgCallback(callback)
44 , m_syncPrefix(syncPrefix)
45 , m_recoverWaitGenerator(new RandomIntervalGenerator(WAIT, RANDOM_PERCENT, RandomIntervalGenerator::UP))
Zhenkai Zhu8224bb62013-01-06 15:58:02 -080046{
Zhenkai Zhub330aed2013-01-17 13:29:37 -080047 m_rootHash = m_log->RememberStateInStateLog();
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080048
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080049 m_ccnx->setInterestFilter(m_syncPrefix, boost::bind(&SyncCore::handleInterest, this, _1));
Alexander Afanasyevdac84922013-01-20 23:32:17 -080050 // m_log->initYP(m_yp);
Alexander Afanasyev7326a252013-01-20 23:43:25 -080051 m_log->UpdateLocalLocator (localPrefix);
52
Zhenkai Zhue573ae82013-01-15 13:15:52 -080053 m_scheduler->start();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080054 sendSyncInterest();
55}
56
57SyncCore::~SyncCore()
58{
Alexander Afanasyevd94a8c62013-01-24 13:53:40 -080059 m_scheduler->shutdown ();
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -080060 // need to "deregister" closures
Zhenkai Zhue851b952013-01-13 22:29:57 -080061}
62
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080063void
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080064SyncCore::updateLocalPrefix (const Name &localPrefix)
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080065{
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080066 m_log->UpdateLocalLocator (localPrefix);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080067}
68
69void
Zhenkai Zhue851b952013-01-13 22:29:57 -080070SyncCore::updateLocalState(sqlite3_int64 seqno)
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080071{
Alexander Afanasyev7326a252013-01-20 23:43:25 -080072 m_log->UpdateLocalSeqNo (seqno);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080073 localStateChanged();
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080074}
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080075
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080076void
77SyncCore::localStateChanged()
78{
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080079 HashPtr oldHash = m_rootHash;
Zhenkai Zhub330aed2013-01-17 13:29:37 -080080 m_rootHash = m_log->RememberStateInStateLog();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080081
Zhenkai Zhub330aed2013-01-17 13:29:37 -080082 SyncStateMsgPtr msg = m_log->FindStateDifferences(*oldHash, *m_rootHash);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080083
84 // reply sync Interest with oldHash as last component
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080085 Name syncName = Name (m_syncPrefix)(oldHash->GetHash(), oldHash->GetHashBytes());
Alexander Afanasyev08aa70a2013-01-22 22:16:25 -080086 BytesPtr syncData = serializeMsg (*msg);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080087
88 m_ccnx->publishData(syncName, *syncData, FRESHNESS);
89 _LOG_TRACE (m_log->GetLocalName () << " publishes: " << *oldHash);
90 _LOG_TRACE (msg);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080091
92 // no hurry in sending out new Sync Interest; if others send the new Sync Interest first, no problem, we know the new root hash already;
93 // this is trying to avoid the situation that the order of SyncData and new Sync Interest gets reversed at receivers
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080094 Scheduler::scheduleOneTimeTask (m_scheduler, 0.05,
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080095 bind(&SyncCore::sendSyncInterest, this),
96 lexical_cast<string> (*m_rootHash));
97
Zhenkai Zhud276f1e2013-01-24 17:37:31 -080098 //sendSyncInterest();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080099}
100
101void
Zhenkai Zhue851b952013-01-13 22:29:57 -0800102SyncCore::handleInterest(const Name &name)
103{
104 int size = name.size();
105 int prefixSize = m_syncPrefix.size();
106 if (size == prefixSize + 1)
107 {
108 // this is normal sync interest
109 handleSyncInterest(name);
110 }
111 else if (size == prefixSize + 2 && name.getCompAsString(m_syncPrefix.size()) == RECOVER)
112 {
113 // this is recovery interest
114 handleRecoverInterest(name);
115 }
116}
117
118void
119SyncCore::handleRecoverInterest(const Name &name)
120{
121 Bytes hashBytes = name.getComp(name.size() - 1);
122 // this is the hash unkonwn to the sender of the interest
123 Hash hash(head(hashBytes), hashBytes.size());
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800124 if (m_log->LookupSyncLog(hash) > 0)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800125 {
126 // we know the hash, should reply everything
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800127 SyncStateMsgPtr msg = m_log->FindStateDifferences(*(Hash::Origin), *m_rootHash);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800128
Alexander Afanasyev08aa70a2013-01-22 22:16:25 -0800129 BytesPtr syncData = serializeMsg (*msg);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800130 m_ccnx->publishData(name, *syncData, FRESHNESS);
131 _LOG_TRACE (m_log->GetLocalName () << " publishes " << hash);
132 _LOG_TRACE (msg);
Zhenkai Zhue573ae82013-01-15 13:15:52 -0800133 }
134 else
135 {
Zhenkai Zhue851b952013-01-13 22:29:57 -0800136 // we don't recognize this hash, can not help
137 }
138}
139
140void
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800141SyncCore::handleSyncInterest(const Name &name)
142{
Zhenkai Zhue851b952013-01-13 22:29:57 -0800143 Bytes hashBytes = name.getComp(name.size() - 1);
144 HashPtr hash(new Hash(head(hashBytes), hashBytes.size()));
145 if (*hash == *m_rootHash)
146 {
147 // we have the same hash; nothing needs to be done
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800148 _LOG_TRACE ("same as root hash: " << *hash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800149 return;
150 }
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800151 else if (m_log->LookupSyncLog(*hash) > 0)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800152 {
153 // we know something more
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800154 _LOG_TRACE ("found hash in sync log");
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800155 SyncStateMsgPtr msg = m_log->FindStateDifferences(*hash, *m_rootHash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800156
Alexander Afanasyev08aa70a2013-01-22 22:16:25 -0800157 BytesPtr syncData = serializeMsg (*msg);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800158 m_ccnx->publishData(name, *syncData, FRESHNESS);
159 _LOG_TRACE (m_log->GetLocalName () << " publishes: " << *hash);
160 _LOG_TRACE (msg);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800161 }
162 else
163 {
164 // we don't recognize the hash, send recover Interest if still don't know the hash after a randomized wait period
Zhenkai Zhue573ae82013-01-15 13:15:52 -0800165 double wait = m_recoverWaitGenerator->nextInterval();
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800166 _LOG_TRACE (m_log->GetLocalName () << ", rootHash: " << *m_rootHash << ", hash: " << *hash);
167 _LOG_TRACE ("recover task scheduled after wait: " << wait);
Zhenkai Zhue573ae82013-01-15 13:15:52 -0800168
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800169 Scheduler::scheduleOneTimeTask (m_scheduler,
170 wait, boost::bind(&SyncCore::recover, this, hash),
171 "r-"+lexical_cast<string> (*hash));
Zhenkai Zhue851b952013-01-13 22:29:57 -0800172 }
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800173}
174
175Closure::TimeoutCallbackReturnValue
176SyncCore::handleSyncInterestTimeout(const Name &name)
177{
178 // sendInterestInterest with the current root hash;
179 sendSyncInterest();
Zhenkai Zhue851b952013-01-13 22:29:57 -0800180 return Closure::RESULT_OK;
181}
182
183Closure::TimeoutCallbackReturnValue
184SyncCore::handleRecoverInterestTimeout(const Name &name)
185{
186 // We do not re-express recovery interest for now
187 // if difference is not resolved, the sync interest will trigger
188 // recovery anyway; so it's not so important to have recovery interest
189 // re-expressed
190 return Closure::RESULT_OK;
191}
192
193void
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800194SyncCore::handleRecoverData(const Name &name, PcoPtr content)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800195{
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800196 //cout << "handle recover data" << end;
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800197 handleStateData(*content->contentPtr ());
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800198 sendSyncInterest();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800199}
200
201void
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800202SyncCore::handleSyncData(const Name &name, PcoPtr content)
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800203{
Zhenkai Zhue851b952013-01-13 22:29:57 -0800204 // suppress recover in interest - data out of order case
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800205 handleStateData(*content->contentPtr ());
Zhenkai Zhue851b952013-01-13 22:29:57 -0800206
207 // resume outstanding sync interest
208 sendSyncInterest();
209}
210
211void
212SyncCore::handleStateData(const Bytes &content)
213{
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800214 SyncStateMsgPtr msg(new SyncStateMsg);
215 bool success = msg->ParseFromArray(head(content), content.size());
216 if(!success)
217 {
218 // ignore misformed SyncData
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800219 _LOG_ERROR ("Misformed SyncData");
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800220 return;
221 }
222
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800223 _LOG_TRACE (m_log->GetLocalName () << " receives Msg ");
224 _LOG_TRACE (msg);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800225 int size = msg->state_size();
226 int index = 0;
227 while (index < size)
228 {
229 SyncState state = msg->state(index);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800230 string devStr = state.name();
231 Name deviceName((const unsigned char *)devStr.c_str(), devStr.size());
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800232 // cout << "Got Name: " << deviceName;
Zhenkai Zhue851b952013-01-13 22:29:57 -0800233 if (state.type() == SyncState::UPDATE)
234 {
235 sqlite3_int64 seqno = state.seq();
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800236 // cout << ", Got seq: " << seqno << endl;
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800237 m_log->UpdateDeviceSeqNo(deviceName, seqno);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800238 if (state.has_locator())
239 {
240 string locStr = state.locator();
241 Name locatorName((const unsigned char *)locStr.c_str(), locStr.size());
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800242 // cout << ", Got loc: " << locatorName << endl;
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800243 m_log->UpdateLocator(deviceName, locatorName);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800244
245 _LOG_TRACE ("self: " << m_log->GetLocalName () << ", device: " << deviceName << " < == > " << locatorName);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800246 }
247 }
248 else
249 {
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800250 _LOG_ERROR ("Receive SYNC DELETE, but we don't support it yet");
Zhenkai Zhue851b952013-01-13 22:29:57 -0800251 deregister(deviceName);
252 }
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800253 index++;
254 }
255
Zhenkai Zhue851b952013-01-13 22:29:57 -0800256 // find the actuall difference and invoke callback on the actual difference
257 HashPtr oldHash = m_rootHash;
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800258 m_rootHash = m_log->RememberStateInStateLog();
Zhenkai Zhu085aae72013-01-17 21:09:01 -0800259 // get diff with both new SeqNo and old SeqNo
260 SyncStateMsgPtr diff = m_log->FindStateDifferences(*oldHash, *m_rootHash, true);
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800261
Zhenkai Zhu9501b8b2013-01-17 12:37:00 -0800262 if (diff->state_size() > 0)
263 {
264 m_stateMsgCallback(diff);
265 }
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800266}
267
268void
269SyncCore::sendSyncInterest()
270{
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800271 Name syncInterest = Name (m_syncPrefix)(m_rootHash->GetHash(), m_rootHash->GetHashBytes());
272
273 m_ccnx->sendInterest(syncInterest,
274 Closure (boost::bind(&SyncCore::handleSyncData, this, _1, _2),
275 boost::bind(&SyncCore::handleSyncInterestTimeout, this, _1)));
276
277 _LOG_TRACE (m_log->GetLocalName () << " send SYNC interest: " << *m_rootHash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800278}
279
280void
281SyncCore::recover(const HashPtr &hash)
282{
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800283 if (!(*hash == *m_rootHash) && m_log->LookupSyncLog(*hash) <= 0)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800284 {
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800285 _LOG_TRACE (m_log->GetLocalName () << ", Recover for: " << *hash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800286 // unfortunately we still don't recognize this hash
287 Bytes bytes;
288 readRaw(bytes, (const unsigned char *)hash->GetHash(), hash->GetHashBytes());
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800289
Zhenkai Zhue851b952013-01-13 22:29:57 -0800290 // append the unknown hash
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800291 Name recoverInterest = Name (m_syncPrefix)(RECOVER)(bytes);
292
293 m_ccnx->sendInterest(recoverInterest,
294 Closure (boost::bind(&SyncCore::handleRecoverData, this, _1, _2),
295 boost::bind(&SyncCore::handleRecoverInterestTimeout, this, _1)));
296
297 _LOG_TRACE (m_log->GetLocalName () << " send RECOVER Interest: " << *hash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800298 }
299 else
300 {
301 // we already learned the hash; cheers!
302 }
303}
304
305void
306SyncCore::deregister(const Name &name)
307{
308 // Do nothing for now
309 // TODO: handle deregistering
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800310}
311
Zhenkai Zhu9501b8b2013-01-17 12:37:00 -0800312sqlite3_int64
313SyncCore::seq(const Name &name)
314{
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800315 return m_log->SeqNo(name);
Zhenkai Zhu9501b8b2013-01-17 12:37:00 -0800316}