2009-08-07 09:21:37 +00:00
|
|
|
#!/usr/bin/python
|
2009-08-09 23:10:08 +00:00
|
|
|
# Terminator.util - misc utility functions
|
2010-01-04 23:56:28 +00:00
|
|
|
# Copyright (C) 2006-2010 cmsj@tenshu.net
|
2009-08-07 09:21:37 +00:00
|
|
|
#
|
|
|
|
# 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
|
2010-01-14 23:48:15 +00:00
|
|
|
"""Terminator.util - misc utility functions
|
|
|
|
|
|
|
|
>>> a = {'foo': 'bar', 'baz': 'bjonk'}
|
|
|
|
>>> b = {'foo': 'far', 'baz': 'bjonk'}
|
|
|
|
>>> dict_diff(a, b)
|
|
|
|
{'foo': 'far'}
|
|
|
|
|
|
|
|
"""
|
2009-08-07 09:21:37 +00:00
|
|
|
|
|
|
|
import sys
|
2009-09-04 23:34:09 +00:00
|
|
|
import gtk
|
2009-09-06 21:54:52 +00:00
|
|
|
import os
|
|
|
|
import pwd
|
2010-01-14 13:15:05 +00:00
|
|
|
import inspect
|
2009-08-07 09:21:37 +00:00
|
|
|
|
|
|
|
# set this to true to enable debugging output
|
2010-01-11 10:10:19 +00:00
|
|
|
DEBUG = False
|
2010-01-14 13:15:05 +00:00
|
|
|
# set this to true to additionally list filenames in debugging
|
|
|
|
DEBUGFILES = False
|
2010-02-17 20:15:33 +00:00
|
|
|
# list of classes to show debugging for. empty list means show all classes
|
|
|
|
DEBUGCLASSES = []
|
|
|
|
# list of methods to show debugging for. empty list means show all methods
|
|
|
|
DEBUGMETHODS = []
|
2009-08-07 09:21:37 +00:00
|
|
|
|
2009-08-18 11:52:06 +00:00
|
|
|
def dbg(log = ""):
|
2009-08-09 23:10:08 +00:00
|
|
|
"""Print a message if debugging is enabled"""
|
|
|
|
if DEBUG:
|
2010-01-14 13:15:05 +00:00
|
|
|
stackitem = inspect.stack()[1]
|
|
|
|
parent_frame = stackitem[0]
|
|
|
|
method = parent_frame.f_code.co_name
|
|
|
|
names, varargs, keywords, local_vars = inspect.getargvalues(parent_frame)
|
|
|
|
try:
|
|
|
|
self_name = names[0]
|
|
|
|
classname = local_vars[self_name].__class__.__name__
|
|
|
|
except IndexError:
|
|
|
|
classname = "noclass"
|
|
|
|
if DEBUGFILES:
|
|
|
|
line = stackitem[2]
|
|
|
|
filename = parent_frame.f_code.co_filename
|
|
|
|
extra = " (%s:%s)" % (filename, line)
|
|
|
|
else:
|
|
|
|
extra = ""
|
2010-02-17 20:15:33 +00:00
|
|
|
if DEBUGCLASSES != [] and classname not in DEBUGCLASSES:
|
|
|
|
return
|
|
|
|
if DEBUGMETHODS != [] and method not in DEBUGMETHODS:
|
|
|
|
return
|
2010-01-14 13:15:05 +00:00
|
|
|
print >> sys.stderr, "%s::%s: %s%s" % (classname, method, log, extra)
|
2009-08-07 09:21:37 +00:00
|
|
|
|
2009-08-18 11:52:06 +00:00
|
|
|
def err(log = ""):
|
2009-08-09 23:10:08 +00:00
|
|
|
"""Print an error message"""
|
|
|
|
print >> sys.stderr, log
|
2009-08-18 11:52:06 +00:00
|
|
|
|
|
|
|
def gerr(message = None):
|
|
|
|
"""Display a graphical error. This should only be used for serious
|
|
|
|
errors as it will halt execution"""
|
|
|
|
|
|
|
|
dialog = gtk.MessageDialog(None, gtk.DIALOG_MODAL,
|
|
|
|
gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, message)
|
|
|
|
dialog.run()
|
|
|
|
|
2009-09-06 21:54:52 +00:00
|
|
|
def has_ancestor(widget, wtype):
|
2009-09-04 23:34:09 +00:00
|
|
|
"""Walk up the family tree of widget to see if any ancestors are of type"""
|
|
|
|
while widget:
|
|
|
|
widget = widget.get_parent()
|
2009-09-06 21:54:52 +00:00
|
|
|
if isinstance(widget, wtype):
|
2009-09-04 23:34:09 +00:00
|
|
|
return(True)
|
|
|
|
return(False)
|
|
|
|
|
2009-11-20 22:52:39 +00:00
|
|
|
def get_top_window(widget):
|
|
|
|
"""Return the Window instance a widget belongs to"""
|
|
|
|
parent = widget.get_parent()
|
|
|
|
while parent:
|
|
|
|
widget = parent
|
|
|
|
parent = widget.get_parent()
|
|
|
|
return(widget)
|
|
|
|
|
2009-09-06 21:54:52 +00:00
|
|
|
def path_lookup(command):
|
|
|
|
'''Find a command in our path'''
|
|
|
|
if os.path.isabs(command):
|
|
|
|
if os.path.isfile(command):
|
|
|
|
return(command)
|
|
|
|
else:
|
|
|
|
return(None)
|
|
|
|
elif command[:2] == './' and os.path.isfile(command):
|
|
|
|
dbg('path_lookup: Relative filename %s found in cwd' % command)
|
|
|
|
return(command)
|
|
|
|
|
|
|
|
try:
|
|
|
|
paths = os.environ['PATH'].split(':')
|
|
|
|
if len(paths[0]) == 0:
|
|
|
|
raise(ValueError)
|
|
|
|
except (ValueError, NameError):
|
|
|
|
dbg('path_lookup: PATH not set in environment, using fallbacks')
|
|
|
|
paths = ['/usr/local/bin', '/usr/bin', '/bin']
|
|
|
|
|
2010-01-18 22:56:43 +00:00
|
|
|
dbg('path_lookup: Using %d paths: %s' % (len(paths), paths))
|
2009-09-06 21:54:52 +00:00
|
|
|
|
|
|
|
for path in paths:
|
|
|
|
target = os.path.join(path, command)
|
|
|
|
if os.path.isfile(target):
|
|
|
|
dbg('path_lookup: found %s' % target)
|
|
|
|
return(target)
|
|
|
|
|
|
|
|
dbg('path_lookup: Unable to locate %s' % command)
|
|
|
|
|
|
|
|
def shell_lookup():
|
|
|
|
"""Find an appropriate shell for the user"""
|
|
|
|
shells = [os.getenv('SHELL'), pwd.getpwuid(os.getuid())[6], 'bash',
|
|
|
|
'zsh', 'tcsh', 'ksh', 'csh', 'sh']
|
|
|
|
|
|
|
|
for shell in shells:
|
|
|
|
if shell is None:
|
|
|
|
continue
|
|
|
|
elif os.path.isfile(shell):
|
|
|
|
return(shell)
|
|
|
|
else:
|
|
|
|
rshell = path_lookup(shell)
|
|
|
|
if rshell is not None:
|
|
|
|
dbg('shell_lookup: Found %s at %s' % (shell, rshell))
|
|
|
|
return(rshell)
|
|
|
|
dbg('shell_lookup: Unable to locate a shell')
|
|
|
|
|
2009-10-27 21:03:11 +00:00
|
|
|
def widget_pixbuf(widget, maxsize=None):
|
|
|
|
"""Generate a pixbuf of a widget"""
|
2010-02-04 01:00:35 +00:00
|
|
|
if gtk.gtk_version < (2, 14):
|
2010-01-21 13:23:39 +00:00
|
|
|
return(None)
|
|
|
|
|
2009-10-27 21:03:11 +00:00
|
|
|
pixmap = widget.get_snapshot()
|
|
|
|
(width, height) = pixmap.get_size()
|
|
|
|
pixbuf = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, False, 8, width, height)
|
|
|
|
pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, width,
|
|
|
|
height)
|
|
|
|
|
|
|
|
longest = max(width, height)
|
|
|
|
|
|
|
|
if maxsize is not None:
|
|
|
|
factor = float(maxsize) / float(longest)
|
|
|
|
|
|
|
|
if not maxsize or (width * factor) > width or (height * factor) > height:
|
|
|
|
factor = 1
|
|
|
|
|
|
|
|
scaledpixbuf = pixbuf.scale_simple(int(width * factor), int(height * factor), gtk.gdk.INTERP_BILINEAR)
|
|
|
|
|
|
|
|
return(scaledpixbuf)
|
|
|
|
|
2009-12-24 21:35:07 +00:00
|
|
|
def get_config_dir():
|
|
|
|
"""Expand all the messy nonsense for finding where ~/.config/terminator
|
|
|
|
really is"""
|
|
|
|
try:
|
|
|
|
configdir = os.environ['XDG_CONFIG_HOME']
|
|
|
|
except KeyError:
|
|
|
|
configdir = os.path.join(os.path.expanduser('~'), '.config')
|
|
|
|
|
|
|
|
return(os.path.join(configdir, 'terminator'))
|
|
|
|
|
2009-12-26 01:19:42 +00:00
|
|
|
def dict_diff(reference, working):
|
|
|
|
"""Examine the values in the supplied working set and return a new dict
|
|
|
|
that only contains those values which are different from those in the
|
|
|
|
reference dictionary"""
|
|
|
|
|
|
|
|
result = {}
|
|
|
|
|
|
|
|
for key in reference:
|
|
|
|
if reference[key] != working[key]:
|
|
|
|
result[key] = working[key]
|
|
|
|
|
|
|
|
return(result)
|
2010-01-20 00:54:35 +00:00
|
|
|
|
|
|
|
# Helper functions for directional navigation
|
|
|
|
def get_edge(allocation, direction):
|
|
|
|
"""Return the edge of the supplied allocation that we will care about for
|
|
|
|
directional navigation"""
|
|
|
|
if direction == 'left':
|
|
|
|
edge = allocation.x
|
|
|
|
elif direction == 'up':
|
|
|
|
edge = allocation.y
|
|
|
|
elif direction == 'right':
|
|
|
|
edge = allocation.x + allocation.width
|
|
|
|
elif direction == 'down':
|
|
|
|
edge = allocation.y + allocation.height
|
|
|
|
else:
|
|
|
|
raise ValueError('unknown direction %s' % direction)
|
|
|
|
|
|
|
|
return(edge)
|
|
|
|
|
|
|
|
def get_nav_possible(edge, allocation, direction):
|
|
|
|
"""Check if the supplied allocation is in the right direction of the
|
|
|
|
supplied edge"""
|
|
|
|
if direction == 'left':
|
|
|
|
return((allocation.x + allocation.width) < edge)
|
|
|
|
elif direction == 'right':
|
|
|
|
return(allocation.x > edge)
|
|
|
|
elif direction == 'up':
|
|
|
|
return((allocation.y + allocation.height) < edge)
|
|
|
|
elif direction == 'down':
|
|
|
|
return(allocation.y > edge)
|
|
|
|
else:
|
|
|
|
raise ValueError('Unknown direction: %s' % direction)
|
|
|
|
|
2010-01-20 13:04:14 +00:00
|
|
|
def get_nav_offset(edge, allocation, direction):
|
|
|
|
"""Work out how far edge is from a particular point on the allocation
|
|
|
|
rectangle, in the given direction"""
|
|
|
|
if direction == 'left':
|
|
|
|
return(edge - (allocation.x + allocation.width))
|
|
|
|
elif direction == 'right':
|
|
|
|
return(edge + allocation.x)
|
|
|
|
elif direction == 'up':
|
|
|
|
return(edge - (allocation.y - allocation.height))
|
|
|
|
elif direction == 'down':
|
|
|
|
return(edge + allocation.y)
|
|
|
|
else:
|
|
|
|
raise ValueError('Unknown direction: %s' % direction)
|
|
|
|
|
|
|
|
def get_nav_tiebreak(direction, cursor_x, cursor_y, rect):
|
|
|
|
"""We have multiple candidate terminals. Pick the closest by cursor
|
|
|
|
position"""
|
|
|
|
if direction in ['left', 'right']:
|
|
|
|
return(cursor_y >= rect.y and cursor_y <= (rect.y + rect.height))
|
|
|
|
elif direction in ['up', 'down']:
|
|
|
|
return(cursor_x >= rect.x and cursor_x <= (rect.x + rect.width))
|
|
|
|
else:
|
|
|
|
raise ValueError('Unknown direction: %s' % direction)
|
|
|
|
|
2010-01-28 13:41:44 +00:00
|
|
|
def enumerate_descendants(parent):
|
|
|
|
"""Walk all our children and build up a list of containers and
|
|
|
|
terminals"""
|
|
|
|
# FIXME: Does having to import this here mean we should move this function
|
|
|
|
# back to Container?
|
|
|
|
from factory import Factory
|
|
|
|
|
|
|
|
containerstmp = []
|
|
|
|
containers = []
|
|
|
|
terminals = []
|
|
|
|
maker = Factory()
|
|
|
|
|
|
|
|
if parent is None:
|
|
|
|
err('no parent widget specified')
|
|
|
|
return
|
|
|
|
|
|
|
|
for descendant in parent.get_children():
|
|
|
|
if maker.isinstance(descendant, 'Container'):
|
|
|
|
containerstmp.append(descendant)
|
|
|
|
elif maker.isinstance(descendant, 'Terminal'):
|
|
|
|
terminals.append(descendant)
|
|
|
|
|
|
|
|
while len(containerstmp) > 0:
|
|
|
|
child = containerstmp.pop()
|
|
|
|
for descendant in child.get_children():
|
|
|
|
if maker.isinstance(descendant, 'Container'):
|
|
|
|
containerstmp.append(descendant)
|
|
|
|
elif maker.isinstance(descendant, 'Terminal'):
|
|
|
|
terminals.append(descendant)
|
|
|
|
containers.append(child)
|
|
|
|
|
|
|
|
dbg('%d containers and %d terminals fall beneath %s' % (len(containers),
|
|
|
|
len(terminals), parent))
|
|
|
|
return(containers, terminals)
|
|
|
|
|