# Python imports import os import subprocess from shutil import which # Lib imports # Application imports from plugins.plugins_controller import PluginsController from ..builder_wrapper import BuilderWrapper class BaseControllerData: ''' BaseControllerData contains most of the state of the app at ay given time. It also has some support methods. ''' def setup_controller_data(self) -> None: self.window = settings_manager.get_main_window() self.builder = BuilderWrapper() self.base_container = None self.was_midified_key = False self.ctrl_down = False self.shift_down = False self.alt_down = False self._load_glade_file() self.plugins = PluginsController() def collect_files_dirs(self, args, unknownargs): files = [] for arg in unknownargs + [args.new_tab,]: if os.path.isdir( arg.replace("file://", "") ): files.append( f"DIR|{arg.replace('file://', '')}" ) # NOTE: If passing line number with file split against : if os.path.isfile( arg.replace("file://", "").split(":")[0] ): files.append( f"FILE|{arg.replace('file://', '')}" ) if len(files) > 0: settings_manager.set_is_starting_with_file(True) settings_manager.set_starting_files(files) def get_base_container(self): return self.base_container def clear_console(self) -> None: ''' Clears the terminal screen. ''' os.system('cls' if os.name == 'nt' else 'clear') def call_method(self, _method_name: str, data: type) -> type: ''' Calls a method from scope of class. Parameters: a (obj): self b (str): method name to be called c (*): Data (if any) to be passed to the method. Note: It must be structured according to the given methods requirements. Returns: Return data is that which the calling method gives. ''' method_name = str(_method_name) method = getattr(self, method_name, lambda data: f"No valid key passed...\nkey={method_name}\nargs={data}") return method(*data) if data else method() def has_method(self, obj: type, method: type) -> type: ''' Checks if a given method exists. ''' return callable(getattr(obj, method, None)) def clear_children(self, widget: type) -> None: ''' Clear children of a gtk widget. ''' for child in widget.get_children(): widget.remove(child) def get_clipboard_data(self, encoding = "utf-8") -> str: if which("xclip"): command = ['xclip','-selection','clipboard'] else: logger.info('xclip not found...') return proc = subprocess.Popen(['xclip','-selection', 'clipboard', '-o'], stdout = subprocess.PIPE) retcode = proc.wait() data = proc.stdout.read() return data.decode(encoding).strip() def set_clipboard_data(self, data: type, encoding = "utf-8") -> None: if which("xclip"): command = ['xclip','-selection','clipboard'] else: logger.info('xclip not found...') return proc = subprocess.Popen(command, stdin = subprocess.PIPE) proc.stdin.write(data.encode(encoding)) proc.stdin.close() retcode = proc.wait()