/usr/share/pyshared/pyatspi/utils.py is in python-pyatspi 2.10.0+dfsg-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 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 | #Copyright (C) 2008 Codethink Ltd
#copyright: Copyright (c) 2005, 2007 IBM Corporation
#This library is free software; you can redistribute it and/or
#modify it under the terms of the GNU Lesser General Public
#License version 2 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 Lesser 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.
#Portions of this code originally licensed and copyright (c) 2005, 2007
#IBM Corporation under the BSD license, available at
#U{http://www.opensource.org/licenses/bsd-license.php}
#authors: Peter Parente, Mark Doffman
import pyatspi.Accessibility
from pyatspi.deviceevent import allModifiers
import pyatspi.state as state
import pyatspi.registry as registry
#from deviceevent import *
__all__ = [
"setCacheLevel",
"getCacheLevel",
"clearCache",
"printCache",
"getInterfaceIID",
"getInterfaceName",
"listInterfaces",
"stringToConst",
"stateToString",
"relationToString",
"allModifiers",
"findDescendant",
"findAllDescendants",
"findAncestor",
"getPath",
"pointToList",
"rectToList",
"attributeListToHash",
"hashToAttributeList",
"getBoundingBox"
]
def setCacheLevel(level):
pass
def getCacheLevel():
return None
def clearCache():
pass
def printCache():
print("Print cache function is deprecated")
def getInterfaceIID(obj):
"""
Gets the ID of an interface class or object in string format for use in
queryInterface.
@param obj: Class representing an AT-SPI interface or instance
@type obj: object
@return: IID for the interface
@rtype: string
@raise AttributeError: When the parameter does not provide typecode info
WARNING!! DEPRECATED!!
In current D-Bus version of pyatspi this simply returns a null string.
"""
return ""
def getInterfaceName(obj):
"""
Gets the human readable name of an interface class or object in string
format.
@param obj: Class representing an AT-SPI interface or instance
@type obj: class
@return: Name of the interface
@rtype: string
@raise AttributeError: When the parameter does not provide typecode info
"""
return obj._dbus_interface.lstrip("org.a11y.atspi.")
def listInterfaces(obj):
"""
Gets a list of the names of all interfaces supported by this object. The
names are the short-hand interface names like "Accessible" and "Component",
not the full interface identifiers.
@param obj: Arbitrary object to query for all accessibility related
interfaces. Must provide a queryInterface method.
@type obj: object
@return: Set of supported interface names
@rtype: set
@raise AttributeError: If the object provide does not implement
queryInterface
"""
return obj.get_interfaces()
def stringToConst(prefix, suffix):
"""
Maps a string name to an AT-SPI constant. The rules for the mapping are as
follows:
- The prefix is captalized and has an _ appended to it.
- All spaces in the suffix are mapped to the _ character.
- All alpha characters in the suffix are mapped to their uppercase.
The resulting name is used with getattr to look up a constant with that name
in the L{constants} module. If such a constant does not exist, the string
suffix is returned instead.
This method allows strings to be used to refer to roles, relations, etc.
without direct access to the constants. It also supports the future expansion
of roles, relations, etc. by allowing arbitrary strings which may or may not
map to the current standard set of roles, relations, etc., but may still
match some non-standard role, relation, etc. being reported by an
application.
@param prefix: Prefix of the constant name such as role, relation, state,
text, modifier, key
@type prefix: string
@param suffix: Name of the role, relation, etc. to use to lookup the constant
@type suffix: string
@return: The matching constant value
@rtype: object
"""
name = prefix.upper()+'_'+suffix.upper().replace(' ', '_')
return getattr(constants, name, suffix)
def stateToString(value):
"""
Converts a state value to a string based on the name of the state constant in
the L{constants} module that has the given value.
@param value: An AT-SPI state
@type value: Accessibility.StateType
@return: Human readable, untranslated name of the state
@rtype: string
"""
return state.STATE_VALUE_TO_NAME.get(value)
def relationToString(value):
"""
Converts a relation value to a string based on the name of the state constant
in the L{constants} module that has the given value.
@param value: An AT-SPI relation
@type value: Accessibility.RelationType
@return: Human readable, untranslated name of the relation
@rtype: string
"""
return pyatspi.Accessibility.RELATION_VALUE_TO_NAME.get(value)
def findDescendant(acc, pred, breadth_first=False):
"""
Searches for a descendant node satisfying the given predicate starting at
this node. The search is performed in depth-first order by default or
in breadth first order if breadth_first is True. For example,
my_win = findDescendant(lambda x: x.name == 'My Window')
will search all descendants of x until one is located with the name 'My
Window' or all nodes are exausted. Calls L{_findDescendantDepth} or
L{_findDescendantBreadth} to start the recursive search.
@param acc: Root accessible of the search
@type acc: Accessibility.Accessible
@param pred: Search predicate returning True if accessible matches the
search criteria or False otherwise
@type pred: callable
@param breadth_first: Search breadth first (True) or depth first (False)?
@type breadth_first: boolean
@return: Accessible matching the criteria or None if not found
@rtype: Accessibility.Accessible or None
"""
if breadth_first:
return _findDescendantBreadth(acc, pred)
for child in acc:
try:
ret = _findDescendantDepth(acc, pred)
except Exception:
ret = None
if ret is not None: return ret
def _findDescendantBreadth(acc, pred):
"""
Internal function for locating one descendant. Called by L{findDescendant} to
start the search.
@param acc: Root accessible of the search
@type acc: Accessibility.Accessible
@param pred: Search predicate returning True if accessible matches the
search criteria or False otherwise
@type pred: callable
@return: Matching node or None to keep searching
@rtype: Accessibility.Accessible or None
"""
for child in acc:
try:
if pred(child): return child
except Exception:
pass
for child in acc:
try:
ret = _findDescendantBreadth(child, pred)
except Exception:
ret = None
if ret is not None: return ret
def _findDescendantDepth(acc, pred):
"""
Internal function for locating one descendant. Called by L{findDescendant} to
start the search.
@param acc: Root accessible of the search
@type acc: Accessibility.Accessible
@param pred: Search predicate returning True if accessible matches the
search criteria or False otherwise
@type pred: callable
@return: Matching node or None to keep searching
@rtype: Accessibility.Accessible or None
"""
try:
if pred(acc): return acc
except Exception:
pass
for child in acc:
try:
ret = _findDescendantDepth(child, pred)
except Exception:
ret = None
if ret is not None: return ret
def findAllDescendants(acc, pred):
"""
Searches for all descendant nodes satisfying the given predicate starting at
this node. Does an in-order traversal. For example,
pred = lambda x: x.getRole() == pyatspi.ROLE_PUSH_BUTTON
buttons = pyatspi.findAllDescendants(node, pred)
will locate all push button descendants of node.
@param acc: Root accessible of the search
@type acc: Accessibility.Accessible
@param pred: Search predicate returning True if accessible matches the
search criteria or False otherwise
@type pred: callable
@return: All nodes matching the search criteria
@rtype: list
"""
matches = []
_findAllDescendants(acc, pred, matches)
return matches
def _findAllDescendants(acc, pred, matches):
"""
Internal method for collecting all descendants. Reuses the same matches
list so a new one does not need to be built on each recursive step.
"""
for child in acc:
try:
if pred(child): matches.append(child)
except Exception:
pass
_findAllDescendants(child, pred, matches)
def findAncestor(acc, pred):
"""
Searches for an ancestor satisfying the given predicate. Note that the
AT-SPI hierarchy is not always doubly linked. Node A may consider node B its
child, but B is not guaranteed to have node A as its parent (i.e. its parent
may be set to None). This means some searches may never make it all the way
up the hierarchy to the desktop level.
@param acc: Starting accessible object
@type acc: Accessibility.Accessible
@param pred: Search predicate returning True if accessible matches the
search criteria or False otherwise
@type pred: callable
@return: Node matching the criteria or None if not found
@rtype: Accessibility.Accessible
"""
if acc is None:
# guard against bad start condition
return None
while 1:
if acc.parent is None:
# stop if there is no parent and we haven't returned yet
return None
try:
if pred(acc.parent): return acc.parent
except Exception:
pass
# move to the parent
acc = acc.parent
def getPath(acc):
"""
Gets the path from the application ancestor to the given accessible in
terms of its child index at each level.
@param acc: Target accessible
@type acc: Accessibility.Accessible
@return: Path to the target
@rtype: list of integer
@raise LookupError: When the application accessible cannot be reached
"""
path = []
while 1:
if acc.parent is None:
path.reverse()
return path
try:
path.append(acc.getIndexInParent())
except Exception:
raise LookupError
acc = acc.parent
def pointToList(point):
return (point.x, point.y)
def rectToList(rect):
return (rect.x, rect.y, rect.width, rect.height)
def attributeListToHash(list):
ret = dict()
for item in list:
[key, val] = item.split(":")
val = val.replace(":", "\:")
if ret.__contains__(key):
ret[key] = ret[key] + ":" + val
else:
ret[key] = val
return ret
def hashToAttributeList(h):
return [x + ":" + h[x] for x in h.keys()]
class BoundingBox(list):
def __new__(cls, x, y, width, height):
return list.__new__(cls, (x, y, width, height))
def __init__(self, x, y, width, height):
list.__init__(self, (x, y, width, height))
def __str__(self):
return ("(%d, %d, %d, %d)" % (self.x, self.y, self.width, self.height))
def _get_x(self):
return self[0]
def _set_x(self, val):
self[0] = val
x = property(fget=_get_x, fset=_set_x)
def _get_y(self):
return self[1]
def _set_y(self, val):
self[1] = val
y = property(fget=_get_y, fset=_set_y)
def _get_width(self):
return self[2]
def _set_width(self, val):
self[2] = val
width = property(fget=_get_width, fset=_set_width)
def _get_height(self):
return self[3]
def _set_height(self, val):
self[3] = val
height = property(fget=_get_height, fset=_set_height)
def getBoundingBox(rect):
return BoundingBox (rect.x, rect.y, rect.width, rect.height)
|