2015-08-08 03:28:51 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2015, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-12-06 06:14:30 +01:00
|
|
|
#include "simulator/simulator.hpp"
|
|
|
|
#include "libtorrent/address.hpp"
|
|
|
|
#include <functional>
|
2015-08-08 03:28:51 +02:00
|
|
|
|
2015-12-06 06:14:30 +01:00
|
|
|
#ifndef TORRENT_SETUP_SWARM_HPP_INCLUDED
|
|
|
|
#define TORRENT_SETUP_SWARM_HPP_INCLUDED
|
2015-08-10 12:57:51 +02:00
|
|
|
|
2015-08-14 05:06:59 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
class alert;
|
|
|
|
class session;
|
2015-12-06 06:14:30 +01:00
|
|
|
struct add_torrent_params;
|
|
|
|
struct settings_pack;
|
|
|
|
struct torrent_handle;
|
|
|
|
struct torrent_status;
|
2015-08-14 05:06:59 +02:00
|
|
|
}
|
|
|
|
|
2015-12-06 06:14:30 +01:00
|
|
|
|
|
|
|
enum class swarm_test { download, upload };
|
|
|
|
|
|
|
|
void setup_swarm(int num_nodes
|
|
|
|
, swarm_test type
|
|
|
|
, std::function<void(lt::settings_pack&)> new_session
|
|
|
|
, std::function<void(lt::add_torrent_params&)> add_torrent
|
2015-12-10 07:56:33 +01:00
|
|
|
, std::function<void(lt::alert const*, lt::session&)> on_alert
|
2016-06-19 01:24:27 +02:00
|
|
|
, std::function<bool(int, lt::session&)> terminate);
|
2015-12-06 06:14:30 +01:00
|
|
|
|
|
|
|
void setup_swarm(int num_nodes
|
|
|
|
, swarm_test type
|
|
|
|
, sim::simulation& sim
|
|
|
|
, std::function<void(lt::settings_pack&)> new_session
|
|
|
|
, std::function<void(lt::add_torrent_params&)> add_torrent
|
2015-12-10 07:56:33 +01:00
|
|
|
, std::function<void(lt::alert const*, lt::session&)> on_alert
|
2016-06-19 01:24:27 +02:00
|
|
|
, std::function<bool(int, lt::session&)> terminate);
|
2015-12-06 06:14:30 +01:00
|
|
|
|
2015-12-10 07:56:33 +01:00
|
|
|
void setup_swarm(int num_nodes
|
|
|
|
, swarm_test type
|
|
|
|
, sim::simulation& sim
|
|
|
|
, lt::settings_pack const& default_settings
|
|
|
|
, lt::add_torrent_params const& default_add_torrent
|
|
|
|
, std::function<void(lt::settings_pack&)> new_session
|
|
|
|
, std::function<void(lt::add_torrent_params&)> add_torrent
|
|
|
|
, std::function<void(lt::alert const*, lt::session&)> on_alert
|
2016-06-19 01:24:27 +02:00
|
|
|
, std::function<bool(int, lt::session&)> terminate);
|
2015-12-10 07:56:33 +01:00
|
|
|
|
|
|
|
void setup_swarm(int num_nodes
|
|
|
|
, swarm_test type
|
|
|
|
, sim::simulation& sim
|
|
|
|
, lt::settings_pack const& default_settings
|
|
|
|
, lt::add_torrent_params const& default_add_torrent
|
|
|
|
, std::function<void(lt::session&)> init_session
|
|
|
|
, std::function<void(lt::settings_pack&)> new_session
|
|
|
|
, std::function<void(lt::add_torrent_params&)> add_torrent
|
|
|
|
, std::function<void(lt::alert const*, lt::session&)> on_alert
|
2016-06-19 01:24:27 +02:00
|
|
|
, std::function<bool(int, lt::session&)> terminate);
|
2015-12-10 07:56:33 +01:00
|
|
|
|
|
|
|
bool has_metadata(lt::session& ses);
|
|
|
|
bool is_seed(lt::session& ses);
|
|
|
|
int completed_pieces(lt::session& ses);
|
|
|
|
void add_extra_peers(lt::session& ses);
|
|
|
|
lt::torrent_status get_status(lt::session& ses);
|
|
|
|
|
|
|
|
std::string save_path(int swarm_id, int idx);
|
|
|
|
|
|
|
|
// disable TCP and enable uTP
|
|
|
|
void utp_only(lt::settings_pack& pack);
|
|
|
|
|
|
|
|
// force encrypted connections
|
|
|
|
void enable_enc(lt::settings_pack& pack);
|
2015-12-06 06:14:30 +01:00
|
|
|
|
|
|
|
struct dsl_config : sim::default_config
|
2015-08-08 03:28:51 +02:00
|
|
|
{
|
2015-12-06 06:14:30 +01:00
|
|
|
virtual sim::route incoming_route(lt::address ip) override;
|
|
|
|
virtual sim::route outgoing_route(lt::address ip) override;
|
2015-08-08 03:28:51 +02:00
|
|
|
};
|
|
|
|
|
2015-08-10 12:57:51 +02:00
|
|
|
#endif
|
|
|
|
|