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
|
"""
Module for serialization and deserialization of APCI payloads.
APCI stands for Application Layer Protocol Control Information.
An APCI payload contains a service and payload. For example, a GroupValueWrite
is a service that takes a DPT as a value.
"""
from __future__ import annotations
from abc import ABC, abstractmethod
from dataclasses import dataclass
from enum import Enum
import struct
from typing import ClassVar, cast
from xknx.dpt import DPTArray, DPTBinary
from xknx.exceptions import ConversionError
from xknx.secure.data_secure_asdu import SecureData, SecurityControlField
from xknx.telegram.address import IndividualAddress
def encode_cmd_and_payload(
cmd: APCIService | APCIUserService | APCIExtendedService,
encoded_payload: int = 0,
appended_payload: bytes | None = None,
) -> bytearray:
"""Encode cmd and payload."""
data = bytearray(
[
(cmd.value >> 8) & 0b11,
(cmd.value & 0xFF) | (encoded_payload & DPTBinary.APCI_BITMASK),
]
)
if appended_payload:
data.extend(appended_payload)
return data
class APCIService(Enum):
"""Enum class for APCI services."""
GROUP_READ = 0x0000
GROUP_RESPONSE = 0x0040
GROUP_WRITE = 0x0080
INDIVIDUAL_ADDRESS_WRITE = 0x00C0
INDIVIDUAL_ADDRESS_READ = 0x0100
INDIVIDUAL_ADDRESS_RESPONSE = 0x140
ADC_READ = 0x0180
ADC_RESPONSE = 0x1C0
MEMORY_EXTENDED_WRITE = 0x1FB
MEMORY_EXTENDED_WRITE_RESPONSE = 0x1FC
MEMORY_EXTENDED_READ = 0x1FD
MEMORY_EXTENDED_READ_RESPONSE = 0x1FE
MEMORY_READ = 0x0200
MEMORY_RESPONSE = 0x0240
MEMORY_WRITE = 0x0280
USER_MESSAGE = 0x02C0
DEVICE_DESCRIPTOR_READ = 0x0300
DEVICE_DESCRIPTOR_RESPONSE = 0x0340
RESTART = 0x0380
ESCAPE = 0x03C0
class APCIUserService(Enum):
"""Enum class for user message APCI services."""
USER_MEMORY_READ = 0x02C0
USER_MEMORY_RESPONSE = 0x02C1
USER_MEMORY_WRITE = 0x02C2
USER_MANUFACTURER_INFO_READ = 0x02C5
USER_MANUFACTURER_INFO_RESPONSE = 0x02C6
FUNCTION_PROPERTY_COMMAND = 0x02C7
FUNCTION_PROPERTY_STATE_READ = 0x02C8
FUNCTION_PROPERTY_STATE_RESPONSE = 0x02C9
class APCIExtendedService(Enum):
"""Enum class for extended APCI services."""
AUTHORIZE_REQUEST = 0x03D1
AUTHORIZE_RESPONSE = 0x03D2
PROPERTY_VALUE_READ = 0x03D5
PROPERTY_VALUE_RESPONSE = 0x03D6
PROPERTY_VALUE_WRITE = 0x03D7
PROPERTY_DESCRIPTION_READ = 0x03D8
PROPERTY_DESCRIPTION_RESPONSE = 0x03D9
INDIVIDUAL_ADDRESS_SERIAL_READ = 0x03DC
INDIVIDUAL_ADDRESS_SERIAL_RESPONSE = 0x03DD
INDIVIDUAL_ADDRESS_SERIAL_WRITE = 0x03DE
# DataSecure
APCI_SEC = 0x03F1
@dataclass(slots=True)
class APCI(ABC):
"""
Base class for ACPI services.
This base class is only the interface for the derived classes.
"""
CODE: ClassVar[APCIService | APCIUserService | APCIExtendedService] = cast(
APCIService, None
)
@abstractmethod
def calculated_length(self) -> int:
"""Get length of APCI payload - to be implemented in derived class."""
@abstractmethod
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data - to be implemented in derived class."""
# shall return bytearray instead of bytes so TPCI can be
# added to first 6 bits of first byte in-place later
@classmethod
@abstractmethod
def from_knx(cls, raw: bytes) -> APCI:
"""
Parse/deserialize from KNX/IP raw data - to be implemented in derived class.
`raw` shall be a complete APDU.
Return APCI instance based on APCI service.
There are only 16 possible APCI services. The
`APCIService.USER_MESSAGE` and `APCIService.ESCAPE` service have
several sub-services.
"""
apci = (raw[0] * 256 + raw[1]) & 0x03FF
service = apci & 0x03C0
if service == APCIService.GROUP_READ.value:
return GroupValueRead.from_knx(raw)
if service == APCIService.GROUP_WRITE.value:
return GroupValueWrite.from_knx(raw)
if service == APCIService.GROUP_RESPONSE.value:
return GroupValueResponse.from_knx(raw)
if service == APCIService.INDIVIDUAL_ADDRESS_WRITE.value:
return IndividualAddressWrite.from_knx(raw)
if service == APCIService.INDIVIDUAL_ADDRESS_READ.value:
return IndividualAddressRead.from_knx(raw)
if service == APCIService.INDIVIDUAL_ADDRESS_RESPONSE.value:
return IndividualAddressResponse.from_knx(raw)
if service == APCIService.ADC_READ.value:
return ADCRead.from_knx(raw)
if service == APCIService.ADC_RESPONSE.value:
if apci == APCIService.MEMORY_EXTENDED_WRITE.value:
return MemoryExtendedWrite.from_knx(raw)
if apci == APCIService.MEMORY_EXTENDED_WRITE_RESPONSE.value:
return MemoryExtendedWriteResponse.from_knx(raw)
if apci == APCIService.MEMORY_EXTENDED_READ.value:
return MemoryExtendedRead.from_knx(raw)
if apci == APCIService.MEMORY_EXTENDED_READ_RESPONSE.value:
return MemoryExtendedReadResponse.from_knx(raw)
return ADCResponse.from_knx(raw)
if service == APCIService.MEMORY_READ.value:
return MemoryRead.from_knx(raw)
if service == APCIService.MEMORY_WRITE.value:
return MemoryWrite.from_knx(raw)
if service == APCIService.MEMORY_RESPONSE.value:
return MemoryResponse.from_knx(raw)
if service == APCIService.USER_MESSAGE.value:
if apci == APCIUserService.USER_MEMORY_READ.value:
return UserMemoryRead.from_knx(raw)
if apci == APCIUserService.USER_MEMORY_RESPONSE.value:
return UserMemoryResponse.from_knx(raw)
if apci == APCIUserService.USER_MEMORY_WRITE.value:
return UserMemoryWrite.from_knx(raw)
if apci == APCIUserService.USER_MANUFACTURER_INFO_READ.value:
return UserManufacturerInfoRead.from_knx(raw)
if apci == APCIUserService.USER_MANUFACTURER_INFO_RESPONSE.value:
return UserManufacturerInfoResponse.from_knx(raw)
if apci == APCIUserService.FUNCTION_PROPERTY_COMMAND.value:
return FunctionPropertyCommand.from_knx(raw)
if apci == APCIUserService.FUNCTION_PROPERTY_STATE_READ.value:
return FunctionPropertyStateRead.from_knx(raw)
if apci == APCIUserService.FUNCTION_PROPERTY_STATE_RESPONSE.value:
return FunctionPropertyStateResponse.from_knx(raw)
if service == APCIService.DEVICE_DESCRIPTOR_READ.value:
return DeviceDescriptorRead.from_knx(raw)
if service == APCIService.DEVICE_DESCRIPTOR_RESPONSE.value:
return DeviceDescriptorResponse.from_knx(raw)
if service == APCIService.RESTART.value:
return Restart.from_knx(raw)
if service == APCIService.ESCAPE.value:
if apci == APCIExtendedService.AUTHORIZE_REQUEST.value:
return AuthorizeRequest.from_knx(raw)
if apci == APCIExtendedService.AUTHORIZE_RESPONSE.value:
return AuthorizeResponse.from_knx(raw)
if apci == APCIExtendedService.PROPERTY_VALUE_READ.value:
return PropertyValueRead.from_knx(raw)
if apci == APCIExtendedService.PROPERTY_VALUE_WRITE.value:
return PropertyValueWrite.from_knx(raw)
if apci == APCIExtendedService.PROPERTY_VALUE_RESPONSE.value:
return PropertyValueResponse.from_knx(raw)
if apci == APCIExtendedService.PROPERTY_DESCRIPTION_READ.value:
return PropertyDescriptionRead.from_knx(raw)
if apci == APCIExtendedService.PROPERTY_DESCRIPTION_RESPONSE.value:
return PropertyDescriptionResponse.from_knx(raw)
if apci == APCIExtendedService.INDIVIDUAL_ADDRESS_SERIAL_READ.value:
return IndividualAddressSerialRead.from_knx(raw)
if apci == APCIExtendedService.INDIVIDUAL_ADDRESS_SERIAL_RESPONSE.value:
return IndividualAddressSerialResponse.from_knx(raw)
if apci == APCIExtendedService.INDIVIDUAL_ADDRESS_SERIAL_WRITE.value:
return IndividualAddressSerialWrite.from_knx(raw)
if apci == APCIExtendedService.APCI_SEC.value:
return SecureAPDU.from_knx(raw)
raise ConversionError(f"Class not implemented for APCI {apci:#012b}.")
@dataclass(slots=True)
class GroupValueRead(APCI):
"""
GroupValueRead service.
Does not have any payload.
"""
CODE: ClassVar = APCIService.GROUP_READ
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 1
@classmethod
def from_knx(cls, raw: bytes) -> GroupValueRead:
"""Parse/deserialize from KNX/IP raw data."""
# Nothing to parse, but must be implemented explicitly.
return cls()
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
return encode_cmd_and_payload(self.CODE)
def __str__(self) -> str:
"""Return object as readable string."""
return "<GroupValueRead />"
@dataclass(slots=True)
class GroupValueWrite(APCI):
"""
GroupValueRead service.
Takes a value (DPT) as payload.
"""
CODE: ClassVar = APCIService.GROUP_WRITE
value: DPTBinary | DPTArray
def calculated_length(self) -> int:
"""Get length of APCI payload."""
if isinstance(self.value, DPTBinary):
return 1
return 1 + len(self.value.value)
@classmethod
def from_knx(cls, raw: bytes) -> GroupValueWrite:
"""Parse/deserialize from KNX/IP raw data."""
if len(raw) == 2:
return cls(value=DPTBinary(raw[1] & DPTBinary.APCI_BITMASK))
return cls(value=DPTArray(raw[2:]))
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if isinstance(self.value, DPTBinary):
return encode_cmd_and_payload(self.CODE, encoded_payload=self.value.value)
return encode_cmd_and_payload(
self.CODE, appended_payload=bytes(self.value.value)
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<GroupValueWrite value="{self.value}" />'
@dataclass(slots=True)
class GroupValueResponse(APCI):
"""
GroupValueResponse service.
Takes a value (DPT) as payload.
"""
CODE: ClassVar = APCIService.GROUP_RESPONSE
value: DPTBinary | DPTArray
def calculated_length(self) -> int:
"""Get length of APCI payload."""
if isinstance(self.value, DPTBinary):
return 1
return 1 + len(self.value.value)
@classmethod
def from_knx(cls, raw: bytes) -> GroupValueResponse:
"""Parse/deserialize from KNX/IP raw data."""
if len(raw) == 2:
return cls(value=DPTBinary(raw[1] & DPTBinary.APCI_BITMASK))
return cls(value=DPTArray(raw[2:]))
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if isinstance(self.value, DPTBinary):
return encode_cmd_and_payload(self.CODE, encoded_payload=self.value.value)
return encode_cmd_and_payload(
self.CODE, appended_payload=bytes(self.value.value)
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<GroupValueResponse value="{self.value}" />'
@dataclass(slots=True)
class IndividualAddressWrite(APCI):
"""
IndividualAddressWrite service.
Payload contains the serial number and (new) address of the device.
"""
CODE: ClassVar = APCIService.INDIVIDUAL_ADDRESS_WRITE
address: IndividualAddress
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3
@classmethod
def from_knx(cls, raw: bytes) -> IndividualAddressWrite:
"""Parse/deserialize from KNX/IP raw data."""
(raw_address,) = struct.unpack("!H", raw[2:])
return cls(address=IndividualAddress(raw_address))
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
return encode_cmd_and_payload(self.CODE, appended_payload=self.address.to_knx())
def __str__(self) -> str:
"""Return object as readable string."""
return f'<IndividualAddressWrite address="{self.address}" />'
@dataclass(slots=True)
class IndividualAddressRead(APCI):
"""IndividualAddressRead service."""
CODE: ClassVar = APCIService.INDIVIDUAL_ADDRESS_READ
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 1
@classmethod
def from_knx(cls, raw: bytes) -> IndividualAddressRead:
"""Parse/deserialize from KNX/IP raw data."""
# Nothing to parse, but must be implemented explicitly.
return cls()
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
return encode_cmd_and_payload(self.CODE)
def __str__(self) -> str:
"""Return object as readable string."""
return "<IndividualAddressRead />"
@dataclass(slots=True)
class IndividualAddressResponse(APCI):
"""
IndividualAddressResponse service.
There is no payload, since the Telegram's source address is used as a
response address.
"""
CODE: ClassVar = APCIService.INDIVIDUAL_ADDRESS_RESPONSE
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 1
@classmethod
def from_knx(cls, raw: bytes) -> IndividualAddressResponse:
"""Parse/deserialize from KNX/IP raw data."""
# Nothing to parse, but must be implemented explicitly.
return cls()
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
return encode_cmd_and_payload(self.CODE)
def __str__(self) -> str:
"""Return object as readable string."""
return "<IndividualAddressResponse />"
@dataclass(slots=True)
class ADCRead(APCI):
"""
ADCRead service.
Payload contains the channel and number of samples to take.
"""
CODE: ClassVar = APCIService.ADC_READ
channel: int
count: int = 1
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 2
@classmethod
def from_knx(cls, raw: bytes) -> ADCRead:
"""Parse/deserialize from KNX/IP raw data."""
channel, count = struct.unpack("!BB", raw[1:])
return cls(
channel=channel & DPTBinary.APCI_BITMASK,
count=count,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = struct.pack("!BB", self.channel, self.count)
return encode_cmd_and_payload(
self.CODE, encoded_payload=payload[0], appended_payload=payload[1:]
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<ADCRead channel="{self.channel}" count="{self.count}" />'
@dataclass(slots=True)
class ADCResponse(APCI):
"""
ADCResponse service.
Payload contains the channel, number of samples and value.
"""
CODE: ClassVar = APCIService.ADC_RESPONSE
channel: int
count: int = 1
value: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4
@classmethod
def from_knx(cls, raw: bytes) -> ADCResponse:
"""Parse/deserialize from KNX/IP raw data."""
channel, count, value = struct.unpack("!BBH", raw[1:])
return cls(
channel=channel & DPTBinary.APCI_BITMASK,
count=count,
value=value,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = struct.pack("!BBH", self.channel, self.count, self.value)
return encode_cmd_and_payload(
self.CODE, encoded_payload=payload[0], appended_payload=payload[1:]
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<ADCResponse channel="{self.channel}" count="{self.count}" value="{self.value}" />'
@dataclass(slots=True)
class MemoryExtendedWrite(APCI):
"""
MemoryExtendedWrite service.
Payload indicates address (16 MiB), count (1-255 bytes) and data.
"""
CODE: ClassVar = APCIService.MEMORY_EXTENDED_WRITE
address: int
data: bytes
count: int = None # type: ignore[assignment]
def __post_init__(self) -> None:
"""Post-initialization steps."""
if self.count is None:
self.count = len(self.data) # type: ignore[unreachable]
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> MemoryExtendedWrite:
"""Parse/deserialize from KNX/IP raw data."""
count = raw[2]
address = int.from_bytes(raw[3:6], "big")
data = raw[6:]
return cls(
count=count,
address=address,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 250:
raise ConversionError("Count out of range.")
size = len(self.data)
payload = struct.pack(f"!BI{size}s", self.count, self.address, self.data)
# suppress first byte of address
payload = payload[:1] + payload[2:]
return encode_cmd_and_payload(self.CODE, 0, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<MemoryExtendedWrite address="{hex(self.address)}" count="{self.count}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class MemoryExtendedWriteResponse(APCI):
"""
MemoryExtendedWriteResponse service.
Payload indicates return code, address (16 MiB) and confirmation data.
"""
CODE: ClassVar = APCIService.MEMORY_EXTENDED_WRITE_RESPONSE
return_code: int
address: int
confirmation_data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5 + len(self.confirmation_data)
@classmethod
def from_knx(cls, raw: bytes) -> MemoryExtendedWriteResponse:
"""Parse/deserialize from KNX/IP raw data."""
return_code = raw[2]
address = int.from_bytes(raw[3:6], "big")
confirmation_data = raw[6:]
return cls(
return_code=return_code,
address=address,
confirmation_data=confirmation_data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.return_code <= 255:
raise ConversionError("Return code out of range.")
size = len(self.confirmation_data)
payload = struct.pack(
f"!BI{size}s", self.return_code, self.address, self.confirmation_data
)
# suppress first byte of address
payload = payload[:1] + payload[2:]
return encode_cmd_and_payload(self.CODE, 0, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<MemoryExtendedWriteResponse return_code="{self.return_code}" address="{hex(self.address)}" confirmation_data="{self.confirmation_data.hex()}" />'
@dataclass(slots=True)
class MemoryExtendedRead(APCI):
"""
MemoryExtendedRead service.
Payload indicates count and address (16 MiB).
"""
CODE: ClassVar = APCIService.MEMORY_EXTENDED_READ
count: int
address: int
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5
@classmethod
def from_knx(cls, raw: bytes) -> MemoryExtendedRead:
"""Parse/deserialize from KNX/IP raw data."""
count = raw[2]
address = int.from_bytes(raw[3:6], "big")
return cls(
count=count,
address=address,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 250:
raise ConversionError("Count out of range.")
payload = struct.pack("!BI", self.count, self.address)
# suppress first byte of address
payload = payload[:1] + payload[2:]
return encode_cmd_and_payload(self.CODE, 0, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return (
f'<MemoryExtendedRead count="{self.count}" address="{hex(self.address)}" />'
)
@dataclass(slots=True)
class MemoryExtendedReadResponse(APCI):
"""
MemoryExtendedReadResponse service.
Payload indicates return code, address (16 MiB) and data.
"""
CODE: ClassVar = APCIService.MEMORY_EXTENDED_READ_RESPONSE
return_code: int
address: int
data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> MemoryExtendedReadResponse:
"""Parse/deserialize from KNX/IP raw data."""
return_code = raw[2]
address = int.from_bytes(raw[3:6], "big")
data = raw[6:]
return cls(
return_code=return_code,
address=address,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.return_code <= 255:
raise ConversionError("Return code out of range.")
size = len(self.data)
payload = struct.pack(f"!BI{size}s", self.return_code, self.address, self.data)
# suppress first byte of address
payload = payload[:1] + payload[2:]
return encode_cmd_and_payload(self.CODE, 0, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<MemoryExtendedReadResponse return_code="{self.return_code}" address="{hex(self.address)}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class MemoryRead(APCI):
"""
MemoryRead service.
Payload indicates address (64 KiB) and count (1-63 bytes).
"""
CODE: ClassVar = APCIService.MEMORY_READ
address: int
count: int = 1
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3
@classmethod
def from_knx(cls, raw: bytes) -> MemoryRead:
"""Parse/deserialize from KNX/IP raw data."""
count, address = struct.unpack("!BH", raw[1:])
return cls(
address=address,
count=count & DPTBinary.APCI_BITMASK,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 0x3F:
raise ConversionError("Count out of range.")
payload = struct.pack("!BH", self.count, self.address)
return encode_cmd_and_payload(
self.CODE, encoded_payload=payload[0], appended_payload=payload[1:]
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<MemoryRead address="{hex(self.address)}" count="{self.count}" />'
@dataclass(slots=True)
class MemoryWrite(APCI):
"""
MemoryWrite service.
Payload indicates address (64 KiB), count (1-63 bytes) and data.
"""
CODE: ClassVar = APCIService.MEMORY_WRITE
address: int
data: bytes
count: int = None # type: ignore[assignment]
def __post_init__(self) -> None:
"""Post-initialization steps."""
if self.count is None:
self.count = len(self.data) # type: ignore[unreachable]
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> MemoryWrite:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 4
count, address, data = struct.unpack(f"!BH{size}s", raw[1:])
return cls(
count=count & DPTBinary.APCI_BITMASK,
address=address,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 0x3F:
raise ConversionError("Count out of range.")
size = len(self.data)
payload = struct.pack(f"!BH{size}s", self.count, self.address, self.data)
return encode_cmd_and_payload(
self.CODE, encoded_payload=payload[0], appended_payload=payload[1:]
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<MemoryWrite address="{hex(self.address)}" count="{self.count}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class MemoryResponse(APCI):
"""
MemoryResponse service.
Payload indicates address (64 KiB), count (1-63 bytes) and data.
"""
CODE: ClassVar = APCIService.MEMORY_RESPONSE
address: int
data: bytes
count: int = None # type: ignore[assignment]
def __post_init__(self) -> None:
"""Post-initialization steps."""
if self.count is None:
self.count = len(self.data) # type: ignore[unreachable]
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> MemoryResponse:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 4
count, address, data = struct.unpack(f"!BH{size}s", raw[1:])
return cls(
count=count & DPTBinary.APCI_BITMASK,
address=address,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 0x3F:
raise ConversionError("Count out of range.")
size = len(self.data)
payload = struct.pack(f"!BH{size}s", self.count, self.address, self.data)
return encode_cmd_and_payload(
self.CODE, encoded_payload=payload[0], appended_payload=payload[1:]
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<MemoryResponse address="{hex(self.address)}" count="{self.count}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class DeviceDescriptorRead(APCI):
"""
DeviceDescriptorRead service.
Payload contains the descriptor.
"""
CODE: ClassVar = APCIService.DEVICE_DESCRIPTOR_READ
descriptor: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 1
@classmethod
def from_knx(cls, raw: bytes) -> DeviceDescriptorRead:
"""Parse/deserialize from KNX/IP raw data."""
return cls(descriptor=raw[1] & 0x3F)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.descriptor <= 0x3F:
raise ConversionError("Descriptor out of range.")
return encode_cmd_and_payload(self.CODE, encoded_payload=self.descriptor)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<DeviceDescriptorRead descriptor="{self.descriptor}" />'
@dataclass(slots=True)
class DeviceDescriptorResponse(APCI):
"""
DeviceDescriptorResponse service.
Payload contains the descriptor and value.
"""
CODE: ClassVar = APCIService.DEVICE_DESCRIPTOR_RESPONSE
descriptor: int = 0
value: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3
@classmethod
def from_knx(cls, raw: bytes) -> DeviceDescriptorResponse:
"""Parse/deserialize from KNX/IP raw data."""
descriptor, value = struct.unpack("!BH", raw[1:])
return cls(descriptor=descriptor & 0x3F, value=value)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.descriptor <= 0x3F:
raise ConversionError("Descriptor out of range.")
payload = struct.pack("!H", self.value)
return encode_cmd_and_payload(
self.CODE, encoded_payload=self.descriptor, appended_payload=payload
)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<DeviceDescriptorResponse descriptor="{self.descriptor}" value="{self.value}" />'
@dataclass(slots=True)
class Restart(APCI):
"""
Restart service.
Does not take any payload.
"""
# Requests a Basic Restart of the communication partner.
# Master reset is not implemented yet.
CODE: ClassVar = APCIService.RESTART
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 1
@classmethod
def from_knx(cls, raw: bytes) -> Restart:
"""Parse/deserialize from KNX/IP raw data."""
# Nothing to parse, but must be implemented explicitly.
return cls()
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
return encode_cmd_and_payload(self.CODE)
def __str__(self) -> str:
"""Return object as readable string."""
return "<Restart />"
@dataclass(slots=True)
class UserMemoryRead(APCI):
"""
UserMemoryRead service.
Payload indicates address (1 MiB) and count (1-15 bytes).
"""
CODE: ClassVar = APCIUserService.USER_MEMORY_READ
address: int = 0
count: int = 1
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4
@classmethod
def from_knx(cls, raw: bytes) -> UserMemoryRead:
"""Parse/deserialize from KNX/IP raw data."""
byte0, address = struct.unpack("!BH", raw[2:])
return cls(
count=byte0 & 0x0F,
address=(((byte0 & 0xF0) >> 4) << 16) + address,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 0xF:
raise ConversionError("Count out of range.")
byte0 = (((self.address & 0x0F0000) >> 16) << 4) | (self.count & 0x0F)
address = self.address & 0xFFFF
payload = struct.pack("!BH", byte0, address)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<UserMemoryRead address="{hex(self.address)}" count="{self.count}" />'
@dataclass(slots=True)
class UserMemoryWrite(APCI):
"""
UserMemoryWrite service.
Payload indicates address (1 MiB), count and data.
"""
CODE: ClassVar = APCIUserService.USER_MEMORY_WRITE
address: int
data: bytes
count: int = None # type: ignore[assignment]
def __post_init__(self) -> None:
"""Post-initialization steps."""
if self.count is None:
self.count = len(self.data) # type: ignore[unreachable]
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> UserMemoryWrite:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 5
byte0, address, data = struct.unpack(f"!BH{size}s", raw[2:])
return cls(
address=(((byte0 & 0xF0) >> 4) << 16) + address,
data=data,
count=byte0 & 0x0F,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 0xF:
raise ConversionError("Count out of range.")
byte0 = (((self.address & 0x0F0000) >> 16) << 4) | (self.count & 0x0F)
address = self.address & 0xFFFF
size = len(self.data)
payload = struct.pack(f"!BH{size}s", byte0, address, self.data)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<UserMemoryWrite address="{hex(self.address)}" count="{self.count}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class UserMemoryResponse(APCI):
"""
UserMemoryResponse service.
Payload indicates address (1 MiB), count and data.
"""
CODE: ClassVar = APCIUserService.USER_MEMORY_RESPONSE
address: int
data: bytes
count: int = None # type: ignore[assignment]
def __post_init__(self) -> None:
"""Post-initialization steps."""
if self.count is None:
self.count = len(self.data) # type: ignore[unreachable]
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> UserMemoryResponse:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 5
byte0, address, data = struct.unpack(f"!BH{size}s", raw[2:])
return cls(
address=(((byte0 & 0xF0) >> 4) << 16) + address,
data=data,
count=byte0 & 0x0F,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.address <= 0xFFFFF:
raise ConversionError("Address out of range.")
if not 0 <= self.count <= 0xF:
raise ConversionError("Count out of range.")
byte0 = (((self.address & 0x0F0000) >> 16) << 4) | (self.count & 0x0F)
address = self.address & 0xFFFF
size = len(self.data)
payload = struct.pack(f"!BH{size}s", byte0, address, self.data)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<UserMemoryResponse address="{hex(self.address)}" count="{self.count}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class UserManufacturerInfoRead(APCI):
"""UserManufacturerInfoRead service."""
CODE: ClassVar = APCIUserService.USER_MANUFACTURER_INFO_READ
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 1
@classmethod
def from_knx(cls, raw: bytes) -> UserManufacturerInfoRead:
"""Parse/deserialize from KNX/IP raw data."""
# Nothing to parse, but must be implemented explicitly.
return cls()
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
return encode_cmd_and_payload(self.CODE)
def __str__(self) -> str:
"""Return object as readable string."""
return "<UserManufacturerInfoRead />"
@dataclass(slots=True)
class UserManufacturerInfoResponse(APCI):
"""UserManufacturerInfoResponse service."""
CODE: ClassVar = APCIUserService.USER_MANUFACTURER_INFO_RESPONSE
manufacturer_id: int = 0
data: bytes = b"\x00\x00"
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4
@classmethod
def from_knx(cls, raw: bytes) -> UserManufacturerInfoResponse:
"""Parse/deserialize from KNX/IP raw data."""
manufacturer_id, data = struct.unpack("!B2s", raw[2:])
return cls(manufacturer_id=manufacturer_id, data=data)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = struct.pack("!B2s", self.manufacturer_id, self.data)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<UserManufacturerInfoResponse manufacturer_id="{self.manufacturer_id}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class FunctionPropertyCommand(APCI):
"""FunctionPropertyCommand service."""
CODE: ClassVar = APCIUserService.FUNCTION_PROPERTY_COMMAND
object_index: int = 0
property_id: int = 0
data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> FunctionPropertyCommand:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 4
object_index, property_id, data = struct.unpack(f"!BB{size}s", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
size = len(self.data)
payload = struct.pack(
f"!BB{size}s", self.object_index, self.property_id, self.data
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<FunctionPropertyCommand object_index="{self.object_index}" property_id="{self.property_id}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class FunctionPropertyStateRead(APCI):
"""FunctionPropertyStateRead service."""
CODE: ClassVar = APCIUserService.FUNCTION_PROPERTY_STATE_READ
object_index: int = 0
property_id: int = 0
data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 3 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> FunctionPropertyStateRead:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 4
object_index, property_id, data = struct.unpack(f"!BB{size}s", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
size = len(self.data)
payload = struct.pack(
f"!BB{size}s", self.object_index, self.property_id, self.data
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<FunctionPropertyStateRead object_index="{self.object_index}" property_id="{self.property_id}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class FunctionPropertyStateResponse(APCI):
"""FunctionPropertyStateResponse service."""
CODE: ClassVar = APCIUserService.FUNCTION_PROPERTY_STATE_RESPONSE
object_index: int = 0
property_id: int = 0
return_code: int = 0
data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> FunctionPropertyStateResponse:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 5
(
object_index,
property_id,
return_code,
data,
) = struct.unpack(f"!BBB{size}s", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
return_code=return_code,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
size = len(self.data)
payload = struct.pack(
f"!BBB{size}s",
self.object_index,
self.property_id,
self.return_code,
self.data,
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<FunctionPropertyStateResponse object_index="{self.object_index}" property_id="{self.property_id}" return_code="{self.return_code}" data="{self.data.hex()}" />'
@dataclass(slots=True)
class AuthorizeRequest(APCI):
"""AuthorizeRequest service."""
CODE: ClassVar = APCIExtendedService.AUTHORIZE_REQUEST
key: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 6
@classmethod
def from_knx(cls, raw: bytes) -> AuthorizeRequest:
"""Parse/deserialize from KNX/IP raw data."""
_, key = struct.unpack("!BI", raw[2:])
return cls(key=key)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = struct.pack("!BI", 0, self.key)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<AuthorizeRequest key="{self.key}" />'
@dataclass(slots=True)
class AuthorizeResponse(APCI):
"""AuthorizeResponse service."""
CODE: ClassVar = APCIExtendedService.AUTHORIZE_RESPONSE
level: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 2
@classmethod
def from_knx(cls, raw: bytes) -> AuthorizeResponse:
"""Parse/deserialize from KNX/IP raw data."""
(level,) = struct.unpack("!B", raw[2:])
return cls(level=level)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = struct.pack("!B", self.level)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<AuthorizeResponse level="{self.level}"/>'
@dataclass(slots=True)
class PropertyValueRead(APCI):
"""
PropertyValueRead service.
Payload indicates object, property, count and start.
"""
CODE: ClassVar = APCIExtendedService.PROPERTY_VALUE_READ
object_index: int = 0
property_id: int = 0
count: int = 1
start_index: int = 1
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5
@classmethod
def from_knx(cls, raw: bytes) -> PropertyValueRead:
"""Parse/deserialize from KNX/IP raw data."""
(
object_index,
property_id,
count,
start_index,
) = struct.unpack("!BBBB", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
count=count >> 4,
start_index=(count & 0xF) * 256 + start_index,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.count <= 0xF:
raise ConversionError("Count out of range.")
payload = struct.pack(
"!BBBB",
self.object_index,
self.property_id,
(self.count << 4) + (self.start_index >> 8),
self.start_index & 0xFF,
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return (
"<PropertyValueRead "
f'object_index="{self.object_index}" '
f'property_id="{self.property_id}" '
f'count="{self.count}" '
f'start_index="{self.start_index}" '
"/>"
)
@dataclass(slots=True)
class PropertyValueWrite(APCI):
"""
PropertyValueWrite service.
Payload indicates object, property, count, start and data itself.
"""
CODE: ClassVar = APCIExtendedService.PROPERTY_VALUE_WRITE
object_index: int = 0
property_id: int = 0
count: int = 1
start_index: int = 0
data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5 + len(self.data)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.count <= 0xF:
raise ConversionError("Count out of range.")
size = len(self.data)
payload = struct.pack(
f"!BBBB{size}s",
self.object_index,
self.property_id,
(self.count << 4) + (self.start_index >> 8),
self.start_index & 0xFF,
self.data,
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
@classmethod
def from_knx(cls, raw: bytes) -> PropertyValueWrite:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 6
(
object_index,
property_id,
count,
start_index,
data,
) = struct.unpack(f"!BBBB{size}s", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
count=count >> 4,
start_index=(count & 0xF) * 256 + start_index,
data=data,
)
def __str__(self) -> str:
"""Return object as readable string."""
return (
"<PropertyValueWrite "
f'object_index="{self.object_index}" '
f'property_id="{self.property_id}" '
f'count="{self.count}" '
f'start_index="{self.start_index}" '
f'data="{self.data.hex()}" '
"/>"
)
@dataclass(slots=True)
class PropertyValueResponse(APCI):
"""
PropertyValueResponse service.
Payload indicates object, property, count, start and data itself. Size of
the payload depends on the data.
"""
CODE: ClassVar = APCIExtendedService.PROPERTY_VALUE_RESPONSE
object_index: int = 0
property_id: int = 0
count: int = 1
start_index: int = 0
data: bytes = b""
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 5 + len(self.data)
@classmethod
def from_knx(cls, raw: bytes) -> PropertyValueResponse:
"""Parse/deserialize from KNX/IP raw data."""
size = len(raw) - 6
(
object_index,
property_id,
count,
start_index,
data,
) = struct.unpack(f"!BBBB{size}s", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
count=count >> 4,
start_index=(count & 0xF) * 256 + start_index,
data=data,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.count <= 0xF:
raise ConversionError("Count out of range.")
size = len(self.data)
payload = struct.pack(
f"!BBBB{size}s",
self.object_index,
self.property_id,
(self.count << 4) + (self.start_index >> 8),
self.start_index & 0xFF,
self.data,
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return (
"<PropertyValueResponse "
f'object_index="{self.object_index}" '
f'property_id="{self.property_id}" '
f'count="{self.count}" '
f'start_index="{self.start_index}" '
f'data="{self.data.hex()}" '
"/>"
)
@dataclass(slots=True)
class PropertyDescriptionRead(APCI):
"""PropertyDescriptionRead service."""
CODE: ClassVar = APCIExtendedService.PROPERTY_DESCRIPTION_READ
object_index: int = 0
property_id: int = 0
property_index: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 4
@classmethod
def from_knx(cls, raw: bytes) -> PropertyDescriptionRead:
"""Parse/deserialize from KNX/IP raw data."""
object_index, property_id, property_index = struct.unpack("!BBB", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
property_index=property_index,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = struct.pack(
"!BBB", self.object_index, self.property_id, self.property_index
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<PropertyDescriptionRead object_index="{self.object_index}" property_id="{self.property_id}" property_index="{self.property_index}" />'
@dataclass(slots=True)
class PropertyDescriptionResponse(APCI):
"""PropertyDescriptionResponse service."""
CODE: ClassVar = APCIExtendedService.PROPERTY_DESCRIPTION_RESPONSE
object_index: int = 0
property_id: int = 0
property_index: int = 0
type_: int = 0
max_count: int = 1
access: int = 0
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 8
@classmethod
def from_knx(cls, raw: bytes) -> PropertyDescriptionResponse:
"""Parse/deserialize from KNX/IP raw data."""
(
object_index,
property_id,
property_index,
type_,
max_count,
access,
) = struct.unpack("!BBBBHB", raw[2:])
return cls(
object_index=object_index,
property_id=property_id,
property_index=property_index,
type_=type_,
max_count=max_count & 0x0FFF,
access=access,
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if not 0 <= self.max_count <= 0x0FFF:
raise ConversionError("Max count out of range.")
payload = struct.pack(
"!BBBBHB",
self.object_index,
self.property_id,
self.property_index,
self.type_,
self.max_count & 0x0FFF,
self.access,
)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<PropertyDescriptionResponse object_index="{self.object_index}" property_id="{self.property_id}" property_index="{self.property_index}" type="{self.type_}" max_count="{self.max_count}" access="{self.access}" />'
@dataclass(slots=True)
class IndividualAddressSerialRead(APCI):
"""IndividualAddressSerialRead service."""
CODE: ClassVar = APCIExtendedService.INDIVIDUAL_ADDRESS_SERIAL_READ
serial: bytes
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 7
@classmethod
def from_knx(cls, raw: bytes) -> IndividualAddressSerialRead:
"""Parse/deserialize from KNX/IP raw data."""
(serial,) = struct.unpack("!6s", raw[2:])
return cls(serial=serial)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if len(self.serial) != 6:
raise ConversionError("Serial must be 6 bytes.")
payload = struct.pack("!6s", self.serial)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<IndividualAddressSerialRead serial="{self.serial.hex()}" />'
@dataclass(slots=True)
class IndividualAddressSerialResponse(APCI):
"""IndividualAddressSerialResponse service."""
CODE: ClassVar = APCIExtendedService.INDIVIDUAL_ADDRESS_SERIAL_RESPONSE
serial: bytes
address: IndividualAddress
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 11
@classmethod
def from_knx(cls, raw: bytes) -> IndividualAddressSerialResponse:
"""Parse/deserialize from KNX/IP raw data."""
serial, raw_address, _ = struct.unpack("!6sHH", raw[2:])
return cls(
serial=serial,
address=IndividualAddress(raw_address),
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if len(self.serial) != 6:
raise ConversionError("Serial must be 6 bytes.")
payload = struct.pack("!6s2sH", self.serial, self.address.to_knx(), 0)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<IndividualAddressSerialResponse serial="{self.serial.hex()}" address="{self.address}" />'
@dataclass(slots=True)
class IndividualAddressSerialWrite(APCI):
"""IndividualAddressSerialWrite service."""
CODE: ClassVar = APCIExtendedService.INDIVIDUAL_ADDRESS_SERIAL_WRITE
serial: bytes
address: IndividualAddress
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 13
@classmethod
def from_knx(cls, raw: bytes) -> IndividualAddressSerialWrite:
"""Parse/deserialize from KNX/IP raw data."""
serial, raw_address, _ = struct.unpack("!6sHI", raw[2:])
return cls(
serial=serial,
address=IndividualAddress(raw_address),
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
if len(self.serial) != 6:
raise ConversionError("Serial must be 6 bytes.")
payload = struct.pack("!6s2sI", self.serial, self.address.to_knx(), 0)
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<IndividualAddressSerialWrite serial="{self.serial.hex()}" address="{self.address}" />'
@dataclass(slots=True)
class SecureAPDU(APCI):
"""SecureAPDU service."""
CODE: ClassVar = APCIExtendedService.APCI_SEC
scf: SecurityControlField
secured_data: SecureData
def calculated_length(self) -> int:
"""Get length of APCI payload."""
return 2 + len(self.secured_data)
@classmethod
def from_knx(cls, raw: bytes) -> SecureAPDU:
"""Parse/deserialize from KNX/IP raw data."""
return cls(
scf=SecurityControlField.from_knx(raw[2]),
secured_data=SecureData.from_knx(raw[3:]),
)
def to_knx(self) -> bytearray:
"""Serialize to KNX/IP raw data."""
payload = self.scf.to_knx() + self.secured_data.to_knx()
return encode_cmd_and_payload(self.CODE, appended_payload=payload)
def __str__(self) -> str:
"""Return object as readable string."""
return f'<SecureAPDU scf="{self.scf}" secured_data={self.secured_data!r} />'
|