blob: cc677b6583c6db637fa2a013f0fea98ee64f5c56 [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";
Zhenkai Zhu126b21c2013-01-28 17:56:19 -080036static const int CONTENT_FRESHNESS = 1800; // seconds
37const static double DEFAULT_SYNC_INTEREST_INTERVAL = 10.0; // seconds;
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080038
Zhenkai Zhu3290b8e2013-01-24 15:25:48 -080039Dispatcher::Dispatcher(const std::string &localUserName
40 , const std::string &sharedFolder
41 , const filesystem::path &rootDir
42 , Ccnx::CcnxWrapperPtr ccnx
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080043 , bool enablePrefixDiscovery
44 )
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080045 : m_ccnx(ccnx)
46 , m_core(NULL)
47 , m_rootDir(rootDir)
Zhenkai Zhua7ed62a2013-01-25 13:14:37 -080048 , 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 -080049 , m_objectManager(ccnx, rootDir)
50 , m_localUserName(localUserName)
51 , m_sharedFolder(sharedFolder)
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080052 , m_server(NULL)
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080053 , m_enablePrefixDiscovery(enablePrefixDiscovery)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080054{
Zhenkai Zhu3290b8e2013-01-24 15:25:48 -080055 m_syncLog = make_shared<SyncLog>(m_rootDir, localUserName);
56 m_actionLog = make_shared<ActionLog>(m_ccnx, m_rootDir, m_syncLog, sharedFolder,
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080057 // bind (&Dispatcher::Did_ActionLog_ActionApply_AddOrModify, this, _1, _2, _3, _4, _5, _6, _7),
58 ActionLog::OnFileAddedOrChangedCallback (), // don't really need this callback
59 bind (&Dispatcher::Did_ActionLog_ActionApply_Delete, this, _1));
Alexander Afanasyev1b15cc62013-01-22 17:00:40 -080060 Name syncPrefix = Name(BROADCAST_DOMAIN)(sharedFolder);
Alexander Afanasyevcbda9922013-01-22 11:21:12 -080061
Zhenkai Zhu126b21c2013-01-28 17:56:19 -080062 // m_server needs a different ccnx face
63 m_server = new ContentServer(make_shared<CcnxWrapper>(), m_actionLog, rootDir, m_localUserName, m_sharedFolder, CONTENT_FRESHNESS);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080064 m_server->registerPrefix(Name ("/"));
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -080065 m_server->registerPrefix(Name(BROADCAST_DOMAIN));
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080066
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080067 m_core = new SyncCore (m_syncLog, localUserName, Name ("/"), syncPrefix,
Zhenkai Zhu95160102013-01-25 21:54:57 -080068 bind(&Dispatcher::Did_SyncLog_StateChange, this, _1), ccnx, DEFAULT_SYNC_INTEREST_INTERVAL);
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -080069
Alexander Afanasyevf9978f82013-01-23 16:30:31 -080070 m_actionFetcher = make_shared<FetchManager> (m_ccnx, bind (&SyncLog::LookupLocator, &*m_syncLog, _1), 3);
71 m_fileFetcher = make_shared<FetchManager> (m_ccnx, bind (&SyncLog::LookupLocator, &*m_syncLog, _1), 3);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080072
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080073 if (m_enablePrefixDiscovery)
74 {
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -080075 _LOG_DEBUG("registering prefix discovery in Dispatcher");
76 string tag = "dispatcher" + m_localUserName.toString();
77 Ccnx::CcnxDiscovery::registerCallback (TaggedFunction (bind (&Dispatcher::Did_LocalPrefix_Updated, this, _1), tag));
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080078 }
Alexander Afanasyevfc720362013-01-24 21:49:48 -080079
80 m_executor.start ();
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080081}
82
83Dispatcher::~Dispatcher()
84{
Alexander Afanasyevfc720362013-01-24 21:49:48 -080085 // _LOG_DEBUG ("Enter destructor of dispatcher");
86 m_executor.shutdown ();
87
88 // _LOG_DEBUG (">>");
89
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080090 if (m_enablePrefixDiscovery)
91 {
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -080092 _LOG_DEBUG("deregistering prefix discovery in Dispatcher");
93 string tag = "dispatcher" + m_localUserName.toString();
94 Ccnx::CcnxDiscovery::deregisterCallback (TaggedFunction (bind (&Dispatcher::Did_LocalPrefix_Updated, this, _1), tag));
Zhenkai Zhufaee2d42013-01-24 17:47:13 -080095 }
Alexander Afanasyev758f51b2013-01-24 13:48:18 -080096
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -080097 if (m_core != NULL)
98 {
99 delete m_core;
100 m_core = NULL;
101 }
Zhenkai Zhu1dcbbab2013-01-22 16:03:20 -0800102
103 if (m_server != NULL)
104 {
105 delete m_server;
106 m_server = NULL;
107 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800108}
109
Alexander Afanasyev758f51b2013-01-24 13:48:18 -0800110void
111Dispatcher::Did_LocalPrefix_Updated (const Ccnx::Name &prefix)
112{
113 Name oldLocalPrefix = m_syncLog->LookupLocalLocator ();
114 _LOG_DEBUG ("LocalPrefix changed from: " << oldLocalPrefix << " to: " << prefix);
115
Zhenkai Zhu3f64d2d2013-01-25 14:34:59 -0800116 m_server->registerPrefix(prefix);
Alexander Afanasyev758f51b2013-01-24 13:48:18 -0800117 m_syncLog->UpdateLocalLocator (prefix);
118 m_server->deregisterPrefix(oldLocalPrefix);
119}
120
Alexander Afanasyev0a30a0c2013-01-29 17:25:42 -0800121void
122Dispatcher::Restore_LocalFile (FileItemPtr file)
123{
124 m_executor.execute (bind (&Dispatcher::Restore_LocalFile_Execute, this, file));
125}
126
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800127/////////////////////////////////////////////////////////////////////////////////////////////////////
128/////////////////////////////////////////////////////////////////////////////////////////////////////
129/////////////////////////////////////////////////////////////////////////////////////////////////////
130
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800131void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800132Dispatcher::Did_LocalFile_AddOrModify (const filesystem::path &relativeFilePath)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800133{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800134 m_executor.execute (bind (&Dispatcher::Did_LocalFile_AddOrModify_Execute, this, relativeFilePath));
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800135}
136
137void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800138Dispatcher::Did_LocalFile_AddOrModify_Execute (filesystem::path relativeFilePath)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800139{
Zhenkai Zhufaee2d42013-01-24 17:47:13 -0800140 _LOG_DEBUG(m_localUserName << " calls LocalFile_AddOrModify_Execute");
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800141 filesystem::path absolutePath = m_rootDir / relativeFilePath;
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800142 if (!filesystem::exists(absolutePath))
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800143 {
Zhenkai Zhu5f6181a2013-01-25 17:31:30 -0800144 //BOOST_THROW_EXCEPTION (Error::Dispatcher() << error_info_str("Update non exist file: " + absolutePath.string() ));
145 _LOG_DEBUG("Update non exist file: " << absolutePath.string());
146 return;
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800147 }
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800148
149 FileItemPtr currentFile = m_actionLog->LookupFile (relativeFilePath.generic_string ());
150 if (currentFile &&
Zhenkai Zhu1c036bf2013-01-24 15:01:17 -0800151 *Hash::FromFileContent (absolutePath) == Hash (currentFile->file_hash ().c_str (), currentFile->file_hash ().size ())
152 // The following two are commented out to prevent front end from reporting intermediate files
153 // should enable it if there is other way to prevent this
154 // && last_write_time (absolutePath) == currentFile->mtime ()
155 // && status (absolutePath).permissions () == static_cast<filesystem::perms> (currentFile->mode ())
156 )
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800157 {
158 _LOG_ERROR ("Got notification about the same file [" << relativeFilePath << "]");
159 return;
160 }
161
162 int seg_num;
163 HashPtr hash;
164 tie (hash, seg_num) = m_objectManager.localFileToObjects (absolutePath, m_localUserName);
165
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800166 try
167 {
168 m_actionLog->AddLocalActionUpdate (relativeFilePath.generic_string(),
169 *hash,
170 last_write_time (absolutePath), status (absolutePath).permissions (), seg_num);
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800171
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800172 // notify SyncCore to propagate the change
173 m_core->localStateChanged();
174 }
175 catch (filesystem::filesystem_error &error)
176 {
177 _LOG_ERROR ("File operations failed on [" << relativeFilePath << "] (ignoring)");
178 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800179}
180
181void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800182Dispatcher::Did_LocalFile_Delete (const filesystem::path &relativeFilePath)
183{
184 m_executor.execute (bind (&Dispatcher::Did_LocalFile_Delete_Execute, this, relativeFilePath));
185}
186
187void
188Dispatcher::Did_LocalFile_Delete_Execute (filesystem::path relativeFilePath)
189{
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800190 filesystem::path absolutePath = m_rootDir / relativeFilePath;
Alexander Afanasyevd3310b12013-01-25 17:44:11 -0800191 if (filesystem::exists(absolutePath))
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800192 {
Zhenkai Zhu5f6181a2013-01-25 17:31:30 -0800193 //BOOST_THROW_EXCEPTION (Error::Dispatcher() << error_info_str("Delete notification but file exists: " + absolutePath.string() ));
Alexander Afanasyev38a04732013-01-28 17:40:21 -0800194 _LOG_ERROR("DELETE command, but file still exists: " << absolutePath.string());
Zhenkai Zhu5f6181a2013-01-25 17:31:30 -0800195 return;
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800196 }
197
198 FileItemPtr currentFile = m_actionLog->LookupFile (relativeFilePath.generic_string ());
199 if (!currentFile)
200 {
201 _LOG_ERROR ("File already deleted [" << relativeFilePath << "]");
202 return;
203 }
204
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800205 m_actionLog->AddLocalActionDelete (relativeFilePath.generic_string());
206 // notify SyncCore to propagate the change
207 m_core->localStateChanged();
208}
209
210/////////////////////////////////////////////////////////////////////////////////////////////////////
211/////////////////////////////////////////////////////////////////////////////////////////////////////
212/////////////////////////////////////////////////////////////////////////////////////////////////////
213
214/**
215 * Callbacks:
216 *
217 * - from SyncLog: when state changes -> to fetch missing actions
218 *
219 * - from FetchManager/Actions: when action is fetched -> to request a file, specified by the action
220 * -> to add action to the action log
221 *
222 * - from ActionLog/Delete: when action applied (file state changed, file deleted) -> to delete local file
223 *
224 * - from ActionLog/AddOrUpdate: when action applied (file state changes, file added or modified) -> do nothing?
225 *
226 * - from FetchManager/Files: when file segment is retrieved -> save it in ObjectDb
227 * when file fetch is completed -> if file belongs to FileState, then assemble it to filesystem. Don't do anything otherwise
228 */
229
230void
Alexander Afanasyevfc720362013-01-24 21:49:48 -0800231Dispatcher::Did_SyncLog_StateChange (SyncStateMsgPtr stateMsg)
232{
233 m_executor.execute (bind (&Dispatcher::Did_SyncLog_StateChange_Execute, this, stateMsg));
234}
235
236void
237Dispatcher::Did_SyncLog_StateChange_Execute (SyncStateMsgPtr stateMsg)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800238{
239 int size = stateMsg->state_size();
240 int index = 0;
241 // iterate and fetch the actions
Alexander Afanasyeve6f2ae12013-01-24 21:50:00 -0800242 for (; index < size; index++)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800243 {
Alexander Afanasyevfc720362013-01-24 21:49:48 -0800244 SyncState state = stateMsg->state (index);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800245 if (state.has_old_seq() && state.has_seq())
246 {
247 uint64_t oldSeq = state.old_seq();
248 uint64_t newSeq = state.seq();
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800249 Name userName (reinterpret_cast<const unsigned char *> (state.name ().c_str ()), state.name ().size ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800250
251 // fetch actions with oldSeq + 1 to newSeq (inclusive)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800252 Name actionNameBase = Name(userName)("action")(m_sharedFolder);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800253
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800254 m_actionFetcher->Enqueue (userName, actionNameBase,
255 bind (&Dispatcher::Did_FetchManager_ActionFetch, this, _1, _2, _3, _4), FetchManager::FinishCallback (),
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800256 std::max<uint64_t> (oldSeq + 1, 1), newSeq, FetchManager::PRIORITY_HIGH);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800257 }
258 }
259}
260
Alexander Afanasyevfc720362013-01-24 21:49:48 -0800261
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800262void
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800263Dispatcher::Did_FetchManager_ActionFetch (const Ccnx::Name &deviceName, const Ccnx::Name &actionBaseName, uint32_t seqno, Ccnx::PcoPtr actionPco)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800264{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800265 /// @todo Errors and exception checking
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800266 _LOG_DEBUG ("Received action deviceName: " << deviceName << ", actionBaseName: " << actionBaseName << ", seqno: " << seqno);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800267
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800268 ActionItemPtr action = m_actionLog->AddRemoteAction (deviceName, seqno, actionPco);
269 // trigger may invoke Did_ActionLog_ActionApply_Delete or Did_ActionLog_ActionApply_AddOrModify callbacks
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800270
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800271 if (action->action () == ActionItem::UPDATE)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800272 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800273 Hash hash (action->file_hash ().c_str(), action->file_hash ().size ());
274
275 Name fileNameBase = Name (deviceName)("file")(hash.GetHash (), hash.GetHashBytes ());
276
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800277 string hashStr = lexical_cast<string> (hash);
278 if (ObjectDb::DoesExist (m_rootDir / ".chronoshare", deviceName, hashStr))
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800279 {
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800280 _LOG_DEBUG ("File already exists in the database. No need to refetch, just directly applying the action");
281 Did_FetchManager_FileFetchComplete (deviceName, fileNameBase);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800282 }
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800283 else
284 {
285 if (m_objectDbMap.find (hash) == m_objectDbMap.end ())
286 {
287 _LOG_DEBUG ("create ObjectDb for " << hash);
288 m_objectDbMap [hash] = make_shared<ObjectDb> (m_rootDir / ".chronoshare", hashStr);
289 }
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800290
Alexander Afanasyeve2277212013-01-29 12:46:31 -0800291 m_fileFetcher->Enqueue (deviceName, fileNameBase,
292 bind (&Dispatcher::Did_FetchManager_FileSegmentFetch, this, _1, _2, _3, _4),
293 bind (&Dispatcher::Did_FetchManager_FileFetchComplete, this, _1, _2),
294 0, action->seg_num () - 1, FetchManager::PRIORITY_NORMAL);
295 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800296 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800297}
298
299void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800300Dispatcher::Did_ActionLog_ActionApply_Delete (const std::string &filename)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800301{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800302 m_executor.execute (bind (&Dispatcher::Did_ActionLog_ActionApply_Delete_Execute, this, filename));
303}
304
305void
306Dispatcher::Did_ActionLog_ActionApply_Delete_Execute (std::string filename)
307{
308 _LOG_DEBUG ("Action to delete " << filename);
309
310 filesystem::path absolutePath = m_rootDir / filename;
311 if (filesystem::exists(absolutePath))
312 {
313 // need some protection from local detection of removal
314 remove (absolutePath);
315 }
316 // don't exist
317}
318
319void
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800320Dispatcher::Did_FetchManager_FileSegmentFetch (const Ccnx::Name &deviceName, const Ccnx::Name &fileSegmentBaseName, uint32_t segment, Ccnx::PcoPtr fileSegmentPco)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800321{
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800322 m_executor.execute (bind (&Dispatcher::Did_FetchManager_FileSegmentFetch_Execute, this, deviceName, fileSegmentBaseName, segment, fileSegmentPco));
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800323}
324
325void
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800326Dispatcher::Did_FetchManager_FileSegmentFetch_Execute (Ccnx::Name deviceName, Ccnx::Name fileSegmentBaseName, uint32_t segment, Ccnx::PcoPtr fileSegmentPco)
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800327{
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800328 const Bytes &hashBytes = fileSegmentBaseName.getCompFromBack (0);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800329 Hash hash (head(hashBytes), hashBytes.size());
330
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800331 _LOG_DEBUG ("Received segment deviceName: " << deviceName << ", segmentBaseName: " << fileSegmentBaseName << ", segment: " << segment);
332
Alexander Afanasyev17507ba2013-01-24 23:47:34 -0800333 // _LOG_DEBUG ("Looking up objectdb for " << hash);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800334
335 map<Hash, ObjectDbPtr>::iterator db = m_objectDbMap.find (hash);
336 if (db != m_objectDbMap.end())
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800337 {
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800338 db->second->saveContentObject(deviceName, segment, fileSegmentPco->buf ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800339 }
340 else
341 {
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800342 _LOG_ERROR ("no db available for this content object: " << fileSegmentBaseName << ", size: " << fileSegmentPco->buf ().size());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800343 }
Alexander Afanasyev17507ba2013-01-24 23:47:34 -0800344
345 // ObjectDb objectDb (m_rootDir / ".chronoshare", lexical_cast<string> (hash));
346 // objectDb.saveContentObject(deviceName, segment, fileSegmentPco->buf ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800347}
348
349void
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800350Dispatcher::Did_FetchManager_FileFetchComplete (const Ccnx::Name &deviceName, const Ccnx::Name &fileBaseName)
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800351{
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800352 m_executor.execute (bind (&Dispatcher::Did_FetchManager_FileFetchComplete_Execute, this, deviceName, fileBaseName));
353}
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800354
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800355void
356Dispatcher::Did_FetchManager_FileFetchComplete_Execute (Ccnx::Name deviceName, Ccnx::Name fileBaseName)
357{
358 _LOG_DEBUG ("Finished fetching " << deviceName << ", fileBaseName: " << fileBaseName);
Alexander Afanasyevf9978f82013-01-23 16:30:31 -0800359
Alexander Afanasyev28ca3ed2013-01-24 23:17:15 -0800360 const Bytes &hashBytes = fileBaseName.getCompFromBack (0);
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800361 Hash hash (head (hashBytes), hashBytes.size ());
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800362
Alexander Afanasyev1807e8d2013-01-24 23:37:32 -0800363 if (m_objectDbMap.find (hash) != m_objectDbMap.end())
364 {
365 // remove the db handle
366 m_objectDbMap.erase (hash); // to commit write
367 }
368 else
369 {
370 _LOG_ERROR ("no db available for this file: " << hash);
371 }
372
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800373 FileItemsPtr filesToAssemble = m_actionLog->LookupFilesForHash (hash);
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800374
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800375 for (FileItems::iterator file = filesToAssemble->begin ();
376 file != filesToAssemble->end ();
377 file++)
378 {
379 boost::filesystem::path filePath = m_rootDir / file->filename ();
Alexander Afanasyev9079a2d2013-01-29 15:18:29 -0800380
381 if (filesystem::exists (filePath) &&
382 filesystem::last_write_time (filePath) == file->mtime () &&
383 filesystem::status (filePath).permissions () == static_cast<filesystem::perms> (file->mode ()) &&
384 *Hash::FromFileContent (filePath) == hash)
385 {
386 _LOG_DEBUG ("Asking to assemble a file, but file already exists on a filesystem");
387 continue;
388 }
389
Alexander Afanasyevf2c16e02013-01-23 18:08:04 -0800390 m_objectManager.objectsToLocalFile (deviceName, hash, filePath);
391
392 last_write_time (filePath, file->mtime ());
393 permissions (filePath, static_cast<filesystem::perms> (file->mode ()));
394 }
Zhenkai Zhuc3fd51e2013-01-22 10:45:54 -0800395}
Alexander Afanasyev0a30a0c2013-01-29 17:25:42 -0800396
397void
398Dispatcher::Restore_LocalFile_Execute (FileItemPtr file)
399{
400 _LOG_DEBUG ("Got request to restore local file [" << file->filename () << "]");
401 // the rest will gracefully fail if object-db is missing or incomplete
402
403 boost::filesystem::path filePath = m_rootDir / file->filename ();
404 Name deviceName (file->device_name ().c_str (), file->device_name ().size ());
405 Hash hash (file->file_hash ().c_str (), file->file_hash ().size ());
406
407 if (filesystem::exists (filePath) &&
408 filesystem::last_write_time (filePath) == file->mtime () &&
409 filesystem::status (filePath).permissions () == static_cast<filesystem::perms> (file->mode ()) &&
410 *Hash::FromFileContent (filePath) == hash)
411 {
412 _LOG_DEBUG ("Asking to assemble a file, but file already exists on a filesystem");
413 return;
414 }
415
416 m_objectManager.objectsToLocalFile (deviceName, hash, filePath);
417
418 last_write_time (filePath, file->mtime ());
419 permissions (filePath, static_cast<filesystem::perms> (file->mode ()));
420
421}