# SPDX-FileCopyrightText: All Contributors to the PyTango project
# SPDX-License-Identifier: LGPL-3.0-or-later
"""
This is an internal PyTango module.
"""
import collections.abc
import contextlib
import enum
import functools
import inspect
import numbers
import os
import sys
import threading
import time
import types
import typing
import weakref
from argparse import HelpFormatter
from urllib.parse import urlparse, urlunparse
import numpy as np
from packaging.version import Version
from tango import (
AttrConfEventData,
AttrDataFormat,
AttrQuality,
CmdArgType,
Database,
DataReadyEventData,
DbData,
DbDatum,
DbDevExportInfos,
DbDevInfos,
DevFailed,
DeviceData,
DeviceDataList,
DeviceProxy,
DevIntrChangeEventData,
DevState,
EnsureOmniThread,
ErrSeverity,
EventData,
EventReason,
Except,
StdDoubleVector,
StdStringVector,
__auto_die_callbacks_holder,
_tango,
)
from tango._tango import __CallBackAutoDie, __Group
from tango._warnings import warn_once
from tango.constants import (
AlrmValueNotSpec,
StatusNotSet,
TgLibVers,
)
from tango.release import Release
from tango.telemetry import (
get_telemetry_tracer_provider_factory as _telemetry_get_tracer_provider_factory,
)
from tango.telemetry import (
set_telemetry_tracer_provider_factory as _telemetry_set_tracer_provider_factory,
)
__all__ = (
"TO_TANGO_TYPE",
"AsyncEventCallback",
"CaselessDict",
"CaselessList",
"EventCallback",
"InvalidTangoHostTrlError",
"PyTangoThread",
"PyTangoThreadPoolExecutor",
"StdStringVector_2_seq",
"_clear_test_context_tango_host_fqtrl",
"_get_command_inout_param",
"_get_device_fqtrl_if_necessary",
"_get_test_context_tango_host_fqtrl",
"_set_test_context_tango_host_fqtrl",
"dir2",
"document_method",
"document_static_method",
"ensure_binary",
"from_version_str_to_hex_str",
"from_version_str_to_int",
"get_home",
"get_telemetry_tracer_provider_factory",
"is_array_type",
"is_binary_type",
"is_bool_type",
"is_float_type",
"is_int_type",
"is_integer",
"is_non_str_seq",
"is_number",
"is_numerical_type",
"is_pure_str",
"is_scalar_type",
"is_seq",
"is_str_type",
"obj_2_str",
"parameter_2_dbdata",
"parse_type_hint",
"requires_pytango",
"requires_tango",
"scalar_to_array_type",
"seqStr_2_obj",
"seq_2_StdStringVector",
"set_telemetry_tracer_provider_factory",
)
__docformat__ = "restructuredtext"
# Types
__str_klasses = (str,)
__int_klasses = (int, np.integer)
__number_klasses = (numbers.Number, np.number)
__seq_klasses = (collections.abc.Sequence, bytearray, StdStringVector, np.ndarray)
_scalar_int_types = (
CmdArgType.DevShort,
CmdArgType.DevUShort,
CmdArgType.DevLong,
CmdArgType.DevULong,
CmdArgType.DevLong64,
CmdArgType.DevULong64,
)
_scalar_float_types = (
CmdArgType.DevFloat,
CmdArgType.DevDouble,
)
_scalar_numerical_types = _scalar_int_types + _scalar_float_types
_scalar_str_types = (
CmdArgType.DevString,
CmdArgType.ConstDevString,
)
_scalar_bool_types = (CmdArgType.DevBoolean,)
_scalar_types = (
_scalar_numerical_types
+ _scalar_str_types
+ _scalar_bool_types
+ (
CmdArgType.DevEncoded,
CmdArgType.DevUChar,
)
)
_array_int_types = (
CmdArgType.DevVarShortArray,
CmdArgType.DevVarUShortArray,
CmdArgType.DevVarLongArray,
CmdArgType.DevVarULongArray,
CmdArgType.DevVarLong64Array,
CmdArgType.DevVarULong64Array,
)
_array_float_types = (CmdArgType.DevVarFloatArray, CmdArgType.DevVarDoubleArray)
_array_numerical_types = _array_int_types + _array_float_types
_array_str_types = (CmdArgType.DevVarStringArray,)
_array_bool_types = (CmdArgType.DevVarBooleanArray,)
_array_types = (
_array_numerical_types
+ _array_bool_types
+ _array_str_types
+ (
CmdArgType.DevVarCharArray,
CmdArgType.DevVarDoubleStringArray,
CmdArgType.DevVarLongStringArray,
)
)
_binary_types = (
CmdArgType.DevEncoded,
CmdArgType.DevVarCharArray,
)
FROM_TANGO_TO_NUMPY_TYPE = {
CmdArgType.DevBoolean: np.bool_,
CmdArgType.DevUChar: np.ubyte,
CmdArgType.DevShort: np.short,
CmdArgType.DevUShort: np.ushort,
CmdArgType.DevLong: np.int32,
CmdArgType.DevULong: np.uint32,
CmdArgType.DevLong64: np.int64,
CmdArgType.DevULong64: np.uint64,
CmdArgType.DevString: str,
CmdArgType.DevDouble: np.float64,
CmdArgType.DevFloat: np.float32,
}
def __build_to_tango_type():
ret = {
int: CmdArgType.DevLong64,
str: CmdArgType.DevString,
bool: CmdArgType.DevBoolean,
bytearray: CmdArgType.DevEncoded,
float: CmdArgType.DevDouble,
chr: CmdArgType.DevUChar,
None: CmdArgType.DevVoid,
"int": CmdArgType.DevLong64,
"int16": CmdArgType.DevShort,
"int32": CmdArgType.DevLong,
"int64": CmdArgType.DevLong64,
"uint": CmdArgType.DevULong64,
"uint16": CmdArgType.DevUShort,
"uint32": CmdArgType.DevULong,
"uint64": CmdArgType.DevULong64,
"str": CmdArgType.DevString,
"string": CmdArgType.DevString,
"text": CmdArgType.DevString,
"bool": CmdArgType.DevBoolean,
"boolean": CmdArgType.DevBoolean,
"bytes": CmdArgType.DevEncoded,
"bytearray": CmdArgType.DevEncoded,
"float": CmdArgType.DevDouble,
"float32": CmdArgType.DevFloat,
"float64": CmdArgType.DevDouble,
"double": CmdArgType.DevDouble,
"byte": CmdArgType.DevUChar,
"chr": CmdArgType.DevUChar,
"char": CmdArgType.DevUChar,
"None": CmdArgType.DevVoid,
"state": CmdArgType.DevState,
"enum": CmdArgType.DevEnum,
}
for key in dir(CmdArgType):
if key.startswith("Dev"):
value = getattr(CmdArgType, key)
ret[key] = ret[value] = value
for key, value in FROM_TANGO_TO_NUMPY_TYPE.items():
ret[value] = key
return ret
TO_TANGO_TYPE = __build_to_tango_type()
_scalar_to_array_type = {
CmdArgType.DevBoolean: CmdArgType.DevVarBooleanArray,
CmdArgType.DevUChar: CmdArgType.DevVarCharArray,
CmdArgType.DevShort: CmdArgType.DevVarShortArray,
CmdArgType.DevUShort: CmdArgType.DevVarUShortArray,
CmdArgType.DevLong: CmdArgType.DevVarLongArray,
CmdArgType.DevULong: CmdArgType.DevVarULongArray,
CmdArgType.DevLong64: CmdArgType.DevVarLong64Array,
CmdArgType.DevULong64: CmdArgType.DevVarULong64Array,
CmdArgType.DevFloat: CmdArgType.DevVarFloatArray,
CmdArgType.DevDouble: CmdArgType.DevVarDoubleArray,
CmdArgType.DevString: CmdArgType.DevVarStringArray,
CmdArgType.ConstDevString: CmdArgType.DevVarStringArray,
}
# add derived scalar types to scalar to array map
for k, v in TO_TANGO_TYPE.items():
if v in _scalar_to_array_type:
_scalar_to_array_type[k] = _scalar_to_array_type[v]
__NO_STR_VALUE = AlrmValueNotSpec, StatusNotSet
__device_classes = None
def strtobool(val):
"""Convert a string representation of truth to True or False.
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
'val' is anything else.
"""
val = val.lower()
if val in ("y", "yes", "t", "true", "on", "1"):
return True
elif val in ("n", "no", "f", "false", "off", "0"):
return False
else:
raise ValueError(f"invalid truth value {val}")
def __import(name):
__import__(name)
return sys.modules[name]
def __requires(package_name, min_version=None, conflicts=(), software_name="Software"):
package_name_l = package_name.lower()
if package_name_l == "pytango":
curr_version = Version(Release.version)
elif package_name_l == "tango":
curr_version = Version(TgLibVers)
else:
try:
package = __import(package_name)
curr_version = Version(package.__version__)
except ImportError:
msg = f"Could not find package {package_name} required by {software_name}"
raise Exception(msg) from None
except Exception:
msg = f"Error importing package {package_name} required by {software_name}"
raise Exception(msg) from None
if min_version is not None:
min_version = Version(min_version)
if min_version > curr_version:
msg = f"{software_name} requires {package_name} {min_version} but {curr_version} installed"
raise Exception(msg)
conflicts = map(Version, conflicts)
if curr_version in conflicts:
msg = f"{software_name} cannot run with {package_name} {curr_version}"
raise Exception(msg)
return True
[docs]
def requires_pytango(min_version=None, conflicts=(), software_name="Software"):
"""
Determines if the required PyTango version for the running
software is present. If not an exception is thrown.
Example usage::
from tango import requires_pytango
requires_pytango('7.1', conflicts=['8.1.1'], software_name='MyDS')
:param min_version:
minimum PyTango version [default: None, meaning no minimum
required]. If a string is given, it must be in the valid
version number format
(see: :class:`~packaging.version.Version`)
:type min_version:
None, str, :class:`~packaging.version.Version`
:param conflicts:
a sequence of PyTango versions which conflict with the
software using it
:type conflicts:
seq<str|Version>
:param software_name:
software name using tango. Used in the exception message
:type software_name: str
:raises Exception: if the required PyTango version is not met
.. versionadded:: 8.1.4
"""
return __requires(
"pytango",
min_version=min_version,
conflicts=conflicts,
software_name=software_name,
)
[docs]
def requires_tango(min_version=None, conflicts=(), software_name="Software"):
"""
Determines if the required cppTango version for the running
software is present. If not an exception is thrown.
Example usage::
from tango import requires_tango
requires_tango('7.1', conflicts=['8.1.1'], software_name='MyDS')
:param min_version:
minimum Tango version [default: None, meaning no minimum
required]. If a string is given, it must be in the valid
version number format
(see: :class:`~packaging.version.Version`)
:type min_version:
None, str, :class:`~packaging.version.Version`
:param conflicts:
a sequence of Tango versions which conflict with the
software using it
:type conflicts:
seq<str|Version>
:param software_name:
software name using Tango. Used in the exception message
:type software_name: str
:raises Exception: if the required Tango version is not met
.. versionadded:: 8.1.4
"""
return __requires(
"Tango",
min_version=min_version,
conflicts=conflicts,
software_name=software_name,
)
def get_tango_device_classes():
global __device_classes
if __device_classes is None:
__device_classes = [_tango.DeviceImpl]
i = 2
while True:
dc = f"Device_{i}Impl"
try:
__device_classes.append(getattr(_tango, dc))
i = i + 1
except AttributeError:
break
return __device_classes
def get_latest_device_class():
return get_tango_device_classes()[-1]
def set_complex_value(attr, value):
if not isinstance(value, tuple):
attr.set_value(value)
else:
n_vals = len(value)
if (n_vals > 2 and isinstance(value[2], AttrQuality)) or (
n_vals > 3 and attr.get_data_type() == CmdArgType.DevEncoded and isinstance(value[3], AttrQuality)
):
attr.set_value_date_quality(*value)
else:
attr.set_value(value)
def __get_tango_type(obj):
if is_non_str_seq(obj):
tg_type, tg_format = get_tango_type(obj[0])
tg_format = AttrDataFormat(int(tg_format) + 1)
return tg_type, tg_format
elif is_pure_str(obj):
r = CmdArgType.DevString
elif isinstance(obj, DevState):
r = CmdArgType.DevState
elif isinstance(obj, bool):
r = CmdArgType.DevBoolean
elif isinstance(obj, __int_klasses):
r = CmdArgType.DevLong64
elif isinstance(obj, __number_klasses):
r = CmdArgType.DevDouble
else:
raise TypeError(f"Unsupported type {type(obj)}")
return r, AttrDataFormat.SCALAR
def get_tango_type(obj):
try:
ndim, dtype = obj.ndim, str(obj.dtype)
if ndim > 2:
raise TypeError(f"cannot translate numpy array with {obj.ndim} dimensions to tango type")
return TO_TANGO_TYPE[dtype], AttrDataFormat(ndim)
except AttributeError:
return __get_tango_type(obj)
def get_attribute_type_format(dtype, dformat, enum_labels):
if is_devstate(dtype) or is_devstate_seq(dtype):
_dtype = dtype
dtype = CmdArgType.DevState
while is_devstate_seq(_dtype):
_dtype = _dtype[0]
dtype = (dtype,)
elif is_enum(dtype) or is_enum_seq(dtype):
if enum_labels:
raise TypeError(
"For dtype of enum.Enum, (enum.Enum,) or ((enum.Enum,),) the enum_labels must not "
f"be specified - dtype: {dtype}, enum_labels: {enum_labels}."
)
_dtype = dtype
dtype = CmdArgType.DevEnum
while is_enum_seq(_dtype):
_dtype = _dtype[0]
dtype = (dtype,)
enum_labels = get_enum_labels(_dtype)
return *get_tango_type_format(dtype, dformat, "attribute"), enum_labels
def get_tango_type_format(dtype, dformat=None, caller=None):
if dformat is None:
dformat = AttrDataFormat.SCALAR
if is_non_str_seq(dtype):
if len(dtype):
dtype = dtype[0]
dformat = AttrDataFormat.SPECTRUM
if is_non_str_seq(dtype):
if len(dtype):
dtype = dtype[0]
dformat = AttrDataFormat.IMAGE
elif caller == "attribute":
raise TypeError("Image attribute type must be specified as ((<dtype>,),)")
elif caller == "attribute":
raise TypeError("Spectrum attribute type must be specified as (<dtype>,)")
try:
tango_type = TO_TANGO_TYPE[dtype]
except KeyError:
if isinstance(dtype, str):
raise RuntimeError(
f"Cannot translate {dtype!r} to TANGO type. See documentation for the allowed types. "
'If you are declaring type with type hints and using "from __future__ import annotations", '
"please read documentation to learn about limitations"
) from None
else:
raise RuntimeError(
f"Cannot translate {dtype!r} to TANGO type. See documentation for the allowed types"
) from None
return tango_type, dformat
def __has_ellipsis_in_types(dtype):
try:
list(typing.get_args(dtype)).remove(Ellipsis)
return True
except ValueError:
pass
return False
def __check_types_uniformity(dtype):
all_types = list(set(typing.get_args(dtype)))
if Ellipsis in all_types:
all_types.remove(Ellipsis)
if len(all_types) > 1:
return False
for sub_type in typing.get_args(dtype):
if typing.get_origin(sub_type) in [list, tuple] and not __check_types_uniformity(sub_type):
return False
return True
def eval_in_fallback_frames(dtype_str, try_depth):
"""
Tries to eval a string at `try_depth` frames back from the caller.
"""
def get_frame_at_depth(depth):
# We go back depth + 2 times:
# +1 to get to eval_in_fallback_frames's caller
# +1 to get to this helper's caller (which is eval_in_fallback_frames)
# +depth to get to the target frame.
# A simpler way: start at f_back.f_back and loop 'depth' times.
current_frame = inspect.currentframe().f_back.f_back
for _ in range(depth):
if current_frame:
current_frame = current_frame.f_back
else:
# Stack is not deep enough
return None
return current_frame
frame_to_try = None
try:
frame_to_try = get_frame_at_depth(try_depth)
if frame_to_try is None:
raise IndexError()
return eval(dtype_str, frame_to_try.f_globals, frame_to_try.f_locals)
finally:
# Ensure all created frame references are deleted
if frame_to_try:
del frame_to_try
def parse_type_hint(annotation, caller):
dtype = annotation
if isinstance(dtype, str):
depth = 1
while depth <= 6: # user code should be before 6th frame
try:
dtype = eval_in_fallback_frames(dtype, depth)
break
except NameError:
depth += 1
except IndexError:
break
dformat = AttrDataFormat.SCALAR
max_x, max_y = None, None
if typing.get_origin(dtype) in [list, tuple]:
n_elements = len(typing.get_args(dtype))
if (
n_elements in [2, 4]
and typing.get_args(dtype)[0] is str
and typing.get_args(dtype)[1] in [bytes, bytearray]
):
return "DevEncoded", dformat, max_x, max_y
if (
n_elements in [2, 4]
and typing.get_args(dtype)[0] in [tuple[int], list[int]]
and typing.get_args(dtype)[1] in [tuple[str], list[str]]
):
return "DevVarLongStringArray", dformat, max_x, max_y
if (
n_elements in [2, 4]
and typing.get_args(dtype)[0] in [tuple[float], list[float]]
and typing.get_args(dtype)[1] in [tuple[str], list[str]]
):
return "DevVarDoubleStringArray", dformat, max_x, max_y
if n_elements == 3 and typing.get_args(dtype)[1] is float and typing.get_args(dtype)[2] == AttrQuality:
dtype = typing.get_args(dtype)[0]
if typing.get_origin(dtype) == np.ndarray:
dtype = typing.get_args(typing.get_args(dtype)[1])[0]
dformat = None
if caller in ["property", "command"]:
dtype = (dtype,)
if typing.get_origin(dtype) in [list, tuple]:
if not __has_ellipsis_in_types(dtype):
max_x = len(typing.get_args(dtype))
types_are_uniform = __check_types_uniformity(dtype)
dtype = typing.get_args(dtype)[0]
dformat = AttrDataFormat.IMAGE if typing.get_origin(dtype) in [list, tuple] else AttrDataFormat.SPECTRUM
if caller in ["property", "command"] and dformat == AttrDataFormat.IMAGE:
raise RuntimeError(f"{caller.capitalize()} does not support IMAGE type")
if not types_are_uniform:
if caller in ["property", "command"]:
raise RuntimeError(f"PyTango does not support mixed types in SPECTRUM {caller}")
else:
if dformat == AttrDataFormat.IMAGE:
raise RuntimeError("PyTango does not support mixed types in IMAGE attributes")
else:
raise RuntimeError("PyTango does not support mixed types in SPECTRUM attributes")
if caller == "attribute" and dformat == AttrDataFormat.IMAGE:
max_y = max_x
max_x = len(typing.get_args(dtype)) if not __has_ellipsis_in_types(dtype) else None
dtype = typing.get_args(dtype)[0]
if caller == "property":
dtype = (dtype,)
return dtype, dformat, max_x, max_y
class EnumTypeError(Exception):
"""Invalid Enum class for use with DEV_ENUM."""
[docs]
def get_enum_labels(enum_cls):
"""
Return list of enumeration labels from Enum class.
The list is useful when creating an attribute, for the
`enum_labels` parameter. The enumeration values are checked
to ensure they are unique, start at zero, and increment by one.
:param enum_cls: the Enum class to be inspected
:type enum_cls: :py:obj:`enum.Enum`
:return: List of label strings
:rtype: :py:obj:`list`
:raises EnumTypeError: in case the given class is invalid
"""
if not issubclass(enum_cls, enum.Enum):
raise EnumTypeError(f"Input class '{enum_cls}' must be derived from enum.Enum")
# Check there are no duplicate labels
try:
enum.unique(enum_cls)
except ValueError as exc:
raise EnumTypeError(f"Input class '{enum_cls}' must be unique - {exc}") from None
# Check the values start at 0, and increment by 1, since that is
# assumed by tango's DEV_ENUM implementation.
values = [member.value for member in enum_cls]
if not values:
raise EnumTypeError(f"Input class '{enum_cls}' has no members!")
for expected_value, value in enumerate(values):
if value != expected_value:
raise EnumTypeError(f"Enum values for '{enum_cls}' must start at 0 and increment by 1. Values: {values}")
return [member.name for member in enum_cls]
[docs]
def is_pure_str(obj):
"""
Tells if the given object is a python string.
In python 2.x this means any subclass of basestring.
In python 3.x this means any subclass of str.
:param obj: the object to be inspected
:type obj: :py:obj:`object`
:return: True is the given obj is a string or False otherwise
:rtype: :py:obj:`bool`
"""
return isinstance(obj, __str_klasses)
[docs]
def is_seq(obj):
"""
Tells if the given object is a python sequence.
It will return True for any collections.Sequence (list, tuple,
str, bytes, unicode), bytearray and (if numpy is enabled)
numpy.ndarray
:param obj: the object to be inspected
:type obj: :py:obj:`object`
:return: True is the given obj is a sequence or False otherwise
:rtype: :py:obj:`bool`
"""
return isinstance(obj, __seq_klasses)
[docs]
def is_non_str_seq(obj):
"""
Tells if the given object is a python sequence (excluding string
sequences).
It will return True for any collections.Sequence (list, tuple (and
bytes in python3)), bytearray and (if numpy is enabled)
numpy.ndarray
:param obj: the object to be inspected
:type obj: :py:obj:`object`
:return: True is the given obj is a sequence or False otherwise
:rtype: :py:obj:`bool`
"""
return is_seq(obj) and not is_pure_str(obj)
def is_devstate(obj):
return inspect.isclass(obj) and issubclass(obj, DevState)
def is_devstate_seq(obj):
if is_non_str_seq(obj):
while is_non_str_seq(obj):
obj = obj[0]
return is_devstate(obj)
return False
def is_enum(obj):
return inspect.isclass(obj) and issubclass(obj, enum.Enum)
def is_enum_seq(obj):
if is_non_str_seq(obj):
while is_non_str_seq(obj) and len(obj):
obj = obj[0]
return is_enum(obj)
return False
[docs]
def is_integer(obj):
"""
Tells if the given object is a python integer.
It will return True for any int, long (in python 2) and
(if numpy is enabled) numpy.integer
:param obj: the object to be inspected
:type obj: :py:obj:`object`
:return:
True is the given obj is a python integer or False otherwise
:rtype: :py:obj:`bool`
"""
return isinstance(obj, __int_klasses) and not isinstance(obj, bool)
[docs]
def is_number(obj):
"""
Tells if the given object is a python number.
It will return True for any numbers.Number and (if numpy is
enabled) numpy.number
:param obj: the object to be inspected
:type obj: :py:obj:`object`
:return:
True is the given obj is a python number or False otherwise
:rtype: :py:obj:`bool`
"""
return isinstance(obj, __number_klasses)
def is_scalar(tg_type):
"""Tells if the given tango type is a scalar
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:return: True if the given tango type is a scalar or False otherwise
:rtype: :py:obj:`bool`
"""
global _scalar_types
return tg_type in _scalar_types
is_scalar_type = is_scalar
def is_array(tg_type):
"""Tells if the given tango type is an array type
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:return: True if the given tango type is an array type or False otherwise
:rtype: :py:obj:`bool`
"""
global _array_types
return tg_type in _array_types
is_array_type = is_array
def is_numerical(tg_type, inc_array=False):
"""Tells if the given tango type is numerical
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param inc_array: (optional, default is False) determines if include array
in the list of checked types
:type inc_array: :py:obj:`bool`
:return: True if the given tango type is a numerical or False otherwise
:rtype: :py:obj:`bool`
"""
global _scalar_numerical_types, _array_numerical_types
if tg_type in _scalar_numerical_types:
return True
if not inc_array:
return False
return tg_type in _array_numerical_types
is_numerical_type = is_numerical
def is_int(tg_type, inc_array=False):
"""Tells if the given tango type is integer
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param inc_array: (optional, default is False) determines if include array
in the list of checked types
:type inc_array: :py:obj:`bool`
:return: True if the given tango type is integer or False otherwise
:rtype: :py:obj:`bool`
"""
global _scalar_int_types, _array_int_types
if tg_type in _scalar_int_types:
return True
if not inc_array:
return False
return tg_type in _array_int_types
is_int_type = is_int
def is_float(tg_type, inc_array=False):
"""Tells if the given tango type is float
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param inc_array: (optional, default is False) determines if include array
in the list of checked types
:type inc_array: :py:obj:`bool`
:return: True if the given tango type is float or False otherwise
:rtype: :py:obj:`bool`
"""
global _scalar_float_types, _array_float_types
if tg_type in _scalar_float_types:
return True
if not inc_array:
return False
return tg_type in _array_float_types
is_float_type = is_float
[docs]
def is_bool(tg_type, inc_array=False):
"""Tells if the given tango type is boolean
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param inc_array: (optional, default is False) determines if include array
in the list of checked types
:type inc_array: :py:obj:`bool`
:return: True if the given tango type is boolean or False otherwise
:rtype: :py:obj:`bool`
"""
global _scalar_bool_types, _array_bool_types
if tg_type in _scalar_bool_types:
return True
if not inc_array:
return False
return tg_type in _array_bool_types
is_bool_type = is_bool
def is_str(tg_type, inc_array=False):
"""Tells if the given tango type is string
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param inc_array: (optional, default is False) determines if include array
in the list of checked types
:type inc_array: :py:obj:`bool`
:return: True if the given tango type is string or False otherwise
:rtype: :py:obj:`bool`
"""
global _scalar_str_types, _array_str_types
if tg_type in _scalar_str_types:
return True
if not inc_array:
return False
return tg_type in _array_str_types
is_str_type = is_str
def is_binary(tg_type, inc_array=False):
"""Tells if the given tango type is binary
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param inc_array: (optional, default is False) determines if include array
in the list of checked types
:type inc_array: :py:obj:`bool`
:return: True if the given tango type is binary or False otherwise
:rtype: :py:obj:`bool`
"""
global _binary_types
return tg_type in _binary_types
is_binary_type = is_binary
def seq_2_StdStringVector(seq, vec=None):
"""Converts a python sequence<str> object to a :class:`tango.StdStringVector`
:param seq: the sequence of strings
:type seq: sequence<:py:obj:`str`>
:param vec: (optional, default is None) an :class:`tango.StdStringVector`
to be filled. If None is given, a new :class:`tango.StdStringVector`
is created
:return: a :class:`tango.StdStringVector` filled with the same contents as seq
:rtype: :class:`tango.StdStringVector`
"""
if vec is None:
if isinstance(seq, StdStringVector):
return seq
vec = StdStringVector()
if not isinstance(vec, StdStringVector):
raise TypeError("vec must be a tango.StdStringVector")
for e in seq:
vec.append(str(e))
return vec
def StdStringVector_2_seq(vec, seq=None):
"""Converts a :class:`tango.StdStringVector` to a python sequence<str>
:param seq: the :class:`tango.StdStringVector`
:type seq: :class:`tango.StdStringVector`
:param vec: (optional, default is None) a python sequence to be filled.
If None is given, a new list is created
:return: a python sequence filled with the same contents as seq
:rtype: sequence<str>
"""
if seq is None:
seq = []
if not isinstance(vec, StdStringVector):
raise TypeError("vec must be a tango.StdStringVector")
for e in vec:
seq.append(str(e))
return seq
def seq_2_StdDoubleVector(seq, vec=None):
"""Converts a python sequence<float> object to a :class:`tango.StdDoubleVector`
:param seq: the sequence of floats
:type seq: sequence<:py:obj:`float`>
:param vec: (optional, default is None) an :class:`tango.StdDoubleVector`
to be filled. If None is given, a new :class:`tango.StdDoubleVector`
is created
:return: a :class:`tango.StdDoubleVector` filled with the same contents as seq
:rtype: :class:`tango.StdDoubleVector`
"""
if vec is None:
if isinstance(seq, StdDoubleVector):
return seq
vec = StdDoubleVector()
if not isinstance(vec, StdDoubleVector):
raise TypeError("vec must be a tango.StdDoubleVector")
for e in seq:
vec.append(float(e))
return vec
def StdDoubleVector_2_seq(vec, seq=None):
"""Converts a :class:`tango.StdDoubleVector` to a python sequence<float>
:param seq: the :class:`tango.StdDoubleVector`
:type seq: :class:`tango.StdDoubleVector`
:param vec: (optional, default is None) a python sequence to be filled.
If None is given, a new list is created
:return: a python sequence filled with the same contents as seq
:rtype: sequence<float>
"""
if seq is None:
seq = []
if not isinstance(vec, StdDoubleVector):
raise TypeError("vec must be a tango.StdDoubleVector")
for e in vec:
seq.append(float(e))
return seq
def seq_2_DbDevInfos(seq, vec=None):
"""Converts a python sequence<DbDevInfo> object to a :class:`tango.DbDevInfos`
:param seq: the sequence of DbDevInfo
:type seq: sequence<DbDevInfo>
:param vec: (optional, default is None) an :class:`tango.DbDevInfos`
to be filled. If None is given, a new :class:`tango.DbDevInfos`
is created
:return: a :class:`tango.DbDevInfos` filled with the same contents as seq
:rtype: :class:`tango.DbDevInfos`
"""
if vec is None:
if isinstance(seq, DbDevInfos):
return seq
vec = DbDevInfos()
if not isinstance(vec, DbDevInfos):
raise TypeError("vec must be a tango.DbDevInfos")
for e in seq:
vec.append(e)
return vec
def seq_2_DbDevExportInfos(seq, vec=None):
"""Converts a python sequence<DbDevExportInfo> object to a :class:`tango.DbDevExportInfos`
:param seq: the sequence of DbDevExportInfo
:type seq: sequence<DbDevExportInfo>
:param vec: (optional, default is None) an :class:`tango.DbDevExportInfos`
to be filled. If None is given, a new :class:`tango.DbDevExportInfos`
is created
:return: a :class:`tango.DbDevExportInfos` filled with the same contents as seq
:rtype: :class:`tango.DbDevExportInfos`
"""
if vec is None:
if isinstance(seq, DbDevExportInfos):
return seq
vec = DbDevExportInfos()
if not isinstance(vec, DbDevExportInfos):
raise TypeError("vec must be a tango.DbDevExportInfos")
for e in seq:
vec.append(e)
return vec
def seq_2_DbData(seq, vec=None):
"""Converts a python sequence<DbDatum> object to a :class:`tango.DbData`
:param seq: the sequence of DbDatum
:type seq: sequence<DbDatum>
:param vec: (optional, default is None) an :class:`tango.DbData`
to be filled. If None is given, a new :class:`tango.DbData`
is created
:return: a :class:`tango.DbData` filled with the same contents as seq
:rtype: :class:`tango.DbData`
"""
if vec is None:
if isinstance(seq, DbData):
return seq
vec = DbData()
if not isinstance(vec, DbData):
raise TypeError("vec must be a tango.DbData")
else:
for e in seq:
if isinstance(e, DbDatum):
vec.append(e)
else:
e = ensure_binary(e, "latin-1")
vec.append(DbDatum(e))
return vec
def DbData_2_dict(db_data, d=None):
if d is None:
d = {}
if not isinstance(db_data, DbData):
raise TypeError(f"db_data must be a tango.DbData. A {type(db_data)} found instead")
for db_datum in db_data:
d[db_datum.name] = db_datum.value_string
return d
[docs]
def seqStr_2_obj(seq, tg_type, tg_format=None):
"""Translates a sequence<str> to a sequence of objects of give type and format
:param seq: the sequence
:type seq: sequence<str>
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:param tg_format: (optional, default is None, meaning SCALAR) tango format
:type tg_format: :class:`tango.AttrDataFormat`
:return: a new sequence
"""
if tg_format:
return _seqStr_2_obj_from_type_format(seq, tg_type, tg_format)
return _seqStr_2_obj_from_type(seq, tg_type)
def _seqStr_2_obj_from_type(seq, tg_type):
if is_pure_str(seq):
seq = (seq,)
# Scalar cases
global _scalar_int_types
if tg_type in _scalar_int_types:
return int(seq[0])
global _scalar_float_types
if tg_type in _scalar_float_types:
return float(seq[0])
global _scalar_str_types
if tg_type in _scalar_str_types:
return seq[0]
if tg_type == CmdArgType.DevBoolean:
return strtobool(seq[0])
# sequence cases
if tg_type in (CmdArgType.DevVarCharArray, CmdArgType.DevVarStringArray):
return seq
global _array_int_types
if tg_type in _array_int_types:
return [int(x) for x in seq]
global _array_float_types
if tg_type in _array_float_types:
return [float(x) for x in seq]
if tg_type == CmdArgType.DevVarBooleanArray:
return [strtobool(x) for x in seq]
return []
def _seqStr_2_obj_from_type_format(seq, tg_type, tg_format):
if tg_format == AttrDataFormat.SCALAR:
return _seqStr_2_obj_from_type(tg_type, seq)
elif tg_format == AttrDataFormat.SPECTRUM:
return _seqStr_2_obj_from_type(_scalar_to_array_type[tg_type], seq)
elif tg_format == AttrDataFormat.IMAGE:
if tg_type == CmdArgType.DevString:
return seq
global _scalar_int_types
if tg_type in _scalar_int_types:
return [[int(y) for y in x] for x in seq]
global _scalar_float_types
if tg_type in _scalar_float_types:
return [[float(y) for y in x] for x in seq]
# UNKNOWN_FORMAT
return _seqStr_2_obj_from_type(tg_type, seq)
[docs]
def scalar_to_array_type(tg_type):
"""
Gives the array tango type corresponding to the given tango
scalar type. Example: giving DevLong will return DevVarLongArray.
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:return: the array tango type for the given scalar tango type
:rtype: :class:`tango.CmdArgType`
:raises ValueError: in case the given dtype is not a tango scalar type
"""
try:
return _scalar_to_array_type[tg_type]
except KeyError:
raise ValueError(f"Invalid tango scalar type: {tg_type}") from None
def str_2_obj(obj_str, tg_type=None):
"""Converts a string into an object according to the given tango type
:param obj_str: the string to be converted
:type obj_str: :py:obj:`str`
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:return: an object calculated from the given string
:rtype: :py:obj:`object`
"""
if tg_type is None:
return obj_str
f = str
if is_scalar_type(tg_type):
if is_numerical_type(tg_type) and obj_str in __NO_STR_VALUE:
return None
if is_int_type(tg_type):
f = int
elif is_float_type(tg_type):
f = float
elif is_bool_type(tg_type):
f = strtobool
return f(obj_str)
[docs]
def obj_2_str(obj, tg_type=None):
"""Converts a python object into a string according to the given tango type
:param obj: the object to be converted
:type obj: :py:obj:`object`
:param tg_type: tango type
:type tg_type: :class:`tango.CmdArgType`
:return: a string representation of the given object
:rtype: :py:obj:`str`
"""
if tg_type is None:
return obj
if tg_type in _scalar_types:
# scalar cases
if is_pure_str(obj):
return obj
elif is_non_str_seq(obj):
if not len(obj):
return ""
obj = obj[0]
return str(obj)
# sequence cases
if obj is None:
return ""
return "\n".join([str(i) for i in obj])
def _append_dict_to_db_data(db_data, value):
for k, v in value.items():
if isinstance(v, DbDatum):
db_data.append(v)
continue
db_datum = DbDatum(k)
if is_non_str_seq(v):
seq_2_StdStringVector(v, db_datum.value_string)
else:
if not is_pure_str(v):
v = str(v)
v = ensure_binary(v, encoding="latin-1")
db_datum.value_string.append(v)
db_data.append(db_datum)
def parameter_2_dbdata(param, param_name):
if isinstance(param, DbData):
return param
elif isinstance(param, DbDatum):
new_param = DbData()
new_param.append(param)
return new_param
elif is_pure_str(param):
new_param = DbData()
new_param.append(DbDatum(param))
return new_param
elif is_non_str_seq(param):
return seq_2_DbData(param)
elif isinstance(param, collections.abc.Mapping):
new_param = DbData()
if len(param) > 0:
# for attributes we have nested dict
first_dict_value = next(iter(param.values()))
if isinstance(first_dict_value, collections.abc.Mapping):
for k1, v1 in param.items():
attr = DbDatum(k1)
attr.append(str(len(v1)))
new_param.append(attr)
_append_dict_to_db_data(new_param, v1)
else:
_append_dict_to_db_data(new_param, param)
return new_param
raise TypeError(
f"{param_name} must be a str, tango.DbDatum, tango.DbData, a sequence<DbDatum>, a sequence<str> or a dictionary"
)
def get_property_from_db(self, propname, user_dbdata):
if user_dbdata is None:
user_dbdata = DbData()
if is_pure_str(propname):
self._get_property(propname, user_dbdata)
return DbData_2_dict(user_dbdata)
elif isinstance(propname, (collections.abc.Sequence, StdStringVector)):
if len(propname) == 0:
return {}
all_str = True
for p in propname:
if not is_pure_str(p):
all_str = False
break
if all_str:
self._get_property(propname, user_dbdata)
return DbData_2_dict(user_dbdata)
dbdata = parameter_2_dbdata(propname, "propname")
if len(dbdata) == 0:
return {}
self._get_property(dbdata)
return DbData_2_dict(dbdata)
def __get_meth_func(klass, method_name):
meth = getattr(klass, method_name)
func = meth
if hasattr(meth, "__func__"):
func = meth.__func__
elif hasattr(meth, "im_func"):
func = meth.im_func
return meth, func
def copy_doc(klass, fnname):
"""Copies documentation string of a method from the super class into the
rewritten method of the given class"""
_, base_func = __get_meth_func(klass.__base__, fnname)
_, func = __get_meth_func(klass, fnname)
func.__doc__ = base_func.__doc__
def document_method(klass, method_name, d, add=True):
meth, func = __get_meth_func(klass, method_name)
if add:
cpp_doc = meth.__doc__
if cpp_doc:
func.__doc__ = f"{d}\n{cpp_doc}"
return
func.__doc__ = d
if func.__name__ != method_name:
with contextlib.suppress(AttributeError):
func.__name__ = method_name
def document_static_method(klass, method_name, d, add=True):
meth, _ = __get_meth_func(klass, method_name)
if add:
cpp_doc = meth.__doc__
if cpp_doc:
meth.__doc__ = f"{d}\n{cpp_doc}"
return
meth.__doc__ = d
class CaselessList(list):
"""A case insensitive lists that has some caseless methods. Only allows
strings as list members. Most methods that would normally return a list,
return a CaselessList. (Except list() and lowercopy())
Sequence Methods implemented are :
__contains__, remove, count, index, append, extend, insert,
__getitem__, __setitem__, __getslice__, __setslice__
__add__, __radd__, __iadd__, __mul__, __rmul__
Plus Extra methods:
findentry, copy , lowercopy, list
Inherited methods :
__imul__, __len__, __iter__, pop, reverse, sort
"""
def __init__(self, inlist=None):
list.__init__(self)
if inlist is None:
inlist = []
for entry in inlist:
if not isinstance(entry, str):
raise TypeError(
f'Members of this object must be strings. You supplied "{entry}" which is "{type(entry)}"'
)
self.append(entry)
def findentry(self, item):
"""A caseless way of checking if an item is in the list or not.
It returns None or the entry."""
if not isinstance(item, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(item)}"')
for entry in self:
if item.lower() == entry.lower():
return entry
return None
def __contains__(self, item):
"""A caseless way of checking if a list has a member in it or not."""
return any(item.lower() == entry.lower() for entry in self)
def remove(self, item):
"""Remove the first occurence of an item, the caseless way."""
for entry in self:
if item.lower() == entry.lower():
list.remove(self, entry)
return
raise ValueError(": list.remove(x): x not in list")
def copy(self):
"""Return a CaselessList copy of self."""
return CaselessList(self)
def list(self):
"""Return a normal list version of self."""
return list(self)
def lowercopy(self):
"""Return a lowercase (list) copy of self."""
return [entry.lower() for entry in self]
def append(self, item):
"""Adds an item to the list and checks it's a string."""
if not isinstance(item, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(item)}"')
list.append(self, item)
def extend(self, item):
"""Extend the list with another list. Each member of the list must be
a string."""
if not isinstance(item, list):
raise TypeError(f'You can only extend lists with lists. You supplied "{type(item)}"')
for entry in item:
if not isinstance(entry, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(entry)}"')
list.append(self, entry)
def count(self, item):
"""Counts references to 'item' in a caseless manner.
If item is not a string it will always return 0."""
if not isinstance(item, str):
return 0
count = 0
for entry in self:
if item.lower() == entry.lower():
count += 1
return count
def index(self, item, minindex=0, maxindex=None):
"""Provide an index of first occurence of item in the list. (or raise
a ValueError if item not present)
If item is not a string, will raise a TypeError.
minindex and maxindex are also optional arguments
s.index(x[, i[, j]]) return smallest k such that s[k] == x and i <= k < j
"""
if maxindex is None:
maxindex = len(self)
minindex = max(0, minindex) - 1
maxindex = min(len(self), maxindex)
if not isinstance(item, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(item)}"')
index = minindex
while index < maxindex:
index += 1
if item.lower() == self[index].lower():
return index
raise ValueError(": list.index(x): x not in list")
def insert(self, i, x):
"""s.insert(i, x) same as s[i:i] = [x]
Raises TypeError if x isn't a string."""
if not isinstance(x, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(x)}"')
list.insert(self, i, x)
def __setitem__(self, index, value):
"""For setting values in the list.
index must be an integer or (extended) slice object. (__setslice__ used
for simple slices)
If index is an integer then value must be a string.
If index is a slice object then value must be a list of strings - with
the same length as the slice object requires.
"""
if isinstance(index, int):
if not isinstance(value, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(value)}"')
list.__setitem__(self, index, value)
elif isinstance(index, slice):
if not hasattr(value, "__len__"):
raise TypeError("Value given to set slice is not a sequence object.")
for entry in value:
if not isinstance(entry, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(entry)}"')
list.__setitem__(self, index, value)
else:
raise TypeError("Indexes must be integers or slice objects.")
def __setslice__(self, i, j, sequence):
"""Called to implement assignment to self[i:j]."""
for entry in sequence:
if not isinstance(entry, str):
raise TypeError(f'Members of this object must be strings. You supplied "{type(entry)}"')
list.__setslice__(self, i, j, sequence)
def __getslice__(self, i, j):
"""Called to implement evaluation of self[i:j].
Although the manual says this method is deprecated - if I don't define
it the list one is called.
(Which returns a list - this returns a CaselessList)"""
return CaselessList(list.__getslice__(self, i, j))
def __getitem__(self, index):
"""For fetching indexes.
If a slice is fetched then the list returned is a CaselessList."""
if not isinstance(index, slice):
return list.__getitem__(self, index)
else:
return CaselessList(list.__getitem__(self, index))
def __add__(self, item):
"""To add a list, and return a CaselessList.
Every element of item must be a string."""
return CaselessList(list.__add__(self, item))
def __radd__(self, item):
"""To add a list, and return a CaselessList.
Every element of item must be a string."""
return CaselessList(list.__add__(self, item))
def __iadd__(self, item):
"""To add a list in place."""
for entry in item:
self.append(entry)
def __mul__(self, item):
"""To multiply itself, and return a CaselessList.
Every element of item must be a string."""
return CaselessList(list.__mul__(self, item))
def __rmul__(self, item):
"""To multiply itself, and return a CaselessList.
Every element of item must be a string."""
return CaselessList(list.__rmul__(self, item))
class CaselessDict(dict):
def __init__(self, other=None):
if other:
# Doesn't do keyword args
if isinstance(other, dict):
for k, v in other.items():
dict.__setitem__(self, k.lower(), v)
else:
for k, v in other:
dict.__setitem__(self, k.lower(), v)
def __getitem__(self, key):
return dict.__getitem__(self, key.lower())
def __setitem__(self, key, value):
dict.__setitem__(self, key.lower(), value)
def __contains__(self, key):
return dict.__contains__(self, key.lower())
def __delitem__(self, k):
dict.__delitem__(self, k.lower())
def has_key(self, key):
return key.lower() in self
def get(self, key, def_val=None):
return dict.get(self, key.lower(), def_val)
def setdefault(self, key, def_val=None):
return dict.setdefault(self, key.lower(), def_val)
def update(self, other):
for k, v in other.items():
dict.__setitem__(self, k.lower(), v)
def fromkeys(self, iterable, value=None):
d = CaselessDict()
for k in iterable:
dict.__setitem__(d, k.lower(), value)
return d
def pop(self, key, def_val=None):
return dict.pop(self, key.lower(), def_val)
def keys(self):
return CaselessList(dict.keys(self))
[docs]
class EventCallback:
"""
Useful event callback for test purposes
Usage::
>>> dev = tango.DeviceProxy(dev_name)
>>> cb = tango.utils.EventCallback()
>>> id = dev.subscribe_event("state", tango.EventType.CHANGE_EVENT, cb, [])
2011-04-06 15:33:18.910474 sys/tg_test/1 STATE CHANGE [ATTR_VALID] ON
Allowed format keys are:
- date (event timestamp)
- reception_date (event reception timestamp)
- type (event type)
- reason (event subscription reason)
- dev_name (device name)
- name (attribute name)
- value (event value)
.. versionadded:: 7.1.4
"""
def __init__(
self,
format="{date} {dev_name} {name} {type} {reason} {value}",
fd=sys.stdout,
max_buf=100,
):
self._msg = format
self._fd = fd
self._evts = []
self._max_buf = max_buf
[docs]
def get_events(self):
"""Returns the list of events received by this callback
:return: the list of events received by this callback
:rtype: sequence<obj>
"""
return self._evts
[docs]
def push_event(self, evt):
"""Internal usage only"""
try:
self._push_event(evt)
except Exception as e:
print(f"Unexpected error in callback for {evt}: {e}", file=self._fd)
def _push_event(self, evt):
"""Internal usage only"""
self._append(evt)
import datetime
now = datetime.datetime.now()
try:
date = self._get_date(evt)
except Exception:
date = now
try:
reception_date = evt.reception_date.todatetime()
except Exception:
reception_date = now
try:
evt_type = evt.event.upper()
except Exception:
evt_type = "<UNKNOWN>"
try:
evt_reason = str(evt.event_reason).upper()
except Exception:
evt_reason = "<UNKNOWN>"
try:
dev_name = evt.device.dev_name().upper()
except Exception:
dev_name = "<UNKNOWN>"
try:
if hasattr(evt, "attr_name"):
attr_name = evt.attr_name.split("/")[-1].upper()
attr_name = attr_name.removesuffix("#DBASE=NO")
else:
attr_name = "<N/A>"
except Exception:
attr_name = "<UNKNOWN>"
try:
value = self._get_value(evt)
except Exception as e:
value = f"Unexpected exception in getting event value: {e}"
d = {
"date": date,
"reception_date": reception_date,
"type": evt_type,
"reason": evt_reason,
"dev_name": dev_name,
"name": attr_name,
"value": value,
}
print(self._msg.format(**d), file=self._fd)
def _append(self, evt):
"""Internal usage only"""
evts = self._evts
if len(evts) == self._max_buf:
evts.pop(0)
evts.append(evt)
def _get_date(self, evt):
if isinstance(evt, EventData):
return evt.attr_value.time.todatetime()
else:
return evt.get_date().todatetime()
def _get_value(self, evt):
"""Internal usage only"""
if evt.err:
e = evt.errors[0]
return f"[{e.reason}] {e.desc}"
if isinstance(evt, EventData):
if evt.attr_value is None and evt.event_reason == EventReason.SubSuccess:
return "<N/A>" # assume EventSubMode.Async which provides no value
else:
return f"[{evt.attr_value.quality}] {evt.attr_value.value}"
elif isinstance(evt, AttrConfEventData):
cfg = evt.attr_conf
return f"label='{cfg.label}'; unit='{cfg.unit}'"
elif isinstance(evt, DataReadyEventData):
return f"ctr={evt.ctr}"
elif isinstance(evt, DevIntrChangeEventData):
return f"dev_started={evt.dev_started}; {len(evt.cmd_list)} commands; {len(evt.att_list)} attrs"
class AsyncEventCallback(EventCallback):
async def push_event(self, evt):
"""Internal usage only"""
try:
self._push_event(evt)
except Exception as e:
print(f"Unexpected error in callback for {evt}: {e}", file=self._fd)
[docs]
def get_home():
"""
Find user's home directory if possible. Otherwise raise error.
:return: user's home directory
:rtype: :py:obj:`str`
.. versionadded:: 7.1.4
"""
path = ""
with contextlib.suppress(Exception):
path = os.path.expanduser("~")
if not os.path.isdir(path):
for evar in ("HOME", "USERPROFILE", "TMP"):
try:
path = os.environ[evar]
if os.path.isdir(path):
break
except Exception:
pass
if path:
return path
else:
raise RuntimeError("please define environment variable $HOME")
def _get_env_var(env_var_name):
"""
Returns the value for the given environment name
Search order:
* a real environ var
* HOME/.tangorc
* /etc/tangorc
:param env_var_name: the environment variable name
:type env_var_name: str
:return: the value for the given environment name
:rtype: str
.. versionadded:: 7.1.4
"""
if env_var_name in os.environ:
return os.environ[env_var_name]
fname = os.path.join(get_home(), ".tangorc")
if not os.path.exists(fname) and os.name == "posix":
fname = "/etc/tangorc"
if not os.path.exists(fname):
return None
with open(fname) as fh:
lines = fh.readlines()
for line in lines:
strippedline = line.split("#", 1)[0].strip()
if not strippedline:
# empty line
continue
tup = strippedline.split("=", 1)
if len(tup) != 2:
# illegal line!
continue
key, val = map(str.strip, tup)
if key == env_var_name:
return val
def from_version_str_to_hex_str(version_str):
v = list(map(int, version_str.split(".")))
return f"0x{v[0]:02x}{v[1]:02x}{v[2]:02x}00"
def from_version_str_to_int(version_str):
return int(from_version_str_to_hex_str(version_str), 16)
def info():
# Compile and Runtime are set by `tango.pytango_init.init`
from tango.constants import Compile, Runtime
msg = f"""\
PyTango {Release.version_long} {Release.version_info}
PyTango compiled with:
Python : {Compile.PY_VERSION}
Numpy : {Compile.NUMPY_VERSION}
Tango : {Compile.TANGO_VERSION}
pybind11 : {Compile.PYBIND11_VERSION}
PyTango runtime is:
Python : {Runtime.PY_VERSION}
Numpy : {Runtime.NUMPY_VERSION}
Tango : {Runtime.TANGO_VERSION}
PyTango running on:
{Runtime.UNAME}
"""
return msg
def get_attrs(obj):
"""Helper for dir2 implementation."""
if not hasattr(obj, "__dict__"):
return [] # slots only
proxy_type = types.MappingProxyType
if not isinstance(obj.__dict__, (dict, proxy_type)):
print(type(obj.__dict__), obj)
raise TypeError(f"{obj.__name__}.__dict__ is not a dictionary")
return obj.__dict__.keys()
def dir2(obj):
"""Default dir implementation.
Inspired by gist: katyukha/dirmixin.py
https://gist.github.com/katyukha/c6e5e2b829e247c9b009
"""
attrs = set()
if not hasattr(obj, "__bases__"):
# obj is an instance
if not hasattr(obj, "__class__"):
# slots
return sorted(get_attrs(obj))
klass = obj.__class__
attrs.update(get_attrs(klass))
else:
# obj is a class
klass = obj
for cls in klass.__bases__:
attrs.update(get_attrs(cls))
attrs.update(dir2(cls))
attrs.update(get_attrs(obj))
return list(attrs)
def ensure_binary(s, encoding="utf-8", errors="strict"):
"""Coerce **s** to the bytes type.
For Python 3:
- `str` -> encoded to `bytes`
- `bytes` -> `bytes`
Code taken from https://github.com/benjaminp/six/blob/1.12.0/six.py#L853
"""
if isinstance(s, str):
return s.encode(encoding, errors)
elif isinstance(s, bytes):
return s
else:
raise TypeError(f"not expecting type '{type(s)}'")
class PyTangoHelpFormatter(HelpFormatter):
def _format_usage(self, usage, actions, groups, prefix):
usage = super()._format_usage(usage, actions, groups, prefix)
try:
db = Database()
servers_list = db.get_instance_name_list(self._prog)
if servers_list.size():
usage += f"Instance names defined in database for server {self._prog}:\n"
for server in servers_list:
usage += "\t" + str(server) + "\n"
else:
usage += f"Warning! No defined instance in database for server {self._prog} found!\n"
except DevFailed:
pass
return usage
__TEST_CONTEXT_HOST_TRL = None
def _set_test_context_tango_host_fqtrl(host_trl):
"""For PyTango internal use only!"""
# NOTE: we only keep one value so if multiple TestContexts are started in
# the same process, only the latest one will be used
if host_trl is not None:
global __TEST_CONTEXT_HOST_TRL
__TEST_CONTEXT_HOST_TRL = host_trl
def _clear_test_context_tango_host_fqtrl():
"""For PyTango internal use only!"""
global __TEST_CONTEXT_HOST_TRL
__TEST_CONTEXT_HOST_TRL = None
def _get_test_context_tango_host_fqtrl():
"""For PyTango internal use only!"""
return __TEST_CONTEXT_HOST_TRL
def _get_device_fqtrl_if_necessary(device_trl):
"""For PyTango internal use only!"""
if __TEST_CONTEXT_HOST_TRL:
device_trl = _get_device_fqtrl(device_trl, __TEST_CONTEXT_HOST_TRL)
return device_trl
def _get_device_fqtrl(device_trl, host_trl):
parsed_device = urlparse(device_trl)
if not _is_tango_uri_resolved(parsed_device):
parsed_host = urlparse(host_trl)
device_trl = _try_resolve_tango_trl(parsed_host, parsed_device)
return device_trl
def _is_tango_uri_resolved(parsed_device):
return parsed_device.scheme == "tango"
def _try_resolve_tango_trl(parsed_host, parsed_device):
if not _is_valid_tango_trl(parsed_host):
raise InvalidTangoHostTrlError(
f"Invalid form for Tango host: {parsed_host!r}, device {parsed_device!r}. "
f"(Override set to: {__TEST_CONTEXT_HOST_TRL})."
)
return _resolve_tango_trl(parsed_host, parsed_device)
def _is_valid_tango_trl(parsed_host):
scheme_ok = parsed_host.scheme == "tango"
hostname_ok = bool(parsed_host.hostname)
port_ok = bool(parsed_host.port)
path_ok = parsed_host.path == ""
params_ok = parsed_host.params == ""
query_ok = parsed_host.query == ""
fragment_ok = parsed_host.fragment in ["", "dbase=no", "dbase=yes"]
return scheme_ok and hostname_ok and port_ok and path_ok and params_ok and query_ok and fragment_ok
def _resolve_tango_trl(parsed_host, parsed_device):
return urlunparse(
[
parsed_host.scheme,
parsed_host.netloc,
parsed_device.path,
parsed_host.params,
parsed_host.query,
parsed_host.fragment,
]
)
class InvalidTangoHostTrlError(ValueError):
"""Invalid Tango Resource Locator format for TANGO_HOST-like variable."""
def _is_coroutine_function(obj):
while isinstance(obj, functools.partial):
obj = obj.func
return inspect.iscoroutinefunction(obj) or (callable(obj) and inspect.iscoroutinefunction(obj.__call__))
[docs]
def set_telemetry_tracer_provider_factory(provider_factory):
"""
Change the factory that will be used to create tracer providers.
Import this function from :mod:`tango.telemetry` instead.
.. versionadded:: 10.0.0
.. deprecated:: 10.3.0
"""
warn_once(
"tango.utils.set_telemetry_tracer_provider_factory is deprecated; import it from tango.telemetry instead.",
key="deprecated:tango.utils.set_telemetry_tracer_provider_factory",
category=DeprecationWarning,
stacklevel=2,
)
return _telemetry_set_tracer_provider_factory(provider_factory)
[docs]
def get_telemetry_tracer_provider_factory():
"""
Get the factory that will be used to create tracer providers.
Import this function from :mod:`tango.telemetry` instead.
.. versionadded:: 10.0.0
.. deprecated:: 10.3.0
"""
warn_once(
"tango.utils.get_telemetry_tracer_provider_factory is deprecated; import it from tango.telemetry instead.",
key="deprecated:tango.utils.get_telemetry_tracer_provider_factory",
category=DeprecationWarning,
stacklevel=2,
)
return _telemetry_get_tracer_provider_factory()
# Since cppTango based on omniThreads, we have to slightly modify ThreadPoolExecutor,
# to use threads with ensured dummy omniORB ID
#
# The `_adjust_thread_count` method below is a slightly modified version of the code from
# https://github.com/python/cpython/blob/3.12/Lib/concurrent/futures/thread.py
# and
# https://github.com/python/cpython/blob/3.14/Lib/concurrent/futures/thread.py
# Copyright (c) Python Software Foundation; All Rights Reserved
from concurrent.futures import ThreadPoolExecutor
from concurrent.futures.thread import _threads_queues, _worker
[docs]
class PyTangoThreadPoolExecutor(ThreadPoolExecutor):
"""
Based on :class:`concurrent.futures.ThreadPoolExecutor`,
but additionally ensures every running thread is a dummy omniORB thread.
The :class:`tango.EnsureOmniThread` context handler is automatically active for
the lifetime of the all the thread pool's threads.
.. versionadded:: 10.0.0
"""
def _adjust_thread_count(self):
# if idle threads are available, don't spin new threads
if self._idle_semaphore.acquire(timeout=0):
return
# When the executor gets lost, the weakref callback will wake up
# the worker threads.
def weakref_cb(_, q=self._work_queue):
q.put(None)
num_threads = len(self._threads)
if num_threads < self._max_workers:
thread_name = f"{self._thread_name_prefix or self}_{num_threads}"
if hasattr(self, "_initializer"):
# Python < 3.14
t = threading.Thread(
name=thread_name,
target=_thread_pool_executor_worker,
args=(
weakref.ref(self, weakref_cb),
self._work_queue,
self._initializer,
self._initargs,
),
)
else:
# Python >= 3.14
t = threading.Thread(
name=thread_name,
target=_thread_pool_executor_ctx_worker,
args=(
weakref.ref(self, weakref_cb),
self._create_worker_context(),
self._work_queue,
),
)
t.start()
self._threads.add(t)
_threads_queues[t] = self._work_queue
# Override _worker for Python < 3.14
def _thread_pool_executor_worker(executor_reference, work_queue, initializer, initargs):
with EnsureOmniThread():
_worker(executor_reference, work_queue, initializer, initargs)
# Override _worker for Python >= 3.14
def _thread_pool_executor_ctx_worker(executor_reference, ctx, work_queue):
with EnsureOmniThread():
_worker(executor_reference, ctx, work_queue)
[docs]
class PyTangoThread(threading.Thread):
"""
Based on :class:`threading.Thread`, but additionally ensures it is a dummy omniORB thread.
The :class:`tango.EnsureOmniThread` handler is automatically active for the lifetime of the
thread.
.. versionadded:: 10.3.0
"""
def _bootstrap_inner(self):
with EnsureOmniThread():
super()._bootstrap_inner()
def _get_new_CallbackAutoDie():
id = time.time_ns()
cb = __CallBackAutoDie(id)
__auto_die_callbacks_holder[id] = cb
return cb
def _release_CallbackAutoDie(id):
if id in __auto_die_callbacks_holder:
del __auto_die_callbacks_holder[id]
def _get_command_inout_param(self, cmd_name, cmd_param=None):
if cmd_param is None:
return DeviceData()
if isinstance(cmd_param, DeviceData):
return cmd_param
if isinstance(self, DeviceProxy):
# This is not part of 'Connection' interface, but
# DeviceProxy only.
info = self.command_query(cmd_name)
param = DeviceData()
try:
param.insert(info.in_type, cmd_param)
except TypeError as err:
raise TypeError(
f"Invalid input argument for command {cmd_name}: "
f"{cmd_param!r} cannot be converted to type {info.in_type}"
) from err
return param
elif isinstance(self, __Group):
if self.get_size() == 0:
return DeviceData()
if isinstance(cmd_param, DeviceDataList):
return cmd_param
last_cause = None
try:
types = set()
typ = None
for idx in range(1, self.get_size() + 1):
dev = self.get_device(idx)
try:
typ = dev.command_query(cmd_name).in_type
types.add(typ)
except DevFailed as df:
last_cause = df
if not types:
if last_cause:
Except.re_throw_exception(
last_cause,
"PyAPI_GroupCommandArgInTypeUnknown",
"Cannot fetch at least one command type in group.",
"Group.command_inout_asynch",
)
else:
Except.throw_exception(
"PyAPI_GroupCommandArgInTypeUnknown",
"Cannot fetch at least one command type in group. Unknown cause.",
"Group.command_inout_asynch",
)
elif len(types) > 1:
raise TypeError(f"Cannot execute command with more than one type in group, types are:\n{types}")
finally:
del last_cause
param = DeviceData()
try:
param.insert(typ, cmd_param)
except TypeError as err:
raise TypeError(
f"Invalid input argument for command {cmd_name}: {cmd_param!r} cannot be converted to type {typ}"
) from err
return param
elif isinstance(self, Database):
# I just try to guess types DevString and DevVarStringArray
# as they are used for Database
param = DeviceData()
if isinstance(cmd_param, str):
param.insert(CmdArgType.DevString, cmd_param)
return param
elif isinstance(cmd_param, collections.abc.Sequence) and all(isinstance(x, str) for x in cmd_param):
param.insert(CmdArgType.DevVarStringArray, cmd_param)
return param
else:
raise TypeError(
"command_inout() parameter must be a DeviceData object or a string or a sequence of strings"
)
else:
raise TypeError("command_inout() parameter must be a DeviceData object.")
def _exception_converter(exception):
# if user managed to create DevFailed, we do not need to convert it
if isinstance(exception, DevFailed):
return exception
else:
if exception.__traceback__ is None:
# to generate DevFailed we need traceback
# if user does not provide one (Exception.with_traceback), we generate our
try:
raise Exception()
except Exception:
# to get to the frame, where user called push_event
traceback = sys.exc_info()[2]
try:
user_frame = traceback.tb_frame.f_back.f_back
exception.__traceback__ = types.TracebackType(
None, user_frame, user_frame.f_lasti, user_frame.f_lineno
)
except Exception:
# if fails, use what we have
try:
Except.throw_exception(
reason="PyDs_PythonError",
description=repr(exception),
origin="UNKNOWN: cannot get Python's traceback",
severity=ErrSeverity.ERR,
)
except DevFailed as err:
return err
return Except.to_dev_failed(exception.__class__, exception, exception.__traceback__)
class _InterfaceDefinedByIDL:
_initialized = False
def __setattr__(self, name, value):
if name not in self.__dict__ and self._initialized:
raise AttributeError(f"tango._tango.{self.__class__.__name__} object has no attribute '{name}'")
return super().__setattr__(name, value)
def _check_only_allowed_kwargs(call_kwargs, allowed_keys):
unexpected_keys = call_kwargs.keys() - allowed_keys
if unexpected_keys:
raise TypeError(
f"Got unexpected keyword argument(s): {', '.join(unexpected_keys)}.\n"
f"Allowed keys are: {', '.join(sorted(allowed_keys))}"
)
# Helper class to replace deprecated object
class _RemovedClass:
def __init__(self, message):
self._message = message
def _trigger_error(self, *args, **kwargs):
raise AttributeError(self._message)
__getattr__ = _trigger_error
__call__ = _trigger_error
__getitem__ = _trigger_error