source: lib/events_libevent.c @ 098a75b

Last change on this file since 098a75b was 5ebff60, checked in by dequis <dx@…>, at 2015-02-20T22:50:54Z

Reindent everything to K&R style with tabs

Used uncrustify, with the configuration file in ./doc/uncrustify.cfg

Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.

  • Property mode set to 100644
File size: 7.6 KB
Line 
1/********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2006 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/*
8 * Event handling (using libevent)
9 */
10
11/*
12  This program is free software; you can redistribute it and/or modify
13  it under the terms of the GNU General Public License as published by
14  the Free Software Foundation; either version 2 of the License, or
15  (at your option) any later version.
16
17  This program is distributed in the hope that it will be useful,
18  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  GNU General Public License for more details.
21
22  You should have received a copy of the GNU General Public License with
23  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
24  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
25  Fifth Floor, Boston, MA  02110-1301  USA
26*/
27
28#define BITLBEE_CORE
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <unistd.h>
33#include <sys/types.h>
34#include <sys/time.h>
35#include <event.h>
36#include "proxy.h"
37
38static void b_main_restart();
39static guint id_next = 1; /* Next ID to be allocated to an event handler. */
40static guint id_cur = 0; /* Event ID that we're currently handling. */
41static guint id_dead; /* Set to 1 if b_event_remove removes id_cur. */
42static GHashTable *id_hash;
43static int quitting = 0; /* Prepare to quit, stop handling events. */
44
45/* Since libevent doesn't handle two event handlers for one fd-condition
46   very well (which happens sometimes when BitlBee changes event handlers
47   for a combination), let's buid some indexes so we can delete them here
48   already, just in time. */
49static GHashTable *read_hash;
50static GHashTable *write_hash;
51
52struct event_base *leh;
53struct event_base *old_leh;
54
55struct b_event_data {
56        guint id;
57        struct event evinfo;
58        gint timeout;
59        b_event_handler function;
60        void *data;
61        guint flags;
62};
63
64void b_main_init()
65{
66        if (leh != NULL) {
67                /* Clean up the hash tables? */
68
69                b_main_restart();
70                old_leh = leh;
71        }
72
73        leh = event_init();
74
75        id_hash = g_hash_table_new(g_int_hash, g_int_equal);
76        read_hash = g_hash_table_new(g_int_hash, g_int_equal);
77        write_hash = g_hash_table_new(g_int_hash, g_int_equal);
78}
79
80void b_main_run()
81{
82        /* This while loop is necessary to exit the event loop and start a
83           different one (necessary for ForkDaemon mode). */
84        while (event_base_dispatch(leh) == 0 && !quitting) {
85                if (old_leh != NULL) {
86                        /* For some reason this just isn't allowed...
87                           Possibly a bug in older versions, will see later.
88                        event_base_free( old_leh ); */
89                        old_leh = NULL;
90                }
91
92                event_debug("New event loop.\n");
93        }
94}
95
96static void b_main_restart()
97{
98        struct timeval tv;
99
100        memset(&tv, 0, sizeof(struct timeval));
101        event_base_loopexit(leh, &tv);
102
103        event_debug("b_main_restart()\n");
104}
105
106void b_main_quit()
107{
108        /* Tell b_main_run() that it shouldn't restart the loop. Also,
109           libevent sometimes generates events before really quitting,
110           we want to stop them. */
111        quitting = 1;
112
113        b_main_restart();
114}
115
116static void b_event_passthrough(int fd, short event, void *data)
117{
118        struct b_event_data *b_ev = data;
119        b_input_condition cond = 0;
120        gboolean st;
121
122        if (fd >= 0) {
123                if (event & EV_READ) {
124                        cond |= B_EV_IO_READ;
125                }
126                if (event & EV_WRITE) {
127                        cond |= B_EV_IO_WRITE;
128                }
129        }
130
131        event_debug("b_event_passthrough( %d, %d, 0x%x ) (%d)\n", fd, event, (int) data, b_ev->id);
132
133        /* Since the called function might cancel this handler already
134           (which free()s b_ev), we have to remember the ID here. */
135        id_cur = b_ev->id;
136        id_dead = 0;
137
138        if (quitting) {
139                b_event_remove(id_cur);
140                return;
141        }
142
143        st = b_ev->function(b_ev->data, fd, cond);
144        if (id_dead) {
145                /* This event was killed already, don't touch it! */
146                return;
147        } else if (!st && !(b_ev->flags & B_EV_FLAG_FORCE_REPEAT)) {
148                event_debug("Handler returned FALSE: ");
149                b_event_remove(id_cur);
150        } else if (fd == -1) {
151                /* fd == -1 means it was a timer. These can't be auto-repeated
152                   so it has to be recreated every time. */
153                struct timeval tv;
154
155                tv.tv_sec = b_ev->timeout / 1000;
156                tv.tv_usec = (b_ev->timeout % 1000) * 1000;
157
158                evtimer_add(&b_ev->evinfo, &tv);
159        }
160}
161
162gint b_input_add(gint fd, b_input_condition condition, b_event_handler function, gpointer data)
163{
164        struct b_event_data *b_ev;
165
166        event_debug("b_input_add( %d, %d, 0x%x, 0x%x ) ", fd, condition, function, data);
167
168        if ((condition & B_EV_IO_READ  && (b_ev = g_hash_table_lookup(read_hash,  &fd))) ||
169            (condition & B_EV_IO_WRITE && (b_ev = g_hash_table_lookup(write_hash, &fd)))) {
170                /* We'll stick with this libevent entry, but give it a new BitlBee id. */
171                g_hash_table_remove(id_hash, &b_ev->id);
172
173                event_debug("(replacing old handler (id = %d)) = %d\n", b_ev->id, id_next);
174
175                b_ev->id = id_next++;
176                b_ev->function = function;
177                b_ev->data = data;
178        } else {
179                GIOCondition out_cond;
180
181                event_debug("(new) = %d\n", id_next);
182
183                b_ev = g_new0(struct b_event_data, 1);
184                b_ev->id = id_next++;
185                b_ev->function = function;
186                b_ev->data = data;
187
188                out_cond = EV_PERSIST;
189                if (condition & B_EV_IO_READ) {
190                        out_cond |= EV_READ;
191                }
192                if (condition & B_EV_IO_WRITE) {
193                        out_cond |= EV_WRITE;
194                }
195
196                event_set(&b_ev->evinfo, fd, out_cond, b_event_passthrough, b_ev);
197                event_add(&b_ev->evinfo, NULL);
198
199                if (out_cond & EV_READ) {
200                        g_hash_table_insert(read_hash, &b_ev->evinfo.ev_fd, b_ev);
201                }
202                if (out_cond & EV_WRITE) {
203                        g_hash_table_insert(write_hash, &b_ev->evinfo.ev_fd, b_ev);
204                }
205        }
206
207        b_ev->flags = condition;
208        g_hash_table_insert(id_hash, &b_ev->id, b_ev);
209        return b_ev->id;
210}
211
212/* TODO: Persistence for timers! */
213gint b_timeout_add(gint timeout, b_event_handler function, gpointer data)
214{
215        struct b_event_data *b_ev = g_new0(struct b_event_data, 1);
216        struct timeval tv;
217
218        b_ev->id = id_next++;
219        b_ev->timeout = timeout;
220        b_ev->function = function;
221        b_ev->data = data;
222
223        tv.tv_sec = timeout / 1000;
224        tv.tv_usec = (timeout % 1000) * 1000;
225
226        evtimer_set(&b_ev->evinfo, b_event_passthrough, b_ev);
227        evtimer_add(&b_ev->evinfo, &tv);
228
229        event_debug("b_timeout_add( %d, 0x%x, 0x%x ) = %d\n", timeout, function, data, b_ev->id);
230
231        g_hash_table_insert(id_hash, &b_ev->id, b_ev);
232
233        return b_ev->id;
234}
235
236void b_event_remove(gint id)
237{
238        struct b_event_data *b_ev = g_hash_table_lookup(id_hash, &id);
239
240        event_debug("b_event_remove( %d )\n", id);
241        if (b_ev) {
242                if (id == id_cur) {
243                        id_dead = TRUE;
244                }
245
246                g_hash_table_remove(id_hash, &b_ev->id);
247                if (b_ev->evinfo.ev_fd >= 0) {
248                        if (b_ev->evinfo.ev_events & EV_READ) {
249                                g_hash_table_remove(read_hash, &b_ev->evinfo.ev_fd);
250                        }
251                        if (b_ev->evinfo.ev_events & EV_WRITE) {
252                                g_hash_table_remove(write_hash, &b_ev->evinfo.ev_fd);
253                        }
254                }
255
256                event_del(&b_ev->evinfo);
257                g_free(b_ev);
258        } else {
259                event_debug("Already removed?\n");
260        }
261}
262
263void closesocket(int fd)
264{
265        struct b_event_data *b_ev;
266
267        /* Since epoll() (the main reason we use libevent) automatically removes sockets from
268           the epoll() list when a socket gets closed and some modules have a habit of
269           closing sockets before removing event handlers, our and libevent's administration
270           get a little bit messed up. So this little function will remove the handlers
271           properly before closing a socket. */
272
273        if ((b_ev = g_hash_table_lookup(read_hash, &fd))) {
274                event_debug("Warning: fd %d still had a read event handler when shutting down.\n", fd);
275                b_event_remove(b_ev->id);
276        }
277        if ((b_ev = g_hash_table_lookup(write_hash, &fd))) {
278                event_debug("Warning: fd %d still had a write event handler when shutting down.\n", fd);
279                b_event_remove(b_ev->id);
280        }
281
282        close(fd);
283}
Note: See TracBrowser for help on using the repository browser.