| /* |
| * |
| * Copyright (c) 2021 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. |
| */ |
| |
| /** |
| * @file |
| * Provides the implementation of the DeviceControlServer object. |
| */ |
| |
| #include <platform/DeviceControlServer.h> |
| |
| #include <platform/ConfigurationManager.h> |
| |
| namespace chip { |
| namespace DeviceLayer { |
| |
| DeviceControlServer DeviceControlServer::sInstance; |
| |
| DeviceControlServer & DeviceControlServer::DeviceControlSvr() |
| { |
| return sInstance; |
| } |
| |
| CHIP_ERROR DeviceControlServer::CommissioningComplete(NodeId peerNodeId, FabricIndex accessingFabricIndex) |
| { |
| VerifyOrReturnError(CHIP_NO_ERROR == mFailSafeContext.DisarmFailSafe(), CHIP_ERROR_INTERNAL); |
| ChipDeviceEvent event; |
| event.Type = DeviceEventType::kCommissioningComplete; |
| event.CommissioningComplete.PeerNodeId = peerNodeId; |
| event.CommissioningComplete.PeerFabricIndex = accessingFabricIndex; |
| event.CommissioningComplete.Status = CHIP_NO_ERROR; |
| return PlatformMgr().PostEvent(&event); |
| } |
| |
| CHIP_ERROR DeviceControlServer::SetRegulatoryConfig(uint8_t location, const CharSpan & countryCode, uint64_t breadcrumb) |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| |
| err = ConfigurationMgr().StoreRegulatoryLocation(location); |
| SuccessOrExit(err); |
| |
| err = ConfigurationMgr().StoreCountryCode(countryCode.data(), countryCode.size()); |
| SuccessOrExit(err); |
| |
| err = ConfigurationMgr().StoreBreadcrumb(breadcrumb); |
| SuccessOrExit(err); |
| |
| exit: |
| if (err != CHIP_NO_ERROR) |
| { |
| ChipLogError(DeviceLayer, "SetRegulatoryConfig failed with error: %s", ErrorStr(err)); |
| } |
| |
| // TODO(cecille): This command fails on ESP32, but it's blocking IP cluster-based commissioning so for now just return a success |
| // status. |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR DeviceControlServer::ConnectNetworkForOperational(ByteSpan networkID) |
| { |
| ChipDeviceEvent event; |
| event.Type = DeviceEventType::kOperationalNetworkEnabled; |
| // TODO(cecille): This should be some way to specify thread or wifi. |
| event.OperationalNetwork.network = 0; |
| PlatformMgr().DispatchEvent(&event); |
| return CHIP_NO_ERROR; |
| } |
| |
| } // namespace DeviceLayer |
| } // namespace chip |