2018-02-17 11:42:41 +07:00
|
|
|
/*
|
|
|
|
|
* This file is subject to the terms and conditions defined in
|
|
|
|
|
* file 'LICENSE', which is part of this source code package.
|
|
|
|
|
* Tuan PM <tuanpm at live dot com>
|
|
|
|
|
*/
|
2018-02-16 02:40:16 +07:00
|
|
|
#ifndef _MQTT_OUTOBX_H_
|
|
|
|
|
#define _MQTT_OUTOBX_H_
|
|
|
|
|
#include "platform.h"
|
2021-02-19 14:02:31 +00:00
|
|
|
#include "esp_err.h"
|
2018-02-16 02:40:16 +07:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-08-15 17:24:46 +02:00
|
|
|
struct outbox_item;
|
2018-02-16 02:40:16 +07:00
|
|
|
|
2019-05-06 13:45:33 +02:00
|
|
|
typedef struct outbox_list_t *outbox_handle_t;
|
|
|
|
|
typedef struct outbox_item *outbox_item_handle_t;
|
|
|
|
|
typedef struct outbox_message *outbox_message_handle_t;
|
2020-01-09 09:45:16 +01:00
|
|
|
typedef long long outbox_tick_t;
|
2018-10-25 16:38:25 +02:00
|
|
|
|
|
|
|
|
typedef struct outbox_message {
|
2019-05-06 13:45:33 +02:00
|
|
|
uint8_t *data;
|
|
|
|
|
int len;
|
|
|
|
|
int msg_id;
|
|
|
|
|
int msg_qos;
|
|
|
|
|
int msg_type;
|
|
|
|
|
uint8_t *remaining_data;
|
|
|
|
|
int remaining_len;
|
2018-10-25 16:38:25 +02:00
|
|
|
} outbox_message_t;
|
2018-02-16 02:40:16 +07:00
|
|
|
|
2018-12-20 21:46:55 +01:00
|
|
|
typedef enum pending_state {
|
|
|
|
|
QUEUED,
|
|
|
|
|
TRANSMITTED,
|
2019-09-27 19:58:09 +08:00
|
|
|
ACKNOWLEDGED,
|
2018-12-20 21:46:55 +01:00
|
|
|
CONFIRMED
|
|
|
|
|
} pending_state_t;
|
|
|
|
|
|
2019-03-19 15:06:20 +08:00
|
|
|
outbox_handle_t outbox_init(void);
|
2020-01-09 09:45:16 +01:00
|
|
|
outbox_item_handle_t outbox_enqueue(outbox_handle_t outbox, outbox_message_handle_t message, outbox_tick_t tick);
|
|
|
|
|
outbox_item_handle_t outbox_dequeue(outbox_handle_t outbox, pending_state_t pending, outbox_tick_t *tick);
|
2018-02-16 02:40:16 +07:00
|
|
|
outbox_item_handle_t outbox_get(outbox_handle_t outbox, int msg_id);
|
2019-05-06 13:45:33 +02:00
|
|
|
uint8_t *outbox_item_get_data(outbox_item_handle_t item, size_t *len, uint16_t *msg_id, int *msg_type, int *qos);
|
2018-02-16 02:40:16 +07:00
|
|
|
esp_err_t outbox_delete(outbox_handle_t outbox, int msg_id, int msg_type);
|
|
|
|
|
esp_err_t outbox_delete_msgid(outbox_handle_t outbox, int msg_id);
|
|
|
|
|
esp_err_t outbox_delete_msgtype(outbox_handle_t outbox, int msg_type);
|
2020-12-08 20:57:00 +01:00
|
|
|
esp_err_t outbox_delete_item(outbox_handle_t outbox, outbox_item_handle_t item);
|
2020-01-09 09:45:16 +01:00
|
|
|
int outbox_delete_expired(outbox_handle_t outbox, outbox_tick_t current_tick, outbox_tick_t timeout);
|
2020-12-06 15:23:08 +01:00
|
|
|
/**
|
|
|
|
|
* @brief Deletes single expired message returning it's message id
|
|
|
|
|
*
|
|
|
|
|
* @return msg id of the deleted message, -1 if no expired message in the outbox
|
|
|
|
|
*/
|
|
|
|
|
int outbox_delete_single_expired(outbox_handle_t outbox, outbox_tick_t current_tick, outbox_tick_t timeout);
|
2018-02-16 02:40:16 +07:00
|
|
|
|
2018-12-20 21:46:55 +01:00
|
|
|
esp_err_t outbox_set_pending(outbox_handle_t outbox, int msg_id, pending_state_t pending);
|
2020-01-09 09:45:16 +01:00
|
|
|
esp_err_t outbox_set_tick(outbox_handle_t outbox, int msg_id, outbox_tick_t tick);
|
2018-02-16 02:40:16 +07:00
|
|
|
int outbox_get_size(outbox_handle_t outbox);
|
|
|
|
|
esp_err_t outbox_cleanup(outbox_handle_t outbox, int max_size);
|
|
|
|
|
void outbox_destroy(outbox_handle_t outbox);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|