/*
|
Copyright (c) 2019 Roger Light <roger@atchoo.org>
|
|
All rights reserved. This program and the accompanying materials
|
are made available under the terms of the Eclipse Public License v1.0
|
and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
The Eclipse Public License is available at
|
http://www.eclipse.org/legal/epl-v10.html
|
and the Eclipse Distribution License is available at
|
http://www.eclipse.org/org/documents/edl-v10.php.
|
|
Contributors:
|
Roger Light - initial implementation and documentation.
|
*/
|
|
#include "config.h"
|
|
#include <math.h>
|
#include <stdio.h>
|
#include <utlist.h>
|
|
#include "mosquitto_broker_internal.h"
|
#include "memory_mosq.h"
|
#include "time_mosq.h"
|
|
static struct will_delay_list *delay_list = NULL;
|
static time_t last_check = 0;
|
|
|
static int will_delay__cmp(struct will_delay_list *i1, struct will_delay_list *i2)
|
{
|
return i1->context->will_delay_interval - i2->context->will_delay_interval;
|
}
|
|
|
int will_delay__add(struct mosquitto *context)
|
{
|
struct will_delay_list *item;
|
|
item = mosquitto__calloc(1, sizeof(struct will_delay_list));
|
if(!item) return MOSQ_ERR_NOMEM;
|
|
item->context = context;
|
context->will_delay_entry = item;
|
item->context->will_delay_time = time(NULL) + item->context->will_delay_interval;
|
|
DL_INSERT_INORDER(delay_list, item, will_delay__cmp);
|
|
return MOSQ_ERR_SUCCESS;
|
}
|
|
|
/* Call on broker shutdown only */
|
void will_delay__send_all(struct mosquitto_db *db)
|
{
|
struct will_delay_list *item, *tmp;
|
|
DL_FOREACH_SAFE(delay_list, item, tmp){
|
DL_DELETE(delay_list, item);
|
item->context->will_delay_interval = 0;
|
item->context->will_delay_entry = NULL;
|
context__send_will(db, item->context);
|
mosquitto__free(item);
|
}
|
|
}
|
|
void will_delay__check(struct mosquitto_db *db, time_t now)
|
{
|
struct will_delay_list *item, *tmp;
|
|
if(now <= last_check) return;
|
|
last_check = now;
|
|
DL_FOREACH_SAFE(delay_list, item, tmp){
|
if(item->context->will_delay_time < now){
|
DL_DELETE(delay_list, item);
|
item->context->will_delay_interval = 0;
|
item->context->will_delay_entry = NULL;
|
context__send_will(db, item->context);
|
if(item->context->session_expiry_interval == 0){
|
context__add_to_disused(db, item->context);
|
}
|
mosquitto__free(item);
|
}else{
|
return;
|
}
|
}
|
|
}
|
|
|
void will_delay__remove(struct mosquitto *mosq)
|
{
|
if(mosq->will_delay_entry != NULL){
|
DL_DELETE(delay_list, mosq->will_delay_entry);
|
mosq->will_delay_entry = NULL;
|
}
|
}
|