| /* |
| * |
| * 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. |
| */ |
| |
| /** |
| * @file |
| * Platform-specific key value storage implementation for Ameba |
| */ |
| /* this file behaves like a config.h, comes first */ |
| #include "FreeRTOS.h" |
| #include "chip_porting.h" |
| #include <platform/KeyValueStoreManager.h> |
| #include <support/CodeUtils.h> |
| |
| namespace chip { |
| namespace DeviceLayer { |
| namespace PersistedStorage { |
| |
| KeyValueStoreManagerImpl KeyValueStoreManagerImpl::sInstance; |
| |
| CHIP_ERROR KeyValueStoreManagerImpl::_Get(const char * key, void * value, size_t value_size, size_t * read_bytes_size, |
| size_t offset_bytes) |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| int32_t ret = -1; |
| |
| if (!value) |
| { |
| return (err = CHIP_ERROR_INVALID_ARGUMENT); |
| } |
| |
| if (offset_bytes > 0) |
| { |
| // Offset and partial reads are not supported in nvs, for now just return NOT_IMPLEMENTED. Support can be added in the |
| // future if this is needed. |
| return (err = CHIP_ERROR_NOT_IMPLEMENTED); |
| } |
| |
| if (read_bytes_size) |
| { |
| ret = getPref_bin_new(key, key, (uint8_t *) value, value_size, read_bytes_size); |
| } |
| else |
| { |
| size_t * dummy_read_bytes_size = (size_t *) pvPortMalloc(sizeof(size_t)); |
| if (!dummy_read_bytes_size) |
| { |
| return CHIP_ERROR_INTERNAL; |
| } |
| ret = getPref_bin_new(key, key, (uint8_t *) value, value_size, dummy_read_bytes_size); |
| vPortFree(dummy_read_bytes_size); |
| } |
| switch (ret) |
| { |
| case 0: |
| return CHIP_NO_ERROR; |
| case -6: |
| return CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND; |
| case -7: |
| return CHIP_ERROR_INVALID_ARGUMENT; |
| case -8: |
| return CHIP_ERROR_BUFFER_TOO_SMALL; |
| default: |
| break; |
| } |
| |
| return CHIP_ERROR_INTERNAL; |
| } |
| |
| CHIP_ERROR KeyValueStoreManagerImpl::_Put(const char * key, const void * value, size_t value_size) |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| int32_t ret = -1; |
| |
| if (!value) |
| { |
| return (err = CHIP_ERROR_INVALID_ARGUMENT); |
| } |
| |
| if (checkExist(key, key)) |
| { |
| ret = deleteKey(key, key); |
| if (ret != 0) |
| { |
| ChipLogError(DeviceLayer, "Warning, KVS leakage, failed to remove old kvs value"); |
| } |
| } |
| |
| ret = setPref_new(key, key, (uint8_t *) value, value_size); |
| |
| if (TRUE == ret) |
| err = CHIP_NO_ERROR; |
| else |
| err = CHIP_ERROR_INTERNAL; |
| |
| return err; |
| } |
| |
| CHIP_ERROR KeyValueStoreManagerImpl::_Delete(const char * key) |
| { |
| int32_t ret = deleteKey(key, key); |
| switch (ret) |
| { |
| case 0: |
| return CHIP_NO_ERROR; |
| case -6: |
| return CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND; |
| case -7: |
| return CHIP_ERROR_INVALID_ARGUMENT; |
| case -8: |
| return CHIP_ERROR_BUFFER_TOO_SMALL; |
| default: |
| break; |
| } |
| |
| return CHIP_ERROR_INTERNAL; |
| } |
| |
| } // namespace PersistedStorage |
| } // namespace DeviceLayer |
| } // namespace chip |