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
|
/*
* Copyright (C) 2014 Pietro Cerutti <gahr@gahr.ch>
*
* SPDX-FileCopyrightText: 2024 Hiredict Contributors
* SPDX-FileCopyrightText: 2024 Pietro Cerutti <gahr@gahr.ch>
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: LGPL-3.0-or-later
*
*/
#ifndef __HIREDICT_QT_H__
#define __HIREDICT_QT_H__
#include <QSocketNotifier>
#include "../async.h"
static void RedictQtAddRead(void *);
static void RedictQtDelRead(void *);
static void RedictQtAddWrite(void *);
static void RedictQtDelWrite(void *);
static void RedictQtCleanup(void *);
class RedictQtAdapter : public QObject {
Q_OBJECT
friend
void RedictQtAddRead(void * adapter) {
RedictQtAdapter * a = static_cast<RedictQtAdapter *>(adapter);
a->addRead();
}
friend
void RedictQtDelRead(void * adapter) {
RedictQtAdapter * a = static_cast<RedictQtAdapter *>(adapter);
a->delRead();
}
friend
void RedictQtAddWrite(void * adapter) {
RedictQtAdapter * a = static_cast<RedictQtAdapter *>(adapter);
a->addWrite();
}
friend
void RedictQtDelWrite(void * adapter) {
RedictQtAdapter * a = static_cast<RedictQtAdapter *>(adapter);
a->delWrite();
}
friend
void RedictQtCleanup(void * adapter) {
RedictQtAdapter * a = static_cast<RedictQtAdapter *>(adapter);
a->cleanup();
}
public:
RedictQtAdapter(QObject * parent = 0)
: QObject(parent), m_ctx(0), m_read(0), m_write(0) { }
~RedictQtAdapter() {
if (m_ctx != 0) {
m_ctx->ev.data = NULL;
}
}
int setContext(redictAsyncContext * ac) {
if (ac->ev.data != NULL) {
return REDICT_ERR;
}
m_ctx = ac;
m_ctx->ev.data = this;
m_ctx->ev.addRead = RedictQtAddRead;
m_ctx->ev.delRead = RedictQtDelRead;
m_ctx->ev.addWrite = RedictQtAddWrite;
m_ctx->ev.delWrite = RedictQtDelWrite;
m_ctx->ev.cleanup = RedictQtCleanup;
return REDICT_OK;
}
private:
void addRead() {
if (m_read) return;
m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0);
connect(m_read, SIGNAL(activated(int)), this, SLOT(read()));
}
void delRead() {
if (!m_read) return;
delete m_read;
m_read = 0;
}
void addWrite() {
if (m_write) return;
m_write = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Write, 0);
connect(m_write, SIGNAL(activated(int)), this, SLOT(write()));
}
void delWrite() {
if (!m_write) return;
delete m_write;
m_write = 0;
}
void cleanup() {
delRead();
delWrite();
}
private slots:
void read() { redictAsyncHandleRead(m_ctx); }
void write() { redictAsyncHandleWrite(m_ctx); }
private:
redictAsyncContext * m_ctx;
QSocketNotifier * m_read;
QSocketNotifier * m_write;
};
#endif /* !__HIREDICT_QT_H__ */
|