Update python bindings to use new add_torrent() method
This commit is contained in:
parent
85f557e6c1
commit
df459e7eaa
|
@ -98,12 +98,40 @@ namespace
|
||||||
s.add_extension(invoke_extension_factory(e));
|
s.add_extension(invoke_extension_factory(e));
|
||||||
}
|
}
|
||||||
|
|
||||||
torrent_handle add_torrent(session& s, torrent_info const& ti
|
torrent_handle add_torrent(session& s, dict params)
|
||||||
, boost::filesystem::path const& save, entry const& resume
|
|
||||||
, storage_mode_t storage_mode, bool paused)
|
|
||||||
{
|
{
|
||||||
allow_threading_guard guard;
|
add_torrent_params p;
|
||||||
return s.add_torrent(ti, save, resume, storage_mode, paused, default_storage_constructor);
|
|
||||||
|
if (params.has_key("ti"))
|
||||||
|
{
|
||||||
|
boost::intrusive_ptr<torrent_info> ti = new torrent_info(
|
||||||
|
extract<torrent_info const&>(params["ti"]));
|
||||||
|
p.ti = ti;
|
||||||
|
}
|
||||||
|
if (params.has_key("tracker_url"))
|
||||||
|
{
|
||||||
|
std::string url = extract<std::string>(params["tracker_url"]);
|
||||||
|
p.tracker_url = url.c_str();
|
||||||
|
}
|
||||||
|
if (params.has_key("info_hash"))
|
||||||
|
{
|
||||||
|
sha1_hash info_hash = extract<sha1_hash>(params["info_hash"]);
|
||||||
|
p.info_hash = info_hash;
|
||||||
|
}
|
||||||
|
if (params.has_key("name"))
|
||||||
|
{
|
||||||
|
std::string name = extract<std::string>(params["name"]);
|
||||||
|
p.name = name.c_str();
|
||||||
|
}
|
||||||
|
p.save_path = fs::path(extract<std::string>(params["save_path"]));
|
||||||
|
entry resume = extract<entry>(params["resume_data"]);
|
||||||
|
p.resume_data = &resume;
|
||||||
|
p.storage_mode = extract<storage_mode_t>(params["storage_mode"]);
|
||||||
|
p.paused = params["paused"];
|
||||||
|
p.auto_managed = params["auto_managed"];
|
||||||
|
p.duplicate_is_error = params["duplicate_is_error"];
|
||||||
|
|
||||||
|
return s.add_torrent(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
void start_natpmp(session& s)
|
void start_natpmp(session& s)
|
||||||
|
@ -240,14 +268,7 @@ void bind_session()
|
||||||
.def("dht_state", allow_threads(&session::dht_state), session_dht_state_doc)
|
.def("dht_state", allow_threads(&session::dht_state), session_dht_state_doc)
|
||||||
.def("set_dht_proxy", allow_threads(&session::set_dht_proxy))
|
.def("set_dht_proxy", allow_threads(&session::set_dht_proxy))
|
||||||
#endif
|
#endif
|
||||||
.def(
|
.def("add_torrent", &add_torrent, session_add_torrent_doc)
|
||||||
"add_torrent", &add_torrent
|
|
||||||
, (
|
|
||||||
arg("resume_data") = entry(), arg("storage_mode") = storage_mode_sparse,
|
|
||||||
arg("paused") = false
|
|
||||||
)
|
|
||||||
, session_add_torrent_doc
|
|
||||||
)
|
|
||||||
.def("remove_torrent", allow_threads(&session::remove_torrent), arg("option") = session::none
|
.def("remove_torrent", allow_threads(&session::remove_torrent), arg("option") = session::none
|
||||||
, session_remove_torrent_doc)
|
, session_remove_torrent_doc)
|
||||||
.def(
|
.def(
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include <boost/python.hpp>
|
#include <boost/python.hpp>
|
||||||
#include <libtorrent/torrent_info.hpp>
|
#include <libtorrent/torrent_info.hpp>
|
||||||
|
#include "libtorrent/intrusive_ptr_base.hpp"
|
||||||
|
|
||||||
using namespace boost::python;
|
using namespace boost::python;
|
||||||
using namespace libtorrent;
|
using namespace libtorrent;
|
||||||
|
@ -69,7 +70,7 @@ void bind_torrent_info()
|
||||||
{
|
{
|
||||||
return_value_policy<copy_const_reference> copy;
|
return_value_policy<copy_const_reference> copy;
|
||||||
|
|
||||||
class_<torrent_info>("torrent_info")
|
class_<torrent_info, boost::intrusive_ptr<torrent_info> >("torrent_info")
|
||||||
.def(init<entry const&>())
|
.def(init<entry const&>())
|
||||||
.def(init<sha1_hash const&>())
|
.def(init<sha1_hash const&>())
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue