blob: c0dc45b2f6ab779e8b0ae1c8e81acc47a79fc666 [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,
39 const StateMsgCallback &callback, CcnxWrapperPtr ccnx, SchedulerPtr scheduler)
40 : m_ccnx (ccnx)
41 , m_log(syncLog)
42 , m_scheduler(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 Afanasyevd6c2a902013-01-19 21:24:30 -080059 // need to "deregister" closures
Zhenkai Zhue851b952013-01-13 22:29:57 -080060}
61
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080062void
Zhenkai Zhue851b952013-01-13 22:29:57 -080063SyncCore::updateLocalState(sqlite3_int64 seqno)
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080064{
Alexander Afanasyev7326a252013-01-20 23:43:25 -080065 m_log->UpdateLocalSeqNo (seqno);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080066
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080067 HashPtr oldHash = m_rootHash;
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080068 m_rootHash = m_log->RememberStateInStateLog ();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080069
Zhenkai Zhub330aed2013-01-17 13:29:37 -080070 SyncStateMsgPtr msg = m_log->FindStateDifferences(*oldHash, *m_rootHash);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080071
72 // reply sync Interest with oldHash as last component
Alexander Afanasyev49a30d02013-01-21 21:38:48 -080073 Name syncName = Name (m_syncPrefix)(oldHash->GetHash(), oldHash->GetHashBytes());
74 BytesPtr syncData = serializeMsg (msg);
75
76 m_ccnx->publishData(syncName, *syncData, FRESHNESS);
77 _LOG_TRACE (m_log->GetLocalName () << " publishes: " << *oldHash);
78 _LOG_TRACE (msg);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080079
80 // 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;
81 // this is trying to avoid the situation that the order of SyncData and new Sync Interest gets reversed at receivers
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080082 Scheduler::scheduleOneTimeTask (m_scheduler, 0.1,
83 bind(&SyncCore::sendSyncInterest, this),
84 lexical_cast<string> (*m_rootHash));
85
Zhenkai Zhue573ae82013-01-15 13:15:52 -080086 sendSyncInterest();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -080087}
88
89void
Zhenkai Zhue851b952013-01-13 22:29:57 -080090SyncCore::handleInterest(const Name &name)
91{
92 int size = name.size();
93 int prefixSize = m_syncPrefix.size();
94 if (size == prefixSize + 1)
95 {
96 // this is normal sync interest
97 handleSyncInterest(name);
98 }
99 else if (size == prefixSize + 2 && name.getCompAsString(m_syncPrefix.size()) == RECOVER)
100 {
101 // this is recovery interest
102 handleRecoverInterest(name);
103 }
104}
105
106void
107SyncCore::handleRecoverInterest(const Name &name)
108{
109 Bytes hashBytes = name.getComp(name.size() - 1);
110 // this is the hash unkonwn to the sender of the interest
111 Hash hash(head(hashBytes), hashBytes.size());
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800112 if (m_log->LookupSyncLog(hash) > 0)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800113 {
114 // we know the hash, should reply everything
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800115 SyncStateMsgPtr msg = m_log->FindStateDifferences(*(Hash::Origin), *m_rootHash);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800116
117 BytesPtr syncData = serializeMsg (msg);
118 m_ccnx->publishData(name, *syncData, FRESHNESS);
119 _LOG_TRACE (m_log->GetLocalName () << " publishes " << hash);
120 _LOG_TRACE (msg);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800121 }
122 else
123 {
124 // we don't recognize this hash, can not help
125 }
126}
127
128void
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800129SyncCore::handleSyncInterest(const Name &name)
130{
Zhenkai Zhue851b952013-01-13 22:29:57 -0800131 Bytes hashBytes = name.getComp(name.size() - 1);
132 HashPtr hash(new Hash(head(hashBytes), hashBytes.size()));
133 if (*hash == *m_rootHash)
134 {
135 // we have the same hash; nothing needs to be done
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800136 _LOG_TRACE ("same as root hash: " << *hash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800137 return;
138 }
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800139 else if (m_log->LookupSyncLog(*hash) > 0)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800140 {
141 // we know something more
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800142 _LOG_TRACE ("found hash in sync log");
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800143 SyncStateMsgPtr msg = m_log->FindStateDifferences(*hash, *m_rootHash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800144
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800145 BytesPtr syncData = serializeMsg (msg);
146 m_ccnx->publishData(name, *syncData, FRESHNESS);
147 _LOG_TRACE (m_log->GetLocalName () << " publishes: " << *hash);
148 _LOG_TRACE (msg);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800149 }
150 else
151 {
152 // 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 -0800153 double wait = m_recoverWaitGenerator->nextInterval();
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800154 _LOG_TRACE (m_log->GetLocalName () << ", rootHash: " << *m_rootHash << ", hash: " << *hash);
155 _LOG_TRACE ("recover task scheduled after wait: " << wait);
Zhenkai Zhue573ae82013-01-15 13:15:52 -0800156
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800157 Scheduler::scheduleOneTimeTask (m_scheduler,
158 wait, boost::bind(&SyncCore::recover, this, hash),
159 "r-"+lexical_cast<string> (*hash));
Zhenkai Zhue851b952013-01-13 22:29:57 -0800160 }
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800161}
162
163Closure::TimeoutCallbackReturnValue
164SyncCore::handleSyncInterestTimeout(const Name &name)
165{
166 // sendInterestInterest with the current root hash;
167 sendSyncInterest();
Zhenkai Zhue851b952013-01-13 22:29:57 -0800168 return Closure::RESULT_OK;
169}
170
171Closure::TimeoutCallbackReturnValue
172SyncCore::handleRecoverInterestTimeout(const Name &name)
173{
174 // We do not re-express recovery interest for now
175 // if difference is not resolved, the sync interest will trigger
176 // recovery anyway; so it's not so important to have recovery interest
177 // re-expressed
178 return Closure::RESULT_OK;
179}
180
181void
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800182SyncCore::handleRecoverData(const Name &name, PcoPtr content)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800183{
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800184 //cout << "handle recover data" << end;
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800185 handleStateData(*content->contentPtr ());
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800186 sendSyncInterest();
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800187}
188
189void
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800190SyncCore::handleSyncData(const Name &name, PcoPtr content)
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800191{
Zhenkai Zhue851b952013-01-13 22:29:57 -0800192 // suppress recover in interest - data out of order case
Alexander Afanasyevf278db32013-01-21 14:41:01 -0800193 handleStateData(*content->contentPtr ());
Zhenkai Zhue851b952013-01-13 22:29:57 -0800194
195 // resume outstanding sync interest
196 sendSyncInterest();
197}
198
199void
200SyncCore::handleStateData(const Bytes &content)
201{
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800202 SyncStateMsgPtr msg(new SyncStateMsg);
203 bool success = msg->ParseFromArray(head(content), content.size());
204 if(!success)
205 {
206 // ignore misformed SyncData
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800207 _LOG_ERROR ("Misformed SyncData");
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800208 return;
209 }
210
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800211 _LOG_TRACE (m_log->GetLocalName () << " receives Msg ");
212 _LOG_TRACE (msg);
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800213 int size = msg->state_size();
214 int index = 0;
215 while (index < size)
216 {
217 SyncState state = msg->state(index);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800218 string devStr = state.name();
219 Name deviceName((const unsigned char *)devStr.c_str(), devStr.size());
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800220 // cout << "Got Name: " << deviceName;
Zhenkai Zhue851b952013-01-13 22:29:57 -0800221 if (state.type() == SyncState::UPDATE)
222 {
223 sqlite3_int64 seqno = state.seq();
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800224 // cout << ", Got seq: " << seqno << endl;
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800225 m_log->UpdateDeviceSeqNo(deviceName, seqno);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800226 if (state.has_locator())
227 {
228 string locStr = state.locator();
229 Name locatorName((const unsigned char *)locStr.c_str(), locStr.size());
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800230 // cout << ", Got loc: " << locatorName << endl;
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800231 m_log->UpdateLocator(deviceName, locatorName);
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800232
233 _LOG_TRACE ("self: " << m_log->GetLocalName () << ", device: " << deviceName << " < == > " << locatorName);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800234 }
235 }
236 else
237 {
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800238 _LOG_ERROR ("Receive SYNC DELETE, but we don't support it yet");
Zhenkai Zhue851b952013-01-13 22:29:57 -0800239 deregister(deviceName);
240 }
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800241 index++;
242 }
243
Zhenkai Zhue851b952013-01-13 22:29:57 -0800244 // find the actuall difference and invoke callback on the actual difference
245 HashPtr oldHash = m_rootHash;
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800246 m_rootHash = m_log->RememberStateInStateLog();
Zhenkai Zhu085aae72013-01-17 21:09:01 -0800247 // get diff with both new SeqNo and old SeqNo
248 SyncStateMsgPtr diff = m_log->FindStateDifferences(*oldHash, *m_rootHash, true);
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800249
Zhenkai Zhu9501b8b2013-01-17 12:37:00 -0800250 if (diff->state_size() > 0)
251 {
252 m_stateMsgCallback(diff);
253 }
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800254}
255
256void
257SyncCore::sendSyncInterest()
258{
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800259 Name syncInterest = Name (m_syncPrefix)(m_rootHash->GetHash(), m_rootHash->GetHashBytes());
260
261 m_ccnx->sendInterest(syncInterest,
262 Closure (boost::bind(&SyncCore::handleSyncData, this, _1, _2),
263 boost::bind(&SyncCore::handleSyncInterestTimeout, this, _1)));
264
265 _LOG_TRACE (m_log->GetLocalName () << " send SYNC interest: " << *m_rootHash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800266}
267
268void
269SyncCore::recover(const HashPtr &hash)
270{
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800271 if (!(*hash == *m_rootHash) && m_log->LookupSyncLog(*hash) <= 0)
Zhenkai Zhue851b952013-01-13 22:29:57 -0800272 {
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800273 _LOG_TRACE (m_log->GetLocalName () << ", Recover for: " << *hash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800274 // unfortunately we still don't recognize this hash
275 Bytes bytes;
276 readRaw(bytes, (const unsigned char *)hash->GetHash(), hash->GetHashBytes());
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800277
Zhenkai Zhue851b952013-01-13 22:29:57 -0800278 // append the unknown hash
Alexander Afanasyev49a30d02013-01-21 21:38:48 -0800279 Name recoverInterest = Name (m_syncPrefix)(RECOVER)(bytes);
280
281 m_ccnx->sendInterest(recoverInterest,
282 Closure (boost::bind(&SyncCore::handleRecoverData, this, _1, _2),
283 boost::bind(&SyncCore::handleRecoverInterestTimeout, this, _1)));
284
285 _LOG_TRACE (m_log->GetLocalName () << " send RECOVER Interest: " << *hash);
Zhenkai Zhue851b952013-01-13 22:29:57 -0800286 }
287 else
288 {
289 // we already learned the hash; cheers!
290 }
291}
292
293void
294SyncCore::deregister(const Name &name)
295{
296 // Do nothing for now
297 // TODO: handle deregistering
Zhenkai Zhu74dd53c2013-01-10 23:39:57 -0800298}
299
Zhenkai Zhu9501b8b2013-01-17 12:37:00 -0800300sqlite3_int64
301SyncCore::seq(const Name &name)
302{
Zhenkai Zhub330aed2013-01-17 13:29:37 -0800303 return m_log->SeqNo(name);
Zhenkai Zhu9501b8b2013-01-17 12:37:00 -0800304}