2008-03-08 00:04:41 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# TerminatorConfig - layered config classes
|
|
|
|
# Copyright (C) 2006-2008 cmsj@tenshu.net
|
|
|
|
#
|
|
|
|
# This program 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, version 2 only.
|
|
|
|
#
|
|
|
|
# This program 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 this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
"""TerminatorConfig by Chris Jones <cmsj@tenshu.net>
|
|
|
|
|
|
|
|
The config scheme works in layers, with defaults at the base,
|
|
|
|
and a simple/flexible class which can be placed over the top
|
|
|
|
in multiple layers. This was written for Terminator, but
|
|
|
|
could be used generically. Its original use is to guarantee
|
|
|
|
default values for any config item, while allowing them to be
|
|
|
|
overridden by at least two other stores of configuration values.
|
|
|
|
Those being gconf and a plain config file.
|
|
|
|
In addition to the value, the default layer must also provide
|
|
|
|
the datatype (str, int, float and bool are currently supported).
|
|
|
|
values are found as attributes of the TerminatorConfig object.
|
|
|
|
Trying to read a value that doesn't exist will raise an
|
|
|
|
AttributeError. This is by design. If you want to look something
|
|
|
|
up, set a default for it first."""
|
|
|
|
|
|
|
|
# import standard python libs
|
2008-05-23 10:42:04 +00:00
|
|
|
import os, sys, re
|
2008-03-08 00:04:41 +00:00
|
|
|
|
|
|
|
# import unix-lib
|
|
|
|
import pwd
|
|
|
|
|
|
|
|
# set this to true to enable debugging output
|
|
|
|
debug = True
|
|
|
|
|
|
|
|
def dbg (log = ""):
|
|
|
|
if debug:
|
|
|
|
print >> sys.stderr, log
|
|
|
|
|
|
|
|
class TerminatorConfig:
|
|
|
|
callback = None
|
|
|
|
sources = []
|
|
|
|
|
|
|
|
def __init__ (self, sources = []):
|
|
|
|
for source in sources:
|
|
|
|
if isinstance(source, TerminatorConfValuestore):
|
|
|
|
self.sources.append (source)
|
|
|
|
|
|
|
|
# We always add a default valuestore last so no valid config item ever goes unset
|
|
|
|
source = TerminatorConfValuestoreDefault ()
|
|
|
|
self.sources.append (source)
|
|
|
|
|
|
|
|
def __getattr__ (self, keyname):
|
|
|
|
for source in self.sources:
|
2008-05-23 10:31:05 +00:00
|
|
|
dbg ("TConfig: Looking for: '%s' in '%s'"%(keyname, source.type))
|
2008-03-08 00:04:41 +00:00
|
|
|
try:
|
|
|
|
val = getattr (source, keyname)
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (" TConfig: got: '%s' from a '%s'"%(val, source.type))
|
2008-03-08 00:04:41 +00:00
|
|
|
return (val)
|
|
|
|
except:
|
|
|
|
pass
|
2008-04-07 21:46:26 +00:00
|
|
|
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (" TConfig: Out of sources")
|
2008-03-08 00:04:41 +00:00
|
|
|
raise (AttributeError)
|
|
|
|
|
|
|
|
class TerminatorConfValuestore:
|
|
|
|
type = "Base"
|
|
|
|
values = {}
|
2008-03-08 01:38:42 +00:00
|
|
|
reconfigure_callback = None
|
|
|
|
|
2008-03-08 00:04:41 +00:00
|
|
|
# Our settings
|
|
|
|
defaults = {
|
2008-04-09 21:14:23 +00:00
|
|
|
'gt_dir' : '/apps/gnome-terminal',
|
|
|
|
'profile_dir' : '/apps/gnome-terminal/profiles',
|
|
|
|
'titlebars' : True,
|
|
|
|
'titletips' : False,
|
2008-05-23 12:46:10 +00:00
|
|
|
'allow_bold' : True,
|
2008-04-09 21:14:23 +00:00
|
|
|
'silent_bell' : True,
|
|
|
|
'background_color' : '#000000',
|
|
|
|
'background_darkness' : 0.5,
|
|
|
|
'background_type' : 'solid',
|
2008-05-23 16:24:36 +00:00
|
|
|
'background_image' : '',
|
2008-04-09 21:14:23 +00:00
|
|
|
'backspace_binding' : 'ascii-del',
|
|
|
|
'delete_binding' : 'delete-sequence',
|
|
|
|
'cursor_blink' : False,
|
|
|
|
'emulation' : 'xterm',
|
|
|
|
'font' : 'Serif 10',
|
|
|
|
'foreground_color' : '#AAAAAA',
|
|
|
|
'scrollbar_position' : "right",
|
|
|
|
'scroll_background' : True,
|
|
|
|
'scroll_on_keystroke' : False,
|
|
|
|
'scroll_on_output' : False,
|
|
|
|
'scrollback_lines' : 100,
|
|
|
|
'focus' : 'sloppy',
|
|
|
|
'exit_action' : 'close',
|
|
|
|
'palette' : '#000000000000:#CDCD00000000:#0000CDCD0000:#CDCDCDCD0000:#30BF30BFA38E:#A53C212FA53C:#0000CDCDCDCD:#FAFAEBEBD7D7:#404040404040:#FFFF00000000:#0000FFFF0000:#FFFFFFFF0000:#00000000FFFF:#FFFF0000FFFF:#0000FFFFFFFF:#FFFFFFFFFFFF',
|
|
|
|
'word_chars' : '-A-Za-z0-9,./?%&#:_',
|
|
|
|
'mouse_autohide' : True,
|
|
|
|
'update_records' : True,
|
|
|
|
'login_shell' : False,
|
|
|
|
'use_custom_command' : False,
|
|
|
|
'custom_command' : '',
|
|
|
|
'use_system_font' : True,
|
|
|
|
'use_theme_colors' : True,
|
2008-04-09 23:22:20 +00:00
|
|
|
'http_proxy' : '',
|
2008-04-09 21:14:23 +00:00
|
|
|
'ignore_hosts' : ['localhost','127.0.0.0/8','*.local'],
|
2008-05-15 06:41:00 +00:00
|
|
|
'encoding' : 'UTF-8',
|
2008-05-15 16:19:20 +00:00
|
|
|
'active_encodings' : ['UTF-8', 'ISO-8859-1'],
|
2008-05-23 19:39:26 +00:00
|
|
|
'background_image' : '',
|
2008-05-25 11:37:33 +00:00
|
|
|
'extreme_tabs' : False,
|
2008-05-28 08:20:47 +00:00
|
|
|
'fullscreen' : False,
|
|
|
|
'borderless' : False,
|
|
|
|
'maximise' : False,
|
2008-05-28 15:39:27 +00:00
|
|
|
'handle_size' : -1,
|
2008-03-08 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def __getattr__ (self, keyname):
|
|
|
|
if self.values.has_key (keyname):
|
2008-05-23 10:31:05 +00:00
|
|
|
dbg ("Returning '%s'"%keyname)
|
2008-04-09 21:14:23 +00:00
|
|
|
return self.values[keyname]
|
2008-03-08 00:04:41 +00:00
|
|
|
else:
|
2008-05-23 10:31:05 +00:00
|
|
|
dbg ("Failed to find '%s'"%keyname)
|
2008-03-08 00:04:41 +00:00
|
|
|
raise (AttributeError)
|
|
|
|
|
|
|
|
class TerminatorConfValuestoreDefault (TerminatorConfValuestore):
|
|
|
|
def __init__ (self):
|
|
|
|
self.type = "Default"
|
|
|
|
self.values = self.defaults
|
|
|
|
|
|
|
|
class TerminatorConfValuestoreRC (TerminatorConfValuestore):
|
|
|
|
rcfilename = ""
|
2008-05-23 10:42:04 +00:00
|
|
|
splitter = re.compile("\s*=\s*")
|
2008-03-08 00:04:41 +00:00
|
|
|
#FIXME: use inotify to watch the rc, split __init__ into a parsing function
|
|
|
|
# that can be re-used when rc changes.
|
|
|
|
def __init__ (self):
|
|
|
|
self.type = "RCFile"
|
2008-04-16 20:51:14 +00:00
|
|
|
self.rcfilename = os.path.join(os.path.expanduser("~"), ".terminatorrc")
|
2008-03-08 00:04:41 +00:00
|
|
|
if os.path.exists (self.rcfilename):
|
|
|
|
rcfile = open (self.rcfilename)
|
|
|
|
rc = rcfile.readlines ()
|
|
|
|
rcfile.close ()
|
|
|
|
|
|
|
|
for item in rc:
|
|
|
|
try:
|
|
|
|
item = item.strip ()
|
|
|
|
if item and item[0] != '#':
|
2008-05-23 10:42:04 +00:00
|
|
|
(key, value) = self.splitter.split (item)
|
2008-05-23 12:28:56 +00:00
|
|
|
|
|
|
|
# Check if this is actually a key we care about
|
|
|
|
if not self.defaults.has_key (key):
|
|
|
|
raise AttributeError;
|
|
|
|
|
|
|
|
deftype = self.defaults[key].__class__.__name__
|
|
|
|
if deftype == 'bool':
|
|
|
|
if value.lower () == 'true':
|
|
|
|
self.values[key] = True
|
|
|
|
elif value.lower () == 'false':
|
|
|
|
self.values[key] = False
|
|
|
|
else:
|
|
|
|
raise AttributeError
|
|
|
|
elif deftype == 'int':
|
|
|
|
self.values[key] = int (value)
|
|
|
|
elif deftype == 'float':
|
|
|
|
self.values[key] = float (value)
|
|
|
|
elif deftype == 'list':
|
|
|
|
print >> sys.stderr, _("Reading list values from .terminatorrc is not currently supported")
|
|
|
|
raise ValueError
|
2008-05-23 10:31:05 +00:00
|
|
|
else:
|
|
|
|
self.values[key] = value
|
2008-05-23 12:28:56 +00:00
|
|
|
|
2008-05-23 10:35:03 +00:00
|
|
|
dbg (" VS_RCFile: Set value '%s' to '%s'"%(key, self.values[key]))
|
2008-05-23 10:42:04 +00:00
|
|
|
except Exception, e:
|
|
|
|
dbg (" VS_RCFile: %s Exception handling: %s" % (type(e), item))
|
2008-03-08 00:04:41 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
class TerminatorConfValuestoreGConf (TerminatorConfValuestore):
|
|
|
|
profile = ""
|
|
|
|
client = None
|
2008-04-11 12:09:34 +00:00
|
|
|
cache = {}
|
2008-03-08 00:04:41 +00:00
|
|
|
|
|
|
|
def __init__ (self, profile = None):
|
|
|
|
self.type = "GConf"
|
|
|
|
|
2008-04-02 21:10:32 +00:00
|
|
|
import gconf
|
|
|
|
|
2008-03-08 00:04:41 +00:00
|
|
|
self.client = gconf.client_get_default ()
|
|
|
|
|
|
|
|
# Grab a couple of values from base class to avoid recursing with our __getattr__
|
2008-04-09 21:14:23 +00:00
|
|
|
self._gt_dir = self.defaults['gt_dir']
|
|
|
|
self._profile_dir = self.defaults['profile_dir']
|
2008-03-08 00:04:41 +00:00
|
|
|
|
2008-03-08 01:38:42 +00:00
|
|
|
if not profile:
|
|
|
|
profile = self.client.get_string (self._gt_dir + '/global/default_profile')
|
|
|
|
profiles = self.client.get_list (self._gt_dir + '/global/profile_list','string')
|
|
|
|
|
2008-05-15 16:03:57 +00:00
|
|
|
#set up the active encoding list
|
|
|
|
self.active_encodings = self.client.get_list (self._gt_dir + '/global/active_encodings', 'string')
|
|
|
|
|
2008-05-20 23:37:04 +00:00
|
|
|
#need to handle the list of Gconf.value
|
2008-03-08 01:38:42 +00:00
|
|
|
if profile in profiles:
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (" VSGConf: Found profile '%s' in profile_list"%profile)
|
2008-03-08 01:38:42 +00:00
|
|
|
self.profile = '%s/%s'%(self._profile_dir, profile)
|
|
|
|
elif "Default" in profiles:
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (" VSGConf: profile '%s' not found, but 'Default' exists"%profile)
|
2008-03-08 01:38:42 +00:00
|
|
|
self.profile = '%s/%s'%(self._profile_dir, "Default")
|
2008-03-08 00:04:41 +00:00
|
|
|
else:
|
2008-03-08 01:38:42 +00:00
|
|
|
# We're a bit stuck, there is no profile in the list
|
|
|
|
# FIXME: Find a better way to handle this than setting a non-profile
|
|
|
|
dbg ("No profile found, deleting __getattr__")
|
|
|
|
del (self.__getattr__)
|
|
|
|
|
|
|
|
self.client.add_dir (self.profile, gconf.CLIENT_PRELOAD_RECURSIVE)
|
|
|
|
if self.on_gconf_notify:
|
|
|
|
self.client.notify_add (self.profile, self.on_gconf_notify)
|
|
|
|
|
|
|
|
self.client.add_dir ('/apps/metacity/general', gconf.CLIENT_PRELOAD_RECURSIVE)
|
|
|
|
self.client.notify_add ('/apps/metacity/general/focus_mode', self.on_gconf_notify)
|
2008-04-07 23:12:22 +00:00
|
|
|
self.client.add_dir ('/desktop/gnome/interface', gconf.CLIENT_PRELOAD_RECURSIVE)
|
|
|
|
self.client.notify_add ('/desktop/gnome/interface/monospace_font_name', self.on_gconf_notify)
|
2008-04-02 21:10:32 +00:00
|
|
|
# FIXME: Do we need to watch more non-profile stuff here?
|
|
|
|
|
|
|
|
def set_reconfigure_callback (self, function):
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (" VSConf: setting callback to: %s"%function)
|
2008-04-02 21:10:32 +00:00
|
|
|
self.reconfigure_callback = function
|
|
|
|
return (True)
|
2008-03-08 01:38:42 +00:00
|
|
|
|
|
|
|
def on_gconf_notify (self, client, cnxn_id, entry, what):
|
2008-04-11 12:09:34 +00:00
|
|
|
dbg (" VSGConf: invalidating cache")
|
|
|
|
self.cache = {}
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (" VSGConf: gconf changed, callback is: %s"%self.reconfigure_callback)
|
2008-03-08 01:38:42 +00:00
|
|
|
if self.reconfigure_callback:
|
|
|
|
self.reconfigure_callback ()
|
2008-03-08 00:04:41 +00:00
|
|
|
|
2008-03-08 01:38:42 +00:00
|
|
|
def __getattr__ (self, key = ""):
|
2008-04-11 12:09:34 +00:00
|
|
|
if self.cache.has_key (key):
|
|
|
|
dbg (" VSGConf: returning cached value: %s"%self.cache[key])
|
|
|
|
return (self.cache[key])
|
|
|
|
|
2008-03-08 00:04:41 +00:00
|
|
|
ret = None
|
2008-04-07 20:49:10 +00:00
|
|
|
value = None
|
2008-03-08 00:04:41 +00:00
|
|
|
|
2008-04-07 20:49:10 +00:00
|
|
|
dbg (' VSGConf: preparing: %s/%s'%(self.profile, key))
|
2008-05-20 23:37:04 +00:00
|
|
|
|
2008-04-07 22:26:51 +00:00
|
|
|
# FIXME: Ugly special cases we should look to fix in some other way.
|
2008-04-07 22:28:11 +00:00
|
|
|
if key == 'font' and self.use_system_font:
|
2008-04-07 22:26:51 +00:00
|
|
|
value = self.client.get ('/desktop/gnome/interface/monospace_font_name')
|
|
|
|
elif key == 'focus':
|
|
|
|
value = self.client.get ('/apps/metacity/general/focus_mode')
|
2008-04-09 23:22:20 +00:00
|
|
|
elif key == 'http_proxy':
|
|
|
|
if self.client.get_bool ('/system/http_proxy/use_http_proxy'):
|
|
|
|
dbg ('HACK: Mangling http_proxy')
|
|
|
|
|
|
|
|
if self.client.get_bool ('use_authentication'):
|
|
|
|
dbg ('HACK: Using proxy authentication')
|
|
|
|
value = 'http://%s:%s@%s:%s/'%(
|
|
|
|
self.client.get_string ('/system/http_proxy/authentication_user'),
|
|
|
|
self.client.get_string ('/system/http_proxy/authentication_password'),
|
|
|
|
self.client.get_string ('/system/http_proxy/host'),
|
|
|
|
self.client.get_int ('/system/http_proxy/port'))
|
|
|
|
else:
|
|
|
|
dbg ('HACK: Not using proxy authentication')
|
|
|
|
value = 'http://%s:%s/'%(
|
|
|
|
self.client.get_string ('/system/http_proxy/host'),
|
|
|
|
self.client.get_int ('/system/http_proxy/port'))
|
2008-04-02 21:10:32 +00:00
|
|
|
else:
|
|
|
|
value = self.client.get ('%s/%s'%(self.profile, key))
|
2008-04-07 20:49:10 +00:00
|
|
|
|
2008-03-08 00:04:41 +00:00
|
|
|
if value:
|
2008-04-09 21:14:23 +00:00
|
|
|
funcname = "get_" + self.defaults[key].__class__.__name__
|
2008-04-09 23:22:20 +00:00
|
|
|
dbg (' GConf: picked function: %s'%funcname)
|
2008-03-08 00:04:41 +00:00
|
|
|
# Special case for str
|
|
|
|
if funcname == "get_str":
|
|
|
|
funcname = "get_string"
|
2008-04-09 21:14:23 +00:00
|
|
|
# Special case for strlist
|
|
|
|
if funcname == "get_strlist":
|
|
|
|
funcname = "get_list"
|
2008-03-08 00:04:41 +00:00
|
|
|
typefunc = getattr (value, funcname)
|
|
|
|
ret = typefunc ()
|
|
|
|
|
2008-04-11 12:09:34 +00:00
|
|
|
self.cache[key] = ret
|
2008-03-08 00:04:41 +00:00
|
|
|
return (ret)
|
|
|
|
else:
|
|
|
|
raise (AttributeError)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
stores = []
|
|
|
|
stores.append (TerminatorConfValuestoreRC ())
|
|
|
|
|
|
|
|
try:
|
|
|
|
import gconf
|
|
|
|
stores.append (TerminatorConfValuestoreGConf ())
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
foo = TerminatorConfig (stores)
|
|
|
|
|
|
|
|
## cmsj: this is my testing ground
|
|
|
|
## ensure that font is set in the Default gconf profile
|
|
|
|
## set titlebars in the RC file
|
|
|
|
## remove titletips from gconf/RC
|
|
|
|
## do not define blimnle in any way
|
|
|
|
|
|
|
|
# This should come from gconf (it's set by gnome-terminal)
|
|
|
|
print foo.font
|
|
|
|
|
|
|
|
# This should come from RC
|
|
|
|
print foo.titlebars
|
|
|
|
|
|
|
|
# This should come from defaults
|
|
|
|
print foo.titletips
|
|
|
|
|
|
|
|
# This should raise AttributeError
|
2008-04-09 21:14:23 +00:00
|
|
|
#print foo.blimnle
|
|
|
|
|
2008-04-09 23:22:20 +00:00
|
|
|
# http_proxy is a value that is allowed to not exist
|
|
|
|
print "final proxy: %s"%foo.http_proxy
|