2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
Copyright (c) 2006, Arvid Norberg, Magnus Jonsson
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <ctime>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
2011-03-14 03:59:46 +01:00
|
|
|
#include <deque>
|
2003-10-25 03:31:06 +02:00
|
|
|
#include <cctype>
|
2003-10-27 16:43:33 +01:00
|
|
|
#include <algorithm>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2003-12-15 18:46:47 +01:00
|
|
|
#include <boost/limits.hpp>
|
2004-01-17 21:04:19 +01:00
|
|
|
#include <boost/bind.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2008-09-22 01:19:58 +02:00
|
|
|
#include "libtorrent/extensions/ut_pex.hpp"
|
|
|
|
#include "libtorrent/extensions/ut_metadata.hpp"
|
2008-11-27 21:51:59 +01:00
|
|
|
#include "libtorrent/extensions/lt_trackers.hpp"
|
2008-09-22 01:19:58 +02:00
|
|
|
#include "libtorrent/extensions/smart_ban.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
2003-12-16 14:33:29 +01:00
|
|
|
#include "libtorrent/fingerprint.hpp"
|
2004-01-07 01:48:02 +01:00
|
|
|
#include "libtorrent/entry.hpp"
|
2004-01-18 20:12:18 +01:00
|
|
|
#include "libtorrent/alert_types.hpp"
|
2004-01-25 19:18:36 +01:00
|
|
|
#include "libtorrent/invariant_check.hpp"
|
2004-01-26 02:08:59 +01:00
|
|
|
#include "libtorrent/file.hpp"
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/bt_peer_connection.hpp"
|
2005-07-06 02:58:23 +02:00
|
|
|
#include "libtorrent/ip_filter.hpp"
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2006-10-11 16:02:21 +02:00
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
2006-08-01 17:27:08 +02:00
|
|
|
#include "libtorrent/kademlia/dht_tracker.hpp"
|
2009-06-13 12:45:07 +02:00
|
|
|
#include "libtorrent/natpmp.hpp"
|
|
|
|
#include "libtorrent/upnp.hpp"
|
2010-12-30 02:47:30 +01:00
|
|
|
#include "libtorrent/magnet_uri.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
using boost::shared_ptr;
|
|
|
|
using boost::weak_ptr;
|
2006-10-11 16:02:21 +02:00
|
|
|
using libtorrent::aux::session_impl;
|
2004-10-14 03:17:04 +02:00
|
|
|
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
void start_malloc_debug();
|
|
|
|
void stop_malloc_debug();
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2011-02-21 06:24:41 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
namespace aux
|
|
|
|
{
|
|
|
|
eh_initializer::eh_initializer()
|
|
|
|
{
|
|
|
|
::_set_se_translator(straight_to_debugger);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2008-11-23 16:44:11 +01:00
|
|
|
TORRENT_EXPORT void TORRENT_LINK_TEST_NAME() {}
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
// this function returns a session_settings object
|
|
|
|
// which will optimize libtorrent for minimum memory
|
|
|
|
// usage, with no consideration of performance.
|
|
|
|
session_settings min_memory_usage()
|
|
|
|
{
|
|
|
|
session_settings set;
|
2011-01-23 19:00:52 +01:00
|
|
|
|
|
|
|
set.alert_queue_size = 100;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
// setting this to a low limit, means more
|
|
|
|
// peers are more likely to request from the
|
|
|
|
// same piece. Which means fewer partial
|
|
|
|
// pieces and fewer entries in the partial
|
|
|
|
// piece list
|
|
|
|
set.whole_pieces_threshold = 2;
|
|
|
|
set.use_parole_mode = false;
|
|
|
|
set.prioritize_partial_pieces = true;
|
|
|
|
|
2011-01-22 02:36:57 +01:00
|
|
|
// connect to 5 peers per second
|
|
|
|
set.connection_speed = 5;
|
|
|
|
|
2009-05-22 08:32:39 +02:00
|
|
|
// be extra nice on the hard drive when running
|
|
|
|
// on embedded devices. This might slow down
|
|
|
|
// torrent checking
|
2010-11-26 00:34:37 +01:00
|
|
|
set.file_checks_delay_per_block = 5;
|
2009-05-22 08:32:39 +02:00
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
// only have 4 files open at a time
|
|
|
|
set.file_pool_size = 4;
|
|
|
|
|
|
|
|
// we want to keep the peer list as small as possible
|
|
|
|
set.allow_multiple_connections_per_ip = false;
|
|
|
|
set.max_failcount = 2;
|
|
|
|
set.inactivity_timeout = 120;
|
|
|
|
|
|
|
|
// whenever a peer has downloaded one block, write
|
|
|
|
// it to disk, and don't read anything from the
|
|
|
|
// socket until the disk write is complete
|
2009-06-10 10:30:55 +02:00
|
|
|
set.max_queued_disk_bytes = 1;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
|
|
|
// don't keep track of all upnp devices, keep
|
|
|
|
// the device list small
|
|
|
|
set.upnp_ignore_nonrouters = true;
|
|
|
|
|
|
|
|
// never keep more than one 16kB block in
|
|
|
|
// the send buffer
|
|
|
|
set.send_buffer_watermark = 9;
|
|
|
|
|
|
|
|
// don't use any disk cache
|
|
|
|
set.cache_size = 0;
|
2009-05-12 20:52:05 +02:00
|
|
|
set.cache_buffer_chunk_size = 1;
|
2009-05-12 20:05:04 +02:00
|
|
|
set.use_read_cache = false;
|
2011-04-26 09:03:05 +02:00
|
|
|
set.use_disk_read_ahead = false;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
|
|
|
set.close_redundant_connections = true;
|
|
|
|
|
|
|
|
set.max_peerlist_size = 500;
|
2009-05-13 03:34:10 +02:00
|
|
|
set.max_paused_peerlist_size = 50;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
|
|
|
// udp trackers are cheaper to talk to
|
|
|
|
set.prefer_udp_trackers = true;
|
|
|
|
|
|
|
|
set.max_rejects = 10;
|
|
|
|
|
|
|
|
set.recv_socket_buffer_size = 16 * 1024;
|
|
|
|
set.send_socket_buffer_size = 16 * 1024;
|
|
|
|
|
|
|
|
// use less memory when checking pieces
|
|
|
|
set.optimize_hashing_for_speed = false;
|
|
|
|
|
|
|
|
// use less memory when reading and writing
|
|
|
|
// whole pieces
|
|
|
|
set.coalesce_reads = false;
|
|
|
|
set.coalesce_writes = false;
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
// disallow the buffer size to grow for the uTP socket
|
|
|
|
set.utp_dynamic_sock_buf = false;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
|
|
|
session_settings high_performance_seed()
|
|
|
|
{
|
|
|
|
session_settings set;
|
|
|
|
|
2011-01-28 19:23:54 +01:00
|
|
|
// don't throttle TCP, assume there is
|
|
|
|
// plenty of bandwidth
|
|
|
|
set.mixed_mode_algorithm = session_settings::prefer_tcp;
|
|
|
|
|
2011-03-13 05:46:33 +01:00
|
|
|
// we will probably see a high rate of alerts, make it less
|
|
|
|
// likely to loose alerts
|
2011-01-23 19:00:52 +01:00
|
|
|
set.alert_queue_size = 10000;
|
|
|
|
|
2009-05-27 08:37:45 +02:00
|
|
|
// allow 500 files open at a time
|
|
|
|
set.file_pool_size = 500;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
2011-03-15 03:21:28 +01:00
|
|
|
// don't update access time for each read/write
|
|
|
|
set.no_atime_storage = true;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
// as a seed box, we must accept multiple peers behind
|
|
|
|
// the same NAT
|
|
|
|
set.allow_multiple_connections_per_ip = true;
|
|
|
|
|
2011-01-22 02:36:57 +01:00
|
|
|
// connect to 50 peers per second
|
|
|
|
set.connection_speed = 50;
|
|
|
|
|
2011-03-13 05:46:33 +01:00
|
|
|
// allow 8000 peer connections
|
|
|
|
set.connections_limit = 8000;
|
|
|
|
|
2011-04-27 10:06:44 +02:00
|
|
|
// allow lots of peers to try to connect simultaneously
|
|
|
|
set.listen_queue_size = 200;
|
|
|
|
|
2011-03-13 05:46:33 +01:00
|
|
|
// unchoke many peers
|
|
|
|
set.unchoke_slots_limit = 500;
|
|
|
|
|
2011-03-14 08:47:24 +01:00
|
|
|
// we need more DHT capacity to ping more peers
|
|
|
|
// candidates before trying to connect
|
|
|
|
set.dht_upload_rate_limit = 100000;
|
|
|
|
|
2011-03-24 01:50:45 +01:00
|
|
|
// we're more interested in downloading than seeding
|
|
|
|
// only service a read job every 1000 write job (when
|
|
|
|
// disk is congested). Presumably on a big box, writes
|
|
|
|
// are extremely cheap and reads are relatively expensive
|
|
|
|
// so that's the main reason this ratio should be adjusted
|
2011-03-27 08:16:39 +02:00
|
|
|
set.read_job_every = 100;
|
2011-03-24 01:50:45 +01:00
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
// use 1 GB of cache
|
|
|
|
set.cache_size = 32768 * 2;
|
2009-05-12 20:05:04 +02:00
|
|
|
set.use_read_cache = true;
|
2009-07-28 08:29:13 +02:00
|
|
|
set.cache_buffer_chunk_size = 128;
|
2011-06-26 21:00:40 +02:00
|
|
|
set.read_cache_line_size = 32;
|
|
|
|
set.write_cache_line_size = 32;
|
2010-01-23 04:02:32 +01:00
|
|
|
set.low_prio_disk = false;
|
2009-05-27 08:37:45 +02:00
|
|
|
// one hour expiration
|
|
|
|
set.cache_expiry = 60 * 60;
|
2010-05-13 17:01:20 +02:00
|
|
|
// this is expensive and could add significant
|
|
|
|
// delays when freeing a large number of buffers
|
|
|
|
set.lock_disk_cache = false;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
2011-01-22 02:36:57 +01:00
|
|
|
// the max number of bytes pending write before we throttle
|
|
|
|
// download rate
|
2011-03-28 00:22:57 +02:00
|
|
|
set.max_queued_disk_bytes = 10 * 1024 * 1024;
|
2011-03-20 06:47:27 +01:00
|
|
|
// flush write cache in a way to minimize the amount we need to
|
|
|
|
// read back once we want to hash-check the piece. i.e. try to
|
|
|
|
// flush all blocks in-order
|
|
|
|
set.disk_cache_algorithm = session_settings::avoid_readback;
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2011-03-15 08:47:03 +01:00
|
|
|
set.explicit_read_cache = false;
|
2010-01-15 17:45:42 +01:00
|
|
|
// prevent fast pieces to interfere with suggested pieces
|
|
|
|
// since we unchoke everyone, we don't need fast pieces anyway
|
|
|
|
set.allowed_fast_set_size = 0;
|
|
|
|
// suggest pieces in the read cache for higher cache hit rate
|
|
|
|
set.suggest_mode = session_settings::suggest_read_cache;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
set.close_redundant_connections = true;
|
|
|
|
|
|
|
|
set.max_rejects = 10;
|
|
|
|
|
|
|
|
set.optimize_hashing_for_speed = true;
|
|
|
|
|
2009-05-27 08:37:45 +02:00
|
|
|
// don't let connections linger for too long
|
|
|
|
set.request_timeout = 10;
|
|
|
|
set.peer_timeout = 20;
|
|
|
|
set.inactivity_timeout = 20;
|
|
|
|
|
|
|
|
set.active_limit = 2000;
|
2010-03-29 02:34:04 +02:00
|
|
|
set.active_tracker_limit = 2000;
|
|
|
|
set.active_dht_limit = 600;
|
2009-05-27 08:37:45 +02:00
|
|
|
set.active_seeds = 2000;
|
|
|
|
|
2010-02-09 04:04:41 +01:00
|
|
|
set.choking_algorithm = session_settings::fixed_slots_choker;
|
2009-05-27 08:37:45 +02:00
|
|
|
|
2009-08-17 19:33:57 +02:00
|
|
|
// in order to be able to deliver very high
|
|
|
|
// upload rates, this should be able to cover
|
|
|
|
// the bandwidth delay product. Assuming an RTT
|
2011-03-15 08:47:03 +01:00
|
|
|
// of 500 ms, and a send rate of 20 MB/s, the upper
|
|
|
|
// limit should be 10 MB
|
|
|
|
set.send_buffer_watermark = 10 * 1024 * 1024;
|
2009-08-17 19:33:57 +02:00
|
|
|
|
2010-03-12 03:36:55 +01:00
|
|
|
// put 10 seconds worth of data in the send buffer
|
|
|
|
// this gives the disk I/O more heads-up on disk
|
|
|
|
// reads, and can maximize throughput
|
|
|
|
set.send_buffer_watermark_factor = 10;
|
|
|
|
|
2009-05-27 08:37:45 +02:00
|
|
|
// don't retry peers if they fail once. Let them
|
|
|
|
// connect to us if they want to
|
|
|
|
set.max_failcount = 1;
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
// allow the buffer size to grow for the uTP socket
|
|
|
|
set.utp_dynamic_sock_buf = true;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
// wrapper around a function that's executed in the network thread
|
|
|
|
// ans synchronized in the client thread
|
|
|
|
template <class R>
|
|
|
|
void fun_ret(R* ret, bool* done, condition* e, mutex* m, boost::function<R(void)> f)
|
|
|
|
{
|
|
|
|
*ret = f();
|
|
|
|
mutex::scoped_lock l(*m);
|
|
|
|
*done = true;
|
2010-08-26 19:00:24 +02:00
|
|
|
e->signal_all(l);
|
2010-07-14 06:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void fun_wrap(bool* done, condition* e, mutex* m, boost::function<void(void)> f)
|
|
|
|
{
|
|
|
|
f();
|
|
|
|
mutex::scoped_lock l(*m);
|
|
|
|
*done = true;
|
2010-08-26 19:00:24 +02:00
|
|
|
e->signal_all(l);
|
2010-07-14 06:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define TORRENT_ASYNC_CALL(x) \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&session_impl:: x, m_impl.get()))
|
|
|
|
|
|
|
|
#define TORRENT_ASYNC_CALL1(x, a1) \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&session_impl:: x, m_impl.get(), a1))
|
|
|
|
|
|
|
|
#define TORRENT_ASYNC_CALL2(x, a1, a2) \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&session_impl:: x, m_impl.get(), a1, a2))
|
|
|
|
|
2011-03-09 03:34:13 +01:00
|
|
|
#define TORRENT_WAIT \
|
|
|
|
mutex::scoped_lock l(m_impl->mut); \
|
|
|
|
while (!done) { m_impl->cond.wait(l); };
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
#define TORRENT_SYNC_CALL(x) \
|
|
|
|
bool done = false; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_wrap, &done, &m_impl->cond, &m_impl->mut, boost::function<void(void)>(boost::bind(&session_impl:: x, m_impl.get())))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
|
|
|
#define TORRENT_SYNC_CALL1(x, a1) \
|
|
|
|
bool done = false; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_wrap, &done, &m_impl->cond, &m_impl->mut, boost::function<void(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
|
|
|
#define TORRENT_SYNC_CALL2(x, a1, a2) \
|
|
|
|
bool done = false; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_wrap, &done, &m_impl->cond, &m_impl->mut, boost::function<void(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1, a2)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
2011-02-01 10:48:28 +01:00
|
|
|
#define TORRENT_SYNC_CALL3(x, a1, a2, a3) \
|
|
|
|
bool done = false; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_wrap, &done, &m_impl->cond, &m_impl->mut, boost::function<void(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1, a2, a3)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2011-02-01 10:48:28 +01:00
|
|
|
|
2011-02-16 07:35:53 +01:00
|
|
|
#define TORRENT_SYNC_CALL4(x, a1, a2, a3, a4) \
|
|
|
|
bool done = false; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_wrap, &done, &m_impl->cond, &m_impl->mut, boost::function<void(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1, a2, a3, a4)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2011-02-16 07:35:53 +01:00
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
#define TORRENT_SYNC_CALL_RET(type, x) \
|
|
|
|
bool done = false; \
|
|
|
|
type r; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_ret<type>, &r, &done, &m_impl->cond, &m_impl->mut, boost::function<type(void)>(boost::bind(&session_impl:: x, m_impl.get())))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
|
|
|
#define TORRENT_SYNC_CALL_RET1(type, x, a1) \
|
|
|
|
bool done = false; \
|
|
|
|
type r; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_ret<type>, &r, &done, &m_impl->cond, &m_impl->mut, boost::function<type(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
|
|
|
#define TORRENT_SYNC_CALL_RET2(type, x, a1, a2) \
|
|
|
|
bool done = false; \
|
|
|
|
type r; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_ret<type>, &r, &done, &m_impl->cond, &m_impl->mut, boost::function<type(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1, a2)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
|
|
|
#define TORRENT_SYNC_CALL_RET3(type, x, a1, a2, a3) \
|
|
|
|
bool done = false; \
|
|
|
|
type r; \
|
|
|
|
m_impl->m_io_service.post(boost::bind(&fun_ret<type>, &r, &done, &m_impl->cond, &m_impl->mut, boost::function<type(void)>(boost::bind(&session_impl:: x, m_impl.get(), a1, a2, a3)))); \
|
2011-03-09 03:34:13 +01:00
|
|
|
TORRENT_WAIT
|
2010-07-14 06:16:38 +02:00
|
|
|
|
2010-10-24 02:44:07 +02:00
|
|
|
// this is a dummy function that's exported and named based
|
|
|
|
// on the configuration. The session.hpp file will reference
|
|
|
|
// it and if the library and the client are built with different
|
|
|
|
// configurations this will give a link error
|
|
|
|
void TORRENT_EXPORT TORRENT_CFG() {}
|
|
|
|
|
|
|
|
void session::init(std::pair<int, int> listen_range, char const* listen_interface
|
2011-06-13 18:46:46 +02:00
|
|
|
, fingerprint const& id, int flags, boost::uint32_t alert_mask TORRENT_LOGPATH_ARG)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2010-10-24 10:06:58 +02:00
|
|
|
m_impl.reset(new session_impl(listen_range, id, listen_interface TORRENT_LOGPATH));
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
start_malloc_debug();
|
2006-10-11 16:02:21 +02:00
|
|
|
#endif
|
2008-11-16 03:09:53 +01:00
|
|
|
set_alert_mask(alert_mask);
|
2008-09-22 01:19:58 +02:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
if (flags & add_default_plugins)
|
|
|
|
{
|
|
|
|
add_extension(create_ut_pex_plugin);
|
|
|
|
add_extension(create_ut_metadata_plugin);
|
2008-11-27 21:51:59 +01:00
|
|
|
add_extension(create_lt_trackers_plugin);
|
2008-09-22 01:19:58 +02:00
|
|
|
add_extension(create_smart_ban_plugin);
|
|
|
|
}
|
|
|
|
#endif
|
2010-12-05 22:08:19 +01:00
|
|
|
|
|
|
|
m_impl->start_session();
|
|
|
|
|
2008-09-22 01:19:58 +02:00
|
|
|
if (flags & start_default_features)
|
|
|
|
{
|
|
|
|
start_upnp();
|
|
|
|
start_natpmp();
|
2008-10-24 10:11:17 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
start_dht();
|
|
|
|
#endif
|
|
|
|
start_lsd();
|
2008-09-22 01:19:58 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
session::~session()
|
|
|
|
{
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
stop_malloc_debug();
|
|
|
|
#endif
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(m_impl);
|
2006-10-11 16:02:21 +02:00
|
|
|
// if there is at least one destruction-proxy
|
|
|
|
// abort the session and let the destructor
|
|
|
|
// of the proxy to syncronize
|
|
|
|
if (!m_impl.unique())
|
2010-07-14 06:16:38 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASYNC_CALL(abort);
|
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2010-03-06 08:49:40 +01:00
|
|
|
void session::save_state(entry& e, boost::uint32_t flags) const
|
2009-12-03 06:11:57 +01:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL2(save_state, &e, flags);
|
2009-12-03 06:11:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::load_state(lazy_entry const& e)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
// this needs to be synchronized since the lifespan
|
|
|
|
// of e is tied to the caller
|
|
|
|
TORRENT_SYNC_CALL1(load_state, &e);
|
2009-12-03 06:11:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-18 04:41:54 +01:00
|
|
|
feed_handle session::add_feed(feed_settings const& feed)
|
|
|
|
{
|
|
|
|
// if you have auto-download enabled, you must specify a download directory!
|
|
|
|
TORRENT_ASSERT(!feed.auto_download || !feed.add_args.save_path.empty());
|
|
|
|
TORRENT_SYNC_CALL_RET1(feed_handle, add_feed, feed);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::remove_feed(feed_handle h)
|
|
|
|
{
|
|
|
|
TORRENT_ASYNC_CALL1(remove_feed, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::get_feeds(std::vector<feed_handle>& f) const
|
|
|
|
{
|
|
|
|
f.clear();
|
|
|
|
TORRENT_SYNC_CALL1(get_feeds, &f);
|
|
|
|
}
|
|
|
|
|
2008-09-22 01:19:58 +02:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
2007-09-14 02:11:33 +02:00
|
|
|
void session::add_extension(boost::function<boost::shared_ptr<torrent_plugin>(torrent*, void*)> ext)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(add_extension, ext);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2011-01-29 11:37:21 +01:00
|
|
|
|
|
|
|
void session::add_extension(boost::shared_ptr<plugin> ext)
|
|
|
|
{
|
|
|
|
TORRENT_ASYNC_CALL1(add_ses_extension, ext);
|
|
|
|
}
|
2008-09-22 01:19:58 +02:00
|
|
|
#endif
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2008-04-05 06:53:22 +02:00
|
|
|
#ifndef TORRENT_DISABLE_GEO_IP
|
2010-07-14 06:16:38 +02:00
|
|
|
void session::load_asnum_db(char const* file)
|
2008-04-05 06:53:22 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(load_asnum_db, std::string(file));
|
2008-04-05 06:53:22 +02:00
|
|
|
}
|
2008-04-11 10:46:43 +02:00
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
void session::load_country_db(char const* file)
|
2008-04-11 10:46:43 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(load_country_db, std::string(file));
|
2008-04-11 10:46:43 +02:00
|
|
|
}
|
2008-04-22 02:05:23 +02:00
|
|
|
|
|
|
|
int session::as_for_ip(address const& addr)
|
|
|
|
{
|
|
|
|
return m_impl->as_for_ip(addr);
|
|
|
|
}
|
|
|
|
|
2009-10-29 19:12:43 +01:00
|
|
|
#if TORRENT_USE_WSTRING
|
2010-07-14 06:16:38 +02:00
|
|
|
void session::load_asnum_db(wchar_t const* file)
|
2009-03-31 10:12:35 +02:00
|
|
|
{
|
2010-07-14 09:38:35 +02:00
|
|
|
TORRENT_ASYNC_CALL1(load_asnum_dbw, std::wstring(file));
|
2009-03-31 10:12:35 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
void session::load_country_db(wchar_t const* file)
|
2009-03-31 10:12:35 +02:00
|
|
|
{
|
2010-07-14 09:38:35 +02:00
|
|
|
TORRENT_ASYNC_CALL1(load_country_dbw, std::wstring(file));
|
2009-03-31 10:12:35 +02:00
|
|
|
}
|
2009-10-29 19:12:43 +01:00
|
|
|
#endif // TORRENT_USE_WSTRING
|
|
|
|
#endif // TORRENT_DISABLE_GEO_IP
|
2008-04-05 06:53:22 +02:00
|
|
|
|
2010-03-04 17:42:39 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2008-04-05 06:53:22 +02:00
|
|
|
void session::load_state(entry const& ses_state)
|
|
|
|
{
|
2011-06-05 08:42:51 +02:00
|
|
|
if (ses_state.type() == entry::undefined_t) return;
|
2010-03-04 17:42:39 +01:00
|
|
|
std::vector<char> buf;
|
|
|
|
bencode(std::back_inserter(buf), ses_state);
|
|
|
|
lazy_entry e;
|
2010-10-28 06:01:59 +02:00
|
|
|
error_code ec;
|
2011-02-21 06:24:41 +01:00
|
|
|
int ret = lazy_bdecode(&buf[0], &buf[0] + buf.size(), e, ec);
|
|
|
|
TORRENT_ASSERT(ret == 0);
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL1(load_state, &e);
|
2008-04-05 06:53:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
entry session::state() const
|
|
|
|
{
|
2010-03-04 17:42:39 +01:00
|
|
|
entry ret;
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL2(save_state, &ret, 0xffffffff);
|
2010-03-04 17:42:39 +01:00
|
|
|
return ret;
|
2008-04-05 06:53:22 +02:00
|
|
|
}
|
2010-03-04 17:42:39 +01:00
|
|
|
#endif
|
2008-04-05 06:53:22 +02:00
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_ip_filter(ip_filter const& f)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_ip_filter, f);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2009-07-21 03:52:37 +02:00
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
ip_filter session::get_ip_filter() const
|
2009-07-21 03:52:37 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(ip_filter, get_ip_filter);
|
|
|
|
return r;
|
2009-07-21 03:52:37 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2007-06-01 03:05:57 +02:00
|
|
|
void session::set_port_filter(port_filter const& f)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_port_filter, f);
|
2007-06-01 03:05:57 +02:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_peer_id(peer_id const& id)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_peer_id, id);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2007-06-09 01:02:31 +02:00
|
|
|
|
|
|
|
peer_id session::id() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(peer_id, get_peer_id);
|
|
|
|
return r;
|
2007-06-09 01:02:31 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2009-03-17 10:34:44 +01:00
|
|
|
io_service& session::get_io_service()
|
|
|
|
{
|
|
|
|
return m_impl->m_io_service;
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_key(int key)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_key, key);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2011-02-01 10:48:28 +01:00
|
|
|
void session::get_torrent_status(std::vector<torrent_status>* ret
|
|
|
|
, boost::function<bool(torrent_status const&)> const& pred
|
|
|
|
, boost::uint32_t flags) const
|
|
|
|
{
|
|
|
|
TORRENT_SYNC_CALL3(get_torrent_status, ret, boost::ref(pred), flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::refresh_torrent_status(std::vector<torrent_status>* ret
|
|
|
|
, boost::uint32_t flags) const
|
|
|
|
{
|
|
|
|
TORRENT_SYNC_CALL2(refresh_torrent_status, ret, flags);
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
std::vector<torrent_handle> session::get_torrents() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(std::vector<torrent_handle>, get_torrents);
|
|
|
|
return r;
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2006-11-14 01:08:16 +01:00
|
|
|
|
|
|
|
torrent_handle session::find_torrent(sha1_hash const& info_hash) const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET1(torrent_handle, find_torrent_handle, info_hash);
|
|
|
|
return r;
|
2006-11-14 01:08:16 +01:00
|
|
|
}
|
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-04-24 05:28:48 +02:00
|
|
|
torrent_handle session::add_torrent(add_torrent_params const& params)
|
|
|
|
{
|
2010-12-30 02:47:30 +01:00
|
|
|
if (string_begins_no_case("magnet:", params.url.c_str()))
|
|
|
|
{
|
|
|
|
add_torrent_params p(params);
|
|
|
|
p.url.clear();
|
|
|
|
return add_magnet_uri(*this, params.url, p);
|
|
|
|
}
|
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
error_code ec;
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET2(torrent_handle, add_torrent, params, ec);
|
2009-02-23 02:21:19 +01:00
|
|
|
if (ec) throw libtorrent_exception(ec);
|
2010-07-14 06:16:38 +02:00
|
|
|
return r;
|
2009-02-23 02:21:19 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
torrent_handle session::add_torrent(add_torrent_params const& params, error_code& ec)
|
|
|
|
{
|
2011-01-19 11:07:51 +01:00
|
|
|
ec.clear();
|
2010-12-30 02:47:30 +01:00
|
|
|
if (string_begins_no_case("magnet:", params.url.c_str()))
|
|
|
|
{
|
|
|
|
add_torrent_params p(params);
|
|
|
|
p.url.clear();
|
|
|
|
return add_magnet_uri(*this, params.url, p, ec);
|
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET2(torrent_handle, add_torrent, params, ec);
|
|
|
|
return r;
|
2008-04-24 05:28:48 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2009-02-26 08:09:56 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-08-03 17:14:08 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2006-10-11 16:02:21 +02:00
|
|
|
// if the torrent already exists, this will throw duplicate_torrent
|
|
|
|
torrent_handle session::add_torrent(
|
|
|
|
torrent_info const& ti
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& save_path
|
2006-10-11 16:02:21 +02:00
|
|
|
, entry const& resume_data
|
2007-10-08 22:01:36 +02:00
|
|
|
, storage_mode_t storage_mode
|
2007-08-22 07:31:42 +02:00
|
|
|
, bool paused
|
2007-03-16 06:29:23 +01:00
|
|
|
, storage_constructor_type sc)
|
2007-09-01 05:00:31 +02:00
|
|
|
{
|
|
|
|
boost::intrusive_ptr<torrent_info> tip(new torrent_info(ti));
|
2008-04-24 05:28:48 +02:00
|
|
|
add_torrent_params p(sc);
|
|
|
|
p.ti = tip;
|
|
|
|
p.save_path = save_path;
|
2008-07-01 01:14:31 +02:00
|
|
|
std::vector<char> buf;
|
|
|
|
if (resume_data.type() != entry::undefined_t)
|
|
|
|
{
|
|
|
|
bencode(std::back_inserter(buf), resume_data);
|
|
|
|
p.resume_data = &buf;
|
|
|
|
}
|
2008-04-24 05:28:48 +02:00
|
|
|
p.storage_mode = storage_mode;
|
|
|
|
p.paused = paused;
|
2009-02-23 02:21:19 +01:00
|
|
|
return add_torrent(p);
|
2007-09-01 05:00:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle session::add_torrent(
|
|
|
|
boost::intrusive_ptr<torrent_info> ti
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& save_path
|
2007-09-01 05:00:31 +02:00
|
|
|
, entry const& resume_data
|
2007-10-08 22:01:36 +02:00
|
|
|
, storage_mode_t storage_mode
|
2007-09-01 05:00:31 +02:00
|
|
|
, bool paused
|
2007-09-14 02:11:33 +02:00
|
|
|
, storage_constructor_type sc
|
|
|
|
, void* userdata)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2008-04-24 05:28:48 +02:00
|
|
|
add_torrent_params p(sc);
|
|
|
|
p.ti = ti;
|
|
|
|
p.save_path = save_path;
|
2008-07-01 01:14:31 +02:00
|
|
|
std::vector<char> buf;
|
|
|
|
if (resume_data.type() != entry::undefined_t)
|
|
|
|
{
|
|
|
|
bencode(std::back_inserter(buf), resume_data);
|
|
|
|
p.resume_data = &buf;
|
|
|
|
}
|
2008-04-24 05:28:48 +02:00
|
|
|
p.storage_mode = storage_mode;
|
|
|
|
p.paused = paused;
|
|
|
|
p.userdata = userdata;
|
2009-02-23 02:21:19 +01:00
|
|
|
return add_torrent(p);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle session::add_torrent(
|
|
|
|
char const* tracker_url
|
|
|
|
, sha1_hash const& info_hash
|
2006-11-14 01:08:16 +01:00
|
|
|
, char const* name
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& save_path
|
2006-10-11 16:02:21 +02:00
|
|
|
, entry const& e
|
2007-10-08 22:01:36 +02:00
|
|
|
, storage_mode_t storage_mode
|
2007-08-22 07:31:42 +02:00
|
|
|
, bool paused
|
2007-09-14 02:11:33 +02:00
|
|
|
, storage_constructor_type sc
|
|
|
|
, void* userdata)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2008-04-24 05:28:48 +02:00
|
|
|
add_torrent_params p(sc);
|
|
|
|
p.tracker_url = tracker_url;
|
|
|
|
p.info_hash = info_hash;
|
|
|
|
p.save_path = save_path;
|
|
|
|
p.paused = paused;
|
|
|
|
p.userdata = userdata;
|
2009-02-23 02:21:19 +01:00
|
|
|
return add_torrent(p);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2009-06-13 06:09:54 +02:00
|
|
|
#endif // TORRENT_NO_DEPRECATE
|
|
|
|
#endif // BOOST_NO_EXCEPTIONS
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2007-10-13 05:33:33 +02:00
|
|
|
void session::remove_torrent(const torrent_handle& h, int options)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2011-06-21 04:02:58 +02:00
|
|
|
if (!h.is_valid())
|
|
|
|
#ifdef BOOST_NO_EXCEPTIONS
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
throw_invalid_handle();
|
|
|
|
#endif
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL2(remove_torrent, h, options);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2011-02-16 07:35:53 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2006-10-11 16:02:21 +02:00
|
|
|
bool session::listen_on(
|
|
|
|
std::pair<int, int> const& port_range
|
2010-06-17 19:14:56 +02:00
|
|
|
, const char* net_interface, int flags)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2011-02-16 07:35:53 +01:00
|
|
|
error_code ec;
|
|
|
|
TORRENT_SYNC_CALL4(listen_on, port_range, boost::ref(ec), net_interface, flags);
|
2011-02-21 06:24:41 +01:00
|
|
|
return !!ec;
|
2011-02-16 07:35:53 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void session::listen_on(
|
|
|
|
std::pair<int, int> const& port_range
|
|
|
|
, error_code& ec
|
|
|
|
, const char* net_interface, int flags)
|
|
|
|
{
|
|
|
|
TORRENT_SYNC_CALL4(listen_on, port_range, boost::ref(ec), net_interface, flags);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short session::listen_port() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(unsigned short, listen_port);
|
|
|
|
return r;
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
session_status session::status() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(session_status, status);
|
|
|
|
return r;
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2009-05-23 23:36:09 +02:00
|
|
|
void session::pause()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(pause);
|
2009-05-23 23:36:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::resume()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(resume);
|
2009-05-23 23:36:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool session::is_paused() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(bool, is_paused);
|
|
|
|
return r;
|
2009-05-23 23:36:09 +02:00
|
|
|
}
|
2008-06-29 21:08:30 +02:00
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
void session::get_cache_info(sha1_hash const& ih
|
|
|
|
, std::vector<cached_piece_info>& ret) const
|
|
|
|
{
|
|
|
|
m_impl->m_disk_thread.get_cache_info(ih, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_status session::get_cache_status() const
|
|
|
|
{
|
|
|
|
return m_impl->m_disk_thread.status();
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
|
2010-03-04 17:42:39 +01:00
|
|
|
void session::start_dht()
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2010-03-04 17:42:39 +01:00
|
|
|
// the state is loaded in load_state()
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(start_dht);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_dht()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(stop_dht);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_dht_settings(dht_settings const& settings)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_dht_settings, settings);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2010-03-04 17:42:39 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
void session::start_dht(entry const& startup_state)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(start_dht, startup_state);
|
2010-03-04 17:42:39 +01:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
entry session::dht_state() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(entry, dht_state);
|
|
|
|
return r;
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2010-03-04 17:42:39 +01:00
|
|
|
#endif
|
2006-10-11 16:02:21 +02:00
|
|
|
|
|
|
|
void session::add_dht_node(std::pair<std::string, int> const& node)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(add_dht_node_name, node);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::add_dht_router(std::pair<std::string, int> const& node)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(add_dht_router, node);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2009-10-24 23:55:16 +02:00
|
|
|
bool session::is_dht_running() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(bool, is_dht_running);
|
|
|
|
return r;
|
2009-10-24 23:55:16 +02:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
#endif
|
|
|
|
|
2007-06-06 02:41:20 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
void session::set_pe_settings(pe_settings const& settings)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_pe_settings, settings);
|
2007-06-06 02:41:20 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
pe_settings session::get_pe_settings() const
|
2007-06-06 02:41:20 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(pe_settings, get_pe_settings);
|
|
|
|
return r;
|
2007-06-06 02:41:20 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
bool session::is_listening() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(bool, is_listening);
|
|
|
|
return r;
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_settings(session_settings const& s)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_settings, s);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2010-12-26 09:03:02 +01:00
|
|
|
session_settings session::settings() const
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(session_settings, settings);
|
|
|
|
return r;
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2010-08-23 08:27:18 +02:00
|
|
|
void session::set_proxy(proxy_settings const& s)
|
|
|
|
{
|
|
|
|
TORRENT_ASYNC_CALL1(set_proxy, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_settings session::proxy() const
|
|
|
|
{
|
|
|
|
TORRENT_SYNC_CALL_RET(proxy_settings, proxy);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2007-04-25 20:26:35 +02:00
|
|
|
void session::set_peer_proxy(proxy_settings const& s)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_peer_proxy, s);
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_web_seed_proxy(proxy_settings const& s)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_web_seed_proxy, s);
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_tracker_proxy(proxy_settings const& s)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_tracker_proxy, s);
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
proxy_settings session::peer_proxy() const
|
2007-04-25 20:26:35 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(proxy_settings, peer_proxy);
|
|
|
|
return r;
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
proxy_settings session::web_seed_proxy() const
|
2007-04-25 20:26:35 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(proxy_settings, web_seed_proxy);
|
|
|
|
return r;
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
proxy_settings session::tracker_proxy() const
|
2007-04-25 20:26:35 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(proxy_settings, tracker_proxy);
|
|
|
|
return r;
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
void session::set_dht_proxy(proxy_settings const& s)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_dht_proxy, s);
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
proxy_settings session::dht_proxy() const
|
2007-04-25 20:26:35 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(proxy_settings, dht_proxy);
|
|
|
|
return r;
|
2007-04-25 20:26:35 +02:00
|
|
|
}
|
|
|
|
#endif
|
2010-08-23 08:27:18 +02:00
|
|
|
#endif // TORRENT_NO_DEPRECATE
|
2007-04-25 20:26:35 +02:00
|
|
|
|
2009-08-20 05:19:12 +02:00
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
void session::set_i2p_proxy(proxy_settings const& s)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_i2p_proxy, s);
|
2009-08-20 05:19:12 +02:00
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
proxy_settings session::i2p_proxy() const
|
2009-08-20 05:19:12 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(proxy_settings, i2p_proxy);
|
|
|
|
return r;
|
2009-08-20 05:19:12 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-04-06 08:27:42 +02:00
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
void session::enable_stats_logging(bool s)
|
|
|
|
{
|
|
|
|
TORRENT_ASYNC_CALL1(enable_stats_logging, s);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-09 21:09:38 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2009-04-07 17:55:05 +02:00
|
|
|
int session::max_uploads() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, max_uploads);
|
|
|
|
return r;
|
2009-04-07 17:55:05 +02:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_max_uploads(int limit)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_max_uploads, limit);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2008-11-08 08:40:55 +01:00
|
|
|
int session::max_connections() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, max_connections);
|
|
|
|
return r;
|
2008-11-08 08:40:55 +01:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_max_connections(int limit)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_max_connections, limit);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2007-09-10 03:57:40 +02:00
|
|
|
int session::max_half_open_connections() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, max_half_open_connections);
|
|
|
|
return r;
|
2007-09-10 03:57:40 +02:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_max_half_open_connections(int limit)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_max_half_open_connections, limit);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2009-05-14 19:21:19 +02:00
|
|
|
int session::local_upload_rate_limit() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, local_upload_rate_limit);
|
|
|
|
return r;
|
2009-05-14 19:21:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int session::local_download_rate_limit() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, local_download_rate_limit);
|
|
|
|
return r;
|
2009-05-14 19:21:19 +02:00
|
|
|
}
|
|
|
|
|
2007-01-02 00:51:24 +01:00
|
|
|
int session::upload_rate_limit() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, upload_rate_limit);
|
|
|
|
return r;
|
2007-01-02 00:51:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int session::download_rate_limit() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, download_rate_limit);
|
|
|
|
return r;
|
2007-01-02 00:51:24 +01:00
|
|
|
}
|
|
|
|
|
2009-05-14 19:21:19 +02:00
|
|
|
void session::set_local_upload_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_local_upload_rate_limit, bytes_per_second);
|
2009-05-14 19:21:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_local_download_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_local_download_rate_limit, bytes_per_second);
|
2009-05-14 19:21:19 +02:00
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_upload_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_upload_rate_limit, bytes_per_second);
|
2004-03-28 19:45:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_download_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_download_rate_limit, bytes_per_second);
|
2003-11-09 19:17:09 +01:00
|
|
|
}
|
|
|
|
|
2007-01-01 22:04:30 +01:00
|
|
|
int session::num_uploads() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, num_uploads);
|
|
|
|
return r;
|
2007-01-01 22:04:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int session::num_connections() const
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(int, num_connections);
|
|
|
|
return r;
|
2007-01-01 22:04:30 +01:00
|
|
|
}
|
2011-09-16 06:03:54 +02:00
|
|
|
#endif // TORRENT_NO_DEPRECATE
|
2007-01-01 22:04:30 +01:00
|
|
|
|
2011-01-23 19:00:52 +01:00
|
|
|
void session::set_alert_dispatch(boost::function<void(std::auto_ptr<alert>)> const& fun)
|
2003-11-29 17:34:07 +01:00
|
|
|
{
|
2011-01-23 19:00:52 +01:00
|
|
|
TORRENT_ASYNC_CALL1(set_alert_dispatch, fun);
|
2003-11-29 17:34:07 +01:00
|
|
|
}
|
|
|
|
|
2011-01-23 19:00:52 +01:00
|
|
|
std::auto_ptr<alert> session::pop_alert()
|
2008-12-15 08:12:08 +01:00
|
|
|
{
|
2011-01-23 19:00:52 +01:00
|
|
|
return m_impl->pop_alert();
|
2008-12-15 08:12:08 +01:00
|
|
|
}
|
|
|
|
|
2011-03-14 03:59:46 +01:00
|
|
|
void session::pop_alerts(std::deque<alert*>* alerts)
|
|
|
|
{
|
|
|
|
for (std::deque<alert*>::iterator i = alerts->begin()
|
|
|
|
, end(alerts->end()); i != end; ++i)
|
|
|
|
delete *i;
|
|
|
|
alerts->clear();
|
|
|
|
m_impl->pop_alerts(alerts);
|
|
|
|
}
|
|
|
|
|
2007-11-25 09:18:57 +01:00
|
|
|
alert const* session::wait_for_alert(time_duration max_wait)
|
|
|
|
{
|
|
|
|
return m_impl->wait_for_alert(max_wait);
|
|
|
|
}
|
|
|
|
|
2011-06-13 18:46:46 +02:00
|
|
|
void session::set_alert_mask(boost::uint32_t m)
|
2008-07-06 14:22:56 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_alert_mask, m);
|
2008-07-06 14:22:56 +02:00
|
|
|
}
|
|
|
|
|
2011-01-23 19:00:52 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2008-10-07 09:12:32 +02:00
|
|
|
size_t session::set_alert_queue_size_limit(size_t queue_size_limit_)
|
2008-10-07 07:46:42 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET1(size_t, set_alert_queue_size_limit, queue_size_limit_);
|
|
|
|
return r;
|
2008-10-07 07:46:42 +02:00
|
|
|
}
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
void session::set_severity_level(alert::severity_t s)
|
2003-12-21 18:28:27 +01:00
|
|
|
{
|
2008-07-06 14:22:56 +02:00
|
|
|
int m = 0;
|
|
|
|
switch (s)
|
|
|
|
{
|
|
|
|
case alert::debug: m = alert::all_categories; break;
|
|
|
|
case alert::info: m = alert::all_categories & ~(alert::debug_notification
|
2008-10-22 03:12:14 +02:00
|
|
|
| alert::progress_notification | alert::dht_notification); break;
|
2008-07-06 14:22:56 +02:00
|
|
|
case alert::warning: m = alert::all_categories & ~(alert::debug_notification
|
2008-10-22 03:12:14 +02:00
|
|
|
| alert::status_notification | alert::progress_notification
|
|
|
|
| alert::dht_notification); break;
|
2008-07-06 14:22:56 +02:00
|
|
|
case alert::critical: m = alert::error_notification | alert::storage_notification; break;
|
|
|
|
case alert::fatal: m = alert::error_notification; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL1(set_alert_mask, m);
|
2003-12-22 08:14:35 +01:00
|
|
|
}
|
2008-08-03 17:14:08 +02:00
|
|
|
#endif
|
2003-10-25 03:31:06 +02:00
|
|
|
|
2007-05-31 02:21:54 +02:00
|
|
|
void session::start_lsd()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(start_lsd);
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
2008-04-07 01:18:35 +02:00
|
|
|
natpmp* session::start_natpmp()
|
2007-05-31 02:21:54 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(natpmp*, start_natpmp);
|
|
|
|
return r;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
2008-04-07 01:18:35 +02:00
|
|
|
upnp* session::start_upnp()
|
2007-05-31 02:21:54 +02:00
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_SYNC_CALL_RET(upnp*, start_upnp);
|
|
|
|
return r;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_lsd()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(stop_lsd);
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_natpmp()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(stop_natpmp);
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_upnp()
|
|
|
|
{
|
2010-07-14 06:16:38 +02:00
|
|
|
TORRENT_ASYNC_CALL(stop_upnp);
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
2007-05-05 02:29:33 +02:00
|
|
|
connection_queue& session::get_connection_queue()
|
|
|
|
{
|
|
|
|
return m_impl->m_half_open;
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
|