]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/downloader/common.py
5d66211476c521c80054558b5d1134ac4179a828
   1 from __future__ 
import division
, unicode_literals
 
   9 from ..compat 
import compat_os_name
 
  19 class FileDownloader(object): 
  20     """File Downloader class. 
  22     File downloader objects are the ones responsible of downloading the 
  23     actual video file and writing it to disk. 
  25     File downloaders accept a lot of parameters. In order not to saturate 
  26     the object constructor with arguments, it receives a dictionary of 
  31     verbose:            Print additional info to stdout. 
  32     quiet:              Do not print messages to stdout. 
  33     ratelimit:          Download speed limit, in bytes/sec. 
  34     retries:            Number of times to retry for HTTP error 5xx 
  35     buffersize:         Size of download buffer in bytes. 
  36     noresizebuffer:     Do not automatically resize the download buffer. 
  37     continuedl:         Try to continue downloads if possible. 
  38     noprogress:         Do not print the progress bar. 
  39     logtostderr:        Log messages to stderr instead of stdout. 
  40     consoletitle:       Display progress in console window's titlebar. 
  41     nopart:             Do not use temporary .part files. 
  42     updatetime:         Use the Last-modified header to set output file timestamps. 
  43     test:               Download only first bytes to test the downloader. 
  44     min_filesize:       Skip files smaller than this size 
  45     max_filesize:       Skip files larger than this size 
  46     xattr_set_filesize: Set ytdl.filesize user xattribute with expected size. 
  48     external_downloader_args:  A list of additional command-line arguments for the 
  50     hls_use_mpegts:     Use the mpegts container for HLS videos. 
  52     Subclasses of this one must re-define the real_download method. 
  55     _TEST_FILE_SIZE 
= 10241 
  58     def __init__(self
, ydl
, params
): 
  59         """Create a FileDownloader object with the given options.""" 
  61         self
._progress
_hooks 
= [] 
  63         self
.add_progress_hook(self
.report_progress
) 
  66     def format_seconds(seconds
): 
  67         (mins
, secs
) = divmod(seconds
, 60) 
  68         (hours
, mins
) = divmod(mins
, 60) 
  72             return '%02d:%02d' % (mins
, secs
) 
  74             return '%02d:%02d:%02d' % (hours
, mins
, secs
) 
  77     def calc_percent(byte_counter
, data_len
): 
  80         return float(byte_counter
) / float(data_len
) * 100.0 
  83     def format_percent(percent
): 
  86         return '%6s' % ('%3.1f%%' % percent
) 
  89     def calc_eta(start
, now
, total
, current
): 
  95         if current 
== 0 or dif 
< 0.001:  # One millisecond 
  97         rate 
= float(current
) / dif
 
  98         return int((float(total
) - float(current
)) / rate
) 
 104         return FileDownloader
.format_seconds(eta
) 
 107     def calc_speed(start
, now
, bytes): 
 109         if bytes == 0 or dif 
< 0.001:  # One millisecond 
 111         return float(bytes) / dif
 
 114     def format_speed(speed
): 
 116             return '%10s' % '---b/s' 
 117         return '%10s' % ('%s/s' % format_bytes(speed
)) 
 120     def format_retries(retries
): 
 121         return 'inf' if retries 
== float('inf') else '%.0f' % retries
 
 124     def best_block_size(elapsed_time
, bytes): 
 125         new_min 
= max(bytes / 2.0, 1.0) 
 126         new_max 
= min(max(bytes * 2.0, 1.0), 4194304)  # Do not surpass 4 MB 
 127         if elapsed_time 
< 0.001: 
 129         rate 
= bytes / elapsed_time
 
 137     def parse_bytes(bytestr
): 
 138         """Parse a string indicating a byte quantity into an integer.""" 
 139         matchobj 
= re
.match(r
'(?i)^(\d+(?:\.\d+)?)([kMGTPEZY]?)$', bytestr
) 
 142         number 
= float(matchobj
.group(1)) 
 143         multiplier 
= 1024.0 ** 'bkmgtpezy'.index(matchobj
.group(2).lower()) 
 144         return int(round(number 
* multiplier
)) 
 146     def to_screen(self
, *args
, **kargs
): 
 147         self
.ydl
.to_screen(*args
, **kargs
) 
 149     def to_stderr(self
, message
): 
 150         self
.ydl
.to_screen(message
) 
 152     def to_console_title(self
, message
): 
 153         self
.ydl
.to_console_title(message
) 
 155     def trouble(self
, *args
, **kargs
): 
 156         self
.ydl
.trouble(*args
, **kargs
) 
 158     def report_warning(self
, *args
, **kargs
): 
 159         self
.ydl
.report_warning(*args
, **kargs
) 
 161     def report_error(self
, *args
, **kargs
): 
 162         self
.ydl
.report_error(*args
, **kargs
) 
 164     def slow_down(self
, start_time
, now
, byte_counter
): 
 165         """Sleep if the download speed is over the rate limit.""" 
 166         rate_limit 
= self
.params
.get('ratelimit') 
 167         if rate_limit 
is None or byte_counter 
== 0: 
 171         elapsed 
= now 
- start_time
 
 174         speed 
= float(byte_counter
) / elapsed
 
 175         if speed 
> rate_limit
: 
 176             time
.sleep(max((byte_counter 
// rate_limit
) - elapsed
, 0)) 
 178     def temp_name(self
, filename
): 
 179         """Returns a temporary filename for the given filename.""" 
 180         if self
.params
.get('nopart', False) or filename 
== '-' or \
 
 181                 (os
.path
.exists(encodeFilename(filename
)) and not os
.path
.isfile(encodeFilename(filename
))): 
 183         return filename 
+ '.part' 
 185     def undo_temp_name(self
, filename
): 
 186         if filename
.endswith('.part'): 
 187             return filename
[:-len('.part')] 
 190     def ytdl_filename(self
, filename
): 
 191         return filename 
+ '.ytdl' 
 193     def try_rename(self
, old_filename
, new_filename
): 
 195             if old_filename 
== new_filename
: 
 197             os
.rename(encodeFilename(old_filename
), encodeFilename(new_filename
)) 
 198         except (IOError, OSError) as err
: 
 199             self
.report_error('unable to rename file: %s' % error_to_compat_str(err
)) 
 201     def try_utime(self
, filename
, last_modified_hdr
): 
 202         """Try to set the last-modified time of the given file.""" 
 203         if last_modified_hdr 
is None: 
 205         if not os
.path
.isfile(encodeFilename(filename
)): 
 207         timestr 
= last_modified_hdr
 
 210         filetime 
= timeconvert(timestr
) 
 213         # Ignore obviously invalid dates 
 217             os
.utime(filename
, (time
.time(), filetime
)) 
 222     def report_destination(self
, filename
): 
 223         """Report destination filename.""" 
 224         self
.to_screen('[download] Destination: ' + filename
) 
 226     def _report_progress_status(self
, msg
, is_last_line
=False): 
 227         fullmsg 
= '[download] ' + msg
 
 228         if self
.params
.get('progress_with_newline', False): 
 229             self
.to_screen(fullmsg
) 
 231             if compat_os_name 
== 'nt': 
 232                 prev_len 
= getattr(self
, '_report_progress_prev_line_length', 
 234                 if prev_len 
> len(fullmsg
): 
 235                     fullmsg 
+= ' ' * (prev_len 
- len(fullmsg
)) 
 236                 self
._report
_progress
_prev
_line
_length 
= len(fullmsg
) 
 239                 clear_line 
= ('\r\x1b[K' if sys
.stderr
.isatty() else '\r') 
 240             self
.to_screen(clear_line 
+ fullmsg
, skip_eol
=not is_last_line
) 
 241         self
.to_console_title('youtube-dl ' + msg
) 
 243     def report_progress(self
, s
): 
 244         if s
['status'] == 'finished': 
 245             if self
.params
.get('noprogress', False): 
 246                 self
.to_screen('[download] Download completed') 
 248                 s
['_total_bytes_str'] = format_bytes(s
['total_bytes']) 
 249                 if s
.get('elapsed') is not None: 
 250                     s
['_elapsed_str'] = self
.format_seconds(s
['elapsed']) 
 251                     msg_template 
= '100%% of %(_total_bytes_str)s in %(_elapsed_str)s' 
 253                     msg_template 
= '100%% of %(_total_bytes_str)s' 
 254                 self
._report
_progress
_status
( 
 255                     msg_template 
% s
, is_last_line
=True) 
 257         if self
.params
.get('noprogress'): 
 260         if s
['status'] != 'downloading': 
 263         if s
.get('eta') is not None: 
 264             s
['_eta_str'] = self
.format_eta(s
['eta']) 
 266             s
['_eta_str'] = 'Unknown ETA' 
 268         if s
.get('total_bytes') and s
.get('downloaded_bytes') is not None: 
 269             s
['_percent_str'] = self
.format_percent(100 * s
['downloaded_bytes'] / s
['total_bytes']) 
 270         elif s
.get('total_bytes_estimate') and s
.get('downloaded_bytes') is not None: 
 271             s
['_percent_str'] = self
.format_percent(100 * s
['downloaded_bytes'] / s
['total_bytes_estimate']) 
 273             if s
.get('downloaded_bytes') == 0: 
 274                 s
['_percent_str'] = self
.format_percent(0) 
 276                 s
['_percent_str'] = 'Unknown %' 
 278         if s
.get('speed') is not None: 
 279             s
['_speed_str'] = self
.format_speed(s
['speed']) 
 281             s
['_speed_str'] = 'Unknown speed' 
 283         if s
.get('total_bytes') is not None: 
 284             s
['_total_bytes_str'] = format_bytes(s
['total_bytes']) 
 285             msg_template 
= '%(_percent_str)s of %(_total_bytes_str)s at %(_speed_str)s ETA %(_eta_str)s' 
 286         elif s
.get('total_bytes_estimate') is not None: 
 287             s
['_total_bytes_estimate_str'] = format_bytes(s
['total_bytes_estimate']) 
 288             msg_template 
= '%(_percent_str)s of ~%(_total_bytes_estimate_str)s at %(_speed_str)s ETA %(_eta_str)s' 
 290             if s
.get('downloaded_bytes') is not None: 
 291                 s
['_downloaded_bytes_str'] = format_bytes(s
['downloaded_bytes']) 
 293                     s
['_elapsed_str'] = self
.format_seconds(s
['elapsed']) 
 294                     msg_template 
= '%(_downloaded_bytes_str)s at %(_speed_str)s (%(_elapsed_str)s)' 
 296                     msg_template 
= '%(_downloaded_bytes_str)s at %(_speed_str)s' 
 298                 msg_template 
= '%(_percent_str)s % at %(_speed_str)s ETA %(_eta_str)s' 
 300         self
._report
_progress
_status
(msg_template 
% s
) 
 302     def report_resuming_byte(self
, resume_len
): 
 303         """Report attempt to resume at given byte.""" 
 304         self
.to_screen('[download] Resuming download at byte %s' % resume_len
) 
 306     def report_retry(self
, count
, retries
): 
 307         """Report retry in case of HTTP error 5xx""" 
 309             '[download] Got server HTTP error. Retrying (attempt %d of %s)...' 
 310             % (count
, self
.format_retries(retries
))) 
 312     def report_file_already_downloaded(self
, file_name
): 
 313         """Report file has already been fully downloaded.""" 
 315             self
.to_screen('[download] %s has already been downloaded' % file_name
) 
 316         except UnicodeEncodeError: 
 317             self
.to_screen('[download] The file has already been downloaded') 
 319     def report_unable_to_resume(self
): 
 320         """Report it was impossible to resume download.""" 
 321         self
.to_screen('[download] Unable to resume') 
 323     def download(self
, filename
, info_dict
): 
 324         """Download to a filename using the info from info_dict 
 325         Return True on success and False otherwise 
 328         nooverwrites_and_exists 
= ( 
 329             self
.params
.get('nooverwrites', False) and 
 330             os
.path
.exists(encodeFilename(filename
)) 
 333         if not hasattr(filename
, 'write'): 
 334             continuedl_and_exists 
= ( 
 335                 self
.params
.get('continuedl', True) and 
 336                 os
.path
.isfile(encodeFilename(filename
)) and 
 337                 not self
.params
.get('nopart', False) 
 340             # Check file already present 
 341             if filename 
!= '-' and (nooverwrites_and_exists 
or continuedl_and_exists
): 
 342                 self
.report_file_already_downloaded(filename
) 
 343                 self
._hook
_progress
({ 
 344                     'filename': filename
, 
 345                     'status': 'finished', 
 346                     'total_bytes': os
.path
.getsize(encodeFilename(filename
)), 
 350         min_sleep_interval 
= self
.params
.get('sleep_interval') 
 351         if min_sleep_interval
: 
 352             max_sleep_interval 
= self
.params
.get('max_sleep_interval', min_sleep_interval
) 
 353             sleep_interval 
= random
.uniform(min_sleep_interval
, max_sleep_interval
) 
 355                 '[download] Sleeping %s seconds...' % ( 
 356                     int(sleep_interval
) if sleep_interval
.is_integer() 
 357                     else '%.2f' % sleep_interval
)) 
 358             time
.sleep(sleep_interval
) 
 360         return self
.real_download(filename
, info_dict
) 
 362     def real_download(self
, filename
, info_dict
): 
 363         """Real download process. Redefine in subclasses.""" 
 364         raise NotImplementedError('This method must be implemented by subclasses') 
 366     def _hook_progress(self
, status
): 
 367         for ph 
in self
._progress
_hooks
: 
 370     def add_progress_hook(self
, ph
): 
 371         # See YoutubeDl.py (search for progress_hooks) for a description of 
 373         self
._progress
_hooks
.append(ph
) 
 375     def _debug_cmd(self
, args
, exe
=None): 
 376         if not self
.params
.get('verbose', False): 
 379         str_args 
= [decodeArgument(a
) for a 
in args
] 
 382             exe 
= os
.path
.basename(str_args
[0]) 
 386             shell_quote 
= lambda args
: ' '.join(map(pipes
.quote
, str_args
)) 
 389         self
.to_screen('[debug] %s command line: %s' % ( 
 390             exe
, shell_quote(str_args
)))