Skip to content

Commit b322f94

Browse files
committed
components/esp-matter: Add SinglyLinkedList and refactor code to use its methods
1 parent 785b16c commit b322f94

File tree

2 files changed

+138
-142
lines changed

2 files changed

+138
-142
lines changed

components/esp_matter/esp_matter_core.cpp

+13-142
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include <esp_matter_providers.h>
3838

3939
#include <esp_matter_nvs.h>
40+
#include <singly_linked_list.h>
4041

4142
using chip::CommandId;
4243
using chip::DataVersion;
@@ -276,18 +277,6 @@ static esp_err_t read_min_unused_endpoint_id()
276277
#endif // defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
277278
} /* node */
278279

279-
namespace cluster {
280-
static int get_count(_cluster_t *current)
281-
{
282-
int count = 0;
283-
while (current) {
284-
current = current->next;
285-
count++;
286-
}
287-
return count;
288-
}
289-
} /* cluster */
290-
291280
namespace command {
292281
#if defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
293282
command_entry_t *get_cluster_accepted_command_list(uint32_t cluster_id);
@@ -300,32 +289,8 @@ size_t get_cluster_accepted_command_count(uint32_t cluster_id) { return 0; }
300289
command_entry_t *get_cluster_generated_command_list(uint32_t cluster_id) { return nullptr; }
301290
size_t get_cluster_generated_command_count(uint32_t cluster_id) {return 0; }
302291
#endif // defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
303-
304-
static int get_count(_command_t *current, int command_flag)
305-
{
306-
int count = 0;
307-
while (current) {
308-
if (current->flags & command_flag) {
309-
count++;
310-
}
311-
current = current->next;
312-
}
313-
return count;
314-
}
315292
} /* command */
316293

317-
namespace event {
318-
static int get_count(_event_t *current)
319-
{
320-
int count = 0;
321-
while (current) {
322-
count++;
323-
current = current->next;
324-
}
325-
return count;
326-
}
327-
}
328-
329294
namespace attribute {
330295

331296
esp_err_t get_data_from_attr_val(esp_matter_attr_val_t *val, EmberAfAttributeType *attribute_type,
@@ -334,16 +299,6 @@ esp_err_t get_attr_val_from_data(esp_matter_attr_val_t *val, EmberAfAttributeTyp
334299
uint16_t attribute_size, uint8_t *value,
335300
const EmberAfAttributeMetadata * attribute_metadata);
336301

337-
static int get_count(_attribute_base_t *current)
338-
{
339-
int count = 0;
340-
while (current) {
341-
current = current->next;
342-
count++;
343-
}
344-
return count;
345-
}
346-
347302
static EmberAfAttributeMetadata *get_external_attribute_metadata(_attribute_t * attribute)
348303
{
349304
if (NULL == attribute || (attribute->flags & ATTRIBUTE_FLAG_MANAGED_INTERNALLY)) {
@@ -514,7 +469,7 @@ esp_err_t enable(endpoint_t *endpoint)
514469

515470
/* Clusters */
516471
_cluster_t *cluster = current_endpoint->cluster_list;
517-
int cluster_count = cluster::get_count(cluster);
472+
int cluster_count = SinglyLinkedList<_cluster_t>::count(cluster);
518473
int cluster_index = 0;
519474

520475
DataVersion *data_versions_ptr = (DataVersion *)esp_matter_mem_calloc(1, cluster_count * sizeof(DataVersion));
@@ -563,7 +518,7 @@ esp_err_t enable(endpoint_t *endpoint)
563518
/* Client Generated Commands */
564519
command_flag = COMMAND_FLAG_ACCEPTED;
565520
command = cluster->command_list;
566-
command_count = command::get_count(command, command_flag);
521+
command_count = SinglyLinkedList<_command_t>::count_with_flag(command, command_flag);
567522
command_count += command::get_cluster_accepted_command_count(cluster_id);
568523
if (command_count > 0) {
569524
command_index = 0;
@@ -591,7 +546,7 @@ esp_err_t enable(endpoint_t *endpoint)
591546
/* Server Generated Commands */
592547
command_flag = COMMAND_FLAG_GENERATED;
593548
command = cluster->command_list;
594-
command_count = command::get_count(command, command_flag);
549+
command_count = SinglyLinkedList<_command_t>::count_with_flag(command, command_flag);
595550
command_count += command::get_cluster_generated_command_count(cluster_id);
596551
if (command_count > 0) {
597552
command_index = 0;
@@ -618,7 +573,7 @@ esp_err_t enable(endpoint_t *endpoint)
618573

619574
/* Event */
620575
event = cluster->event_list;
621-
event_count = event::get_count(event);
576+
event_count = SinglyLinkedList<_event_t>::count(event);
622577
if (event_count > 0) {
623578
event_index = 0;
624579
event_ids = (EventId *)esp_matter_mem_calloc(1, (event_count + 1) * sizeof(EventId));
@@ -1047,18 +1002,7 @@ attribute_t *create(cluster_t *cluster, uint32_t attribute_id, uint16_t flags, e
10471002
}
10481003

10491004
/* Add */
1050-
_attribute_base_t *previous_attribute = NULL;
1051-
_attribute_base_t *current_attribute = current_cluster->attribute_list;
1052-
while (current_attribute) {
1053-
previous_attribute = current_attribute;
1054-
current_attribute = current_attribute->next;
1055-
}
1056-
if (previous_attribute == NULL) {
1057-
current_cluster->attribute_list = attribute;
1058-
} else {
1059-
previous_attribute->next = attribute;
1060-
}
1061-
1005+
SinglyLinkedList<_attribute_base_t>::append(&current_cluster->attribute_list, attribute);
10621006
return (attribute_t *)attribute;
10631007
}
10641008

@@ -1359,31 +1303,10 @@ command_t *create(cluster_t *cluster, uint32_t command_id, uint8_t flags, callba
13591303
command->user_callback = NULL;
13601304

13611305
/* Add */
1362-
_command_t *previous_command = NULL;
1363-
_command_t *current_command = current_cluster->command_list;
1364-
while (current_command) {
1365-
previous_command = current_command;
1366-
current_command = current_command->next;
1367-
}
1368-
if (previous_command == NULL) {
1369-
current_cluster->command_list = command;
1370-
} else {
1371-
previous_command->next = command;
1372-
}
1373-
1306+
SinglyLinkedList<_command_t>::append(&current_cluster->command_list, command);
13741307
return (command_t *)command;
13751308
}
13761309

1377-
static esp_err_t destroy(command_t *command)
1378-
{
1379-
VerifyOrReturnError(command, ESP_ERR_INVALID_ARG, ESP_LOGE(TAG, "Command cannot be NULL"));
1380-
_command_t *current_command = (_command_t *)command;
1381-
1382-
/* Free */
1383-
esp_matter_mem_free(current_command);
1384-
return ESP_OK;
1385-
}
1386-
13871310
command_t *get(cluster_t *cluster, uint32_t command_id, uint16_t flags)
13881311
{
13891312
VerifyOrReturnValue(cluster, NULL, ESP_LOGE(TAG, "Cluster cannot be NULL."));
@@ -1473,31 +1396,10 @@ event_t *create(cluster_t *cluster, uint32_t event_id)
14731396
event->event_id = event_id;
14741397

14751398
/* Add */
1476-
_event_t *previous_event = NULL;
1477-
_event_t *current_event = current_cluster->event_list;
1478-
while (current_event) {
1479-
previous_event = current_event;
1480-
current_event = current_event->next;
1481-
}
1482-
if (previous_event == NULL) {
1483-
current_cluster->event_list = event;
1484-
} else {
1485-
previous_event->next = event;
1486-
}
1487-
1399+
SinglyLinkedList<_event_t>::append(&current_cluster->event_list, event);
14881400
return (event_t *)event;
14891401
}
14901402

1491-
static esp_err_t destroy(event_t *event)
1492-
{
1493-
VerifyOrReturnError(event, ESP_ERR_INVALID_ARG, ESP_LOGE(TAG, "Event cannot be NULL"));
1494-
_event_t *current_event = (_event_t *)event;
1495-
1496-
/* Free */
1497-
esp_matter_mem_free(current_event);
1498-
return ESP_OK;
1499-
}
1500-
15011403
event_t *get(cluster_t *cluster, uint32_t event_id)
15021404
{
15031405
VerifyOrReturnValue(cluster, NULL, ESP_LOGE(TAG, "Cluster cannot be NULL."));
@@ -1603,18 +1505,7 @@ cluster_t *create(endpoint_t *endpoint, uint32_t cluster_id, uint8_t flags)
16031505
matter_cluster->functions = NULL;
16041506

16051507
/* Add */
1606-
_cluster_t *previous_cluster = NULL;
1607-
_cluster_t *current_cluster = current_endpoint->cluster_list;
1608-
while (current_cluster) {
1609-
previous_cluster = current_cluster;
1610-
current_cluster = current_cluster->next;
1611-
}
1612-
if (previous_cluster == NULL) {
1613-
current_endpoint->cluster_list = cluster;
1614-
} else {
1615-
previous_cluster->next = cluster;
1616-
}
1617-
1508+
SinglyLinkedList<_cluster_t>::append(&current_endpoint->cluster_list, cluster);
16181509
return (cluster_t *)cluster;
16191510
}
16201511

@@ -1624,12 +1515,7 @@ static esp_err_t destroy(cluster_t *cluster)
16241515
_cluster_t *current_cluster = (_cluster_t *)cluster;
16251516

16261517
/* Parse and delete all commands */
1627-
_command_t *command = current_cluster->command_list;
1628-
while (command) {
1629-
_command_t *next_command = command->next;
1630-
command::destroy((command_t *)command);
1631-
command = next_command;
1632-
}
1518+
SinglyLinkedList<_command_t>::delete_list(&current_cluster->command_list);
16331519

16341520
/* Parse and delete all attributes */
16351521
_attribute_base_t *attribute = current_cluster->attribute_list;
@@ -1640,12 +1526,7 @@ static esp_err_t destroy(cluster_t *cluster)
16401526
}
16411527

16421528
/* Parse and delete all events */
1643-
_event_t *event = current_cluster->event_list;
1644-
while (event) {
1645-
_event_t *next_event = event->next;
1646-
event::destroy((event_t *)event);
1647-
event = next_event;
1648-
}
1529+
SinglyLinkedList<_event_t>::delete_list(&current_cluster->event_list);
16491530

16501531
/* Free */
16511532
esp_matter_mem_free(current_cluster);
@@ -1811,18 +1692,7 @@ endpoint_t *create(node_t *node, uint8_t flags, void *priv_data)
18111692
#endif // defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
18121693

18131694
/* Add */
1814-
_endpoint_t *previous_endpoint = NULL;
1815-
_endpoint_t *current_endpoint = current_node->endpoint_list;
1816-
while (current_endpoint) {
1817-
previous_endpoint = current_endpoint;
1818-
current_endpoint = current_endpoint->next;
1819-
}
1820-
if (previous_endpoint == NULL) {
1821-
current_node->endpoint_list = endpoint;
1822-
} else {
1823-
previous_endpoint->next = endpoint;
1824-
}
1825-
1695+
SinglyLinkedList<_endpoint_t>::append(&current_node->endpoint_list, endpoint);
18261696
return (endpoint_t *)endpoint;
18271697
}
18281698

@@ -2001,6 +1871,7 @@ uint16_t get_count(node_t *node)
20011871
endpoint = get_next(endpoint);
20021872
}
20031873
return count;
1874+
20041875
}
20051876

20061877
uint16_t get_id(endpoint_t *endpoint)

0 commit comments

Comments
 (0)