/usr/lib/python2.7/dist-packages/udevdiscover/utils.py is in udev-discover 0.2.2-1.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 | # -*- coding: utf-8 -*-
# vim: ts=4
###
#
# Copyright (c) 2010 J. Félix Ontañón
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation
#
# 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, see <http://www.gnu.org/licenses/>.
#
# Authors : J. Félix Ontañón <fontanon@emergya.es>
#
###
import exceptions
import types
from gi.repository import GConf
class GConfKeysDict(dict):
VALID_KEY_TYPES = (bool, str, int, float, list, tuple, set)
def __init__(self, *args, **kwargs):
super(dict, self).__init__(*args, **kwargs)
def __setitem__(self, key, val):
if not type(val) in self.VALID_KEY_TYPES:
raise GConfKeysDictError, 'Invalid %s for gconf key' % type(val)
else:
dict.__setitem__(self, key, val)
class GConfKeysDictError(exceptions.Exception):
pass
# Partially based on http://crysol.org/node/758
class GConfStore(object):
defaults = {}
def __init__(self, key):
if key.endswith('/'):
raise GConfStoreError, "Bad directory name %s: May not end with slash '/'" % key
return None
self.__app_key = key
self.__client = GConf.Client.get_default()
self.options = GConfKeysDict()
self.options.update(self.defaults)
def loadconf(self, only_defaults=False):
casts = {GConf.ValueType.BOOL: GConf.Value.get_bool,
GConf.ValueType.INT: GConf.Value.get_int,
GConf.ValueType.FLOAT: GConf.Value.get_float,
GConf.ValueType.STRING: GConf.Value.get_string}
# This will be disabled until get_list method is implemented
# GConf.ValueType.LIST: GConf.Value.get_list}
if only_defaults:
#FIXME: Why appears this message in stderr?
#GConf-WARNING **: haven't implemented getting a specific locale in GConfClient
key_iterator = [self.__client.get_entry(self.__app_key + '/' + key,
'', False) for key in self.defaults.keys()]
else:
key_iterator = self.__client.all_entries(self.__app_key)
for entry in key_iterator:
if entry is None:
continue
gval = self.__client.get(entry.key)
if gval == None: continue
if gval.type == GConf.ValueType.LIST:
string_list = [item.get_string() for item in gval.get_list()]
self.options[entry.key.split('/')[-1]] = string_list
else:
self.options[entry.key.split('/')[-1]] = casts[gval.type](gval)
def saveconf(self):
casts = {types.BooleanType: GConf.Client.set_bool,
types.IntType: GConf.Client.set_int,
types.FloatType: GConf.Client.set_float,
types.StringType: GConf.Client.set_string}
# This will be disabled until set_list method is implemented
"""
types.ListType: GConf.Client.set_list,
types.TupleType: GConf.Client.set_list,
set: GConf.Client.set_list}
"""
#TODO: To clear the gconf dir before save, is it convenient?
for name, value in self.options.items():
if type(value) in (list, tuple, set):
string_value = [str(item) for item in value]
casts[type(value)](self.__client, self.__app_key + '/' + name,
GConf.ValueType.STRING, string_value)
else:
casts[type(value)](self.__client, self.__app_key + '/' + name,
value)
class GConfStoreError(exceptions.Exception):
pass
class memoized(object):
"""Decorator that caches a function's return value each time it is called.
If called later with the same arguments, the cached value is returned, and
not re-evaluated.
"""
def __init__(self, func):
self.func = func
self.cache = {}
def __call__(self, *args):
try:
return self.cache[args]
except KeyError:
value = self.func(*args)
self.cache[args] = value
return value
except TypeError:
# uncachable -- for instance, passing a list as an argument.
# Better to not cache than to blow up entirely.
return self.func(*args)
def __repr__(self):
"""Return the function's docstring."""
return self.func.__doc__
def __get__(self, obj, objtype):
"""Support instance methods."""
return functools.partial(self.__call__, obj)
import logging
class TextBufferHandler(logging.StreamHandler):
def __init__(self, textbuffer):
logging.StreamHandler.__init__(self)
self.textbuffer = textbuffer
def emit(self, record):
logging.StreamHandler.emit(self, record)
self.textbuffer.insert(self.textbuffer.get_end_iter(),
self.formatter.format(record)+'\n')
self.textbuffer.place_cursor(self.textbuffer.get_end_iter())
|