-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature]Add operational state cluster xml and code gen (#26736)
* Add operational state cluster xml to data-model * Zap generated for operational state cluster * Restyled by prettier-json * Fix Android and Java test build * Fix operational state cluster's xml match the spec * Fix Java codegen bits missing * Zap generated for operational state cluster * Zap generated for operational state cluster * Fix Java header generation for attributes with nullable list type. * Fix OperationalStateStruct's field OperationalStateLabel missing Constraint * Zap generated for operational state cluster --------- Co-authored-by: Restyled.io <[email protected]> Co-authored-by: Boris Zbarsky <[email protected]>
- Loading branch information
Showing
60 changed files
with
9,599 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
src/app/zap-templates/zcl/data-model/chip/operational-state-cluster.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Copyright (c) 2023 Project CHIP Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<configurator> | ||
<domain name="CHIP"/> | ||
|
||
<enum name="OperationalStateEnum" type="ENUM8"> | ||
<cluster code="0x0060"/> | ||
<item name="Stopped" value="0x00"/> | ||
<item name="Running" value="0x01"/> | ||
<item name="Paused" value="0x02"/> | ||
<item name="Error" value="0x03"/> | ||
</enum> | ||
|
||
<enum name="ErrorStateEnum" type="ENUM8"> | ||
<cluster code="0x0060"/> | ||
<item name="NoError" value="0x00"/> | ||
<item name="UnableToStartOrResume" value="0x01"/> | ||
<item name="UnableToCompleteOperation" value="0x02"/> | ||
<item name="CommandInvalidInState" value="0x03"/> | ||
</enum> | ||
|
||
<struct name="OperationalStateStruct"> | ||
<cluster code="0x0060"/> | ||
<item name="OperationalStateID" type="OperationalStateEnum" optional="false"/> | ||
<item name="OperationalStateLabel" type="CHAR_STRING" optional="false" length="64"/> | ||
</struct> | ||
|
||
<struct name="ErrorStateStruct"> | ||
<cluster code="0x0060"/> | ||
<item name="ErrorStateID" type="ErrorStateEnum" optional="false" /> | ||
<item name="ErrorStateLabel" type="CHAR_STRING" optional="false" isNullable="true" length="64"/> | ||
<item name="ErrorStateDetails" type="CHAR_STRING" optional="true" length="64"/> | ||
</struct> | ||
|
||
<cluster> | ||
<domain>General</domain> | ||
<name>Operational State</name> | ||
<code>0x0060</code> | ||
<define>OPERATIONAL_STATE_CLUSTER</define> | ||
<client init="false" tick="false">true</client> | ||
<server init="false" tick="false">true</server> | ||
<description>This cluster supports remotely monitoring and, where supported, changing the operational state of any device where a state machine is a part of the operation.</description> | ||
|
||
<globalAttribute side="server" code="0xFFFD" value="1" /> | ||
|
||
<attribute side="server" code="0x0000" define="PHASE_LIST" type="ARRAY" entryType="CHAR_STRING" writable="false" isNullable="true" optional="false">PhaseList</attribute> | ||
<attribute side="server" code="0x0001" define="CURRENT_PHASE" type="INT8U" min="0x00" max="0x1F" writable="false" isNullable="true" optional="false">CurrentPhase</attribute> | ||
<attribute side="server" code="0x0002" define="COUNTDOWN_TIME" type="elapsed_s" min="0x00" max="2529200" writable="false" isNullable="true" optional="true">CountdownTime</attribute> | ||
<attribute side="server" code="0x0003" define="OPERATIONAL_STATE_LIST" type="ARRAY" entryType="OperationalStateStruct" writable="false" optional="false">OperationalStateList</attribute> | ||
<attribute side="server" code="0x0004" define="OPERATIONAL_STATE" type="OperationalStateStruct" writable="false" optional="false">OperationalState</attribute> | ||
<attribute side="server" code="0x0005" define="OPERATIONAL_ERROR" type="ErrorStateStruct" writable="false" optional="false">OperationalError</attribute> | ||
|
||
<command source="client" code="0x00" name="Pause" response="OperationalCommandResponse" optional="true"> | ||
<description>Upon receipt, the device SHALL pause its operation if it is possible based on the current function of the server.</description> | ||
</command> | ||
|
||
<command source="client" code="0x01" name="Stop" response="OperationalCommandResponse" optional="true"> | ||
<description>Upon receipt, the device SHALL stop its operation if it is at a position where it is safe to do so and/or permitted.</description> | ||
</command> | ||
|
||
<command source="client" code="0x02" name="Start" response="OperationalCommandResponse" optional="true"> | ||
<description>Upon receipt, the device SHALL start its operation if it is safe to do so and the device is in an operational state from which it can be started.</description> | ||
</command> | ||
|
||
<command source="client" code="0x03" name="Resume" response="OperationalCommandResponse" optional="true"> | ||
<description>Upon receipt, the device SHALL resume its operation from the point it was at when it received the Pause command, or from the point when it was paused by means outside of this cluster (for example by manual button press).</description> | ||
</command> | ||
|
||
<command source="server" code="0x04" name="OperationalCommandResponse" optional="true"> | ||
<description>This command SHALL be generated in response to any of the Start, Stop, Pause, or Resume commands.</description> | ||
<arg name="CommandResponseState" type="ErrorStateStruct"/> | ||
</command> | ||
|
||
<event side="server" code="0x00" priority="critical" name="OperationalError" optional="false"> | ||
<description>OperationalError</description> | ||
<field id="0" name="ErrorState" type="ErrorStateStruct" /> | ||
</event> | ||
|
||
<event side="server" code="0x01" priority="info" name="OperationCompletion" optional="true"> | ||
<description>OperationCompletion</description> | ||
<field id="0" name="CompletionErrorCode" type="ErrorStateEnum" /> | ||
<field id="1" name="TotalOperationalTime" type="elapsed_s" isNullable="true" optional="true"/> | ||
<field id="2" name="PausedTime" type="elapsed_s" isNullable="true" optional="true"/> | ||
</event> | ||
|
||
</cluster> | ||
</configurator> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.