-
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.
* [chip-tool] Add chip-tool interactive mode * Update generated content * Allow interactive mode to be disabled for some build variants
- Loading branch information
1 parent
a6ff951
commit 1030462
Showing
20 changed files
with
454 additions
and
65 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
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
75 changes: 75 additions & 0 deletions
75
examples/chip-tool/commands/clusters/SubscriptionsCommands.h
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,75 @@ | ||
/* | ||
* Copyright (c) 2022 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
class ShutdownSubscription : public CHIPCommand | ||
{ | ||
public: | ||
ShutdownSubscription(CredentialIssuerCommands * credsIssuerConfig) : CHIPCommand("shutdown-subscription", credsIssuerConfig) | ||
{ | ||
AddArgument("subscription-id", 0, UINT64_MAX, &mSubscriptionId); | ||
} | ||
|
||
/////////// CHIPCommand Interface ///////// | ||
CHIP_ERROR RunCommand() override | ||
{ | ||
CHIP_ERROR err = chip::app::InteractionModelEngine::GetInstance()->ShutdownSubscription(mSubscriptionId); | ||
SetCommandExitStatus(err); | ||
return CHIP_NO_ERROR; | ||
} | ||
chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(10); } | ||
|
||
private: | ||
uint64_t mSubscriptionId; | ||
}; | ||
|
||
class ShutdownSubscriptions : public CHIPCommand | ||
{ | ||
public: | ||
ShutdownSubscriptions(CredentialIssuerCommands * credsIssuerConfig) : CHIPCommand("shutdown-subscriptions", credsIssuerConfig) | ||
{ | ||
AddArgument("fabric-index", 0, UINT64_MAX, &mFabricIndex); | ||
AddArgument("node-id", 0, UINT64_MAX, &mNodeId); | ||
} | ||
|
||
/////////// CHIPCommand Interface ///////// | ||
CHIP_ERROR RunCommand() override | ||
{ | ||
CHIP_ERROR err = chip::app::InteractionModelEngine::GetInstance()->ShutdownSubscriptions(mFabricIndex, mNodeId); | ||
SetCommandExitStatus(err); | ||
return CHIP_NO_ERROR; | ||
} | ||
chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(10); } | ||
|
||
private: | ||
chip::FabricIndex mFabricIndex; | ||
chip::NodeId mNodeId; | ||
}; | ||
|
||
void registerClusterSubscriptions(Commands & commands, CredentialIssuerCommands * credsIssuerConfig) | ||
{ | ||
const char * clusterName = "Subscriptions"; | ||
|
||
commands_list clusterCommands = { | ||
make_unique<ShutdownSubscription>(credsIssuerConfig), // | ||
make_unique<ShutdownSubscriptions>(credsIssuerConfig), // | ||
}; | ||
|
||
commands.Register(clusterName, clusterCommands); | ||
} |
Oops, something went wrong.