blob: c768d88154d077e8e7600c79d11b331864ca5a29 [file] [log] [blame]
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -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 *
18 * Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
20 */
21
22#include "dispatcher.h"
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080023#include "logging.h"
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080024#include "ccnx-discovery.h"
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080025
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080026#include <boost/make_shared.hpp>
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080027#include <boost/lexical_cast.hpp>
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080028
29using namespace Ccnx;
30using namespace std;
31using namespace boost;
32
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080033INIT_LOGGER ("Dispatcher");
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080034
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080035static const string BROADCAST_DOMAIN = "/ndn/broadcast/chronoshare";
36
37Dispatcher::Dispatcher(const filesystem::path &path, const std::string &localUserName,
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080038 const std::string &sharedFolder,
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080039 const filesystem::path &rootDir, Ccnx::CcnxWrapperPtr ccnx,
Alexander Afanasyevd94a8c62013-01-24 13:53:40 -080040 int poolSize)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080041 : m_ccnx(ccnx)
42 , m_core(NULL)
43 , m_rootDir(rootDir)
44 , m_executor(poolSize)
45 , m_objectManager(ccnx, rootDir)
46 , m_localUserName(localUserName)
47 , m_sharedFolder(sharedFolder)
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080048 , m_server(NULL)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080049{
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080050 m_syncLog = make_shared<SyncLog>(path, localUserName);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080051 m_actionLog = make_shared<ActionLog>(m_ccnx, path, m_syncLog, sharedFolder,
52 // bind (&Dispatcher::Did_ActionLog_ActionApply_AddOrModify, this, _1, _2, _3, _4, _5, _6, _7),
53 ActionLog::OnFileAddedOrChangedCallback (), // don't really need this callback
54 bind (&Dispatcher::Did_ActionLog_ActionApply_Delete, this, _1));
Alexander Afanasyev1b15cc62013-01-22 17:00:40 -080055 Name syncPrefix = Name(BROADCAST_DOMAIN)(sharedFolder);
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080056
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080057 m_server = new ContentServer(m_ccnx, m_actionLog, rootDir);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080058 m_server->registerPrefix(Name ("/"));
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080059 m_server->registerPrefix(syncPrefix);
60
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080061 m_core = new SyncCore (m_syncLog, localUserName, Name ("/"), syncPrefix,
Alexander Afanasyevd94a8c62013-01-24 13:53:40 -080062 bind(&Dispatcher::Did_SyncLog_StateChange, this, _1), ccnx);
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080063
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080064 m_actionFetcher = make_shared<FetchManager> (m_ccnx, bind (&SyncLog::LookupLocator, &*m_syncLog, _1), 3);
65 m_fileFetcher = make_shared<FetchManager> (m_ccnx, bind (&SyncLog::LookupLocator, &*m_syncLog, _1), 3);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080066
67 Ccnx::CcnxDiscovery::registerCallback (TaggedFunction (bind (&Dispatcher::Did_LocalPrefix_Updated, this, _1), "dispatcher"));
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080068}
69
70Dispatcher::~Dispatcher()
71{
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080072 Ccnx::CcnxDiscovery::deregisterCallback (TaggedFunction (bind (&Dispatcher::Did_LocalPrefix_Updated, this, _1), "dispatcher"));
73
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080074 if (m_core != NULL)
75 {
76 delete m_core;
77 m_core = NULL;
78 }
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080079
80 if (m_server != NULL)
81 {
82 delete m_server;
83 m_server = NULL;
84 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080085}
86
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080087void
88Dispatcher::Did_LocalPrefix_Updated (const Ccnx::Name &prefix)
89{
90 Name oldLocalPrefix = m_syncLog->LookupLocalLocator ();
91 _LOG_DEBUG ("LocalPrefix changed from: " << oldLocalPrefix << " to: " << prefix);
92
93 m_server->deregisterPrefix(prefix);
94 m_syncLog->UpdateLocalLocator (prefix);
95 m_server->deregisterPrefix(oldLocalPrefix);
96}
97
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080098/////////////////////////////////////////////////////////////////////////////////////////////////////
99/////////////////////////////////////////////////////////////////////////////////////////////////////
100/////////////////////////////////////////////////////////////////////////////////////////////////////
101
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800102void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800103Dispatcher::Did_LocalFile_AddOrModify (const filesystem::path &relativeFilePath)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800104{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800105 m_executor.execute (bind (&Dispatcher::Did_LocalFile_AddOrModify_Execute, this, relativeFilePath));
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800106}
107
108void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800109Dispatcher::Did_LocalFile_AddOrModify_Execute (filesystem::path relativeFilePath)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800110{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800111 filesystem::path absolutePath = m_rootDir / relativeFilePath;
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800112 if (!filesystem::exists(absolutePath))
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800113 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800114 BOOST_THROW_EXCEPTION (Error::Dispatcher() << error_info_str("Update non exist file: " + absolutePath.string() ));
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800115 }
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800116
117 FileItemPtr currentFile = m_actionLog->LookupFile (relativeFilePath.generic_string ());
118 if (currentFile &&
Zhenkai Zhu1c036bf2013-01-24 15:01:17 -0800119 *Hash::FromFileContent (absolutePath) == Hash (currentFile->file_hash ().c_str (), currentFile->file_hash ().size ())
120 // The following two are commented out to prevent front end from reporting intermediate files
121 // should enable it if there is other way to prevent this
122 // && last_write_time (absolutePath) == currentFile->mtime ()
123 // && status (absolutePath).permissions () == static_cast<filesystem::perms> (currentFile->mode ())
124 )
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800125 {
126 _LOG_ERROR ("Got notification about the same file [" << relativeFilePath << "]");
127 return;
128 }
129
130 int seg_num;
131 HashPtr hash;
132 tie (hash, seg_num) = m_objectManager.localFileToObjects (absolutePath, m_localUserName);
133
134 m_actionLog->AddLocalActionUpdate (relativeFilePath.generic_string(),
135 *hash,
136 last_write_time (absolutePath), status (absolutePath).permissions (), seg_num);
137
138 // notify SyncCore to propagate the change
139 m_core->localStateChanged();
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800140}
141
142void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800143Dispatcher::Did_LocalFile_Delete (const filesystem::path &relativeFilePath)
144{
145 m_executor.execute (bind (&Dispatcher::Did_LocalFile_Delete_Execute, this, relativeFilePath));
146}
147
148void
149Dispatcher::Did_LocalFile_Delete_Execute (filesystem::path relativeFilePath)
150{
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800151 filesystem::path absolutePath = m_rootDir / relativeFilePath;
152 if (!filesystem::exists(absolutePath))
153 {
154 BOOST_THROW_EXCEPTION (Error::Dispatcher() << error_info_str("Delete notification but file exists: " + absolutePath.string() ));
155 }
156
157 FileItemPtr currentFile = m_actionLog->LookupFile (relativeFilePath.generic_string ());
158 if (!currentFile)
159 {
160 _LOG_ERROR ("File already deleted [" << relativeFilePath << "]");
161 return;
162 }
163
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800164 m_actionLog->AddLocalActionDelete (relativeFilePath.generic_string());
165 // notify SyncCore to propagate the change
166 m_core->localStateChanged();
167}
168
169/////////////////////////////////////////////////////////////////////////////////////////////////////
170/////////////////////////////////////////////////////////////////////////////////////////////////////
171/////////////////////////////////////////////////////////////////////////////////////////////////////
172
173/**
174 * Callbacks:
175 *
176 * - from SyncLog: when state changes -> to fetch missing actions
177 *
178 * - from FetchManager/Actions: when action is fetched -> to request a file, specified by the action
179 * -> to add action to the action log
180 *
181 * - from ActionLog/Delete: when action applied (file state changed, file deleted) -> to delete local file
182 *
183 * - from ActionLog/AddOrUpdate: when action applied (file state changes, file added or modified) -> do nothing?
184 *
185 * - from FetchManager/Files: when file segment is retrieved -> save it in ObjectDb
186 * when file fetch is completed -> if file belongs to FileState, then assemble it to filesystem. Don't do anything otherwise
187 */
188
189void
190Dispatcher::Did_SyncLog_StateChange (const SyncStateMsgPtr &stateMsg)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800191{
192 int size = stateMsg->state_size();
193 int index = 0;
194 // iterate and fetch the actions
195 while (index < size)
196 {
197 SyncState state = stateMsg->state(index);
198 if (state.has_old_seq() && state.has_seq())
199 {
200 uint64_t oldSeq = state.old_seq();
201 uint64_t newSeq = state.seq();
202 Name userName = state.name();
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800203
204 // fetch actions with oldSeq + 1 to newSeq (inclusive)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800205 Name actionNameBase = Name(userName)("action")(m_sharedFolder);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800206
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800207 m_actionFetcher->Enqueue (userName, actionNameBase,
208 bind (&Dispatcher::Did_FetchManager_ActionFetch, this, _1, _2, _3, _4), FetchManager::FinishCallback (),
209 oldSeq + 1, newSeq, FetchManager::PRIORITY_HIGH);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800210 }
211 }
212}
213
214void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800215Dispatcher::Did_FetchManager_ActionFetch (const Ccnx::Name &deviceName, const Ccnx::Name &actionName, uint32_t seqno, Ccnx::PcoPtr actionPco)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800216{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800217 /// @todo Errors and exception checking
218 _LOG_DEBUG ("Received action deviceName: " << deviceName << ", actionName: " << actionName << ", seqno: " << seqno);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800219
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800220 ActionItemPtr action = m_actionLog->AddRemoteAction (deviceName, seqno, actionPco);
221 // trigger may invoke Did_ActionLog_ActionApply_Delete or Did_ActionLog_ActionApply_AddOrModify callbacks
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800222
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800223 if (action->action () == ActionItem::UPDATE)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800224 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800225 Hash hash (action->file_hash ().c_str(), action->file_hash ().size ());
226
227 Name fileNameBase = Name (deviceName)("file")(hash.GetHash (), hash.GetHashBytes ());
228
229 if (m_objectDbMap.find (hash) == m_objectDbMap.end ())
230 {
231 m_objectDbMap [hash] = make_shared<ObjectDb> (m_rootDir, lexical_cast<string> (hash));
232 }
233
234 m_fileFetcher->Enqueue (deviceName, fileNameBase,
235 bind (&Dispatcher::Did_FetchManager_FileSegmentFetch, this, _1, _2, _3, _4),
236 bind (&Dispatcher::Did_FetchManager_FileFetchComplete, this, _1, _2),
Zhenkai Zhu1c036bf2013-01-24 15:01:17 -0800237 0, action->seg_num () - 1, FetchManager::PRIORITY_NORMAL);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800238 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800239}
240
241void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800242Dispatcher::Did_ActionLog_ActionApply_Delete (const std::string &filename)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800243{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800244 m_executor.execute (bind (&Dispatcher::Did_ActionLog_ActionApply_Delete_Execute, this, filename));
245}
246
247void
248Dispatcher::Did_ActionLog_ActionApply_Delete_Execute (std::string filename)
249{
250 _LOG_DEBUG ("Action to delete " << filename);
251
252 filesystem::path absolutePath = m_rootDir / filename;
253 if (filesystem::exists(absolutePath))
254 {
255 // need some protection from local detection of removal
256 remove (absolutePath);
257 }
258 // don't exist
259}
260
261void
262Dispatcher::Did_FetchManager_FileSegmentFetch (const Ccnx::Name &deviceName, const Ccnx::Name &fileSegmentName, uint32_t segment, Ccnx::PcoPtr fileSegmentPco)
263{
264 m_executor.execute (bind (&Dispatcher::Did_FetchManager_FileSegmentFetch_Execute, this, deviceName, fileSegmentName, segment, fileSegmentPco));
265}
266
267void
268Dispatcher::Did_FetchManager_FileSegmentFetch_Execute (Ccnx::Name deviceName, Ccnx::Name fileSegmentName, uint32_t segment, Ccnx::PcoPtr fileSegmentPco)
269{
270 const Bytes &hashBytes = fileSegmentName.getCompFromBack (1);
271 Hash hash (head(hashBytes), hashBytes.size());
272
273 _LOG_DEBUG ("Received segment deviceName: " << deviceName << ", segmentName: " << fileSegmentName << ", segment: " << segment);
274
275 map<Hash, ObjectDbPtr>::iterator db = m_objectDbMap.find (hash);
276 if (db != m_objectDbMap.end())
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800277 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800278 db->second->saveContentObject(deviceName, segment, fileSegmentPco->buf ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800279 }
280 else
281 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800282 _LOG_ERROR ("no db available for this content object: " << fileSegmentName << ", size: " << fileSegmentPco->buf ().size());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800283 }
284}
285
286void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800287Dispatcher::Did_FetchManager_FileFetchComplete (const Ccnx::Name &deviceName, const Ccnx::Name &fileBaseName)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800288{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800289 m_executor.execute (bind (&Dispatcher::Did_FetchManager_FileFetchComplete_Execute, this, deviceName, fileBaseName));
290}
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800291
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800292void
293Dispatcher::Did_FetchManager_FileFetchComplete_Execute (Ccnx::Name deviceName, Ccnx::Name fileBaseName)
294{
295 _LOG_DEBUG ("Finished fetching " << deviceName << ", fileBaseName: " << fileBaseName);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800296
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800297 const Bytes &hashBytes = fileBaseName.getCompFromBack (1);
298 Hash hash (head (hashBytes), hashBytes.size ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800299
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800300 FileItemsPtr filesToAssemble = m_actionLog->LookupFilesForHash (hash);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800301
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800302 for (FileItems::iterator file = filesToAssemble->begin ();
303 file != filesToAssemble->end ();
304 file++)
305 {
306 boost::filesystem::path filePath = m_rootDir / file->filename ();
307 m_objectManager.objectsToLocalFile (deviceName, hash, filePath);
308
309 last_write_time (filePath, file->mtime ());
310 permissions (filePath, static_cast<filesystem::perms> (file->mode ()));
311 }
312
313 if (m_objectDbMap.find (hash) != m_objectDbMap.end())
314 {
315 // remove the db handle
316 m_objectDbMap.erase (hash);
317 }
318 else
319 {
320 _LOG_ERROR ("no db available for this file: " << hash);
321 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800322}