forked from premiere/premiere-libtorrent
created session_params and refactor (#993)
created session_params and new session constructor
This commit is contained in:
parent
30873e9c91
commit
74c8054e8d
|
@ -86,6 +86,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "libtorrent/kademlia/dht_observer.hpp"
|
#include "libtorrent/kademlia/dht_observer.hpp"
|
||||||
#include "libtorrent/resolver.hpp"
|
#include "libtorrent/resolver.hpp"
|
||||||
#include "libtorrent/invariant_check.hpp"
|
#include "libtorrent/invariant_check.hpp"
|
||||||
|
#include "libtorrent/extensions.hpp"
|
||||||
|
|
||||||
#if TORRENT_COMPLETE_TYPES_REQUIRED
|
#if TORRENT_COMPLETE_TYPES_REQUIRED
|
||||||
#include "libtorrent/peer_connection.hpp"
|
#include "libtorrent/peer_connection.hpp"
|
||||||
|
@ -215,6 +216,19 @@ namespace libtorrent
|
||||||
void init_peer_class_filter(bool unlimited_local);
|
void init_peer_class_filter(bool unlimited_local);
|
||||||
|
|
||||||
#ifndef TORRENT_DISABLE_EXTENSIONS
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
|
using ext_function_t
|
||||||
|
= boost::function<boost::shared_ptr<torrent_plugin>(torrent_handle const&, void*)>;
|
||||||
|
|
||||||
|
struct session_plugin_wrapper : plugin
|
||||||
|
{
|
||||||
|
explicit session_plugin_wrapper(ext_function_t const& f) : m_f(f) {}
|
||||||
|
explicit session_plugin_wrapper(session_plugin_wrapper const& p) : m_f(p.m_f) {}
|
||||||
|
|
||||||
|
boost::shared_ptr<torrent_plugin> new_torrent(torrent_handle const& t, void* user) override
|
||||||
|
{ return m_f(t, user); }
|
||||||
|
ext_function_t m_f;
|
||||||
|
};
|
||||||
|
|
||||||
void add_extension(boost::function<boost::shared_ptr<torrent_plugin>(
|
void add_extension(boost::function<boost::shared_ptr<torrent_plugin>(
|
||||||
torrent_handle const&, void*)> ext);
|
torrent_handle const&, void*)> ext);
|
||||||
void add_ses_extension(boost::shared_ptr<plugin> ext);
|
void add_ses_extension(boost::shared_ptr<plugin> ext);
|
||||||
|
|
|
@ -33,11 +33,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef TORRENT_DHT_STORAGE_HPP
|
#ifndef TORRENT_DHT_STORAGE_HPP
|
||||||
#define TORRENT_DHT_STORAGE_HPP
|
#define TORRENT_DHT_STORAGE_HPP
|
||||||
|
|
||||||
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
#include <functional>
|
||||||
|
|
||||||
#include <boost/function.hpp>
|
|
||||||
|
|
||||||
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
|
||||||
|
|
||||||
#include <libtorrent/kademlia/node_id.hpp>
|
#include <libtorrent/kademlia/node_id.hpp>
|
||||||
#include <libtorrent/kademlia/types.hpp>
|
#include <libtorrent/kademlia/types.hpp>
|
||||||
|
@ -224,7 +220,7 @@ namespace dht
|
||||||
};
|
};
|
||||||
|
|
||||||
using dht_storage_constructor_type
|
using dht_storage_constructor_type
|
||||||
= boost::function<std::unique_ptr<dht_storage_interface>(dht_settings const& settings)>;
|
= std::function<std::unique_ptr<dht_storage_interface>(dht_settings const& settings)>;
|
||||||
|
|
||||||
TORRENT_EXPORT std::unique_ptr<dht_storage_interface>
|
TORRENT_EXPORT std::unique_ptr<dht_storage_interface>
|
||||||
dht_default_storage_constructor(dht_settings const& settings);
|
dht_default_storage_constructor(dht_settings const& settings);
|
||||||
|
|
|
@ -35,11 +35,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef TORRENT_DHT_TRACKER
|
#ifndef TORRENT_DHT_TRACKER
|
||||||
#define TORRENT_DHT_TRACKER
|
#define TORRENT_DHT_TRACKER
|
||||||
|
|
||||||
#include <fstream>
|
|
||||||
#include <set>
|
|
||||||
#include <numeric>
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <boost/ref.hpp>
|
|
||||||
#include <boost/smart_ptr/enable_shared_from_this.hpp>
|
#include <boost/smart_ptr/enable_shared_from_this.hpp>
|
||||||
|
|
||||||
#include "libtorrent/kademlia/node.hpp"
|
#include "libtorrent/kademlia/node.hpp"
|
||||||
|
@ -70,7 +66,7 @@ namespace libtorrent { namespace dht
|
||||||
: udp_socket_interface
|
: udp_socket_interface
|
||||||
, boost::enable_shared_from_this<dht_tracker>
|
, boost::enable_shared_from_this<dht_tracker>
|
||||||
{
|
{
|
||||||
typedef boost::function<void(udp::endpoint const&
|
typedef std::function<void(udp::endpoint const&
|
||||||
, span<char const>, error_code&, int)> send_fun_t;
|
, span<char const>, error_code&, int)> send_fun_t;
|
||||||
|
|
||||||
dht_tracker(dht_observer* observer
|
dht_tracker(dht_observer* observer
|
||||||
|
|
|
@ -33,33 +33,25 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef TORRENT_SESSION_HPP_INCLUDED
|
#ifndef TORRENT_SESSION_HPP_INCLUDED
|
||||||
#define TORRENT_SESSION_HPP_INCLUDED
|
#define TORRENT_SESSION_HPP_INCLUDED
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <vector>
|
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
#include "libtorrent/config.hpp"
|
#include "libtorrent/config.hpp"
|
||||||
#include "libtorrent/build_config.hpp"
|
#include "libtorrent/build_config.hpp"
|
||||||
#include "libtorrent/io_service.hpp"
|
#include "libtorrent/io_service.hpp"
|
||||||
|
|
||||||
#include "libtorrent/storage.hpp"
|
|
||||||
#include "libtorrent/settings_pack.hpp"
|
#include "libtorrent/settings_pack.hpp"
|
||||||
#include "libtorrent/session_handle.hpp"
|
#include "libtorrent/session_handle.hpp"
|
||||||
|
#include "libtorrent/session_settings.hpp"
|
||||||
|
#include "libtorrent/kademlia/dht_storage.hpp"
|
||||||
|
|
||||||
#ifndef TORRENT_NO_DEPRECATE
|
#ifndef TORRENT_NO_DEPRECATE
|
||||||
#include "libtorrent/session_settings.hpp"
|
|
||||||
#include "libtorrent/fingerprint.hpp"
|
#include "libtorrent/fingerprint.hpp"
|
||||||
#include <cstdio> // for snprintf
|
#include <cstdio> // for snprintf
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef TORRENT_USE_OPENSSL
|
|
||||||
// this is a nasty openssl macro
|
|
||||||
#ifdef set_key
|
|
||||||
#undef set_key
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace libtorrent
|
namespace libtorrent
|
||||||
{
|
{
|
||||||
|
struct plugin;
|
||||||
|
|
||||||
// The default values of the session settings are set for a regular
|
// The default values of the session settings are set for a regular
|
||||||
// bittorrent client running on a desktop system. There are functions that
|
// bittorrent client running on a desktop system. There are functions that
|
||||||
// can set the session settings to pre set settings for other environments.
|
// can set the session settings to pre set settings for other environments.
|
||||||
|
@ -131,6 +123,34 @@ namespace libtorrent
|
||||||
boost::shared_ptr<aux::session_impl> m_impl;
|
boost::shared_ptr<aux::session_impl> m_impl;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// The session_params is a parameters pack for configuring the session
|
||||||
|
// before it's started.
|
||||||
|
struct TORRENT_EXPORT session_params
|
||||||
|
{
|
||||||
|
// This constructor can be used to start with the default plugins
|
||||||
|
// (ut_metadata, ut_pex and smart_ban). The default values in the
|
||||||
|
// settings is to start the default features like upnp, nat-pmp,
|
||||||
|
// and dht for example.
|
||||||
|
session_params(settings_pack sp = settings_pack());
|
||||||
|
// This constructor helps to configure the set of initial plugins
|
||||||
|
// to be added to the session before it's started.
|
||||||
|
session_params(settings_pack sp
|
||||||
|
, std::vector<boost::shared_ptr<plugin>> exts);
|
||||||
|
|
||||||
|
session_params(session_params const&) = default;
|
||||||
|
session_params(session_params&&) = default;
|
||||||
|
session_params& operator=(session_params const&) = default;
|
||||||
|
session_params& operator=(session_params&&) = default;
|
||||||
|
|
||||||
|
settings_pack settings;
|
||||||
|
|
||||||
|
std::vector<boost::shared_ptr<plugin>> extensions;
|
||||||
|
|
||||||
|
libtorrent::dht_settings dht_settings;
|
||||||
|
|
||||||
|
dht::dht_storage_constructor_type dht_storage_constructor;
|
||||||
|
};
|
||||||
|
|
||||||
// The session holds all state that spans multiple torrents. Among other
|
// The session holds all state that spans multiple torrents. Among other
|
||||||
// things it runs the network loop and manages all torrents. Once it's
|
// things it runs the network loop and manages all torrents. Once it's
|
||||||
// created, the session object will spawn the main thread that will do all
|
// created, the session object will spawn the main thread that will do all
|
||||||
|
@ -147,6 +167,37 @@ namespace libtorrent
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
// Constructs the session objects which acts as the container of torrents.
|
||||||
|
// In order to avoid a race condition between starting the session and
|
||||||
|
// configuring it, you can pass in a session_params object. Its settings
|
||||||
|
// will take effect before the session starts up.
|
||||||
|
session(session_params params = session_params())
|
||||||
|
: session_handle(nullptr)
|
||||||
|
{
|
||||||
|
TORRENT_CFG();
|
||||||
|
start(std::move(params), nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Overload of the constructor that takes an external io_service to run
|
||||||
|
// the session object on. This is primarily useful for tests that may want
|
||||||
|
// to run multiple sessions on a single io_service, or low resource
|
||||||
|
// systems where additional threads are expensive and sharing an
|
||||||
|
// io_service with other events is fine.
|
||||||
|
//
|
||||||
|
// .. warning::
|
||||||
|
// The session object does not cleanly terminate with an external
|
||||||
|
// ``io_service``. The ``io_service::run()`` call _must_ have returned
|
||||||
|
// before it's safe to destruct the session. Which means you *MUST*
|
||||||
|
// call session::abort() and save the session_proxy first, then
|
||||||
|
// destruct the session object, then sync with the io_service, then
|
||||||
|
// destruct the session_proxy object.
|
||||||
|
session(session_params params, io_service& ios)
|
||||||
|
: session_handle(nullptr)
|
||||||
|
{
|
||||||
|
TORRENT_CFG();
|
||||||
|
start(std::move(params), &ios);
|
||||||
|
}
|
||||||
|
|
||||||
// Constructs the session objects which acts as the container of torrents.
|
// Constructs the session objects which acts as the container of torrents.
|
||||||
// It provides configuration options across torrents (such as rate limits,
|
// It provides configuration options across torrents (such as rate limits,
|
||||||
// disk cache, ip filter etc.). In order to avoid a race condition between
|
// disk cache, ip filter etc.). In order to avoid a race condition between
|
||||||
|
@ -158,7 +209,7 @@ namespace libtorrent
|
||||||
// nat-pmp) and default plugins (ut_metadata, ut_pex and smart_ban). The
|
// nat-pmp) and default plugins (ut_metadata, ut_pex and smart_ban). The
|
||||||
// default is to start those features. If you do not want them to start,
|
// default is to start those features. If you do not want them to start,
|
||||||
// pass 0 as the flags parameter.
|
// pass 0 as the flags parameter.
|
||||||
session(settings_pack pack = settings_pack()
|
session(settings_pack pack
|
||||||
, int flags = start_default_features | add_default_plugins)
|
, int flags = start_default_features | add_default_plugins)
|
||||||
: session_handle(nullptr)
|
: session_handle(nullptr)
|
||||||
{
|
{
|
||||||
|
@ -281,7 +332,8 @@ namespace libtorrent
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
void start(int flags, settings_pack pack, io_service* ios);
|
void start(session_params params, io_service* ios);
|
||||||
|
void start(int flags, settings_pack sp, io_service* ios);
|
||||||
|
|
||||||
// data shared between the main thread
|
// data shared between the main thread
|
||||||
// and the working thread
|
// and the working thread
|
||||||
|
|
|
@ -1332,7 +1332,7 @@ namespace libtorrent
|
||||||
// ``utp_syn_resends`` is the number of SYN packets that are sent (and
|
// ``utp_syn_resends`` is the number of SYN packets that are sent (and
|
||||||
// timed out) before giving up and closing the socket.
|
// timed out) before giving up and closing the socket.
|
||||||
// ``utp_num_resends`` is the number of times a packet is sent (and
|
// ``utp_num_resends`` is the number of times a packet is sent (and
|
||||||
// lossed or timed out) before giving up and closing the connection.
|
// lost or timed out) before giving up and closing the connection.
|
||||||
// ``utp_connect_timeout`` is the number of milliseconds of timeout
|
// ``utp_connect_timeout`` is the number of milliseconds of timeout
|
||||||
// for the initial SYN packet for uTP connections. For each timed out
|
// for the initial SYN packet for uTP connections. For each timed out
|
||||||
// packet (in a row), the timeout is doubled. ``utp_loss_multiplier``
|
// packet (in a row), the timeout is doubled. ``utp_loss_multiplier``
|
||||||
|
@ -1686,9 +1686,9 @@ namespace libtorrent
|
||||||
};
|
};
|
||||||
private:
|
private:
|
||||||
|
|
||||||
std::vector<std::pair<std::uint16_t, std::string> > m_strings;
|
std::vector<std::pair<std::uint16_t, std::string>> m_strings;
|
||||||
std::vector<std::pair<std::uint16_t, int> > m_ints;
|
std::vector<std::pair<std::uint16_t, int>> m_ints;
|
||||||
std::vector<std::pair<std::uint16_t, bool> > m_bools;
|
std::vector<std::pair<std::uint16_t, bool>> m_bools;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,51 +31,18 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libtorrent/config.hpp"
|
#include "libtorrent/config.hpp"
|
||||||
|
|
||||||
#include <ctime>
|
|
||||||
#include <algorithm>
|
|
||||||
#include <set>
|
|
||||||
#include <deque>
|
|
||||||
#include <cctype>
|
|
||||||
#include <algorithm>
|
|
||||||
#include <memory>
|
|
||||||
#include <thread>
|
|
||||||
#include <functional>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
#include "libtorrent/extensions/ut_pex.hpp"
|
#include "libtorrent/extensions/ut_pex.hpp"
|
||||||
#include "libtorrent/extensions/ut_metadata.hpp"
|
#include "libtorrent/extensions/ut_metadata.hpp"
|
||||||
#include "libtorrent/extensions/smart_ban.hpp"
|
#include "libtorrent/extensions/smart_ban.hpp"
|
||||||
#include "libtorrent/peer_id.hpp"
|
|
||||||
#include "libtorrent/torrent_info.hpp"
|
|
||||||
#include "libtorrent/tracker_manager.hpp"
|
|
||||||
#include "libtorrent/bencode.hpp"
|
|
||||||
#include "libtorrent/hasher.hpp"
|
|
||||||
#include "libtorrent/entry.hpp"
|
|
||||||
#include "libtorrent/session.hpp"
|
#include "libtorrent/session.hpp"
|
||||||
#include "libtorrent/session_handle.hpp"
|
|
||||||
#include "libtorrent/fingerprint.hpp"
|
|
||||||
#include "libtorrent/entry.hpp"
|
|
||||||
#include "libtorrent/alert_types.hpp"
|
|
||||||
#include "libtorrent/invariant_check.hpp"
|
|
||||||
#include "libtorrent/file.hpp"
|
|
||||||
#include "libtorrent/bt_peer_connection.hpp"
|
|
||||||
#include "libtorrent/ip_filter.hpp"
|
|
||||||
#include "libtorrent/socket.hpp"
|
|
||||||
#include "libtorrent/aux_/session_impl.hpp"
|
#include "libtorrent/aux_/session_impl.hpp"
|
||||||
#include "libtorrent/kademlia/dht_tracker.hpp"
|
|
||||||
#include "libtorrent/natpmp.hpp"
|
|
||||||
#include "libtorrent/upnp.hpp"
|
|
||||||
#include "libtorrent/magnet_uri.hpp"
|
|
||||||
#include "libtorrent/lazy_entry.hpp"
|
|
||||||
#include "libtorrent/aux_/session_call.hpp"
|
#include "libtorrent/aux_/session_call.hpp"
|
||||||
|
|
||||||
using boost::shared_ptr;
|
|
||||||
using libtorrent::aux::session_impl;
|
using libtorrent::aux::session_impl;
|
||||||
|
|
||||||
namespace libtorrent
|
namespace libtorrent
|
||||||
{
|
{
|
||||||
TORRENT_EXPORT void min_memory_usage(settings_pack& set)
|
void min_memory_usage(settings_pack& set)
|
||||||
{
|
{
|
||||||
#ifndef TORRENT_NO_DEPRECATE
|
#ifndef TORRENT_NO_DEPRECATE
|
||||||
// receive data directly into disk buffers
|
// receive data directly into disk buffers
|
||||||
|
@ -164,7 +131,7 @@ namespace libtorrent
|
||||||
set.set_bool(settings_pack::coalesce_writes, false);
|
set.set_bool(settings_pack::coalesce_writes, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
TORRENT_EXPORT void high_performance_seed(settings_pack& set)
|
void high_performance_seed(settings_pack& set)
|
||||||
{
|
{
|
||||||
// don't throttle TCP, assume there is
|
// don't throttle TCP, assume there is
|
||||||
// plenty of bandwidth
|
// plenty of bandwidth
|
||||||
|
@ -322,7 +289,7 @@ namespace libtorrent
|
||||||
// configurations this will give a link error
|
// configurations this will give a link error
|
||||||
void TORRENT_EXPORT TORRENT_CFG() {}
|
void TORRENT_EXPORT TORRENT_CFG() {}
|
||||||
|
|
||||||
void session::start(int flags, settings_pack pack, io_service* ios)
|
void session::start(session_params params, io_service* ios)
|
||||||
{
|
{
|
||||||
bool const internal_executor = ios == nullptr;
|
bool const internal_executor = ios == nullptr;
|
||||||
|
|
||||||
|
@ -337,17 +304,16 @@ namespace libtorrent
|
||||||
*static_cast<session_handle*>(this) = session_handle(m_impl.get());
|
*static_cast<session_handle*>(this) = session_handle(m_impl.get());
|
||||||
|
|
||||||
#ifndef TORRENT_DISABLE_EXTENSIONS
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
if (flags & add_default_plugins)
|
for (auto const& ext : params.extensions)
|
||||||
{
|
{
|
||||||
add_extension(create_ut_pex_plugin);
|
m_impl->add_ses_extension(ext);
|
||||||
add_extension(create_ut_metadata_plugin);
|
|
||||||
add_extension(create_smart_ban_plugin);
|
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
TORRENT_UNUSED(flags);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_impl->start_session(std::move(pack));
|
set_dht_settings(params.dht_settings);
|
||||||
|
set_dht_storage(params.dht_storage_constructor);
|
||||||
|
|
||||||
|
m_impl->start_session(std::move(params.settings));
|
||||||
|
|
||||||
if (internal_executor)
|
if (internal_executor)
|
||||||
{
|
{
|
||||||
|
@ -357,6 +323,32 @@ namespace libtorrent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
std::vector<boost::shared_ptr<plugin>> default_plugins(
|
||||||
|
bool empty = false)
|
||||||
|
{
|
||||||
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
|
if (empty) return {};
|
||||||
|
using wrapper = session_impl::session_plugin_wrapper;
|
||||||
|
return {
|
||||||
|
boost::make_shared<wrapper>(wrapper(create_ut_pex_plugin)),
|
||||||
|
boost::make_shared<wrapper>(wrapper(create_ut_metadata_plugin)),
|
||||||
|
boost::make_shared<wrapper>(wrapper(create_smart_ban_plugin))
|
||||||
|
};
|
||||||
|
#else
|
||||||
|
TORRENT_UNUSED(empty);
|
||||||
|
return {};
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void session::start(int flags, settings_pack sp, io_service* ios)
|
||||||
|
{
|
||||||
|
start({std::move(sp),
|
||||||
|
default_plugins((flags & add_default_plugins) == 0)}, ios);
|
||||||
|
}
|
||||||
|
|
||||||
session::~session()
|
session::~session()
|
||||||
{
|
{
|
||||||
aux::dump_call_profile();
|
aux::dump_call_profile();
|
||||||
|
@ -413,5 +405,17 @@ namespace libtorrent
|
||||||
if (m_thread && m_thread.unique())
|
if (m_thread && m_thread.unique())
|
||||||
m_thread->join();
|
m_thread->join();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
session_params::session_params(settings_pack sp)
|
||||||
|
: session_params(sp, default_plugins())
|
||||||
|
{}
|
||||||
|
|
||||||
|
session_params::session_params(settings_pack sp
|
||||||
|
, std::vector<boost::shared_ptr<plugin>> exts)
|
||||||
|
: settings(std::move(sp))
|
||||||
|
, extensions(std::move(exts))
|
||||||
|
#ifndef TORRENT_DISABLE_DHT
|
||||||
|
, dht_storage_constructor(dht::dht_default_storage_constructor)
|
||||||
|
#endif
|
||||||
|
{}
|
||||||
|
}
|
||||||
|
|
|
@ -91,7 +91,6 @@ const rlim_t rlim_infinity = RLIM_INFINITY;
|
||||||
#include "libtorrent/instantiate_connection.hpp"
|
#include "libtorrent/instantiate_connection.hpp"
|
||||||
#include "libtorrent/peer_info.hpp"
|
#include "libtorrent/peer_info.hpp"
|
||||||
#include "libtorrent/build_config.hpp"
|
#include "libtorrent/build_config.hpp"
|
||||||
#include "libtorrent/extensions.hpp"
|
|
||||||
#include "libtorrent/random.hpp"
|
#include "libtorrent/random.hpp"
|
||||||
#include "libtorrent/magnet_uri.hpp"
|
#include "libtorrent/magnet_uri.hpp"
|
||||||
#include "libtorrent/aux_/session_settings.hpp"
|
#include "libtorrent/aux_/session_settings.hpp"
|
||||||
|
@ -772,25 +771,13 @@ namespace aux {
|
||||||
|
|
||||||
#ifndef TORRENT_DISABLE_EXTENSIONS
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
|
|
||||||
typedef boost::function<boost::shared_ptr<torrent_plugin>(torrent_handle const&, void*)> ext_function_t;
|
|
||||||
|
|
||||||
struct session_plugin_wrapper : plugin
|
|
||||||
{
|
|
||||||
explicit session_plugin_wrapper(ext_function_t const& f) : m_f(f) {}
|
|
||||||
|
|
||||||
boost::shared_ptr<torrent_plugin> new_torrent(torrent_handle const& t, void* user) override
|
|
||||||
{ return m_f(t, user); }
|
|
||||||
ext_function_t m_f;
|
|
||||||
};
|
|
||||||
|
|
||||||
void session_impl::add_extension(ext_function_t ext)
|
void session_impl::add_extension(ext_function_t ext)
|
||||||
{
|
{
|
||||||
TORRENT_ASSERT(is_single_thread());
|
TORRENT_ASSERT(is_single_thread());
|
||||||
TORRENT_ASSERT_VAL(ext, ext);
|
TORRENT_ASSERT_VAL(ext, ext);
|
||||||
|
|
||||||
boost::shared_ptr<plugin> p(new session_plugin_wrapper(ext));
|
add_ses_extension(boost::make_shared<session_plugin_wrapper>(
|
||||||
|
session_plugin_wrapper(ext)));
|
||||||
add_ses_extension(p);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void session_impl::add_ses_extension(boost::shared_ptr<plugin> ext)
|
void session_impl::add_ses_extension(boost::shared_ptr<plugin> ext)
|
||||||
|
|
|
@ -160,6 +160,7 @@ test-suite libtorrent :
|
||||||
[ run test_magnet.cpp ]
|
[ run test_magnet.cpp ]
|
||||||
[ run test_storage.cpp ]
|
[ run test_storage.cpp ]
|
||||||
[ run test_session.cpp ]
|
[ run test_session.cpp ]
|
||||||
|
[ run test_session_params.cpp ]
|
||||||
[ run test_read_piece.cpp ]
|
[ run test_read_piece.cpp ]
|
||||||
|
|
||||||
[ run test_file.cpp ]
|
[ run test_file.cpp ]
|
||||||
|
@ -225,6 +226,8 @@ alias win-tests :
|
||||||
test_tracker
|
test_tracker
|
||||||
test_checking
|
test_checking
|
||||||
test_piece_picker
|
test_piece_picker
|
||||||
|
test_ffs
|
||||||
|
test_session_params
|
||||||
;
|
;
|
||||||
|
|
||||||
explicit win-tests ;
|
explicit win-tests ;
|
||||||
|
|
|
@ -44,7 +44,8 @@ test_programs = \
|
||||||
test_file_progress \
|
test_file_progress \
|
||||||
test_linked_list \
|
test_linked_list \
|
||||||
test_direct_dht \
|
test_direct_dht \
|
||||||
test_ffs
|
test_ffs \
|
||||||
|
test_session_params
|
||||||
|
|
||||||
if ENABLE_TESTS
|
if ENABLE_TESTS
|
||||||
check_PROGRAMS = $(test_programs)
|
check_PROGRAMS = $(test_programs)
|
||||||
|
@ -227,6 +228,7 @@ test_file_progress_SOURCES = test_file_progress.cpp
|
||||||
test_linked_list_SOURCES = test_linked_list.cpp
|
test_linked_list_SOURCES = test_linked_list.cpp
|
||||||
test_direct_dht_SOURCES = test_direct_dht.cpp
|
test_direct_dht_SOURCES = test_direct_dht.cpp
|
||||||
test_ffs_SOURCES = test_ffs.cpp
|
test_ffs_SOURCES = test_ffs.cpp
|
||||||
|
test_session_params_SOURCES = test_session_params.cpp
|
||||||
|
|
||||||
LDADD = libtest.la $(top_builddir)/src/libtorrent-rasterbar.la
|
LDADD = libtest.la $(top_builddir)/src/libtorrent-rasterbar.la
|
||||||
|
|
||||||
|
|
|
@ -366,4 +366,3 @@ TORRENT_TEST(update_node_ids)
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,108 @@
|
||||||
|
/*
|
||||||
|
|
||||||
|
Copyright (c) 2016, Alden Torres
|
||||||
|
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 "libtorrent/config.hpp"
|
||||||
|
#include "libtorrent/session.hpp"
|
||||||
|
#include "libtorrent/extensions.hpp"
|
||||||
|
|
||||||
|
#include "test.hpp"
|
||||||
|
|
||||||
|
using namespace libtorrent;
|
||||||
|
using namespace libtorrent::dht;
|
||||||
|
namespace lt = libtorrent;
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
#ifndef TORRENT_DISABLE_DHT
|
||||||
|
bool g_storage_constructor_invoked = false;
|
||||||
|
|
||||||
|
std::unique_ptr<dht_storage_interface> dht_custom_storage_constructor(
|
||||||
|
dht_settings const& settings)
|
||||||
|
{
|
||||||
|
g_storage_constructor_invoked = true;
|
||||||
|
return dht_default_storage_constructor(settings);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
|
bool g_plugin_added_invoked = false;
|
||||||
|
|
||||||
|
struct custom_plugin : plugin
|
||||||
|
{
|
||||||
|
void added(session_handle h) override
|
||||||
|
{
|
||||||
|
TORRENT_UNUSED(h);
|
||||||
|
g_plugin_added_invoked = true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
TORRENT_TEST(default_plugins)
|
||||||
|
{
|
||||||
|
session_params p1;
|
||||||
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
|
TEST_EQUAL(int(p1.extensions.size()), 3);
|
||||||
|
#else
|
||||||
|
TEST_EQUAL(int(p1.extensions.size()), 0);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
std::vector<boost::shared_ptr<plugin>> exts;
|
||||||
|
session_params p2(settings_pack(), exts);
|
||||||
|
TEST_EQUAL(int(p2.extensions.size()), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef TORRENT_DISABLE_DHT
|
||||||
|
TORRENT_TEST(custom_dht_storage)
|
||||||
|
{
|
||||||
|
g_storage_constructor_invoked = false;
|
||||||
|
session_params params;
|
||||||
|
params.dht_storage_constructor = dht_custom_storage_constructor;
|
||||||
|
lt::session ses(params);
|
||||||
|
|
||||||
|
|
||||||
|
TEST_CHECK(ses.is_dht_running() == true);
|
||||||
|
TEST_EQUAL(g_storage_constructor_invoked, true);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
||||||
|
TORRENT_TEST(add_plugin)
|
||||||
|
{
|
||||||
|
g_plugin_added_invoked = false;
|
||||||
|
session_params params;
|
||||||
|
params.extensions.push_back(boost::make_shared<custom_plugin>());
|
||||||
|
lt::session ses(params);
|
||||||
|
|
||||||
|
TEST_EQUAL(g_plugin_added_invoked, true);
|
||||||
|
}
|
||||||
|
#endif
|
Loading…
Reference in New Issue