premiere-libtorrent/include/libtorrent/torrent_handle.hpp

128 lines
3.4 KiB
C++
Raw Normal View History

2003-10-26 18:35:23 +01: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.
*/
#ifndef TORRENT_TORRENT_HANDLE_HPP_INCLUDED
#define TORRENT_TORRENT_HANDLE_HPP_INCLUDED
#include <vector>
#include <boost/date_time/posix_time/posix_time.hpp>
2003-10-26 18:35:23 +01:00
#include "libtorrent/peer_id.hpp"
#include "libtorrent/peer_info.hpp"
#include "libtorrent/piece_picker.hpp"
2003-10-26 18:35:23 +01:00
namespace libtorrent
{
namespace detail
{
struct session_impl;
2003-10-31 05:02:51 +01:00
struct checker_impl;
2003-10-26 18:35:23 +01:00
}
struct duplicate_torrent: std::exception
{
2003-11-05 00:27:06 +01:00
virtual const char* what() const throw()
{ return "torrent already exists in session"; }
};
2003-10-31 05:02:51 +01:00
struct torrent_status
2003-10-26 18:35:23 +01:00
{
enum state_t
{
invalid_handle,
2003-10-31 05:02:51 +01:00
queued_for_checking,
2003-10-26 18:35:23 +01:00
checking_files,
downloading,
seeding
};
2003-10-31 05:02:51 +01:00
state_t state;
float progress;
2003-11-05 00:27:06 +01:00
boost::posix_time::time_duration next_announce;
// transferred this session!
2003-10-31 05:02:51 +01:00
std::size_t total_download;
std::size_t total_upload;
std::vector<bool> pieces;
// the number of bytes of the file we have
std::size_t total_done;
2003-10-31 05:02:51 +01:00
};
2003-10-26 18:35:23 +01:00
struct partial_piece_info
{
enum { max_blocks_per_piece = piece_picker::max_blocks_per_piece };
int piece_index;
int blocks_in_piece;
std::bitset<max_blocks_per_piece> requested_blocks;
std::bitset<max_blocks_per_piece> finished_blocks;
peer_id peer[max_blocks_per_piece];
int num_downloads[max_blocks_per_piece];
};
2003-10-31 05:02:51 +01:00
struct torrent_handle
{
friend class session;
torrent_handle(): m_ses(0) {}
2003-11-05 00:27:06 +01:00
void get_peer_info(std::vector<peer_info>& v);
2003-10-31 05:02:51 +01:00
torrent_status status() const;
void get_download_queue(std::vector<partial_piece_info>& queue) const;
2003-11-05 00:27:06 +01:00
// TODO: add force reannounce
2003-11-08 03:16:26 +01:00
// TODO: add torrent_info getter
2003-10-30 00:28:09 +01:00
2003-10-26 18:35:23 +01:00
private:
2003-11-08 03:16:26 +01:00
// called by session::remove_torrent()
void abort() const;
2003-10-31 05:02:51 +01:00
torrent_handle(detail::session_impl* s,
detail::checker_impl* c,
const sha1_hash& h)
2003-10-26 18:35:23 +01:00
: m_ses(s)
2003-10-31 05:02:51 +01:00
, m_chk(c)
2003-10-26 18:35:23 +01:00
, m_info_hash(h)
{}
detail::session_impl* m_ses;
2003-10-31 05:02:51 +01:00
detail::checker_impl* m_chk;
2003-10-26 18:35:23 +01:00
sha1_hash m_info_hash; // should be replaced with a torrent*?
};
}
#endif // TORRENT_TORRENT_HANDLE_HPP_INCLUDED