2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
Copyright (c) 2003-2008, Arvid Norberg
|
2003-10-23 01:00:57 +02:00
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
#ifndef TORRENT_TORRENT_INFO_HPP_INCLUDED
|
|
|
|
#define TORRENT_TORRENT_INFO_HPP_INCLUDED
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2004-01-25 19:18:36 +01:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2004-03-05 13:04:47 +01:00
|
|
|
#include <boost/optional.hpp>
|
2008-05-14 07:29:42 +02:00
|
|
|
#include <boost/shared_array.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/entry.hpp"
|
2008-05-14 07:29:42 +02:00
|
|
|
#include "libtorrent/lazy_entry.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
2004-01-19 20:36:55 +01:00
|
|
|
#include "libtorrent/size_type.hpp"
|
2009-11-25 07:55:34 +01:00
|
|
|
#include "libtorrent/ptime.hpp"
|
2007-09-01 05:00:31 +02:00
|
|
|
#include "libtorrent/intrusive_ptr_base.hpp"
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/assert.hpp"
|
2008-05-28 10:44:40 +02:00
|
|
|
#include "libtorrent/file_storage.hpp"
|
2010-08-22 00:10:16 +02:00
|
|
|
#include "libtorrent/copy_ptr.hpp"
|
2010-10-10 20:43:58 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2003-11-20 20:58:29 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2010-10-16 17:24:45 +02:00
|
|
|
class peer_connection;
|
2010-10-10 20:43:58 +02:00
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
// wait 60 seconds before retrying a failed tracker
|
|
|
|
tracker_retry_delay_min = 10
|
|
|
|
// when tracker_failed_max trackers
|
|
|
|
// has failed, wait 60 minutes instead
|
|
|
|
, tracker_retry_delay_max = 60 * 60
|
|
|
|
};
|
|
|
|
|
2005-11-01 19:30:39 +01:00
|
|
|
struct TORRENT_EXPORT announce_entry
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-11-27 21:51:59 +01:00
|
|
|
announce_entry(std::string const& u)
|
2008-11-29 09:38:40 +01:00
|
|
|
: url(u)
|
2010-07-15 07:16:06 +02:00
|
|
|
, next_announce(min_time())
|
|
|
|
, min_announce(min_time())
|
2008-11-29 09:38:40 +01:00
|
|
|
, tier(0)
|
2010-08-03 05:00:54 +02:00
|
|
|
, fail_limit(0)
|
2008-11-29 09:38:40 +01:00
|
|
|
, fails(0)
|
2010-08-22 00:10:16 +02:00
|
|
|
, updating(false)
|
2008-11-29 09:38:40 +01:00
|
|
|
, source(0)
|
2008-11-27 21:51:59 +01:00
|
|
|
, verified(false)
|
2008-11-29 09:38:40 +01:00
|
|
|
, start_sent(false)
|
|
|
|
, complete_sent(false)
|
2009-09-25 20:17:59 +02:00
|
|
|
, send_stats(true)
|
2008-11-27 21:51:59 +01:00
|
|
|
{}
|
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// tracker URL as it appeared in the torrent file
|
2003-10-23 01:00:57 +02:00
|
|
|
std::string url;
|
2010-11-18 06:51:52 +01:00
|
|
|
std::string trackerid;
|
2008-11-29 09:38:40 +01:00
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// if this tracker has returned an error or warning message
|
|
|
|
// that message is stored here
|
|
|
|
std::string message;
|
|
|
|
|
|
|
|
// if this tracker failed the last time it was contacted
|
|
|
|
// this error code specifies what error occurred
|
|
|
|
error_code last_error;
|
|
|
|
|
2009-12-02 05:05:24 +01:00
|
|
|
int next_announce_in() const;
|
|
|
|
int min_announce_in() const;
|
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
// the time of next tracker announce
|
|
|
|
ptime next_announce;
|
|
|
|
|
2009-12-02 05:05:24 +01:00
|
|
|
// no announces before this time
|
|
|
|
ptime min_announce;
|
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// the tier this tracker belongs to
|
2008-11-27 21:51:59 +01:00
|
|
|
boost::uint8_t tier;
|
2010-08-22 00:10:16 +02:00
|
|
|
|
2008-11-27 21:51:59 +01:00
|
|
|
// the number of times this tracker can fail
|
|
|
|
// in a row before it's removed. 0 means unlimited
|
|
|
|
boost::uint8_t fail_limit;
|
|
|
|
|
|
|
|
// the number of times in a row this tracker has failed
|
2010-08-22 00:10:16 +02:00
|
|
|
boost::uint8_t fails:7;
|
|
|
|
|
|
|
|
// true if we're currently trying to announce with
|
|
|
|
// this tracker
|
|
|
|
bool updating:1;
|
2008-11-27 21:51:59 +01:00
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
enum tracker_source
|
|
|
|
{
|
|
|
|
source_torrent = 1,
|
|
|
|
source_client = 2,
|
|
|
|
source_magnet_link = 4,
|
|
|
|
source_tex = 8
|
|
|
|
};
|
2010-08-22 00:10:16 +02:00
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
// where did we get this tracker from
|
2010-08-22 00:10:16 +02:00
|
|
|
boost::uint8_t source:4;
|
2008-11-29 09:38:40 +01:00
|
|
|
|
2008-11-27 21:51:59 +01:00
|
|
|
// is set to true if we have ever received a response from
|
|
|
|
// this tracker
|
|
|
|
bool verified:1;
|
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
// this is true if event start has been sent to the tracker
|
|
|
|
bool start_sent:1;
|
|
|
|
|
|
|
|
// this is true if event completed has been sent to the tracker
|
|
|
|
bool complete_sent:1;
|
|
|
|
|
2009-09-25 20:17:59 +02:00
|
|
|
// this is false the stats sent to this tracker will be 0
|
|
|
|
bool send_stats:1;
|
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
start_sent = false;
|
|
|
|
next_announce = min_time();
|
2009-12-02 05:05:24 +01:00
|
|
|
min_announce = min_time();
|
2008-11-29 09:38:40 +01:00
|
|
|
}
|
|
|
|
|
2009-12-21 10:47:32 +01:00
|
|
|
void failed(int retry_interval = 0);
|
2008-11-29 09:38:40 +01:00
|
|
|
|
2010-04-27 20:22:59 +02:00
|
|
|
bool will_announce(ptime now) const
|
|
|
|
{
|
|
|
|
return now <= next_announce
|
|
|
|
&& (fails < fail_limit || fail_limit == 0)
|
|
|
|
&& !updating;
|
|
|
|
}
|
|
|
|
|
2010-09-01 05:14:12 +02:00
|
|
|
bool can_announce(ptime now, bool is_seed) const;
|
2008-11-29 09:38:40 +01:00
|
|
|
|
|
|
|
bool is_working() const
|
2009-11-26 19:31:27 +01:00
|
|
|
{ return fails == 0; }
|
2009-06-23 03:53:47 +02:00
|
|
|
|
2009-11-26 19:31:27 +01:00
|
|
|
void trim();
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
|
2010-10-10 20:43:58 +02:00
|
|
|
struct web_seed_entry
|
|
|
|
{
|
|
|
|
// http seeds are different from url seeds in the
|
|
|
|
// protocol they use. http seeds follows the original
|
|
|
|
// http seed spec. by John Hoffman
|
|
|
|
enum type_t { url_seed, http_seed };
|
|
|
|
|
|
|
|
typedef std::vector<std::pair<std::string, std::string> > headers_t;
|
|
|
|
|
|
|
|
web_seed_entry(std::string const& url_, type_t type_
|
|
|
|
, std::string const& auth_ = std::string()
|
|
|
|
, headers_t const& extra_headers_ = headers_t())
|
|
|
|
: url(url_), type(type_)
|
|
|
|
, auth(auth_), extra_headers(extra_headers_)
|
2011-04-29 10:09:03 +02:00
|
|
|
, retry(time_now()), resolving(false), removed(false)
|
|
|
|
, connection(0)
|
2010-10-10 20:43:58 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
bool operator==(web_seed_entry const& e) const
|
|
|
|
{ return url == e.url && type == e.type; }
|
|
|
|
|
|
|
|
bool operator<(web_seed_entry const& e) const
|
|
|
|
{
|
|
|
|
if (url < e.url) return true;
|
|
|
|
if (url > e.url) return false;
|
|
|
|
return type < e.type;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string url;
|
|
|
|
type_t type;
|
|
|
|
std::string auth;
|
|
|
|
headers_t extra_headers;
|
|
|
|
|
|
|
|
// if this is > now, we can't reconnect yet
|
|
|
|
ptime retry;
|
|
|
|
|
|
|
|
// this indicates whether or not we're resolving the
|
|
|
|
// hostname of this URL
|
|
|
|
bool resolving;
|
|
|
|
|
2011-04-29 10:09:03 +02:00
|
|
|
// if the user wanted to remove this while
|
|
|
|
// we were resolving it. In this case, we set
|
|
|
|
// the removed flag to true, to make the resolver
|
|
|
|
// callback remove it
|
|
|
|
bool removed;
|
|
|
|
|
2010-10-10 20:43:58 +02:00
|
|
|
tcp::endpoint endpoint;
|
|
|
|
|
|
|
|
peer_connection* connection;
|
|
|
|
};
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2009-02-23 02:21:19 +01:00
|
|
|
// for backwards compatibility with 0.14
|
|
|
|
typedef libtorrent_exception invalid_torrent_file;
|
2008-05-28 10:44:40 +02:00
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-12-11 23:00:20 +01:00
|
|
|
int TORRENT_EXPORT load_file(std::string const& filename
|
2011-01-19 11:07:51 +01:00
|
|
|
, std::vector<char>& v, error_code& ec, int limit = 8000000);
|
2008-07-01 13:00:00 +02:00
|
|
|
|
2007-09-01 05:00:31 +02:00
|
|
|
class TORRENT_EXPORT torrent_info : public intrusive_ptr_base<torrent_info>
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
public:
|
2010-11-15 06:10:36 +01:00
|
|
|
|
2011-06-06 09:47:29 +02:00
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
void check_invariant() const;
|
|
|
|
#endif
|
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2010-11-15 06:10:36 +01:00
|
|
|
torrent_info(lazy_entry const& torrent_file, int flags = 0);
|
|
|
|
torrent_info(char const* buffer, int size, int flags = 0);
|
|
|
|
torrent_info(std::string const& filename, int flags = 0);
|
2009-10-26 02:29:39 +01:00
|
|
|
#if TORRENT_USE_WSTRING
|
2010-11-15 06:10:36 +01:00
|
|
|
torrent_info(std::wstring const& filename, int flags = 0);
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif // TORRENT_USE_WSTRING
|
2009-02-23 02:21:19 +01:00
|
|
|
#endif
|
|
|
|
|
2010-11-15 06:10:36 +01:00
|
|
|
torrent_info(torrent_info const& t, int flags = 0);
|
|
|
|
torrent_info(sha1_hash const& info_hash, int flags = 0);
|
|
|
|
torrent_info(lazy_entry const& torrent_file, error_code& ec, int flags = 0);
|
|
|
|
torrent_info(char const* buffer, int size, error_code& ec, int flags = 0);
|
|
|
|
torrent_info(std::string const& filename, error_code& ec, int flags = 0);
|
2009-10-26 02:29:39 +01:00
|
|
|
#if TORRENT_USE_WSTRING
|
2010-11-15 06:10:36 +01:00
|
|
|
torrent_info(std::wstring const& filename, error_code& ec, int flags = 0);
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif // TORRENT_USE_WSTRING
|
2009-02-23 02:21:19 +01:00
|
|
|
|
2004-10-29 15:21:09 +02:00
|
|
|
~torrent_info();
|
2004-03-03 14:47:12 +01:00
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
file_storage const& files() const { return m_files; }
|
2008-12-24 21:07:34 +01:00
|
|
|
file_storage const& orig_files() const { return m_orig_files ? *m_orig_files : m_files; }
|
|
|
|
|
|
|
|
void rename_file(int index, std::string const& new_filename)
|
|
|
|
{
|
|
|
|
copy_on_write();
|
|
|
|
m_files.rename_file(index, new_filename);
|
|
|
|
}
|
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
#if TORRENT_USE_WSTRING
|
2008-12-24 21:07:34 +01:00
|
|
|
void rename_file(int index, std::wstring const& new_filename)
|
|
|
|
{
|
|
|
|
copy_on_write();
|
|
|
|
m_files.rename_file(index, new_filename);
|
|
|
|
}
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif // TORRENT_USE_WSTRING
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2009-11-27 23:15:34 +01:00
|
|
|
void remap_files(file_storage const& f);
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
void add_tracker(std::string const& url, int tier = 0);
|
|
|
|
std::vector<announce_entry> const& trackers() const { return m_urls; }
|
2007-08-25 20:26:43 +02:00
|
|
|
|
2010-10-10 20:43:58 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
// deprecated in 0.16. Use web_seeds() instead
|
|
|
|
TORRENT_DEPRECATED_PREFIX
|
|
|
|
std::vector<std::string> url_seeds() const TORRENT_DEPRECATED;
|
|
|
|
TORRENT_DEPRECATED_PREFIX
|
|
|
|
std::vector<std::string> http_seeds() const TORRENT_DEPRECATED;
|
|
|
|
#endif // TORRENT_NO_DEPRECATE
|
|
|
|
|
|
|
|
void add_url_seed(std::string const& url
|
|
|
|
, std::string const& extern_auth = std::string()
|
|
|
|
, web_seed_entry::headers_t const& extra_headers = web_seed_entry::headers_t());
|
|
|
|
|
|
|
|
void add_http_seed(std::string const& url
|
|
|
|
, std::string const& extern_auth = std::string()
|
|
|
|
, web_seed_entry::headers_t const& extra_headers = web_seed_entry::headers_t());
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-10-10 20:43:58 +02:00
|
|
|
std::vector<web_seed_entry> const& web_seeds() const
|
|
|
|
{ return m_web_seeds; }
|
2008-12-30 04:54:07 +01:00
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
size_type total_size() const { return m_files.total_size(); }
|
|
|
|
int piece_length() const { return m_files.piece_length(); }
|
|
|
|
int num_pieces() const { return m_files.num_pieces(); }
|
2003-10-23 01:00:57 +02:00
|
|
|
const sha1_hash& info_hash() const { return m_info_hash; }
|
2008-05-28 10:44:40 +02:00
|
|
|
const std::string& name() const { return m_files.name(); }
|
|
|
|
|
|
|
|
typedef file_storage::iterator file_iterator;
|
|
|
|
typedef file_storage::reverse_iterator reverse_file_iterator;
|
|
|
|
|
|
|
|
file_iterator begin_files() const { return m_files.begin(); }
|
|
|
|
file_iterator end_files() const { return m_files.end(); }
|
|
|
|
reverse_file_iterator rbegin_files() const { return m_files.rbegin(); }
|
|
|
|
reverse_file_iterator rend_files() const { return m_files.rend(); }
|
|
|
|
int num_files() const { return m_files.num_files(); }
|
2010-11-29 06:44:29 +01:00
|
|
|
file_entry file_at(int index) const { return m_files.at(index); }
|
2008-05-28 10:44:40 +02:00
|
|
|
|
2008-07-09 12:45:07 +02:00
|
|
|
file_iterator file_at_offset(size_type offset) const
|
|
|
|
{ return m_files.file_at_offset(offset); }
|
2008-05-28 10:44:40 +02:00
|
|
|
std::vector<file_slice> map_block(int piece, size_type offset, int size) const
|
|
|
|
{ return m_files.map_block(piece, offset, size); }
|
|
|
|
peer_request map_file(int file, size_type offset, int size) const
|
|
|
|
{ return m_files.map_file(file, offset, size); }
|
|
|
|
|
2008-08-03 17:14:08 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2007-04-10 11:11:32 +02:00
|
|
|
// ------- start deprecation -------
|
2008-05-14 07:29:42 +02:00
|
|
|
// these functions will be removed in a future version
|
2009-07-26 04:37:31 +02:00
|
|
|
TORRENT_DEPRECATED_PREFIX
|
2008-05-14 07:29:42 +02:00
|
|
|
torrent_info(entry const& torrent_file) TORRENT_DEPRECATED;
|
2009-07-26 04:37:31 +02:00
|
|
|
TORRENT_DEPRECATED_PREFIX
|
2007-08-10 18:57:53 +02:00
|
|
|
void print(std::ostream& os) const TORRENT_DEPRECATED;
|
2007-04-10 11:11:32 +02:00
|
|
|
// ------- end deprecation -------
|
2008-08-03 17:14:08 +02:00
|
|
|
#endif
|
2007-04-10 11:11:32 +02:00
|
|
|
|
2011-09-05 07:50:41 +02:00
|
|
|
#ifdef TORRENT_USE_OPENSSL
|
2011-08-28 23:06:15 +02:00
|
|
|
std::string const& ssl_cert() const { return m_ssl_root_cert; }
|
2011-09-05 07:50:41 +02:00
|
|
|
#endif
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
bool is_valid() const { return m_files.is_valid(); }
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
bool priv() const { return m_private; }
|
2004-03-07 21:50:56 +01:00
|
|
|
|
2009-08-20 05:19:12 +02:00
|
|
|
bool is_i2p() const { return m_i2p; }
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
int piece_size(int index) const { return m_files.piece_size(index); }
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
sha1_hash hash_for_piece(int index) const
|
2008-05-28 10:44:40 +02:00
|
|
|
{ return sha1_hash(hash_for_piece_ptr(index)); }
|
2008-05-14 07:29:42 +02:00
|
|
|
|
2009-03-13 07:09:39 +01:00
|
|
|
std::vector<sha1_hash> const& merkle_tree() const { return m_merkle_tree; }
|
|
|
|
void set_merkle_tree(std::vector<sha1_hash>& h)
|
|
|
|
{ TORRENT_ASSERT(h.size() == m_merkle_tree.size() ); m_merkle_tree.swap(h); }
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
char const* hash_for_piece_ptr(int index) const
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(index >= 0);
|
2008-05-28 10:44:40 +02:00
|
|
|
TORRENT_ASSERT(index < m_files.num_pieces());
|
2009-03-13 07:09:39 +01:00
|
|
|
if (is_merkle_torrent())
|
|
|
|
{
|
2010-10-16 17:24:45 +02:00
|
|
|
TORRENT_ASSERT(index < int(m_merkle_tree.size() - m_merkle_first_leaf));
|
2009-03-13 07:09:39 +01:00
|
|
|
return (const char*)&m_merkle_tree[m_merkle_first_leaf + index][0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_piece_hashes);
|
|
|
|
TORRENT_ASSERT(m_piece_hashes >= m_info_section.get());
|
|
|
|
TORRENT_ASSERT(m_piece_hashes < m_info_section.get() + m_info_section_size);
|
2010-10-16 17:24:45 +02:00
|
|
|
TORRENT_ASSERT(index < int(m_info_section_size / 20));
|
2009-03-13 07:09:39 +01:00
|
|
|
return &m_piece_hashes[index*20];
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
boost::optional<time_t> creation_date() const;
|
2003-11-20 20:58:29 +01:00
|
|
|
|
2005-08-18 00:59:21 +02:00
|
|
|
const std::string& creator() const
|
|
|
|
{ return m_created_by; }
|
|
|
|
|
2003-11-20 20:58:29 +01:00
|
|
|
const std::string& comment() const
|
|
|
|
{ return m_comment; }
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
// dht nodes to add to the routing table/bootstrap from
|
|
|
|
typedef std::vector<std::pair<std::string, int> > nodes_t;
|
|
|
|
|
|
|
|
nodes_t const& nodes() const
|
2008-05-15 09:37:34 +02:00
|
|
|
{ return m_nodes; }
|
|
|
|
void add_node(std::pair<std::string, int> const& node)
|
|
|
|
{ m_nodes.push_back(node); }
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2010-11-15 06:10:36 +01:00
|
|
|
bool parse_info_section(lazy_entry const& e, error_code& ec, int flags);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* info(char const* key) const
|
|
|
|
{
|
|
|
|
if (m_info_dict.type() == lazy_entry::none_t)
|
2010-10-28 06:01:59 +02:00
|
|
|
{
|
|
|
|
error_code ec;
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_bdecode(m_info_section.get(), m_info_section.get()
|
2010-10-28 06:01:59 +02:00
|
|
|
+ m_info_section_size, m_info_dict, ec);
|
|
|
|
}
|
2008-05-14 07:29:42 +02:00
|
|
|
return m_info_dict.dict_find(key);
|
|
|
|
}
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
void swap(torrent_info& ti);
|
2007-03-23 00:37:24 +01:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
boost::shared_array<char> metadata() const
|
|
|
|
{ return m_info_section; }
|
2007-05-10 00:54:26 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
int metadata_size() const { return m_info_section_size; }
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2009-03-13 07:09:39 +01:00
|
|
|
bool add_merkle_nodes(std::map<int, sha1_hash> const& subtree
|
|
|
|
, int piece);
|
|
|
|
std::map<int, sha1_hash> build_merkle_list(int piece) const;
|
|
|
|
bool is_merkle_torrent() const { return !m_merkle_tree.empty(); }
|
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// if we're logging member offsets, we need access to them
|
2011-06-06 09:47:29 +02:00
|
|
|
#if defined TORRENT_DEBUG \
|
2010-08-22 00:10:16 +02:00
|
|
|
&& !defined TORRENT_LOGGING \
|
|
|
|
&& !defined TORRENT_VERBOSE_LOGGING \
|
|
|
|
&& !defined TORRENT_ERROR_LOGGING
|
2003-10-23 01:00:57 +02:00
|
|
|
private:
|
2010-08-22 00:10:16 +02:00
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2009-11-26 07:54:52 +01:00
|
|
|
// not assignable
|
|
|
|
torrent_info const& operator=(torrent_info const&);
|
|
|
|
|
2008-12-24 21:07:34 +01:00
|
|
|
void copy_on_write();
|
2010-11-15 06:10:36 +01:00
|
|
|
bool parse_torrent_file(lazy_entry const& libtorrent, error_code& ec, int flags);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2011-09-21 11:27:07 +02:00
|
|
|
// the index to the first leaf. This is where the hash for the
|
|
|
|
// first piece is stored
|
|
|
|
boost::uint32_t m_merkle_first_leaf;
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
file_storage m_files;
|
|
|
|
|
2008-12-24 21:07:34 +01:00
|
|
|
// if m_files is modified, it is first copied into
|
|
|
|
// m_orig_files so that the original name and
|
|
|
|
// filenames are preserved.
|
2010-08-22 00:10:16 +02:00
|
|
|
copy_ptr<const file_storage> m_orig_files;
|
2008-12-24 21:07:34 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// the urls to the trackers
|
|
|
|
std::vector<announce_entry> m_urls;
|
2010-10-10 20:43:58 +02:00
|
|
|
std::vector<web_seed_entry> m_web_seeds;
|
2006-08-01 17:27:08 +02:00
|
|
|
nodes_t m_nodes;
|
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// if this is a merkle torrent, this is the merkle
|
|
|
|
// tree. It has space for merkle_num_nodes(merkle_num_leafs(num_pieces))
|
|
|
|
// hashes
|
|
|
|
std::vector<sha1_hash> m_merkle_tree;
|
2003-10-28 02:20:50 +01:00
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// this is a copy of the info section from the torrent.
|
|
|
|
// it use maintained in this flat format in order to
|
|
|
|
// make it available through the metadata extension
|
|
|
|
boost::shared_array<char> m_info_section;
|
|
|
|
|
|
|
|
// this is a pointer into the m_info_section buffer
|
|
|
|
// pointing to the first byte of the first sha-1 hash
|
|
|
|
char const* m_piece_hashes;
|
2003-11-20 20:58:29 +01:00
|
|
|
|
2011-09-05 07:50:41 +02:00
|
|
|
// TODO: these strings could be lazy_entry* to save memory
|
|
|
|
|
2003-11-20 20:58:29 +01:00
|
|
|
// if a comment is found in the torrent file
|
|
|
|
// this will be set to that comment
|
|
|
|
std::string m_comment;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
|
|
|
// an optional string naming the software used
|
|
|
|
// to create the torrent file
|
|
|
|
std::string m_created_by;
|
2005-05-12 01:03:12 +02:00
|
|
|
|
2011-09-05 07:50:41 +02:00
|
|
|
#ifdef TORRENT_USE_OPENSSL
|
2011-08-28 23:06:15 +02:00
|
|
|
// for ssl-torrens, this contains the root
|
|
|
|
// certificate, in .pem format (i.e. ascii
|
|
|
|
// base64 encoded with head and tails)
|
|
|
|
std::string m_ssl_root_cert;
|
2011-09-05 07:50:41 +02:00
|
|
|
#endif
|
|
|
|
|
2010-08-22 00:10:16 +02:00
|
|
|
// the info section parsed. points into m_info_section
|
|
|
|
// parsed lazily
|
|
|
|
mutable lazy_entry m_info_dict;
|
|
|
|
|
|
|
|
// if a creation date is found in the torrent file
|
|
|
|
// this will be set to that, otherwise it'll be
|
|
|
|
// 1970, Jan 1
|
|
|
|
time_t m_creation_date;
|
|
|
|
|
|
|
|
// the hash that identifies this torrent
|
|
|
|
sha1_hash m_info_hash;
|
|
|
|
|
|
|
|
// the number of bytes in m_info_section
|
|
|
|
boost::uint32_t m_info_section_size:24;
|
|
|
|
|
2005-05-12 01:03:12 +02:00
|
|
|
// this is used when creating a torrent. If there's
|
|
|
|
// only one file there are cases where it's impossible
|
|
|
|
// to know if it should be written as a multifile torrent
|
|
|
|
// or not. e.g. test/test there's one file and one directory
|
|
|
|
// and they have the same name.
|
2010-08-22 00:10:16 +02:00
|
|
|
bool m_multifile:1;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
// this is true if the torrent is private. i.e., is should not
|
|
|
|
// be announced on the dht
|
2010-08-22 00:10:16 +02:00
|
|
|
bool m_private:1;
|
2005-10-16 18:58:41 +02:00
|
|
|
|
2009-08-20 05:19:12 +02:00
|
|
|
// this is true if one of the trackers has an .i2p top
|
|
|
|
// domain in its hostname. This means the DHT and LSD
|
|
|
|
// features are disabled for this torrent (unless the
|
|
|
|
// settings allows mixing i2p peers with regular peers)
|
2010-08-22 00:10:16 +02:00
|
|
|
bool m_i2p:1;
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_TORRENT_INFO_HPP_INCLUDED
|
2003-10-24 13:11:28 +02:00
|
|
|
|