-
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.
[Silabs] Add generic witch support to light-switch example (#24642)
* Add generic witch support to light-switch example * restyle * move shell init to light-switch-mgr --------- Co-authored-by: Andrei Litvin <[email protected]>
- Loading branch information
Showing
11 changed files
with
484 additions
and
650 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
161 changes: 161 additions & 0 deletions
161
examples/light-switch-app/silabs/common/BindingHandler.cpp
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,161 @@ | ||
/* | ||
* | ||
* Copyright (c) 2020 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. | ||
*/ | ||
|
||
#include "BindingHandler.h" | ||
|
||
#include "AppConfig.h" | ||
#include "app/CommandSender.h" | ||
#include "app/clusters/bindings/BindingManager.h" | ||
#include "app/server/Server.h" | ||
#include "controller/InvokeInteraction.h" | ||
#include "platform/CHIPDeviceLayer.h" | ||
#include <app/clusters/bindings/bindings.h> | ||
#include <lib/support/CodeUtils.h> | ||
|
||
using namespace chip; | ||
using namespace chip::app; | ||
|
||
namespace { | ||
|
||
void ProcessOnOffUnicastBindingCommand(CommandId commandId, const EmberBindingTableEntry & binding, | ||
Messaging::ExchangeManager * exchangeMgr, const SessionHandle & sessionHandle) | ||
{ | ||
auto onSuccess = [](const ConcreteCommandPath & commandPath, const StatusIB & status, const auto & dataResponse) { | ||
ChipLogProgress(NotSpecified, "OnOff command succeeds"); | ||
}; | ||
|
||
auto onFailure = [](CHIP_ERROR error) { | ||
ChipLogError(NotSpecified, "OnOff command failed: %" CHIP_ERROR_FORMAT, error.Format()); | ||
}; | ||
|
||
switch (commandId) | ||
{ | ||
case Clusters::OnOff::Commands::Toggle::Id: | ||
Clusters::OnOff::Commands::Toggle::Type toggleCommand; | ||
Controller::InvokeCommandRequest(exchangeMgr, sessionHandle, binding.remote, toggleCommand, onSuccess, onFailure); | ||
break; | ||
|
||
case Clusters::OnOff::Commands::On::Id: | ||
Clusters::OnOff::Commands::On::Type onCommand; | ||
Controller::InvokeCommandRequest(exchangeMgr, sessionHandle, binding.remote, onCommand, onSuccess, onFailure); | ||
break; | ||
|
||
case Clusters::OnOff::Commands::Off::Id: | ||
Clusters::OnOff::Commands::Off::Type offCommand; | ||
Controller::InvokeCommandRequest(exchangeMgr, sessionHandle, binding.remote, offCommand, onSuccess, onFailure); | ||
break; | ||
} | ||
} | ||
|
||
void ProcessOnOffGroupBindingCommand(CommandId commandId, const EmberBindingTableEntry & binding) | ||
{ | ||
Messaging::ExchangeManager & exchangeMgr = Server::GetInstance().GetExchangeManager(); | ||
|
||
switch (commandId) | ||
{ | ||
case Clusters::OnOff::Commands::Toggle::Id: | ||
Clusters::OnOff::Commands::Toggle::Type toggleCommand; | ||
Controller::InvokeGroupCommandRequest(&exchangeMgr, binding.fabricIndex, binding.groupId, toggleCommand); | ||
break; | ||
|
||
case Clusters::OnOff::Commands::On::Id: | ||
Clusters::OnOff::Commands::On::Type onCommand; | ||
Controller::InvokeGroupCommandRequest(&exchangeMgr, binding.fabricIndex, binding.groupId, onCommand); | ||
|
||
break; | ||
|
||
case Clusters::OnOff::Commands::Off::Id: | ||
Clusters::OnOff::Commands::Off::Type offCommand; | ||
Controller::InvokeGroupCommandRequest(&exchangeMgr, binding.fabricIndex, binding.groupId, offCommand); | ||
break; | ||
} | ||
} | ||
|
||
void LightSwitchChangedHandler(const EmberBindingTableEntry & binding, OperationalDeviceProxy * peer_device, void * context) | ||
{ | ||
VerifyOrReturn(context != nullptr, ChipLogError(NotSpecified, "OnDeviceConnectedFn: context is null")); | ||
BindingCommandData * data = static_cast<BindingCommandData *>(context); | ||
|
||
if (binding.type == EMBER_MULTICAST_BINDING && data->isGroup) | ||
{ | ||
switch (data->clusterId) | ||
{ | ||
case Clusters::OnOff::Id: | ||
ProcessOnOffGroupBindingCommand(data->commandId, binding); | ||
break; | ||
} | ||
} | ||
else if (binding.type == EMBER_UNICAST_BINDING && !data->isGroup) | ||
{ | ||
switch (data->clusterId) | ||
{ | ||
case Clusters::OnOff::Id: | ||
VerifyOrDie(peer_device != nullptr && peer_device->ConnectionReady()); | ||
ProcessOnOffUnicastBindingCommand(data->commandId, binding, peer_device->GetExchangeManager(), | ||
peer_device->GetSecureSession().Value()); | ||
break; | ||
} | ||
} | ||
} | ||
|
||
void LightSwitchContextReleaseHandler(void * context) | ||
{ | ||
VerifyOrReturn(context != nullptr, ChipLogError(NotSpecified, "LightSwitchContextReleaseHandler: context is null")); | ||
Platform::Delete(static_cast<BindingCommandData *>(context)); | ||
} | ||
|
||
void InitBindingHandlerInternal(intptr_t arg) | ||
{ | ||
auto & server = chip::Server::GetInstance(); | ||
chip::BindingManager::GetInstance().Init( | ||
{ &server.GetFabricTable(), server.GetCASESessionManager(), &server.GetPersistentStorage() }); | ||
chip::BindingManager::GetInstance().RegisterBoundDeviceChangedHandler(LightSwitchChangedHandler); | ||
chip::BindingManager::GetInstance().RegisterBoundDeviceContextReleaseHandler(LightSwitchContextReleaseHandler); | ||
} | ||
|
||
} // namespace | ||
|
||
/******************************************************** | ||
* Switch functions | ||
*********************************************************/ | ||
|
||
void SwitchWorkerFunction(intptr_t context) | ||
{ | ||
VerifyOrReturn(context != 0, ChipLogError(NotSpecified, "SwitchWorkerFunction - Invalid work data")); | ||
|
||
BindingCommandData * data = reinterpret_cast<BindingCommandData *>(context); | ||
BindingManager::GetInstance().NotifyBoundClusterChanged(data->localEndpointId, data->clusterId, static_cast<void *>(data)); | ||
} | ||
|
||
void BindingWorkerFunction(intptr_t context) | ||
{ | ||
VerifyOrReturn(context != 0, ChipLogError(NotSpecified, "BindingWorkerFunction - Invalid work data")); | ||
|
||
EmberBindingTableEntry * entry = reinterpret_cast<EmberBindingTableEntry *>(context); | ||
AddBindingEntry(*entry); | ||
|
||
Platform::Delete(entry); | ||
} | ||
|
||
CHIP_ERROR InitBindingHandler() | ||
{ | ||
// The initialization of binding manager will try establishing connection with unicast peers | ||
// so it requires the Server instance to be correctly initialized. Post the init function to | ||
// the event queue so that everything is ready when initialization is conducted. | ||
chip::DeviceLayer::PlatformMgr().ScheduleWork(InitBindingHandlerInternal); | ||
return CHIP_NO_ERROR; | ||
} |
File renamed without changes.
Oops, something went wrong.