-
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.
Add a continuous browse for Matter operational advertisements on Darw…
…in. (#25317) The information is propagated to MTRDevice, but we're not making use of it there yet. The fabricIndex changes were due to a pre-existing issue: we are in fact getting it from the wrong thread/queue in various places (MTRDevice init, MTRDevice command invocation), such that an assertChipStackLockedByCurrentThread() in the getter failed.
- Loading branch information
1 parent
c5f023b
commit 7ce9d78
Showing
9 changed files
with
268 additions
and
4 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
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) 2023 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. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <Matter/MTRDeviceControllerFactory.h> | ||
#import <dns_sd.h> | ||
|
||
class MTROperationalBrowser | ||
{ | ||
public: | ||
// Should be created at a point when the factory starts up the event loop, | ||
// and destroyed when the event loop is stopped. | ||
MTROperationalBrowser(MTRDeviceControllerFactory * aFactory, dispatch_queue_t aQueue); | ||
|
||
~MTROperationalBrowser(); | ||
|
||
private: | ||
static void OnBrowse(DNSServiceRef aServiceRef, DNSServiceFlags aFlags, uint32_t aInterfaceId, DNSServiceErrorType aError, | ||
const char * aName, const char * aType, const char * aDomain, void * aContext); | ||
|
||
void TryToStartBrowse(); | ||
|
||
MTRDeviceControllerFactory * const mDeviceControllerFactory; | ||
dispatch_queue_t mQueue; | ||
DNSServiceRef mBrowseRef; | ||
|
||
// If mInitialized is true, mBrowseRef is valid. | ||
bool mInitialized = false; | ||
|
||
// If mIsDestroying is true, we're in our destructor, shutting things down. | ||
bool mIsDestroying = false; | ||
}; |
Oops, something went wrong.