#!/usr/bin/env python2 # -*- coding: utf-8 -*- """Youtubedlg module for managing the download process. This module is responsible for managing the download process and update the GUI interface. Attributes: MANAGER_PUB_TOPIC (string): wxPublisher subscription topic of the DownloadManager thread. WORKER_PUB_TOPIC (string): wxPublisher subscription topic of the Worker thread. Note: It's not the actual module that downloads the urls thats the job of the 'downloaders' module. """ from __future__ import unicode_literals import time import os.path from threading import ( Thread, RLock, Lock ) from wx import CallAfter from wx.lib.pubsub import setuparg1 from wx.lib.pubsub import pub as Publisher from .parsers import OptionsParser from .updatemanager import UpdateThread from .downloaders import YoutubeDLDownloader from .utils import ( YOUTUBEDL_BIN, os_path_exists, format_bytes, to_string, to_bytes ) MANAGER_PUB_TOPIC = 'dlmanager' WORKER_PUB_TOPIC = 'dlworker' _SYNC_LOCK = RLock() # Decorator that adds thread synchronization to a function def synchronized(lock): def _decorator(func): def _wrapper(*args, **kwargs): lock.acquire() ret_value = func(*args, **kwargs) lock.release() return ret_value return _wrapper return _decorator class DownloadItem(object): """Object that represents a download. Attributes: STAGES (tuple): Main stages of the download item. ACTIVE_STAGES (tuple): Sub stages of the 'Active' stage. COMPLETED_STAGES (tuple): Sub stages of the 'Completed' stage. ERROR_STAGES (tuple): Sub stages of the 'Error' stage. Args: url (string): URL that corresponds to the download item. options (list): Options list to use during the download phase. """ STAGES = ("Queued", "Active", "Paused", "Completed", "Error") ACTIVE_STAGES = ("Pre Processing", "Downloading", "Post Processing") COMPLETED_STAGES = ("Finished", "Warning", "Already Downloaded") ERROR_STAGES = ("Error", "Stopped", "Filesize Abort") def __init__(self, url, options): self.url = url self.options = options self.object_id = hash(url + to_string(options)) self.reset() @property def stage(self): return self._stage @stage.setter def stage(self, value): if value not in self.STAGES: raise ValueError(value) if value == "Queued": self.progress_stats["status"] = value if value == "Active": self.progress_stats["status"] = self.ACTIVE_STAGES[0] if value == "Completed": self.progress_stats["status"] = self.COMPLETED_STAGES[0] if value == "Paused": self.progress_stats["status"] = value if value == "Error": self.progress_stats["status"] = self.ERROR_STAGES[0] self._stage = value def reset(self): if hasattr(self, "_stage") and self._stage == self.STAGES[1]: raise RuntimeError("Cannot reset an 'Active' item") self._stage = self.STAGES[0] self.path = "" self.filenames = [] self.extensions = [] self.filesizes = [] self.default_values = { "filename": self.url, "extension": "-", "filesize": "-", "percent": "0%", "speed": "-", "eta": "-", "status": self.stage, "playlist_size": "", "playlist_index": "" } self.progress_stats = dict(self.default_values) def get_files(self): """Returns a list that contains all the system files bind to this object.""" files = [] for index, item in enumerate(self.filenames): filename = item + self.extensions[index] files.append(os.path.join(self.path, filename)) return files def update_stats(self, stats_dict): """Updates the progress_stats dict from the given dictionary.""" assert isinstance(stats_dict, dict) for key in stats_dict: if key in self.progress_stats: value = stats_dict[key] if not isinstance(value, basestring) or not value: self.progress_stats[key] = self.default_values[key] else: self.progress_stats[key] = value # Extract extra stuff if key == "filename": self.filenames.append(stats_dict[key]) if key == "extension": self.extensions.append(stats_dict[key]) if key == "path": self.path = stats_dict[key] if key == "status": self._set_stage(stats_dict[key]) if "filesize" in stats_dict: if len(self.filesizes) < len(self.filenames): filesize = stats_dict["filesize"].lstrip("~") # HLS downloader etc self.filesizes.append(to_bytes(filesize)) if "status" in stats_dict: # If we are post processing try to calculate the size of # the output file since youtube-dl does not if stats_dict["status"] == self.ACTIVE_STAGES[2] and not len(self.filenames) % 3: post_proc_filesize = self.filesizes[-2] + self.filesizes[-1] self.filesizes.append(post_proc_filesize) self.progress_stats["filesize"] = format_bytes(post_proc_filesize) def _set_stage(self, status): if status in self.ACTIVE_STAGES: self._stage = self.STAGES[1] if status in self.COMPLETED_STAGES: self._stage = self.STAGES[3] if status in self.ERROR_STAGES: self._stage = self.STAGES[4] def __eq__(self, other): return self.object_id == other.object_id class DownloadList(object): """List like data structure that contains DownloadItems. Args: items (list): List that contains DownloadItems. """ def __init__(self, items=None): assert isinstance(items, list) or items is None if items is None: self._items_dict = {} # Speed up lookup self._items_list = [] # Keep the sequence else: self._items_list = [item.object_id for item in items] self._items_dict = {item.object_id: item for item in items} @synchronized(_SYNC_LOCK) def clear(self): """Removes all the items from the list even the 'Active' ones.""" self._items_list = [] self._items_dict = {} @synchronized(_SYNC_LOCK) def insert(self, item): """Inserts the given item to the list. Does not check for duplicates. """ self._items_list.append(item.object_id) self._items_dict[item.object_id] = item @synchronized(_SYNC_LOCK) def remove(self, object_id): """Removes an item from the list. Removes the item with the corresponding object_id from the list if the item is not in 'Active' state. Returns: True on success else False. """ if self._items_dict[object_id].stage != "Active": self._items_list.remove(object_id) del self._items_dict[object_id] return True return False @synchronized(_SYNC_LOCK) def fetch_next(self): """Returns the next queued item on the list. Returns: Next queued item or None if no other item exist. """ for object_id in self._items_list: cur_item = self._items_dict[object_id] if cur_item.stage == "Queued": return cur_item return None @synchronized(_SYNC_LOCK) def move_up(self, object_id): """Moves the item with the corresponding object_id up to the list.""" index = self._items_list.index(object_id) if index > 0: self._swap(index, index - 1) return True return False @synchronized(_SYNC_LOCK) def move_down(self, object_id): """Moves the item with the corresponding object_id down to the list.""" index = self._items_list.index(object_id) if index < (len(self._items_list) - 1): self._swap(index, index + 1) return True return False @synchronized(_SYNC_LOCK) def get_item(self, object_id): """Returns the DownloadItem with the given object_id.""" return self._items_dict[object_id] @synchronized(_SYNC_LOCK) def has_item(self, object_id): """Returns True if the given object_id is in the list else False.""" return object_id in self._items_list @synchronized(_SYNC_LOCK) def get_items(self): """Returns a list with all the items.""" return [self._items_dict[object_id] for object_id in self._items_list] @synchronized(_SYNC_LOCK) def change_stage(self, object_id, new_stage): """Change the stage of the item with the given object_id.""" self._items_dict[object_id].stage = new_stage @synchronized(_SYNC_LOCK) def index(self, object_id): """Get the zero based index of the item with the given object_id.""" if object_id in self._items_list: return self._items_list.index(object_id) return -1 @synchronized(_SYNC_LOCK) def __len__(self): return len(self._items_list) def _swap(self, index1, index2): self._items_list[index1], self._items_list[index2] = self._items_list[index2], self._items_list[index1] class DownloadManager(Thread): """Manages the download process. Attributes: WAIT_TIME (float): Time in seconds to sleep. Args: download_list (DownloadList): List that contains items to download. opt_manager (optionsmanager.OptionsManager): Object responsible for managing the youtubedlg options. log_manager (logmanager.LogManager): Object responsible for writing errors to the log. """ WAIT_TIME = 0.1 def __init__(self, parent, download_list, opt_manager, log_manager=None): super(DownloadManager, self).__init__() self.parent = parent self.opt_manager = opt_manager self.log_manager = log_manager self.download_list = download_list self._time_it_took = 0 self._successful = 0 self._running = True # Init the custom workers thread pool log_lock = None if log_manager is None else Lock() wparams = (opt_manager, self._youtubedl_path(), log_manager, log_lock) self._workers = [Worker(*wparams) for _ in xrange(opt_manager.options["workers_number"])] self.start() @property def successful(self): """Returns number of successful downloads. """ return self._successful @property def time_it_took(self): """Returns time(seconds) it took for the download process to complete. """ return self._time_it_took def run(self): self._check_youtubedl() self._time_it_took = time.time() while self._running: item = self.download_list.fetch_next() if item is not None: worker = self._get_worker() if worker is not None: worker.download(item.url, item.options, item.object_id) self.download_list.change_stage(item.object_id, "Active") if item is None and self._jobs_done(): break time.sleep(self.WAIT_TIME) # Close all the workers for worker in self._workers: worker.close() # Join and collect for worker in self._workers: worker.join() self._successful += worker.successful self._time_it_took = time.time() - self._time_it_took if not self._running: self._talk_to_gui('closed') else: self._talk_to_gui('finished') def active(self): """Returns number of active items. Note: active_items = (workers that work) + (items waiting in the url_list). """ #counter = 0 #for worker in self._workers: #if not worker.available(): #counter += 1 #counter += len(self.download_list) return len(self.download_list) def stop_downloads(self): """Stop the download process. Also send 'closing' signal back to the GUI. Note: It does NOT kill the workers thats the job of the clean up task in the run() method. """ self._talk_to_gui('closing') self._running = False def add_url(self, url): """Add given url to the download_list. Args: url (dict): Python dictionary that contains two keys. The url and the index of the corresponding row in which the worker should send back the information about the download process. """ self.download_list.append(url) def send_to_worker(self, data): """Send data to the Workers. Args: data (dict): Python dictionary that holds the 'index' which is used to identify the Worker thread and the data which can be any of the Worker's class valid data. For a list of valid data keys see __init__() under the Worker class. """ if 'index' in data: for worker in self._workers: if worker.has_index(data['index']): worker.update_data(data) def _talk_to_gui(self, data): """Send data back to the GUI using wxCallAfter and wxPublisher. Args: data (string): Unique signal string that informs the GUI for the download process. Note: DownloadManager supports 4 signals. 1) closing: The download process is closing. 2) closed: The download process has closed. 3) finished: The download process was completed normally. 4) report_active: Signal the gui to read the number of active downloads using the active() method. """ CallAfter(Publisher.sendMessage, MANAGER_PUB_TOPIC, data) def _check_youtubedl(self): """Check if youtube-dl binary exists. If not try to download it. """ if not os_path_exists(self._youtubedl_path()) and self.parent.update_thread is None: self.parent.update_thread = UpdateThread(self.opt_manager.options['youtubedl_path'], True) self.parent.update_thread.join() self.parent.update_thread = None def _get_worker(self): for worker in self._workers: if worker.available(): return worker return None def _jobs_done(self): """Returns True if the workers have finished their jobs else False. """ for worker in self._workers: if not worker.available(): return False return True def _youtubedl_path(self): """Returns the path to youtube-dl binary. """ path = self.opt_manager.options['youtubedl_path'] path = os.path.join(path, YOUTUBEDL_BIN) return path class Worker(Thread): """Simple worker which downloads the given url using a downloader from the downloaders.py module. Attributes: WAIT_TIME (float): Time in seconds to sleep. Args: opt_manager (optionsmanager.OptionsManager): Check DownloadManager description. youtubedl (string): Absolute path to youtube-dl binary. log_manager (logmanager.LogManager): Check DownloadManager description. log_lock (threading.Lock): Synchronization lock for the log_manager. If the log_manager is set (not None) then the caller has to make sure that the log_lock is also set. Note: For available data keys see self._data under the __init__() method. """ WAIT_TIME = 0.1 def __init__(self, opt_manager, youtubedl, log_manager=None, log_lock=None): super(Worker, self).__init__() self.opt_manager = opt_manager self.log_manager = log_manager self.log_lock = log_lock self._downloader = YoutubeDLDownloader(youtubedl, self._data_hook, self._log_data) self._options_parser = OptionsParser() self._successful = 0 self._running = True self._options = None self._wait_for_reply = False self._data = { 'playlist_index': None, 'playlist_size': None, 'new_filename': None, 'extension': None, 'filesize': None, 'filename': None, 'percent': None, 'status': None, 'index': None, 'speed': None, 'path': None, 'eta': None, 'url': None } self.start() def run(self): while self._running: if self._data['url'] is not None: #options = self._options_parser.parse(self.opt_manager.options) ret_code = self._downloader.download(self._data['url'], self._options) if (ret_code == YoutubeDLDownloader.OK or ret_code == YoutubeDLDownloader.ALREADY or ret_code == YoutubeDLDownloader.WARNING): self._successful += 1 # Ask GUI for name updates #self._talk_to_gui('receive', {'source': 'filename', 'dest': 'new_filename'}) # Wait until you get a reply #while self._wait_for_reply: #time.sleep(self.WAIT_TIME) self._reset() time.sleep(self.WAIT_TIME) # Call the destructor function of YoutubeDLDownloader object self._downloader.close() def download(self, url, options, object_id): """Download given item. Args: item (dict): Python dictionary that contains two keys. The url and the index of the corresponding row in which the worker should send back the information about the download process. """ self._data['url'] = url self._options = options self._data['index'] = object_id def stop_download(self): """Stop the download process of the worker. """ self._downloader.stop() def close(self): """Kill the worker after stopping the download process. """ self._running = False self._downloader.stop() def available(self): """Return True if the worker has no job else False. """ return self._data['url'] is None def has_index(self, index): """Return True if index is equal to self._data['index'] else False. """ return self._data['index'] == index def update_data(self, data): """Update self._data from the given data. """ if self._wait_for_reply: # Update data only if a receive request has been issued for key in data: self._data[key] = data[key] self._wait_for_reply = False @property def successful(self): """Return the number of successful downloads for current worker. """ return self._successful def _reset(self): """Reset self._data back to the original state. """ for key in self._data: self._data[key] = None def _log_data(self, data): """Callback method for self._downloader. This method is used to write the given data in a synchronized way to the log file using the self.log_manager and the self.log_lock. Args: data (string): String to write to the log file. """ if self.log_manager is not None: self.log_lock.acquire() self.log_manager.log(data) self.log_lock.release() def _data_hook(self, data): """Callback method for self._downloader. This method updates self._data and sends the updates back to the GUI using the self._talk_to_gui() method. Args: data (dict): Python dictionary which contains information about the download process. For more info see the extract_data() function under the downloaders.py module. """ ## Temp dictionary which holds the updates #temp_dict = {} ## Update each key #for key in data: #if self._data[key] != data[key]: #self._data[key] = data[key] #temp_dict[key] = data[key] ## Build the playlist status if there is an update ## REFACTOR re-implement this on DownloadItem or ListCtrl level? ##if self._data['playlist_index'] is not None: ##if 'status' in temp_dict or 'playlist_index' in temp_dict: ##temp_dict['status'] = '{status} {index}/{size}'.format( ##status=self._data['status'], ##index=self._data['playlist_index'], ##size=self._data['playlist_size'] ##) #if len(temp_dict): #self._talk_to_gui('send', temp_dict) self._talk_to_gui('send', data) def _talk_to_gui(self, signal, data): """Communicate with the GUI using wxCallAfter and wxPublisher. Send/Ask data to/from the GUI. Note that if the signal is 'receive' then the Worker will wait until it receives a reply from the GUI. Args: signal (string): Unique string that informs the GUI about the communication procedure. data (dict): Python dictionary which holds the data to be sent back to the GUI. If the signal is 'send' then the dictionary contains the updates for the GUI (e.g. percentage, eta). If the signal is 'receive' then the dictionary contains exactly three keys. The 'index' (row) from which we want to retrieve the data, the 'source' which identifies a column in the wxListCtrl widget and the 'dest' which tells the wxListCtrl under which key to store the retrieved data. Note: Worker class supports 2 signals. 1) send: The Worker sends data back to the GUI (e.g. Send status updates). 2) receive: The Worker asks data from the GUI (e.g. Receive the name of a file). Structure: ('send', {'index': , data_to_send*}) ('receive', {'index': , 'source': 'source_key', 'dest': 'destination_key'}) """ data['index'] = self._data['index'] if signal == 'receive': self._wait_for_reply = True CallAfter(Publisher.sendMessage, WORKER_PUB_TOPIC, (signal, data))