/usr/lib/python2.7/dist-packages/sardana/sardanadefs.py is in python-sardana 1.2.0-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 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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | #!/usr/bin/env python
##############################################################################
##
## This file is part of Sardana
##
## http://www.tango-controls.org/static/sardana/latest/doc/html/index.html
##
## Copyright 2011 CELLS / ALBA Synchrotron, Bellaterra, Spain
##
## Sardana is free software: you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Sardana 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 Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with Sardana. If not, see <http://www.gnu.org/licenses/>.
##
##############################################################################
"""This module contains the most generic sardana constants and enumerations"""
__all__ = ["EpsilonError", "SardanaServer", "ServerRunMode", "State",
"DataType", "DataFormat", "DataAccess", "DTYPE_MAP", "R_DTYPE_MAP",
"DACCESS_MAP",
"from_dtype_str", "from_access_str", "to_dtype_dformat",
"to_daccess", "InvalidId", "InvalidAxis", "ElementType",
"Interface", "Interfaces", "InterfacesExpanded",
"TYPE_ELEMENTS", "TYPE_GROUP_ELEMENTS", "TYPE_MOVEABLE_ELEMENTS",
"TYPE_PHYSICAL_ELEMENTS", "TYPE_ACQUIRABLE_ELEMENTS",
"TYPE_EXP_CHANNEL_ELEMENTS", "TYPE_TIMERABLE_ELEMENTS",
"TYPE_PSEUDO_ELEMENTS", "INTERFACES", "INTERFACES_EXPANDED",
"ScalarNumberFilter"]
__docformat__ = 'restructuredtext'
import math
from taurus.core.util import Enumeration
#: maximum difference between two floats so that they are considered equal
EpsilonError = 1E-16
#: sardana element state enumeration
State = Enumeration("State", ( \
"On",
"Off",
"Close",
"Open",
"Insert",
"Extract",
"Moving",
"Standby",
"Fault",
"Init",
"Running",
"Alarm",
"Disable",
"Unknown",
"Invalid") )
class _SardanaServer(object):
"""Class representing the current sardana server state"""
def __init__(self):
self.server_state = State.Invalid
def __repr__(self):
return "SardanaServer()"
#: the global object containing the SardanaServer information
SardanaServer = _SardanaServer()
#:
#: The sardana server run mode:
#:
#: - **SynchPure** : Pure synchronous: Start the server and run the server loop
#: until it stops
#: - **SynchThread** : separate thread synchronous: start a thread running the
#: server loop. Block until the server loop ends
#: - **SynchProcess** : separate process synchronous: start a sub-process
#: running the server loop. Block until the server loop ends
#: - **AsynchThread** : separate thread asynchronous: start a thread running the
#: server loop. Return immediately
#: - **ASynchProcess** : separate process asynchronous: start a sub-process
#: running the server loop. Return immediately
ServerRunMode = Enumeration("ServerRunMode", \
("SynchPure", "SynchThread", "SynchProcess", \
"AsynchThread", "AsynchProcess"))
#: sardana data types (used by device pool controllers)
DataType = Enumeration("DataType", ( \
"Integer",
"Double",
"String",
"Boolean",
"Encoded",
"Invalid") )
#: sardana data format enumeration (used by device pool controllers)
DataFormat = Enumeration("DataFormat", ( \
"Scalar",
"OneD",
"TwoD",
"Invalid") )
#: sardana data access (used by device pool controllers)
DataAccess = Enumeration("DataAccess", ( \
"ReadOnly",
"ReadWrite",
"Invalid") )
#: dictionary dict<data type, :class:`sardana.DataType`>
DTYPE_MAP = {
'int' : DataType.Integer,
'integer' : DataType.Integer,
int : DataType.Integer,
long : DataType.Integer,
'long' : DataType.Integer,
DataType.Integer : DataType.Integer,
'float' : DataType.Double,
'double' : DataType.Double,
float : DataType.Double,
DataType.Double : DataType.Double,
'str' : DataType.String,
'string' : DataType.String,
str : DataType.String,
DataType.String : DataType.String,
'bool' : DataType.Boolean,
'boolean' : DataType.Boolean,
bool : DataType.Boolean,
DataType.Boolean : DataType.Boolean,
}
#: dictionary dict<data type, :class:`sardana.DataType`>
R_DTYPE_MAP = {
'int' : int,
'integer' : int,
int : int,
long : int,
'long' : int,
DataType.Integer : int,
'float' : float,
'double' : float,
float : float,
DataType.Double : float,
'str' : str,
'string' : str,
str : str,
DataType.String : str,
'bool' : bool,
'boolean' : bool,
bool : bool,
DataType.Boolean : bool,
}
#DTYPE_MAP.setdefault(DataType.Invalid)
#: dictionary dict<access type, :class:`sardana.DataAccess`>
DACCESS_MAP = {
'read' : DataAccess.ReadOnly,
DataAccess.ReadOnly : DataAccess.ReadOnly,
'readwrite' : DataAccess.ReadWrite,
'read_write' : DataAccess.ReadWrite,
DataAccess.ReadWrite : DataAccess.ReadWrite,
}
#DACCESS_MAP.setdefault(DataAccess.Invalid)
def from_dtype_str(dtype):
"""Transforms the given dtype parameter (string/:obj:`DataType` or None)
into a tuple of two elements (str, :obj:`DataFormat`) where the first
element is a string with a simplified data type.
- If None is given, it returns
('float', :obj:`DataFormat.Scalar`)
- If :obj:`DataType` is given, it returns
(:obj:`DataType`, :obj:`DataFormat.Scalar`)
:param dtype: the data type to be transformed
:type dtype: str or None or :obj:`DataType`
:return: a tuple <str, :obj:`DataFormat`> for the given dtype
:rtype: tuple<str, :obj:`DataFormat`>"""
dformat = DataFormat.Scalar
if dtype is None:
dtype = 'float'
elif isinstance(dtype, (str, unicode)):
dtype = dtype.lower()
if dtype.startswith("pytango."):
dtype = dtype[len("pytango."):]
if dtype.startswith("dev"):
dtype = dtype[len("dev"):]
if dtype.startswith("var"):
dtype = dtype[len("var"):]
if dtype.endswith("array"):
dtype = dtype[:dtype.index("array")]
dformat = DataFormat.OneD
return dtype, dformat
def from_access_str(access):
"""Transforms the given access parameter (string or :obj:`DataAccess`) into
a simplified data access string.
:param dtype: the access to be transformed
:type dtype: str
:return: a simple string for the given access
:rtype: str"""
if isinstance(access, (str, unicode)):
access = access.lower()
if access.startswith("pytango."):
access = access[len("pytango."):]
return access
def to_dtype_dformat(data):
"""Transforms the given data parameter (string/ or sequence of string or
sequence of sequence of string/:obj:`DataType`) into a tuple of two
elements (:obj:`DataType`, :obj:`DataFormat`).
:param data: the data information to be transformed
:type data: str or seq<str> or seq<seq<str>>
:return: a tuple <:obj:`DataType`, :obj:`DataFormat`> for the given data
:rtype: tuple<:obj:`DataType`, :obj:`DataFormat`>
"""
import operator
dtype, dformat = data, DataFormat.Scalar
if isinstance(data, (str, unicode)):
dtype, dformat = from_dtype_str(data)
elif operator.isSequenceType(data):
dformat = DataFormat.OneD
dtype = data[0]
if type(dtype) == str:
dtype, dformat2 = from_dtype_str(dtype)
if dformat2 == DataFormat.OneD:
dformat = DataFormat.TwoD
elif operator.isSequenceType(dtype):
dformat = DataFormat.TwoD
dtype = dtype[0]
if type(dtype) == str:
dtype, _ = from_dtype_str(dtype)
dtype = DTYPE_MAP.get(dtype, DataType.Invalid)
return dtype, dformat
def to_daccess(daccess):
"""Transforms the given access parameter (string or None) into a
:obj:`DataAccess`. If None is given returns :obj:`DataAccess.ReadWrite`
:param dtype: the access to be transformed
:type dtype: str
:return: a :obj:`DataAccess` for the given access
:rtype: :obj:`DataAccess`"""
if daccess is None:
daccess = DataAccess.ReadWrite
elif isinstance(daccess , (str, unicode)):
daccess = DACCESS_MAP.get(from_access_str(daccess), DataAccess.ReadWrite)
return daccess
#: A constant representing an invalid ID
InvalidId = 0
#: A constant representing an invalid axis
InvalidAxis = 0
#: An enumeration describing the all possible element types in sardana
ElementType = Enumeration("ElementType", ( \
"Pool",
"Controller",
"Motor",
"CTExpChannel",
"ZeroDExpChannel",
"OneDExpChannel",
"TwoDExpChannel",
"ComChannel",
"IORegister",
"PseudoMotor",
"PseudoCounter",
"Constraint",
"MotorGroup",
"MeasurementGroup",
"Instrument",
"ControllerClass",
"ControllerLibrary",
"MacroServer",
"Door",
"MacroClass",
"MacroLibrary",
"MacroFunction",
"External",
"Meta",
"ParameterType",
"Unknown") )
ET = ElementType
#: a set containning all "controllable" element types.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_ELEMENTS = set((ET.Motor, ET.CTExpChannel, ET.ZeroDExpChannel, \
ET.OneDExpChannel, ET.TwoDExpChannel, \
ET.ComChannel, ET.IORegister, ET.PseudoMotor, \
ET.PseudoCounter, ET.Constraint))
#: a set containing all group element types.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_GROUP_ELEMENTS = set((ET.MotorGroup, ET.MeasurementGroup))
#: a set containing the type of elements which are moveable.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_MOVEABLE_ELEMENTS = set((ET.Motor, ET.PseudoMotor, ET.MotorGroup))
#: a set containing the possible types of physical elements.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_PHYSICAL_ELEMENTS = set((ET.Motor, ET.CTExpChannel, ET.ZeroDExpChannel, \
ET.OneDExpChannel, ET.TwoDExpChannel, \
ET.ComChannel, ET.IORegister))
#: a set containing the possible types of acquirable elements.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_ACQUIRABLE_ELEMENTS = set((ET.Motor, ET.CTExpChannel, ET.ZeroDExpChannel, \
ET.OneDExpChannel, ET.TwoDExpChannel, \
ET.ComChannel, ET.IORegister, ET.PseudoMotor, \
ET.PseudoCounter))
#: a set containing the possible types of experimental channel elements.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_EXP_CHANNEL_ELEMENTS = set((ET.CTExpChannel, ET.ZeroDExpChannel, \
ET.OneDExpChannel, ET.TwoDExpChannel, ET.PseudoCounter))
#: a set containing the possible timer-able elements.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_TIMERABLE_ELEMENTS = set((ET.CTExpChannel, ET.OneDExpChannel,
ET.TwoDExpChannel))
#: a set containing the possible types of pseudo elements.
#: Constant values belong to :class:`~sardana.sardanadefs.ElementType`
TYPE_PSEUDO_ELEMENTS = set((ET.PseudoMotor, ET.PseudoCounter))
##: An enumeration describing the all possible sardana interfaces
#SardanaInterface = Enumeration("SardanaInterface", ( \
# ("Object", 0b0000000000000001),
# ("Element", 0b0000000000000011),
# ("Class", 0b0000000000000101),
# ("Library", 0b0000000000001001),
# ("PoolObject", 0b0000000000010001),
# ("PoolElement", 0b0000000000010011),
# ("Pool", 0b0000000000110011),
# ("Controller", 0b0000000001000001),
# ("Moveable", 0b0000000010000001),
# ("Acquirable", 0b0000000100000001),
# ("Instrument", 0b0000001000000001),
# ("Motor", 0b0000010000000001),
# ("PseudoMotor", 0b0000100000000001),
# ("IORegister", 0b0001000000000001),
# ("ExpChannel", 0b0010000000000001),
# ("CTExpChannel", 0b0100000000000001),
# ("ZeroDExpChannel", 0b1000000000000001),
# ("OneDExpChannel", 0b0000000000000001),
# ("TwoDExpChannel", 0b0000000000000001),
# ("PseudoCounter", 0b0000000000000001),
# ("ComChannel", 0b0000000000000001),
# ("MotorGroup", 0b0000000000000001),
# ("MeasurementGroup", 0b0000000000000001),
# ("ControllerLibrary", 0b0000000000000001),
# ("ControllerClass", 0b0000000000000001),
# ("Constraint", 0b0000000000000001),
# ("External", 0b0000000000000001),
# ("MacroServerObject", 0b0000000000000001),
# ("MacroServerElement",0b0000000000000001),
# ("MacroServer", 0b0000000000000001),
# ("MacroLibrary", 0b0000000000000001),
# ("MacroClass", 0b0000000000000001),
# ("Macro", 0b0000000000000001), ) )
#: a dictionary containing the direct interfaces supported by each type
#: (:obj:`dict`\<:obj:`str`\, :obj:`tuple`\<:obj:`set`\<:obj:`str`\, :obj:`str`\>>>)
INTERFACES = {
"Meta" : (set(), "A generic sardana meta object"),
"Object" : (set(), "A generic sardana object"),
"Element" : (set(("Object",)), "A generic sardana element"),
"Class" : (set(("Object",)), "A generic sardana class"),
"Function" : (set(("Object",)), "A generic sardana function"),
"Library" : (set(("Object",)), "A generic sardana library"),
"PoolObject" : (set(("Object",)), "A Pool object"),
"PoolElement" : (set(("Element", "PoolObject")), "A Pool element"),
"Pool" : (set(("PoolElement",)), "A Pool"),
"Controller" : (set(("PoolElement",)), "A controller"),
"Moveable" : (set(("PoolElement",)), "A moveable element"),
"Acquirable" : (set(("PoolElement",)), "An acquirable element"),
"Instrument" : (set(("PoolElement",)), "An instrument"),
"Motor" : (set(("Moveable", "Acquirable")), "a motor"),
"PseudoMotor" : (set(("Moveable", "Acquirable")), "A pseudo motor"),
"IORegister" : (set(("Acquirable",)), "An IO register"),
"ExpChannel" : (set(("Acquirable",)), "A generic experimental channel"),
"CTExpChannel" : (set(("ExpChannel",)), "A counter/timer experimental channel"),
"ZeroDExpChannel" : (set(("ExpChannel",)), "A 0D experimental channel"),
"OneDExpChannel" : (set(("ExpChannel",)), "A 1D experimental channel"),
"TwoDExpChannel" : (set(("ExpChannel",)), "A 2D experimental channel"),
"PseudoCounter" : (set(("ExpChannel",)), "A pseudo counter"),
"ComChannel" : (set(("PoolElement",)), "A communication channel"),
"MotorGroup" : (set(("PoolElement",),), "A motor group"),
"MeasurementGroup" : (set(("PoolElement",),), "A measurement group"),
"ControllerLibrary" : (set(("Library", "PoolObject")), "A controller library"),
"ControllerClass" : (set(("Class", "PoolObject")), "A controller class"),
"Constraint" : (set(("PoolObject",)), "A constraint"),
"External" : (set(("Object",)), "An external object"),
"MacroServerObject" : (set(("Object",)), "A generic macro server object"),
"MacroServerElement" : (set(("Element", "MacroServerObject")), "A generic macro server element"),
"MacroServer" : (set(("MacroServerElement",)), "A MacroServer"),
"Door" : (set(("MacroServerElement",)), "A macro server door"),
"MacroLibrary" : (set(("Library", "MacroServerObject")), "A macro server library"),
"MacroCode" : (set(("MacroServerObject",)), "A macro server macro code"),
"MacroClass" : (set(("Class", "MacroCode")), "A macro server macro class"),
"MacroFunction" : (set(("Function", "MacroCode")), "A macro server macro function"),
"Macro" : (set(("MacroClass", "MacroFunction")), "A macro server macro"),
"ParameterType" : (set(("Meta",)), "A generic macro server parameter type"),
}
#: a dictionary containing the *all* interfaces supported by each type
#: (:obj:`dict` <:obj:`str`, :obj:`set` < :obj:`str`> >)
INTERFACES_EXPANDED = {}
def __expand(name):
direct_expansion, _ = INTERFACES[name]
if isinstance(direct_expansion, (str, unicode)):
direct_expansion = direct_expansion,
exp = set(direct_expansion)
for e in direct_expansion:
e_value = INTERFACES_EXPANDED.get(e)
if e_value is None:
exp.update(__expand(e))
else:
exp.update(e_value[0])
exp.add(name)
return exp
def __build_interfaces_expanded():
global INTERFACES_EXPANDED
for i in INTERFACES:
INTERFACES_EXPANDED[i] = __expand(i), INTERFACES[i][1]
__build_interfaces_expanded()
def __expand_sardana_interface_data(si_map, name, curr_id):
if name in si_map:
return curr_id
d = 0
i_expanded = set(INTERFACES_EXPANDED[name][0])
i_expanded.remove(name)
for interface in i_expanded:
if interface not in si_map:
curr_id = __expand_sardana_interface_data(si_map, interface, curr_id)
d |= si_map[interface]
si_map[name] = long(d | curr_id)
return 2*curr_id
def __root_expand_sardana_interface_data():
curr_id = 1
si_map = {}
for interface in INTERFACES_EXPANDED:
curr_id = __expand_sardana_interface_data(si_map, interface, curr_id)
return si_map
#: An enumeration describing the all possible sardana interfaces
Interface = Enumeration("Interface",
__root_expand_sardana_interface_data().items())
def __create_sardana_interfaces():
interfaces, interfaces_expanded = {}, {}
for i in INTERFACES:
i_enum = Interface[i]
i_items, i_items_expanded = INTERFACES[i][0], INTERFACES_EXPANDED[i][0]
i_enum_items = set(map(Interface.get, i_items))
i_enum_items_expanded = set(map(Interface.get, i_items_expanded))
interfaces[i_enum] = i_enum_items
interfaces_expanded[i_enum] = i_enum_items_expanded
return interfaces, interfaces_expanded
_Interfaces, _InterfacesExpanded = __create_sardana_interfaces()
#: a dictionary containing the direct interfaces supported by each type
#: (:obj:`dict` <:obj:`sardana.sardanadefs.Interface`, :obj:`set` < :obj:`sardana.sardanadefs.Interface`> >)
Interfaces = _Interfaces
#: a dictionary containing the *all* interfaces supported by each type.
#: (:obj:`dict` <:obj:`sardana.sardanadefs.Interface`, :obj:`set` < :obj:`sardana.sardanadefs.Interface`> >)
InterfacesExpanded = _InterfacesExpanded
class ScalarNumberFilter(object):
"""A simple scalar number filter that returns ``False`` if two numbers are
indentical (i.e. |a-b| < error)"""
def __call__(self, a, b):
try:
return math.fabs(a-b) > EpsilonError
except:
return a != b
|