2021-04-10 19:21:21 -04:00
|
|
|
import os, sys, re, ostools, logging
|
2021-03-23 17:36:43 -04:00
|
|
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
2012-11-12 23:52:26 -05:00
|
|
|
|
|
|
|
class ScriptQuirks(object):
|
|
|
|
def __init__(self):
|
|
|
|
self._datadir = ostools.getDataDir()
|
|
|
|
self.home = os.getcwd()
|
|
|
|
self.quirks = {}
|
|
|
|
self.last = {}
|
|
|
|
self.scripts = []
|
|
|
|
#self.load()
|
|
|
|
|
|
|
|
def loadModule(self, name, filename):
|
|
|
|
raise Exception
|
|
|
|
|
|
|
|
def modHas(self, module, attr):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def loadAll(self):
|
|
|
|
self.last = self.quirks.copy()
|
|
|
|
self.quirks.clear()
|
|
|
|
for script in self.scripts:
|
2021-04-10 19:21:21 -04:00
|
|
|
logging.info(script.getExtension())
|
2012-11-12 23:52:26 -05:00
|
|
|
script.load()
|
|
|
|
#print script.quirks
|
|
|
|
for q in script.quirks:
|
|
|
|
self.quirks.update(script.quirks)
|
|
|
|
for k in self.last:
|
|
|
|
if k in self.quirks:
|
|
|
|
if self.last[k] == self.quirks[k]:
|
|
|
|
del self.quirks[k]
|
|
|
|
#print self.quirks
|
|
|
|
if self.quirks:
|
2021-04-11 08:46:11 -04:00
|
|
|
# See https://stackoverflow.com/questions/12843099/python-logging-typeerror-not-all-arguments-converted-during-string-formatting
|
|
|
|
reg_quirks = ('Registered quirks:', '(), '.join(self.quirks) + "()")
|
|
|
|
logging.info(reg_quirks)
|
2012-11-12 23:52:26 -05:00
|
|
|
else:
|
2021-04-10 19:21:21 -04:00
|
|
|
logging.warning("Couldn't find any script quirks")
|
2012-11-12 23:52:26 -05:00
|
|
|
|
|
|
|
def add(self, script):
|
|
|
|
self.scripts.append(script)
|
|
|
|
|
|
|
|
def load(self):
|
|
|
|
self.last = self.quirks.copy()
|
|
|
|
self.quirks.clear()
|
|
|
|
extension = self.getExtension()
|
|
|
|
filenames = []
|
|
|
|
if not os.path.exists(os.path.join(self.home, 'quirks')):
|
|
|
|
os.mkdir(os.path.join(self.home, 'quirks'))
|
|
|
|
for fn in os.listdir(os.path.join(self.home, 'quirks')):
|
|
|
|
if fn.endswith(extension) and not fn.startswith('_'):
|
|
|
|
filenames.append(os.path.join(self.home, 'quirks', fn))
|
|
|
|
if self._datadir:
|
|
|
|
if not os.path.exists(os.path.join(self._datadir, 'quirks')):
|
|
|
|
os.mkdir(os.path.join(self._datadir, 'quirks'))
|
|
|
|
for fn in os.listdir(os.path.join(self._datadir, 'quirks')):
|
|
|
|
if fn.endswith(extension) and not fn.startswith('_'):
|
|
|
|
filenames.append(os.path.join(self._datadir, 'quirks', fn))
|
|
|
|
|
|
|
|
|
|
|
|
modules = []
|
|
|
|
for filename in filenames:
|
|
|
|
extension_length = len(self.getExtension())
|
|
|
|
name = os.path.basename(filename)[:-extension_length]
|
|
|
|
try:
|
|
|
|
module = self.loadModule(name, filename)
|
|
|
|
if module is None:
|
|
|
|
continue
|
2016-11-29 15:20:41 -05:00
|
|
|
except Exception as e:
|
2021-03-23 17:36:43 -04:00
|
|
|
print("Error loading %s: %s (in quirks.py)" % (os.path.basename(name), e))
|
|
|
|
msgbox = QtWidgets.QMessageBox()
|
2012-11-12 23:52:26 -05:00
|
|
|
msgbox.setWindowTitle("Error!")
|
|
|
|
msgbox.setText("Error loading %s: %s (in quirks.py)" % (os.path.basename(filename), e))
|
|
|
|
msgbox.exec_()
|
|
|
|
else:
|
|
|
|
if self.modHas(module, 'setup'):
|
|
|
|
module.setup()
|
|
|
|
if self.modHas(module, 'commands'):
|
|
|
|
self.register(module)
|
|
|
|
modules.append(name)
|
|
|
|
for k in self.last:
|
|
|
|
if k in self.quirks:
|
|
|
|
if self.last[k] == self.quirks[k]:
|
|
|
|
del self.quirks[k]
|
|
|
|
|
|
|
|
def funcre(self):
|
|
|
|
if not self.quirks:
|
|
|
|
return r"\\[0-9]+"
|
|
|
|
f = r"("
|
|
|
|
for q in self.quirks:
|
|
|
|
f = f + q+r"\(|"
|
|
|
|
f = f + r"\)|\\[0-9]+)"
|
|
|
|
return f
|