matc 0.1.3

Matter protocol library (controller side)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
//! Matter TLV encoders and decoders for Joint Fabric Datastore Cluster
//! Cluster ID: 0x0752
//!
//! This file is automatically generated from JointFabricDatastoreCluster.xml

#![allow(clippy::too_many_arguments)]

use crate::tlv;
use anyhow;
use serde_json;


// Import serialization helpers for octet strings
use crate::clusters::helpers::{serialize_opt_bytes_as_hex};

// Enum definitions

#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
#[repr(u8)]
pub enum DatastoreAccessControlEntryAuthMode {
    /// Passcode authenticated session
    Pase = 1,
    /// Certificate authenticated session
    Case = 2,
    /// Group authenticated session
    Group = 3,
}

impl DatastoreAccessControlEntryAuthMode {
    /// Convert from u8 value
    pub fn from_u8(value: u8) -> Option<Self> {
        match value {
            1 => Some(DatastoreAccessControlEntryAuthMode::Pase),
            2 => Some(DatastoreAccessControlEntryAuthMode::Case),
            3 => Some(DatastoreAccessControlEntryAuthMode::Group),
            _ => None,
        }
    }

    /// Convert to u8 value
    pub fn to_u8(self) -> u8 {
        self as u8
    }
}

impl From<DatastoreAccessControlEntryAuthMode> for u8 {
    fn from(val: DatastoreAccessControlEntryAuthMode) -> Self {
        val as u8
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
#[repr(u8)]
pub enum DatastoreAccessControlEntryPrivilege {
    /// Can read and observe all (except Access Control Cluster)
    View = 1,
    Proxyview = 2,
    /// View privileges, and can perform the primary function of this Node (except Access Control Cluster)
    Operate = 3,
    /// Operate privileges, and can modify persistent configuration of this Node (except Access Control Cluster)
    Manage = 4,
    /// Manage privileges, and can observe and modify the Access Control Cluster
    Administer = 5,
}

impl DatastoreAccessControlEntryPrivilege {
    /// Convert from u8 value
    pub fn from_u8(value: u8) -> Option<Self> {
        match value {
            1 => Some(DatastoreAccessControlEntryPrivilege::View),
            2 => Some(DatastoreAccessControlEntryPrivilege::Proxyview),
            3 => Some(DatastoreAccessControlEntryPrivilege::Operate),
            4 => Some(DatastoreAccessControlEntryPrivilege::Manage),
            5 => Some(DatastoreAccessControlEntryPrivilege::Administer),
            _ => None,
        }
    }

    /// Convert to u8 value
    pub fn to_u8(self) -> u8 {
        self as u8
    }
}

impl From<DatastoreAccessControlEntryPrivilege> for u8 {
    fn from(val: DatastoreAccessControlEntryPrivilege) -> Self {
        val as u8
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
#[repr(u8)]
pub enum DatastoreGroupKeyMulticastPolicy {
    /// Indicates filtering of multicast messages for a specific Group ID
    Pergroupid = 0,
    /// Indicates not filtering of multicast messages
    Allnodes = 1,
}

impl DatastoreGroupKeyMulticastPolicy {
    /// Convert from u8 value
    pub fn from_u8(value: u8) -> Option<Self> {
        match value {
            0 => Some(DatastoreGroupKeyMulticastPolicy::Pergroupid),
            1 => Some(DatastoreGroupKeyMulticastPolicy::Allnodes),
            _ => None,
        }
    }

    /// Convert to u8 value
    pub fn to_u8(self) -> u8 {
        self as u8
    }
}

impl From<DatastoreGroupKeyMulticastPolicy> for u8 {
    fn from(val: DatastoreGroupKeyMulticastPolicy) -> Self {
        val as u8
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
#[repr(u8)]
pub enum DatastoreGroupKeySecurityPolicy {
    /// Message counter synchronization using trust-first
    Trustfirst = 0,
}

impl DatastoreGroupKeySecurityPolicy {
    /// Convert from u8 value
    pub fn from_u8(value: u8) -> Option<Self> {
        match value {
            0 => Some(DatastoreGroupKeySecurityPolicy::Trustfirst),
            _ => None,
        }
    }

    /// Convert to u8 value
    pub fn to_u8(self) -> u8 {
        self as u8
    }
}

impl From<DatastoreGroupKeySecurityPolicy> for u8 {
    fn from(val: DatastoreGroupKeySecurityPolicy) -> Self {
        val as u8
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
#[repr(u8)]
pub enum DatastoreState {
    /// Target device operation is pending
    Pending = 0,
    /// Target device operation has been committed
    Committed = 1,
    /// Target device delete operation is pending
    Deletepending = 2,
    /// Target device operation has failed
    Commitfailed = 3,
}

impl DatastoreState {
    /// Convert from u8 value
    pub fn from_u8(value: u8) -> Option<Self> {
        match value {
            0 => Some(DatastoreState::Pending),
            1 => Some(DatastoreState::Committed),
            2 => Some(DatastoreState::Deletepending),
            3 => Some(DatastoreState::Commitfailed),
            _ => None,
        }
    }

    /// Convert to u8 value
    pub fn to_u8(self) -> u8 {
        self as u8
    }
}

impl From<DatastoreState> for u8 {
    fn from(val: DatastoreState) -> Self {
        val as u8
    }
}

// Struct definitions

#[derive(Debug, serde::Serialize)]
pub struct DatastoreACLEntry {
    pub node_id: Option<u64>,
    pub list_id: Option<u16>,
    pub acl_entry: Option<DatastoreAccessControlEntry>,
    pub status_entry: Option<DatastoreStatusEntry>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreAccessControlEntry {
    pub privilege: Option<DatastoreAccessControlEntryPrivilege>,
    pub auth_mode: Option<DatastoreAccessControlEntryAuthMode>,
    pub subjects: Option<Vec<u64>>,
    pub targets: Option<Vec<DatastoreAccessControlTarget>>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreAccessControlTarget {
    pub cluster: Option<u32>,
    pub endpoint: Option<u16>,
    pub device_type: Option<u32>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreAdministratorInformationEntry {
    pub node_id: Option<u64>,
    pub friendly_name: Option<String>,
    pub vendor_id: Option<u16>,
    #[serde(serialize_with = "serialize_opt_bytes_as_hex")]
    pub icac: Option<Vec<u8>>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreBindingTarget {
    pub node: Option<u64>,
    pub group: Option<u8>,
    pub endpoint: Option<u16>,
    pub cluster: Option<u32>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreEndpointBindingEntry {
    pub node_id: Option<u64>,
    pub endpoint_id: Option<u16>,
    pub list_id: Option<u16>,
    pub binding: Option<DatastoreBindingTarget>,
    pub status_entry: Option<DatastoreStatusEntry>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreEndpointEntry {
    pub endpoint_id: Option<u16>,
    pub node_id: Option<u64>,
    pub friendly_name: Option<String>,
    pub status_entry: Option<DatastoreStatusEntry>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreEndpointGroupIDEntry {
    pub node_id: Option<u64>,
    pub endpoint_id: Option<u16>,
    pub group_id: Option<u8>,
    pub status_entry: Option<DatastoreStatusEntry>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreGroupInformationEntry {
    pub group_id: Option<u64>,
    pub friendly_name: Option<String>,
    pub group_key_set_id: Option<u16>,
    pub group_cat: Option<u16>,
    pub group_cat_version: Option<u16>,
    pub group_permission: Option<DatastoreAccessControlEntryPrivilege>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreGroupKeySet {
    pub group_key_set_id: Option<u16>,
    pub group_key_security_policy: Option<DatastoreGroupKeySecurityPolicy>,
    #[serde(serialize_with = "serialize_opt_bytes_as_hex")]
    pub epoch_key0: Option<Vec<u8>>,
    pub epoch_start_time0: Option<u64>,
    #[serde(serialize_with = "serialize_opt_bytes_as_hex")]
    pub epoch_key1: Option<Vec<u8>>,
    pub epoch_start_time1: Option<u64>,
    #[serde(serialize_with = "serialize_opt_bytes_as_hex")]
    pub epoch_key2: Option<Vec<u8>>,
    pub epoch_start_time2: Option<u64>,
    pub group_key_multicast_policy: Option<DatastoreGroupKeyMulticastPolicy>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreNodeInformationEntry {
    pub node_id: Option<u64>,
    pub friendly_name: Option<String>,
    pub commissioning_status_entry: Option<DatastoreStatusEntry>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreNodeKeySetEntry {
    pub node_id: Option<u64>,
    pub group_key_set_id: Option<u16>,
    pub status_entry: Option<DatastoreStatusEntry>,
}

#[derive(Debug, serde::Serialize)]
pub struct DatastoreStatusEntry {
    pub state: Option<DatastoreState>,
    pub update_timestamp: Option<u64>,
    pub failure_code: Option<u8>,
}

// Command encoders

/// Encode AddKeySet command (0x00)
pub fn encode_add_key_set(group_key_set: DatastoreGroupKeySet) -> anyhow::Result<Vec<u8>> {
            // Encode struct DatastoreGroupKeySetStruct
            let mut group_key_set_fields = Vec::new();
            if let Some(x) = group_key_set.group_key_set_id { group_key_set_fields.push((0, tlv::TlvItemValueEnc::UInt16(x)).into()); }
            if let Some(x) = group_key_set.group_key_security_policy { group_key_set_fields.push((1, tlv::TlvItemValueEnc::UInt8(x.to_u8())).into()); }
            if let Some(x) = group_key_set.epoch_key0 { group_key_set_fields.push((2, tlv::TlvItemValueEnc::OctetString(x.clone())).into()); }
            if let Some(x) = group_key_set.epoch_start_time0 { group_key_set_fields.push((3, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            if let Some(x) = group_key_set.epoch_key1 { group_key_set_fields.push((4, tlv::TlvItemValueEnc::OctetString(x.clone())).into()); }
            if let Some(x) = group_key_set.epoch_start_time1 { group_key_set_fields.push((5, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            if let Some(x) = group_key_set.epoch_key2 { group_key_set_fields.push((6, tlv::TlvItemValueEnc::OctetString(x.clone())).into()); }
            if let Some(x) = group_key_set.epoch_start_time2 { group_key_set_fields.push((7, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            if let Some(x) = group_key_set.group_key_multicast_policy { group_key_set_fields.push((8, tlv::TlvItemValueEnc::UInt8(x.to_u8())).into()); }
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::StructInvisible(group_key_set_fields)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode UpdateKeySet command (0x01)
pub fn encode_update_key_set(group_key_set: DatastoreGroupKeySet) -> anyhow::Result<Vec<u8>> {
            // Encode struct DatastoreGroupKeySetStruct
            let mut group_key_set_fields = Vec::new();
            if let Some(x) = group_key_set.group_key_set_id { group_key_set_fields.push((0, tlv::TlvItemValueEnc::UInt16(x)).into()); }
            if let Some(x) = group_key_set.group_key_security_policy { group_key_set_fields.push((1, tlv::TlvItemValueEnc::UInt8(x.to_u8())).into()); }
            if let Some(x) = group_key_set.epoch_key0 { group_key_set_fields.push((2, tlv::TlvItemValueEnc::OctetString(x.clone())).into()); }
            if let Some(x) = group_key_set.epoch_start_time0 { group_key_set_fields.push((3, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            if let Some(x) = group_key_set.epoch_key1 { group_key_set_fields.push((4, tlv::TlvItemValueEnc::OctetString(x.clone())).into()); }
            if let Some(x) = group_key_set.epoch_start_time1 { group_key_set_fields.push((5, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            if let Some(x) = group_key_set.epoch_key2 { group_key_set_fields.push((6, tlv::TlvItemValueEnc::OctetString(x.clone())).into()); }
            if let Some(x) = group_key_set.epoch_start_time2 { group_key_set_fields.push((7, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            if let Some(x) = group_key_set.group_key_multicast_policy { group_key_set_fields.push((8, tlv::TlvItemValueEnc::UInt8(x.to_u8())).into()); }
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::StructInvisible(group_key_set_fields)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveKeySet command (0x02)
pub fn encode_remove_key_set(group_key_set_id: u16) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt16(group_key_set_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode AddGroup command (0x03)
pub fn encode_add_group(group_id: u8, friendly_name: String, group_key_set_id: Option<u16>, group_cat: Option<u16>, group_cat_version: Option<u16>, group_permission: DatastoreAccessControlEntryPrivilege) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt8(group_id)).into(),
        (1, tlv::TlvItemValueEnc::String(friendly_name)).into(),
        (2, tlv::TlvItemValueEnc::UInt16(group_key_set_id.unwrap_or(0))).into(),
        (3, tlv::TlvItemValueEnc::UInt16(group_cat.unwrap_or(0))).into(),
        (4, tlv::TlvItemValueEnc::UInt16(group_cat_version.unwrap_or(0))).into(),
        (5, tlv::TlvItemValueEnc::UInt8(group_permission.to_u8())).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode UpdateGroup command (0x04)
pub fn encode_update_group(group_id: u8, friendly_name: Option<String>, group_key_set_id: Option<u16>, group_cat: Option<u16>, group_cat_version: Option<u16>, group_permission: Option<DatastoreAccessControlEntryPrivilege>) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt8(group_id)).into(),
        (1, tlv::TlvItemValueEnc::String(friendly_name.unwrap_or("".to_string()))).into(),
        (2, tlv::TlvItemValueEnc::UInt16(group_key_set_id.unwrap_or(0))).into(),
        (3, tlv::TlvItemValueEnc::UInt16(group_cat.unwrap_or(0))).into(),
        (4, tlv::TlvItemValueEnc::UInt16(group_cat_version.unwrap_or(0))).into(),
        (5, tlv::TlvItemValueEnc::UInt8(group_permission.map(|e| e.to_u8()).unwrap_or(0))).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveGroup command (0x05)
pub fn encode_remove_group(group_id: u8) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt8(group_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode AddAdmin command (0x06)
pub fn encode_add_admin(node_id: u64, friendly_name: String, vendor_id: u16, icac: Vec<u8>) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (1, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (2, tlv::TlvItemValueEnc::String(friendly_name)).into(),
        (3, tlv::TlvItemValueEnc::UInt16(vendor_id)).into(),
        (4, tlv::TlvItemValueEnc::OctetString(icac)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode UpdateAdmin command (0x07)
pub fn encode_update_admin(node_id: Option<u64>, friendly_name: Option<String>, icac: Option<Vec<u8>>) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id.unwrap_or(0))).into(),
        (1, tlv::TlvItemValueEnc::String(friendly_name.unwrap_or("".to_string()))).into(),
        (2, tlv::TlvItemValueEnc::OctetString(icac.unwrap_or(vec![]))).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveAdmin command (0x08)
pub fn encode_remove_admin(node_id: u64) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode AddPendingNode command (0x09)
pub fn encode_add_pending_node(node_id: u64, friendly_name: String) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (1, tlv::TlvItemValueEnc::String(friendly_name)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RefreshNode command (0x0A)
pub fn encode_refresh_node(node_id: u64) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode UpdateNode command (0x0B)
pub fn encode_update_node(node_id: u64, friendly_name: String) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (1, tlv::TlvItemValueEnc::String(friendly_name)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveNode command (0x0C)
pub fn encode_remove_node(node_id: u64) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode UpdateEndpointForNode command (0x0D)
pub fn encode_update_endpoint_for_node(endpoint_id: u16, node_id: u64, friendly_name: String) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt16(endpoint_id)).into(),
        (1, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (2, tlv::TlvItemValueEnc::String(friendly_name)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode AddGroupIDToEndpointForNode command (0x0E)
pub fn encode_add_group_id_to_endpoint_for_node(node_id: u64, endpoint_id: u16, group_id: u8) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (1, tlv::TlvItemValueEnc::UInt16(endpoint_id)).into(),
        (2, tlv::TlvItemValueEnc::UInt8(group_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveGroupIDFromEndpointForNode command (0x0F)
pub fn encode_remove_group_id_from_endpoint_for_node(node_id: u64, endpoint_id: u16, group_id: u8) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (1, tlv::TlvItemValueEnc::UInt16(endpoint_id)).into(),
        (2, tlv::TlvItemValueEnc::UInt8(group_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode AddBindingToEndpointForNode command (0x10)
pub fn encode_add_binding_to_endpoint_for_node(node_id: u64, endpoint_id: u16, binding: DatastoreBindingTarget) -> anyhow::Result<Vec<u8>> {
            // Encode struct DatastoreBindingTargetStruct
            let mut binding_fields = Vec::new();
            if let Some(x) = binding.node { binding_fields.push((1, tlv::TlvItemValueEnc::UInt64(x)).into()); }
            // TODO: encoding for field group (group-id) not implemented
            if let Some(x) = binding.endpoint { binding_fields.push((3, tlv::TlvItemValueEnc::UInt16(x)).into()); }
            if let Some(x) = binding.cluster { binding_fields.push((4, tlv::TlvItemValueEnc::UInt32(x)).into()); }
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (1, tlv::TlvItemValueEnc::UInt16(endpoint_id)).into(),
        (2, tlv::TlvItemValueEnc::StructInvisible(binding_fields)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveBindingFromEndpointForNode command (0x11)
pub fn encode_remove_binding_from_endpoint_for_node(list_id: u16, endpoint_id: u16, node_id: u64) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt16(list_id)).into(),
        (1, tlv::TlvItemValueEnc::UInt16(endpoint_id)).into(),
        (2, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode AddACLToNode command (0x12)
pub fn encode_add_acl_to_node(node_id: u64, acl_entry: DatastoreAccessControlEntry) -> anyhow::Result<Vec<u8>> {
            // Encode struct DatastoreAccessControlEntryStruct
            let mut acl_entry_fields = Vec::new();
            if let Some(x) = acl_entry.privilege { acl_entry_fields.push((1, tlv::TlvItemValueEnc::UInt8(x.to_u8())).into()); }
            if let Some(x) = acl_entry.auth_mode { acl_entry_fields.push((2, tlv::TlvItemValueEnc::UInt8(x.to_u8())).into()); }
            if let Some(listv) = acl_entry.subjects { acl_entry_fields.push((3, tlv::TlvItemValueEnc::StructAnon(listv.into_iter().map(|x| (0, tlv::TlvItemValueEnc::UInt64(x)).into()).collect())).into()); }
            if let Some(listv) = acl_entry.targets {
                let inner_vec: Vec<_> = listv.into_iter().map(|inner| {
                    let mut nested_fields = Vec::new();
                        if let Some(x) = inner.cluster { nested_fields.push((0, tlv::TlvItemValueEnc::UInt32(x)).into()); }
                        if let Some(x) = inner.endpoint { nested_fields.push((1, tlv::TlvItemValueEnc::UInt16(x)).into()); }
                        if let Some(x) = inner.device_type { nested_fields.push((2, tlv::TlvItemValueEnc::UInt32(x)).into()); }
                    (0, tlv::TlvItemValueEnc::StructAnon(nested_fields)).into()
                }).collect();
                acl_entry_fields.push((4, tlv::TlvItemValueEnc::Array(inner_vec)).into());
            }
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        (1, tlv::TlvItemValueEnc::StructInvisible(acl_entry_fields)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

/// Encode RemoveACLFromNode command (0x13)
pub fn encode_remove_acl_from_node(list_id: u16, node_id: u64) -> anyhow::Result<Vec<u8>> {
    let tlv = tlv::TlvItemEnc {
        tag: 0,
        value: tlv::TlvItemValueEnc::StructInvisible(vec![
        (0, tlv::TlvItemValueEnc::UInt16(list_id)).into(),
        (1, tlv::TlvItemValueEnc::UInt64(node_id)).into(),
        ]),
    };
    Ok(tlv.encode()?)
}

// Attribute decoders

/// Decode AnchorRootCA attribute (0x0000)
pub fn decode_anchor_root_ca(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<u8>> {
    if let tlv::TlvItemValue::OctetString(v) = inp {
        Ok(v.clone())
    } else {
        Err(anyhow::anyhow!("Expected OctetString"))
    }
}

/// Decode AnchorNodeID attribute (0x0001)
pub fn decode_anchor_node_id(inp: &tlv::TlvItemValue) -> anyhow::Result<u64> {
    if let tlv::TlvItemValue::Int(v) = inp {
        Ok(*v)
    } else {
        Err(anyhow::anyhow!("Expected UInt64"))
    }
}

/// Decode AnchorVendorID attribute (0x0002)
pub fn decode_anchor_vendor_id(inp: &tlv::TlvItemValue) -> anyhow::Result<u16> {
    if let tlv::TlvItemValue::Int(v) = inp {
        Ok(*v as u16)
    } else {
        Err(anyhow::anyhow!("Expected UInt16"))
    }
}

/// Decode FriendlyName attribute (0x0003)
pub fn decode_friendly_name(inp: &tlv::TlvItemValue) -> anyhow::Result<String> {
    if let tlv::TlvItemValue::String(v) = inp {
        Ok(v.clone())
    } else {
        Err(anyhow::anyhow!("Expected String"))
    }
}

/// Decode GroupKeySetList attribute (0x0004)
pub fn decode_group_key_set_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreGroupKeySet>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreGroupKeySet {
                group_key_set_id: item.get_int(&[0]).map(|v| v as u16),
                group_key_security_policy: item.get_int(&[1]).and_then(|v| DatastoreGroupKeySecurityPolicy::from_u8(v as u8)),
                epoch_key0: item.get_octet_string_owned(&[2]),
                epoch_start_time0: item.get_int(&[3]),
                epoch_key1: item.get_octet_string_owned(&[4]),
                epoch_start_time1: item.get_int(&[5]),
                epoch_key2: item.get_octet_string_owned(&[6]),
                epoch_start_time2: item.get_int(&[7]),
                group_key_multicast_policy: item.get_int(&[8]).and_then(|v| DatastoreGroupKeyMulticastPolicy::from_u8(v as u8)),
            });
        }
    }
    Ok(res)
}

/// Decode GroupList attribute (0x0005)
pub fn decode_group_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreGroupInformationEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreGroupInformationEntry {
                group_id: item.get_int(&[0]),
                friendly_name: item.get_string_owned(&[1]),
                group_key_set_id: item.get_int(&[2]).map(|v| v as u16),
                group_cat: item.get_int(&[3]).map(|v| v as u16),
                group_cat_version: item.get_int(&[4]).map(|v| v as u16),
                group_permission: item.get_int(&[5]).and_then(|v| DatastoreAccessControlEntryPrivilege::from_u8(v as u8)),
            });
        }
    }
    Ok(res)
}

/// Decode NodeList attribute (0x0006)
pub fn decode_node_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreNodeInformationEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreNodeInformationEntry {
                node_id: item.get_int(&[1]),
                friendly_name: item.get_string_owned(&[2]),
                commissioning_status_entry: {
                    if let Some(nested_tlv) = item.get(&[3]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 3, value: nested_tlv.clone() };
                            Some(DatastoreStatusEntry {
                state: nested_item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: nested_item.get_int(&[1]),
                failure_code: nested_item.get_int(&[2]).map(|v| v as u8),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
            });
        }
    }
    Ok(res)
}

/// Decode AdminList attribute (0x0007)
pub fn decode_admin_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreAdministratorInformationEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreAdministratorInformationEntry {
                node_id: item.get_int(&[1]),
                friendly_name: item.get_string_owned(&[2]),
                vendor_id: item.get_int(&[3]).map(|v| v as u16),
                icac: item.get_octet_string_owned(&[4]),
            });
        }
    }
    Ok(res)
}

/// Decode Status attribute (0x0008)
pub fn decode_status(inp: &tlv::TlvItemValue) -> anyhow::Result<DatastoreStatusEntry> {
    if let tlv::TlvItemValue::List(_fields) = inp {
        // Struct with fields
        let item = tlv::TlvItem { tag: 0, value: inp.clone() };
        Ok(DatastoreStatusEntry {
                state: item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: item.get_int(&[1]),
                failure_code: item.get_int(&[2]).map(|v| v as u8),
        })
    } else {
        Err(anyhow::anyhow!("Expected struct fields"))
    }
}

/// Decode EndpointGroupIDList attribute (0x0009)
pub fn decode_endpoint_group_id_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreEndpointGroupIDEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreEndpointGroupIDEntry {
                node_id: item.get_int(&[0]),
                endpoint_id: item.get_int(&[1]).map(|v| v as u16),
                group_id: item.get_int(&[2]).map(|v| v as u8),
                status_entry: {
                    if let Some(nested_tlv) = item.get(&[3]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 3, value: nested_tlv.clone() };
                            Some(DatastoreStatusEntry {
                state: nested_item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: nested_item.get_int(&[1]),
                failure_code: nested_item.get_int(&[2]).map(|v| v as u8),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
            });
        }
    }
    Ok(res)
}

/// Decode EndpointBindingList attribute (0x000A)
pub fn decode_endpoint_binding_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreEndpointBindingEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreEndpointBindingEntry {
                node_id: item.get_int(&[0]),
                endpoint_id: item.get_int(&[1]).map(|v| v as u16),
                list_id: item.get_int(&[2]).map(|v| v as u16),
                binding: {
                    if let Some(nested_tlv) = item.get(&[3]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 3, value: nested_tlv.clone() };
                            Some(DatastoreBindingTarget {
                node: nested_item.get_int(&[1]),
                group: nested_item.get_int(&[2]).map(|v| v as u8),
                endpoint: nested_item.get_int(&[3]).map(|v| v as u16),
                cluster: nested_item.get_int(&[4]).map(|v| v as u32),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
                status_entry: {
                    if let Some(nested_tlv) = item.get(&[4]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 4, value: nested_tlv.clone() };
                            Some(DatastoreStatusEntry {
                state: nested_item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: nested_item.get_int(&[1]),
                failure_code: nested_item.get_int(&[2]).map(|v| v as u8),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
            });
        }
    }
    Ok(res)
}

/// Decode NodeKeySetList attribute (0x000B)
pub fn decode_node_key_set_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreNodeKeySetEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreNodeKeySetEntry {
                node_id: item.get_int(&[0]),
                group_key_set_id: item.get_int(&[1]).map(|v| v as u16),
                status_entry: {
                    if let Some(nested_tlv) = item.get(&[2]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 2, value: nested_tlv.clone() };
                            Some(DatastoreStatusEntry {
                state: nested_item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: nested_item.get_int(&[1]),
                failure_code: nested_item.get_int(&[2]).map(|v| v as u8),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
            });
        }
    }
    Ok(res)
}

/// Decode NodeACLList attribute (0x000C)
pub fn decode_node_acl_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreACLEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreACLEntry {
                node_id: item.get_int(&[0]),
                list_id: item.get_int(&[1]).map(|v| v as u16),
                acl_entry: {
                    if let Some(nested_tlv) = item.get(&[2]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 2, value: nested_tlv.clone() };
                            Some(DatastoreAccessControlEntry {
                privilege: nested_item.get_int(&[1]).and_then(|v| DatastoreAccessControlEntryPrivilege::from_u8(v as u8)),
                auth_mode: nested_item.get_int(&[2]).and_then(|v| DatastoreAccessControlEntryAuthMode::from_u8(v as u8)),
                subjects: {
                    if let Some(tlv::TlvItemValue::List(l)) = nested_item.get(&[3]) {
                        let items: Vec<u64> = l.iter().filter_map(|e| { if let tlv::TlvItemValue::Int(v) = &e.value { Some(*v) } else { None } }).collect();
                        Some(items)
                    } else {
                        None
                    }
                },
                targets: {
                    if let Some(tlv::TlvItemValue::List(l)) = nested_item.get(&[4]) {
                        let mut items = Vec::new();
                        for list_item in l {
                            items.push(DatastoreAccessControlTarget {
                cluster: list_item.get_int(&[0]).map(|v| v as u32),
                endpoint: list_item.get_int(&[1]).map(|v| v as u16),
                device_type: list_item.get_int(&[2]).map(|v| v as u32),
                            });
                        }
                        Some(items)
                    } else {
                        None
                    }
                },
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
                status_entry: {
                    if let Some(nested_tlv) = item.get(&[3]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 3, value: nested_tlv.clone() };
                            Some(DatastoreStatusEntry {
                state: nested_item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: nested_item.get_int(&[1]),
                failure_code: nested_item.get_int(&[2]).map(|v| v as u8),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
            });
        }
    }
    Ok(res)
}

/// Decode NodeEndpointList attribute (0x000D)
pub fn decode_node_endpoint_list(inp: &tlv::TlvItemValue) -> anyhow::Result<Vec<DatastoreEndpointEntry>> {
    let mut res = Vec::new();
    if let tlv::TlvItemValue::List(v) = inp {
        for item in v {
            res.push(DatastoreEndpointEntry {
                endpoint_id: item.get_int(&[0]).map(|v| v as u16),
                node_id: item.get_int(&[1]),
                friendly_name: item.get_string_owned(&[2]),
                status_entry: {
                    if let Some(nested_tlv) = item.get(&[3]) {
                        if let tlv::TlvItemValue::List(_) = nested_tlv {
                            let nested_item = tlv::TlvItem { tag: 3, value: nested_tlv.clone() };
                            Some(DatastoreStatusEntry {
                state: nested_item.get_int(&[0]).and_then(|v| DatastoreState::from_u8(v as u8)),
                update_timestamp: nested_item.get_int(&[1]),
                failure_code: nested_item.get_int(&[2]).map(|v| v as u8),
                            })
                        } else {
                            None
                        }
                    } else {
                        None
                    }
                },
            });
        }
    }
    Ok(res)
}


// JSON dispatcher function

/// Decode attribute value and return as JSON string
///
/// # Parameters
/// * `cluster_id` - The cluster identifier
/// * `attribute_id` - The attribute identifier
/// * `tlv_value` - The TLV value to decode
///
/// # Returns
/// JSON string representation of the decoded value or error
pub fn decode_attribute_json(cluster_id: u32, attribute_id: u32, tlv_value: &crate::tlv::TlvItemValue) -> String {
    // Verify this is the correct cluster
    if cluster_id != 0x0752 {
        return format!("{{\"error\": \"Invalid cluster ID. Expected 0x0752, got {}\"}}", cluster_id);
    }

    match attribute_id {
        0x0000 => {
            match decode_anchor_root_ca(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0001 => {
            match decode_anchor_node_id(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0002 => {
            match decode_anchor_vendor_id(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0003 => {
            match decode_friendly_name(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0004 => {
            match decode_group_key_set_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0005 => {
            match decode_group_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0006 => {
            match decode_node_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0007 => {
            match decode_admin_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0008 => {
            match decode_status(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x0009 => {
            match decode_endpoint_group_id_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x000A => {
            match decode_endpoint_binding_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x000B => {
            match decode_node_key_set_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x000C => {
            match decode_node_acl_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        0x000D => {
            match decode_node_endpoint_list(tlv_value) {
                Ok(value) => serde_json::to_string(&value).unwrap_or_else(|_| "null".to_string()),
                Err(e) => format!("{{\"error\": \"{}\"}}", e),
            }
        }
        _ => format!("{{\"error\": \"Unknown attribute ID: {}\"}}", attribute_id),
    }
}

/// Get list of all attributes supported by this cluster
///
/// # Returns
/// Vector of tuples containing (attribute_id, attribute_name)
pub fn get_attribute_list() -> Vec<(u32, &'static str)> {
    vec![
        (0x0000, "AnchorRootCA"),
        (0x0001, "AnchorNodeID"),
        (0x0002, "AnchorVendorID"),
        (0x0003, "FriendlyName"),
        (0x0004, "GroupKeySetList"),
        (0x0005, "GroupList"),
        (0x0006, "NodeList"),
        (0x0007, "AdminList"),
        (0x0008, "Status"),
        (0x0009, "EndpointGroupIDList"),
        (0x000A, "EndpointBindingList"),
        (0x000B, "NodeKeySetList"),
        (0x000C, "NodeACLList"),
        (0x000D, "NodeEndpointList"),
    ]
}

// Command listing

pub fn get_command_list() -> Vec<(u32, &'static str)> {
    vec![
        (0x00, "AddKeySet"),
        (0x01, "UpdateKeySet"),
        (0x02, "RemoveKeySet"),
        (0x03, "AddGroup"),
        (0x04, "UpdateGroup"),
        (0x05, "RemoveGroup"),
        (0x06, "AddAdmin"),
        (0x07, "UpdateAdmin"),
        (0x08, "RemoveAdmin"),
        (0x09, "AddPendingNode"),
        (0x0A, "RefreshNode"),
        (0x0B, "UpdateNode"),
        (0x0C, "RemoveNode"),
        (0x0D, "UpdateEndpointForNode"),
        (0x0E, "AddGroupIDToEndpointForNode"),
        (0x0F, "RemoveGroupIDFromEndpointForNode"),
        (0x10, "AddBindingToEndpointForNode"),
        (0x11, "RemoveBindingFromEndpointForNode"),
        (0x12, "AddACLToNode"),
        (0x13, "RemoveACLFromNode"),
    ]
}

pub fn get_command_name(cmd_id: u32) -> Option<&'static str> {
    match cmd_id {
        0x00 => Some("AddKeySet"),
        0x01 => Some("UpdateKeySet"),
        0x02 => Some("RemoveKeySet"),
        0x03 => Some("AddGroup"),
        0x04 => Some("UpdateGroup"),
        0x05 => Some("RemoveGroup"),
        0x06 => Some("AddAdmin"),
        0x07 => Some("UpdateAdmin"),
        0x08 => Some("RemoveAdmin"),
        0x09 => Some("AddPendingNode"),
        0x0A => Some("RefreshNode"),
        0x0B => Some("UpdateNode"),
        0x0C => Some("RemoveNode"),
        0x0D => Some("UpdateEndpointForNode"),
        0x0E => Some("AddGroupIDToEndpointForNode"),
        0x0F => Some("RemoveGroupIDFromEndpointForNode"),
        0x10 => Some("AddBindingToEndpointForNode"),
        0x11 => Some("RemoveBindingFromEndpointForNode"),
        0x12 => Some("AddACLToNode"),
        0x13 => Some("RemoveACLFromNode"),
        _ => None,
    }
}

pub fn get_command_schema(cmd_id: u32) -> Option<Vec<crate::clusters::codec::CommandField>> {
    match cmd_id {
        0x00 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "group_key_set", kind: crate::clusters::codec::FieldKind::Struct { name: "DatastoreGroupKeySetStruct" }, optional: false, nullable: false },
        ]),
        0x01 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "group_key_set", kind: crate::clusters::codec::FieldKind::Struct { name: "DatastoreGroupKeySetStruct" }, optional: false, nullable: false },
        ]),
        0x02 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "group_key_set_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
        ]),
        0x03 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "group_id", kind: crate::clusters::codec::FieldKind::U32, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "group_key_set_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 3, name: "group_cat", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 4, name: "group_cat_version", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 5, name: "group_permission", kind: crate::clusters::codec::FieldKind::Enum { name: "DatastoreAccessControlEntryPrivilege", variants: &[(1, "View"), (2, "Proxyview"), (3, "Operate"), (4, "Manage"), (5, "Administer")] }, optional: false, nullable: false },
        ]),
        0x04 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "group_id", kind: crate::clusters::codec::FieldKind::U32, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 2, name: "group_key_set_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 3, name: "group_cat", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 4, name: "group_cat_version", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 5, name: "group_permission", kind: crate::clusters::codec::FieldKind::Enum { name: "DatastoreAccessControlEntryPrivilege", variants: &[(1, "View"), (2, "Proxyview"), (3, "Operate"), (4, "Manage"), (5, "Administer")] }, optional: false, nullable: true },
        ]),
        0x05 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "group_id", kind: crate::clusters::codec::FieldKind::U32, optional: false, nullable: false },
        ]),
        0x06 => Some(vec![
            crate::clusters::codec::CommandField { tag: 1, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 3, name: "vendor_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 4, name: "icac", kind: crate::clusters::codec::FieldKind::OctetString, optional: false, nullable: false },
        ]),
        0x07 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 1, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: true },
            crate::clusters::codec::CommandField { tag: 2, name: "icac", kind: crate::clusters::codec::FieldKind::OctetString, optional: false, nullable: true },
        ]),
        0x08 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
        ]),
        0x09 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: false },
        ]),
        0x0A => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
        ]),
        0x0B => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: false },
        ]),
        0x0C => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
        ]),
        0x0D => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "endpoint_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "friendly_name", kind: crate::clusters::codec::FieldKind::String, optional: false, nullable: false },
        ]),
        0x0E => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "endpoint_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "group_id", kind: crate::clusters::codec::FieldKind::U32, optional: false, nullable: false },
        ]),
        0x0F => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "endpoint_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "group_id", kind: crate::clusters::codec::FieldKind::U32, optional: false, nullable: false },
        ]),
        0x10 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "endpoint_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "binding", kind: crate::clusters::codec::FieldKind::Struct { name: "DatastoreBindingTargetStruct" }, optional: false, nullable: false },
        ]),
        0x11 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "list_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "endpoint_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 2, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
        ]),
        0x12 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "acl_entry", kind: crate::clusters::codec::FieldKind::Struct { name: "DatastoreAccessControlEntryStruct" }, optional: false, nullable: false },
        ]),
        0x13 => Some(vec![
            crate::clusters::codec::CommandField { tag: 0, name: "list_id", kind: crate::clusters::codec::FieldKind::U16, optional: false, nullable: false },
            crate::clusters::codec::CommandField { tag: 1, name: "node_id", kind: crate::clusters::codec::FieldKind::U64, optional: false, nullable: false },
        ]),
        _ => None,
    }
}

pub fn encode_command_json(cmd_id: u32, args: &serde_json::Value) -> anyhow::Result<Vec<u8>> {
    match cmd_id {
        0x00 => Err(anyhow::anyhow!("command \"AddKeySet\" has complex args: use raw mode")),
        0x01 => Err(anyhow::anyhow!("command \"UpdateKeySet\" has complex args: use raw mode")),
        0x02 => {
        let group_key_set_id = crate::clusters::codec::json_util::get_u16(args, "group_key_set_id")?;
        encode_remove_key_set(group_key_set_id)
        }
        0x03 => {
        let group_id = crate::clusters::codec::json_util::get_u8(args, "group_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_string(args, "friendly_name")?;
        let group_key_set_id = crate::clusters::codec::json_util::get_opt_u16(args, "group_key_set_id")?;
        let group_cat = crate::clusters::codec::json_util::get_opt_u16(args, "group_cat")?;
        let group_cat_version = crate::clusters::codec::json_util::get_opt_u16(args, "group_cat_version")?;
        let group_permission = {
            let n = crate::clusters::codec::json_util::get_u64(args, "group_permission")?;
            DatastoreAccessControlEntryPrivilege::from_u8(n as u8).ok_or_else(|| anyhow::anyhow!("invalid DatastoreAccessControlEntryPrivilege: {}", n))?
        };
        encode_add_group(group_id, friendly_name, group_key_set_id, group_cat, group_cat_version, group_permission)
        }
        0x04 => {
        let group_id = crate::clusters::codec::json_util::get_u8(args, "group_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_opt_string(args, "friendly_name")?;
        let group_key_set_id = crate::clusters::codec::json_util::get_opt_u16(args, "group_key_set_id")?;
        let group_cat = crate::clusters::codec::json_util::get_opt_u16(args, "group_cat")?;
        let group_cat_version = crate::clusters::codec::json_util::get_opt_u16(args, "group_cat_version")?;
        let group_permission = crate::clusters::codec::json_util::get_opt_u64(args, "group_permission")?
            .and_then(|n| DatastoreAccessControlEntryPrivilege::from_u8(n as u8));
        encode_update_group(group_id, friendly_name, group_key_set_id, group_cat, group_cat_version, group_permission)
        }
        0x05 => {
        let group_id = crate::clusters::codec::json_util::get_u8(args, "group_id")?;
        encode_remove_group(group_id)
        }
        0x06 => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_string(args, "friendly_name")?;
        let vendor_id = crate::clusters::codec::json_util::get_u16(args, "vendor_id")?;
        let icac = crate::clusters::codec::json_util::get_octstr(args, "icac")?;
        encode_add_admin(node_id, friendly_name, vendor_id, icac)
        }
        0x07 => {
        let node_id = crate::clusters::codec::json_util::get_opt_u64(args, "node_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_opt_string(args, "friendly_name")?;
        let icac = crate::clusters::codec::json_util::get_opt_octstr(args, "icac")?;
        encode_update_admin(node_id, friendly_name, icac)
        }
        0x08 => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        encode_remove_admin(node_id)
        }
        0x09 => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_string(args, "friendly_name")?;
        encode_add_pending_node(node_id, friendly_name)
        }
        0x0A => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        encode_refresh_node(node_id)
        }
        0x0B => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_string(args, "friendly_name")?;
        encode_update_node(node_id, friendly_name)
        }
        0x0C => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        encode_remove_node(node_id)
        }
        0x0D => {
        let endpoint_id = crate::clusters::codec::json_util::get_u16(args, "endpoint_id")?;
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        let friendly_name = crate::clusters::codec::json_util::get_string(args, "friendly_name")?;
        encode_update_endpoint_for_node(endpoint_id, node_id, friendly_name)
        }
        0x0E => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        let endpoint_id = crate::clusters::codec::json_util::get_u16(args, "endpoint_id")?;
        let group_id = crate::clusters::codec::json_util::get_u8(args, "group_id")?;
        encode_add_group_id_to_endpoint_for_node(node_id, endpoint_id, group_id)
        }
        0x0F => {
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        let endpoint_id = crate::clusters::codec::json_util::get_u16(args, "endpoint_id")?;
        let group_id = crate::clusters::codec::json_util::get_u8(args, "group_id")?;
        encode_remove_group_id_from_endpoint_for_node(node_id, endpoint_id, group_id)
        }
        0x10 => Err(anyhow::anyhow!("command \"AddBindingToEndpointForNode\" has complex args: use raw mode")),
        0x11 => {
        let list_id = crate::clusters::codec::json_util::get_u16(args, "list_id")?;
        let endpoint_id = crate::clusters::codec::json_util::get_u16(args, "endpoint_id")?;
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        encode_remove_binding_from_endpoint_for_node(list_id, endpoint_id, node_id)
        }
        0x12 => Err(anyhow::anyhow!("command \"AddACLToNode\" has complex args: use raw mode")),
        0x13 => {
        let list_id = crate::clusters::codec::json_util::get_u16(args, "list_id")?;
        let node_id = crate::clusters::codec::json_util::get_u64(args, "node_id")?;
        encode_remove_acl_from_node(list_id, node_id)
        }
        _ => Err(anyhow::anyhow!("unknown command ID: 0x{:02X}", cmd_id)),
    }
}

// Typed facade (invokes + reads)

/// Invoke `AddKeySet` command on cluster `Joint Fabric Datastore`.
pub async fn add_key_set(conn: &crate::controller::Connection, endpoint: u16, group_key_set: DatastoreGroupKeySet) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDKEYSET, &encode_add_key_set(group_key_set)?).await?;
    Ok(())
}

/// Invoke `UpdateKeySet` command on cluster `Joint Fabric Datastore`.
pub async fn update_key_set(conn: &crate::controller::Connection, endpoint: u16, group_key_set: DatastoreGroupKeySet) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_UPDATEKEYSET, &encode_update_key_set(group_key_set)?).await?;
    Ok(())
}

/// Invoke `RemoveKeySet` command on cluster `Joint Fabric Datastore`.
pub async fn remove_key_set(conn: &crate::controller::Connection, endpoint: u16, group_key_set_id: u16) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVEKEYSET, &encode_remove_key_set(group_key_set_id)?).await?;
    Ok(())
}

/// Invoke `AddGroup` command on cluster `Joint Fabric Datastore`.
pub async fn add_group(conn: &crate::controller::Connection, endpoint: u16, group_id: u8, friendly_name: String, group_key_set_id: Option<u16>, group_cat: Option<u16>, group_cat_version: Option<u16>, group_permission: DatastoreAccessControlEntryPrivilege) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDGROUP, &encode_add_group(group_id, friendly_name, group_key_set_id, group_cat, group_cat_version, group_permission)?).await?;
    Ok(())
}

/// Invoke `UpdateGroup` command on cluster `Joint Fabric Datastore`.
pub async fn update_group(conn: &crate::controller::Connection, endpoint: u16, group_id: u8, friendly_name: Option<String>, group_key_set_id: Option<u16>, group_cat: Option<u16>, group_cat_version: Option<u16>, group_permission: Option<DatastoreAccessControlEntryPrivilege>) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_UPDATEGROUP, &encode_update_group(group_id, friendly_name, group_key_set_id, group_cat, group_cat_version, group_permission)?).await?;
    Ok(())
}

/// Invoke `RemoveGroup` command on cluster `Joint Fabric Datastore`.
pub async fn remove_group(conn: &crate::controller::Connection, endpoint: u16, group_id: u8) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVEGROUP, &encode_remove_group(group_id)?).await?;
    Ok(())
}

/// Invoke `AddAdmin` command on cluster `Joint Fabric Datastore`.
pub async fn add_admin(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, friendly_name: String, vendor_id: u16, icac: Vec<u8>) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDADMIN, &encode_add_admin(node_id, friendly_name, vendor_id, icac)?).await?;
    Ok(())
}

/// Invoke `UpdateAdmin` command on cluster `Joint Fabric Datastore`.
pub async fn update_admin(conn: &crate::controller::Connection, endpoint: u16, node_id: Option<u64>, friendly_name: Option<String>, icac: Option<Vec<u8>>) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_UPDATEADMIN, &encode_update_admin(node_id, friendly_name, icac)?).await?;
    Ok(())
}

/// Invoke `RemoveAdmin` command on cluster `Joint Fabric Datastore`.
pub async fn remove_admin(conn: &crate::controller::Connection, endpoint: u16, node_id: u64) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVEADMIN, &encode_remove_admin(node_id)?).await?;
    Ok(())
}

/// Invoke `AddPendingNode` command on cluster `Joint Fabric Datastore`.
pub async fn add_pending_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, friendly_name: String) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDPENDINGNODE, &encode_add_pending_node(node_id, friendly_name)?).await?;
    Ok(())
}

/// Invoke `RefreshNode` command on cluster `Joint Fabric Datastore`.
pub async fn refresh_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REFRESHNODE, &encode_refresh_node(node_id)?).await?;
    Ok(())
}

/// Invoke `UpdateNode` command on cluster `Joint Fabric Datastore`.
pub async fn update_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, friendly_name: String) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_UPDATENODE, &encode_update_node(node_id, friendly_name)?).await?;
    Ok(())
}

/// Invoke `RemoveNode` command on cluster `Joint Fabric Datastore`.
pub async fn remove_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVENODE, &encode_remove_node(node_id)?).await?;
    Ok(())
}

/// Invoke `UpdateEndpointForNode` command on cluster `Joint Fabric Datastore`.
pub async fn update_endpoint_for_node(conn: &crate::controller::Connection, endpoint: u16, endpoint_id: u16, node_id: u64, friendly_name: String) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_UPDATEENDPOINTFORNODE, &encode_update_endpoint_for_node(endpoint_id, node_id, friendly_name)?).await?;
    Ok(())
}

/// Invoke `AddGroupIDToEndpointForNode` command on cluster `Joint Fabric Datastore`.
pub async fn add_group_id_to_endpoint_for_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, endpoint_id: u16, group_id: u8) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDGROUPIDTOENDPOINTFORNODE, &encode_add_group_id_to_endpoint_for_node(node_id, endpoint_id, group_id)?).await?;
    Ok(())
}

/// Invoke `RemoveGroupIDFromEndpointForNode` command on cluster `Joint Fabric Datastore`.
pub async fn remove_group_id_from_endpoint_for_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, endpoint_id: u16, group_id: u8) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVEGROUPIDFROMENDPOINTFORNODE, &encode_remove_group_id_from_endpoint_for_node(node_id, endpoint_id, group_id)?).await?;
    Ok(())
}

/// Invoke `AddBindingToEndpointForNode` command on cluster `Joint Fabric Datastore`.
pub async fn add_binding_to_endpoint_for_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, endpoint_id: u16, binding: DatastoreBindingTarget) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDBINDINGTOENDPOINTFORNODE, &encode_add_binding_to_endpoint_for_node(node_id, endpoint_id, binding)?).await?;
    Ok(())
}

/// Invoke `RemoveBindingFromEndpointForNode` command on cluster `Joint Fabric Datastore`.
pub async fn remove_binding_from_endpoint_for_node(conn: &crate::controller::Connection, endpoint: u16, list_id: u16, endpoint_id: u16, node_id: u64) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVEBINDINGFROMENDPOINTFORNODE, &encode_remove_binding_from_endpoint_for_node(list_id, endpoint_id, node_id)?).await?;
    Ok(())
}

/// Invoke `AddACLToNode` command on cluster `Joint Fabric Datastore`.
pub async fn add_acl_to_node(conn: &crate::controller::Connection, endpoint: u16, node_id: u64, acl_entry: DatastoreAccessControlEntry) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_ADDACLTONODE, &encode_add_acl_to_node(node_id, acl_entry)?).await?;
    Ok(())
}

/// Invoke `RemoveACLFromNode` command on cluster `Joint Fabric Datastore`.
pub async fn remove_acl_from_node(conn: &crate::controller::Connection, endpoint: u16, list_id: u16, node_id: u64) -> anyhow::Result<()> {
    conn.invoke_request(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_CMD_ID_REMOVEACLFROMNODE, &encode_remove_acl_from_node(list_id, node_id)?).await?;
    Ok(())
}

/// Read `AnchorRootCA` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_anchor_root_ca(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<u8>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_ANCHORROOTCA).await?;
    decode_anchor_root_ca(&tlv)
}

/// Read `AnchorNodeID` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_anchor_node_id(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<u64> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_ANCHORNODEID).await?;
    decode_anchor_node_id(&tlv)
}

/// Read `AnchorVendorID` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_anchor_vendor_id(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<u16> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_ANCHORVENDORID).await?;
    decode_anchor_vendor_id(&tlv)
}

/// Read `FriendlyName` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_friendly_name(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<String> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_FRIENDLYNAME).await?;
    decode_friendly_name(&tlv)
}

/// Read `GroupKeySetList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_group_key_set_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreGroupKeySet>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_GROUPKEYSETLIST).await?;
    decode_group_key_set_list(&tlv)
}

/// Read `GroupList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_group_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreGroupInformationEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_GROUPLIST).await?;
    decode_group_list(&tlv)
}

/// Read `NodeList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_node_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreNodeInformationEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_NODELIST).await?;
    decode_node_list(&tlv)
}

/// Read `AdminList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_admin_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreAdministratorInformationEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_ADMINLIST).await?;
    decode_admin_list(&tlv)
}

/// Read `Status` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_status(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<DatastoreStatusEntry> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_STATUS).await?;
    decode_status(&tlv)
}

/// Read `EndpointGroupIDList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_endpoint_group_id_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreEndpointGroupIDEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_ENDPOINTGROUPIDLIST).await?;
    decode_endpoint_group_id_list(&tlv)
}

/// Read `EndpointBindingList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_endpoint_binding_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreEndpointBindingEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_ENDPOINTBINDINGLIST).await?;
    decode_endpoint_binding_list(&tlv)
}

/// Read `NodeKeySetList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_node_key_set_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreNodeKeySetEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_NODEKEYSETLIST).await?;
    decode_node_key_set_list(&tlv)
}

/// Read `NodeACLList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_node_acl_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreACLEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_NODEACLLIST).await?;
    decode_node_acl_list(&tlv)
}

/// Read `NodeEndpointList` attribute from cluster `Joint Fabric Datastore`.
pub async fn read_node_endpoint_list(conn: &crate::controller::Connection, endpoint: u16) -> anyhow::Result<Vec<DatastoreEndpointEntry>> {
    let tlv = conn.read_request2(endpoint, crate::clusters::defs::CLUSTER_ID_JOINT_FABRIC_DATASTORE, crate::clusters::defs::CLUSTER_JOINT_FABRIC_DATASTORE_ATTR_ID_NODEENDPOINTLIST).await?;
    decode_node_endpoint_list(&tlv)
}