Skip to content

Commit bc83fc2

Browse files
Move fabricIndex property to MTRDeviceController_Concrete. (project-chip#36324)
This doesn't really make sense for non-concrete controllers. Also removes some unnecessary declarations and includes from MTRDeviceController_Internal.
1 parent 6a31fc2 commit bc83fc2

7 files changed

+13
-29
lines changed

src/darwin/Framework/CHIP/MTRDeviceController.mm

-6
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ - (instancetype)initWithDelegate:(id<MTRDeviceControllerDelegate>)delegate queue
9494
@implementation MTRDeviceController {
9595
os_unfair_lock _underlyingDeviceMapLock;
9696

97-
std::atomic<chip::FabricIndex> _storedFabricIndex;
9897
std::atomic<std::optional<uint64_t>> _storedCompressedFabricID;
9998

10099
// For now, we just ensure that access to _suspended is atomic, but don't
@@ -503,11 +502,6 @@ - (void)asyncDispatchToMatterQueue:(dispatch_block_t)block errorHandler:(nullabl
503502
errorHandler([MTRError errorForCHIPErrorCode:CHIP_ERROR_INCORRECT_STATE]);
504503
}
505504

506-
- (chip::FabricIndex)fabricIndex
507-
{
508-
return _storedFabricIndex;
509-
}
510-
511505
- (nullable NSNumber *)compressedFabricID
512506
{
513507
auto storedValue = _storedCompressedFabricID.load();

src/darwin/Framework/CHIP/MTRDeviceController_Concrete.h

+5
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,11 @@ NS_ASSUME_NONNULL_BEGIN
221221
queue:(dispatch_queue_t)queue
222222
completion:(void (^)(NSURL * _Nullable url, NSError * _Nullable error))completion;
223223

224+
/**
225+
* Will return chip::kUndefinedFabricIndex if we do not have a fabric index.
226+
*/
227+
@property (readonly) chip::FabricIndex fabricIndex;
228+
224229
@end
225230

226231
NS_ASSUME_NONNULL_END

src/darwin/Framework/CHIP/MTRDeviceController_Internal.h

-19
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
#import "MTRDeviceConnectionBridge.h" // For MTRInternalDeviceConnectionCallback
2626
#import "MTRDeviceController.h"
2727

28-
#include <lib/core/CHIPError.h>
29-
#include <lib/core/DataModelTypes.h>
30-
3128
#import <os/lock.h>
3229

3330
#import "MTRBaseDevice.h"
@@ -37,11 +34,8 @@
3734
#import "MTRDeviceControllerDelegate.h"
3835
#import "MTRDeviceStorageBehaviorConfiguration.h"
3936

40-
#import <Matter/MTRP256KeypairBridge.h>
41-
4237
#import <Matter/MTRDefines.h>
4338
#import <Matter/MTRDeviceControllerStorageDelegate.h>
44-
#import <Matter/MTRDiagnosticLogsType.h>
4539
#import <Matter/MTROTAProviderDelegate.h>
4640

4741
@class MTRDeviceControllerParameters;
@@ -52,14 +46,6 @@
5246
@protocol MTRDeviceControllerDelegate;
5347
@class MTRDevice_Concrete;
5448

55-
namespace chip {
56-
class FabricTable;
57-
58-
namespace Controller {
59-
class DeviceCommissioner;
60-
}
61-
} // namespace chip
62-
6349
NS_ASSUME_NONNULL_BEGIN
6450

6551
@interface MTRDeviceController ()
@@ -74,11 +60,6 @@ NS_ASSUME_NONNULL_BEGIN
7460

7561
#pragma mark - MTRDeviceControllerFactory methods
7662

77-
/**
78-
* Will return chip::kUndefinedFabricIndex if we do not have a fabric index.
79-
*/
80-
@property (readonly) chip::FabricIndex fabricIndex;
81-
8263
/**
8364
* Will return the compressed fabric id of the fabric if the controller is
8465
* running, else nil.

src/darwin/Framework/CHIP/MTRDeviceController_XPC.mm

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#import "MTRDeviceController_Internal.h"
2121
#import "MTRDevice_XPC.h"
2222
#import "MTRDevice_XPC_Internal.h"
23+
#import "MTRError_Internal.h"
2324
#import "MTRLogging_Internal.h"
2425
#import "MTRXPCClientProtocol.h"
2526
#import "MTRXPCServerProtocol.h"

src/darwin/Framework/CHIP/MTROTAProviderDelegateBridge.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
#import <Matter/MTROTAProviderDelegate.h>
1919

20+
#import "MTRDeviceController_Concrete.h"
21+
2022
#include <app/clusters/ota-provider/ota-provider-delegate.h>
2123

2224
NS_ASSUME_NONNULL_BEGIN
@@ -35,7 +37,7 @@ class MTROTAProviderDelegateBridge : public chip::app::Clusters::OTAProviderDele
3537

3638
// ControllerShuttingDown must be called on the Matter work queue, since it
3739
// touches Matter objects.
38-
void ControllerShuttingDown(MTRDeviceController * controller);
40+
void ControllerShuttingDown(MTRDeviceController_Concrete * controller);
3941

4042
void HandleQueryImage(
4143
chip::app::CommandHandler * commandObj, const chip::app::ConcreteCommandPath & commandPath,

src/darwin/Framework/CHIP/MTROTAProviderDelegateBridge.mm

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ CHIP_ERROR Shutdown()
112112
return CHIP_NO_ERROR;
113113
}
114114

115-
void ControllerShuttingDown(MTRDeviceController * controller)
115+
void ControllerShuttingDown(MTRDeviceController_Concrete * controller)
116116
{
117117
assertChipStackLockedByCurrentThread();
118118

@@ -506,7 +506,7 @@ CHIP_ERROR ConfigureState(chip::FabricIndex fabricIndex, chip::NodeId nodeId)
506506

507507
void MTROTAProviderDelegateBridge::Shutdown() { gOtaSender->Shutdown(); }
508508

509-
void MTROTAProviderDelegateBridge::ControllerShuttingDown(MTRDeviceController * controller)
509+
void MTROTAProviderDelegateBridge::ControllerShuttingDown(MTRDeviceController_Concrete * controller)
510510
{
511511
gOtaSender->ControllerShuttingDown(controller);
512512
}

src/darwin/Framework/CHIP/MTRSessionResumptionStorageBridge.mm

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#import "MTRConversion.h"
2020
#import "MTRDeviceControllerFactory_Internal.h"
21+
#import "MTRDeviceController_Concrete.h"
2122
#import "MTRDeviceController_Internal.h"
2223
#import "MTRLogging_Internal.h"
2324
#import "NSDataSpanConversion.h"
@@ -58,7 +59,7 @@
5859
auto * resumptionIDData = AsData(resumptionId);
5960

6061
auto * controllerList = [mFactory getRunningControllers];
61-
for (MTRDeviceController * controller in controllerList) {
62+
for (MTRDeviceController_Concrete * controller in controllerList) {
6263
FabricIndex fabricIndex = controller.fabricIndex;
6364
if (!IsValidFabricIndex(fabricIndex)) {
6465
// This controller is not sufficiently "running"; it does not have a

0 commit comments

Comments
 (0)