diff options
Diffstat (limited to 'src/plugins/push-notification/push-notification-txn-mbox.c')
-rw-r--r-- | src/plugins/push-notification/push-notification-txn-mbox.c | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/src/plugins/push-notification/push-notification-txn-mbox.c b/src/plugins/push-notification/push-notification-txn-mbox.c new file mode 100644 index 0000000..4401819 --- /dev/null +++ b/src/plugins/push-notification/push-notification-txn-mbox.c @@ -0,0 +1,90 @@ +/* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */ + +#include "lib.h" +#include "hash.h" +#include "mail-storage-private.h" + +#include "push-notification-drivers.h" +#include "push-notification-events.h" +#include "push-notification-txn-mbox.h" + +struct push_notification_txn_mbox * +push_notification_txn_mbox_create(struct push_notification_txn *txn, + struct mailbox *box) +{ + if (txn->mbox_txn == NULL) { + txn->mbox_txn = p_new(txn->pool, + struct push_notification_txn_mbox, 1); + txn->mbox_txn->mailbox = mailbox_get_vname(box); + } + + return txn->mbox_txn; +} + +void push_notification_txn_mbox_end(struct push_notification_txn *ptxn) +{ + struct push_notification_driver_txn **dtxn; + + if (ptxn->mbox_txn != NULL) { + array_foreach_modifiable(&ptxn->drivers, dtxn) { + if ((*dtxn)->duser->driver->v.process_mbox != NULL) { + (*dtxn)->duser->driver->v.process_mbox( + *dtxn, ptxn->mbox_txn); + } + } + + push_notification_txn_mbox_deinit_eventdata(ptxn->mbox_txn); + } +} + +void * +push_notification_txn_mbox_get_eventdata( + struct push_notification_txn_mbox *mbox, const char *event_name) +{ + struct push_notification_txn_event **mevent; + + if (array_is_created(&mbox->eventdata)) { + array_foreach_modifiable(&mbox->eventdata, mevent) { + if (strcmp((*mevent)->event->event->name, + event_name) == 0) { + return (*mevent)->data; + } + } + } + + return NULL; +} + +void push_notification_txn_mbox_set_eventdata( + struct push_notification_txn *txn, + struct push_notification_txn_mbox *mbox, + struct push_notification_event_config *event, void *data) +{ + struct push_notification_txn_event *mevent; + + if (!array_is_created(&mbox->eventdata)) { + p_array_init(&mbox->eventdata, txn->pool, 4); + } + + mevent = p_new(txn->pool, struct push_notification_txn_event, 1); + mevent->data = data; + mevent->event = event; + + array_push_back(&mbox->eventdata, &mevent); +} + +void push_notification_txn_mbox_deinit_eventdata( + struct push_notification_txn_mbox *mbox) +{ + struct push_notification_txn_event **mevent; + + if (array_is_created(&mbox->eventdata)) { + array_foreach_modifiable(&mbox->eventdata, mevent) { + if (((*mevent)->data != NULL) && + ((*mevent)->event->event->mbox.free_mbox != NULL)) { + (*mevent)->event->event->mbox.free_mbox( + *mevent); + } + } + } +} |