Skip to content

Commit 67937a0

Browse files
Merge pull request #8 from marcelveldt/patch-2
Update 0006-Add-lookup-dicts-for-clusters-and-attributes.patch
2 parents bc10cea + 308ba27 commit 67937a0

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

0006-Add-lookup-dicts-for-clusters-and-attributes.patch

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From ad37e367f4989efb5cd8668e3a086101385d2c2a Mon Sep 17 00:00:00 2001
1+
From a3abb758e0cab1f7e1dd9639af59f7c7e58c0c47 Mon Sep 17 00:00:00 2001
22
From: Marcel van der Veldt <m.vanderveldt@outlook.com>
3-
Date: Mon, 20 Feb 2023 19:17:39 +0100
3+
Date: Tue, 21 Feb 2023 16:05:53 +0100
44
Subject: [PATCH] Add lookup dicts for clusters and attributes
55

66
---
7-
.../python/chip/clusters/ClusterObjects.py | 20 +++++++++++++++++++
8-
1 file changed, 20 insertions(+)
7+
.../python/chip/clusters/ClusterObjects.py | 26 +++++++++++++++++++
8+
1 file changed, 26 insertions(+)
99

1010
diff --git a/src/controller/python/chip/clusters/ClusterObjects.py b/src/controller/python/chip/clusters/ClusterObjects.py
11-
index c3af537da..2d3a73a10 100644
11+
index c3af537da..6c745f6d3 100644
1212
--- a/src/controller/python/chip/clusters/ClusterObjects.py
1313
+++ b/src/controller/python/chip/clusters/ClusterObjects.py
1414
@@ -217,6 +217,10 @@ class ClusterCommand(ClusterObject):
@@ -22,7 +22,7 @@ index c3af537da..2d3a73a10 100644
2222

2323
class Cluster(ClusterObject):
2424
'''
25-
@@ -227,6 +231,13 @@ class Cluster(ClusterObject):
25+
@@ -227,6 +231,16 @@ class Cluster(ClusterObject):
2626
especially the TLV decoding logic. Also ThreadNetworkDiagnostics has an attribute with the same name so we
2727
picked data_version as its name.
2828
'''
@@ -31,23 +31,29 @@ index c3af537da..2d3a73a10 100644
3131
+ """Register a subclass."""
3232
+ super().__init_subclass__(*args, **kwargs)
3333
+ # register this cluster in the ALL_CLUSTERS dict for quick lookups
34-
+ ALL_CLUSTERS[cls.id] = cls
34+
+ try:
35+
+ ALL_CLUSTERS[cls.id] = cls
36+
+ except NotImplementedError:
37+
+ pass # we can safely ignore this
3538
+
3639
@property
3740
def data_version(self) -> int:
3841
return self._data_version
39-
@@ -253,6 +264,15 @@ class ClusterAttributeDescriptor:
42+
@@ -253,6 +267,18 @@ class ClusterAttributeDescriptor:
4043

4144
The implementation of this functions is quite tricky, it will create a cluster object on-the-fly, and use it for actual encode / decode routine to save lines of code.
4245
'''
4346
+
4447
+ def __init_subclass__(cls, *args, **kwargs) -> None:
4548
+ """Register a subclass."""
4649
+ super().__init_subclass__(*args, **kwargs)
47-
+ if cls.cluster_id not in ALL_ATTRIBUTES:
48-
+ ALL_ATTRIBUTES[cls.cluster_id] = {}
49-
+ # register this clusterattribute in the ALL_ATTRIBUTES dict for quick lookups
50-
+ ALL_ATTRIBUTES[cls.cluster_id][cls.attribute_id] = cls
50+
+ try:
51+
+ if cls.cluster_id not in ALL_ATTRIBUTES:
52+
+ ALL_ATTRIBUTES[cls.cluster_id] = {}
53+
+ # register this clusterattribute in the ALL_ATTRIBUTES dict for quick lookups
54+
+ ALL_ATTRIBUTES[cls.cluster_id][cls.attribute_id] = cls
55+
+ except NotImplementedError:
56+
+ pass # we can safely ignore this
5157
+
5258
@classmethod
5359
def ToTLV(cls, tag: Union[int, None], value):

0 commit comments

Comments
 (0)