/* */ #include "DHTAutoSaveCommand.h" #include #include "DHTRoutingTable.h" #include "DHTNode.h" #include "File.h" #include "DHTRoutingTableSerializer.h" #include "RecoverableException.h" #include "DownloadEngine.h" #include "DHTBucket.h" #include "RequestGroupMan.h" #include "prefs.h" #include "Option.h" #include "message.h" #include "Logger.h" #include "LogFactory.h" #include "a2functional.h" #include "FileEntry.h" #include "DlAbortEx.h" #include "fmt.h" namespace aria2 { DHTAutoSaveCommand::DHTAutoSaveCommand(cuid_t cuid, DownloadEngine* e, int family, std::chrono::seconds interval) : TimeBasedCommand{cuid, e, std::move(interval)}, family_{family}, routingTable_{nullptr} { } DHTAutoSaveCommand::~DHTAutoSaveCommand() = default; void DHTAutoSaveCommand::preProcess() { if (getDownloadEngine()->getRequestGroupMan()->downloadFinished() || getDownloadEngine()->isHaltRequested()) { save(); enableExit(); } } void DHTAutoSaveCommand::process() { save(); } void DHTAutoSaveCommand::save() { std::string dhtFile = getDownloadEngine()->getOption()->get( family_ == AF_INET ? PREF_DHT_FILE_PATH : PREF_DHT_FILE_PATH6); A2_LOG_INFO(fmt("Saving DHT routing table to %s.", dhtFile.c_str())); // Removing tempFile is unnecessary because the file is truncated on // open. But the bug in 1.10.4 creates directory for this path. // Because it is directory, opening directory as file fails. So we // first remove it here. File tempFile(dhtFile + "__temp"); tempFile.remove(); File(File(dhtFile).getDirname()).mkdirs(); std::vector> nodes; std::vector> buckets; routingTable_->getBuckets(buckets); for (const auto& b : buckets) { std::vector> goodNodes; b->getGoodNodes(goodNodes); nodes.insert(nodes.end(), goodNodes.begin(), goodNodes.end()); } DHTRoutingTableSerializer serializer(family_); serializer.setLocalNode(localNode_); serializer.setNodes(nodes); try { serializer.serialize(dhtFile); } catch (RecoverableException& e) { A2_LOG_ERROR_EX(fmt("Exception caught while saving DHT routing table to %s", dhtFile.c_str()), e); } } void DHTAutoSaveCommand::setLocalNode(const std::shared_ptr& localNode) { localNode_ = localNode; } void DHTAutoSaveCommand::setRoutingTable(DHTRoutingTable* routingTable) { routingTable_ = routingTable; } } // namespace aria2