2013-03-29 03:46:12 +01:00
|
|
|
#!/usr/bin/env python
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
# Copyright Daniel Wallin 2006. Use, modification and distribution is
|
|
|
|
# subject to the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
2018-06-12 11:43:13 +02:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
import sys
|
2012-07-16 03:12:39 +02:00
|
|
|
import atexit
|
2007-01-10 17:11:43 +01:00
|
|
|
import libtorrent as lt
|
|
|
|
import time
|
|
|
|
import os.path
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 20:58:54 +01:00
|
|
|
|
|
|
|
class WindowsConsole:
|
|
|
|
def __init__(self):
|
|
|
|
self.console = Console.getconsole()
|
|
|
|
|
|
|
|
def clear(self):
|
|
|
|
self.console.page()
|
|
|
|
|
|
|
|
def write(self, str):
|
|
|
|
self.console.write(str)
|
|
|
|
|
|
|
|
def sleep_and_input(self, seconds):
|
|
|
|
time.sleep(seconds)
|
|
|
|
if msvcrt.kbhit():
|
|
|
|
return msvcrt.getch()
|
|
|
|
return None
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 20:58:54 +01:00
|
|
|
class UnixConsole:
|
|
|
|
def __init__(self):
|
|
|
|
self.fd = sys.stdin
|
|
|
|
self.old = termios.tcgetattr(self.fd.fileno())
|
|
|
|
new = termios.tcgetattr(self.fd.fileno())
|
|
|
|
new[3] = new[3] & ~termios.ICANON
|
|
|
|
new[6][termios.VTIME] = 0
|
|
|
|
new[6][termios.VMIN] = 1
|
|
|
|
termios.tcsetattr(self.fd.fileno(), termios.TCSADRAIN, new)
|
|
|
|
|
2012-07-16 03:12:39 +02:00
|
|
|
atexit.register(self._onexit)
|
2007-01-10 20:58:54 +01:00
|
|
|
|
|
|
|
def _onexit(self):
|
|
|
|
termios.tcsetattr(self.fd.fileno(), termios.TCSADRAIN, self.old)
|
|
|
|
|
|
|
|
def clear(self):
|
|
|
|
sys.stdout.write('\033[2J\033[0;0H')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
def write(self, str):
|
|
|
|
sys.stdout.write(str)
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
def sleep_and_input(self, seconds):
|
2017-01-20 16:07:09 +01:00
|
|
|
read, __, __ = select.select(
|
|
|
|
[self.fd.fileno()], [], [], seconds)
|
2007-01-10 20:58:54 +01:00
|
|
|
if len(read) > 0:
|
|
|
|
return self.fd.read(1)
|
|
|
|
return None
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 20:58:54 +01:00
|
|
|
if os.name == 'nt':
|
|
|
|
import Console
|
|
|
|
import msvcrt
|
|
|
|
else:
|
|
|
|
import termios
|
|
|
|
import select
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
def write_line(console, line):
|
|
|
|
console.write(line)
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
def add_suffix(val):
|
|
|
|
prefix = ['B', 'kB', 'MB', 'GB', 'TB']
|
|
|
|
for i in range(len(prefix)):
|
|
|
|
if abs(val) < 1000:
|
|
|
|
if i == 0:
|
|
|
|
return '%5.3g%s' % (val, prefix[i])
|
|
|
|
else:
|
|
|
|
return '%4.3g%s' % (val, prefix[i])
|
|
|
|
val /= 1000
|
|
|
|
|
|
|
|
return '%6.3gPB' % val
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
def progress_bar(progress, width):
|
2008-11-21 18:54:04 +01:00
|
|
|
assert(progress <= 1)
|
2007-01-10 17:11:43 +01:00
|
|
|
progress_chars = int(progress * width + 0.5)
|
|
|
|
return progress_chars * '#' + (width - progress_chars) * '-'
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
def print_peer_info(console, peers):
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
out = (' down (total ) up (total )'
|
|
|
|
' q r flags block progress client\n')
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
for p in peers:
|
|
|
|
|
|
|
|
out += '%s/s ' % add_suffix(p.down_speed)
|
|
|
|
out += '(%s) ' % add_suffix(p.total_download)
|
|
|
|
out += '%s/s ' % add_suffix(p.up_speed)
|
|
|
|
out += '(%s) ' % add_suffix(p.total_upload)
|
|
|
|
out += '%2d ' % p.download_queue_length
|
|
|
|
out += '%2d ' % p.upload_queue_length
|
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
out += 'I' if p.flags & lt.peer_info.interesting else '.'
|
|
|
|
out += 'C' if p.flags & lt.peer_info.choked else '.'
|
|
|
|
out += 'i' if p.flags & lt.peer_info.remote_interested else '.'
|
|
|
|
out += 'c' if p.flags & lt.peer_info.remote_choked else '.'
|
|
|
|
out += 'e' if p.flags & lt.peer_info.supports_extensions else '.'
|
|
|
|
out += 'l' if p.flags & lt.peer_info.local_connection else 'r'
|
2007-01-10 17:11:43 +01:00
|
|
|
out += ' '
|
|
|
|
|
|
|
|
if p.downloading_piece_index >= 0:
|
2008-11-21 18:54:04 +01:00
|
|
|
assert(p.downloading_progress <= p.downloading_total)
|
2017-01-20 16:07:09 +01:00
|
|
|
out += progress_bar(float(p.downloading_progress) /
|
|
|
|
p.downloading_total, 15)
|
2007-01-10 17:11:43 +01:00
|
|
|
else:
|
|
|
|
out += progress_bar(0, 15)
|
|
|
|
out += ' '
|
|
|
|
|
2013-03-29 03:46:12 +01:00
|
|
|
if p.flags & lt.peer_info.handshake:
|
2007-01-10 17:11:43 +01:00
|
|
|
id = 'waiting for handshake'
|
2013-03-29 03:46:12 +01:00
|
|
|
elif p.flags & lt.peer_info.connecting:
|
2017-01-20 16:07:09 +01:00
|
|
|
id = 'connecting to peer'
|
2007-01-10 17:11:43 +01:00
|
|
|
else:
|
|
|
|
id = p.client
|
|
|
|
|
|
|
|
out += '%s\n' % id[:10]
|
|
|
|
|
|
|
|
write_line(console, out)
|
|
|
|
|
2007-04-19 03:26:23 +02:00
|
|
|
|
|
|
|
def print_download_queue(console, download_queue):
|
|
|
|
|
|
|
|
out = ""
|
|
|
|
|
|
|
|
for e in download_queue:
|
2017-01-20 16:07:09 +01:00
|
|
|
out += '%4d: [' % e['piece_index']
|
2007-06-11 05:28:07 +02:00
|
|
|
for b in e['blocks']:
|
|
|
|
s = b['state']
|
|
|
|
if s == 3:
|
2007-04-19 03:26:23 +02:00
|
|
|
out += '#'
|
2007-06-11 05:28:07 +02:00
|
|
|
elif s == 2:
|
|
|
|
out += '='
|
|
|
|
elif s == 1:
|
2007-04-19 03:26:23 +02:00
|
|
|
out += '-'
|
2007-06-11 05:28:07 +02:00
|
|
|
else:
|
|
|
|
out += ' '
|
2007-04-19 03:26:23 +02:00
|
|
|
out += ']\n'
|
|
|
|
|
2007-04-19 19:56:12 +02:00
|
|
|
write_line(console, out)
|
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
def add_torrent(ses, filename, options):
|
2017-09-12 00:22:55 +02:00
|
|
|
atp = lt.add_torrent_params()
|
2017-09-11 12:51:01 +02:00
|
|
|
if filename.startswith('magnet:'):
|
2018-04-29 00:58:24 +02:00
|
|
|
atp = lt.parse_magnet_uri(filename)
|
2017-09-11 12:51:01 +02:00
|
|
|
else:
|
2017-09-12 00:22:55 +02:00
|
|
|
atp.ti = lt.torrent_info(filename)
|
2017-09-11 12:51:01 +02:00
|
|
|
try:
|
2018-06-12 11:43:13 +02:00
|
|
|
atp.resume_data = open(os.path.join(options.save_path, atp.info.name() + '.fastresume'), 'rb').read()
|
|
|
|
except BaseException:
|
2017-09-11 12:51:01 +02:00
|
|
|
pass
|
|
|
|
|
2017-09-12 00:22:55 +02:00
|
|
|
atp.save_path = options.save_path
|
|
|
|
atp.storage_mode = lt.storage_mode_t.storage_mode_sparse
|
|
|
|
atp.flags |= lt.torrent_flags.duplicate_is_error \
|
|
|
|
| lt.torrent_flags.auto_managed \
|
|
|
|
| lt.torrent_flags.duplicate_is_error
|
2017-09-11 12:51:01 +02:00
|
|
|
ses.async_add_torrent(atp)
|
2017-01-20 16:07:09 +01:00
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
def main():
|
|
|
|
from optparse import OptionParser
|
|
|
|
|
|
|
|
parser = OptionParser()
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
parser.add_option('-p', '--port', type='int', help='set listening port')
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2018-04-27 14:34:26 +02:00
|
|
|
parser.add_option(
|
|
|
|
'-i', '--listen-interface', type='string',
|
|
|
|
help='set interface for incoming connections', )
|
|
|
|
|
|
|
|
parser.add_option(
|
|
|
|
'-o', '--outgoing-interface', type='string',
|
|
|
|
help='set interface for outgoing connections')
|
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
parser.add_option(
|
|
|
|
'-d', '--max-download-rate', type='float',
|
|
|
|
help='the maximum download rate given in kB/s. 0 means infinite.')
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
parser.add_option(
|
|
|
|
'-u', '--max-upload-rate', type='float',
|
|
|
|
help='the maximum upload rate given in kB/s. 0 means infinite.')
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
parser.add_option(
|
|
|
|
'-s', '--save-path', type='string',
|
|
|
|
help='the path where the downloaded file/folder should be placed.')
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
parser.add_option(
|
|
|
|
'-r', '--proxy-host', type='string',
|
|
|
|
help='sets HTTP proxy host and port (separated by \':\')')
|
2012-09-29 07:10:34 +02:00
|
|
|
|
2007-01-10 17:11:43 +01:00
|
|
|
parser.set_defaults(
|
2017-01-20 16:07:09 +01:00
|
|
|
port=6881,
|
2018-04-27 14:34:26 +02:00
|
|
|
listen_interface='0.0.0.0',
|
|
|
|
outgoing_interface='',
|
2017-01-20 16:07:09 +01:00
|
|
|
max_download_rate=0,
|
|
|
|
max_upload_rate=0,
|
|
|
|
save_path='.',
|
|
|
|
proxy_host=''
|
2007-01-10 17:11:43 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
if options.port < 0 or options.port > 65525:
|
|
|
|
options.port = 6881
|
|
|
|
|
|
|
|
options.max_upload_rate *= 1000
|
|
|
|
options.max_download_rate *= 1000
|
|
|
|
|
|
|
|
if options.max_upload_rate <= 0:
|
|
|
|
options.max_upload_rate = -1
|
|
|
|
if options.max_download_rate <= 0:
|
|
|
|
options.max_download_rate = -1
|
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
settings = {
|
|
|
|
'user_agent': 'python_client/' + lt.__version__,
|
2018-04-27 14:34:26 +02:00
|
|
|
'listen_interfaces': '%s:%d' % (options.listen_interface, options.port),
|
2017-01-24 14:50:36 +01:00
|
|
|
'download_rate_limit': int(options.max_download_rate),
|
2017-09-11 12:51:01 +02:00
|
|
|
'upload_rate_limit': int(options.max_upload_rate),
|
2018-04-27 14:34:26 +02:00
|
|
|
'alert_mask': lt.alert.category_t.all_categories,
|
2018-06-12 11:43:13 +02:00
|
|
|
'outgoing_interfaces': options.outgoing_interface,
|
2017-09-11 12:51:01 +02:00
|
|
|
}
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2012-09-29 07:10:34 +02:00
|
|
|
if options.proxy_host != '':
|
2017-09-11 12:51:01 +02:00
|
|
|
settings['proxy_hostname'] = options.proxy_host.split(':')[0]
|
|
|
|
settings['proxy_type'] = lt.proxy_type_t.http
|
|
|
|
settings['proxy_port'] = options.proxy_host.split(':')[1]
|
2012-10-13 18:50:07 +02:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
ses = lt.session(settings)
|
2012-10-13 18:50:07 +02:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
# map torrent_handle to torrent_status
|
|
|
|
torrents = {}
|
|
|
|
alerts_log = []
|
2008-11-21 18:54:04 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
for f in args:
|
|
|
|
add_torrent(ses, f, options)
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2007-01-10 20:58:54 +01:00
|
|
|
if os.name == 'nt':
|
|
|
|
console = WindowsConsole()
|
|
|
|
else:
|
|
|
|
console = UnixConsole()
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
alive = True
|
|
|
|
while alive:
|
2007-01-10 20:58:54 +01:00
|
|
|
console.clear()
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
out = ''
|
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
for h, t in torrents.items():
|
2017-09-11 12:51:01 +02:00
|
|
|
out += 'name: %-40s\n' % t.name[:40]
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
if t.state != lt.torrent_status.seeding:
|
2018-06-12 11:43:13 +02:00
|
|
|
state_str = ['queued', 'checking', 'downloading metadata',
|
|
|
|
'downloading', 'finished', 'seeding',
|
2008-11-19 01:46:48 +01:00
|
|
|
'allocating', 'checking fastresume']
|
2017-09-11 12:51:01 +02:00
|
|
|
out += state_str[t.state] + ' '
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
out += '%5.4f%% ' % (t.progress * 100)
|
2017-09-11 12:51:01 +02:00
|
|
|
out += progress_bar(t.progress, 49)
|
2007-01-10 17:11:43 +01:00
|
|
|
out += '\n'
|
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
out += 'total downloaded: %d Bytes\n' % t.total_done
|
2007-01-10 17:11:43 +01:00
|
|
|
out += 'peers: %d seeds: %d distributed copies: %d\n' % \
|
2017-09-11 12:51:01 +02:00
|
|
|
(t.num_peers, t.num_seeds, t.distributed_copies)
|
2007-01-10 17:11:43 +01:00
|
|
|
out += '\n'
|
|
|
|
|
|
|
|
out += 'download: %s/s (%s) ' \
|
2017-09-11 12:51:01 +02:00
|
|
|
% (add_suffix(t.download_rate), add_suffix(t.total_download))
|
2007-01-10 17:11:43 +01:00
|
|
|
out += 'upload: %s/s (%s) ' \
|
2017-09-11 12:51:01 +02:00
|
|
|
% (add_suffix(t.upload_rate), add_suffix(t.total_upload))
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
if t.state != lt.torrent_status.seeding:
|
|
|
|
out += 'info-hash: %s\n' % t.info_hash
|
|
|
|
out += 'next announce: %s\n' % t.next_announce
|
|
|
|
out += 'tracker: %s\n' % t.current_tracker
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
write_line(console, out)
|
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
print_peer_info(console, t.handle.get_peer_info())
|
|
|
|
print_download_queue(console, t.handle.get_download_queue())
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
if t.state != lt.torrent_status.seeding:
|
2012-10-13 18:50:07 +02:00
|
|
|
try:
|
|
|
|
out = '\n'
|
|
|
|
fp = h.file_progress()
|
2017-09-11 12:51:01 +02:00
|
|
|
ti = t.torrent_file
|
2017-01-20 16:07:09 +01:00
|
|
|
for f, p in zip(ti.files(), fp):
|
2014-02-19 09:50:59 +01:00
|
|
|
out += progress_bar(p / float(f.size), 20)
|
2012-10-13 18:50:07 +02:00
|
|
|
out += ' ' + f.path + '\n'
|
|
|
|
write_line(console, out)
|
2018-06-12 11:43:13 +02:00
|
|
|
except BaseException:
|
2012-10-13 18:50:07 +02:00
|
|
|
pass
|
2007-01-10 17:11:43 +01:00
|
|
|
|
|
|
|
write_line(console, 76 * '-' + '\n')
|
|
|
|
write_line(console, '(q)uit), (p)ause), (u)npause), (r)eannounce\n')
|
|
|
|
write_line(console, 76 * '-' + '\n')
|
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
alerts = ses.pop_alerts()
|
2007-01-10 17:11:43 +01:00
|
|
|
for a in alerts:
|
2017-09-11 12:51:01 +02:00
|
|
|
alerts_log.append(a.message())
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
# add new torrents to our list of torrent_status
|
2018-06-12 11:43:13 +02:00
|
|
|
if isinstance(a, lt.add_torrent_alert):
|
2017-09-11 12:51:01 +02:00
|
|
|
h = a.handle
|
|
|
|
h.set_max_connections(60)
|
|
|
|
h.set_max_uploads(-1)
|
|
|
|
torrents[h] = h.status()
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
# update our torrent_status array for torrents that have
|
|
|
|
# changed some of their state
|
2018-06-12 11:43:13 +02:00
|
|
|
if isinstance(a, lt.state_update_alert):
|
2017-09-11 12:51:01 +02:00
|
|
|
for s in a.status:
|
|
|
|
torrents[s.handle] = s
|
|
|
|
|
2017-09-12 00:22:55 +02:00
|
|
|
if len(alerts_log) > 20:
|
|
|
|
alerts_log = alerts_log[-20:]
|
2017-09-11 12:51:01 +02:00
|
|
|
|
|
|
|
for a in alerts_log:
|
|
|
|
write_line(console, a + '\n')
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2007-01-10 20:58:54 +01:00
|
|
|
c = console.sleep_and_input(0.5)
|
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
ses.post_torrent_updates()
|
2018-06-12 11:43:13 +02:00
|
|
|
if not c:
|
|
|
|
continue
|
2007-01-10 20:58:54 +01:00
|
|
|
|
|
|
|
if c == 'r':
|
2018-06-12 11:43:13 +02:00
|
|
|
for h in torrents:
|
|
|
|
h.force_reannounce()
|
2007-01-10 20:58:54 +01:00
|
|
|
elif c == 'q':
|
|
|
|
alive = False
|
|
|
|
elif c == 'p':
|
2018-06-12 11:43:13 +02:00
|
|
|
for h in torrents:
|
|
|
|
h.pause()
|
2007-01-10 20:58:54 +01:00
|
|
|
elif c == 'u':
|
2018-06-12 11:43:13 +02:00
|
|
|
for h in torrents:
|
|
|
|
h.resume()
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2008-11-21 18:54:04 +01:00
|
|
|
ses.pause()
|
2018-06-12 11:43:13 +02:00
|
|
|
for h, t in torrents.items():
|
2017-09-11 12:51:01 +02:00
|
|
|
if not h.is_valid() or not t.has_metadata:
|
2007-01-10 17:11:43 +01:00
|
|
|
continue
|
2017-09-11 12:51:01 +02:00
|
|
|
h.save_resume_data()
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2017-09-11 12:51:01 +02:00
|
|
|
while len(torrents) > 0:
|
|
|
|
alerts = ses.pop_alerts()
|
|
|
|
for a in alerts:
|
2018-06-12 11:43:13 +02:00
|
|
|
if isinstance(a, lt.save_resume_data_alert):
|
2017-09-12 00:22:55 +02:00
|
|
|
print(a)
|
2018-04-14 16:47:49 +02:00
|
|
|
data = lt.write_resume_data_buf(a.params)
|
2017-09-11 12:51:01 +02:00
|
|
|
h = a.handle
|
|
|
|
if h in torrents:
|
|
|
|
open(os.path.join(options.save_path, torrents[h].name + '.fastresume'), 'wb').write(data)
|
|
|
|
del torrents[h]
|
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
if isinstance(a, lt.save_resume_data_failed_alert):
|
2017-09-11 12:51:01 +02:00
|
|
|
h = a.handle
|
|
|
|
if h in torrents:
|
|
|
|
print('failed to save resume data for ', torrents[h].name)
|
|
|
|
del torrents[h]
|
|
|
|
time.sleep(0.5)
|
2007-01-10 17:11:43 +01:00
|
|
|
|
2018-06-12 11:43:13 +02:00
|
|
|
|
2017-01-20 16:07:09 +01:00
|
|
|
main()
|