| |
| /* |
| * |
| * Copyright (c) 2021 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 "controller/python/ChipDeviceController-StorageDelegate.h" |
| |
| #include <cstring> |
| #include <map> |
| #include <string> |
| |
| #include <core/CHIPPersistentStorageDelegate.h> |
| #include <support/logging/CHIPLogging.h> |
| |
| namespace chip { |
| namespace Controller { |
| |
| void PythonPersistentStorageDelegate::SetStorageDelegate(PersistentStorageResultDelegate * delegate) |
| { |
| mDelegate = delegate; |
| } |
| |
| CHIP_ERROR PythonPersistentStorageDelegate::SyncGetKeyValue(const char * key, char * value, uint16_t & size) |
| { |
| auto val = mStorage.find(key); |
| if (val == mStorage.end()) |
| { |
| return CHIP_ERROR_KEY_NOT_FOUND; |
| } |
| |
| if (value == nullptr) |
| { |
| size = 0; |
| } |
| |
| uint16_t neededSize = val->second.size() + 1; |
| if (size == 0) |
| { |
| size = neededSize; |
| return CHIP_ERROR_NO_MEMORY; |
| } |
| |
| if (size < neededSize) |
| { |
| memcpy(value, val->second.c_str(), size - 1); |
| value[size - 1] = '\0'; |
| size = neededSize; |
| return CHIP_ERROR_NO_MEMORY; |
| } |
| |
| memcpy(value, val->second.c_str(), neededSize); |
| size = neededSize; |
| return CHIP_NO_ERROR; |
| } |
| |
| void PythonPersistentStorageDelegate::AsyncSetKeyValue(const char * key, const char * value) |
| { |
| mStorage[key] = value; |
| ChipLogDetail(Controller, "AsyncSetKeyValue: %s=%s", key, value); |
| mDelegate->OnPersistentStorageStatus(key, PersistentStorageResultDelegate::Operation::kSET, CHIP_NO_ERROR); |
| } |
| |
| void PythonPersistentStorageDelegate::AsyncDeleteKeyValue(const char * key) |
| { |
| mStorage.erase(key); |
| mDelegate->OnPersistentStorageStatus(key, PersistentStorageResultDelegate::Operation::kDELETE, CHIP_NO_ERROR); |
| } |
| |
| } // namespace Controller |
| } // namespace chip |