/* * * 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 #include namespace chip { namespace DeviceLayer { DeviceControlServer DeviceControlServer::sInstance; DeviceControlServer & DeviceControlServer::DeviceControlSvr() { return sInstance; } CHIP_ERROR DeviceControlServer::PostCommissioningCompleteEvent(NodeId peerNodeId, FabricIndex accessingFabricIndex) { ChipDeviceEvent event{ .Type = DeviceEventType::kCommissioningComplete, .CommissioningComplete = { .nodeId = peerNodeId, .fabricIndex = accessingFabricIndex } }; return PlatformMgr().PostEvent(&event); } CHIP_ERROR DeviceControlServer::SetRegulatoryConfig(uint8_t location, const CharSpan & countryCode) { CHIP_ERROR err = CHIP_NO_ERROR; err = ConfigurationMgr().StoreRegulatoryLocation(location); SuccessOrExit(err); err = ConfigurationMgr().StoreCountryCode(countryCode.data(), countryCode.size()); SuccessOrExit(err); exit: if (err != CHIP_NO_ERROR) { ChipLogError(DeviceLayer, "SetRegulatoryConfig failed with error: %s", ErrorStr(err)); } return err; } CHIP_ERROR DeviceControlServer::PostConnectedToOperationalNetworkEvent(ByteSpan networkID) { ChipDeviceEvent event{ .Type = DeviceEventType::kOperationalNetworkEnabled, // TODO(cecille): This should be some way to specify thread or wifi. .OperationalNetwork = { .network = 0 } }; return PlatformMgr().PostEvent(&event); } CHIP_ERROR DeviceControlServer::PostCloseAllBLEConnectionsToOperationalNetworkEvent() { ChipDeviceEvent event{ .Type = DeviceEventType::kCloseAllBleConnections }; return PlatformMgr().PostEvent(&event); } CHIP_ERROR DeviceControlServer::PostWiFiDeviceAvailableNetworkEvent() { ChipDeviceEvent event{ .Type = DeviceEventType::kWiFiDeviceAvailable }; return PlatformMgr().PostEvent(&event); } CHIP_ERROR DeviceControlServer::PostOperationalNetworkStartedEvent() { ChipDeviceEvent event{ .Type = DeviceEventType::kOperationalNetworkStarted }; return PlatformMgr().PostEvent(&event); } } // namespace DeviceLayer } // namespace chip