Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recheck and sync all clusters again against Chip XML/Specs #268

Closed
wants to merge 7 commits into from

Conversation

Apollon77
Copy link
Collaborator

I did a full check of all clusters in as of now against the Chip XMLs and specs ... Here are the results.

I also streamlined all names tp be "without spaces" so that it easiuer readable in logging

@Apollon77 Apollon77 requested a review from mfucci March 10, 2023 15:04
Copy link
Contributor

@JimBuzbee JimBuzbee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work to make everything consistent, and you found a few bugs along the way!

/** Used to remember if a state is already storednin an old scene to not store one again when sending another Off command */
//globalSceneControl: OptionalAttribute(0x4000, TlvBoolean, { default: true }),
/** Used to remember if a state is already stored in an old scene to not store one again when sending another Off command */
globalSceneControl: OptionalAttribute(0x4000, TlvBoolean, { default: true }),
Copy link
Collaborator Author

@Apollon77 Apollon77 Mar 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to not add these optional ones

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed with Ingo: globalSceneControl is not optional.
It should not be present when features.lightingLevelControl = false
and it is mandatory when features.lightingLevelControl = true

Let's keep those as commented out for now and we need to figure out a way to have the cluster definition changing based on a feature flag value.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have that already in other clusters the same way that we define things options if they are dependent on a featureflag. So i would do it the same here so that it can be used if the dev knows this dependency - until we have a better way. So "semantic optional" ;-)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added comments for the "semantic optional" approach in the two relevant clusters till now and also a comment.

@mfucci

For a clean splitup solution we need to either:

  • enhance "BitFlag" used in the features to take a value to make is static ... downside would be that the feature struct is then duplicated, OR
  • add a "featureDefaults" struct to the Cluster definition to allow to have the "feature definition" to be the same, but then set the feature flag directly. But in this case it should not be required anymore when instanziating the ClusterServer

I would propose to do that after code merge.

I we really do not come to an agreement I will comment the stuff out again and add an Todo - but this limits other Devs to use the fields and commands at all.

/** Used to remember if a state is already storednin an old scene to not store one again when sending another Off command */
//globalSceneControl: OptionalAttribute(0x4000, TlvBoolean, { default: true }),
/** Used to remember if a state is already stored in an old scene to not store one again when sending another Off command */
globalSceneControl: OptionalAttribute(0x4000, TlvBoolean, { default: true }),
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed with Ingo: globalSceneControl is not optional.
It should not be present when features.lightingLevelControl = false
and it is mandatory when features.lightingLevelControl = true

Let's keep those as commented out for now and we need to figure out a way to have the cluster definition changing based on a feature flag value.

@Apollon77
Copy link
Collaborator Author

Content included in project-chip/matter.js#59 or as followup

@Apollon77 Apollon77 closed this Mar 17, 2023
Apollon77 added a commit to project-chip/matter.js that referenced this pull request Mar 23, 2023
* Merging clusters with matter.js

* fix

* Adds already approved content from mfucci/node-matter#268

* Add fix for GroupsCluster

* adjust GeneralDiagnostics to use all features
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants