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 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
|
# SPDX-FileCopyrightText: All Contributors to the PyTango project
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Define python methods for DeviceProxy object."""
from __future__ import annotations
import time
import textwrap
import threading
import functools
import enum
import collections.abc
import warnings
import collections
from typing import Any, Tuple, Dict
from tango.utils import PyTangoUserWarning
from tango._tango import StdStringVector, AttributeInfo, EventSubMode, DbDatum, DbData
from tango._tango import AttributeInfoEx, AttributeInfoList, AttributeInfoListEx
from tango._tango import DeviceProxy, __EventCallBack
from tango._tango import EventType, DevFailed, Except, ExtractAs, GreenMode
from tango._tango import constants
from tango._tango import (
CmdArgType,
DevState,
DeviceAttribute,
CommandInfoList,
CommandInfo,
)
from tango.utils import is_pure_str, is_non_str_seq, is_integer
from tango.utils import seq_2_StdStringVector, StdStringVector_2_seq
from tango.utils import parameter_2_dbdata, get_property_from_db
from tango.utils import dir2
from tango.utils import _get_device_fqtrl_if_necessary
from tango.utils import _trace_client, _forcefully_traced_method
from tango.utils import _get_new_CallbackAutoDie
from tango.utils import _check_only_allowed_kwargs
from tango.green import green, green_callback
from tango.green import get_green_mode
__all__ = ("device_proxy_init", "get_device_proxy")
__docformat__ = "restructuredtext"
_UNSUBSCRIBE_LIFETIME = 60
@green(consume_green_mode=False)
@_trace_client
def get_device_proxy(
*args, green_mode=None, executor=None, threadpool=None, asyncio_executor=None
):
"""get_device_proxy(self, dev_name, green_mode=None, wait=True, timeout=True) -> DeviceProxy
get_device_proxy(self, dev_name, need_check_acc, green_mode=None, wait=True, timeout=None) -> DeviceProxy
Returns a new :class:`~tango.DeviceProxy`.
There is no difference between using this function and the direct
:class:`~tango.DeviceProxy` constructor if you use the default kwargs.
The added value of this function becomes evident when you choose a green_mode
to be *Futures* or *Gevent* or *Asyncio*. The DeviceProxy constructor internally
makes some network calls which makes it *slow*. By using one of the *green modes* as
green_mode you are allowing other python code to be executed in a cooperative way.
.. note::
The timeout parameter has no relation with the tango device client side
timeout (gettable by :meth:`~tango.DeviceProxy.get_timeout_millis` and
settable through :meth:`~tango.DeviceProxy.set_timeout_millis`)
:param dev_name: the device name or alias
:type dev_name: str
:param need_check_acc: in first version of the function it defaults to True.
Determines if at creation time of DeviceProxy it should check
for channel access (rarely used)
:type need_check_acc: bool
:param green_mode: determines the mode of execution of the device (including
the way it is created). Defaults to the current global
green_mode (check :func:`~tango.get_green_mode` and
:func:`~tango.set_green_mode`)
:type green_mode: :obj:`~tango.GreenMode`
:param wait: whether or not to wait for result. If green_mode
Ignored when green_mode is Synchronous (always waits).
:type wait: bool
:param timeout: The number of seconds to wait for the result.
If None, then there is no limit on the wait time.
Ignored when green_mode is Synchronous or wait is False.
:type timeout: float
:returns:
if green_mode is Synchronous or wait is True:
:class:`~tango.DeviceProxy`
else if green_mode is Futures:
:class:`concurrent.futures.Future`
else if green_mode is Gevent:
:class:`gevent.event.AsynchResult`
else if green_mode is Asyncio:
:class:`asyncio.Future`
:throws:
* a *DevFailed* if green_mode is Synchronous or wait is True
and there is an error creating the device.
* a *concurrent.futures.TimeoutError* if green_mode is Futures,
wait is False, timeout is not None and the time to create the device
has expired.
* a *gevent.timeout.Timeout* if green_mode is Gevent, wait is False,
timeout is not None and the time to create the device has expired.
* a *asyncio.TimeoutError* if green_mode is Asyncio,
wait is False, timeout is not None and the time to create the device
has expired.
New in PyTango 8.1.0
"""
return DeviceProxy(
*args,
green_mode=green_mode,
executor=executor,
threadpool=threadpool,
asyncio_executor=asyncio_executor,
)
class __TangoInfo:
"""Helper class for copying DeviceInfo, or when DeviceProxy.info() fails."""
def __init__(
self,
dev_class,
dev_type,
doc_url,
server_host,
server_id,
server_version,
):
self.dev_class = str(dev_class)
self.dev_type = str(dev_type)
self.doc_url = str(doc_url)
self.server_host = str(server_host)
self.server_id = str(server_id)
self.server_version = int(server_version)
@classmethod
def from_defaults(cls):
return cls(
dev_class="Device",
dev_type="Device",
doc_url="Doc URL = https://www.tango-controls.org/developers/dsc",
server_host="Unknown",
server_id="Unknown",
server_version=1,
)
@classmethod
def from_copy(cls, info):
return cls(
dev_class=info.dev_class,
dev_type=info.dev_type,
doc_url=info.doc_url,
server_host=info.server_host,
server_id=info.server_id,
server_version=info.server_version,
)
# -------------------------------------------------------------------------------
# Pythonic API: transform tango commands into methods and tango attributes into
# class members
# -------------------------------------------------------------------------------
def __check_read_attribute(dev_attr):
if dev_attr.has_failed:
raise DevFailed(*dev_attr.get_err_stack())
return dev_attr
def __init_device_proxy_internals(proxy):
if proxy.__dict__.get("_initialized", False):
return
executors = {key: None for key in GreenMode.values.values()}
proxy.__dict__["_green_mode"] = None
proxy.__dict__["_dynamic_interface_frozen"] = True
proxy.__dict__["_initialized"] = True
proxy.__dict__["_executors"] = executors
proxy.__dict__["_pending_unsubscribe"] = {}
def __DeviceProxy__get_cmd_cache(self):
try:
ret = self.__dict__["__cmd_cache"]
except KeyError:
self.__dict__["__cmd_cache"] = ret = {}
return ret
def __DeviceProxy__get_attr_cache(self):
try:
ret = self.__dict__["__attr_cache"]
except KeyError:
self.__dict__["__attr_cache"] = ret = {}
return ret
def __DeviceProxy____init__(
self, *args, green_mode=None, executor=None, threadpool=None, asyncio_executor=None
):
__init_device_proxy_internals(self)
self.__dict__["_initialized"] = False
self.__dict__["_green_mode"] = green_mode
self.__dict__["_executors"][GreenMode.Futures] = executor
self.__dict__["_executors"][GreenMode.Gevent] = threadpool
self.__dict__["_executors"][GreenMode.Asyncio] = asyncio_executor
# If TestContext active, short TRL is replaced with fully-qualified
# TRL, using test server's connection details. Otherwise, left as-is.
device_name = args[0]
new_device_name = _get_device_fqtrl_if_necessary(device_name)
new_args = [new_device_name] + list(args[1:])
try:
DeviceProxy.__init_orig__(self, *new_args)
except DevFailed as orig_err:
if new_device_name != device_name:
# If device was not found, it could be an attempt to access a real device
# with short name while running TestContext. I.e., we need to use the
# short name so that the real TANGO_HOST will be tried.
try:
DeviceProxy.__init_orig__(self, *args)
except DevFailed as retry_exc:
Except.re_throw_exception(
retry_exc,
"PyAPI_DeviceProxyInitFailed",
f"Failed to create DeviceProxy "
f"(tried {new_device_name!r} => {orig_err.args[0].reason}, and "
f"{device_name!r} => {retry_exc.args[0].reason})",
"__DeviceProxy__init__",
)
else:
raise
self.__dict__["_initialized"] = True
def __DeviceProxy__get_green_mode(self):
"""Returns the green mode in use by this DeviceProxy.
:returns: the green mode in use by this DeviceProxy.
:rtype: GreenMode
.. seealso::
:func:`tango.get_green_mode`
:func:`tango.set_green_mode`
New in PyTango 8.1.0
"""
gm = self._green_mode
if gm is None:
gm = get_green_mode()
return gm
def __DeviceProxy__set_green_mode(self, green_mode=None):
"""Sets the green mode to be used by this DeviceProxy
Setting it to None means use the global PyTango green mode
(see :func:`tango.get_green_mode`).
:param green_mode: the new green mode
:type green_mode: GreenMode
New in PyTango 8.1.0
"""
self._green_mode = green_mode
def __DeviceProxy__refresh_cmd_cache(self):
cmd_list = self.command_list_query()
cmd_cache = {}
for cmd in cmd_list:
n = cmd.cmd_name.lower()
doc = f"{cmd.cmd_name}({cmd.in_type}) -> {cmd.out_type}\n\n"
doc += f" - in ({cmd.in_type}): {cmd.in_type_desc}\n"
doc += f" - out ({cmd.out_type}): {cmd.out_type_desc}\n"
cmd_cache[n] = cmd, doc
self.__dict__["__cmd_cache"] = cmd_cache
def __DeviceProxy__refresh_attr_cache(self):
attr_list = self.attribute_list_query_ex()
attr_cache = {}
for attr in attr_list:
name = attr.name.lower()
enum_class = None
if attr.data_type == CmdArgType.DevEnum and attr.enum_labels:
enum_class = enum.IntEnum(attr.name, " ".join(attr.enum_labels), start=0)
elif attr.data_type == CmdArgType.DevState:
enum_class = DevState
attr_cache[name] = (
attr.name,
enum_class,
)
self.__dict__["__attr_cache"] = attr_cache
def __DeviceProxy__freeze_dynamic_interface(self):
"""Prevent unknown attributes to be set on this DeviceProxy instance.
An exception will be raised if the Python attribute set on this DeviceProxy
instance does not already exist. This prevents accidentally writing to
a non-existent Tango attribute when using the high-level API.
This is the default behaviour since PyTango 9.3.4.
See also :meth:`tango.DeviceProxy.unfreeze_dynamic_interface`.
.. versionadded:: 9.4.0
"""
self._dynamic_interface_frozen = True
def __DeviceProxy__unfreeze_dynamic_interface(self):
"""Allow new attributes to be set on this DeviceProxy instance.
An exception will not be raised if the Python attribute set on this DeviceProxy
instance does not exist. Instead, the new Python attribute will be added to
the DeviceProxy instance's dictionary of attributes. This may be useful, but
a user will not get an error if they accidentally write to a non-existent Tango
attribute when using the high-level API.
See also :meth:`tango.DeviceProxy.freeze_dynamic_interface`.
.. versionadded:: 9.4.0
"""
warnings.warn(
f"Dynamic interface unfrozen on DeviceProxy instance {self} id=0x{id(self):x} - "
f"arbitrary Python attributes can be set without raising an exception.",
category=PyTangoUserWarning,
)
self._dynamic_interface_frozen = False
def __DeviceProxy__is_dynamic_interface_frozen(self):
"""Indicates if the dynamic interface for this DeviceProxy instance is frozen.
See also :meth:`tango.DeviceProxy.freeze_dynamic_interface` and
:meth:`tango.DeviceProxy.unfreeze_dynamic_interface`.
:returns: True if the dynamic interface this DeviceProxy is frozen.
:rtype: bool
.. versionadded:: 9.4.0
"""
return self._dynamic_interface_frozen
def __get_command_func(dp, cmd_info, name):
_, doc = cmd_info
def f(*args, **kwds):
return dp.command_inout(name, *args, **kwds)
f.__doc__ = doc
return f
def __update_enum_values(attr_info, attr_value):
_, enum_class = attr_info
if enum_class and attr_value is not None:
if is_non_str_seq(attr_value):
ret = []
for value in attr_value:
if is_non_str_seq(value):
ret.append(tuple([enum_class(v) for v in value]))
else:
ret.append(enum_class(value))
return tuple(ret)
return enum_class(attr_value)
else:
return attr_value
async def __async_get_attribute_value(self, attr_info, name):
reading = await self.read_attribute(name)
return __update_enum_values(attr_info, reading.value)
def __sync_get_attribute_value(self, attr_info, name):
reading = self.read_attribute(name)
return __update_enum_values(attr_info, reading.value)
def __get_attribute_value(self, attr_info, name):
if self.get_green_mode() == GreenMode.Asyncio:
return __async_get_attribute_value(self, attr_info, name)
else:
return __sync_get_attribute_value(self, attr_info, name)
def __convert_str_to_enum(value, enum_class, attr_name):
try:
return enum_class[value]
except KeyError:
raise AttributeError(
f"Invalid enum value {value} for attribute {attr_name}. "
f"Valid values: {[m for m in enum_class.__members__.keys()]}"
)
def __set_attribute_value(self, name, value):
attr_info = self.__get_attr_cache().get(name.lower())
if attr_info:
# allow writing DevEnum attributes using string values
_, enum_class = attr_info
if enum_class:
if is_non_str_seq(value):
org_value = value
value = []
for val in org_value:
if is_non_str_seq(val):
value.append(
[
(
__convert_str_to_enum(v, enum_class, name)
if is_pure_str(v)
else v
)
for v in val
]
)
else:
value.append(
__convert_str_to_enum(val, enum_class, name)
if is_pure_str(val)
else val
)
elif is_pure_str(value):
value = __convert_str_to_enum(value, enum_class, name)
return self.write_attribute(name, value)
def __DeviceProxy__getattr(self, name):
cause = None
try:
# trait_names is a feature of IPython. Hopefully they will solve
# ticket http://ipython.scipy.org/ipython/ipython/ticket/229 someday
# and the ugly trait_names could be removed.
if name.startswith("_") or name == "trait_names":
raise AttributeError(name) from cause
name_l = name.lower()
cmd_info = self.__get_cmd_cache().get(name_l)
if cmd_info:
return __get_command_func(self, cmd_info, name)
attr_info = self.__get_attr_cache().get(name_l)
if attr_info:
try:
return __get_attribute_value(self, attr_info, name)
except DevFailed as err:
# it could be, that attribute was deleted and we have to re-create attribute cache
if err.args[0].reason != "API_AttrNotFound":
raise
try:
self.__refresh_cmd_cache()
except Exception as e:
if cause is None:
cause = e
cmd_info = self.__get_cmd_cache().get(name_l)
if cmd_info:
return __get_command_func(self, cmd_info, name)
try:
self.__refresh_attr_cache()
except Exception as e:
if cause is None:
cause = e
attr_info = self.__get_attr_cache().get(name_l)
if attr_info:
return __get_attribute_value(self, attr_info, name)
raise AttributeError(name) from cause
finally:
del cause
def __DeviceProxy__setattr(self, name, value):
cause = None
try:
name_l = name.lower()
if name_l in self.__get_cmd_cache():
raise TypeError("Cannot set the value of a command") from cause
if name_l in self.__get_attr_cache():
return __set_attribute_value(self, name, value)
try:
self.__refresh_cmd_cache()
except Exception as e:
if cause is None:
cause = e
if name_l in self.__get_cmd_cache():
raise TypeError("Cannot set the value of a command") from cause
try:
self.__refresh_attr_cache()
except Exception as e:
if cause is None:
cause = e
if name_l in self.__get_attr_cache():
return __set_attribute_value(self, name, value)
try:
if name in self.__dict__ or not self.is_dynamic_interface_frozen():
return super(DeviceProxy, self).__setattr__(name, value)
else:
raise AttributeError(
f"Tried to set non-existent attr {repr(name)} to {repr(value)}.\n"
f"The DeviceProxy object interface is frozen and cannot be modified - "
f"see tango.DeviceProxy.freeze_dynamic_interface for details."
)
except Exception as e:
raise e from cause
finally:
del cause
def __DeviceProxy__dir(self):
"""Return the attribute list including tango objects."""
extra_entries = set()
# Add commands
try:
extra_entries.update(self.get_command_list())
except Exception:
pass
# Add attributes
try:
extra_entries.update(self.get_attribute_list())
except Exception:
pass
# Merge with default dir implementation
extra_entries.update([x.lower() for x in extra_entries])
entries = extra_entries.union(dir2(self))
return sorted(entries)
def __DeviceProxy__getitem(self, key):
return self.read_attribute(key)
def __DeviceProxy__setitem(self, key, value):
return self.write_attribute(key, value)
def __DeviceProxy__contains(self, key):
return key.lower() in map(str.lower, self.get_attribute_list())
def __DeviceProxy__read_attribute(
self, value, extract_as=ExtractAs.Numpy
) -> DeviceAttribute:
"""
read_attribute(self, value, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> DeviceAttribute
Read a single attribute.
:param value: The name of the attribute to read.
:type value: str
:param extract_as: Defaults to numpy.
:type extract_as: :obj:`tango.ExtractAs`
__GREEN_KWARGS_DESCRIPTION__
:return: DeviceAttribute object with read attribute value.
:rtype: :obj:`tango.DeviceAttribute`
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
__GREEN_RAISES__
.. versionchanged:: 7.1.4
For DevEncoded attributes, before it was returning a DeviceAttribute.value
as a tuple **(format<str>, data<str>)** no matter what was the *extract_as*
value was. Since 7.1.4, it returns a **(format<str>, data<buffer>)**
unless *extract_as* is String, in which case it returns
**(format<str>, data<str>)**.
.. versionchanged:: 8.0.0
For DevEncoded attributes, now returns a DeviceAttribute.value
as a tuple **(format<str>, data<bytes>)** unless *extract_as* is String,
in which case it returns **(format<str>, data<str>)**. Careful, if
using python >= 3 data<str> is decoded using default python
*utf-8* encoding. This means that PyTango assumes tango DS was written
encapsulating string into *utf-8* which is the default python encoding.
.. versionadded:: 8.1.0
*green_mode* parameter.
*wait* parameter.
*timeout* parameter.
.. versionchanged:: 9.4.0
For spectrum and image attributes with an empty sequence, no longer
returns DeviceAttribute.value and DeviceAttribute.w_value as
:obj:`None`. Instead, DevString and DevEnum types get an empty :obj:`tuple`,
while other types get an empty :obj:`numpy.ndarray`. Using *extract_as* can
change the sequence type, but it still won't be :obj:`None`.
"""
return __check_read_attribute(self._read_attribute(value, extract_as))
def __read_attributes_asynch__(self, attr_names, cb, extract_as):
if cb is None:
return self.__read_attributes_asynch(attr_names)
cb2 = _get_new_CallbackAutoDie()
if isinstance(cb, collections.abc.Callable):
cb2.attr_read = _forcefully_traced_method(cb)
else:
cb2.attr_read = _forcefully_traced_method(cb.attr_read)
return self.__read_attributes_asynch(attr_names, cb2, extract_as)
def __DeviceProxy__read_attributes_asynch(
self, attr_names, cb=None, extract_as=ExtractAs.Numpy
) -> int | None:
"""
read_attributes_asynch(self, attr_names, __GREEN_KWARGS__) -> int
read_attributes_asynch(self, attr_names, cb, extract_as=Numpy, __GREEN_KWARGS__) -> None
Read asynchronously an attribute list.
New in PyTango 7.0.0
.. important::
by default, TANGO is initialized with the **polling** model. If you want
to use the **push** model (the one with the callback parameter), you
need to change the global TANGO model to PUSH_CALLBACK.
You can do this with the :meth:`tango.ApiUtil.set_asynch_cb_sub_model`
:param attr_names: A list of attributes to read. See read_attributes.
:type attr_names: Sequence[str]
:param cb: push model: as soon as attributes read, core calls cb with read results.
This callback object should be an instance of a user class with an attr_read() method.
It can also be any callable object.
:type cb: Optional[Callable]
:param extract_as: Defaults to numpy.
:type extract_as: :obj:`tango.ExtractAs`
__GREEN_KWARGS_DESCRIPTION__
:returns: an asynchronous call identifier which is needed to get attributes value if poll model, None if push model
:rtype: Union[int, None]
:throws: :obj:`tango.ConnectionFailed`
__GREEN_RAISES__
.. important::
Multiple asynchronous calls are not guaranteed to be executed by the device
server in the same order they are invoked by the client. E.g., a call
to ``write_attributes_asynch([("a", 1)])`` followed immediately with a call to
``read_attributes_asynch(["a"])`` could result in the device reading the
attribute ``a`` before writing to it.
"""
return __read_attributes_asynch__(self, attr_names, cb, extract_as)
def __DeviceProxy__read_attribute_asynch(
self, attr_name, cb=None, extract_as=ExtractAs.Numpy
) -> int | None:
"""
read_attribute_asynch(self, attr_name, __GREEN_KWARGS__) -> int
read_attribute_asynch(self, attr_name, cb, extract_as=Numpy, __GREEN_KWARGS__) -> None
Read asynchronously the specified attributes.
New in PyTango 7.0.0
.. important::
by default, TANGO is initialized with the **polling** model. If you want
to use the **push** model (the one with the callback parameter), you
need to change the global TANGO model to PUSH_CALLBACK.
You can do this with the :meth:`tango.ApiUtil.set_asynch_cb_sub_model`
:param attr_name: an attribute to read
:type attr_name: str
:param cb: push model: as soon as attributes read, core calls cb with read results.
This callback object should be an instance of a user class with an attr_read() method.
It can also be any callable object.
:type cb: Optional[Callable]
:param extract_as: Defaults to numpy.
:type extract_as: ExtractAs
__GREEN_KWARGS_DESCRIPTION__
:returns: an asynchronous call identifier which is needed to get attribute value if poll model, None if push model
:rtype: Union[int, None]
:throws: :obj:`tango.ConnectionFailed`
__GREEN_RAISES__
.. important::
Multiple asynchronous calls are not guaranteed to be executed by the device
server in the same order they are invoked by the client. E.g., a call
to the method ``write_attribute_asynch("a", 1)`` followed immediately with
a call to ``read_attribute_asynch("a")`` could result in the device reading the
attribute ``a`` before writing to it.
"""
return __read_attributes_asynch__(self, [attr_name], cb, extract_as)
def __read_attributes_reply__(self, *args, **kwargs):
if "poll_timeout" in kwargs:
kwargs["timeout"] = kwargs.pop("poll_timeout")
return self.__read_attributes_reply(*args, **kwargs)
def __DeviceProxy__read_attributes_reply(
self, *args, **kwargs
) -> list[DeviceAttribute]:
"""
read_attributes_reply(self, id, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> [DeviceAttribute]
read_attributes_reply(self, id, poll_timeout, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> [DeviceAttribute]
Get the answer of an asynchronous read_attributes call, if it has arrived (polling model).
If the reply is ready, but an attribute raised an exception while reading, it will
still be included in the returned list. However, the has_error field for that item
will be set to True.
.. versionchanged:: 7.0.0 New in PyTango
.. versionchanged:: 10.0.0 To eliminate confusion between different timeout parameters, the core (cppTango) timeout (previously the optional second positional argument) has been renamed to "poll_timeout". Conversely, the pyTango executor timeout remains as the keyword argument "timeout". These parameters have distinct meanings and units:
- The cppTango "poll_timeout" is measured in milliseconds and blocks the call until a reply is received. If the reply is not received within the specified poll_timeout duration, an exception is thrown. Setting poll_timeout to 0 causes the call to wait indefinitely until a reply is received.
- The pyTango "timeout" is measured in seconds and is applicable only in asynchronous GreenModes (Asyncio, Futures, Gevent), and only when "wait" is set to True. The specific behavior when a reply is not received within the specified timeout period varies depending on the GreenMode.
:param id: the asynchronous call identifier
:type id: int
:param poll_timeout: cppTango core timeout in ms.
If the reply has not yet arrived, the call will wait for the time specified (in ms).
If after timeout, the reply is still not there, an exception is thrown.
If timeout set to 0, the call waits until the reply arrives.
If the argument is not provided, then there is no timeout check, and an
exception is raised immediately if the reply is not ready.
:type poll_timeout: Optional[int]
:param extract_as: Defaults to numpy.
:type extract_as: ExtractAs
__GREEN_KWARGS_DESCRIPTION__
:returns: If the reply is arrived and if it is a valid reply,
it is returned to the caller in a list of DeviceAttribute.
If the reply is an exception, it is re-thrown by this call.
If the reply is not yet arrived, the call will wait (blocking the process)
for the time specified in timeout. If after timeout milliseconds, the reply is still not there, an
exception is thrown. If timeout is set to 0, the call waits
until the reply arrived.
:rtype: Sequence[DeviceAttribute]
:throws: Union[AsynCall, AsynReplyNotArrived, ConnectionFailed, CommunicationFailed, DevFailed]
__GREEN_RAISES__
"""
_check_only_allowed_kwargs(kwargs, {"id", "poll_timeout", "extract_as"})
return __read_attributes_reply__(self, *args, **kwargs)
def __DeviceProxy__read_attribute_reply(self, *args, **kwargs) -> DeviceAttribute:
"""
read_attribute_reply(self, id, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> DeviceAttribute
read_attribute_reply(self, id, poll_timeout, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> DeviceAttribute
Get the answer of an asynchronous read_attribute call, if it has arrived (polling model).
If the reply is ready, but the attribute raised an exception while reading, an
exception will be raised by this function (DevFailed, with reason API_AttrValueNotSet).
.. versionchanged:: 7.0.0 New in PyTango
.. versionchanged:: 10.0.0 To eliminate confusion between different timeout parameters, the core (cppTango) timeout (previously the optional second positional argument) has been renamed to "poll_timeout". Conversely, the pyTango executor timeout remains as the keyword argument "timeout". These parameters have distinct meanings and units:
- The cppTango "poll_timeout" is measured in milliseconds and blocks the call until a reply is received. If the reply is not received within the specified poll_timeout duration, an exception is thrown. Setting poll_timeout to 0 causes the call to wait indefinitely until a reply is received.
- The pyTango "timeout" is measured in seconds and is applicable only in asynchronous GreenModes (Asyncio, Futures, Gevent), and only when "wait" is set to True. The specific behavior when a reply is not received within the specified timeout period varies depending on the GreenMode.
:param id: the asynchronous call identifier
:type id: int
:param poll_timeout: cppTango core timeout in ms.
If the reply has not yet arrived, the call will wait for the time specified (in ms).
If after timeout, the reply is still not there, an exception is thrown.
If timeout set to 0, the call waits until the reply arrives.
If the argument is not provided, then there is no timeout check, and an
exception is raised immediately if the reply is not ready.
:type poll_timeout: Optional[int]
:param extract_as: Defaults to numpy.
:type extract_as: ExtractAs
__GREEN_KWARGS_DESCRIPTION__
:returns: If the reply is arrived and if it is a valid reply,
it is returned to the caller in a list of DeviceAttribute.
If the reply is an exception, it is re-thrown by this call.
If the reply is not yet arrived, the call will wait (blocking the process)
for the time specified in timeout. If after timeout milliseconds, the reply is still not there, an
exception is thrown. If timeout is set to 0, the call waits
until the reply arrived.
:rtype: :obj:`tango.DeviceAttribute`
:throws: Union[AsynCall, AsynReplyNotArrived, ConnectionFailed, CommunicationFailed, DevFailed]
"""
_check_only_allowed_kwargs(kwargs, {"id", "poll_timeout", "extract_as"})
attr = __read_attributes_reply__(self, *args, **kwargs)[0]
return __check_read_attribute(attr)
def __write_attributes_asynch__(self, attr_values, cb=None):
if cb is None:
return self.__write_attributes_asynch(attr_values)
cb2 = _get_new_CallbackAutoDie()
if isinstance(cb, collections.abc.Callable):
cb2.attr_written = _forcefully_traced_method(cb)
else:
cb2.attr_written = _forcefully_traced_method(cb.attr_written)
return self.__write_attributes_asynch(attr_values, cb2)
def __DeviceProxy__write_attributes_asynch(
self, attr_values: list[tuple[str | AttributeInfoEx, Any]], cb=None
) -> int | None:
"""
Write asynchronously the specified attributes.
.. important::
by default, TANGO is initialized with the **polling** model. If you want
to use the **push** model (the one with the callback parameter), you
need to change the global TANGO model to PUSH_CALLBACK.
You can do this with the :meth:`tango.ApiUtil.set_asynch_cb_sub_model`
:param attr_values: pairs of (attr_name, value) to write (see Note below)
:type attr_values: Sequence[Sequence[str | :obj:`~tango.AttributeInfoEx`, Any]]
:param cb: push model: as soon as attributes written, core calls cb with write results.
This callback object should be an instance of a user class with an attr_written() method.
It can also be any callable object.
:type cb: Optional[Callable]
__GREEN_KWARGS_DESCRIPTION__
:returns: an asynchronous call identifier which is needed to get the server reply if poll model, None if push model
:rtype: Union[int, None]
:throws: :obj:`tango.ConnectionFailed`
__GREEN_RAISES__
.. important::
Multiple asynchronous calls are not guaranteed to be executed by the device
server in the same order they are invoked by the client. E.g., a call
to ``write_attributes_asynch([("a", 1)])`` followed immediately with a call to
``read_attributes_asynch(["a"])`` could result in the device reading the
attribute ``a`` before writing to it.
.. note::
For each pair of values there are two possibilities for the
attr parameter: if you give attribute name, then PyTango must
fetch attribute info for this attribute from server by additional synchronous(!)
IO, since we must know to which c++ data type cast each python value.
If you would like to avoid this IO you must give AttributeInfoEx instead of
attribute name for each(!) pair of values.
.. versionchanged:: 10.1.0 Added support for AttributeInfoEx for attr_values parameter.
"""
return __write_attributes_asynch__(self, attr_values, cb)
def __DeviceProxy__write_attribute_asynch(
self, attr: str | AttributeInfoEx, value: Any, cb=None
) -> int | None:
"""
Write asynchronously the specified attribute.
.. important::
by default, TANGO is initialized with the **polling** model. If you want
to use the **push** model (the one with the callback parameter), you
need to change the global TANGO model to PUSH_CALLBACK.
You can do this with the :meth:`tango.ApiUtil.set_asynch_cb_sub_model`
:param attr: an attribute name to write or AttributeInfoEx object (see Note below)
:type attr: str | :obj:`~tango.AttributeInfoEx`
:param value: value to write
:type value: Any
:param cb: push model: as soon as attribute written, core calls cb with write results.
This callback object should be an instance of a user class with an attr_written() method.
It can also be any callable object.
:type cb: Optional[Callable]
__GREEN_KWARGS_DESCRIPTION__
:returns: an asynchronous call identifier which is needed to get the server reply if poll model, None if push model
:rtype: Union[int, None]
:throws: ConnectionFailed
__GREEN_RAISES__
.. important::
Multiple asynchronous calls are not guaranteed to be executed by the device
server in the same order they are invoked by the client. E.g., a call
to the method ``write_attribute_asynch("a", 1)`` followed immediately with
a call to ``read_attribute_asynch("a")`` could result in the device reading the
attribute ``a`` before writing to it.
.. note::
There are two possibilities for the attr parameter: if you give attribute name,
then PyTango will do additional synchronous(!) IO to fetch AttributeInfoEx object from device server,
since we must know to which c++ data type cast python value. If you would like to avoid this IO you
can give AttributeInfoEx instead of attribute name.
.. versionchanged:: 10.1.0
- attr_name parameter was renamed to attr
- added support for AttributeInfoEx for attr parameter
"""
return __write_attributes_asynch__(self, [(attr, value)], cb)
def __write_attributes_reply__(self, *args, **kwargs):
if "poll_timeout" in kwargs:
kwargs["timeout"] = kwargs.pop("poll_timeout")
return self.__write_attributes_reply(*args, **kwargs)
def __DeviceProxy__write_attributes_reply(self, *args, **kwargs) -> None:
"""
write_attributes_reply(self, id, __GREEN_KWARGS__) -> None
write_attributes_reply(self, id, poll_timeout, __GREEN_KWARGS__) -> None
Check if the answer of an asynchronous write_attributes is arrived
(polling model). If the reply is arrived and if it is a valid reply,
the call returned. If the reply is an exception, it is re-thrown by
this call. An exception is also thrown in case of the reply is not
yet arrived.
.. versionchanged:: 7.0.0 New in PyTango
.. versionchanged:: 10.0.0 To eliminate confusion between different timeout parameters, the core (cppTango) timeout (previously the optional second positional argument) has been renamed to "poll_timeout". Conversely, the pyTango executor timeout remains as the keyword argument "timeout". These parameters have distinct meanings and units:
- The cppTango "poll_timeout" is measured in milliseconds and blocks the call until a reply is received. If the reply is not received within the specified poll_timeout duration, an exception is thrown. Setting poll_timeout to 0 causes the call to wait indefinitely until a reply is received.
- The pyTango "timeout" is measured in seconds and is applicable only in asynchronous GreenModes (Asyncio, Futures, Gevent), and only when "wait" is set to True. The specific behavior when a reply is not received within the specified timeout period varies depending on the GreenMode.
:param id: the asynchronous call identifier
:type id: int
:param poll_timeout: cppTango core timeout in ms.
If the reply has not yet arrived, the call will wait for the time specified (in ms).
If after timeout, the reply is still not there, an exception is thrown.
If timeout set to 0, the call waits until the reply arrives.
If the argument is not provided, then there is no timeout check, and an
exception is raised immediately if the reply is not ready.
:type poll_timeout: Optional[int]
:param extract_as: Defaults to numpy.
:type extract_as: ExtractAs
__GREEN_KWARGS_DESCRIPTION__
:returns: None
:rtype: None
:throws: Union[AsynCall, AsynReplyNotArrived, ConnectionFailed, CommunicationFailed, DevFailed]
__GREEN_RAISES__
"""
_check_only_allowed_kwargs(kwargs, {"id", "poll_timeout"})
return __write_attributes_reply__(self, *args, **kwargs)
def __DeviceProxy__write_attribute_reply(self, *args, **kwargs) -> None:
"""
write_attribute_reply(self, id, __GREEN_KWARGS__) -> None
write_attribute_reply(self, id, poll_timeout, __GREEN_KWARGS__) -> None
Check if the answer of an asynchronous write_attributes is arrived
(polling model). If the reply is arrived and if it is a valid reply,
the call returned. If the reply is an exception, it is re-thrown by
this call. An exception is also thrown in case of the reply is not
yet arrived.
.. versionchanged:: 7.0.0 New in PyTango
.. versionchanged:: 10.0.0 To eliminate confusion between different timeout parameters, the core (cppTango) timeout (previously the optional second positional argument) has been renamed to "poll_timeout". Conversely, the pyTango executor timeout remains as the keyword argument "timeout". These parameters have distinct meanings and units:
- The cppTango "poll_timeout" is measured in milliseconds and blocks the call until a reply is received. If the reply is not received within the specified poll_timeout duration, an exception is thrown. Setting poll_timeout to 0 causes the call to wait indefinitely until a reply is received.
- The pyTango "timeout" is measured in seconds and is applicable only in asynchronous GreenModes (Asyncio, Futures, Gevent), and only when "wait" is set to True. The specific behavior when a reply is not received within the specified timeout period varies depending on the GreenMode.
:param id: the asynchronous call identifier
:type id: int
:param poll_timeout: cppTango core timeout in ms.
If the reply has not yet arrived, the call will wait for the time specified (in ms).
If after timeout, the reply is still not there, an exception is thrown.
If timeout set to 0, the call waits until the reply arrives.
If the argument is not provided, then there is no timeout check, and an
exception is raised immediately if the reply is not ready.
:type poll_timeout: Optional[int]
:param extract_as: Defaults to numpy.
:type extract_as: ExtractAs
__GREEN_KWARGS_DESCRIPTION__
:returns: None
:rtype: None
:throws: Union[AsynCall, AsynReplyNotArrived, ConnectionFailed, CommunicationFailed, DevFailed]
"""
_check_only_allowed_kwargs(kwargs, {"id", "poll_timeout"})
return __write_attributes_reply__(self, *args, **kwargs)
def __DeviceProxy__write_read_attribute(
self,
attr: str | AttributeInfoEx,
value: Any,
extract_as: ExtractAs = ExtractAs.Numpy,
) -> DeviceAttribute:
"""
Write then read a single attribute in a single network call.
By default (serialisation by device), the execution of this call in
the server can't be interrupted by other clients.
:param attr: The name or AttributeInfoEx structure of the attribute to write.
:type attr: str | :obj:`~tango.AttributeInfoEx`
:param value: The value to write to the attribute.
:type value: Any
__GREEN_KWARGS_DESCRIPTION__
:returns: A DeviceAttribute object with readout value.
:rtype: :obj:`tango.DeviceAttribute`
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DeviceUnlocked`: Raised in case of an unlocked device.
:throws: :obj:`tango.WrongData`: Raised in case of a wrong data format.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
.. note::
There are two possibilities for the attr parameter: if you give attribute name,
then PyTango will do additional IO to fetch AttributeInfoEx object from device server,
since we must know to which c++ data type cast python value. If you would like to avoid this IO you
can give AttributeInfoEx instead of attribute name.
.. versionadded:: 7.0.0
.. versionadded:: 8.1.0
*green_mode* parameter.
*wait* parameter.
*timeout* parameter.
.. versionchanged:: 10.1.0
- attr_name parameter was renamed to attr
- added support for AttributeInfoEx for attr parameter
"""
result = self._write_read_attribute(attr, value, extract_as)
return __check_read_attribute(result)
def __DeviceProxy__write_read_attributes(
self,
attr_values: list[tuple[str | AttributeInfoEx, Any]],
attr_read_names: list[str],
extract_as: ExtractAs = ExtractAs.Numpy,
) -> DeviceAttribute:
"""
Write then read attribute(s) in a single network call. By
default (serialisation by device), the execution of this
call in the server can't be interrupted by other clients.
On the server side, attribute(s) are first written and
if no exception has been thrown during the write phase,
attributes will be read.
:param attr_values: A list of pairs (attr, value). See write_attribute
:type attr_values: sequence<(str | AttributeInfoEx, Any)>
:param attr_read_names: A list of attributes to read.
:type attr_read_names: sequence<str>
:param extract_as: Defaults to numpy.
:type extract_as: :obj:`tango.ExtractAs`
__GREEN_KWARGS_DESCRIPTION__
:returns: A sequence DeviceAttribute object with readout values.
:rtype: sequence<:obj:`tango.DeviceAttribute`>
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DeviceUnlocked`: Raised in case of an unlocked device.
:throws: :obj:`tango.WrongData`: Raised in case of a wrong data format.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
New in PyTango 9.2.0
.. note::
For each pair of values there are two possibilities for the
attr parameter: if you give attribute name, then PyTango must
fetch attribute info for this attribute from server by additional synchronous(!)
IO, since we must know to which c++ data type cast each python value.
If you would like to avoid this IO you must give AttributeInfoEx instead of
attribute name for each(!) pair of values.
.. versionchanged:: 10.1.0
- name_val parameter was renamed to attr_values
- added support for AttributeInfoEx for attr_values parameter.
"""
return self._write_read_attributes(attr_values, attr_read_names, extract_as)
def __DeviceProxy__get_property(
self,
propname: (
str
| DbDatum
| DbData
| list[str | bytes | DbDatum]
| dict[str, DbDatum]
| dict[str, list[str]]
| dict[str, object]
),
value=None,
) -> dict[str, list[str]]:
"""
Get a (list) property(ies) for an attribute.
:param propname: Can be one of the following: \n
1. :py:obj:`str` [in] - Single property data to be fetched. \n
2. :py:obj:`~tango.DbDatum` [in] - Single property data to be fetched. \n
3. :py:obj:`~tango.DbData` [in] - Several property data to be fetched. \n
4. :py:obj:`list`\\[:py:obj:`str` | :py:obj:`bytes` ] [in] - Several property data to be fetched. \n
5. :py:obj:`list`\\[:py:obj:`tango.DbDatum`] [in] - Several property data to be fetched. \n
6. :py:obj:`dict`\\[:py:obj:`str`, :py:obj:`object`] [in] - Keys are property names
to be fetched (values are ignored). \n
7. :py:obj:`dict`\\[:py:obj:`str`, :obj:`tango.DbDatum`] [in] - Several `DbDatum.name` are
property names to be fetched (keys are ignored). \n
:param value: Optional. For propname overloads with :py:obj:`str` and :py:obj:`list`\\[:py:obj:`str`] will be filed with the property values, if provided.
:type value: :obj:`tango.DbData`, optional
__GREEN_KWARGS_DESCRIPTION__
:returns: A :obj:`dict` object, which keys are the property names the value
associated with each key being a sequence of strings being the
property value.
:throws:
:py:obj:`TypeError`: Raised in case of propname has the wrong type. \n
:py:obj:`tango.NonDbDevice`: Raised in case of a non-database device error. \n
:py:obj:`tango.ConnectionFailed`: Raised on connection failure with the database. \n
:py:obj:`tango.CommunicationFailed`: Raised on communication failure with the database. \n
:py:obj:`tango.DevFailed`: Raised on a device failure from the database device.`
__GREEN_RAISES__
.. versionadded:: 10.1.0: overloads with :obj:`dict` as propname parameter
.. versionchanged:: 10.1.0: raises if propname has an invalid type instead of returning None
"""
return get_property_from_db(self, propname, value)
def __DeviceProxy__put_property(
self,
value: (
str
| DbDatum
| DbData
| list[str | bytes | DbDatum]
| dict[str, DbDatum]
| dict[str, list[str]]
| dict[str, object]
),
) -> None:
"""
Insert or update a list of properties for this attribute.
:param value: Can be one of the following: \n
1. :py:obj:`str` - Single property data to be inserted. \n
2. :py:obj:`~tango.DbDatum` - Single property data to be inserted. \n
3. :py:obj:`~tango.DbData` - Several property data to be inserted. \n
4. :py:obj:`list`\\[:py:obj:`str` | :py:obj:`bytes` | :py:obj:`~tango.DbDatum`] - Several property data to be inserted. \n
5. :py:obj:`dict`\\[:py:obj:`str`, :py:obj:`~tango.DbDatum`] -
DbDatum is property to be inserted (keys are ignored). \n
6. :py:obj:`dict`\\[:py:obj:`str`, :py:obj:`list`\\[:py:obj:`str`]] - Keys are property names,
and value has data to be inserted. \n
7. :py:obj:`dict`\\[:py:obj:`str`, :py:obj:`object`] - Keys are property names, and `str(obj)` is property value.
__GREEN_KWARGS_DESCRIPTION__
:throws:
:py:obj:`TypeError`: Raised in case of value has the wrong type. \n
:py:obj:`tango.NonDbDevice`: Raised in case of a non-database device error. \n
:py:obj:`tango.ConnectionFailed`: Raised on connection failure with the database. \n
:py:obj:`tango.CommunicationFailed`: Raised on communication failure with the database. \n
:py:obj:`tango.DevFailed`: Raised on a device failure from the database device.`
__GREEN_RAISES__
"""
value = parameter_2_dbdata(value, "value")
return self._put_property(value)
def __DeviceProxy__delete_property(
self,
value: (
str
| DbDatum
| DbData
| list[str | bytes | DbDatum]
| dict[str, DbDatum]
| dict[str, list[str]]
| dict[str, object]
),
) -> None:
"""
Delete a the given of properties for this attribute.
:param value: Can be one of the following: \n
1. :py:obj:`str` [in] - Single property data to be deleted. \n
2. :py:obj:`~tango.DbDatum` [in] - Single property data to be deleted. \n
3. :py:obj:`~tango.DbData` [in] - Several property data to be deleted. \n
4. :py:obj:`list`\\[:py:obj:`str`] [in] - Several property data to be deleted. \n
5. :py:obj:`list`\\[:py:obj:`tango.DbDatum`] [in] - Several property data to be deleted. \n
6. :py:obj:`dict`\\[:py:obj:`str`, :py:obj:`object`] [in] - Keys are property names
to be deleted (values are ignored). \n
7. :py:obj:`dict`\\[:py:obj:`str`, :obj:`tango.DbDatum`] [in] - Several `DbDatum.name` are
property names to be deleted (keys are ignored). \n
__GREEN_KWARGS_DESCRIPTION__
:throws:
:py:obj:`TypeError`: Raised in case of value has the wrong type. \n
:py:obj:`tango.NonDbDevice`: Raised in case of a non-database device error. \n
:py:obj:`tango.ConnectionFailed`: Raised on connection failure with the database. \n
:py:obj:`tango.CommunicationFailed`: Raised on communication failure with the database. \n
:py:obj:`tango.DevFailed`: Raised on a device failure from the database device.`
__GREEN_RAISES__
"""
new_value = parameter_2_dbdata(value, "value")
return self._delete_property(new_value)
def __DeviceProxy__get_property_list(self, filter, array=None) -> list[str]:
"""
get_property_list(self, filter, array=None, __GREEN_KWARGS__) -> obj
Get the list of property names for the device. The parameter
filter allows the user to filter the returned name list. The
wildcard character is '*'. Only one wildcard character is
allowed in the filter parameter.
:param filter: The filter wildcard.
:type filter: str
:param array: Optional. An array to be filled with the property names. If `None`, a new list will be created internally with the values. Defaults to `None`.
:type array: sequence obj or None, optional
__GREEN_KWARGS_DESCRIPTION__
:returns: The given array filled with the property names, or a new list if `array` is `None`.
:rtype: sequence obj
:throws: :obj:`tango.NonDbDevice`: Raised in case of a non-database device error.
:throws: :obj:`tango.WrongNameSyntax`: Raised in case of incorrect syntax in the name.
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure with the database.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure with the database.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure from the database device.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
:versionadded:: 7.0.0
"""
if array is None:
new_array = StdStringVector()
self._get_property_list(filter, new_array)
return new_array
if isinstance(array, StdStringVector):
self._get_property_list(filter, array)
return array
elif isinstance(array, collections.abc.Sequence):
new_array = StdStringVector()
self._get_property_list(filter, new_array)
StdStringVector_2_seq(new_array, array)
return array
raise TypeError("array must be a mutable sequence<string>")
def __DeviceProxy__get_attribute_config(
self, value
) -> AttributeInfoEx | AttributeInfoList:
"""
get_attribute_config(self, name, __GREEN_KWARGS__) -> AttributeInfoEx
get_attribute_config(self, names, __GREEN_KWARGS__) -> AttributeInfoList
Return the attribute configuration for a single or a list of attribute(s). To get all the
attributes pass a sequence containing the constant :obj:`tango.constants.AllAttr`
Deprecated: use get_attribute_config_ex instead
:param name: Attribute name.
:type name: str
:param names: Attribute names.
:type names: sequence<str>
__GREEN_KWARGS_DESCRIPTION__
:returns: An `AttributeInfoEx` or `AttributeInfoList` object containing the attribute(s) information.
:rtype: Union[:obj:`tango.AttributeInfoEx`, :obj:`tango.AttributeInfoList`]
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
"""
if isinstance(value, StdStringVector) or is_pure_str(value):
return self._get_attribute_config(value)
elif isinstance(value, collections.abc.Sequence):
v = seq_2_StdStringVector(value)
return self._get_attribute_config(v)
raise TypeError("value must be a string or a sequence<string>")
def __DeviceProxy__get_attribute_config_ex(self, value) -> AttributeInfoListEx:
"""
get_attribute_config_ex(self, name or sequence(names), __GREEN_KWARGS__) -> AttributeInfoListEx :
Return the extended attribute configuration for a single attribute or for the list of
specified attributes. To get all the attributes pass a sequence
containing the constant tango.constants.AllAttr.
:param name: Attribute name or attribute names. Can be a single string (for one attribute) or a sequence of strings (for multiple attributes).
:type name: str or sequence(str)
__GREEN_KWARGS_DESCRIPTION__
:returns: An `AttributeInfoListEx` object containing the attribute information.
:rtype: :obj:`tango.AttributeInfoListEx`
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
__GREEN_RAISES__
"""
if isinstance(value, StdStringVector):
return self._get_attribute_config_ex(value)
elif is_pure_str(value):
v = StdStringVector()
v.append(value)
return self._get_attribute_config_ex(v)
elif isinstance(value, collections.abc.Sequence):
v = seq_2_StdStringVector(value)
return self._get_attribute_config_ex(v)
raise TypeError("value must be a string or a sequence<string>")
def __DeviceProxy__get_command_config(
self, value=(constants.AllCmd,)
) -> CommandInfoList | CommandInfo:
"""
get_command_config(self, __GREEN_KWARGS__) -> CommandInfoList
get_command_config(self, name, __GREEN_KWARGS__) -> CommandInfo
get_command_config(self, names, __GREEN_KWARGS__) -> CommandInfoList
Return the command configuration for single/list/all command(s).
:param name: Command name. Used when querying information for a single command.
:type name: str, optional
:param names: Command names. Used when querying information for multiple commands. This parameter should not be used simultaneously with 'name'.
:type names: sequence<str>, optional
__GREEN_KWARGS_DESCRIPTION__
:returns: A `CommandInfoList` object containing the commands information if multiple command names are provided, or a `CommandInfo` object if a single command name is provided.
:rtype: :obj:`tango.CommandInfoList` or :obj:`tango.CommandInfo`
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
"""
if isinstance(value, StdStringVector) or is_pure_str(value):
return self._get_command_config(value)
elif isinstance(value, collections.abc.Sequence):
v = seq_2_StdStringVector(value)
return self._get_command_config(v)
raise TypeError("value must be a string or a sequence<string>")
def __DeviceProxy__set_attribute_config(self, value) -> None:
"""
set_attribute_config(self, attr_info, __GREEN_KWARGS__) -> None
set_attribute_config(self, attr_info_ex, __GREEN_KWARGS__) -> None
Change the attribute configuration/extended attribute configuration for the specified attribute(s)
:param attr_info: Attribute information. This parameter is used when providing basic attribute(s) information.
:type attr_info: Union[:obj:`tango.AttributeInfo`, Sequence[:obj:`tango.AttributeInfo`]], optional
:param attr_info_ex: Extended attribute information. This parameter is used when providing extended attribute information. It should not be used simultaneously with 'attr_info'.
:type attr_info_ex: Union[:obj:`tango.AttributeInfoEx`, Sequence[:obj:`tango.AttributeInfoEx`]], optional
__GREEN_KWARGS_DESCRIPTION__
:returns: None
:throws: :obj:`tango.ConnectionFailed`: Raised in case of a connection failure.
:throws: :obj:`tango.CommunicationFailed`: Raised in case of a communication failure.
:throws: :obj:`tango.DevFailed`: Raised in case of a device failure.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
"""
if isinstance(value, AttributeInfoEx):
v = AttributeInfoListEx()
v.append(value)
elif isinstance(value, AttributeInfo):
v = AttributeInfoList()
v.append(value)
elif isinstance(value, AttributeInfoList):
v = value
elif isinstance(value, AttributeInfoListEx):
v = value
elif isinstance(value, collections.abc.Sequence):
if not len(value):
return
if isinstance(value[0], AttributeInfoEx):
v = AttributeInfoListEx()
elif isinstance(value[0], AttributeInfo):
v = AttributeInfoList()
else:
raise TypeError(
"Value must be a AttributeInfo, AttributeInfoEx, "
"sequence<AttributeInfo> or sequence<AttributeInfoEx"
)
for i in value:
v.append(i)
else:
raise TypeError(
"Value must be a AttributeInfo, AttributeInfoEx, "
"sequence<AttributeInfo> or sequence<AttributeInfoEx"
)
return self._set_attribute_config(v)
def __DeviceProxy__get_event_map_lock(self):
"""
Internal helper method"""
if "_subscribed_events_lock" not in self.__dict__:
# do it like this instead of self._subscribed_events = dict() to avoid
# calling __setattr__ which requests list of tango attributes from device
self.__dict__["_subscribed_events_lock"] = threading.Lock()
return self._subscribed_events_lock
def __DeviceProxy__get_event_map(self):
"""
Internal helper method"""
if "_subscribed_events" not in self.__dict__:
# do it like this instead of self._subscribed_events = dict() to avoid
# calling __setattr__ which requests list of tango attributes from device
self.__dict__["_subscribed_events"] = dict()
return self._subscribed_events
def __DeviceProxy__subscribe_event(self, *args, **kwargs) -> int:
"""
subscribe_event(self, attr_name, event_type, cb, sub_mode=EventSubMode.SyncRead, extract_as=ExtractAs.Numpy, *, __GREEN_KWARGS__) -> int
subscribe_event(self, attr_name, event_type, queuesize, sub_mode=EventSubMode.SyncRead, extract_as=ExtractAs.Numpy, *, __GREEN_KWARGS__) -> int
subscribe_event(self, event_type, cb, sub_mode=EventSubMode.SyncRead, *, __GREEN_KWARGS__) -> int
.. note::
This function is heavily overloaded, and includes three additional signatures that
have been deprecated (see warning below).
The client call to subscribe for event reception. There are two main categories:
* Subscribe to events for a specific attribute, like change events, providing
either:
* a callback function for immediate notification (*push* callback model), or
* a queue length, allowing events to be processed later (*pull* callback model).
* Subscribe to device-level events (not linked to a specific attribute), like
interface-changed events. These require a callback function (*push* callback model).
More details of the *push* and *pull* callback models are provided in the
:external+tangodoc:ref:`cppTango Events API docs <events-tangoclient-api>`.
:param attr_name: The device attribute name which will be sent as an event, e.g., "current".
:type attr_name: str
:param event_type: The event reason, which must be one of the enumerated values in `EventType`. This includes:
* `EventType.CHANGE_EVENT`
* `EventType.ALARM_EVENT`
* `EventType.PERIODIC_EVENT`
* `EventType.ARCHIVE_EVENT`
* `EventType.USER_EVENT`
* `EventType.DATA_READY_EVENT`
* `EventType.ATTR_CONF_EVENT`
* `EventType.INTERFACE_CHANGE_EVENT`
:type event_type: :obj:`tango.EventType`
:param cb:
Any callable object or an object with a callable ``push_event`` method
(i.e., use the *push* callback model).
The callable has the signature ``def cb(event)`` (or ``async def cb(event)``
for asyncio green mode DeviceProxy objects). The ``event`` parameter's data
type depends on the type of event subscribed to. In most cases it is
:obj:`tango.EventData`. Special cases are `EventType.DATA_READY`,
`EventType.ATTR_CONF_EVENT`, and `EventType.INTERFACE_CHANGE_EVENT` -
see :ref:`event-arrived-structures`.
:type cb: callable
:param queuesize:
The size of the event reception buffer (i.e., use the *pull* callback model).
The event reception buffer is implemented as a round-robin buffer.
This way the client can set up different ways to receive events:
* Event reception buffer size = 1 : The client is interested only in the value of the last event received. All other events that have been received since the last reading are discarded.
* Event reception buffer size > 1 : The client has chosen to keep an event history of a given size. When more events arrive since the last reading, older events will be discarded.
* Event reception buffer size = tango.constants.ALL_EVENTS : The client buffers all received events. The buffer size is unlimited and only restricted by the available memory for the client.
:type queuesize: int
:param sub_mode: The event subscription mode.
:type sub_mode: :obj:`tango.EventSubMode`
:param extract_as: In which format to return the attribute values. Default: ExtractAs.NumPy
:type extract_as: ExtractAs
__GREEN_KWARGS_DESCRIPTION__
:returns: An event id which has to be specified when unsubscribing from this event.
:rtype: int
:throws: :obj:`tango.EventSystemFailed`: Raised in case of a failure in the event system.
:throws: :obj:`tango.DevFailed`: Raised in case of general communication failures.
:throws: :obj:`TypeError`: Raised in case of an incorrect type of input arguments.
__GREEN_RAISES__
.. deprecated:: PyTango 10.1.0
The following signatures, which use the ``filters`` and/or ``stateless``
parameters, are deprecated. The version for removal has not been decided, but
the earliest is version 11.0.0.
* *subscribe_event(self, attr_name, event_type, cb, filters=[], stateless=False, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> int*
* *subscribe_event(self, attr_name, event_type, queuesize, filters=[], stateless=False, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> int*
* *subscribe_event(self, event_type, cb, stateless=False, *, __GREEN_KWARGS__) -> int*
``filters`` (*sequence<str>*)
The filters apply to the original Notifd-based event system, not the
current ZeroMQ-based event system (added in Tango 8). Notifd support is
scheduled for removal in Tango 11.
A variable length list of name-value pairs which define additional filters
for events. Provide an empty list, if this feature is not needed
(typically, for all Tango servers from version 8).
Filters cannot be used with the `sub_mode` parameter.
``stateless`` (*bool*)
Instead of setting ``stateless=True`` use ``sub_mode=EventSubMode.Stateless``.
When this flag is set to false, an exception will be thrown if the event
subscription encounters a problem. With the stateless flag set to true,
the event subscription will not raise an exception, even if the corresponding
device is not running, or the attribute doesn't exist.
A keep-alive thread will attempt to subscribe for the specified event
every 10 seconds, executing a callback with the corresponding exception at
every retry.
The ``stateless`` flag cannot be used with the `sub_mode` parameter.
.. versionadded:: 10.1.0
Three new signatures using the *sub_mode* parameter.
.. versionchanged:: 10.1.0
All parameters can now be passed as keyword arguments.
"""
_check_only_allowed_kwargs(
kwargs,
{
"attr_name",
"event_type",
"queuesize",
"sub_mode",
"extract_as",
"event_type",
"cb",
"filters",
"stateless",
"green_mode",
},
)
if (args and isinstance(args[0], EventType)) or kwargs.get(
"event_type", None
) == EventType.INTERFACE_CHANGE_EVENT:
return __DeviceProxy__subscribe_event_global(self, *args, **kwargs)
# The first argument is the attribute name
else:
return __DeviceProxy__subscribe_event_attrib(self, *args, **kwargs)
def __DeviceProxy__subscribe_event_global(self, *args, **kwargs):
"""
Various signatures to resolve:
index: 0 1 2
subscribe_event(self, event_type, cb, stateless=False, *, green_mode=None) -> int
subscribe_event(self, event_type, cb, sub_mode=EventSubMode.SyncRead, *, green_mode=None) -> int
"""
event_type, _ = _get_and_check_param(
args,
kwargs,
"event_type",
0,
type_check=lambda x: isinstance(x, EventType),
)
if event_type != EventType.INTERFACE_CHANGE_EVENT:
raise TypeError("This method is only for Interface Change Events")
user_cb, _ = _get_and_check_param(
args,
kwargs,
"cb",
1,
type_check=_is_callable_for_event,
type_error_message="Parameter 'cb' must be callable object or "
"an object with a 'push_event' method.",
)
sub_mode = EventSubMode.SyncRead
stateless = None
try:
sub_mode, _ = _get_and_check_param(
args,
kwargs,
"sub_mode",
2,
type_check=lambda x: isinstance(x, EventSubMode),
)
except (IndexError, PositionalArgTypeError):
try:
stateless, _ = _get_and_check_param(
args,
kwargs,
"stateless",
2,
type_check=lambda x: isinstance(x, bool),
type_error_message=" must be either EventSubMode (sub_mode) or bool (stateless) type.",
)
except IndexError:
pass
green_mode = kwargs.get("green_mode", None)
cbfn = __EventCallBack()
cbfn.push_event = green_callback(
_callable_for_event(user_cb), obj=self, green_mode=green_mode
)
if stateless is not None:
warnings.warn(
"The 'stateless' parameter is deprecated. "
"The version for removal has not been decided, but the earliest is version 11.0.0. "
"Please, update calls to use the 'sub_mode' parameter instead.",
category=DeprecationWarning,
)
event_id = self.__subscribe_event_global_with_stateless_flag(
event_type, cbfn, stateless
)
else:
event_id = self.__subscribe_event_global_with_sub_mode(
event_type, cbfn, sub_mode
)
_add_event_to_map(self, event_id, cbfn, event_type, "dummy")
return event_id
def __DeviceProxy__subscribe_event_attrib(self, *args, **kwargs):
"""
Various signatures to resolve:
index: 0 1 2 3 4
subscribe_event(self, attr_name, event_type, cb, sub_mode=EventSubMode.SyncRead, extract_as=ExtractAs.Numpy, *, green_mode=None) -> int
subscribe_event(self, attr_name, event_type, queuesize, sub_mode=EventSubMode.SyncRead, extract_as=ExtractAs.Numpy, *, green_mode=None) -> int
DEPRECATED, but still valid:
index: 0 1 2 3 4 5
subscribe_event(self, attr_name, event_type, cb, filters=[], stateless=False, extract_as=ExtractAs.Numpy, *, green_mode=None) -> int
subscribe_event(self, attr_name, event_type, queuesize, filters=[], stateless=False, extract_as=ExtractAs.Numpy, *, green_mode=None) -> int
"""
attr_name, _ = _get_and_check_param(
args,
kwargs,
"attr_name",
0,
type_check=is_pure_str,
)
event_type, _ = _get_and_check_param(
args,
kwargs,
"event_type",
1,
type_check=lambda x: isinstance(x, EventType),
)
if "cb" in kwargs and "queuesize" in kwargs:
raise TypeError(
f"Parameters 'cb' and 'queuesize' cannot be used together'. {args=}, {kwargs=}"
)
user_cb = None
queuesize = None
try:
user_cb, _ = _get_and_check_param(
args,
kwargs,
"cb",
2,
type_check=_is_callable_for_event,
type_error_message="Parameter 'cb' must be callable object or "
"an object with a 'push_event' method",
)
except (IndexError, PositionalArgTypeError):
try:
queuesize, _ = _get_and_check_param(
args, kwargs, "queuesize", 2, type_check=is_integer
)
except (IndexError, PositionalArgTypeError):
raise TypeError(
f"Either parameter 'queuesize' must be an integer, or parameter 'cb' "
f"must be callable object or an object with a 'push_event' method. "
f"{args=}, {kwargs=}."
)
if "sub_mode" in kwargs and "filters" in kwargs:
raise TypeError(
f"Parameters 'sub_mode' and 'filters' cannot be used together. {args=}, {kwargs=}"
)
if "sub_mode" in kwargs and "stateless" in kwargs:
raise TypeError(
f"Parameters 'sub_mode' and 'stateless' cannot be used together. {args=}, {kwargs=}"
)
sub_mode = None
filters = None
sub_mode_from_caller = False
filters_from_caller = False
arg_shift = 0
try:
sub_mode, _ = _get_and_check_param(
args,
kwargs,
"sub_mode",
3,
type_check=lambda x: isinstance(x, EventSubMode),
type_error_message="Parameter 'sub_mode' must be of type EventSubMode",
)
sub_mode_from_caller = True
except (IndexError, PositionalArgTypeError) as sub_mode_exc:
try:
filters, _ = _get_and_check_param(
args,
kwargs,
"filters",
3,
type_check=is_non_str_seq,
type_error_message="Parameter 'filters' must be sequence of str",
)
filters_from_caller = True
if "filters" not in kwargs:
arg_shift = 1
except (IndexError, PositionalArgTypeError) as filters_exc:
if isinstance(sub_mode_exc, PositionalArgTypeError):
raise sub_mode_exc
elif isinstance(filters_exc, PositionalArgTypeError):
raise filters_exc
# fallback to defaults
sub_mode = EventSubMode.SyncRead
filters = []
stateless = None
stateless_from_caller = False
if not sub_mode_from_caller:
stateless, used_default = _get_and_check_param(
args,
kwargs,
"stateless",
4,
default=False,
type_check=lambda x: isinstance(x, bool),
type_error_message="Parameter 'stateless' must be of type bool",
)
stateless_from_caller = not used_default
extract_as, _ = _get_and_check_param(
args,
kwargs,
"extract_as",
4 + arg_shift,
type_check=lambda x: isinstance(x, ExtractAs),
default=ExtractAs.Numpy,
type_error_message="Parameter 'extract_as' must be of type ExtractAs",
)
green_mode = kwargs.get("green_mode", None)
# at least one of "cb" or "queuesize" must be provided
if user_cb:
cb_or_queuesize = __EventCallBack()
cb_or_queuesize.push_event = green_callback(
_callable_for_event(user_cb), obj=self, green_mode=green_mode
)
elif queuesize is not None:
cb_or_queuesize = queuesize
else:
raise TypeError(
f"Either parameter 'queuesize' must be an integer, or parameter 'cb' "
f"must be callable object or an object with a 'push_event' method. "
f"{args=}, {kwargs=}."
)
if sub_mode_from_caller:
use_sub_mode = True
elif filters_from_caller or stateless_from_caller:
use_sub_mode = False
else:
use_sub_mode = True
if use_sub_mode:
event_id = self.__subscribe_event_attrib_with_sub_mode(
attr_name, event_type, cb_or_queuesize, sub_mode, extract_as
)
else:
warnings.warn(
"The 'stateless' and 'filters' parameters are deprecated. "
"The version for removal has not been decided, but the earliest is version 11.0.0. "
"Please, update calls to use the 'sub_mode' parameter instead.",
category=DeprecationWarning,
)
event_id = self.__subscribe_event_attrib_with_stateless_flag(
attr_name, event_type, cb_or_queuesize, stateless, extract_as, filters
)
_add_event_to_map(self, event_id, cb_or_queuesize, event_type, attr_name)
return event_id
class _DummyValue:
pass
class PositionalArgTypeError(TypeError):
pass
def _get_and_check_param(
user_args: Tuple[Any, ...],
user_kwargs: Dict[str, Any],
name: str,
index: int,
default: Any = _DummyValue(),
type_check: Any = None,
type_error_message: str = "",
) -> Tuple[Any, bool]:
used_default = False
if name in user_kwargs:
value = user_kwargs[name]
if callable(type_check) and not type_check(value):
raise TypeError(
f"Invalid type for parameter '{name}={value}': {type_error_message}"
)
return value, used_default
if len(user_args) > index:
value = user_args[index]
else:
if isinstance(default, _DummyValue):
raise IndexError(
f"Expected parameter '{name}' as either positional arg {index + 1}, "
f"(but only {len(user_args)} provided), or as keyword argument. "
f"{user_args=}, {user_kwargs=}."
)
value = default
used_default = True
if callable(type_check) and not type_check(value):
raise PositionalArgTypeError(
f"Invalid type for parameter '{name}' at position {index}: "
f"{type_error_message}. Received: {type(value)}"
)
return value, used_default
def _callable_for_event(fn):
if isinstance(fn, collections.abc.Callable):
return fn
elif hasattr(fn, "push_event") and isinstance(
fn.push_event, collections.abc.Callable
):
return fn.push_event
else:
return None
def _is_callable_for_event(fn):
return _callable_for_event(fn) is not None
def _add_event_to_map(self, event_id, cb_or_queuesize, event_type, attr_name):
with self.__get_event_map_lock():
se = self.__get_event_map()
evt_data = se.get(event_id)
if evt_data is None:
se[event_id] = (cb_or_queuesize, event_type, attr_name)
return
# Raise exception
desc = textwrap.dedent(
f"""\
Internal PyTango error:
{self}.subscribe_event({attr_name}, {event_type}) already has key {event_id} assigned to ({evt_data[2]}, {evt_data[1]})
Please report error to PyTango"""
)
Except.throw_exception("Py_InternalError", desc, "DeviceProxy.subscribe_event")
def __dummy_event_receiver(_event):
pass
async def __async_dummy_event_receiver(_event):
pass
def __DeviceProxy__unsubscribe_event(self, event_id) -> None:
"""
unsubscribe_event(self, event_id, __GREEN_KWARGS__) -> None
Unsubscribes a client from receiving the event specified by event_id.
:param event_id: The event identifier returned by `DeviceProxy::subscribe_event()`. Unlike in TangoC++, this implementation checks that the `event_id` has been subscribed to in this `DeviceProxy`.
:type event_id: int
__GREEN_KWARGS_DESCRIPTION__
:returns: None
:throws: :obj:`tango.EventSystemFailed`: Raised in case of a failure in the event system.
:throws: KeyError: Raised if the specified `event_id` is not found or not subscribed in this `DeviceProxy`.
__GREEN_RAISES__
"""
events_del = set()
timestamp = time.time()
se = self.__get_event_map()
with self.__get_event_map_lock():
# first delete event callbacks that have expired
for evt_id, (_, expire_time) in self._pending_unsubscribe.items():
if expire_time <= timestamp:
events_del.add(evt_id)
for evt_id in events_del:
del self._pending_unsubscribe[evt_id]
# unsubscribe and put the callback in the pending unsubscribe callbacks
try:
evt_info = se[event_id]
except KeyError:
raise KeyError(
"This device proxy does not own this subscription " + str(event_id)
)
del se[event_id]
# if we subscribe callback, we have to keep it alive for sometime,
# in case there is delayed event comming
if hasattr(evt_info[0], "push_event"):
if self.get_green_mode() == GreenMode.Asyncio:
evt_info[0].push_event = __async_dummy_event_receiver
else:
evt_info[0].push_event = __dummy_event_receiver
self._pending_unsubscribe[event_id] = (
evt_info[0],
timestamp + _UNSUBSCRIBE_LIFETIME,
)
self.__unsubscribe_event(event_id)
def __DeviceProxy__unsubscribe_event_all(self):
with self.__get_event_map_lock():
se = self.__get_event_map()
event_ids = list(se.keys())
se.clear()
for event_id in event_ids:
self.__unsubscribe_event(event_id)
def __DeviceProxy__get_events(
self, event_id, callback=None, extract_as=ExtractAs.Numpy
):
"""
get_events(self, event_id, callback=None, extract_as=Numpy) -> None
The method extracts all waiting events from the event reception buffer.
If callback is not None, it is executed for every event. During event
subscription the client must have chosen the pull model for this event.
The callback will receive a parameter of type EventData,
AttrConfEventData or DataReadyEventData depending on the type of the
event (event_type parameter of subscribe_event).
If callback is None, the method extracts all waiting events from the
event reception buffer. The returned event_list is a vector of
EventData, AttrConfEventData or DataReadyEventData pointers, just
the same data the callback would have received.
:param event_id: The event identifier returned by the `DeviceProxy.subscribe_event()` method.
:type event_id: int
:param callback: Any callable object or any object with a "push_event" method.
:type callback: callable
:param extract_as: (Description Needed)
:type extract_as: :obj:`tango.ExtractAs`
:returns: None
:throws: :obj:`tango.EventSystemFailed`: Raised in case of a failure in the event system.
:throws: TypeError: Raised in case of an incorrect type of input arguments.
:throws: ValueError: Raised in case of an invalid value.
:see also: :meth:`~tango.DeviceProxy.subscribe_event`
"""
if callback is None:
queuesize, event_type, attr_name = self.__get_event_map().get(
event_id, (None, None, None)
)
if event_type is None:
raise ValueError(
f"Invalid event_id. You are not subscribed to event {str(event_id)}."
)
if event_type in (
EventType.CHANGE_EVENT,
EventType.ALARM_EVENT,
EventType.PERIODIC_EVENT,
EventType.ARCHIVE_EVENT,
EventType.USER_EVENT,
):
return self.__get_data_events(event_id, extract_as)
elif event_type in (EventType.ATTR_CONF_EVENT,):
return self.__get_attr_conf_events(event_id)
elif event_type in (EventType.DATA_READY_EVENT,):
return self.__get_data_ready_events(event_id)
elif event_type in (EventType.INTERFACE_CHANGE_EVENT,):
return self.__get_devintr_change_events(event_id, extract_as)
else:
raise ValueError("Unknown event_type: " + str(event_type))
elif isinstance(callback, collections.abc.Callable):
cb = __EventCallBack()
cb.push_event = callback
return self.__get_callback_events(event_id, cb, extract_as)
elif hasattr(callback, "push_event") and isinstance(
callback.push_event, collections.abc.Callable
):
cb = __EventCallBack()
cb.push_event = callback.push_event
return self.__get_callback_events(event_id, cb, extract_as)
else:
raise TypeError(
"Parameter 'callback' should be None, a callable object or an object with a 'push_event' method."
)
def __DeviceProxy___get_info_(self):
"""Protected method that gets device info once and stores it in cache"""
if "_dev_info" not in self.__dict__:
try:
info = self.info()
info_without_cyclic_reference = __TangoInfo.from_copy(info)
self.__dict__["_dev_info"] = info_without_cyclic_reference
except Exception:
return __TangoInfo.from_defaults()
return self._dev_info
def __DeviceProxy__str(self):
is_safe_to_access_proxy = self.__dict__.get("_initialized", False)
if is_safe_to_access_proxy:
info = self._get_info_()
dev_class = info.dev_class
dev_name = self.dev_name()
else:
dev_class = "DeviceProxy<Unknown Device>"
dev_name = "<object was not fully initialized>"
return f"{dev_class}({dev_name})"
def __DeviceProxy__read_attributes(
self, attr_names, extract_as=ExtractAs.Numpy
) -> list[DeviceAttribute]:
"""
read_attributes(self, attr_names, extract_as=ExtractAs.Numpy, __GREEN_KWARGS__) -> sequence<DeviceAttribute>
Read the list of specified attributes.
:param attr_names: A list of attributes to read.
:type attr_names: sequence<str>
:param extract_as: In which format to return the attribute values.
:type extract_as: :obj:`tango.ExtractAs`
__GREEN_KWARGS_DESCRIPTION__
:returns: A list of DeviceAttribute objects.
:rtype: sequence<:obj:`tango.DeviceAttribute`>
:throws: :obj:`tango.ConnectionFailed`, :obj:`tango.CommunicationFailed`, :obj:`tango.DeviceUnlocked`:
:throws: :obj:`tango.DevFailed`: from device
__GREEN_RAISES__
.. versionadded:: 8.1.0
*green_mode* parameter.
*wait* parameter.
*timeout* parameter.
"""
return self._read_attributes(attr_names, extract_as)
def __DeviceProxy__write_attribute(
self, attr: str | AttributeInfoEx, value: Any
) -> None:
"""
write_attribute(self, attr, value, __GREEN_KWARGS__) -> None
Write a single attribute.
:param attr: The name or AttributeInfoEx structure of the attribute to write.
:type attr: str | :obj:`tango.AttributeInfoEx`
:param value: The value to write to the attribute.
:type value: Any
__GREEN_KWARGS_DESCRIPTION__
:throws: :obj:`tango.ConnectionFailed`, :obj:`tango.CommunicationFailed`, :obj:`tango.DeviceUnlocked`:
:throws: :obj:`tango.DevFailed`: from device
__GREEN_RAISES__
.. versionadded:: 8.1.0
*green_mode* parameter.
*wait* parameter.
*timeout* parameter.
.. versionchanged:: 10.1.0 attr_name parameter was renamed to attr
"""
return self._write_attribute(attr, value)
def __DeviceProxy__write_attributes(self, attr_values) -> None:
"""
write_attributes(self, name_val, __GREEN_KWARGS__) -> None
Write the specified attributes.
:param attr_values: A list of pairs (attr, value). See write_attribute
:type attr_values: Sequence<(str | AttributeInfoEx, Any)>
__GREEN_KWARGS_DESCRIPTION__
:throws: :obj:`tango.ConnectionFailed`, :obj:`tango.CommunicationFailed`, :obj:`tango.DeviceUnlocked`:
:throws: :obj:`tango.DevFailed`, :obj:`tango.NamedDevFailedList`: from device
__GREEN_RAISES__
.. versionadded:: 8.1.0
*green_mode* parameter.
*wait* parameter.
*timeout* parameter.
.. versionchanged:: 10.1.0
- name_val parameter was renamed to attr_values
- added support for AttributeInfoEx for attr_values parameter
"""
return self._write_attributes(attr_values)
def __DeviceProxy__ping(self) -> int:
"""
ping(self, __GREEN_KWARGS__) -> DevState
A method which sends a ping to the device
__GREEN_KWARGS_DESCRIPTION__
:returns: time elapsed in microseconds
:rtype: int
__GREEN_RAISES__
"""
return self._ping()
def __DeviceProxy__state(self) -> DevState:
"""
state(self, __GREEN_KWARGS__) -> DevState
A method which returns the state of the device.
__GREEN_KWARGS_DESCRIPTION__
:returns: A `DevState` constant.
:rtype: DevState
__GREEN_RAISES__
"""
return self._state()
def __DeviceProxy__status(self) -> str:
"""
status(self, __GREEN_KWARGS__) -> str
A method which returns the status of the device as a string.
__GREEN_KWARGS_DESCRIPTION__
:returns: string describing the device status
:rtype: str
__GREEN_RAISES__
"""
return self._status()
def __safe_call(fn):
already_wrapped = hasattr(fn, "__access_wrapped__")
if already_wrapped:
return fn
@functools.wraps(fn)
def safe_call_wrapper(self, *args, **kwargs):
if not self._initialized:
raise RuntimeError("DeviceProxy object was not fully initialized.")
return fn(self, *args, **kwargs)
fn.__access_wrapped__ = True
return safe_call_wrapper
def device_proxy_init():
DeviceProxy.__init_orig__ = DeviceProxy.__init__
DeviceProxy.__init__ = _trace_client(__DeviceProxy____init__)
DeviceProxy.get_green_mode = __DeviceProxy__get_green_mode
DeviceProxy.set_green_mode = __DeviceProxy__set_green_mode
DeviceProxy.freeze_dynamic_interface = __DeviceProxy__freeze_dynamic_interface
DeviceProxy.unfreeze_dynamic_interface = __DeviceProxy__unfreeze_dynamic_interface
DeviceProxy.is_dynamic_interface_frozen = __DeviceProxy__is_dynamic_interface_frozen
DeviceProxy.__get_cmd_cache = __DeviceProxy__get_cmd_cache
DeviceProxy.__get_attr_cache = __DeviceProxy__get_attr_cache
DeviceProxy.__refresh_cmd_cache = __DeviceProxy__refresh_cmd_cache
DeviceProxy.__refresh_attr_cache = __DeviceProxy__refresh_attr_cache
DeviceProxy.ping = green(
_trace_client(__DeviceProxy__ping), update_signature_and_docstring=True
)
DeviceProxy.state = green(
_trace_client(__DeviceProxy__state), update_signature_and_docstring=True
)
DeviceProxy.status = green(
_trace_client(__DeviceProxy__status), update_signature_and_docstring=True
)
DeviceProxy.state = green(
_trace_client(__DeviceProxy__state), update_signature_and_docstring=True
)
DeviceProxy.status = green(
_trace_client(__DeviceProxy__status), update_signature_and_docstring=True
)
DeviceProxy.read_attribute = green(
_trace_client(__DeviceProxy__read_attribute),
update_signature_and_docstring=True,
)
DeviceProxy.read_attributes = green(
_trace_client(__DeviceProxy__read_attributes),
update_signature_and_docstring=True,
)
DeviceProxy.write_attribute = green(
_trace_client(__DeviceProxy__write_attribute),
update_signature_and_docstring=True,
)
DeviceProxy.write_attributes = green(
_trace_client(__DeviceProxy__write_attributes),
update_signature_and_docstring=True,
)
DeviceProxy.write_attributes = green(
_trace_client(__DeviceProxy__write_attributes),
update_signature_and_docstring=True,
)
DeviceProxy.write_read_attribute = green(
_trace_client(__DeviceProxy__write_read_attribute),
update_signature_and_docstring=True,
)
DeviceProxy.write_read_attributes = green(
_trace_client(__DeviceProxy__write_read_attributes),
update_signature_and_docstring=True,
)
DeviceProxy.read_attributes_asynch = green(
_trace_client(__DeviceProxy__read_attributes_asynch),
update_signature_and_docstring=True,
)
DeviceProxy.read_attribute_asynch = green(
_trace_client(__DeviceProxy__read_attribute_asynch),
update_signature_and_docstring=True,
)
DeviceProxy.read_attributes_reply = green(
_trace_client(__DeviceProxy__read_attributes_reply),
update_signature_and_docstring=True,
)
DeviceProxy.read_attribute_reply = green(
_trace_client(__DeviceProxy__read_attribute_reply),
update_signature_and_docstring=True,
)
DeviceProxy.write_attributes_asynch = green(
_trace_client(__DeviceProxy__write_attributes_asynch),
update_signature_and_docstring=True,
)
DeviceProxy.write_attribute_asynch = green(
_trace_client(__DeviceProxy__write_attribute_asynch),
update_signature_and_docstring=True,
)
DeviceProxy.write_attributes_reply = green(
_trace_client(__DeviceProxy__write_attributes_reply),
update_signature_and_docstring=True,
)
DeviceProxy.write_attribute_reply = green(
_trace_client(__DeviceProxy__write_attribute_reply),
update_signature_and_docstring=True,
)
DeviceProxy.get_property = green(
_trace_client(__DeviceProxy__get_property), update_signature_and_docstring=True
)
DeviceProxy.put_property = green(
_trace_client(__DeviceProxy__put_property), update_signature_and_docstring=True
)
DeviceProxy.delete_property = green(
_trace_client(__DeviceProxy__delete_property),
update_signature_and_docstring=True,
)
DeviceProxy.get_property_list = green(
_trace_client(__DeviceProxy__get_property_list),
update_signature_and_docstring=True,
)
DeviceProxy.get_attribute_config = green(
_trace_client(__DeviceProxy__get_attribute_config),
update_signature_and_docstring=True,
)
DeviceProxy.get_attribute_config_ex = green(
_trace_client(__DeviceProxy__get_attribute_config_ex),
update_signature_and_docstring=True,
)
DeviceProxy.set_attribute_config = green(
_trace_client(__DeviceProxy__set_attribute_config),
update_signature_and_docstring=True,
)
DeviceProxy.get_command_config = green(
_trace_client(__DeviceProxy__get_command_config),
update_signature_and_docstring=True,
)
DeviceProxy.__get_event_map = __DeviceProxy__get_event_map
DeviceProxy.__get_event_map_lock = __DeviceProxy__get_event_map_lock
DeviceProxy.subscribe_event = green(
_trace_client(__DeviceProxy__subscribe_event),
consume_green_mode=False,
update_signature_and_docstring=True,
)
DeviceProxy.unsubscribe_event = green(
_trace_client(__DeviceProxy__unsubscribe_event),
update_signature_and_docstring=True,
)
DeviceProxy.get_events = _trace_client(__DeviceProxy__get_events)
DeviceProxy.__unsubscribe_event_all = __DeviceProxy__unsubscribe_event_all
DeviceProxy.__str__ = __DeviceProxy__str
DeviceProxy.__repr__ = __DeviceProxy__str
DeviceProxy._get_info_ = __DeviceProxy___get_info_
DeviceProxy.__getattr__ = __safe_call(__DeviceProxy__getattr)
DeviceProxy.__setattr__ = __safe_call(__DeviceProxy__setattr)
DeviceProxy.__getitem__ = __safe_call(__DeviceProxy__getitem)
DeviceProxy.__setitem__ = __safe_call(__DeviceProxy__setitem)
DeviceProxy.__contains__ = __safe_call(__DeviceProxy__contains)
DeviceProxy.__dir__ = __safe_call(__DeviceProxy__dir)
|