-
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.
[SetUpCodePairer] Add an API to list the discovered devices if any (#…
- Loading branch information
1 parent
575d3c1
commit 1419608
Showing
27 changed files
with
632 additions
and
68 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/* | ||
* Copyright (c) 2023 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. | ||
* | ||
*/ | ||
|
||
#include "DeviceScanner.h" | ||
|
||
using namespace chip; | ||
using namespace chip::Ble; | ||
using namespace chip::Dnssd; | ||
|
||
CHIP_ERROR DeviceScanner::Start() | ||
{ | ||
mDiscoveredResults.clear(); | ||
|
||
#if CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
ReturnErrorOnFailure(DeviceLayer::PlatformMgrImpl().StartBleScan(this)); | ||
#endif // CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
|
||
ReturnErrorOnFailure(mDNSResolver.Init(DeviceLayer::UDPEndPointManager())); | ||
mDNSResolver.SetCommissioningDelegate(this); | ||
|
||
DiscoveryFilter filter(DiscoveryFilterType::kNone, (uint64_t) 0); | ||
return mDNSResolver.DiscoverCommissionableNodes(filter); | ||
} | ||
|
||
CHIP_ERROR DeviceScanner::Stop() | ||
{ | ||
#if CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
ReturnErrorOnFailure(DeviceLayer::PlatformMgrImpl().StopBleScan()); | ||
#endif // CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
|
||
mDNSResolver.SetCommissioningDelegate(nullptr); | ||
ReturnErrorOnFailure(mDNSResolver.StopDiscovery()); | ||
mDNSResolver.Shutdown(); | ||
return CHIP_NO_ERROR; | ||
} | ||
|
||
void DeviceScanner::OnNodeDiscovered(const DiscoveredNodeData & nodeData) | ||
{ | ||
auto & commissionData = nodeData.commissionData; | ||
|
||
auto discriminator = commissionData.longDiscriminator; | ||
auto vendorId = static_cast<VendorId>(commissionData.vendorId); | ||
auto productId = commissionData.productId; | ||
|
||
ChipLogProgress(chipTool, "OnNodeDiscovered (MDNS): discriminator: %u, vendorId: %u, productId: %u", discriminator, vendorId, | ||
productId); | ||
|
||
auto & resolutionData = nodeData.resolutionData; | ||
for (size_t i = 0; i < resolutionData.numIPs; i++) | ||
{ | ||
auto params = Controller::SetUpCodePairerParameters(resolutionData, i); | ||
DeviceScannerResult result = { params, vendorId, productId, discriminator }; | ||
mDiscoveredResults.push_back(result); | ||
} | ||
|
||
nodeData.LogDetail(); | ||
} | ||
|
||
#if CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
void DeviceScanner::OnBleScanResult(BLE_CONNECTION_OBJECT connObj, const ChipBLEDeviceIdentificationInfo & info) | ||
{ | ||
auto discriminator = info.GetDeviceDiscriminator(); | ||
auto vendorId = static_cast<VendorId>(info.GetVendorId()); | ||
auto productId = info.GetProductId(); | ||
|
||
ChipLogProgress(chipTool, "OnNodeDiscovered (BLE): discriminator: %u, vendorId: %u, productId: %u", discriminator, vendorId, | ||
productId); | ||
|
||
auto params = Controller::SetUpCodePairerParameters(connObj, false /* connected */); | ||
DeviceScannerResult result = { params, vendorId, productId, discriminator }; | ||
mDiscoveredResults.push_back(result); | ||
} | ||
#endif // CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
|
||
CHIP_ERROR DeviceScanner::Get(uint16_t index, RendezvousParameters & params) | ||
{ | ||
VerifyOrReturnError(index < mDiscoveredResults.size(), CHIP_ERROR_NOT_FOUND); | ||
|
||
auto & result = mDiscoveredResults.at(index); | ||
params = result.mParams; | ||
return CHIP_NO_ERROR; | ||
} | ||
|
||
void DeviceScanner::Log() const | ||
{ | ||
auto resultsCount = mDiscoveredResults.size(); | ||
VerifyOrReturn(resultsCount > 0, ChipLogProgress(chipTool, "No device discovered.")); | ||
|
||
uint16_t index = 0; | ||
for (auto & result : mDiscoveredResults) | ||
{ | ||
char addr[Transport::PeerAddress::kMaxToStringSize]; | ||
result.mParams.GetPeerAddress().ToString(addr); | ||
|
||
ChipLogProgress(chipTool, "\t %u - Discriminator: %u - Vendor: %u - Product: %u - %s", index, result.mDiscriminator, | ||
result.mVendorId, result.mProductId, addr); | ||
index++; | ||
} | ||
} | ||
|
||
DeviceScanner & GetDeviceScanner() | ||
{ | ||
static DeviceScanner scanner; | ||
return scanner; | ||
} |
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,70 @@ | ||
/* | ||
* Copyright (c) 2023 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. | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <controller/CHIPDeviceController.h> | ||
#include <lib/dnssd/ResolverProxy.h> | ||
|
||
#include <vector> | ||
|
||
#if CONFIG_NETWORK_LAYER_BLE | ||
#if CHIP_DEVICE_LAYER_TARGET_DARWIN | ||
#include <platform/Darwin/BleScannerDelegate.h> | ||
#define CHIP_TOOL_DEVICE_SCANNER_USE_BLE 1 | ||
#endif // CHIP_DEVICE_LAYER_TARGET_DARWIN | ||
#endif // CONFIG_NETWORK_LAYER_BLE | ||
|
||
#ifndef CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
#define CHIP_TOOL_DEVICE_SCANNER_USE_BLE 0 | ||
#endif // CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
|
||
struct DeviceScannerResult | ||
{ | ||
chip::Controller::SetUpCodePairerParameters mParams; | ||
chip::VendorId mVendorId; | ||
uint16_t mProductId; | ||
uint16_t mDiscriminator; | ||
}; | ||
|
||
class DeviceScanner : public chip::Dnssd::CommissioningResolveDelegate | ||
#if CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
, | ||
public chip::DeviceLayer::BleScannerDelegate | ||
#endif // CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
{ | ||
public: | ||
CHIP_ERROR Start(); | ||
CHIP_ERROR Stop(); | ||
CHIP_ERROR Get(uint16_t index, chip::RendezvousParameters & params); | ||
void Log() const; | ||
|
||
/////////// CommissioningResolveDelegate Interface ///////// | ||
void OnNodeDiscovered(const chip::Dnssd::DiscoveredNodeData & nodeData) override; | ||
|
||
#if CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
/////////// BleScannerDelegate Interface ///////// | ||
void OnBleScanResult(BLE_CONNECTION_OBJECT connObj, const chip::Ble::ChipBLEDeviceIdentificationInfo & info) override; | ||
#endif // CHIP_TOOL_DEVICE_SCANNER_USE_BLE | ||
|
||
private: | ||
std::vector<DeviceScannerResult> mDiscoveredResults; | ||
chip::Dnssd::ResolverProxy mDNSResolver; | ||
}; | ||
|
||
DeviceScanner & GetDeviceScanner(); |
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
Oops, something went wrong.