fenrir/src/fenrir-package/core/settingsManager.py

209 lines
9.5 KiB
Python
Raw Normal View History

#!/bin/python
2016-07-12 11:13:59 -04:00
import evdev
2016-07-12 17:09:11 -04:00
import importlib.util
2016-07-26 17:39:22 -04:00
import os
2016-07-14 16:15:10 -04:00
from configparser import ConfigParser
from core import inputManager
2016-07-14 17:00:02 -04:00
from core import outputManager
2016-07-14 16:15:10 -04:00
from core import commandManager
from core import environment
from core.settings import settings
from utils import debug
2016-07-08 06:24:44 -04:00
class settingsManager():
def __init__(self):
2016-07-12 17:09:11 -04:00
self.settings = settings
2016-07-11 05:37:43 -04:00
2016-07-26 09:12:42 -04:00
def loadShortcuts(self, environment, kbConfigPath='../../config/keyboard/desktop.conf'):
2016-07-11 05:37:43 -04:00
kbConfig = open(kbConfigPath,"r")
while(True):
line = kbConfig.readline()
if not line:
break
line = line.replace('\n','')
if line.replace(" ","").startswith("#"):
continue
if line.count("=") != 1:
continue
sepLine = line.split('=')
commandString = sepLine[1]
keys = sepLine[0].replace(" ","").split(',')
currShortcut = []
validKeyString = True
for key in keys:
if len(key) < 3:
validKeyString = False
break
if not key[0] in ['0','1','2']:
validKeyString = False
break
if key[1] != '-':
validKeyString = False
break
if key[2:] != '':
keyInt = self.getCodeForKeyID(key[2:])
else:
validKeyString = False
break
if keyInt == 0:
validKeyString = False
break
if not validKeyString:
break
else:
currShortcut.append(key[0] + '-' + str(keyInt))
if validKeyString:
keyString = ''
for k in sorted(currShortcut):
if keyString != '':
keyString += ','
keyString += k
environment['bindings'][keyString] = commandString
kbConfig.close()
return environment
def getCodeForKeyID(self, keyID):
try:
return evdev.ecodes.ecodes[keyID.upper()]
except:
return 0
2016-07-26 09:44:03 -04:00
def loadSoundIcons(self, environment, soundIconPath=''):
siConfig = open(soundIconPath + '/soundicons.conf',"r")
while(True):
line = siConfig.readline()
if not line:
break
line = line.replace('\n','')
if line.replace(" ","").startswith("#"):
continue
if line.count("=") != 1:
continue
Values = line.split('=')
if len(Values) > 2:
continue
soundIcon = Values[0]
Values[1] = Values[1].replace("'","")
Values[1] = Values[1].replace('"',"")
validSoundIcon = False
2016-07-28 17:52:20 -04:00
FilePath = ''
2016-07-26 09:44:03 -04:00
if os.path.exists(Values[1]):
FilePath = Values[1]
2016-07-28 17:52:20 -04:00
validSoundIcon = True
2016-07-26 09:44:03 -04:00
else:
2016-07-28 17:52:20 -04:00
if not soundIconPath.endswith("/"):
soundIconPath += '/'
2016-07-26 17:39:22 -04:00
if os.path.exists(soundIconPath + Values[1]):
FilePath = soundIconPath + Values[1]
validSoundIcon = True
2016-07-26 09:44:03 -04:00
if validSoundIcon:
environment['soundIcons'][soundIcon] = FilePath
siConfig.close()
return environment
2016-07-11 05:37:43 -04:00
2016-07-26 09:12:42 -04:00
def loadSettings(self, environment, settingConfigPath='../../config/settings/settings.conf'):
2016-07-11 05:37:43 -04:00
environment['settings'] = ConfigParser()
2016-07-26 17:39:22 -04:00
#if not exist what is ?????
2016-07-11 05:37:43 -04:00
environment['settings'].read(settingConfigPath)
return environment
2016-07-25 13:48:03 -04:00
def setSetting(self, environment, section, setting, value):
environment['settings'].set(section, setting, value)
return environment
2016-07-12 17:09:11 -04:00
def getSetting(self, environment, section, setting):
value = ''
try:
value = environment['settings'].get(section, setting)
except:
value = str(self.settings[section][setting])
2016-07-11 05:37:43 -04:00
return value
2016-07-12 17:09:11 -04:00
def getSettingAsInt(self, environment, section, setting):
2016-07-25 13:48:03 -04:00
value = 0
2016-07-17 08:25:59 -04:00
try:
value = environment['settings'].getint(section, setting)
except:
value = self.settings[section][setting]
return value
2016-07-14 17:25:33 -04:00
def getSettingAsFloat(self, environment, section, setting):
2016-07-25 13:48:03 -04:00
value = 0.0
2016-07-17 08:25:59 -04:00
try:
value = environment['settings'].getfloat(section, setting)
except:
value = self.settings[section][setting]
return value
2016-07-12 17:09:11 -04:00
def getSettingAsBool(self, environment, section, setting):
2016-07-25 13:48:03 -04:00
value = False
2016-07-17 08:25:59 -04:00
try:
value = environment['settings'].getboolean(section, setting)
except:
value = self.settings[section][setting]
return value
2016-07-12 17:09:11 -04:00
def loadSpeechDriver(self, environment, driverName):
if environment['runtime']['speechDriver'] != None:
environment['runtime']['speechDriver'].shutdown()
spec = importlib.util.spec_from_file_location(driverName, 'speech/' + driverName + '.py')
driver_mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(driver_mod)
environment['runtime']['speechDriver'] = driver_mod.speech()
return environment
def loadSoundDriver(self, environment, driverName):
if environment['runtime']['soundDriver'] != None:
environment['runtime']['soundDriver'].shutdown()
spec = importlib.util.spec_from_file_location(driverName, 'sound/' + driverName + '.py')
driver_mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(driver_mod)
environment['runtime']['soundDriver'] = driver_mod.sound()
return environment
def loadScreenDriver(self, environment, driverName):
spec = importlib.util.spec_from_file_location(driverName, 'screen/' + driverName + '.py')
driver_mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(driver_mod)
environment['runtime']['screenDriver'] = driver_mod.screen()
2016-07-14 17:00:02 -04:00
return environment
2016-07-14 16:15:10 -04:00
def initFenrirConfig(self):
return self.reInitFenrirConfig(environment.environment)
2016-07-12 17:09:11 -04:00
2016-07-26 17:39:22 -04:00
def reInitFenrirConfig(self, environment, settingsRoot = '../../config/'):
2016-07-14 16:15:10 -04:00
environment['runtime']['settingsManager'] = self
environment['runtime']['inputManager'] = inputManager.inputManager()
2016-07-14 17:00:02 -04:00
environment['runtime']['outputManager'] = outputManager.outputManager()
2016-07-14 16:15:10 -04:00
environment = environment['runtime']['settingsManager'].loadSettings(environment)
2016-07-26 17:39:22 -04:00
if not os.path.exists(self.getSetting(environment, 'keyboard','keyboardLayout')):
if os.path.exists(settingsRoot + 'keyboard/' + self.getSetting(environment, 'keyboard','keyboardLayout')):
self.setSetting(environment, 'keyboard', 'keyboardLayout', settingsRoot + 'keyboard/' + self.getSetting(environment, 'keyboard','keyboardLayout'))
2016-07-26 09:44:03 -04:00
environment = environment['runtime']['settingsManager'].loadShortcuts(environment, self.getSetting('keyboard','keyboardLayout'))
2016-07-26 17:39:22 -04:00
if os.path.exists(settingsRoot + 'keyboard/' + self.getSetting(environment, 'keyboard','keyboardLayout') + '.conf'):
self.setSetting(environment, 'keyboard', 'keyboardLayout', settingsRoot + 'keyboard/' + self.getSetting(environment, 'keyboard','keyboardLayout') + '.conf')
environment = environment['runtime']['settingsManager'].loadShortcuts(environment, self.getSetting(environment, 'keyboard','keyboardLayout'))
2016-07-26 09:44:03 -04:00
else:
2016-07-26 17:39:22 -04:00
environment = environment['runtime']['settingsManager'].loadShortcuts(environment, self.getSetting(environment, 'keyboard','keyboardLayout'))
2016-07-26 09:23:38 -04:00
2016-07-26 17:39:22 -04:00
if not os.path.exists(self.getSetting(environment, 'sound','theme') + '/soundicons.conf'):
if os.path.exists(settingsRoot + 'sound/'+ self.getSetting(environment, 'sound','theme')):
self.setSetting(environment, 'sound', 'theme', settingsRoot + 'sound/'+ self.getSetting(environment, 'sound','theme'))
if os.path.exists(settingsRoot + 'sound/'+ self.getSetting(environment, 'sound','theme') + '/soundicons.conf'):
environment = environment['runtime']['settingsManager'].loadSoundIcons(environment, self.getSetting(environment, 'sound','theme'))
2016-07-26 09:44:03 -04:00
else:
2016-07-26 17:39:22 -04:00
environment = environment['runtime']['settingsManager'].loadSoundIcons(environment, self.getSetting(environment, 'sound','theme'))
2016-07-14 16:15:10 -04:00
environment['runtime']['commandManager'] = commandManager.commandManager()
environment = environment['runtime']['commandManager'].loadCommands(environment,'commands')
environment = environment['runtime']['commandManager'].loadCommands(environment,'onInput')
environment = environment['runtime']['commandManager'].loadCommands(environment,'onScreenChanged')
environment['runtime']['debug'] = debug.debug()
environment = environment['runtime']['settingsManager'].loadSpeechDriver(environment,\
environment['runtime']['settingsManager'].getSetting(environment,'speech', 'driver'))
environment = environment['runtime']['settingsManager'].loadScreenDriver(environment,\
environment['runtime']['settingsManager'].getSetting(environment,'screen', 'driver'))
environment = environment['runtime']['settingsManager'].loadSoundDriver(environment,\
environment['runtime']['settingsManager'].getSetting(environment,'sound', 'driver'))
return environment
2016-07-11 05:37:43 -04:00