37
37
#include < esp_matter_providers.h>
38
38
39
39
#include < esp_matter_nvs.h>
40
+ #include < singly_linked_list.h>
40
41
41
42
using chip::CommandId;
42
43
using chip::DataVersion;
@@ -276,18 +277,6 @@ static esp_err_t read_min_unused_endpoint_id()
276
277
#endif // defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
277
278
} /* node */
278
279
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
-
291
280
namespace command {
292
281
#if defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
293
282
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; }
300
289
command_entry_t *get_cluster_generated_command_list (uint32_t cluster_id) { return nullptr ; }
301
290
size_t get_cluster_generated_command_count (uint32_t cluster_id) {return 0 ; }
302
291
#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
- }
315
292
} /* command */
316
293
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
-
329
294
namespace attribute {
330
295
331
296
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
334
299
uint16_t attribute_size, uint8_t *value,
335
300
const EmberAfAttributeMetadata * attribute_metadata);
336
301
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
-
347
302
static EmberAfAttributeMetadata *get_external_attribute_metadata (_attribute_t * attribute)
348
303
{
349
304
if (NULL == attribute || (attribute->flags & ATTRIBUTE_FLAG_MANAGED_INTERNALLY)) {
@@ -514,7 +469,7 @@ esp_err_t enable(endpoint_t *endpoint)
514
469
515
470
/* Clusters */
516
471
_cluster_t *cluster = current_endpoint->cluster_list ;
517
- int cluster_count = cluster::get_count (cluster);
472
+ int cluster_count = SinglyLinkedList< _cluster_t >:: count (cluster);
518
473
int cluster_index = 0 ;
519
474
520
475
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)
563
518
/* Client Generated Commands */
564
519
command_flag = COMMAND_FLAG_ACCEPTED;
565
520
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);
567
522
command_count += command::get_cluster_accepted_command_count (cluster_id);
568
523
if (command_count > 0 ) {
569
524
command_index = 0 ;
@@ -591,7 +546,7 @@ esp_err_t enable(endpoint_t *endpoint)
591
546
/* Server Generated Commands */
592
547
command_flag = COMMAND_FLAG_GENERATED;
593
548
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);
595
550
command_count += command::get_cluster_generated_command_count (cluster_id);
596
551
if (command_count > 0 ) {
597
552
command_index = 0 ;
@@ -618,7 +573,7 @@ esp_err_t enable(endpoint_t *endpoint)
618
573
619
574
/* Event */
620
575
event = cluster->event_list ;
621
- event_count = event::get_count (event);
576
+ event_count = SinglyLinkedList< _event_t >:: count (event);
622
577
if (event_count > 0 ) {
623
578
event_index = 0 ;
624
579
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
1047
1002
}
1048
1003
1049
1004
/* 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 (¤t_cluster->attribute_list , attribute);
1062
1006
return (attribute_t *)attribute;
1063
1007
}
1064
1008
@@ -1359,31 +1303,10 @@ command_t *create(cluster_t *cluster, uint32_t command_id, uint8_t flags, callba
1359
1303
command->user_callback = NULL ;
1360
1304
1361
1305
/* 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 (¤t_cluster->command_list , command);
1374
1307
return (command_t *)command;
1375
1308
}
1376
1309
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
-
1387
1310
command_t *get (cluster_t *cluster, uint32_t command_id, uint16_t flags)
1388
1311
{
1389
1312
VerifyOrReturnValue (cluster, NULL , ESP_LOGE (TAG, " Cluster cannot be NULL." ));
@@ -1473,31 +1396,10 @@ event_t *create(cluster_t *cluster, uint32_t event_id)
1473
1396
event->event_id = event_id;
1474
1397
1475
1398
/* 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 (¤t_cluster->event_list , event);
1488
1400
return (event_t *)event;
1489
1401
}
1490
1402
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
-
1501
1403
event_t *get (cluster_t *cluster, uint32_t event_id)
1502
1404
{
1503
1405
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)
1603
1505
matter_cluster->functions = NULL ;
1604
1506
1605
1507
/* 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 (¤t_endpoint->cluster_list , cluster);
1618
1509
return (cluster_t *)cluster;
1619
1510
}
1620
1511
@@ -1624,12 +1515,7 @@ static esp_err_t destroy(cluster_t *cluster)
1624
1515
_cluster_t *current_cluster = (_cluster_t *)cluster;
1625
1516
1626
1517
/* 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 (¤t_cluster->command_list );
1633
1519
1634
1520
/* Parse and delete all attributes */
1635
1521
_attribute_base_t *attribute = current_cluster->attribute_list ;
@@ -1640,12 +1526,7 @@ static esp_err_t destroy(cluster_t *cluster)
1640
1526
}
1641
1527
1642
1528
/* 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 (¤t_cluster->event_list );
1649
1530
1650
1531
/* Free */
1651
1532
esp_matter_mem_free (current_cluster);
@@ -1811,18 +1692,7 @@ endpoint_t *create(node_t *node, uint8_t flags, void *priv_data)
1811
1692
#endif // defined(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) && defined(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
1812
1693
1813
1694
/* 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 (¤t_node->endpoint_list , endpoint);
1826
1696
return (endpoint_t *)endpoint;
1827
1697
}
1828
1698
@@ -2001,6 +1871,7 @@ uint16_t get_count(node_t *node)
2001
1871
endpoint = get_next (endpoint);
2002
1872
}
2003
1873
return count;
1874
+
2004
1875
}
2005
1876
2006
1877
uint16_t get_id (endpoint_t *endpoint)
0 commit comments