premiere-libtorrent/examples/client_test.cpp

348 lines
8.4 KiB
C++
Raw Normal View History

/*
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 <exception>
#include <boost/format.hpp>
2003-12-14 06:56:12 +01:00
#include <boost/date_time/posix_time/posix_time.hpp>
#include "libtorrent/entry.hpp"
#include "libtorrent/bencode.hpp"
#include "libtorrent/session.hpp"
#include "libtorrent/http_settings.hpp"
2003-10-30 00:28:09 +01:00
#ifdef WIN32
2003-11-09 19:17:09 +01:00
#if defined(_MSC_VER)
# define for if (false) {} else for
#endif
#include <windows.h>
2003-10-30 00:28:09 +01:00
#include <conio.h>
bool sleep_and_input(char* c)
{
2003-12-10 01:24:16 +01:00
Sleep(200);
2003-10-30 00:28:09 +01:00
if (kbhit())
{
*c = getch();
return true;
}
return false;
};
void set_cursor(int x, int y)
{
HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
COORD c = {x, y};
SetConsoleCursorPosition(h, c);
}
void clear()
{
2003-12-14 23:55:32 +01:00
CONSOLE_SCREEN_BUFFER_INFO si;
HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
2003-12-14 23:55:32 +01:00
GetConsoleScreenBufferInfo(h, &si);
COORD c = {0, 0};
DWORD n;
2003-12-14 23:55:32 +01:00
FillConsoleOutputCharacter(h, ' ', si.dwSize.X * si.dwSize.Y, c, &n);
}
2003-10-31 12:17:45 +01:00
#else
#include <stdlib.h>
#include <stdio.h>
#include <termios.h>
#include <string.h>
struct set_keypress
{
set_keypress()
{
termios new_settings;
tcgetattr(0,&stored_settings);
new_settings = stored_settings;
// Disable canonical mode, and set buffer size to 1 byte
new_settings.c_lflag &= (~ICANON);
new_settings.c_cc[VTIME] = 0;
new_settings.c_cc[VMIN] = 1;
tcsetattr(0,TCSANOW,&new_settings);
}
~set_keypress() { tcsetattr(0,TCSANOW,&stored_settings); }
termios stored_settings;
};
bool sleep_and_input(char* c)
{
// sets the terminal to single-character mode
// and resets when destructed
set_keypress s;
fd_set set;
FD_ZERO(&set);
FD_SET(0, &set);
2003-12-10 01:24:16 +01:00
timeval tv = {0, 200000};
2003-10-31 12:17:45 +01:00
if (select(1, &set, 0, 0, &tv) > 0)
{
*c = getc(stdin);
return true;
}
return false;
}
2003-11-05 00:27:06 +01:00
void set_cursor(int x, int y)
{
std::cout << "\033[" << y << ";" << x << "H";
2003-11-05 00:27:06 +01:00
}
void clear()
{
std::cout << "\033[2J";
2003-11-05 00:27:06 +01:00
}
2003-10-30 00:28:09 +01:00
#endif
2003-12-14 23:55:32 +01:00
std::string to_string(float v, int width)
2003-12-08 02:37:30 +01:00
{
std::stringstream s;
2003-12-14 23:55:32 +01:00
s.precision(width-2);
2003-12-08 02:37:30 +01:00
s.flags(std::ios_base::right);
2003-12-14 23:55:32 +01:00
s.width(width);
2003-12-08 02:37:30 +01:00
s.fill(' ');
s << v;
return s.str();
}
2003-10-31 05:02:51 +01:00
std::string add_suffix(float val)
{
2003-12-14 23:55:32 +01:00
const char* prefix[] = {"B", "kB", "MB", "GB", "TB"};
2003-10-31 05:02:51 +01:00
const int num_prefix = sizeof(prefix) / sizeof(const char*);
int i;
for (i = 0; i < num_prefix; ++i)
{
2003-12-08 10:38:40 +01:00
if (abs(val) < 1024.f)
2003-12-14 23:55:32 +01:00
return to_string(val, i==0?7:6) + prefix[i];
2003-10-31 05:02:51 +01:00
val /= 1024.f;
}
2003-12-14 23:55:32 +01:00
return to_string(val, 6) + prefix[i];
2003-10-31 05:02:51 +01:00
}
int main(int argc, char* argv[])
{
using namespace libtorrent;
2003-11-26 15:11:25 +01:00
// TEMPORARY
2003-12-09 19:09:34 +01:00
// boost::filesystem::path::default_name_check(boost::filesystem::no_check);
2003-11-26 15:11:25 +01:00
if (argc < 2)
{
2003-10-26 04:18:17 +01:00
std::cerr << "usage: ./client_test torrent-files ...\n"
2003-11-06 11:44:19 +01:00
"to stop the client, press q.\n";
return 1;
}
http_settings settings;
// settings.proxy_ip = "192.168.0.1";
// settings.proxy_port = 80;
// settings.proxy_login = "hyd";
// settings.proxy_password = "foobar";
settings.user_agent = "example";
try
{
std::vector<torrent_handle> handles;
session s(6881);
2003-12-07 06:53:04 +01:00
// limit upload rate to 100 kB/s
2003-12-14 06:56:12 +01:00
s.set_upload_rate_limit(100 * 1024);
2003-12-07 06:53:04 +01:00
s.set_http_settings(settings);
for (int i = 0; i < argc-1; ++i)
{
try
{
std::ifstream in(argv[i+1], std::ios_base::binary);
in.unsetf(std::ios_base::skipws);
entry e = bdecode(std::istream_iterator<char>(in), std::istream_iterator<char>());
torrent_info t(e);
t.print(std::cout);
2003-12-08 17:39:05 +01:00
handles.push_back(s.add_torrent(t, ""));
2003-12-14 06:56:12 +01:00
handles.back().set_max_uploads(20);
}
catch (std::exception& e)
{
std::cout << e.what() << "\n";
}
}
2003-10-30 00:28:09 +01:00
std::vector<peer_info> peers;
std::vector<partial_piece_info> queue;
2003-10-30 00:28:09 +01:00
for (;;)
{
2003-10-30 00:28:09 +01:00
char c;
if (sleep_and_input(&c))
{
if (c == 'q') break;
}
2003-12-08 22:59:48 +01:00
std::stringstream out;
2003-10-31 05:02:51 +01:00
for (std::vector<torrent_handle>::iterator i = handles.begin();
i != handles.end();
2003-10-30 00:28:09 +01:00
++i)
{
2003-10-31 05:02:51 +01:00
torrent_status s = i->status();
switch(s.state)
{
case torrent_status::queued_for_checking:
2003-12-08 22:59:48 +01:00
out << "queued ";
2003-10-31 05:02:51 +01:00
break;
case torrent_status::checking_files:
2003-12-08 22:59:48 +01:00
out << "checking ";
2003-10-31 05:02:51 +01:00
break;
case torrent_status::downloading:
2003-12-08 22:59:48 +01:00
out << "dloading ";
2003-10-31 05:02:51 +01:00
break;
case torrent_status::seeding:
2003-12-08 22:59:48 +01:00
out << "seeding ";
2003-10-31 05:02:51 +01:00
break;
};
// calculate download and upload speeds
i->get_peer_info(peers);
2003-12-07 06:53:04 +01:00
float down = s.download_rate;
float up = s.upload_rate;
2003-12-08 10:38:40 +01:00
int total_down = s.total_download;
int total_up = s.total_upload;
2003-10-31 05:02:51 +01:00
int num_peers = peers.size();
2003-12-14 06:56:12 +01:00
2003-12-08 22:59:48 +01:00
out.precision(4);
out.width(5);
out.fill(' ');
out << (s.progress*100) << "% ";
2003-12-08 10:38:40 +01:00
for (int i = 0; i < 50; ++i)
{
if (i / 50.f > s.progress)
2003-12-08 22:59:48 +01:00
out << "-";
2003-12-08 10:38:40 +01:00
else
2003-12-08 22:59:48 +01:00
out << "#";
2003-12-08 10:38:40 +01:00
}
2003-12-08 22:59:48 +01:00
out << "\n";
2003-12-08 10:38:40 +01:00
2003-12-08 22:59:48 +01:00
out << "peers: " << num_peers << " "
<< "d:" << add_suffix(down) << "/s "
<< "(" << add_suffix(total_down) << ") "
<< "u:" << add_suffix(up) << "/s "
<< "(" << add_suffix(total_up) << ") "
<< "diff: " << add_suffix(total_down - total_up) << "\n";
2003-11-05 00:27:06 +01:00
boost::posix_time::time_duration t = s.next_announce;
2003-12-14 06:56:12 +01:00
out << "next announce: " << boost::posix_time::to_simple_string(t) << "\n";
2003-12-08 02:37:30 +01:00
2003-12-07 06:53:04 +01:00
for (std::vector<peer_info>::iterator i = peers.begin();
i != peers.end();
++i)
{
2003-12-08 22:59:48 +01:00
out << "d: " << add_suffix(i->down_speed) << "/s "
2003-12-08 17:39:05 +01:00
<< "(" << add_suffix(i->total_download) << ") "
<< "u: " << add_suffix(i->up_speed) << "/s "
<< "(" << add_suffix(i->total_upload) << ") "
2003-12-14 23:55:32 +01:00
// << "df: " << add_suffix((int)i->total_download - (int)i->total_upload) << " "
2003-12-17 04:40:13 +01:00
<< "b: " << add_suffix(i->load_balancing) << " "
2003-12-08 17:39:05 +01:00
<< "f: "
2003-12-07 06:53:04 +01:00
<< static_cast<const char*>((i->flags & peer_info::interesting)?"I":"_")
<< static_cast<const char*>((i->flags & peer_info::choked)?"C":"_")
<< static_cast<const char*>((i->flags & peer_info::remote_interested)?"i":"_")
<< static_cast<const char*>((i->flags & peer_info::remote_choked)?"c":"_") << "\n";
2003-12-10 01:24:16 +01:00
if (i->downloading_piece_index >= 0)
{
out << i->downloading_piece_index << ";"
<< i->downloading_block_index << ": ";
2003-12-14 23:55:32 +01:00
float progress
= i->downloading_progress
/ static_cast<float>(i->downloading_total)
* 35;
for (int j = 0; j < 35; ++j)
2003-12-10 01:24:16 +01:00
{
2003-12-14 23:55:32 +01:00
if (progress > j) out << "#";
2003-12-10 01:24:16 +01:00
else out << "-";
}
2003-12-21 18:28:27 +01:00
out << " ";
2003-12-10 01:24:16 +01:00
}
2003-12-21 18:28:27 +01:00
else
{
for (int i = 0; i < 19; ++i) out << " ";
}
out << identify_client(i->id) << "\n";
2003-12-07 06:53:04 +01:00
}
2003-12-08 22:59:48 +01:00
out << "___________________________________\n";
2003-12-14 06:56:12 +01:00
i->get_download_queue(queue);
for (std::vector<partial_piece_info>::iterator i = queue.begin();
i != queue.end();
++i)
{
2003-12-08 22:59:48 +01:00
out.width(4);
out.fill(' ');
out << i->piece_index << ": |";
for (int j = 0; j < i->blocks_in_piece; ++j)
{
2003-12-08 22:59:48 +01:00
if (i->finished_blocks[j]) out << "#";
else if (i->requested_blocks[j]) out << "=";
2003-12-14 06:56:12 +01:00
else out << ".";
}
2003-12-08 22:59:48 +01:00
out << "|\n";
}
2003-12-08 10:38:40 +01:00
2003-12-08 22:59:48 +01:00
out << "___________________________________\n";
2003-12-14 06:56:12 +01:00
2003-10-30 00:28:09 +01:00
}
2003-12-08 22:59:48 +01:00
clear();
set_cursor(0, 0);
std::cout << out.str();
2003-10-30 00:28:09 +01:00
}
}
catch (std::exception& e)
{
std::cout << e.what() << "\n";
}
return 0;
}