cthulhu/test/harness/runcthulhu.py

64 lines
2.0 KiB
Python
Raw Permalink Normal View History

#!/usr/bin/python3
# N.B. Cthulhu's only use of dbus-python is this logger service which is only
# used by the regression tests. It does not introduce a dependency, is not
# encountered by end users, and will be removed in favor for pygi once bugs
# 656325 and 656330 are resolved.
import argparse
import dbus
import dbus.service
import sys
from cthulhu import cthulhu
from dbus.mainloop.glib import DBusGMainLoop
class LoggerService(dbus.service.Object):
def __init__(self, filePrefix):
self._logger = cthulhu.getLogger()
self._logNames = ['braille', 'speech']
self._filePrefix = filePrefix
DBusGMainLoop(set_as_default=True)
busname = dbus.service.BusName('org.gnome.Cthulhu', bus=dbus.SessionBus())
dbus.service.Object.__init__(self, busname, '/org/gnome/Cthulhu')
@dbus.service.method(dbus_interface='org.gnome.Cthulhu.Logger', in_signature='', out_signature='')
def startRecording(self):
for name in self._logNames:
self._logger.clearLog(name)
@dbus.service.method(dbus_interface='org.gnome.Cthulhu.Logger', in_signature='', out_signature='s')
def stopRecording(self):
contents = ''
for name in self._logNames:
content = self._logger.getLogContent(name)
contents += content
fileName = open('%s.%s' % (self._filePrefix, name), 'a', encoding='utf-8')
fileName.writelines(content)
fileName.close()
return contents
def main():
sys.argv[0] = 'cthulhu'
parser = argparse.ArgumentParser()
parser.add_argument("-u", "--user-prefs", action="store")
parser.add_argument("--debug-file", action="store")
args = parser.parse_args()
cthulhu.debug.debugFile = open('%s.debug' % args.debug_file, 'w')
manager = cthulhu.getSettingsManager()
manager.activate(args.user_prefs)
sys.path.insert(0, manager.getPrefsDir())
service = LoggerService(args.debug_file)
return cthulhu.main()
if __name__ == "__main__":
sys.exit(main())