mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-05-08 08:50:10 -04:00
126 lines
4.5 KiB
C++
126 lines
4.5 KiB
C++
/*
|
|
|
|
Copyright (c) 2022, 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.
|
|
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <thread>
|
|
#include <chrono>
|
|
#include <fstream>
|
|
|
|
#include <libtorrent/session.hpp>
|
|
#include <libtorrent/session_params.hpp>
|
|
#include <libtorrent/add_torrent_params.hpp>
|
|
#include <libtorrent/torrent_handle.hpp>
|
|
#include <libtorrent/torrent_info.hpp>
|
|
#include <libtorrent/alert_types.hpp>
|
|
#include <libtorrent/magnet_uri.hpp>
|
|
#include <libtorrent/disabled_disk_io.hpp>
|
|
#include <libtorrent/write_resume_data.hpp> // for write_torrent_file
|
|
|
|
int main(int argc, char const* argv[]) try
|
|
{
|
|
if (argc != 3) {
|
|
std::cerr << "usage: " << argv[0] << " <magnet-url> <output torrent file>" << std::endl;
|
|
return 1;
|
|
}
|
|
lt::session_params params;
|
|
params.disk_io_constructor = lt::disabled_disk_io_constructor;
|
|
|
|
params.settings.set_int(lt::settings_pack::alert_mask
|
|
, lt::alert_category::status | lt::alert_category::error);
|
|
|
|
lt::session ses(std::move(params));
|
|
|
|
lt::add_torrent_params atp = lt::parse_magnet_uri(argv[1]);
|
|
atp.save_path = ".";
|
|
atp.flags &= ~(lt::torrent_flags::auto_managed | lt::torrent_flags::paused);
|
|
atp.file_priorities.resize(100, lt::dont_download);
|
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(1));
|
|
lt::torrent_handle h = ses.add_torrent(std::move(atp));
|
|
|
|
for (;;) {
|
|
std::vector<lt::alert*> alerts;
|
|
ses.pop_alerts(&alerts);
|
|
|
|
for (lt::alert* a : alerts)
|
|
{
|
|
std::cout << a->message() << std::endl;
|
|
if (auto const* mra = lt::alert_cast<lt::metadata_received_alert>(a))
|
|
{
|
|
std::cerr << "metadata received" << std::endl;
|
|
auto const handle = mra->handle;
|
|
std::shared_ptr<lt::torrent_info const> ti = handle.torrent_file();
|
|
if (!ti)
|
|
{
|
|
std::cerr << "unexpected missing torrent info" << std::endl;
|
|
goto done;
|
|
}
|
|
|
|
// in order to create valid v2 torrents, we need to download the
|
|
// piece hashes. libtorrent currently only downloads the hashes
|
|
// on-demand, so we would have to download all the content.
|
|
// Instead, produce an invalid v2 torrent that's missing piece
|
|
// layers
|
|
if (ti->v2())
|
|
{
|
|
std::cerr << "found v2 torrent, generating a torrent missing piece hashes" << std::endl;
|
|
}
|
|
handle.save_resume_data(lt::torrent_handle::save_info_dict);
|
|
handle.set_flags(lt::torrent_flags::paused);
|
|
}
|
|
else if (auto* rda = lt::alert_cast<lt::save_resume_data_alert>(a))
|
|
{
|
|
// don't include piece layers
|
|
rda->params.merkle_trees.clear();
|
|
lt::entry e = lt::write_torrent_file(rda->params, lt::write_flags::allow_missing_piece_layer);
|
|
std::vector<char> torrent;
|
|
lt::bencode(std::back_inserter(torrent), e);
|
|
std::ofstream out(argv[2]);
|
|
out.write(torrent.data(), int(torrent.size()));
|
|
goto done;
|
|
}
|
|
else if (auto const* rdf = lt::alert_cast<lt::save_resume_data_failed_alert>(a))
|
|
{
|
|
std::cerr << "failed to save resume data: " << rdf->message() << std::endl;
|
|
goto done;
|
|
}
|
|
}
|
|
ses.wait_for_alert(std::chrono::milliseconds(200));
|
|
}
|
|
done:
|
|
std::cerr<< "done, shutting down" << std::endl;
|
|
}
|
|
catch (std::exception& e)
|
|
{
|
|
std::cerr << "Error: " << e.what() << std::endl;
|
|
}
|