blob: bfa970c272effe4f87908d3d7bb86c441eed6a3a [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"
Zhenkai Zhuda686882013-01-29 22:32:24 -080025#include "fetch-task-db.h"
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080026
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080027#include <boost/make_shared.hpp>
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080028#include <boost/lexical_cast.hpp>
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080029
30using namespace Ccnx;
31using namespace std;
32using namespace boost;
33
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080034INIT_LOGGER ("Dispatcher");
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080035
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080036static const string BROADCAST_DOMAIN = "/ndn/broadcast/chronoshare";
Zhenkai Zhu126b21c2013-01-28 17:56:19 -080037static const int CONTENT_FRESHNESS = 1800; // seconds
38const static double DEFAULT_SYNC_INTEREST_INTERVAL = 10.0; // seconds;
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080039
Zhenkai Zhu3290b8e2013-01-24 15:25:48 -080040Dispatcher::Dispatcher(const std::string &localUserName
41 , const std::string &sharedFolder
42 , const filesystem::path &rootDir
43 , Ccnx::CcnxWrapperPtr ccnx
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080044 , bool enablePrefixDiscovery
45 )
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080046 : m_ccnx(ccnx)
47 , m_core(NULL)
48 , m_rootDir(rootDir)
Zhenkai Zhua7ed62a2013-01-25 13:14:37 -080049 , m_executor(1) // creates problems with file assembly. need to ensure somehow that FinishExectute is called after all Segment_Execute finished
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080050 , m_objectManager(ccnx, rootDir)
51 , m_localUserName(localUserName)
52 , m_sharedFolder(sharedFolder)
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080053 , m_server(NULL)
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080054 , m_enablePrefixDiscovery(enablePrefixDiscovery)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080055{
Zhenkai Zhu3290b8e2013-01-24 15:25:48 -080056 m_syncLog = make_shared<SyncLog>(m_rootDir, localUserName);
57 m_actionLog = make_shared<ActionLog>(m_ccnx, m_rootDir, m_syncLog, sharedFolder,
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080058 // bind (&Dispatcher::Did_ActionLog_ActionApply_AddOrModify, this, _1, _2, _3, _4, _5, _6, _7),
59 ActionLog::OnFileAddedOrChangedCallback (), // don't really need this callback
60 bind (&Dispatcher::Did_ActionLog_ActionApply_Delete, this, _1));
Alexander Afanasyev1b15cc62013-01-22 17:00:40 -080061 Name syncPrefix = Name(BROADCAST_DOMAIN)(sharedFolder);
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080062
Zhenkai Zhu126b21c2013-01-28 17:56:19 -080063 // m_server needs a different ccnx face
64 m_server = new ContentServer(make_shared<CcnxWrapper>(), m_actionLog, rootDir, m_localUserName, m_sharedFolder, CONTENT_FRESHNESS);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080065 m_server->registerPrefix(Name ("/"));
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -080066 m_server->registerPrefix(Name(BROADCAST_DOMAIN));
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080067
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080068 m_core = new SyncCore (m_syncLog, localUserName, Name ("/"), syncPrefix,
Zhenkai Zhu95160102013-01-25 21:54:57 -080069 bind(&Dispatcher::Did_SyncLog_StateChange, this, _1), ccnx, DEFAULT_SYNC_INTEREST_INTERVAL);
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080070
Zhenkai Zhuda686882013-01-29 22:32:24 -080071 FetchTaskDbPtr actionTaskDb = make_shared<FetchTaskDb>(m_rootDir, "action");
Zhenkai Zhub8c49af2013-01-29 16:03:56 -080072 m_actionFetcher = make_shared<FetchManager> (m_ccnx, bind (&SyncLog::LookupLocator, &*m_syncLog, _1), 3,
Zhenkai Zhuda686882013-01-29 22:32:24 -080073 bind (&Dispatcher::Did_FetchManager_ActionFetch, this, _1, _2, _3, _4), FetchManager::FinishCallback(), actionTaskDb);
Zhenkai Zhub8c49af2013-01-29 16:03:56 -080074
Zhenkai Zhuda686882013-01-29 22:32:24 -080075 FetchTaskDbPtr fileTaskDb = make_shared<FetchTaskDb>(m_rootDir, "file");
Zhenkai Zhub8c49af2013-01-29 16:03:56 -080076 m_fileFetcher = make_shared<FetchManager> (m_ccnx, bind (&SyncLog::LookupLocator, &*m_syncLog, _1), 3,
77 bind (&Dispatcher::Did_FetchManager_FileSegmentFetch, this, _1, _2, _3, _4),
Zhenkai Zhuda686882013-01-29 22:32:24 -080078 bind (&Dispatcher::Did_FetchManager_FileFetchComplete, this, _1, _2),
79 fileTaskDb);
Zhenkai Zhub8c49af2013-01-29 16:03:56 -080080
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080081
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080082 if (m_enablePrefixDiscovery)
83 {
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -080084 _LOG_DEBUG("registering prefix discovery in Dispatcher");
85 string tag = "dispatcher" + m_localUserName.toString();
86 Ccnx::CcnxDiscovery::registerCallback (TaggedFunction (bind (&Dispatcher::Did_LocalPrefix_Updated, this, _1), tag));
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080087 }
Alexander Afanasyevfc720362013-01-24 21:49:48 -080088
89 m_executor.start ();
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080090}
91
92Dispatcher::~Dispatcher()
93{
Alexander Afanasyevfc720362013-01-24 21:49:48 -080094 // _LOG_DEBUG ("Enter destructor of dispatcher");
95 m_executor.shutdown ();
96
97 // _LOG_DEBUG (">>");
98
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080099 if (m_enablePrefixDiscovery)
100 {
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -0800101 _LOG_DEBUG("deregistering prefix discovery in Dispatcher");
102 string tag = "dispatcher" + m_localUserName.toString();
103 Ccnx::CcnxDiscovery::deregisterCallback (TaggedFunction (bind (&Dispatcher::Did_LocalPrefix_Updated, this, _1), tag));
Zhenkai Zhufaee2d42013-01-24 17:47:13 -0800104 }
Alexander Afanasyev758f51b2013-01-24 13:48:18 -0800105
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800106 if (m_core != NULL)
107 {
108 delete m_core;
109 m_core = NULL;
110 }
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -0800111
112 if (m_server != NULL)
113 {
114 delete m_server;
115 m_server = NULL;
116 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800117}
118
Alexander Afanasyev758f51b2013-01-24 13:48:18 -0800119void
120Dispatcher::Did_LocalPrefix_Updated (const Ccnx::Name &prefix)
121{
122 Name oldLocalPrefix = m_syncLog->LookupLocalLocator ();
123 _LOG_DEBUG ("LocalPrefix changed from: " << oldLocalPrefix << " to: " << prefix);
124
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -0800125 m_server->registerPrefix(prefix);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -0800126 m_syncLog->UpdateLocalLocator (prefix);
127 m_server->deregisterPrefix(oldLocalPrefix);
128}
129
Alexander Afanasyev0a30a0c2013-01-29 17:25:42 -0800130void
131Dispatcher::Restore_LocalFile (FileItemPtr file)
132{
133 m_executor.execute (bind (&Dispatcher::Restore_LocalFile_Execute, this, file));
134}
135
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800136/////////////////////////////////////////////////////////////////////////////////////////////////////
137/////////////////////////////////////////////////////////////////////////////////////////////////////
138/////////////////////////////////////////////////////////////////////////////////////////////////////
139
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800140void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800141Dispatcher::Did_LocalFile_AddOrModify (const filesystem::path &relativeFilePath)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800142{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800143 m_executor.execute (bind (&Dispatcher::Did_LocalFile_AddOrModify_Execute, this, relativeFilePath));
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800144}
145
146void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800147Dispatcher::Did_LocalFile_AddOrModify_Execute (filesystem::path relativeFilePath)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800148{
Zhenkai Zhufaee2d42013-01-24 17:47:13 -0800149 _LOG_DEBUG(m_localUserName << " calls LocalFile_AddOrModify_Execute");
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800150 filesystem::path absolutePath = m_rootDir / relativeFilePath;
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800151 if (!filesystem::exists(absolutePath))
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800152 {
Zhenkai Zhu5f6181a2013-01-25 17:31:30 -0800153 //BOOST_THROW_EXCEPTION (Error::Dispatcher() << error_info_str("Update non exist file: " + absolutePath.string() ));
154 _LOG_DEBUG("Update non exist file: " << absolutePath.string());
155 return;
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800156 }
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800157
158 FileItemPtr currentFile = m_actionLog->LookupFile (relativeFilePath.generic_string ());
159 if (currentFile &&
Zhenkai Zhu1c036bf2013-01-24 15:01:17 -0800160 *Hash::FromFileContent (absolutePath) == Hash (currentFile->file_hash ().c_str (), currentFile->file_hash ().size ())
161 // The following two are commented out to prevent front end from reporting intermediate files
162 // should enable it if there is other way to prevent this
163 // && last_write_time (absolutePath) == currentFile->mtime ()
164 // && status (absolutePath).permissions () == static_cast<filesystem::perms> (currentFile->mode ())
165 )
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800166 {
167 _LOG_ERROR ("Got notification about the same file [" << relativeFilePath << "]");
168 return;
169 }
170
Alexander Afanasyeva2fabcf2013-02-05 11:26:37 -0800171 if (currentFile &&
172 !currentFile->is_complete ())
173 {
174 _LOG_ERROR ("Got notification about incomplete file [" << relativeFilePath << "]");
175 return;
176 }
177
178
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800179 int seg_num;
180 HashPtr hash;
181 tie (hash, seg_num) = m_objectManager.localFileToObjects (absolutePath, m_localUserName);
182
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800183 try
184 {
185 m_actionLog->AddLocalActionUpdate (relativeFilePath.generic_string(),
186 *hash,
187 last_write_time (absolutePath), status (absolutePath).permissions (), seg_num);
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800188
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800189 // notify SyncCore to propagate the change
Alexander Afanasyeva2fabcf2013-02-05 11:26:37 -0800190 m_core->localStateChangedDelayed ();
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800191 }
192 catch (filesystem::filesystem_error &error)
193 {
194 _LOG_ERROR ("File operations failed on [" << relativeFilePath << "] (ignoring)");
195 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800196}
197
198void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800199Dispatcher::Did_LocalFile_Delete (const filesystem::path &relativeFilePath)
200{
201 m_executor.execute (bind (&Dispatcher::Did_LocalFile_Delete_Execute, this, relativeFilePath));
202}
203
204void
205Dispatcher::Did_LocalFile_Delete_Execute (filesystem::path relativeFilePath)
206{
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800207 filesystem::path absolutePath = m_rootDir / relativeFilePath;
Alexander Afanasyevd3310b12013-01-25 17:44:11 -0800208 if (filesystem::exists(absolutePath))
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800209 {
Zhenkai Zhu5f6181a2013-01-25 17:31:30 -0800210 //BOOST_THROW_EXCEPTION (Error::Dispatcher() << error_info_str("Delete notification but file exists: " + absolutePath.string() ));
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800211 _LOG_ERROR("DELETE command, but file still exists: " << absolutePath.string());
Zhenkai Zhu5f6181a2013-01-25 17:31:30 -0800212 return;
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800213 }
214
215 FileItemPtr currentFile = m_actionLog->LookupFile (relativeFilePath.generic_string ());
216 if (!currentFile)
217 {
218 _LOG_ERROR ("File already deleted [" << relativeFilePath << "]");
219 return;
220 }
221
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800222 m_actionLog->AddLocalActionDelete (relativeFilePath.generic_string());
223 // notify SyncCore to propagate the change
Alexander Afanasyeva2fabcf2013-02-05 11:26:37 -0800224 m_core->localStateChangedDelayed();
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800225}
226
227/////////////////////////////////////////////////////////////////////////////////////////////////////
228/////////////////////////////////////////////////////////////////////////////////////////////////////
229/////////////////////////////////////////////////////////////////////////////////////////////////////
230
231/**
232 * Callbacks:
233 *
234 * - from SyncLog: when state changes -> to fetch missing actions
235 *
236 * - from FetchManager/Actions: when action is fetched -> to request a file, specified by the action
237 * -> to add action to the action log
238 *
239 * - from ActionLog/Delete: when action applied (file state changed, file deleted) -> to delete local file
240 *
241 * - from ActionLog/AddOrUpdate: when action applied (file state changes, file added or modified) -> do nothing?
242 *
243 * - from FetchManager/Files: when file segment is retrieved -> save it in ObjectDb
244 * when file fetch is completed -> if file belongs to FileState, then assemble it to filesystem. Don't do anything otherwise
245 */
246
247void
Alexander Afanasyevfc720362013-01-24 21:49:48 -0800248Dispatcher::Did_SyncLog_StateChange (SyncStateMsgPtr stateMsg)
249{
250 m_executor.execute (bind (&Dispatcher::Did_SyncLog_StateChange_Execute, this, stateMsg));
251}
252
253void
254Dispatcher::Did_SyncLog_StateChange_Execute (SyncStateMsgPtr stateMsg)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800255{
256 int size = stateMsg->state_size();
257 int index = 0;
258 // iterate and fetch the actions
Alexander Afanasyeve6f2ae12013-01-24 21:50:00 -0800259 for (; index < size; index++)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800260 {
Alexander Afanasyevfc720362013-01-24 21:49:48 -0800261 SyncState state = stateMsg->state (index);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800262 if (state.has_old_seq() && state.has_seq())
263 {
264 uint64_t oldSeq = state.old_seq();
265 uint64_t newSeq = state.seq();
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800266 Name userName (reinterpret_cast<const unsigned char *> (state.name ().c_str ()), state.name ().size ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800267
268 // fetch actions with oldSeq + 1 to newSeq (inclusive)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800269 Name actionNameBase = Name(userName)("action")(m_sharedFolder);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800270
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800271 m_actionFetcher->Enqueue (userName, actionNameBase,
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800272 std::max<uint64_t> (oldSeq + 1, 1), newSeq, FetchManager::PRIORITY_HIGH);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800273 }
274 }
275}
276
Alexander Afanasyevfc720362013-01-24 21:49:48 -0800277
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800278void
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800279Dispatcher::Did_FetchManager_ActionFetch (const Ccnx::Name &deviceName, const Ccnx::Name &actionBaseName, uint32_t seqno, Ccnx::PcoPtr actionPco)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800280{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800281 /// @todo Errors and exception checking
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800282 _LOG_DEBUG ("Received action deviceName: " << deviceName << ", actionBaseName: " << actionBaseName << ", seqno: " << seqno);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800283
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800284 ActionItemPtr action = m_actionLog->AddRemoteAction (deviceName, seqno, actionPco);
285 // trigger may invoke Did_ActionLog_ActionApply_Delete or Did_ActionLog_ActionApply_AddOrModify callbacks
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800286
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800287 if (action->action () == ActionItem::UPDATE)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800288 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800289 Hash hash (action->file_hash ().c_str(), action->file_hash ().size ());
290
291 Name fileNameBase = Name (deviceName)("file")(hash.GetHash (), hash.GetHashBytes ());
292
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800293 string hashStr = lexical_cast<string> (hash);
294 if (ObjectDb::DoesExist (m_rootDir / ".chronoshare", deviceName, hashStr))
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800295 {
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800296 _LOG_DEBUG ("File already exists in the database. No need to refetch, just directly applying the action");
297 Did_FetchManager_FileFetchComplete (deviceName, fileNameBase);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800298 }
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800299 else
300 {
301 if (m_objectDbMap.find (hash) == m_objectDbMap.end ())
302 {
303 _LOG_DEBUG ("create ObjectDb for " << hash);
304 m_objectDbMap [hash] = make_shared<ObjectDb> (m_rootDir / ".chronoshare", hashStr);
305 }
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800306
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800307 m_fileFetcher->Enqueue (deviceName, fileNameBase,
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800308 0, action->seg_num () - 1, FetchManager::PRIORITY_NORMAL);
309 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800310 }
Alexander Afanasyeva2fabcf2013-02-05 11:26:37 -0800311 // if necessary (when version number is the highest) delete will be applied through the trigger in m_actionLog->AddRemoteAction call
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800312}
313
314void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800315Dispatcher::Did_ActionLog_ActionApply_Delete (const std::string &filename)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800316{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800317 m_executor.execute (bind (&Dispatcher::Did_ActionLog_ActionApply_Delete_Execute, this, filename));
318}
319
320void
321Dispatcher::Did_ActionLog_ActionApply_Delete_Execute (std::string filename)
322{
323 _LOG_DEBUG ("Action to delete " << filename);
324
325 filesystem::path absolutePath = m_rootDir / filename;
326 if (filesystem::exists(absolutePath))
327 {
328 // need some protection from local detection of removal
329 remove (absolutePath);
330 }
331 // don't exist
332}
333
334void
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800335Dispatcher::Did_FetchManager_FileSegmentFetch (const Ccnx::Name &deviceName, const Ccnx::Name &fileSegmentBaseName, uint32_t segment, Ccnx::PcoPtr fileSegmentPco)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800336{
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800337 m_executor.execute (bind (&Dispatcher::Did_FetchManager_FileSegmentFetch_Execute, this, deviceName, fileSegmentBaseName, segment, fileSegmentPco));
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800338}
339
340void
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800341Dispatcher::Did_FetchManager_FileSegmentFetch_Execute (Ccnx::Name deviceName, Ccnx::Name fileSegmentBaseName, uint32_t segment, Ccnx::PcoPtr fileSegmentPco)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800342{
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800343 const Bytes &hashBytes = fileSegmentBaseName.getCompFromBack (0);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800344 Hash hash (head(hashBytes), hashBytes.size());
345
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800346 _LOG_DEBUG ("Received segment deviceName: " << deviceName << ", segmentBaseName: " << fileSegmentBaseName << ", segment: " << segment);
347
Alexander Afanasyev17507ba2013-01-24 23:47:34 -0800348 // _LOG_DEBUG ("Looking up objectdb for " << hash);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800349
350 map<Hash, ObjectDbPtr>::iterator db = m_objectDbMap.find (hash);
351 if (db != m_objectDbMap.end())
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800352 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800353 db->second->saveContentObject(deviceName, segment, fileSegmentPco->buf ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800354 }
355 else
356 {
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800357 _LOG_ERROR ("no db available for this content object: " << fileSegmentBaseName << ", size: " << fileSegmentPco->buf ().size());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800358 }
Alexander Afanasyev17507ba2013-01-24 23:47:34 -0800359
360 // ObjectDb objectDb (m_rootDir / ".chronoshare", lexical_cast<string> (hash));
361 // objectDb.saveContentObject(deviceName, segment, fileSegmentPco->buf ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800362}
363
364void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800365Dispatcher::Did_FetchManager_FileFetchComplete (const Ccnx::Name &deviceName, const Ccnx::Name &fileBaseName)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800366{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800367 m_executor.execute (bind (&Dispatcher::Did_FetchManager_FileFetchComplete_Execute, this, deviceName, fileBaseName));
368}
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800369
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800370void
371Dispatcher::Did_FetchManager_FileFetchComplete_Execute (Ccnx::Name deviceName, Ccnx::Name fileBaseName)
372{
373 _LOG_DEBUG ("Finished fetching " << deviceName << ", fileBaseName: " << fileBaseName);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800374
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800375 const Bytes &hashBytes = fileBaseName.getCompFromBack (0);
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800376 Hash hash (head (hashBytes), hashBytes.size ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800377
Alexander Afanasyev1807e8d2013-01-24 23:37:32 -0800378 if (m_objectDbMap.find (hash) != m_objectDbMap.end())
379 {
380 // remove the db handle
381 m_objectDbMap.erase (hash); // to commit write
382 }
383 else
384 {
385 _LOG_ERROR ("no db available for this file: " << hash);
386 }
387
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800388 FileItemsPtr filesToAssemble = m_actionLog->LookupFilesForHash (hash);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800389
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800390 for (FileItems::iterator file = filesToAssemble->begin ();
391 file != filesToAssemble->end ();
392 file++)
393 {
394 boost::filesystem::path filePath = m_rootDir / file->filename ();
Alexander Afanasyev9079a2d2013-01-29 15:18:29 -0800395
Alexander Afanasyevce925102013-01-31 17:04:05 -0800396 try
Alexander Afanasyev9079a2d2013-01-29 15:18:29 -0800397 {
Alexander Afanasyevce925102013-01-31 17:04:05 -0800398 if (filesystem::exists (filePath) &&
399 filesystem::last_write_time (filePath) == file->mtime () &&
400 filesystem::status (filePath).permissions () == static_cast<filesystem::perms> (file->mode ()) &&
401 *Hash::FromFileContent (filePath) == hash)
402 {
403 _LOG_DEBUG ("Asking to assemble a file, but file already exists on a filesystem");
404 continue;
405 }
406 }
407 catch (filesystem::filesystem_error &error)
408 {
409 _LOG_ERROR ("File operations failed on [" << filePath << "] (ignoring)");
Alexander Afanasyev9079a2d2013-01-29 15:18:29 -0800410 }
411
Zhenkai Zhuf3a9fa62013-01-31 17:23:09 -0800412 if (ObjectDb::DoesExist (m_rootDir / ".chronoshare", deviceName, boost::lexical_cast<string>(hash)))
413 {
414 m_objectManager.objectsToLocalFile (deviceName, hash, filePath);
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800415
Zhenkai Zhuf3a9fa62013-01-31 17:23:09 -0800416 last_write_time (filePath, file->mtime ());
417 permissions (filePath, static_cast<filesystem::perms> (file->mode ()));
Alexander Afanasyev7a647002013-01-30 11:54:52 -0800418
Zhenkai Zhuf3a9fa62013-01-31 17:23:09 -0800419 m_actionLog->SetFileComplete (file->filename ());
420 }
421 else
422 {
423 _LOG_ERROR (filePath << " supposed to have all segments, but not");
424 // should abort for debugging
425 }
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800426 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800427}
Alexander Afanasyev0a30a0c2013-01-29 17:25:42 -0800428
429void
430Dispatcher::Restore_LocalFile_Execute (FileItemPtr file)
431{
432 _LOG_DEBUG ("Got request to restore local file [" << file->filename () << "]");
433 // the rest will gracefully fail if object-db is missing or incomplete
434
435 boost::filesystem::path filePath = m_rootDir / file->filename ();
436 Name deviceName (file->device_name ().c_str (), file->device_name ().size ());
437 Hash hash (file->file_hash ().c_str (), file->file_hash ().size ());
438
Alexander Afanasyevce925102013-01-31 17:04:05 -0800439 try
Alexander Afanasyev0a30a0c2013-01-29 17:25:42 -0800440 {
Alexander Afanasyevce925102013-01-31 17:04:05 -0800441 if (filesystem::exists (filePath) &&
442 filesystem::last_write_time (filePath) == file->mtime () &&
443 filesystem::status (filePath).permissions () == static_cast<filesystem::perms> (file->mode ()) &&
444 *Hash::FromFileContent (filePath) == hash)
445 {
446 _LOG_DEBUG ("Asking to assemble a file, but file already exists on a filesystem");
447 return;
448 }
449 }
450 catch (filesystem::filesystem_error &error)
451 {
452 _LOG_ERROR ("File operations failed on [" << filePath << "] (ignoring)");
Alexander Afanasyev0a30a0c2013-01-29 17:25:42 -0800453 }
454
455 m_objectManager.objectsToLocalFile (deviceName, hash, filePath);
456
457 last_write_time (filePath, file->mtime ());
458 permissions (filePath, static_cast<filesystem::perms> (file->mode ()));
459
460}