2008-04-16 20:01:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
|
2012-02-10 17:29:53 -05:00
|
|
|
* Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
|
2008-04-16 20:01:51 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2012-02-29 15:07:31 -05:00
|
|
|
#ifndef EVENT2_EVENT_STRUCT_H_INCLUDED_
|
|
|
|
#define EVENT2_EVENT_STRUCT_H_INCLUDED_
|
2008-04-16 20:01:51 +00:00
|
|
|
|
2011-07-04 23:02:11 -04:00
|
|
|
/** @file event2/event_struct.h
|
2008-04-16 20:01:51 +00:00
|
|
|
|
2011-07-04 23:02:11 -04:00
|
|
|
Structures used by event.h. Using these structures directly WILL harm
|
|
|
|
forward compatibility: be careful.
|
2008-04-16 20:01:51 +00:00
|
|
|
|
2011-07-04 23:02:11 -04:00
|
|
|
No field declared in this file should be used directly in user code. Except
|
|
|
|
for historical reasons, these fields would not be exposed at all.
|
2008-04-16 20:01:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-07-07 16:45:03 -04:00
|
|
|
#include <event2/event-config.h>
|
2012-02-29 15:07:31 -05:00
|
|
|
#ifdef EVENT__HAVE_SYS_TYPES_H
|
2008-04-16 20:01:51 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
2012-02-29 15:07:31 -05:00
|
|
|
#ifdef EVENT__HAVE_SYS_TIME_H
|
2008-04-16 20:01:51 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* For int types. */
|
|
|
|
#include <event2/util.h>
|
|
|
|
|
2010-09-02 11:36:44 -04:00
|
|
|
/* For evkeyvalq */
|
|
|
|
#include <event2/keyvalq_struct.h>
|
|
|
|
|
2012-04-06 03:00:40 -04:00
|
|
|
#define EVLIST_TIMEOUT 0x01
|
|
|
|
#define EVLIST_INSERTED 0x02
|
|
|
|
#define EVLIST_SIGNAL 0x04
|
|
|
|
#define EVLIST_ACTIVE 0x08
|
|
|
|
#define EVLIST_INTERNAL 0x10
|
|
|
|
#define EVLIST_ACTIVE_LATER 0x20
|
2013-03-28 14:13:19 -04:00
|
|
|
#define EVLIST_FINALIZING 0x40
|
2012-04-06 03:00:40 -04:00
|
|
|
#define EVLIST_INIT 0x80
|
2008-04-16 20:01:51 +00:00
|
|
|
|
2013-03-28 14:13:19 -04:00
|
|
|
#define EVLIST_ALL 0xff
|
2008-04-16 20:01:51 +00:00
|
|
|
|
2009-05-28 15:47:15 +00:00
|
|
|
/* Fix so that people don't have to run with <sys/queue.h> */
|
2008-04-16 20:01:51 +00:00
|
|
|
#ifndef TAILQ_ENTRY
|
2012-02-29 15:07:32 -05:00
|
|
|
#define EVENT_DEFINED_TQENTRY_
|
2008-04-16 20:01:51 +00:00
|
|
|
#define TAILQ_ENTRY(type) \
|
|
|
|
struct { \
|
|
|
|
struct type *tqe_next; /* next element */ \
|
|
|
|
struct type **tqe_prev; /* address of previous next element */ \
|
|
|
|
}
|
|
|
|
#endif /* !TAILQ_ENTRY */
|
|
|
|
|
2010-09-02 11:27:57 -04:00
|
|
|
#ifndef TAILQ_HEAD
|
2012-02-29 15:07:32 -05:00
|
|
|
#define EVENT_DEFINED_TQHEAD_
|
2010-09-02 11:27:57 -04:00
|
|
|
#define TAILQ_HEAD(name, type) \
|
|
|
|
struct name { \
|
|
|
|
struct type *tqh_first; \
|
|
|
|
struct type **tqh_last; \
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-04-09 19:43:54 -04:00
|
|
|
/* Fix so that people don't have to run with <sys/queue.h> */
|
|
|
|
#ifndef LIST_ENTRY
|
2012-02-29 15:07:32 -05:00
|
|
|
#define EVENT_DEFINED_LISTENTRY_
|
2010-04-09 19:43:54 -04:00
|
|
|
#define LIST_ENTRY(type) \
|
|
|
|
struct { \
|
|
|
|
struct type *le_next; /* next element */ \
|
|
|
|
struct type **le_prev; /* address of previous next element */ \
|
|
|
|
}
|
2012-11-10 11:22:15 -08:00
|
|
|
#endif /* !LIST_ENTRY */
|
|
|
|
|
|
|
|
#ifndef LIST_HEAD
|
|
|
|
#define EVENT_DEFINED_LISTHEAD_
|
|
|
|
#define LIST_HEAD(name, type) \
|
|
|
|
struct name { \
|
|
|
|
struct type *lh_first; /* first element */ \
|
|
|
|
}
|
|
|
|
#endif /* !LIST_HEAD */
|
2010-04-09 19:43:54 -04:00
|
|
|
|
2013-03-28 14:13:19 -04:00
|
|
|
struct event;
|
|
|
|
|
2012-04-05 12:38:18 -04:00
|
|
|
struct event_callback {
|
|
|
|
TAILQ_ENTRY(event_callback) evcb_active_next;
|
|
|
|
short evcb_flags;
|
|
|
|
ev_uint8_t evcb_pri; /* smaller numbers are higher priority */
|
|
|
|
ev_uint8_t evcb_closure;
|
|
|
|
/* allows us to adopt for different types of events */
|
2012-04-06 04:33:19 -04:00
|
|
|
union {
|
2013-03-28 14:13:19 -04:00
|
|
|
void (*evcb_callback)(evutil_socket_t, short, void *);
|
|
|
|
void (*evcb_selfcb)(struct event_callback *, void *);
|
|
|
|
void (*evcb_evfinalize)(struct event *, void *);
|
|
|
|
void (*evcb_cbfinalize)(struct event_callback *, void *);
|
2012-04-06 04:33:19 -04:00
|
|
|
} evcb_cb_union;
|
2012-04-05 12:38:18 -04:00
|
|
|
void *evcb_arg;
|
|
|
|
};
|
|
|
|
|
2008-04-16 20:01:51 +00:00
|
|
|
struct event_base;
|
|
|
|
struct event {
|
2012-04-05 12:38:18 -04:00
|
|
|
struct event_callback ev_evcallback;
|
2012-02-20 14:07:08 -05:00
|
|
|
|
2009-11-09 17:16:30 +00:00
|
|
|
/* for managing timeouts */
|
|
|
|
union {
|
2010-08-13 17:08:59 -04:00
|
|
|
TAILQ_ENTRY(event) ev_next_with_common_timeout;
|
2009-11-09 17:16:30 +00:00
|
|
|
int min_heap_idx;
|
|
|
|
} ev_timeout_pos;
|
2009-05-15 18:44:44 +00:00
|
|
|
evutil_socket_t ev_fd;
|
2008-04-16 20:01:51 +00:00
|
|
|
|
|
|
|
struct event_base *ev_base;
|
|
|
|
|
2008-05-03 21:37:33 +00:00
|
|
|
union {
|
2008-12-23 16:37:01 +00:00
|
|
|
/* used for io events */
|
|
|
|
struct {
|
2012-01-20 16:31:20 -05:00
|
|
|
LIST_ENTRY (event) ev_io_next;
|
2009-01-22 02:33:38 +00:00
|
|
|
struct timeval ev_timeout;
|
2008-12-23 16:37:01 +00:00
|
|
|
} ev_io;
|
|
|
|
|
2008-05-03 21:37:33 +00:00
|
|
|
/* used by signal events */
|
|
|
|
struct {
|
2012-01-20 16:31:20 -05:00
|
|
|
LIST_ENTRY (event) ev_signal_next;
|
2008-05-03 21:37:33 +00:00
|
|
|
short ev_ncalls;
|
|
|
|
/* Allows deletes in callback */
|
|
|
|
short *ev_pncalls;
|
|
|
|
} ev_signal;
|
2012-02-29 15:07:32 -05:00
|
|
|
} ev_;
|
2008-05-03 21:37:33 +00:00
|
|
|
|
2008-04-16 20:01:51 +00:00
|
|
|
short ev_events;
|
2009-05-15 18:44:44 +00:00
|
|
|
short ev_res; /* result passed to event callback */
|
2008-04-16 20:01:51 +00:00
|
|
|
struct timeval ev_timeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
TAILQ_HEAD (event_list, event);
|
2010-09-02 11:27:57 -04:00
|
|
|
|
2012-02-29 15:07:32 -05:00
|
|
|
#ifdef EVENT_DEFINED_TQENTRY_
|
2010-09-02 11:27:57 -04:00
|
|
|
#undef TAILQ_ENTRY
|
|
|
|
#endif
|
|
|
|
|
2012-02-29 15:07:32 -05:00
|
|
|
#ifdef EVENT_DEFINED_TQHEAD_
|
2010-09-02 11:27:57 -04:00
|
|
|
#undef TAILQ_HEAD
|
|
|
|
#endif
|
2008-04-16 20:01:51 +00:00
|
|
|
|
2012-11-10 11:22:15 -08:00
|
|
|
LIST_HEAD (event_dlist, event);
|
|
|
|
|
2012-02-29 15:07:32 -05:00
|
|
|
#ifdef EVENT_DEFINED_LISTENTRY_
|
2010-04-09 19:43:54 -04:00
|
|
|
#undef LIST_ENTRY
|
2012-11-10 11:22:15 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EVENT_DEFINED_LISTHEAD_
|
|
|
|
#undef LIST_HEAD
|
|
|
|
#endif
|
2010-04-09 19:43:54 -04:00
|
|
|
|
2008-04-16 20:01:51 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-02-29 15:07:31 -05:00
|
|
|
#endif /* EVENT2_EVENT_STRUCT_H_INCLUDED_ */
|