blob: 218691e74401eaa475a7b164336e49c473ccfee0 [file] [log] [blame]
/*
* 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.
*
*/
#include "AddDeviceCommand.h"
#include <admin/DeviceManager.h>
#include <lib/shell/streamer.h>
using namespace ::chip;
namespace commands {
AddDeviceCommand::AddDeviceCommand(chip::NodeId nodeId, uint32_t setupPINCode, const char * remoteAddr, uint16_t remotePort) :
mNodeId(nodeId), mSetupPINCode(setupPINCode), mRemoteAddr(remoteAddr), mRemotePort(remotePort)
{}
void AddDeviceCommand::OnCommissioningComplete(NodeId deviceId, CHIP_ERROR err)
{
if (mNodeId != deviceId)
{
if (err != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified,
"Failed to pair non-specified device (0x:" ChipLogFormatX64 ") with error: %" CHIP_ERROR_FORMAT,
ChipLogValueX64(deviceId), err.Format());
}
else
{
ChipLogProgress(NotSpecified, "Commissioning complete for non-specified device: NodeId: " ChipLogFormatX64,
ChipLogValueX64(deviceId));
}
return;
}
if (err == CHIP_NO_ERROR)
{
ChipLogProgress(NotSpecified, "Successfully paired device: NodeId: " ChipLogFormatX64, ChipLogValueX64(mNodeId));
admin::DeviceMgr().UpdateLastUsedNodeId(mNodeId);
}
else
{
ChipLogError(NotSpecified, "Failed to pair device (0x:" ChipLogFormatX64 ") with error: %" CHIP_ERROR_FORMAT,
ChipLogValueX64(deviceId), err.Format());
}
CommandRegistry::Instance().ResetActiveCommand();
}
CHIP_ERROR AddDeviceCommand::RunCommand()
{
if (admin::DeviceMgr().IsCurrentBridgeDevice(mNodeId))
{
// print to console
fprintf(stderr, "The specified node ID has been reserved by the Fabric Bridge.\n");
return CHIP_ERROR_INVALID_ARGUMENT;
}
admin::PairingManager::Instance().SetPairingDelegate(this);
return admin::DeviceMgr().PairRemoteDevice(mNodeId, mSetupPINCode, mRemoteAddr, mRemotePort);
}
} // namespace commands