mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
214 lines
4.5 KiB
C
214 lines
4.5 KiB
C
#include <time.h>
|
|
|
|
#define WITH_BROKER
|
|
|
|
#include <logging_mosq.h>
|
|
#include <memory_mosq.h>
|
|
#include <mosquitto_broker_internal.h>
|
|
#include <net_mosq.h>
|
|
#include <send_mosq.h>
|
|
#include <time_mosq.h>
|
|
|
|
extern char *last_sub;
|
|
extern int last_qos;
|
|
extern uint32_t last_identifier;
|
|
extern struct mosquitto_db db;
|
|
|
|
struct mosquitto *context__init(mosq_sock_t sock)
|
|
{
|
|
struct mosquitto *m;
|
|
|
|
UNUSED(sock);
|
|
|
|
m = mosquitto__calloc(1, sizeof(struct mosquitto));
|
|
if(m){
|
|
m->msgs_in.inflight_maximum = 20;
|
|
m->msgs_out.inflight_maximum = 20;
|
|
m->msgs_in.inflight_quota = 20;
|
|
m->msgs_out.inflight_quota = 20;
|
|
}
|
|
return m;
|
|
}
|
|
|
|
void db__msg_store_free(struct mosquitto_msg_store *store)
|
|
{
|
|
int i;
|
|
|
|
mosquitto__free(store->source_id);
|
|
mosquitto__free(store->source_username);
|
|
if(store->dest_ids){
|
|
for(i=0; i<store->dest_id_count; i++){
|
|
mosquitto__free(store->dest_ids[i]);
|
|
}
|
|
mosquitto__free(store->dest_ids);
|
|
}
|
|
mosquitto__free(store->topic);
|
|
mosquitto_property_free_all(&store->properties);
|
|
mosquitto__free(store->payload);
|
|
mosquitto__free(store);
|
|
}
|
|
|
|
int db__message_store(const struct mosquitto *source, struct mosquitto_msg_store *stored, uint32_t message_expiry_interval, dbid_t store_id, enum mosquitto_msg_origin origin)
|
|
{
|
|
int rc = MOSQ_ERR_SUCCESS;
|
|
|
|
UNUSED(origin);
|
|
|
|
if(source && source->id){
|
|
stored->source_id = mosquitto__strdup(source->id);
|
|
}else{
|
|
stored->source_id = mosquitto__strdup("");
|
|
}
|
|
if(!stored->source_id){
|
|
rc = MOSQ_ERR_NOMEM;
|
|
goto error;
|
|
}
|
|
|
|
if(source && source->username){
|
|
stored->source_username = mosquitto__strdup(source->username);
|
|
if(!stored->source_username){
|
|
rc = MOSQ_ERR_NOMEM;
|
|
goto error;
|
|
}
|
|
}
|
|
if(source){
|
|
stored->source_listener = source->listener;
|
|
}
|
|
stored->mid = 0;
|
|
if(message_expiry_interval > 0){
|
|
stored->message_expiry_time = time(NULL) + message_expiry_interval;
|
|
}else{
|
|
stored->message_expiry_time = 0;
|
|
}
|
|
|
|
stored->dest_ids = NULL;
|
|
stored->dest_id_count = 0;
|
|
db.msg_store_count++;
|
|
db.msg_store_bytes += stored->payloadlen;
|
|
|
|
if(!store_id){
|
|
stored->db_id = ++db.last_db_id;
|
|
}else{
|
|
stored->db_id = store_id;
|
|
}
|
|
|
|
db.msg_store = stored;
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
error:
|
|
db__msg_store_free(stored);
|
|
return rc;
|
|
}
|
|
|
|
int log__printf(struct mosquitto *mosq, unsigned int priority, const char *fmt, ...)
|
|
{
|
|
UNUSED(mosq);
|
|
UNUSED(priority);
|
|
UNUSED(fmt);
|
|
|
|
return 0;
|
|
}
|
|
|
|
time_t mosquitto_time(void)
|
|
{
|
|
return 123;
|
|
}
|
|
|
|
int net__socket_close(struct mosquitto *mosq)
|
|
{
|
|
UNUSED(mosq);
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
int send__pingreq(struct mosquitto *mosq)
|
|
{
|
|
UNUSED(mosq);
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
int mosquitto_acl_check(struct mosquitto *context, const char *topic, uint32_t payloadlen, void* payload, uint8_t qos, bool retain, int access)
|
|
{
|
|
UNUSED(context);
|
|
UNUSED(topic);
|
|
UNUSED(payloadlen);
|
|
UNUSED(payload);
|
|
UNUSED(qos);
|
|
UNUSED(retain);
|
|
UNUSED(access);
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
int acl__find_acls(struct mosquitto *context)
|
|
{
|
|
UNUSED(context);
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
|
|
int sub__add(struct mosquitto *context, const char *sub, uint8_t qos, uint32_t identifier, int options)
|
|
{
|
|
UNUSED(context);
|
|
UNUSED(options);
|
|
|
|
last_sub = strdup(sub);
|
|
last_qos = qos;
|
|
last_identifier = identifier;
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
int db__message_insert(struct mosquitto *context, uint16_t mid, enum mosquitto_msg_direction dir, uint8_t qos, bool retain, struct mosquitto_msg_store *stored, mosquitto_property *properties, bool update)
|
|
{
|
|
UNUSED(context);
|
|
UNUSED(mid);
|
|
UNUSED(dir);
|
|
UNUSED(qos);
|
|
UNUSED(retain);
|
|
UNUSED(stored);
|
|
UNUSED(properties);
|
|
UNUSED(update);
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
void db__msg_store_ref_dec(struct mosquitto_msg_store **store)
|
|
{
|
|
UNUSED(store);
|
|
}
|
|
|
|
void db__msg_store_ref_inc(struct mosquitto_msg_store *store)
|
|
{
|
|
store->ref_count++;
|
|
}
|
|
|
|
void db__msg_add_to_inflight_stats(struct mosquitto_msg_data *msg_data, struct mosquitto_client_msg *msg)
|
|
{
|
|
UNUSED(msg_data);
|
|
UNUSED(msg);
|
|
}
|
|
|
|
void db__msg_add_to_queued_stats(struct mosquitto_msg_data *msg_data, struct mosquitto_client_msg *msg)
|
|
{
|
|
UNUSED(msg_data);
|
|
UNUSED(msg);
|
|
}
|
|
|
|
void context__add_to_by_id(struct mosquitto *context)
|
|
{
|
|
if(context->in_by_id == false){
|
|
context->in_by_id = true;
|
|
HASH_ADD_KEYPTR(hh_id, db.contexts_by_id, context->id, strlen(context->id), context);
|
|
}
|
|
}
|
|
|
|
int session_expiry__add_from_persistence(struct mosquitto *context, time_t expiry_time)
|
|
{
|
|
UNUSED(context);
|
|
UNUSED(expiry_time);
|
|
return 0;
|
|
}
|