14
14
15
15
#include < DataModelLogger.h>
16
16
#include < controller/CommissioneeDeviceProxy.h>
17
- #if CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
18
- #include < esp_matter_commissioner.h>
19
- #else
20
- #include < app/server/Server.h>
21
- #endif
22
17
#include < esp_check.h>
18
+ #include < esp_matter_controller_client.h>
23
19
#include < esp_matter_controller_cluster_command.h>
24
20
#include < esp_matter_controller_utils.h>
25
21
#include < esp_matter_mem.h>
26
22
#include < json_parser.h>
27
23
24
+ #include < app/server/Server.h>
28
25
#include < crypto/CHIPCryptoPAL.h>
29
26
#include < setup_payload/ManualSetupPayloadGenerator.h>
30
27
#include < setup_payload/QRCodeSetupPayloadGenerator.h>
@@ -101,7 +98,8 @@ void decode_response(const ConcreteCommandPath &command_path, TLVReader *reader)
101
98
} else if (command_path.mCommandId == ScenesManagement::Commands::StoreSceneResponse::Id) {
102
99
decode_command_response<ScenesManagement::Commands::StoreScene::Type::ResponseType>(command_path, reader);
103
100
} else if (command_path.mCommandId == ScenesManagement::Commands::GetSceneMembershipResponse::Id) {
104
- decode_command_response<ScenesManagement::Commands::GetSceneMembership::Type::ResponseType>(command_path, reader);
101
+ decode_command_response<ScenesManagement::Commands::GetSceneMembership::Type::ResponseType>(command_path,
102
+ reader);
105
103
}
106
104
}
107
105
@@ -209,11 +207,15 @@ esp_err_t cluster_command::dispatch_group_command(void *context)
209
207
esp_err_t err = ESP_OK;
210
208
cluster_command *cmd = reinterpret_cast <cluster_command *>(context);
211
209
uint16_t group_id = cmd->m_destination_id & 0xFFFF ;
212
- #if CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
213
- uint8_t fabric_index = commissioner::get_device_commissioner ()->GetFabricIndex ();
214
- #else
210
+ #ifdef CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER
215
211
uint8_t fabric_index = get_fabric_index ();
216
- #endif
212
+ #else
213
+ #ifdef CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
214
+ uint8_t fabric_index = matter_controller_client::get_instance ().get_commissioner ()->GetFabricIndex ();
215
+ #else
216
+ uint8_t fabric_index = matter_controller_client::get_instance ().get_controller ()->GetFabricIndex ();
217
+ #endif // CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
218
+ #endif // CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER
217
219
chip::app::CommandPathParams command_path = {cmd->m_endpoint_id , group_id, cmd->m_cluster_id , cmd->m_command_id ,
218
220
chip::app::CommandPathFlags::kGroupIdValid };
219
221
err = custom::command::send_group_command (fabric_index, command_path, cmd->m_command_data_field );
@@ -226,18 +228,27 @@ esp_err_t cluster_command::send_command()
226
228
if (is_group_command ()) {
227
229
return dispatch_group_command (reinterpret_cast <void *>(this ));
228
230
}
229
- #if CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
231
+ #ifdef CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER
232
+ chip::Server &server = chip::Server::GetInstance ();
233
+ server.GetCASESessionManager ()->FindOrEstablishSession (ScopedNodeId (m_destination_id, get_fabric_index ()),
234
+ &on_device_connected_cb, &on_device_connection_failure_cb);
235
+ return ESP_OK;
236
+ #else
237
+ auto &controller_instance = esp_matter::controller::matter_controller_client::get_instance ();
238
+ #ifdef CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
230
239
if (CHIP_NO_ERROR ==
231
- commissioner::get_device_commissioner ()->GetConnectedDevice (m_destination_id, &on_device_connected_cb,
232
- &on_device_connection_failure_cb)) {
240
+ controller_instance. get_commissioner ()->GetConnectedDevice (m_destination_id, &on_device_connected_cb,
241
+ &on_device_connection_failure_cb)) {
233
242
return ESP_OK;
234
243
}
235
244
#else
236
- chip::Server *server = &(chip::Server::GetInstance ());
237
- server->GetCASESessionManager ()->FindOrEstablishSession (ScopedNodeId (m_destination_id, get_fabric_index ()),
238
- &on_device_connected_cb, &on_device_connection_failure_cb);
239
- return ESP_OK;
240
- #endif
245
+ if (CHIP_NO_ERROR ==
246
+ controller_instance.get_controller ()->GetConnectedDevice (m_destination_id, &on_device_connected_cb,
247
+ &on_device_connection_failure_cb)) {
248
+ return ESP_OK;
249
+ }
250
+ #endif // CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
251
+ #endif // CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER
241
252
chip::Platform::Delete (this );
242
253
return ESP_FAIL;
243
254
}
0 commit comments