ucloud-iot-device-sdk-c/platform/os/nos/HAL_OS_nos.c

228 lines
5.3 KiB
C

/*
* Copyright (C) 2012-2019 UCloud. 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.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include "uiot_defs.h"
#include "stdint.h"
#define DEBUG_DEV_INFO_USED
// 测试时可在此处填入设备四元组
#ifdef DEBUG_DEV_INFO_USED
/* 产品序列号 */
static char sg_product_sn[IOT_PRODUCT_SN_LEN + 1] = "YOUR_PRODUCT_SN";
/* 产品密钥 */
static char sg_product_secret[IOT_PRODUCT_SECRET_LEN + 1] = "PRODUCT_SECRET";
/* 设备序列号 */
static char sg_device_sn[IOT_DEVICE_SN_LEN + 1] = "YOUR_DEVICE_SN";
/* 设备密钥 */
static char sg_device_secret[IOT_DEVICE_SECRET_LEN + 1] = "DEVICE_SECRET";
#endif
void *HAL_MutexCreate(void)
{
return (void *)1;
}
void HAL_MutexDestroy(_IN_ void *mutex)
{
return;
}
void HAL_MutexLock(_IN_ void *mutex)
{
return;
}
void HAL_MutexUnlock(_IN_ void *mutex)
{
return;
}
void *HAL_Malloc(_IN_ uint32_t size)
{
return malloc(size);
}
void HAL_Free(_IN_ void *ptr)
{
free(ptr);
}
void HAL_Printf(_IN_ const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
fflush(stdout);
}
int HAL_Snprintf(_IN_ char *str, _IN_ const int len, _IN_ const char *fmt, ...) {
va_list args;
int rc;
va_start(args, fmt);
rc = vsnprintf(str, len, fmt, args);
va_end(args);
return rc;
}
int HAL_Vsnprintf(_OU_ char *str, _IN_ const int len, _IN_ const char *format, _IN_ va_list ap) {
return vsnprintf(str, len, format, ap);
}
void HAL_SleepMs(uint32_t ms)
{
HAL_Delay(ms);
}
void *HAL_FileOpen(char *file_path){
return NULL;
}
int HAL_FileWrite(void *dest, uint32_t offset, void *src, uint32_t size){
return 0;
}
void HAL_FileClose(void *fp){
;
}
IoT_Error_t HAL_GetProductSN(_OU_ char productSN[IOT_PRODUCT_SN_LEN + 1]) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(sg_product_sn);
memset(productSN, 0x0, IOT_PRODUCT_SN_LEN + 1);
strncpy(productSN, sg_product_sn, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_GetProductSN is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_GetProductSecret(_OU_ char productSecret[IOT_PRODUCT_SECRET_LEN + 1]) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(sg_product_secret);
memset(productSecret, 0x0, IOT_PRODUCT_SECRET_LEN + 1);
strncpy(productSecret, sg_product_secret, len);
return SUCCESS_RET;
#else
Log_e("HAL_GetProductSecret is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_GetDeviceSN(_OU_ char deviceSN[IOT_DEVICE_SN_LEN + 1]) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(sg_device_sn);
memset(deviceSN, 0x0, IOT_DEVICE_SN_LEN + 1);
strncpy(deviceSN, sg_device_sn, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_GetDeviceSN is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_GetDeviceSecret(_OU_ char deviceSecret[IOT_DEVICE_SECRET_LEN + 1]) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(sg_device_secret);
memset(deviceSecret, 0x0, IOT_DEVICE_SECRET_LEN + 1);
strncpy(deviceSecret, sg_device_secret, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_GetDeviceSecret is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_SetProductSN(_IN_ const char *pProductSN) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(pProductSN);
if (len > IOT_PRODUCT_SN_LEN) {
return FAILURE_RET;
}
memset(sg_product_sn, 0x0, IOT_PRODUCT_SN_LEN + 1);
strncpy(sg_product_sn, pProductSN, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_SetProductSN is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_SetProductSecret(_IN_ const char *pProductSecret) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(pProductSecret);
if (len > IOT_PRODUCT_SECRET_LEN) {
return FAILURE_RET;
}
memset(sg_product_secret, 0x0, IOT_PRODUCT_SECRET_LEN + 1);
strncpy(sg_product_secret, pProductSecret, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_SetProductSecret is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_SetDeviceSN(_IN_ const char *pDeviceSN) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(pDeviceSN);
if (len > IOT_DEVICE_SN_LEN) {
return FAILURE_RET;
}
memset(sg_device_sn, 0x0, IOT_DEVICE_SN_LEN + 1);
strncpy(sg_device_sn, pDeviceSN, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_SetDeviceSN is not implement");
return FAILURE_RET;
#endif
}
IoT_Error_t HAL_SetDeviceSecret(_IN_ const char *pDeviceSecret) {
#ifdef DEBUG_DEV_INFO_USED
int len = strlen(pDeviceSecret);
if (len > IOT_DEVICE_SECRET_LEN) {
return FAILURE_RET;
}
memset(sg_device_secret, 0x0, IOT_DEVICE_SECRET_LEN + 1);
strncpy(sg_device_secret, pDeviceSecret, len);
return SUCCESS_RET;
#else
HAL_Printf("HAL_SetDeviceSecret is not implement");
return FAILURE_RET;
#endif
}