pesterchum/pyquirks.py

57 lines
1.9 KiB
Python
Raw Normal View History

import logging
import importlib.util
2022-08-19 07:12:58 -04:00
try:
from PyQt6 import QtWidgets
except ImportError:
print("PyQt5 fallback (pyquirks.py)")
from PyQt5 import QtWidgets
from quirks import ScriptQuirks
PchumLog = logging.getLogger("pchumLogger")
2011-06-07 11:48:35 -04:00
2012-11-12 23:52:26 -05:00
class PythonQuirks(ScriptQuirks):
def loadModule(self, name, filename):
# imp is deprecated since Python 3.4
# return imp.load_source(name, filename)
spec = importlib.util.spec_from_file_location(name, filename)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return module
2012-11-12 23:52:26 -05:00
def getExtension(self):
return ".py"
2011-06-07 11:48:35 -04:00
2012-11-12 23:52:26 -05:00
def modHas(self, module, attr):
if attr == "commands":
2012-11-12 23:52:26 -05:00
variables = vars(module)
2021-03-23 17:36:43 -04:00
for name, obj in variables.items():
if self.modHas(obj, "command"):
2012-11-12 23:52:26 -05:00
return True
return hasattr(module, attr)
2011-06-07 11:48:35 -04:00
2012-11-12 23:52:26 -05:00
def register(self, module):
variables = vars(module)
2021-03-23 17:36:43 -04:00
for name, obj in variables.items():
if self.modHas(obj, "command"):
2011-06-07 11:48:35 -04:00
try:
2021-03-23 17:36:43 -04:00
if not isinstance(obj("test"), str):
2011-06-07 11:48:35 -04:00
raise Exception
except:
2023-02-13 14:26:05 -05:00
PchumLog.error("Quirk malformed: %s", obj.command)
# Since this is executed before QApplication is constructed,
# This prevented pesterchum from starting entirely when a quirk was malformed :/
# (QWidget: Must construct a QApplication before a QWidget)
2023-02-13 14:26:05 -05:00
if QtWidgets.QApplication.instance() is not None:
msgbox = QtWidgets.QMessageBox()
msgbox.setWindowTitle("Error!")
msgbox.setText("Quirk malformed: %s" % (obj.command))
2022-06-26 22:18:37 -04:00
msgbox.exec()
2011-06-07 11:48:35 -04:00
else:
2012-11-12 23:52:26 -05:00
self.quirks[obj.command] = obj