-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Darwin: Add MTRCommissioningParameters.readEndpointInformation
Endpoint information is made availalable to the delegate via an MTRCommissioneeInfo object containing MTREndpointInfo objects.
- Loading branch information
1 parent
0de8971
commit 9492299
Showing
17 changed files
with
668 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/darwin/Framework/CHIP/MTRAttributeTLVValueDecoder_Internal.mm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* Copyright (c) 2024 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import "MTRAttributeTLVValueDecoder_Internal.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
using namespace chip; | ||
|
||
id _Nullable MTRDecodeAttributeValue(const chip::app::ConcreteAttributePath & aPath, | ||
const chip::app::ClusterStateCache & aCache, | ||
CHIP_ERROR * aError) | ||
{ | ||
TLV::TLVReader reader; | ||
*aError = aCache.Get(aPath, reader); | ||
VerifyOrReturnValue(*aError == CHIP_NO_ERROR, nil); | ||
return MTRDecodeAttributeValue(aPath, reader, aError); | ||
} | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* Copyright (c) 2024 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import <Matter/MTRDefines.h> | ||
|
||
@class MTRDeviceTypeRevision; | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Meta-data about an endpoint of a Matter node. | ||
*/ | ||
MTR_NEWLY_AVAILABLE | ||
@interface MTREndpointInfo : NSObject | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
+ (instancetype)new NS_UNAVAILABLE; | ||
|
||
@property (nonatomic, copy, readonly) NSNumber * endpointID; | ||
|
||
@property (nonatomic, copy, readonly) NSArray<MTRDeviceTypeRevision *> * deviceTypes; | ||
@property (nonatomic, copy, readonly) NSArray<NSNumber *> * partsList; | ||
|
||
/** | ||
* The direct children of this endpoint. This excludes indirect descendants | ||
* even if they are listed in the PartsList attribute of this endpoint due | ||
* to the Full-Family Pattern being used. Refer to Endpoint Composition Patterns | ||
* in the Matter specification for details. | ||
*/ | ||
@property (nonatomic, copy, readonly) NSArray<MTREndpointInfo *> * children; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.