2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <cctype>
|
2003-10-30 00:28:09 +01:00
|
|
|
#include <numeric>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/filesystem/convenience.hpp>
|
|
|
|
|
2003-10-26 18:35:23 +01:00
|
|
|
#include "libtorrent/torrent_handle.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
|
|
|
#include "libtorrent/url_handler.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/peer.hpp"
|
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1300
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
using ::isalnum;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// wait 60 seconds before retrying a failed tracker
|
|
|
|
tracker_retry_delay = 60
|
|
|
|
};
|
|
|
|
|
|
|
|
int calculate_block_size(const torrent_info& i)
|
|
|
|
{
|
2003-10-23 18:55:52 +02:00
|
|
|
// TODO: if blocks_per_piece > 128 increase block-size
|
2003-10-23 01:00:57 +02:00
|
|
|
return 16*1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
peer extract_peer_info(const entry& e)
|
|
|
|
{
|
|
|
|
peer ret;
|
|
|
|
|
|
|
|
const entry::dictionary_type& info = e.dict();
|
|
|
|
|
|
|
|
// extract peer id
|
|
|
|
entry::dictionary_type::const_iterator i = info.find("peer id");
|
|
|
|
if (i == info.end()) throw std::runtime_error("invalid response from tracker");
|
|
|
|
if (i->second.string().length() != 20) throw std::runtime_error("invalid response from tracker");
|
|
|
|
std::copy(i->second.string().begin(), i->second.string().end(), ret.id.begin());
|
|
|
|
|
|
|
|
// extract ip
|
|
|
|
i = info.find("ip");
|
|
|
|
if (i == info.end()) throw std::runtime_error("invalid response from tracker");
|
|
|
|
ret.ip = i->second.string();
|
|
|
|
|
|
|
|
// extract port
|
|
|
|
i = info.find("port");
|
|
|
|
if (i == info.end()) throw std::runtime_error("invalid response from tracker");
|
|
|
|
ret.port = i->second.integer();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string escape_string(const char* str, int len)
|
|
|
|
{
|
|
|
|
std::stringstream ret;
|
|
|
|
ret << std::hex << std::setfill('0');
|
|
|
|
for (int i = 0; i < len; ++i)
|
|
|
|
{
|
|
|
|
// TODO: should alnum() be replaced with printable()?
|
|
|
|
if (std::isalnum(static_cast<unsigned char>(*str))) ret << *str;
|
|
|
|
else ret << "%" << std::setw(2) << (int)static_cast<unsigned char>(*str);
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
return ret.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
struct find_peer
|
|
|
|
{
|
|
|
|
find_peer(const peer_id& i, const torrent* t): id(i), tor(t) {}
|
|
|
|
|
|
|
|
bool operator()(const detail::session_impl::connection_map::value_type& c) const
|
|
|
|
{
|
|
|
|
if (c.second->get_peer_id() != id) return false;
|
|
|
|
if (tor != c.second->associated_torrent()) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-12-01 06:01:40 +01:00
|
|
|
bool operator()(const peer_connection* p) const
|
|
|
|
{
|
|
|
|
if (p->get_peer_id() != id) return false;
|
|
|
|
if (tor != p->associated_torrent()) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
const peer_id& id;
|
|
|
|
const torrent* tor;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
|
|
|
torrent::torrent(detail::session_impl* ses, const torrent_info& torrent_file)
|
|
|
|
: m_block_size(calculate_block_size(torrent_file))
|
|
|
|
, m_abort(false)
|
|
|
|
, m_event(event_started)
|
|
|
|
, m_bytes_uploaded(0)
|
|
|
|
, m_bytes_downloaded(0)
|
|
|
|
, m_torrent_file(torrent_file)
|
|
|
|
, m_next_request(boost::posix_time::second_clock::local_time())
|
|
|
|
, m_duration(1800)
|
|
|
|
, m_policy(new policy(this))
|
|
|
|
, m_ses(ses)
|
|
|
|
, m_picker(torrent_file.piece_length() / m_block_size,
|
|
|
|
(torrent_file.total_size()+m_block_size-1)/m_block_size)
|
|
|
|
, m_last_working_tracker(0)
|
|
|
|
, m_currently_trying_tracker(0)
|
2003-12-01 06:01:40 +01:00
|
|
|
, m_time_scaler(0)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void torrent::tracker_response(const entry& e)
|
|
|
|
{
|
2003-10-23 18:55:52 +02:00
|
|
|
std::vector<peer> peer_list;
|
2003-10-23 01:00:57 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
// parse the response
|
2003-10-23 18:55:52 +02:00
|
|
|
parse_response(e, peer_list);
|
|
|
|
|
|
|
|
m_last_working_tracker
|
|
|
|
= m_torrent_file.prioritize_tracker(m_currently_trying_tracker);
|
|
|
|
m_next_request = boost::posix_time::second_clock::local_time()
|
|
|
|
+ boost::posix_time::seconds(m_duration);
|
|
|
|
m_currently_trying_tracker = 0;
|
|
|
|
|
|
|
|
// connect to random peers from the list
|
|
|
|
std::random_shuffle(peer_list.begin(), peer_list.end());
|
|
|
|
|
2003-11-05 00:27:06 +01:00
|
|
|
|
2003-10-23 18:55:52 +02:00
|
|
|
std::cout << "interval: " << m_duration << "\n";
|
|
|
|
std::cout << "peers:\n";
|
|
|
|
for (std::vector<peer>::const_iterator i = peer_list.begin();
|
|
|
|
i != peer_list.end();
|
|
|
|
++i)
|
|
|
|
{
|
|
|
|
std::cout << " " << std::setfill(' ') << std::setw(16) << i->ip
|
2003-11-05 00:27:06 +01:00
|
|
|
<< " " << std::setw(5) << std::dec << i->port << " "
|
|
|
|
<< i->id << " " << extract_fingerprint(i->id) << "\n";
|
2003-10-23 18:55:52 +02:00
|
|
|
}
|
2003-11-02 22:06:50 +01:00
|
|
|
std::cout << std::setfill(' ');
|
2003-10-23 18:55:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
// for each of the peers we got from the tracker
|
|
|
|
for (std::vector<peer>::iterator i = peer_list.begin();
|
|
|
|
i != peer_list.end();
|
|
|
|
++i)
|
|
|
|
{
|
|
|
|
// don't make connections to ourself
|
|
|
|
if (i->id == m_ses->get_peer_id())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
address a(i->ip, i->port);
|
|
|
|
|
|
|
|
// if we aleady have a connection to the person, don't make another one
|
|
|
|
if (std::find_if(m_ses->m_connections.begin(),
|
|
|
|
m_ses->m_connections.end(),
|
|
|
|
find_peer(i->id, this)) != m_ses->m_connections.end())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_policy->peer_from_tracker(a, i->id);
|
|
|
|
}
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
catch(type_error& e)
|
|
|
|
{
|
|
|
|
tracker_request_error(e.what());
|
|
|
|
}
|
|
|
|
catch(std::runtime_error& e)
|
|
|
|
{
|
|
|
|
tracker_request_error(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-12-01 06:01:40 +01:00
|
|
|
bool torrent::has_peer(const peer_id& id) const
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2003-12-01 06:01:40 +01:00
|
|
|
assert(std::count_if(m_connections.begin()
|
|
|
|
, m_connections.end()
|
|
|
|
, find_peer(id, this)) <= 1);
|
|
|
|
|
|
|
|
return std::find_if(
|
|
|
|
m_connections.begin()
|
|
|
|
, m_connections.end()
|
|
|
|
, find_peer(id, this))
|
|
|
|
!= m_connections.end();
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void torrent::announce_piece(int index)
|
|
|
|
{
|
|
|
|
m_picker.we_have(index);
|
|
|
|
for (std::vector<peer_connection*>::iterator i = m_connections.begin(); i != m_connections.end(); ++i)
|
|
|
|
(*i)->announce_piece(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string torrent::generate_tracker_request(int port)
|
|
|
|
{
|
|
|
|
m_duration = 1800;
|
|
|
|
m_next_request = boost::posix_time::second_clock::local_time() + boost::posix_time::seconds(m_duration);
|
|
|
|
|
|
|
|
std::vector<char> buffer;
|
|
|
|
std::string request = m_torrent_file.trackers()[m_currently_trying_tracker].url;
|
|
|
|
|
|
|
|
request += "?info_hash=";
|
|
|
|
request += escape_string(reinterpret_cast<const char*>(m_torrent_file.info_hash().begin()), 20);
|
|
|
|
|
|
|
|
request += "&peer_id=";
|
|
|
|
request += escape_string(reinterpret_cast<const char*>(m_ses->get_peer_id().begin()), 20);
|
|
|
|
|
|
|
|
request += "&port=";
|
|
|
|
request += boost::lexical_cast<std::string>(port);
|
|
|
|
|
|
|
|
request += "&uploaded=";
|
|
|
|
request += boost::lexical_cast<std::string>(m_bytes_uploaded);
|
|
|
|
|
|
|
|
request += "&downloaded=";
|
|
|
|
request += boost::lexical_cast<std::string>(m_bytes_downloaded);
|
|
|
|
|
|
|
|
request += "&left=";
|
|
|
|
request += boost::lexical_cast<std::string>(m_storage.bytes_left());
|
|
|
|
|
|
|
|
if (m_event != event_none)
|
|
|
|
{
|
|
|
|
const char* event_string[] = {"started", "stopped", "completed"};
|
|
|
|
request += "&event=";
|
|
|
|
request += event_string[m_event];
|
|
|
|
m_event = event_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
2003-10-23 18:55:52 +02:00
|
|
|
void torrent::parse_response(const entry& e, std::vector<peer>& peer_list)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
entry::dictionary_type::const_iterator i = e.dict().find("failure reason");
|
|
|
|
if (i != e.dict().end())
|
|
|
|
{
|
|
|
|
throw std::runtime_error(i->second.string().c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
const entry::dictionary_type& msg = e.dict();
|
|
|
|
i = msg.find("interval");
|
|
|
|
if (i == msg.end()) throw std::runtime_error("invalid response from tracker");
|
|
|
|
|
|
|
|
m_duration = i->second.integer();
|
|
|
|
|
|
|
|
i = msg.find("peers");
|
|
|
|
if (i == msg.end()) throw std::runtime_error("invalid response from tracker");
|
|
|
|
|
2003-10-23 18:55:52 +02:00
|
|
|
peer_list.clear();
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2003-10-23 18:55:52 +02:00
|
|
|
const entry::list_type& l = i->second.list();
|
|
|
|
for(entry::list_type::const_iterator i = l.begin(); i != l.end(); ++i)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
peer p = extract_peer_info(*i);
|
2003-10-23 18:55:52 +02:00
|
|
|
peer_list.push_back(p);
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void torrent::remove_peer(peer_connection* p)
|
|
|
|
{
|
|
|
|
std::vector<peer_connection*>::iterator i = std::find(m_connections.begin(), m_connections.end(), p);
|
|
|
|
assert(i != m_connections.end());
|
|
|
|
|
|
|
|
// if the peer_connection was downloading any pieces
|
|
|
|
// abort them
|
|
|
|
for (std::vector<piece_block>::const_iterator i = p->download_queue().begin();
|
|
|
|
i != p->download_queue().end();
|
|
|
|
++i)
|
|
|
|
{
|
|
|
|
m_picker.abort_download(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::size_t i = 0; i < torrent_file().num_pieces(); ++i)
|
|
|
|
{
|
|
|
|
if (p->has_piece(i)) peer_lost(i);
|
|
|
|
}
|
|
|
|
|
2003-11-05 00:27:06 +01:00
|
|
|
// std::cout << p->get_socket()->sender().as_string() << " *** DISCONNECT\n";
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
m_policy->connection_closed(*p);
|
|
|
|
m_connections.erase(i);
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
m_picker.integrity_check(this);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-01 06:01:40 +01:00
|
|
|
boost::weak_ptr<peer_connection> torrent::connect_to_peer(const address& a, const peer_id& id)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
boost::shared_ptr<socket> s(new socket(socket::tcp, false));
|
|
|
|
// TODO: the send buffer size should be controllable from the outside
|
2003-10-31 05:02:51 +01:00
|
|
|
// s->set_send_bufsize(2048);
|
2003-10-23 01:00:57 +02:00
|
|
|
s->connect(a);
|
2003-11-05 00:27:06 +01:00
|
|
|
boost::shared_ptr<peer_connection> c(new peer_connection(
|
|
|
|
m_ses
|
|
|
|
, m_ses->m_selector
|
|
|
|
, this
|
|
|
|
, s
|
|
|
|
, id));
|
2003-11-10 14:15:41 +01:00
|
|
|
if (m_ses->m_upload_rate != -1) c->set_send_quota(0);
|
2003-10-23 01:00:57 +02:00
|
|
|
detail::session_impl::connection_map::iterator p =
|
|
|
|
m_ses->m_connections.insert(std::make_pair(s, c)).first;
|
2003-12-01 06:01:40 +01:00
|
|
|
|
|
|
|
// add the newly connected peer to this torrent's peer list
|
|
|
|
assert(std::find(m_connections.begin()
|
|
|
|
, m_connections.end()
|
|
|
|
, boost::get_pointer(p->second))
|
|
|
|
== m_connections.end());
|
|
|
|
|
|
|
|
m_connections.push_back(boost::get_pointer(p->second));
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
m_ses->m_selector.monitor_readability(s);
|
|
|
|
m_ses->m_selector.monitor_errors(s);
|
2003-11-05 00:27:06 +01:00
|
|
|
// std::cout << "connecting to: " << a.as_string() << ":" << a.port() << "\n";
|
2003-12-01 06:01:40 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
void torrent::attach_peer(peer_connection* p)
|
|
|
|
{
|
|
|
|
assert(std::find(m_connections.begin(), m_connections.end(), p) == m_connections.end());
|
|
|
|
m_connections.push_back(p);
|
|
|
|
detail::session_impl::connection_map::iterator i
|
|
|
|
= m_ses->m_connections.find(p->get_socket());
|
|
|
|
assert(i != m_ses->m_connections.end());
|
|
|
|
|
|
|
|
m_policy->new_connection(i->second);
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void torrent::close_all_connections()
|
|
|
|
{
|
|
|
|
for (detail::session_impl::connection_map::iterator i = m_ses->m_connections.begin();
|
|
|
|
i != m_ses->m_connections.end();)
|
|
|
|
{
|
|
|
|
if (i->second->associated_torrent() == this)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
std::size_t num_connections = m_connections.size();
|
|
|
|
peer_connection* pc = boost::get_pointer(i->second);
|
|
|
|
#endif
|
|
|
|
assert(std::find(m_connections.begin(), m_connections.end(), pc) != m_connections.end());
|
|
|
|
detail::session_impl::connection_map::iterator j = i;
|
|
|
|
++i;
|
|
|
|
m_ses->m_connections.erase(j);
|
|
|
|
assert(m_connections.size() + 1 == num_connections);
|
|
|
|
assert(std::find(m_connections.begin(), m_connections.end(), pc) == m_connections.end());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assert(std::find(m_connections.begin(), m_connections.end(), boost::get_pointer(i->second)) == m_connections.end());
|
2003-11-11 02:26:04 +01:00
|
|
|
++i;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(m_connections.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void torrent::try_next_tracker()
|
|
|
|
{
|
|
|
|
m_currently_trying_tracker++;
|
|
|
|
|
|
|
|
if (m_currently_trying_tracker >= m_torrent_file.trackers().size())
|
|
|
|
{
|
|
|
|
// if we've looped the tracker list, wait a bit before retrying
|
|
|
|
m_currently_trying_tracker = 0;
|
|
|
|
m_next_request = boost::posix_time::second_clock::local_time() + boost::posix_time::seconds(tracker_retry_delay);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// don't delay before trying the next tracker
|
|
|
|
m_next_request = boost::posix_time::second_clock::local_time();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-07 02:44:30 +01:00
|
|
|
void torrent::allocate_files(detail::piece_checker_data* data,
|
|
|
|
boost::mutex& mutex,
|
|
|
|
const boost::filesystem::path& save_path)
|
|
|
|
{
|
|
|
|
m_storage.initialize_pieces(this, save_path, data, mutex);
|
|
|
|
m_picker.files_checked(m_storage.pieces());
|
|
|
|
#ifndef NDEBUG
|
|
|
|
m_picker.integrity_check(this);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-01 06:01:40 +01:00
|
|
|
void torrent::second_tick()
|
|
|
|
{
|
|
|
|
m_time_scaler++;
|
|
|
|
if (m_time_scaler >= 10)
|
|
|
|
{
|
|
|
|
m_time_scaler = 0;
|
|
|
|
m_policy->pulse();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-31 05:02:51 +01:00
|
|
|
torrent_status torrent::status() const
|
2003-10-26 18:35:23 +01:00
|
|
|
{
|
2003-10-31 05:02:51 +01:00
|
|
|
torrent_status st;
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
const std::vector<bool>& p = m_storage.pieces();
|
|
|
|
int num_pieces = std::accumulate(p.begin(), p.end(), 0);
|
|
|
|
|
|
|
|
int total_blocks
|
|
|
|
= (m_torrent_file.total_size()+m_block_size-1)/m_block_size;
|
|
|
|
int blocks_per_piece
|
|
|
|
= m_torrent_file.piece_length() / m_block_size;
|
|
|
|
|
2003-11-05 00:27:06 +01:00
|
|
|
int unverified_blocks = m_picker.unverified_blocks();
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2003-10-31 13:07:07 +01:00
|
|
|
int blocks_we_have = num_pieces * blocks_per_piece;
|
|
|
|
const int last_piece = m_torrent_file.num_pieces()-1;
|
|
|
|
if (p[last_piece])
|
|
|
|
{
|
|
|
|
blocks_we_have += m_picker.blocks_in_piece(last_piece)
|
|
|
|
- blocks_per_piece;
|
|
|
|
}
|
|
|
|
|
2003-11-06 11:44:19 +01:00
|
|
|
st.total_download = m_bytes_downloaded;
|
|
|
|
st.total_upload = m_bytes_uploaded;
|
2003-11-05 00:27:06 +01:00
|
|
|
st.progress = (blocks_we_have + unverified_blocks)
|
2003-10-31 05:02:51 +01:00
|
|
|
/ static_cast<float>(total_blocks);
|
|
|
|
|
2003-11-05 00:27:06 +01:00
|
|
|
st.next_announce = next_announce()
|
|
|
|
- boost::posix_time::second_clock::local_time();
|
|
|
|
|
2003-11-20 20:58:29 +01:00
|
|
|
// TODO: this is not accurate because it assumes the last
|
|
|
|
// block is m_block_size bytes
|
|
|
|
st.total_done = (blocks_we_have + unverified_blocks) * m_block_size;
|
|
|
|
st.pieces = m_storage.pieces();
|
|
|
|
|
2003-10-31 05:02:51 +01:00
|
|
|
if (num_pieces == p.size())
|
|
|
|
st.state = torrent_status::seeding;
|
|
|
|
else
|
|
|
|
st.state = torrent_status::downloading;
|
|
|
|
|
|
|
|
return st;
|
2003-10-26 18:35:23 +01:00
|
|
|
}
|
|
|
|
|
2003-11-20 20:58:29 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
void torrent::debug_log(const std::string& line)
|
|
|
|
{
|
|
|
|
(*m_ses->m_logger) << line << "\n";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-10-24 04:18:11 +02:00
|
|
|
}
|
|
|
|
|