enforcing type better

This commit is contained in:
2022-03-24 22:11:02 -05:00
parent fdccf77367
commit 88db4171cf
8 changed files with 58 additions and 58 deletions

View File

@@ -11,15 +11,15 @@ from gi.repository import Gtk, Gio
class Plugin:
name = None
module = None
reference = None
name: str = None
module: str = None
reference: type = None
class Plugins:
"""Plugins controller"""
def __init__(self, settings):
def __init__(self, settings: type):
self._settings = settings
self._builder = self._settings.get_builder()
self._plugins_path = self._settings.get_plugins_path()
@@ -27,11 +27,11 @@ class Plugins:
self._plugin_collection = []
def launch_plugins(self):
def launch_plugins(self) -> None:
self._set_plugins_watcher()
self.load_plugins()
def _set_plugins_watcher(self):
def _set_plugins_watcher(self) -> None:
self._plugins_dir_watcher = Gio.File.new_for_path(self._plugins_path) \
.monitor_directory(Gio.FileMonitorFlags.WATCH_MOVES, Gio.Cancellable())
self._plugins_dir_watcher.connect("changed", self._on_plugins_changed, ())
@@ -42,7 +42,7 @@ class Plugins:
Gio.FileMonitorEvent.MOVED_OUT]:
self.reload_plugins(file)
def load_plugins(self, file=None):
def load_plugins(self, file: str = None) -> None:
print(f"Loading plugins...")
parent_path = os.getcwd()
@@ -71,8 +71,12 @@ class Plugins:
os.chdir(parent_path)
def reload_plugins(self, file=None):
print(f"Reloading plugins...")
def reload_plugins(self, file: str = None) -> None:
print(f"Reloading plugins... stub.")
def set_message_on_plugin(self, type, data):
def send_message_to_plugin(self, target: str , data: type) -> None:
print("Trying to send message to plugin...")
for plugin in self._plugin_collection:
if target in plugin.name:
print('Found plugin; posting message...')
plugin.reference.set_message(data)