/* Copyright (c) 2021 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 and Eclipse Distribution License v1.0 which accompany this distribution. The Eclipse Public License is available at https://www.eclipse.org/legal/epl-2.0/ and the Eclipse Distribution License is available at http://www.eclipse.org/org/documents/edl-v10.php. SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause Contributors: Roger Light - initial implementation and documentation. */ #include #include #include "mosquitto.h" #include "mosquitto_broker.h" #include "persist_sqlite.h" int persist_sqlite__retain_msg_set_cb(int event, void *event_data, void *userdata) { struct mosquitto_evt_persist_retain_msg *ed = event_data; struct mosquitto_sqlite *ms = userdata; int rc = MOSQ_ERR_UNKNOWN; UNUSED(event); if(sqlite3_bind_text(ms->retain_msg_set_stmt, 1, ed->topic, (int)strlen(ed->topic), SQLITE_STATIC) == SQLITE_OK && sqlite3_bind_int64(ms->retain_msg_set_stmt, 2, (int64_t)ed->store_id) == SQLITE_OK ){ ms->event_count++; rc = sqlite3_step(ms->retain_msg_set_stmt); if(rc == SQLITE_DONE){ rc = MOSQ_ERR_SUCCESS; }else{ rc = MOSQ_ERR_UNKNOWN; } } sqlite3_reset(ms->retain_msg_set_stmt); return rc; } int persist_sqlite__retain_msg_remove_cb(int event, void *event_data, void *userdata) { struct mosquitto_evt_persist_retain_msg *ed = event_data; struct mosquitto_sqlite *ms = userdata; int rc = 1; UNUSED(event); if(sqlite3_bind_text(ms->retain_msg_remove_stmt, 1, ed->topic, (int)strlen(ed->topic), SQLITE_STATIC) == SQLITE_OK){ ms->event_count++; rc = sqlite3_step(ms->retain_msg_remove_stmt); if(rc == SQLITE_DONE){ rc = MOSQ_ERR_SUCCESS; }else{ rc = MOSQ_ERR_UNKNOWN; } } sqlite3_reset(ms->retain_msg_remove_stmt); return rc; }