blob: 179893e26a39116b8c5ac2c41709d9da44b5952e [file] [log] [blame]
Mickey Sweatt527b0492016-03-02 11:07:48 -08001#include "torrent-manager.hpp"
2
3#include "file-manifest.hpp"
4#include "torrent-file.hpp"
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -07005#include "util/io-util.hpp"
Mickey Sweatt617d2d42016-04-25 22:02:08 -07006#include "util/logging.hpp"
Mickey Sweatt527b0492016-03-02 11:07:48 -08007
8#include <boost/filesystem.hpp>
9#include <boost/filesystem/fstream.hpp>
10
11#include <ndn-cxx/data.hpp>
12#include <ndn-cxx/security/key-chain.hpp>
13#include <ndn-cxx/security/signing-helpers.hpp>
14#include <ndn-cxx/util/io.hpp>
15
16#include <set>
17#include <string>
18#include <unordered_map>
19#include <vector>
20
21namespace fs = boost::filesystem;
22
23using std::string;
24using std::vector;
25
Mickey Sweatt527b0492016-03-02 11:07:48 -080026namespace ndn {
27namespace ntorrent {
28
Mickey Sweatt527b0492016-03-02 11:07:48 -080029static vector<TorrentFile>
30intializeTorrentSegments(const string& torrentFilePath, const Name& initialSegmentName)
31{
32 security::KeyChain key_chain;
33 Name currSegmentFullName = initialSegmentName;
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -070034 vector<TorrentFile> torrentSegments = IoUtil::load_directory<TorrentFile>(torrentFilePath);
35
Mickey Sweatt527b0492016-03-02 11:07:48 -080036 // Starting with the initial segment name, verify the names, loading next name from torrentSegment
37 for (auto it = torrentSegments.begin(); it != torrentSegments.end(); ++it) {
38 TorrentFile& segment = *it;
39 key_chain.sign(segment, signingWithSha256());
40 if (segment.getFullName() != currSegmentFullName) {
41 vector<TorrentFile> correctSegments(torrentSegments.begin(), it);
42 torrentSegments.swap(correctSegments);
43 break;
44 }
45 // load the next full name
46 if (nullptr == segment.getTorrentFilePtr()) {
47 break;
48 }
49 currSegmentFullName = *segment.getTorrentFilePtr();
50 }
51 return torrentSegments;
52}
53
54static vector<FileManifest>
Mickey Sweatte908a5c2016-04-08 14:10:45 -070055intializeFileManifests(const string& manifestPath, const vector<TorrentFile>& torrentSegments)
Mickey Sweatt527b0492016-03-02 11:07:48 -080056{
57 security::KeyChain key_chain;
58
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -070059 vector<FileManifest> manifests = IoUtil::load_directory<FileManifest>(manifestPath);
Mickey Sweatte908a5c2016-04-08 14:10:45 -070060 if (manifests.empty()) {
61 return manifests;
62 }
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -070063
Mickey Sweatt527b0492016-03-02 11:07:48 -080064 // sign the manifests
65 std::for_each(manifests.begin(), manifests.end(),
66 [&key_chain](FileManifest& m){
67 key_chain.sign(m,signingWithSha256());
68 });
69
Mickey Sweatte908a5c2016-04-08 14:10:45 -070070 // put all names of initial manifests from the valid torrent files into a set
71 std::vector<ndn::Name> validInitialManifestNames;
Mickey Sweatt527b0492016-03-02 11:07:48 -080072 for (const auto& segment : torrentSegments) {
73 const auto& catalog = segment.getCatalog();
Mickey Sweatte908a5c2016-04-08 14:10:45 -070074 validInitialManifestNames.insert(validInitialManifestNames.end(),
75 catalog.begin(),
76 catalog.end());
Mickey Sweatt527b0492016-03-02 11:07:48 -080077 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -070078 auto manifest_it = manifests.begin();
79 std::vector<FileManifest> output;
80 output.reserve(manifests.size());
Mickey Sweatt527b0492016-03-02 11:07:48 -080081
Mickey Sweatte908a5c2016-04-08 14:10:45 -070082 for (auto& initialName : validInitialManifestNames) {
83 // starting from the initial segment
84 auto& validName = initialName;
85 if (manifests.end() == manifest_it) {
86 break;
87 }
88 auto fileName = manifest_it->file_name();
89 // sequential collect all valid segments
90 while (manifest_it != manifests.end() && manifest_it->getFullName() == validName) {
91 output.push_back(*manifest_it);
92 if (manifest_it->submanifest_ptr() != nullptr) {
93 validName = *manifest_it->submanifest_ptr();
94 ++manifest_it;
Mickey Sweatt527b0492016-03-02 11:07:48 -080095 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -070096 else {
97 ++manifest_it;
98 break;
99 }
100 }
101 // skip the remain segments for this file (all invalid)
102 while (manifests.end() != manifest_it && manifest_it->file_name() == fileName) {
103 ++manifest_it;
Mickey Sweatt527b0492016-03-02 11:07:48 -0800104 }
105 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700106 return output;
Mickey Sweatt527b0492016-03-02 11:07:48 -0800107}
108
109static vector<Data>
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700110initializeDataPackets(const string& filePath,
111 const FileManifest manifest,
112 size_t subManifestSize)
Mickey Sweatt527b0492016-03-02 11:07:48 -0800113{
114 vector<Data> packets;
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700115 auto subManifestNum = manifest.submanifest_number();
Mickey Sweatt527b0492016-03-02 11:07:48 -0800116
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700117 packets = IoUtil::packetize_file(filePath,
118 manifest.name(),
119 manifest.data_packet_size(),
120 subManifestSize,
121 subManifestNum);
Mickey Sweatt527b0492016-03-02 11:07:48 -0800122
123 auto catalog = manifest.catalog();
Mickey Sweatt527b0492016-03-02 11:07:48 -0800124 // Filter out invalid packet names
125 std::remove_if(packets.begin(), packets.end(),
126 [&packets, &catalog](const Data& p) {
127 return catalog.end() == std::find(catalog.begin(),
128 catalog.end(),
129 p.getFullName());
130 });
131 return packets;
132}
133
Mickey Sweattafda1f12016-04-04 17:15:11 -0700134static std::pair<std::shared_ptr<fs::fstream>, std::vector<bool>>
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700135initializeFileState(const string& dataPath,
136 const FileManifest& manifest,
137 size_t subManifestSize)
Mickey Sweattafda1f12016-04-04 17:15:11 -0700138{
139 // construct the file name
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700140 auto fileName = manifest.file_name();
Mickey Sweattafda1f12016-04-04 17:15:11 -0700141 auto filePath = dataPath + fileName;
142 vector<bool> fileBitMap(manifest.catalog().size());
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700143 // if the file does not exist, create an empty placeholder (otherwise cannot set read-bit)
144 if (!fs::exists(filePath)) {
145 fs::ofstream fs(filePath);
146 fs << "";
Mickey Sweattafda1f12016-04-04 17:15:11 -0700147 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700148 auto s = std::make_shared<fs::fstream>(filePath,
149 fs::fstream::out
150 | fs::fstream::binary
151 | fs::fstream::in);
152 if (!*s) {
153 BOOST_THROW_EXCEPTION(io::Error("Cannot open: " + filePath));
154 }
155 auto start_offset = manifest.submanifest_number() * subManifestSize * manifest.data_packet_size();
156 s->seekg(start_offset);
157 s->seekp(start_offset);
Mickey Sweattafda1f12016-04-04 17:15:11 -0700158 return std::make_pair(s, fileBitMap);
159}
160
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700161//==================================================================================================
162// TorrentManager Implementation
163//==================================================================================================
164
Mickey Sweatt527b0492016-03-02 11:07:48 -0800165void TorrentManager::Initialize()
166{
spirosmastorakis4ff8c872016-04-14 09:51:38 -0700167 // initialize the update handler
168
169 // figure out the name of the torrent
170 Name torrentName;
171 if (m_torrentFileName.get(m_torrentFileName.size() - 2).isSequenceNumber()) {
172 torrentName = m_torrentFileName.getSubName(1, m_torrentFileName.size() - 4);
173 }
174 else {
175 torrentName = m_torrentFileName.getSubName(1, m_torrentFileName.size() - 3);
176 }
177
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700178 // TODO(spyros) Get update manager working
Mickey Sweatt67133bf2016-04-25 12:37:35 -0700179 // m_updateHandler = make_shared<UpdateHandler>(torrentName, m_keyChain,
180 // make_shared<StatsTable>(m_statsTable), m_face);
spirosmastorakis4ff8c872016-04-14 09:51:38 -0700181
Mickey Sweatt527b0492016-03-02 11:07:48 -0800182 // .../<torrent_name>/torrent-file/<implicit_digest>
183 string dataPath = ".appdata/" + m_torrentFileName.get(-3).toUri();
184 string manifestPath = dataPath +"/manifests";
185 string torrentFilePath = dataPath +"/torrent_files";
186
187 // get the torrent file segments and manifests that we have.
188 if (!fs::exists(torrentFilePath)) {
189 return;
190 }
191 m_torrentSegments = intializeTorrentSegments(torrentFilePath, m_torrentFileName);
192 if (m_torrentSegments.empty()) {
193 return;
194 }
195 m_fileManifests = intializeFileManifests(manifestPath, m_torrentSegments);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700196
197 // get the submanifest sizes
Mickey Sweatt527b0492016-03-02 11:07:48 -0800198 for (const auto& m : m_fileManifests) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700199 if (m.submanifest_number() == 0) {
200 auto manifestFileName = m.file_name();
201 m_subManifestSizes[manifestFileName] = m.catalog().size();
Mickey Sweatt527b0492016-03-02 11:07:48 -0800202 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700203 }
204
205 for (const auto& m : m_fileManifests) {
Mickey Sweatt527b0492016-03-02 11:07:48 -0800206 // construct the file name
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700207 auto fileName = m.file_name();
Mickey Sweattafda1f12016-04-04 17:15:11 -0700208 fs::path filePath = m_dataPath + fileName;
Mickey Sweatt527b0492016-03-02 11:07:48 -0800209 // If there are any valid packets, add corresponding state to manager
Mickey Sweattafda1f12016-04-04 17:15:11 -0700210 if (!fs::exists(filePath)) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700211 if (!fs::exists(filePath.parent_path())) {
212 boost::filesystem::create_directories(filePath.parent_path());
213 }
Mickey Sweattafda1f12016-04-04 17:15:11 -0700214 continue;
215 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700216 auto packets = initializeDataPackets(filePath.string(), m, m_subManifestSizes[m.file_name()]);
Mickey Sweatt527b0492016-03-02 11:07:48 -0800217 if (!packets.empty()) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700218 m_fileStates[m.getFullName()] = initializeFileState(m_dataPath,
219 m,
220 m_subManifestSizes[m.file_name()]);
Mickey Sweattafda1f12016-04-04 17:15:11 -0700221 auto& fileBitMap = m_fileStates[m.getFullName()].second;
Mickey Sweatt527b0492016-03-02 11:07:48 -0800222 auto read_it = packets.begin();
223 size_t i = 0;
Mickey Sweattafda1f12016-04-04 17:15:11 -0700224 for (auto name : m.catalog()) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700225 if (read_it == packets.end()) {
226 break;
227 }
Mickey Sweatt527b0492016-03-02 11:07:48 -0800228 if (name == read_it->getFullName()) {
229 ++read_it;
Mickey Sweattafda1f12016-04-04 17:15:11 -0700230 fileBitMap[i] = true;
Mickey Sweatt527b0492016-03-02 11:07:48 -0800231 }
232 ++i;
233 }
234 for (const auto& d : packets) {
235 seed(d);
236 }
Mickey Sweatt527b0492016-03-02 11:07:48 -0800237 }
238 }
239 for (const auto& t : m_torrentSegments) {
240 seed(t);
241 }
242 for (const auto& m : m_fileManifests) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700243 seed(m);
Mickey Sweatt527b0492016-03-02 11:07:48 -0800244 }
Mickey Sweattafda1f12016-04-04 17:15:11 -0700245}
Mickey Sweatt527b0492016-03-02 11:07:48 -0800246
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700247shared_ptr<Name>
248TorrentManager::findTorrentFileSegmentToDownload() const
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700249{
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700250 // if we have no segments
251 if (m_torrentSegments.empty()) {
252 return make_shared<Name>(m_torrentFileName);
253 }
254 // otherwise just return the next segment ptr of the last segment we have
255 return m_torrentSegments.back().getTorrentFilePtr();
256}
257
258shared_ptr<Name>
259TorrentManager::findManifestSegmentToDownload(const Name& manifestName) const
260{
261 //sequentially find whether we have downloaded any segments of this manifest file
262 Name manifestPrefix = manifestName.getSubName(0, manifestName.size() - 2);
263 auto it = std::find_if(m_fileManifests.rbegin(), m_fileManifests.rend(),
264 [&manifestPrefix] (const FileManifest& f) {
265 return manifestPrefix.isPrefixOf(f.getName());
266 });
267
268 // if we do not have any segments of the file manifest
269 if (it == m_fileManifests.rend()) {
270 return make_shared<Name>(manifestName);
271 }
272
273 // if we already have the requested segment of the file manifest
274 if (it->submanifest_number() >= manifestName.get(manifestName.size() - 2).toSequenceNumber()) {
275 return it->submanifest_ptr();
276 }
277 // if we do not have the requested segment
278 else {
279 return make_shared<Name>(manifestName);
280 }
281}
282
283void
284TorrentManager::findFileManifestsToDownload(std::vector<Name>& manifestNames) const
285{
286 std::vector<Name> manifests;
287 // insert the first segment name of all the file manifests to the vector
288 for (auto i = m_torrentSegments.begin(); i != m_torrentSegments.end(); i++) {
289 manifests.insert(manifests.end(), i->getCatalog().begin(), i->getCatalog().end());
290 }
291 // for each file
292 for (const auto& manifestName : manifests) {
293 // find the first (if any) segment we are missing
294 shared_ptr<Name> manifestSegmentName = findManifestSegmentToDownload(manifestName);
295 if (nullptr != manifestSegmentName) {
296 manifestNames.push_back(*manifestSegmentName);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700297 }
298 }
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700299}
300
301bool
302TorrentManager::hasDataPacket(const Name& dataName) const
303{
304
305 auto manifest_it = std::find_if(m_fileManifests.begin(), m_fileManifests.end(),
306 [&dataName](const FileManifest& m) {
307 return m.getName().isPrefixOf(dataName);
308 });
309
310 // if we do not have the file manifest, just return false
311 if (manifest_it == m_fileManifests.end()) {
312 return false;
313 }
314
315 // find the pair of (std::shared_ptr<fs::fstream>, std::vector<bool>)
316 // that corresponds to the specific submanifest
317 auto fileState_it = m_fileStates.find(manifest_it->getFullName());
318 if (m_fileStates.end() != fileState_it) {
319 const auto& fileState = fileState_it->second;
320 auto dataNum = dataName.get(dataName.size() - 2).toSequenceNumber();
321 // find whether we have the requested packet from the bitmap
322 return fileState.second[dataNum];
323 }
324 return false;
325}
326
327void
328TorrentManager::findDataPacketsToDownload(const Name& manifestName, std::vector<Name>& packetNames) const
329{
330 auto manifest_it = std::find_if(m_fileManifests.begin(), m_fileManifests.end(),
331 [&manifestName](const FileManifest& m) {
332 return m.name().getSubName(0, m.name().size()
333 - 1).isPrefixOf(manifestName);
334 });
335
336 for (auto j = manifest_it; j != m_fileManifests.end(); j++) {
337 auto& fileState = m_fileStates[j->getFullName()];
338 for (size_t dataNum = 0; dataNum < j->catalog().size(); ++dataNum) {
339 if (!fileState.second[dataNum]) {
340 packetNames.push_back(j->catalog()[dataNum]);
341 }
342 }
343
344 // check that the next manifest in the vector refers to the next segment of the same file
345 if ((j + 1) != m_fileManifests.end() && (j+1)->file_name() != manifest_it->file_name()) {
346 break;
347 }
348 }
349}
350
351void
352TorrentManager::findAllMissingDataPackets(std::vector<Name>& packetNames) const
353{
354 for (auto j = m_fileManifests.begin(); j != m_fileManifests.end(); ++j) {
355 auto fileState_it = m_fileStates.find(j->getFullName());
356 // if we have no packets from this file
357 if (m_fileStates.end() == fileState_it) {
358 packetNames.reserve(packetNames.size() + j->catalog().size());
359 packetNames.insert(packetNames.end(), j->catalog().begin(), j->catalog().end());
360 }
361 // find the packets that we are missing
362 else {
363 const auto &fileState = fileState_it->second;
364 for (auto i = j->catalog().begin(); i != j->catalog().end(); i++) {
365 auto dataNum = i->get(i->size() - 2).toSequenceNumber();
366 if (!fileState.second[dataNum]) {
367 packetNames.push_back(*i);
368 }
369 }
370 }
371 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700372}
373
374void
375TorrentManager::downloadTorrentFileSegment(const ndn::Name& name,
376 const std::string& path,
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700377 TorrentFileReceivedCallback onSuccess,
378 FailedCallback onFailed)
379{
380 shared_ptr<Interest> interest = createInterest(name);
381
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700382 auto dataReceived = [path, onSuccess, onFailed, this]
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700383 (const Interest& interest, const Data& data) {
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700384 m_pendingInterests.erase(interest.getName());
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700385 // Stats Table update here...
386 m_stats_table_iter->incrementReceivedData();
387 m_retries = 0;
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700388 std::vector<Name> manifestNames;
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700389 TorrentFile file(data.wireEncode());
390
391 // Write the torrent file segment to disk...
392 if (writeTorrentSegment(file, path)) {
393 // if successfully written, seed this data
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700394 seed(file);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700395 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700396 const std::vector<Name>& manifestCatalog = file.getCatalog();
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700397 manifestNames.insert(manifestNames.end(), manifestCatalog.begin(), manifestCatalog.end());
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700398
399 shared_ptr<Name> nextSegmentPtr = file.getTorrentFilePtr();
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700400 if (onSuccess) {
401 onSuccess(manifestNames);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700402 }
403 if (nextSegmentPtr != nullptr) {
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700404 this->downloadTorrentFileSegment(*nextSegmentPtr, path, onSuccess, onFailed);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700405 }
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700406 if (!m_seedFlag && m_pendingInterests.empty()) {
407 shutdown();
408 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700409 };
410
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700411 auto dataFailed = [path, name, onSuccess, onFailed, this]
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700412 (const Interest& interest) {
413 ++m_retries;
414 if (m_retries >= MAX_NUM_OF_RETRIES) {
415 ++m_stats_table_iter;
416 if (m_stats_table_iter == m_statsTable.end()) {
417 m_stats_table_iter = m_statsTable.begin();
418 }
419 }
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700420 if (onFailed) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700421 onFailed(interest.getName(), "Unknown error");
422 }
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700423 this->downloadTorrentFileSegment(name, path, onSuccess, onFailed);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700424 };
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700425 m_pendingInterests.insert(interest->getName());
426 LOG_DEBUG << "Sending: " << *interest << std::endl;
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700427 m_face->expressInterest(*interest, dataReceived, dataFailed);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700428}
429
430void
431TorrentManager::downloadTorrentFile(const std::string& path,
432 TorrentFileReceivedCallback onSuccess,
433 FailedCallback onFailed)
434{
435 shared_ptr<Name> searchRes = this->findTorrentFileSegmentToDownload();
436 auto manifestNames = make_shared<std::vector<Name>>();
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700437 if (searchRes != nullptr) {
438 this->downloadTorrentFileSegment(*searchRes, path, onSuccess, onFailed);
439 }
440 else {
441 std::vector<Name> manifests;
442 findFileManifestsToDownload(manifests);
443 if (onSuccess) {
444 onSuccess(manifests);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700445 }
446 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700447}
448
449void
450TorrentManager::download_file_manifest(const Name& manifestName,
451 const std::string& path,
452 TorrentManager::ManifestReceivedCallback onSuccess,
453 TorrentManager::FailedCallback onFailed)
454{
455 shared_ptr<Name> searchRes = findManifestSegmentToDownload(manifestName);
456 auto packetNames = make_shared<std::vector<Name>>();
457 if (searchRes == nullptr) {
458 this->findDataPacketsToDownload(manifestName, *packetNames);
459 onSuccess(*packetNames);
460 return;
461 }
462 this->downloadFileManifestSegment(*searchRes, path, packetNames, onSuccess, onFailed);
463}
464
465void
466TorrentManager::download_data_packet(const Name& packetName,
467 DataReceivedCallback onSuccess,
468 FailedCallback onFailed)
469{
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700470 if (this->hasDataPacket(packetName)) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700471 onSuccess(packetName);
472 return;
473 }
474
475 shared_ptr<Interest> interest = this->createInterest(packetName);
476
477 auto dataReceived = [onSuccess, onFailed, this]
478 (const Interest& interest, const Data& data) {
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700479 m_pendingInterests.erase(interest.getName());
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700480 // Write data to disk...
481 if(writeData(data)) {
482 seed(data);
483 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700484 // Stats Table update here...
485 m_stats_table_iter->incrementReceivedData();
486 m_retries = 0;
487 onSuccess(data.getName());
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700488 if (!m_seedFlag && m_pendingInterests.empty()) {
489 shutdown();
490 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700491 };
492 auto dataFailed = [onFailed, this]
493 (const Interest& interest) {
494 m_retries++;
495 if (m_retries >= MAX_NUM_OF_RETRIES) {
496 m_stats_table_iter++;
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700497 if (m_stats_table_iter == m_statsTable.end()) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700498 m_stats_table_iter = m_statsTable.begin();
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700499 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700500 }
501 onFailed(interest.getName(), "Unknown failure");
502 };
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700503 m_pendingInterests.insert(interest->getName());
504 LOG_DEBUG << "Sending: " << *interest << std::endl;
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700505 m_face->expressInterest(*interest, dataReceived, dataFailed);
506}
507
508void TorrentManager::seed(const Data& data) {
509 m_face->setInterestFilter(data.getFullName(),
510 bind(&TorrentManager::onInterestReceived, this, _1, _2),
511 RegisterPrefixSuccessCallback(),
512 bind(&TorrentManager::onRegisterFailed, this, _1, _2));
513}
514
515// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
516// Protected Helpers
517// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
518
Mickey Sweattafda1f12016-04-04 17:15:11 -0700519bool TorrentManager::writeData(const Data& packet)
520{
521 // find correct manifest
522 const auto& packetName = packet.getName();
523 auto manifest_it = std::find_if(m_fileManifests.begin(), m_fileManifests.end(),
524 [&packetName](const FileManifest& m) {
525 return m.getName().isPrefixOf(packetName);
526 });
527 if (m_fileManifests.end() == manifest_it) {
528 return false;
529 }
530 // get file state out
531 auto& fileState = m_fileStates[manifest_it->getFullName()];
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700532
Mickey Sweattafda1f12016-04-04 17:15:11 -0700533 // if there is no open stream to the file
534 if (nullptr == fileState.first) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700535 fs::path filePath = m_dataPath + manifest_it->file_name();
536 if (!fs::exists(filePath)) {
537 fs::create_directories(filePath.parent_path());
538 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700539 fileState = initializeFileState(m_dataPath,
540 *manifest_it,
541 m_subManifestSizes[manifest_it->file_name()]);
Mickey Sweattafda1f12016-04-04 17:15:11 -0700542 }
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700543 auto packetNum = packetName.get(packetName.size() - 1).toSequenceNumber();
Mickey Sweattafda1f12016-04-04 17:15:11 -0700544 // if we already have the packet, do not rewrite it.
545 if (fileState.second[packetNum]) {
546 return false;
547 }
Mickey Sweattafda1f12016-04-04 17:15:11 -0700548 // write data to disk
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700549 // TODO(msweatt) Fix this once code is merged
550 auto subManifestSize = m_subManifestSizes[manifest_it->file_name()];
551 if (IoUtil::writeData(packet, *manifest_it, subManifestSize, *fileState.first)) {
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700552 fileState.first->flush();
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700553 // update bitmap
554 fileState.second[packetNum] = true;
555 return true;
Mickey Sweattafda1f12016-04-04 17:15:11 -0700556 }
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700557 return false;
Mickey Sweatt527b0492016-03-02 11:07:48 -0800558}
559
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700560bool
561TorrentManager::writeTorrentSegment(const TorrentFile& segment, const std::string& path)
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700562{
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700563 // validate the torrent
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700564 auto torrentPrefix = m_torrentFileName.getSubName(0, m_torrentFileName.size() - 1);
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700565 // check if we already have it
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700566 if (torrentPrefix.isPrefixOf(segment.getName()) &&
567 m_torrentSegments.end() == std::find(m_torrentSegments.begin(), m_torrentSegments.end(),
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700568 segment))
569 {
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700570 if(IoUtil::writeTorrentSegment(segment, path)) {
571 auto it = std::find_if(m_torrentSegments.begin(), m_torrentSegments.end(),
572 [&segment](const TorrentFile& t){
573 return segment.getSegmentNumber() < t.getSegmentNumber() ;
574 });
575 m_torrentSegments.insert(it, segment);
576 return true;
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700577 }
578 }
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700579 return false;
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700580}
581
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700582
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700583bool TorrentManager::writeFileManifest(const FileManifest& manifest, const std::string& path)
584{
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700585 if (m_fileManifests.end() == std::find(m_fileManifests.begin(), m_fileManifests.end(),
586 manifest))
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700587 {
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700588 // update the state of the manager
589 if (0 == manifest.submanifest_number()) {
590 m_subManifestSizes[manifest.file_name()] = manifest.catalog().size();
591 }
592 if(IoUtil::writeFileManifest(manifest, path)) {
593 // add to collection
594 auto it = std::find_if(m_fileManifests.begin(), m_fileManifests.end(),
595 [&manifest](const FileManifest& m){
596 return m.file_name() > manifest.file_name()
597 || (m.file_name() == manifest.file_name()
598 && (m.submanifest_number() > manifest.submanifest_number()));
599 });
600 m_fileManifests.insert(it, manifest);
601 return true;
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700602 }
603 }
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700604 return false;
Mickey Sweatt599bfef2016-04-05 19:11:20 -0700605}
606
spirosmastorakisa46eee42016-04-05 14:24:45 -0700607void
608TorrentManager::downloadFileManifestSegment(const Name& manifestName,
609 const std::string& path,
610 std::shared_ptr<std::vector<Name>> packetNames,
611 TorrentManager::ManifestReceivedCallback onSuccess,
612 TorrentManager::FailedCallback onFailed)
613{
614 shared_ptr<Interest> interest = this->createInterest(manifestName);
615
616 auto dataReceived = [packetNames, path, onSuccess, onFailed, this]
617 (const Interest& interest, const Data& data) {
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700618 m_pendingInterests.erase(interest.getName());
spirosmastorakisa46eee42016-04-05 14:24:45 -0700619 // Stats Table update here...
620 m_stats_table_iter->incrementReceivedData();
621 m_retries = 0;
622
623 FileManifest file(data.wireEncode());
624
625 // Write the file manifest segment to disk...
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700626 if(writeFileManifest(file, path)) {
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700627 seed(file);
628 }
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700629 else {
630 onFailed(interest.getName(), "Write Failed");
631 }
spirosmastorakisa46eee42016-04-05 14:24:45 -0700632
633 const std::vector<Name>& packetsCatalog = file.catalog();
634 packetNames->insert(packetNames->end(), packetsCatalog.begin(), packetsCatalog.end());
635 shared_ptr<Name> nextSegmentPtr = file.submanifest_ptr();
636 if (nextSegmentPtr != nullptr) {
637 this->downloadFileManifestSegment(*nextSegmentPtr, path, packetNames, onSuccess, onFailed);
638 }
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700639 else {
spirosmastorakisa46eee42016-04-05 14:24:45 -0700640 onSuccess(*packetNames);
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700641 }
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700642 if (!m_seedFlag && m_pendingInterests.empty()) {
643 shutdown();
644 }
spirosmastorakisa46eee42016-04-05 14:24:45 -0700645 };
646
647 auto dataFailed = [packetNames, path, manifestName, onFailed, this]
648 (const Interest& interest) {
649 m_retries++;
650 if (m_retries >= MAX_NUM_OF_RETRIES) {
651 m_stats_table_iter++;
652 if (m_stats_table_iter == m_statsTable.end())
653 m_stats_table_iter = m_statsTable.begin();
654 }
655 onFailed(interest.getName(), "Unknown failure");
656 };
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700657 m_pendingInterests.insert(interest->getName());
658 LOG_DEBUG << "Sending: " << *interest << std::endl;
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700659 m_face->expressInterest(*interest, dataReceived, dataFailed);
spirosmastorakisa46eee42016-04-05 14:24:45 -0700660}
661
662void
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700663TorrentManager::onInterestReceived(const InterestFilter& filter, const Interest& interest)
spirosmastorakisa46eee42016-04-05 14:24:45 -0700664{
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700665 // handle if it is a torrent-file
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700666 LOG_DEBUG << "Interest Recevied: " << interest << std::endl;
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700667 const auto& interestName = interest.getName();
668 std::shared_ptr<Data> data = nullptr;
669 auto cmp = [&interestName](const Data& t){return t.getFullName() == interestName;};
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700670 // determine if it is torrent file (that we have)
671 auto torrent_it = std::find_if(m_torrentSegments.begin(), m_torrentSegments.end(), cmp);
672 if (m_torrentSegments.end() != torrent_it) {
673 data = std::make_shared<Data>(*torrent_it);
spirosmastorakis50642f82016-04-08 12:11:18 -0700674 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700675 else {
676 // determine if it is manifest (that we have)
677 auto manifest_it = std::find_if(m_fileManifests.begin(), m_fileManifests.end(), cmp);
678 if (m_fileManifests.end() != manifest_it) {
679 data = std::make_shared<Data>(*manifest_it) ;
spirosmastorakisa46eee42016-04-05 14:24:45 -0700680 }
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700681 else {
682 // determine if it is data packet (that we have)
683 auto manifestName = interestName.getSubName(0, interestName.size() - 2);
684 auto map_it = std::find_if(m_fileStates.begin(), m_fileStates.end(),
685 [&manifestName](const std::pair<Name,
686 std::pair<std::shared_ptr<fs::fstream>,
687 std::vector<bool>>>& kv){
688 return manifestName.isPrefixOf(kv.first);
689 });
690 if (m_fileStates.end() != map_it) {
691 auto packetName = interestName.getSubName(0, interestName.size() - 1);
692 // get out the bitmap to be sure we have the packet
693 auto& fileState = map_it->second;
694 const auto &bitmap = fileState.second;
695 auto packetNum = packetName.get(packetName.size() - 1).toSequenceNumber();
696 if (bitmap[packetNum]) {
697 // get the manifest
698 auto manifest_it = std::find_if(m_fileManifests.begin(), m_fileManifests.end(),
699 [&manifestName](const FileManifest& m) {
700 return manifestName.isPrefixOf(m.name());
701 });
702 auto manifestFileName = manifest_it->file_name();
703 auto filePath = m_dataPath + manifestFileName;
704 // TODO(msweatt) Explore why fileState stream does not work
705 fs::fstream is (filePath, fs::fstream::in | fs::fstream::binary);
Mickey Sweattfcbfb3d2016-04-13 17:05:17 -0700706 data = IoUtil::readDataPacket(interestName,
707 *manifest_it,
708 m_subManifestSizes[manifestFileName],
709 is);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700710 }
711 }
712 }
713 }
714 if (nullptr != data) {
715 m_face->put(*data);
716 }
717 else {
718 // TODO(msweatt) NACK
Mickey Sweatt617d2d42016-04-25 22:02:08 -0700719 LOG_ERROR << "NACK: " << interest << std::endl;
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700720 }
721 return;
spirosmastorakisa46eee42016-04-05 14:24:45 -0700722}
723
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700724void
725TorrentManager::onRegisterFailed(const Name& prefix, const std::string& reason)
spirosmastorakisa46eee42016-04-05 14:24:45 -0700726{
Mickey Sweatt617d2d42016-04-25 22:02:08 -0700727 LOG_ERROR << "ERROR: Failed to register prefix \""
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700728 << prefix << "\" in local hub's daemon (" << reason << ")"
729 << std::endl;
Mickey Sweatt44e4fd92016-05-02 15:43:11 -0700730 shutdown();
spirosmastorakisa46eee42016-04-05 14:24:45 -0700731}
732
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700733shared_ptr<Interest>
734TorrentManager::createInterest(Name name)
735{
736 shared_ptr<Interest> interest = make_shared<Interest>(name);
737 interest->setInterestLifetime(time::milliseconds(2000));
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700738
739 // Select routable prefix
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700740 // TODO(spyros) Fix links
741 // Link link(name, { {1, m_stats_table_iter->getRecordName()} });
742 // m_keyChain->sign(link, signingWithSha256());
743 // Block linkWire = link.wireEncode();
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700744
745 // Stats Table update here...
746 m_stats_table_iter->incrementSentInterests();
747
748 m_sortingCounter++;
749 if (m_sortingCounter >= SORTING_INTERVAL) {
spirosmastorakis4ff8c872016-04-14 09:51:38 -0700750 // Use the sorting interval to send out "ALIVE" Interests as well
751 // check whether we should send out an "ALIVE" Interest
Mickey Sweatt67133bf2016-04-25 12:37:35 -0700752 // if (m_updateHandler->needsUpdate()) {
753 // m_updateHandler->sendAliveInterest(m_stats_table_iter);
754 // }
spirosmastorakis4ff8c872016-04-14 09:51:38 -0700755 // Do the actual sorting related stuff
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700756 m_sortingCounter = 0;
757 m_statsTable.sort();
758 m_stats_table_iter = m_statsTable.begin();
759 m_retries = 0;
760 }
761
Mickey Sweatt15dde2d2016-04-28 23:42:45 -0700762 // interest->setLink(linkWire);
Mickey Sweatte908a5c2016-04-08 14:10:45 -0700763
764 return interest;
765}
766
Mickey Sweatt527b0492016-03-02 11:07:48 -0800767} // end ntorrent
spirosmastorakisfd334462016-04-18 15:48:31 -0700768} // end ndn