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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
""" Enthought Tool Suite configuration information. """
# Standard library imports.
import sys
import os
from os import path
class ETSConfig(object):
"""
Enthought Tool Suite configuration information.
This class should not use ANY other package in the tool suite so that it
will always work no matter which other packages are present.
"""
###########################################################################
# 'object' interface.
###########################################################################
#### operator methods #####################################################
def __init__(self):
"""
Constructor.
Note that this constructor can only ever be called from within this
module, since we don't expose the class.
"""
# Shadow attributes for properties.
self._application_data = None
self._application_home = None
self._company = None
self._toolkit = None
self._user_data = None
return
###########################################################################
# 'ETSConfig' interface.
###########################################################################
#### properties ###########################################################
def _get_application_data(self):
"""
Property getter.
This is a directory that applications and packages can safely write
non-user accessible data to i.e. configuration information, preferences
etc.
Do not put anything in here that the user might want to navigate to
e.g. projects, user data files etc.
The actual location differs between operating systems.
"""
if self._application_data is None:
self._application_data = self._initialize_application_data()
return self._application_data
def _set_application_data(self, application_data):
"""
Property setter.
"""
self._application_data = application_data
return
application_data = property(_get_application_data, _set_application_data)
def _get_application_home(self):
"""
Property getter.
This is a directory named after the current, running application that
imported this module that applications and packages can safely write
non-user accessible data to i.e. configuration information, preferences
etc. It is a sub-directory of self.application_data, named after the
directory that contains the "main" python script that started the
process. For example, if application foo is started with a script named
"run.py" in a directory named "foo", then the application home would be:
<ETSConfig.application_data>/foo, regardless of if it was launched
with "python <path_to_foo>/run.py" or "cd <path_to_foo>; python run.py"
This is useful for library modules used in apps that need to store
state, preferences, etc. for the specific app only, and not for all apps
which use that library module. If the library module uses
ETSConfig.application_home, they can store prefs for the app all in
one place and do not need to know the details of where each app might
reside.
Do not put anything in here that the user might want to navigate to
e.g. projects, user home files etc.
The actual location differs between operating systems.
"""
if self._application_home is None:
self._application_home = path.join(self.application_data,
self._get_application_dirname())
return self._application_home
def _set_application_home(self, application_home):
"""
Property setter.
"""
self._application_home = application_home
return
application_home = property(_get_application_home, _set_application_home)
def _get_company(self):
"""
Property getter.
"""
if self._company is None:
self._company = self._initialize_company()
return self._company
def _set_company(self, company):
"""
Property setter for the company name.
"""
self._company = company
return
company = property(_get_company, _set_company)
def _get_toolkit(self):
"""
Property getter for the GUI toolkit. The value returned is, in order
of preference: the value set by the application; the value passed on
the command line using the '-toolkit' option; the value specified by
the 'ETS_TOOLKIT' environment variable; otherwise the empty string.
"""
if self._toolkit is None:
self._toolkit = self._initialize_toolkit()
return self._toolkit
def _set_toolkit(self, toolkit):
"""
Property setter for the GUI toolkit. The toolkit can be set more than
once, but only if it is the same one each time. An application that is
written for a particular toolkit can explicitly set it before any other
module that gets the value is imported.
"""
if self._toolkit and self._toolkit != toolkit:
raise ValueError, "cannot set toolkit to %s because it has already been set to %s" % (toolkit, self._toolkit)
self._toolkit = toolkit
return
toolkit = property(_get_toolkit, _set_toolkit)
def _get_user_data(self):
"""
Property getter.
This is a directory that users can safely write user accessible data
to i.e. user-defined functions, edited functions, etc.
The actual location differs between operating systems.
"""
if self._user_data is None:
self._user_data = self._initialize_user_data()
return self._user_data
def _set_user_data(self, user_data):
"""
Property setter.
"""
self._user_data = user_data
return
user_data = property(_get_user_data, _set_user_data)
#### private methods #####################################################
# fixme: In future, these methods could allow the properties to be set
# via the (as yet non-existent) preference/configuration mechanism. This
# would allow configuration via (in order of precedence):-
#
# - a configuration file
# - environment variables
# - the command line
def _get_application_dirname(self):
"""
Return the name of the directory (not a path) that the "main"
Python script which started this process resides in, or "" if it could
not be determined or is not appropriate.
For example, if the script that started the current process was named
"run.py" in a directory named "foo", and was launched with "python
run.py", the name "foo" would be returned (this assumes the directory
name is the name of the app, which seems to be as good of an assumption
as any).
"""
dirname = ""
main_mod = sys.modules.get('__main__', None)
if main_mod is not None:
if hasattr(main_mod, '__file__'):
main_mod_file = path.abspath(main_mod.__file__)
dirname = path.basename(path.dirname(main_mod_file))
return dirname
def _initialize_application_data(self):
"""
Initializes the (default) application data directory.
"""
if sys.platform == 'win32':
environment_variable = 'APPDATA'
directory_name = self.company
else:
environment_variable = 'HOME'
directory_name = '.' + self.company.lower()
# Lookup the environment variable.
parent_directory = os.environ.get(environment_variable, None)
if parent_directory is None:
raise ValueError(
'Environment variable "%s" not set' % environment_variable
)
application_data = os.path.join(parent_directory, directory_name)
# If a file already exists with this name then make sure that it is
# a directory!
if os.path.exists(application_data):
if not os.path.isdir(application_data):
raise ValueError('File "%s" already exists' % application_data)
# Otherwise, create the directory.
else:
os.makedirs(application_data)
return application_data
def _initialize_company(self):
"""
Initializes the (default) company.
"""
return 'Enthought'
def _initialize_toolkit(self):
"""
Initializes the toolkit.
"""
# We handle the command line option even though it doesn't have the
# highest precedence because we always want to remove it from the
# command line.
if '-toolkit' in sys.argv:
opt_idx = sys.argv.index('-toolkit')
try:
opt_toolkit = sys.argv[opt_idx + 1]
except IndexError:
raise ValueError, "the -toolkit command line argument must be followed by a toolkit name"
# Remove the option.
del sys.argv[opt_idx:opt_idx + 1]
else:
opt_toolkit = None
if self._toolkit is not None:
toolkit = self._toolkit
elif opt_toolkit is not None:
toolkit = opt_toolkit
else:
toolkit = os.environ.get('ETS_TOOLKIT', '')
return toolkit
def _initialize_user_data(self):
"""
Initializes the (default) user data directory.
"""
# We check what the os.path.expanduser returns
parent_directory = os.path.expanduser('~')
directory_name = self.company
if sys.platform == 'win32':
# Check if the usr_dir is C:\\John Doe\\Documents and Settings.
# If yes, then we should modify the usr_dir to be 'My Documents'.
# If no, then the user must have modified the os.environ
# variables and the directory chosen is a desirable one.
desired_dir = os.path.join(parent_directory, 'My Documents')
if os.path.exists(desired_dir):
parent_directory = desired_dir
else:
directory_name = directory_name.lower()
# The final directory.
usr_dir = os.path.join(parent_directory, directory_name)
# If a file already exists with this name then make sure that it is
# a directory!
if os.path.exists(usr_dir):
if not os.path.isdir(usr_dir):
raise ValueError('File "%s" already exists' % usr_dir)
# Otherwise, create the directory.
else:
os.makedirs(usr_dir)
return usr_dir
# We very purposefully only have one object and do not export the class. We
# could have just made everything class methods, but that always seems a bit
# gorpy, especially with properties etc.
ETSConfig = ETSConfig()
#### EOF ######################################################################
|