2003-10-26 04:18:17 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, 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 <fstream>
|
|
|
|
#include <iterator>
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
2003-11-28 18:29:27 +01:00
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2008-05-14 07:29:42 +02:00
|
|
|
#include "libtorrent/lazy_entry.hpp"
|
2008-08-27 20:44:35 +02:00
|
|
|
#include "libtorrent/magnet_uri.hpp"
|
2008-05-14 07:29:42 +02:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
2003-10-26 04:18:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
2008-05-14 07:29:42 +02:00
|
|
|
using namespace boost::filesystem;
|
2003-10-26 04:18:17 +01:00
|
|
|
|
|
|
|
if (argc != 2)
|
|
|
|
{
|
|
|
|
std::cerr << "usage: dump_torrent torrent-file\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2007-04-23 19:14:40 +02:00
|
|
|
#if BOOST_VERSION < 103400
|
2004-03-17 13:14:44 +01:00
|
|
|
boost::filesystem::path::default_name_check(boost::filesystem::no_check);
|
2007-04-23 19:14:40 +02:00
|
|
|
#endif
|
2004-03-17 13:14:44 +01:00
|
|
|
|
2007-12-30 02:59:10 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2003-10-26 04:18:17 +01:00
|
|
|
try
|
|
|
|
{
|
2007-12-30 02:59:10 +01:00
|
|
|
#endif
|
2003-10-26 04:18:17 +01:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
int size = file_size(argv[1]);
|
|
|
|
if (size > 10 * 1000000)
|
|
|
|
{
|
|
|
|
std::cerr << "file too big (" << size << "), aborting\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::vector<char> buf(size);
|
|
|
|
std::ifstream(argv[1], std::ios_base::binary).read(&buf[0], size);
|
|
|
|
lazy_entry e;
|
|
|
|
int ret = lazy_bdecode(&buf[0], &buf[0] + buf.size(), e);
|
2003-10-28 02:20:50 +01:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
if (ret != 0)
|
|
|
|
{
|
|
|
|
std::cerr << "invalid bencoding: " << ret << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "\n\n----- raw info -----\n\n";
|
|
|
|
std::cout << e << std::endl;
|
2004-01-07 01:48:02 +01:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
torrent_info t(e);
|
|
|
|
|
2003-10-26 04:18:17 +01:00
|
|
|
// print info about torrent
|
2003-10-28 02:20:50 +01:00
|
|
|
std::cout << "\n\n----- torrent file info -----\n\n";
|
2006-09-03 21:53:19 +02:00
|
|
|
std::cout << "nodes:\n";
|
|
|
|
typedef std::vector<std::pair<std::string, int> > node_vec;
|
|
|
|
node_vec const& nodes = t.nodes();
|
|
|
|
for (node_vec::const_iterator i = nodes.begin(), end(nodes.end());
|
|
|
|
i != end; ++i)
|
|
|
|
{
|
|
|
|
std::cout << i->first << ":" << i->second << "\n";
|
|
|
|
}
|
2003-10-26 04:18:17 +01:00
|
|
|
std::cout << "trackers:\n";
|
|
|
|
for (std::vector<announce_entry>::const_iterator i = t.trackers().begin();
|
2005-10-16 18:58:41 +02:00
|
|
|
i != t.trackers().end(); ++i)
|
2003-10-26 04:18:17 +01:00
|
|
|
{
|
|
|
|
std::cout << i->tier << ": " << i->url << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "number of pieces: " << t.num_pieces() << "\n";
|
|
|
|
std::cout << "piece length: " << t.piece_length() << "\n";
|
2004-11-18 23:33:50 +01:00
|
|
|
std::cout << "info hash: " << t.info_hash() << "\n";
|
2005-08-18 00:59:21 +02:00
|
|
|
std::cout << "comment: " << t.comment() << "\n";
|
2005-08-18 01:04:26 +02:00
|
|
|
std::cout << "created by: " << t.creator() << "\n";
|
2008-08-27 20:44:35 +02:00
|
|
|
std::cout << "magnet link: " << make_magnet_uri(t) << "\n";
|
2003-10-26 04:18:17 +01:00
|
|
|
std::cout << "files:\n";
|
2007-08-03 10:43:22 +02:00
|
|
|
int index = 0;
|
2003-10-26 04:18:17 +01:00
|
|
|
for (torrent_info::file_iterator i = t.begin_files();
|
2007-08-03 10:43:22 +02:00
|
|
|
i != t.end_files(); ++i, ++index)
|
2003-10-26 04:18:17 +01:00
|
|
|
{
|
2007-08-03 10:43:22 +02:00
|
|
|
int first = t.map_file(index, 0, 1).piece;
|
|
|
|
int last = t.map_file(index, i->size - 1, 1).piece;
|
2003-10-28 02:20:50 +01:00
|
|
|
std::cout << " " << std::setw(11) << i->size
|
2007-08-03 10:43:22 +02:00
|
|
|
<< " " << i->path.string() << "[ " << first << ", "
|
|
|
|
<< last << " ]\n";
|
2003-10-26 04:18:17 +01:00
|
|
|
}
|
2008-05-14 07:29:42 +02:00
|
|
|
|
2007-12-30 02:59:10 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2003-10-26 04:18:17 +01:00
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
|
|
|
std::cout << e.what() << "\n";
|
|
|
|
}
|
2007-12-30 02:59:10 +01:00
|
|
|
#endif
|
2003-10-26 04:18:17 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|