/usr/share/pyshared/libqtopensesame/misc/config.py is in opensesame 0.27.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | #-*- coding:utf-8 -*-
"""
This file is part of OpenSesame.
OpenSesame is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenSesame is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenSesame. If not, see <http://www.gnu.org/licenses/>.
USAGE
=====
This module is used to maintain configuration settings. There is a old and a new
style API. The new one is obviously preferred for new code.
OLD STYLE
=========
>>> from libqtopensesame.misc import config
>>> config.set_config('my_setting', 'my_value')
>>> print config.get_config('my_setting')
NEW STYLE
=========
>>> from libqtopensesame.misc.config import cfg
>>> cfg.my_setting = 'my_value' # set
>>> print cfg.my_setting # get
"""
from PyQt4 import QtCore
import libopensesame.misc
from libopensesame import debug, exceptions
import platform
import sip
if sip.getapi(u'QString') == 2:
QtCore.QStringList = list
class config(object):
config = {
u"cfg_ver" : 0,
u"_initial_window_geometry" : QtCore.QByteArray(),
u"_initial_window_state" : QtCore.QByteArray(),
u"auto_update_check" : True,
u"auto_response" : False,
u"autosave_interval" : 10 * 60 * 1000,
u"autosave_max_age" : 7,
u"default_logfile_folder" : libopensesame.misc.home_folder(),
u"default_pool_folder" : libopensesame.misc.home_folder(),
u"disabled_plugins" : "",
u"file_dialog_path" : "",
u"immediate_rename" : False,
u"locale" : u"default",
u"loop_wizard" : QtCore.QStringList(),
u"onetabmode" : False,
u"quick_run_logfile": u"quickrun.csv",
u"recent_files" : u"",
u"scintilla_line_numbers" : True,
u"scintilla_right_margin" : False,
u"scintilla_eol_visible" : False,
u"scintilla_whitespace_visible" : False,
u"scintilla_indentation_guides" : True,
u"scintilla_auto_indent" : True,
u"scintilla_folding" : True,
u"scintilla_brace_match" : True,
u"scintilla_syntax_highlighting" : True,
u"scintilla_custom_font" : False,
u"scintilla_font_family" : u"courier",
u"scintilla_font_size" : 10,
u"shortcut_itemtree" : u"Ctrl+1",
u"shortcut_tabwidget" : u"Ctrl+2",
u"shortcut_stdout" : u"Ctrl+3",
u"shortcut_pool" : u"Ctrl+4",
u"shortcut_variables" : u"Ctrl+5",
u"style" : u"",
u"theme" : u"default",
u"toolbar_size" : 32,
u"toolbar_text" : False,
u"opensesamerun" : False,
u"opensesamerun_exec" : u"",
u"pos" : QtCore.QPoint(200, 200),
u"size" : QtCore.QSize(1000, 600),
u"url_website" : u"http://www.cogsci.nl/opensesame",
u"url_facebook" : u"http://www.facebook.com/cognitivescience",
u"url_twitter" : u"http://www.twitter.com/cogscinl",
u"version_check_url" : \
u"http://files.cogsci.nl/software/opensesame/MOST_RECENT_VERSION.TXT"
}
# OS specific override settings
config_linux = {
u"theme" : u"gnome"
}
config_mac = {}
config_windows = {}
def __init__(self):
"""Constructor"""
# Determine the sip api that is used, because this depends on whether
# or not IPython is loaded
object.__setattr__(self, u'api', sip.getapi(u'QString'))
if self.api not in (1,2):
raise Exception(u'config: unknown api %s' % self.api)
# Apply OS specific override settings
if platform.system() == u"Windows":
for key, value in self.config_windows.iteritems():
self.config[key] = value
elif platform.system() == u"Darwin":
for key, value in self.config_mac.iteritems():
self.config[key] = value
elif platform.system() == u"Linux":
for key, value in self.config_linux.iteritems():
self.config[key] = value
def __getattr__(self, setting):
"""
A getter for settings, to allow for easy access
Argument:
setting -- the setting to get
"""
if setting not in self.config:
raise exceptions.runtime_error(u'The setting "%s" does not exist' \
% setting)
return self.config[setting]
def __setattr__(self, setting, value):
"""
A setter for settings, to allow for easy access
Argument:
setting -- the setting to set
value -- the value to set
"""
if setting not in self.config:
raise exceptions.runtime_error(u'The setting "%s" does not exist' \
% setting)
self.config[setting] = value
self.config[u'cfg_ver'] += 1
def parse_cmdline_args(self, args):
"""
Apply settings that were specified on the command line. The expected
format is as follows: [name]=[val];[name]=[val];...
Arguments:
args -- the string of command line arguments
"""
if args == None:
return
for arg in args.split(u";"):
a = arg.split(u"=")
if len(a) == 2:
# Automagically determine the data type
if a[1] == u"True":
val = True
elif a[1] == u"False":
val = False
else:
try:
val = int(a[1])
except:
try:
val = float(a[1])
except:
val = a[1]
# Apply the argument
try:
self.__setattr__(a[0], val)
debug.msg(u"%s = %s" % (a[0], val))
except:
debug.msg(u"Failed to parse argument: %s" % arg)
def restore(self, qsettings):
"""
Restore settings from a QSettings
Arguments:
qsettings -- a QSettings instance
"""
for setting, default in self.config.items():
value = qsettings.value(setting, default)
# The older (default) api requires an explicit type conversion
if self.api == 1:
if type(default) == bool:
value = value.toBool()
elif type(default) == str:
try:
value = unicode(value.toString())
except:
value = default
elif type(default) == int:
value = value.toInt()[0]
elif type(default) == QtCore.QPoint:
value = value.toPoint()
elif type(default) == QtCore.QSize:
value = value.toSize()
elif type(default) == QtCore.QByteArray:
value = value.toByteArray()
elif type(default) == QtCore.QString:
value = value.toString()
elif type(default) == QtCore.QStringList:
value = value.toStringList()
elif type(default) == unicode:
value = unicode(value.toString())
# The newer api returns some things as strings, so we still have to
# do some type conversion
else:
if type(default) == bool:
if value == u'false':
value = False
else:
value = True
elif type(default) == int:
value = int(value)
self.__setattr__(setting, value)
def save(self, qsettings):
"""
Save settings to a QSettings
Arguments:
qsettings -- a QSettings instance
"""
for setting, value in self.config.items():
if setting != u"cfg_ver":
qsettings.setValue(setting, value)
# Old style API. See explanation above
def get_config(setting):
return cfg.__getattr__(setting)
def set_config(setting, value):
cfg.__setattr__(setting, value)
def restore_config(settings):
cfg.restore(settings)
def save_config(settings):
cfg.save(settings)
def parse_cmdline_args(args):
cfg.parse_cmdline_args(args)
# Create a singleton config instance
global cfg
cfg = config()
|