mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-13 05:32:31 +00:00
ca5b5e05ec
* Fixed rak::priority_queue. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@608 e378c898-3ddf-0310-93e7-cc216c733640
167 lines
4.6 KiB
C++
167 lines
4.6 KiB
C++
// 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
|
|
//
|
|
// In addition, as a special exception, the copyright holders give
|
|
// permission to link the code of portions of this program with the
|
|
// OpenSSL library under certain conditions as described in each
|
|
// individual source file, and distribute linked combinations
|
|
// including the two.
|
|
//
|
|
// You must obey the GNU General Public License in all respects for
|
|
// all of the code used other than OpenSSL. If you modify file(s)
|
|
// with this exception, you may extend this exception to your version
|
|
// of the file(s), but you are not obligated to do so. If you do not
|
|
// wish to do so, delete this exception statement from your version.
|
|
// If you delete this exception statement from all source files in the
|
|
// program, then also delete it here.
|
|
//
|
|
// Contact: Jari Sundell <jaris@ifi.uio.no>
|
|
//
|
|
// Skomakerveien 33
|
|
// 3185 Skoppum, NORWAY
|
|
|
|
#include "config.h"
|
|
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <stdexcept>
|
|
#include <torrent/bencode.h>
|
|
|
|
#include "curl_get.h"
|
|
#include "http_queue.h"
|
|
#include "globals.h"
|
|
#include "manager.h"
|
|
|
|
#include "download_factory.h"
|
|
|
|
namespace core {
|
|
|
|
DownloadFactory::DownloadFactory(const std::string& uri, Manager* m) :
|
|
m_manager(m),
|
|
m_stream(NULL),
|
|
m_commited(false),
|
|
m_loaded(false),
|
|
|
|
m_uri(uri),
|
|
m_session(false),
|
|
m_start(false) {
|
|
|
|
m_taskLoad.set_slot(rak::mem_fn(this, &DownloadFactory::receive_load));
|
|
m_taskCommit.set_slot(rak::mem_fn(this, &DownloadFactory::receive_commit));
|
|
}
|
|
|
|
DownloadFactory::~DownloadFactory() {
|
|
priority_queue_erase(&taskScheduler, &m_taskLoad);
|
|
priority_queue_erase(&taskScheduler, &m_taskCommit);
|
|
|
|
delete m_stream;
|
|
m_stream = NULL;
|
|
}
|
|
|
|
void
|
|
DownloadFactory::load() {
|
|
priority_queue_insert(&taskScheduler, &m_taskLoad, cachedTime);
|
|
}
|
|
|
|
void
|
|
DownloadFactory::commit() {
|
|
priority_queue_insert(&taskScheduler, &m_taskCommit, cachedTime);
|
|
}
|
|
|
|
void
|
|
DownloadFactory::receive_load() {
|
|
if (m_stream)
|
|
throw std::logic_error("DownloadFactory::load() called on an object with m_stream != NULL");
|
|
|
|
if (std::strncmp(m_uri.c_str(), "http://", 7) == 0) {
|
|
// Http handling here.
|
|
m_stream = new std::stringstream;
|
|
HttpQueue::iterator itr = m_manager->get_http_queue().insert(m_uri, m_stream);
|
|
|
|
(*itr)->signal_done().slots().push_front(sigc::mem_fun(*this, &DownloadFactory::receive_loaded));
|
|
(*itr)->signal_failed().slots().push_front(sigc::mem_fun(*this, &DownloadFactory::receive_failed));
|
|
|
|
} else {
|
|
m_stream = new std::fstream(m_uri.c_str(), std::ios::in);
|
|
|
|
if (m_stream->good())
|
|
receive_loaded();
|
|
else
|
|
receive_failed("Could not open file");
|
|
}
|
|
}
|
|
|
|
void
|
|
DownloadFactory::receive_loaded() {
|
|
m_loaded = true;
|
|
|
|
if (m_commited)
|
|
receive_success();
|
|
}
|
|
|
|
void
|
|
DownloadFactory::receive_commit() {
|
|
m_commited = true;
|
|
|
|
if (m_loaded)
|
|
receive_success();
|
|
}
|
|
|
|
void
|
|
DownloadFactory::receive_success() {
|
|
if (m_stream == NULL)
|
|
throw std::logic_error("DownloadFactory::receive_success() called on an object with m_stream == NULL");
|
|
|
|
Manager::DListItr itr = m_manager->insert(m_stream);
|
|
|
|
if (itr == m_manager->get_download_list().end()) {
|
|
// core::Manager should already have added the error message to
|
|
// the log.
|
|
m_slotFinished();
|
|
return;
|
|
}
|
|
|
|
if (m_session) {
|
|
torrent::Bencode& bencode = (*itr)->get_bencode();
|
|
|
|
if (bencode.get_key("rtorrent").get_key("state").as_string() == "started")
|
|
m_manager->start(*itr);
|
|
|
|
} else {
|
|
if (m_start)
|
|
m_manager->start(*itr);
|
|
|
|
m_manager->get_download_store().save(*itr);
|
|
}
|
|
|
|
m_slotFinished();
|
|
}
|
|
|
|
void
|
|
DownloadFactory::receive_failed(const std::string& msg) {
|
|
if (m_stream == NULL)
|
|
throw std::logic_error("DownloadFactory::receive_success() called on an object with m_stream == NULL");
|
|
|
|
// Add message to log.
|
|
m_manager->get_log_important().push_front(msg + ": \"" + m_uri + "\"");
|
|
m_manager->get_log_complete().push_front(msg + ": \"" + m_uri + "\"");
|
|
|
|
m_slotFinished();
|
|
}
|
|
|
|
}
|