1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
/*
* Copyright (c) 2009-2011, Salvatore Sanfilippo <antirez at gmail dot com>
*
* SPDX-FileCopyrightText: 2024 Hiredict Contributors
* SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: LGPL-3.0-or-later
*
*/
#ifndef __HIREDICT_REDICTMODULEAPI_H__
#define __HIREDICT_REDICTMODULEAPI_H__
#include "redictmodule.h"
#include "../async.h"
#include "../hiredict.h"
#include <sys/types.h>
typedef struct redictModuleEvents {
redictAsyncContext *context;
RedictModuleCtx *module_ctx;
int fd;
int reading, writing;
int timer_active;
RedictModuleTimerID timer_id;
} redictModuleEvents;
static inline void redictModuleReadEvent(int fd, void *privdata, int mask) {
(void) fd;
(void) mask;
redictModuleEvents *e = (redictModuleEvents*)privdata;
redictAsyncHandleRead(e->context);
}
static inline void redictModuleWriteEvent(int fd, void *privdata, int mask) {
(void) fd;
(void) mask;
redictModuleEvents *e = (redictModuleEvents*)privdata;
redictAsyncHandleWrite(e->context);
}
static inline void redictModuleAddRead(void *privdata) {
redictModuleEvents *e = (redictModuleEvents*)privdata;
if (!e->reading) {
e->reading = 1;
RedictModule_EventLoopAdd(e->fd, REDICTMODULE_EVENTLOOP_READABLE, redictModuleReadEvent, e);
}
}
static inline void redictModuleDelRead(void *privdata) {
redictModuleEvents *e = (redictModuleEvents*)privdata;
if (e->reading) {
e->reading = 0;
RedictModule_EventLoopDel(e->fd, REDICTMODULE_EVENTLOOP_READABLE);
}
}
static inline void redictModuleAddWrite(void *privdata) {
redictModuleEvents *e = (redictModuleEvents*)privdata;
if (!e->writing) {
e->writing = 1;
RedictModule_EventLoopAdd(e->fd, REDICTMODULE_EVENTLOOP_WRITABLE, redictModuleWriteEvent, e);
}
}
static inline void redictModuleDelWrite(void *privdata) {
redictModuleEvents *e = (redictModuleEvents*)privdata;
if (e->writing) {
e->writing = 0;
RedictModule_EventLoopDel(e->fd, REDICTMODULE_EVENTLOOP_WRITABLE);
}
}
static inline void redictModuleStopTimer(void *privdata) {
redictModuleEvents *e = (redictModuleEvents*)privdata;
if (e->timer_active) {
RedictModule_StopTimer(e->module_ctx, e->timer_id, NULL);
}
e->timer_active = 0;
}
static inline void redictModuleCleanup(void *privdata) {
redictModuleEvents *e = (redictModuleEvents*)privdata;
redictModuleDelRead(privdata);
redictModuleDelWrite(privdata);
redictModuleStopTimer(privdata);
hi_free(e);
}
static inline void redictModuleTimeout(RedictModuleCtx *ctx, void *privdata) {
(void) ctx;
redictModuleEvents *e = (redictModuleEvents*)privdata;
e->timer_active = 0;
redictAsyncHandleTimeout(e->context);
}
static inline void redictModuleSetTimeout(void *privdata, struct timeval tv) {
redictModuleEvents* e = (redictModuleEvents*)privdata;
redictModuleStopTimer(privdata);
mstime_t millis = tv.tv_sec * 1000 + tv.tv_usec / 1000.0;
e->timer_id = RedictModule_CreateTimer(e->module_ctx, millis, redictModuleTimeout, e);
e->timer_active = 1;
}
/* Check if Redict is compatible with the adapter. */
static inline int redictModuleCompatibilityCheck(void) {
if (!RedictModule_EventLoopAdd ||
!RedictModule_EventLoopDel ||
!RedictModule_CreateTimer ||
!RedictModule_StopTimer) {
return REDICT_ERR;
}
return REDICT_OK;
}
static inline int redictModuleAttach(redictAsyncContext *ac, RedictModuleCtx *module_ctx) {
redictContext *c = &(ac->c);
redictModuleEvents *e;
/* Nothing should be attached when something is already attached */
if (ac->ev.data != NULL)
return REDICT_ERR;
/* Create container for context and r/w events */
e = (redictModuleEvents*)hi_malloc(sizeof(*e));
if (e == NULL)
return REDICT_ERR;
e->context = ac;
e->module_ctx = module_ctx;
e->fd = c->fd;
e->reading = e->writing = 0;
e->timer_active = 0;
/* Register functions to start/stop listening for events */
ac->ev.addRead = redictModuleAddRead;
ac->ev.delRead = redictModuleDelRead;
ac->ev.addWrite = redictModuleAddWrite;
ac->ev.delWrite = redictModuleDelWrite;
ac->ev.cleanup = redictModuleCleanup;
ac->ev.scheduleTimer = redictModuleSetTimeout;
ac->ev.data = e;
return REDICT_OK;
}
#endif
|