EC600U_esp32_iap_uart/LinkSDK/components/dynreg/aiot_dynreg_api.h

314 lines
8.3 KiB
C
Raw Permalink Normal View History

2024-02-05 17:39:56 +08:00
/**
* @file aiot_dynreg_api.h
* @brief dynreg模块头文件,
*
* @copyright Copyright (C) 2015-2020 Alibaba Group Holding Limited
*
*/
#ifndef __AIOT_DYNREG_API_H__
#define __AIOT_DYNREG_API_H__
#if defined(__cplusplus)
extern "C" {
#endif
#include <stdint.h>
/**
* @brief -0x0600~-0x06FFSDK在dynreg模块内的状态码
*/
#define STATE_DYNREG_BASE (-0x0600)
/**
* @brief @ref aiot_dynreg_deinit , API执行结束的超过设定的超时时间, MQTT实例销毁失败
*/
#define STATE_DYNREG_DEINIT_TIMEOUT (-0x0601)
/**
* @brief @ref aiot_dynreg_send_request dynreg请求
*/
#define STATE_DYNREG_NEED_SEND_REQUEST (-0x0602)
/**
* @brief dynreg模块返回了错误的http status code
*/
#define STATE_DYNREG_INVALID_STATUS_CODE (-0x0603)
/**
* @brief device secret
*/
#define STATE_DYNREG_INVALID_DEVICE_SECRET (-0x0604)
/**
* @brief dynreg模块收到从网络上来的报文时,
*/
typedef enum {
/**
* @brief dynreg模块返回的http status code
*/
AIOT_DYNREGRECV_STATUS_CODE,
/**
* @brief dynreg模块返回的设备信息
*/
AIOT_DYNREGRECV_DEVICE_INFO,
} aiot_dynreg_recv_type_t;
/**
* @brief dynreg模块收到从网络上来的报文时,
*/
typedef struct {
/**
* @brief , @ref aiot_dynreg_recv_type_t
*/
aiot_dynreg_recv_type_t type;
union {
/**
* @brief dynreg模块返回的http status code
*/
struct {
uint32_t code;
} status_code;
/**
* @brief dynreg模块返回的设备信息
*/
struct {
char *device_secret;
} device_info;
} data;
} aiot_dynreg_recv_t;
/**
* @brief dynreg模块收到从网络上来的报文时,
*
* @param[in] handle dynreg会话句柄
* @param[in] packet dynreg消息结构体, dynreg报文内容
* @param[in] userdata
*
* @return void
*/
typedef void (* aiot_dynreg_recv_handler_t)(void *handle,
const aiot_dynreg_recv_t *packet, void *userdata);
/**
* @brief @ref aiot_dynreg_setopt option参数可选值.
*
* @details , @ref aiot_dynreg_setopt , data参数的数据类型
*
* 1. data的数据类型是char *, @ref AIOT_DYNREGOPT_HOST :
*
* char *host = "xxx";
* aiot_dynreg_setopt(dynreg_handle, AIOT_DYNREGOPT_HOST, host);
*
* 2. data的数据类型是其他数据类型时, @ref AIOT_DYNREGOPT_PORT :
*
* uint16_t port = 443;
* aiot_mqtt_setopt(dynreg_handle, AIOT_DYNREGOPT_PORT, (void *)&port);
*/
typedef enum {
/**
* @brief http动态注册 , 使
*
* @details
*
* @ref aiot_sysdep_network_cred_t
*
* @ref aiot_sysdep_network_cred_t option配置为@ref AIOT_SYSDEP_NETWORK_CRED_SVRCERT_CA , tls方式建联
*
* : (aiot_sysdep_network_cred_t *)
*/
AIOT_DYNREGOPT_NETWORK_CRED,
/**
* @brief http动态注册 ip地址
*
* @details
*
* http动态注册 :
*
* | | |
* |-------------------------------------------------|---------|---------
* | iot-auth.cn-shanghai.aliyuncs.com | | 443
* | iot-auth.ap-southeast-1.aliyuncs.com | | 443
*
* : (char *)
*/
AIOT_DYNREGOPT_HOST,
/**
* @brief http动态注册
*
* @details
*
* http动态注册 :
*
* 使tls方式建联, 443
*
* : (uint16_t *)
*/
AIOT_DYNREGOPT_PORT,
/**
* @brief quectel EC100Y平台适配数据通道
*
* @details
*
*
* : (int)
*/
AIOT_DYNREGOPT_PROFILE_IDX,
/**
* @brief productKey, <a href="http://iot.console.aliyun.com/"></a>
*
* @details
*
* : (char *)
*/
AIOT_DYNREGOPT_PRODUCT_KEY,
/**
* @brief productSecret, <a href="http://iot.console.aliyun.com/"></a>
*
* @details
*
* : (char *)
*/
AIOT_DYNREGOPT_PRODUCT_SECRET,
/**
* @brief deviceName, <a href="http://iot.console.aliyun.com/"></a>
*
* @details
*
* : (char *)
*/
AIOT_DYNREGOPT_DEVICE_NAME,
AIOT_DYNREGOPT_CONNECT_TIMEOUT_MS,
/**
* @brief dynreg会话发送消息时可消费的最长时间间隔
*
* @details
*
* : (uint32_t) : (5 * 1000) ms
*/
AIOT_DYNREGOPT_SEND_TIMEOUT_MS,
/**
* @brief dynreg会话接收消息时可消费的最长时间间隔
*
* @details
*
* : (uint32_t) : (5 * 1000) ms
*/
AIOT_DYNREGOPT_RECV_TIMEOUT_MS,
/**
* @brief , SDK收到网络报文的时候被调用,
*
* @details
*
* : (aiot_dynreg_http_recv_handler_t)
*/
AIOT_DYNREGOPT_RECV_HANDLER,
/**
* @brief SDK暂存的上下文
*
* @details
*
* AIOT_DYNREGOPT_RECV_HANDLER AIOT_DYNREGOPT_EVENT_HANDLER , SDK传给用户
*
* : (void *)
*/
AIOT_DYNREGOPT_USERDATA,
/**
* @brief dynreg模块接收消息的超时时间
*
* @details
*
* : (uint32_t) : (5 * 1000) ms
*/
AIOT_DYNREGOPT_TIMEOUT_MS,
/**
* @brief dynreg实例时, api执行完毕的时间
*
* @details
*
* @ref aiot_dynreg_deinit MQTT实例时, aiot_dynreg_xxx API, API会返回@ref STATE_USER_INPUT_EXEC_DISABLED
*
* , aiot_dynreg_xxx API
*
* : (uint32_t *) : (2 * 1000) ms
*/
AIOT_DYNREGOPT_DEINIT_TIMEOUT_MS,
AIOT_DYNREGOPT_MAX
} aiot_dynreg_option_t;
/**
* @brief dynreg会话实例,
*
* @return void *
* @retval NULL dynreg实例的句柄
* @retval NULL ,
*
*/
void *aiot_dynreg_init(void);
/**
* @brief dynreg会话
*
* @param[in] handle dynreg会话句柄
* @param[in] option , @ref aiot_dynreg_option_t
* @param[in] data , @ref aiot_dynreg_option_t
*
* @return int32_t
* @retval <STATE_SUCCESS
* @retval >=STATE_SUCCESS
*
*/
int32_t aiot_dynreg_setopt(void *handle, aiot_dynreg_option_t option, void *data);
/**
* @brief dynreg会话,
*
* @param[in] handle dynreg会话句柄的指针
*
* @return int32_t
* @retval <STATE_SUCCESS
* @retval >=STATE_SUCCESS
*
*/
int32_t aiot_dynreg_deinit(void **handle);
/**
* @brief dynreg服务器发送dynreg消息请求
*
* @param handle dynreg会话句柄
*
* @return int32_t
* @retval <STATE_SUCCESS
* @retval >=STATE_SUCCESS
*/
int32_t aiot_dynreg_send_request(void *handle);
/**
* @brief dynreg消息
*
* @param handle dynreg会话句柄
*
* @return int32_t
* @retval <STATE_SUCCESS
* @retval >=STATE_SUCCESS
*/
int32_t aiot_dynreg_recv(void *handle);
#if defined(__cplusplus)
}
#endif
#endif /* __AIOT_DYNREG_API_H__ */