/usr/share/pyshared/guidata/utils.py is in python-guidata 1.4.1-1.
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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | # -*- coding: utf-8 -*-
#
# Copyright © 2009-2010 CEA
# Pierre Raybaut
# Licensed under the terms of the CECILL License
# (see guidata/__init__.py for details)
# pylint: disable=C0103
"""
utils
-----
The ``guidata.utils`` module provides various utility helper functions
(pure python).
"""
import sys
import time
import subprocess
import os
import os.path as osp
#==============================================================================
# Misc.
#==============================================================================
def min_equals_max(min, max):
"""
Return True if minimium value equals maximum value
Return False if not, or if maximum or minimum value is not defined
"""
return min is not None and max is not None and min == max
def pairs(iterable):
"""A simple generator that takes a list and generates
pairs [ (l[0],l[1]), ..., (l[n-2], l[n-1])]
"""
iterator = iter(iterable)
first = iterator.next()
while True:
second = iterator.next()
yield (first, second)
first = second
def add_extension(item, value):
"""
Add extension to filename
`item`: data item representing a file path
`value`: possible value for data item
"""
value = unicode(value)
formats = item.get_prop("data", "formats")
if len(formats) == 1 and formats[0] != '*':
if not value.endswith('.' + formats[0]) and len(value) > 0:
return value + '.' + formats[0]
return value
def bind(fct, value):
"""
Returns a callable representing the function 'fct' with it's
first argument bound to the value
if g = bind(f,1) and f is a function of x,y,z
then g(y,z) will return f(1,y,z)
"""
def callback(*args, **kwargs):
return fct(value, *args, **kwargs)
return callback
def trace(fct):
"""A decorator that traces function entry/exit
used for debugging only
"""
from functools import wraps
@wraps(fct)
def wrapper(*args, **kwargs):
"""Tracing function entry/exit (debugging only)"""
print "enter:", fct.__name__
res = fct(*args, **kwargs)
print "leave:", fct.__name__
return res
return wrapper
#==============================================================================
# Strings
#==============================================================================
def utf8_to_unicode(string):
"""Convert UTF-8 string to Unicode"""
if not isinstance(string, basestring):
string = unicode(string)
if not isinstance(string, unicode):
try:
string = unicode(string, "utf-8")
except UnicodeDecodeError, error:
message = "String %r is not UTF-8 encoded"
raise UnicodeDecodeError(message % string, *error.args[1:])
return string
# Findout the encoding used for stdout or use ascii as default
STDOUT_ENCODING = "ascii"
if hasattr(sys.stdout, "encoding"):
if sys.stdout.encoding:
STDOUT_ENCODING = sys.stdout.encoding
def unicode_to_stdout(ustr):
"""convert a unicode string to a byte string encoded
for stdout output"""
return ustr.encode(STDOUT_ENCODING, "replace")
#==============================================================================
# Updating, restoring datasets
#==============================================================================
def update_dataset(dest, source, visible_only=False):
"""
Update `dest` dataset items from `source` dataset
dest should inherit from DataSet, whereas source can be any
Python object containing matching attribute names.
For each DataSet item, the function will try to get the attribute
of the same name from the source.
visible_only: if True, update only visible items
"""
for item in dest._items:
if hasattr(source, item._name):
try:
hide = item.get_prop_value("display", source, "hide", False)
except AttributeError:
#FIXME: Remove this try...except
hide = False
if visible_only and hide:
continue
setattr(dest, item._name, getattr(source, item._name))
def restore_dataset(source, dest):
"""
Restore `dest` dataset items from `source` dataset
This function is almost the same as update_dataset but requires
the source to be a DataSet instead of the destination.
"""
for item in source._items:
if hasattr(dest, item._name):
setattr(dest, item._name, getattr(source, item._name))
#==============================================================================
# Interface checking
#==============================================================================
def assert_interface_supported(klass, iface):
"""Makes sure a class supports an interface"""
for name, func in iface.__dict__.items():
if name == '__inherits__':
continue
if callable(func):
assert hasattr(klass, name), \
"Attribute %s missing from %r" % (name,klass)
imp_func = getattr(klass, name)
imp_code = imp_func.func_code
code = func.func_code
imp_nargs = imp_code.co_argcount
nargs = code.co_argcount
if imp_code.co_varnames[:imp_nargs] != code.co_varnames[:nargs]:
assert False, "Arguments of %s.%s differ from interface: "\
"%r!=%r" % (
klass.__name__, imp_func.func_name,
imp_func.func_code.co_varnames[:imp_nargs],
func.func_code.co_varnames[:nargs]
)
else:
pass # should check class attributes for consistency
def assert_interfaces_valid(klass):
"""Makes sure a class supports the interfaces
it declares"""
assert hasattr(klass, "__implements__"), \
"Class doesn't implements anything"
for iface in klass.__implements__:
assert_interface_supported(klass, iface)
if hasattr(iface, "__inherits__"):
base = iface.__inherits__()
assert issubclass(klass, base), \
"%s should be a subclass of %s" % (klass, base)
#==============================================================================
# Date, time, timer
#==============================================================================
def localtime_to_isodate(time_struct):
"""Convert local time to ISO date"""
s = time.strftime("%Y-%m-%d %H:%M:%S ", time_struct)
s += "%+05d" % time.timezone
return s
def isodate_to_localtime(datestr):
"""Convert ISO date to local time"""
return time.strptime(datestr[:16], "%Y-%m-%d %H:%M:%S")
class FormatTime(object):
"""Helper object that substitute as a string to
format seconds into (nn H mm min ss s)"""
def __init__(self, hours_fmt="%d H ", min_fmt="%d min ", sec_fmt="%d s"):
self.sec_fmt = sec_fmt
self.hours_fmt = hours_fmt
self.min_fmt = min_fmt
def __mod__(self, val):
val = val[0]
hours = val // 3600.
minutes = (val % 3600.) // 60
seconds = (val % 60.)
if hours:
return ((self.hours_fmt % hours) +
(self.min_fmt % minutes) +
(self.sec_fmt % seconds))
elif minutes:
return ((self.min_fmt % minutes) +
(self.sec_fmt % seconds))
else:
return (self.sec_fmt % seconds)
format_hms = FormatTime()
class Timer(object):
"""MATLAB-like timer: tic, toc"""
def __init__(self):
self.t0_dict = {}
def tic(self, cat):
"""Starting timer"""
print ">", cat
self.t0_dict[cat] = time.clock()
def toc(self, cat, msg="delta:"):
"""Stopping timer"""
print "<", cat, ":", msg, time.clock() - self.t0_dict[cat]
_TIMER = Timer()
tic = _TIMER.tic
toc = _TIMER.toc
#==============================================================================
# Module, scripts, programs
#==============================================================================
def get_module_path(modname):
"""Return module *modname* base path"""
module = sys.modules.get(modname, __import__(modname))
return osp.abspath(osp.dirname(module.__file__))
def is_program_installed(basename):
"""Return program absolute path if installed in PATH
Otherwise, return None"""
for path in os.environ["PATH"].split(os.pathsep):
abspath = osp.join(path, basename)
if osp.isfile(abspath):
return abspath
def run_program(name, args='', cwd=None, shell=True, wait=False):
"""Run program in a separate process"""
path = is_program_installed(name)
if not path:
raise RuntimeError("Program %s was not found" % name)
command = [path]
if args:
command.append(args)
if wait:
subprocess.call(" ".join(command), cwd=cwd, shell=shell)
else:
subprocess.Popen(" ".join(command), cwd=cwd, shell=shell)
def is_module_available(module_name):
"""Return True if Python module is available"""
try:
__import__(module_name)
return True
except ImportError:
return False
|