// rTorrent - BitTorrent client // Copyright (C) 2005, Jari Sundell // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // Contact: Jari Sundell // // Skomakerveien 33 // 3185 Skoppum, NORWAY #include "config.h" #include #include #include #include #include #include #include #include #include #include "download.h" #include "manager.h" #include "curl_get.h" namespace core { static void connect_signal_network_log(Download* d, torrent::Download::SlotString s) { d->get_download().signal_network_log(s); } void Manager::initialize() { torrent::Http::set_factory(m_poll.get_http_factory()); m_httpQueue.slot_factory(m_poll.get_http_factory()); CurlStack::init(); listen_open(); // Register slots to be called when a download is inserted/erased, // opened or closed. m_downloadList.slot_map_insert().insert("0_initialize_bencode", sigc::mem_fun(*this, &Manager::initialize_bencode)); m_downloadList.slot_map_insert().insert("1_connect_network_log", sigc::bind(sigc::ptr_fun(&connect_signal_network_log), sigc::mem_fun(m_logComplete, &Log::push_front))); m_downloadList.slot_map_insert().insert("3_manager_inserted", sigc::mem_fun(*this, &Manager::receive_download_inserted)); m_downloadList.slot_map_insert().insert("4_store_save", sigc::mem_fun(m_downloadStore, &DownloadStore::save)); m_downloadList.slot_map_erase().insert("1_hash_queue_remove", sigc::mem_fun(m_hashQueue, &HashQueue::remove)); m_downloadList.slot_map_erase().insert("1_store_remove", sigc::mem_fun(m_downloadStore, &DownloadStore::remove)); //m_downloadList.slot_map_open().insert("1_download_open", sigc::mem_fun(&Download::open)); m_downloadList.slot_map_open().insert("1_download_open", sigc::mem_fun(&Download::call)); // Currently does not call stop, might want to add a function that // checks if we're running, and if so stop? m_downloadList.slot_map_close().insert("1_download_close", sigc::mem_fun(&Download::call)); m_downloadList.slot_map_close().insert("1_hash_queue_remove", sigc::mem_fun(m_hashQueue, &HashQueue::remove)); m_downloadList.slot_map_start().insert("1_download_start", sigc::mem_fun(&Download::call)); m_downloadList.slot_map_stop().insert("1_download_stop", sigc::mem_fun(&Download::call)); m_downloadList.slot_map_stop().insert("2_hash_resume_save", sigc::mem_fun(&Download::call)); m_downloadList.slot_map_stop().insert("3_store_save", sigc::mem_fun(m_downloadStore, &DownloadStore::save)); m_downloadList.slot_map_finished().insert("1_download_done", sigc::bind(sigc::mem_fun(*this, &Manager::receive_download_done), false)); } void Manager::cleanup() { // Need to disconnect log signals? Not really since we won't receive // any more. torrent::cleanup(); core::CurlStack::cleanup(); } void Manager::shutdown(bool force) { if (!force) std::for_each(m_downloadList.begin(), m_downloadList.end(), std::bind1st(std::mem_fun(&DownloadList::stop), &m_downloadList)); else std::for_each(m_downloadList.begin(), m_downloadList.end(), std::bind1st(std::mem_fun(&DownloadList::close), &m_downloadList)); } void Manager::insert(std::string uri) { if (std::strncmp(uri.c_str(), "http://", 7) == 0) { create_http(uri); } else { std::fstream f(uri.c_str(), std::ios::in); create_final(&f); } } Manager::DListItr Manager::erase(DListItr itr) { if ((*itr)->get_download().is_active()) throw std::logic_error("core::Manager::erase(...) called on an active download"); if (!(*itr)->get_download().is_open()) throw std::logic_error("core::Manager::erase(...) called on an closed download"); return m_downloadList.erase(itr); } void Manager::start(Download* d) { try { d->get_bencode()["rtorrent"]["state"] = "started"; if (d->get_download().is_active()) return; if (!d->get_download().is_open()) m_downloadList.open(d); if (d->get_download().is_hash_checked()) m_downloadList.start(d); else // This can cause infinit loops. m_hashQueue.insert(d, sigc::bind(sigc::mem_fun(m_downloadList, &DownloadList::start), d)); } catch (torrent::local_error& e) { m_logImportant.push_front(e.what()); m_logComplete.push_front(e.what()); } } void Manager::stop(Download* d) { try { d->get_bencode()["rtorrent"]["state"] = "stopped"; m_downloadList.stop(d); } catch (torrent::local_error& e) { m_logImportant.push_front(e.what()); m_logComplete.push_front(e.what()); } } void Manager::check_hash(Download* d) { bool restart = d->get_download().is_active(); try { prepare_hash_check(d); if (restart) m_hashQueue.insert(d, sigc::bind(sigc::mem_fun(m_downloadList, &DownloadList::start), d)); else m_hashQueue.insert(d, sigc::slot0()); } catch (torrent::local_error& e) { m_logImportant.push_front(e.what()); m_logComplete.push_front(e.what()); } } void Manager::receive_download_done(Download* d, bool check_hash) { if (check_hash) { // Start the hash checking, send completed to tracker after // finishing. prepare_hash_check(d); // TODO: Need to restart the torrent. m_hashQueue.insert(d, sigc::bind(sigc::mem_fun(*this, &Manager::receive_download_done_hash_checked), d)); } else { receive_download_done_hash_checked(d); } } void Manager::listen_open() { if (m_portFirst > m_portLast) throw std::runtime_error("Invalid port range for listening"); if (m_portRandom) { int boundary = m_portFirst + random() % (m_portLast - m_portFirst + 1); if (!torrent::listen_open(boundary, m_portLast) && !torrent::listen_open(m_portFirst, boundary)) throw std::runtime_error("Could not open port for listening."); } else { if (!torrent::listen_open(m_portFirst, m_portLast)) throw std::runtime_error("Could not open port for listening."); } } void Manager::create_http(const std::string& uri) { core::HttpQueue::iterator itr = m_httpQueue.insert(uri); (*itr)->signal_done().slots().push_front(sigc::bind(sigc::mem_fun(*this, &core::Manager::create_final), (*itr)->get_stream())); (*itr)->signal_failed().slots().push_front(sigc::mem_fun(*this, &core::Manager::receive_http_failed)); } void Manager::create_final(std::istream* s) { try { m_downloadList.insert(s); } catch (torrent::local_error& e) { // What to do? Keep in list for now. m_logImportant.push_front(e.what()); m_logComplete.push_front(e.what()); } } void Manager::initialize_bencode(Download* d) { torrent::Bencode& bencode = d->get_bencode(); // TODO: Check that stuff are the right type, like state etc. if (bencode.has_key("rtorrent") && bencode["rtorrent"].is_map() && bencode["rtorrent"].has_key("state") && bencode["rtorrent"]["state"].is_string()) return; bencode.insert_key("rtorrent", torrent::Bencode(torrent::Bencode::TYPE_MAP)); bencode["rtorrent"].insert_key("state", "started"); } void Manager::prepare_hash_check(Download* d) { m_downloadList.close(d); d->get_download().hash_resume_clear(); m_downloadList.open(d); if (d->get_download().is_hash_checking() || d->get_download().is_hash_checked()) throw std::logic_error("Manager::check_hash(...) closed the torrent but is_hash_check{ing,ed}() == true"); if (m_hashQueue.find(d) != m_hashQueue.end()) throw std::logic_error("Manager::check_hash(...) closed the torrent but it was found in m_hashQueue"); } void Manager::receive_http_failed(std::string msg) { m_logImportant.push_front("Http download error: \"" + msg + "\""); m_logComplete.push_front("Http download error: \"" + msg + "\""); } void Manager::receive_download_done_hash_checked(Download* d) { if (!d->get_download().is_active()) m_downloadList.start(d); // Don't send if we did a hash check and found incompelete chunks. //if (d->is_done()) d->get_download().tracker_send_completed(); } void Manager::receive_download_inserted(Download* d) { // Check if there is an "rtorrent" section in the bencoded data. torrent::Bencode& bencode = d->get_bencode(); if (bencode["rtorrent"]["state"].as_string() == "started") start(d); } }