mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
cb9da0bf38
These are reserved in C. We'd been erroneously using them to indicate internal use. Instead, we now use a trailing underscore whenever we'd been using a leading underscore. This is an automatic conversion. The script that produced was made by running the following script over the output of git ls-tree -r --name-only HEAD | grep '\.[ch]$' | \ xargs ctags --c-kinds=defglmpstuvx -o - | grep '^_' | \ cut -f 1 | sort| uniq (GNU ctags was required.) ===== #!/usr/bin/perl -w -n use strict; BEGIN { print "#!/usr/bin/perl -w -i -p\n\n"; } chomp; next if (/^__func__/ or /^_FILE_OFFSET_BITS/ or /^_FORTIFY_SOURCE/ or /^_GNU_SOURCE/ or /^_WIN32/ or /^_DARWIN_UNLIMITED/ or /^_FILE_OFFSET_BITS/ or /^_LARGEFILE64_SOURCE/ or /^_LFS64_LARGEFILE/ or /^__cdecl/ or /^__attribute__/ or /^__func__/ or /^_SYS_TREE_H_/); my $ident = $_; my $better = $ident; $better =~ s/^_//; if ($ident !~ /EVENT_LOG_/) { $better = "${better}_"; } print "s/(?<![A-Za-z0-9_])$ident(?![A-Za-z0-9_])/$better/g;\n"; === And then running the script below that it generated over all === the .c and .h files again #!/usr/bin/perl -w -i -p s/(?<![A-Za-z0-9_])_ARC4_LOCK(?![A-Za-z0-9_])/ARC4_LOCK_/g; s/(?<![A-Za-z0-9_])_ARC4_UNLOCK(?![A-Za-z0-9_])/ARC4_UNLOCK_/g; s/(?<![A-Za-z0-9_])_bev_group_random_element(?![A-Za-z0-9_])/bev_group_random_element_/g; s/(?<![A-Za-z0-9_])_bev_group_refill_callback(?![A-Za-z0-9_])/bev_group_refill_callback_/g; s/(?<![A-Za-z0-9_])_bev_group_suspend_reading(?![A-Za-z0-9_])/bev_group_suspend_reading_/g; s/(?<![A-Za-z0-9_])_bev_group_suspend_writing(?![A-Za-z0-9_])/bev_group_suspend_writing_/g; s/(?<![A-Za-z0-9_])_bev_group_unsuspend_reading(?![A-Za-z0-9_])/bev_group_unsuspend_reading_/g; s/(?<![A-Za-z0-9_])_bev_group_unsuspend_writing(?![A-Za-z0-9_])/bev_group_unsuspend_writing_/g; s/(?<![A-Za-z0-9_])_bev_refill_callback(?![A-Za-z0-9_])/bev_refill_callback_/g; s/(?<![A-Za-z0-9_])_bufferevent_add_event(?![A-Za-z0-9_])/bufferevent_add_event_/g; s/(?<![A-Za-z0-9_])_bufferevent_cancel_all(?![A-Za-z0-9_])/bufferevent_cancel_all_/g; s/(?<![A-Za-z0-9_])_bufferevent_decref_and_unlock(?![A-Za-z0-9_])/bufferevent_decref_and_unlock_/g; s/(?<![A-Za-z0-9_])_bufferevent_decrement_read_buckets(?![A-Za-z0-9_])/bufferevent_decrement_read_buckets_/g; s/(?<![A-Za-z0-9_])_bufferevent_decrement_write_buckets(?![A-Za-z0-9_])/bufferevent_decrement_write_buckets_/g; s/(?<![A-Za-z0-9_])_bufferevent_del_generic_timeout_cbs(?![A-Za-z0-9_])/bufferevent_del_generic_timeout_cbs_/g; s/(?<![A-Za-z0-9_])_bufferevent_generic_adj_timeouts(?![A-Za-z0-9_])/bufferevent_generic_adj_timeouts_/g; s/(?<![A-Za-z0-9_])_bufferevent_get_read_max(?![A-Za-z0-9_])/bufferevent_get_read_max_/g; s/(?<![A-Za-z0-9_])_bufferevent_get_rlim_max(?![A-Za-z0-9_])/bufferevent_get_rlim_max_/g; s/(?<![A-Za-z0-9_])_bufferevent_get_write_max(?![A-Za-z0-9_])/bufferevent_get_write_max_/g; s/(?<![A-Za-z0-9_])_bufferevent_incref_and_lock(?![A-Za-z0-9_])/bufferevent_incref_and_lock_/g; s/(?<![A-Za-z0-9_])_bufferevent_init_generic_timeout_cbs(?![A-Za-z0-9_])/bufferevent_init_generic_timeout_cbs_/g; s/(?<![A-Za-z0-9_])_bufferevent_ratelim_init(?![A-Za-z0-9_])/bufferevent_ratelim_init_/g; s/(?<![A-Za-z0-9_])_bufferevent_run_eventcb(?![A-Za-z0-9_])/bufferevent_run_eventcb_/g; s/(?<![A-Za-z0-9_])_bufferevent_run_readcb(?![A-Za-z0-9_])/bufferevent_run_readcb_/g; s/(?<![A-Za-z0-9_])_bufferevent_run_writecb(?![A-Za-z0-9_])/bufferevent_run_writecb_/g; s/(?<![A-Za-z0-9_])_ev(?![A-Za-z0-9_])/ev_/g; s/(?<![A-Za-z0-9_])_evbuffer_chain_pin(?![A-Za-z0-9_])/evbuffer_chain_pin_/g; s/(?<![A-Za-z0-9_])_evbuffer_chain_unpin(?![A-Za-z0-9_])/evbuffer_chain_unpin_/g; s/(?<![A-Za-z0-9_])_evbuffer_decref_and_unlock(?![A-Za-z0-9_])/evbuffer_decref_and_unlock_/g; s/(?<![A-Za-z0-9_])_evbuffer_expand_fast(?![A-Za-z0-9_])/evbuffer_expand_fast_/g; s/(?<![A-Za-z0-9_])_evbuffer_incref(?![A-Za-z0-9_])/evbuffer_incref_/g; s/(?<![A-Za-z0-9_])_evbuffer_incref_and_lock(?![A-Za-z0-9_])/evbuffer_incref_and_lock_/g; s/(?<![A-Za-z0-9_])_EVBUFFER_IOVEC_IS_NATIVE(?![A-Za-z0-9_])/EVBUFFER_IOVEC_IS_NATIVE_/g; s/(?<![A-Za-z0-9_])_evbuffer_overlapped_get_fd(?![A-Za-z0-9_])/evbuffer_overlapped_get_fd_/g; s/(?<![A-Za-z0-9_])_evbuffer_overlapped_set_fd(?![A-Za-z0-9_])/evbuffer_overlapped_set_fd_/g; s/(?<![A-Za-z0-9_])_evbuffer_read_setup_vecs(?![A-Za-z0-9_])/evbuffer_read_setup_vecs_/g; s/(?<![A-Za-z0-9_])_evbuffer_validate(?![A-Za-z0-9_])/evbuffer_validate_/g; s/(?<![A-Za-z0-9_])_evdns_log(?![A-Za-z0-9_])/evdns_log_/g; s/(?<![A-Za-z0-9_])_evdns_nameserver_add_impl(?![A-Za-z0-9_])/evdns_nameserver_add_impl_/g; s/(?<![A-Za-z0-9_])_EVENT_CONFIG_H_(?![A-Za-z0-9_])/EVENT_CONFIG_H__/g; s/(?<![A-Za-z0-9_])_event_debug_assert_is_setup(?![A-Za-z0-9_])/event_debug_assert_is_setup_/g; s/(?<![A-Za-z0-9_])_event_debug_assert_not_added(?![A-Za-z0-9_])/event_debug_assert_not_added_/g; s/(?<![A-Za-z0-9_])_event_debug_get_logging_mask(?![A-Za-z0-9_])/event_debug_get_logging_mask_/g; s/(?<![A-Za-z0-9_])_event_debug_logging_mask(?![A-Za-z0-9_])/event_debug_logging_mask_/g; s/(?<![A-Za-z0-9_])_event_debug_map_lock(?![A-Za-z0-9_])/event_debug_map_lock_/g; s/(?<![A-Za-z0-9_])_event_debug_mode_on(?![A-Za-z0-9_])/event_debug_mode_on_/g; s/(?<![A-Za-z0-9_])_event_debug_note_add(?![A-Za-z0-9_])/event_debug_note_add_/g; s/(?<![A-Za-z0-9_])_event_debug_note_del(?![A-Za-z0-9_])/event_debug_note_del_/g; s/(?<![A-Za-z0-9_])_event_debug_note_setup(?![A-Za-z0-9_])/event_debug_note_setup_/g; s/(?<![A-Za-z0-9_])_event_debug_note_teardown(?![A-Za-z0-9_])/event_debug_note_teardown_/g; s/(?<![A-Za-z0-9_])_event_debugx(?![A-Za-z0-9_])/event_debugx_/g; s/(?<![A-Za-z0-9_])_EVENT_DEFINED_LISTENTRY(?![A-Za-z0-9_])/EVENT_DEFINED_LISTENTRY_/g; s/(?<![A-Za-z0-9_])_EVENT_DEFINED_TQENTRY(?![A-Za-z0-9_])/EVENT_DEFINED_TQENTRY_/g; s/(?<![A-Za-z0-9_])_EVENT_DEFINED_TQHEAD(?![A-Za-z0-9_])/EVENT_DEFINED_TQHEAD_/g; s/(?<![A-Za-z0-9_])_EVENT_DNS_USE_FTIME_FOR_ID(?![A-Za-z0-9_])/EVENT_DNS_USE_FTIME_FOR_ID_/g; s/(?<![A-Za-z0-9_])_EVENT_ERR_ABORT(?![A-Za-z0-9_])/EVENT_ERR_ABORT_/g; s/(?<![A-Za-z0-9_])_EVENT_EVCONFIG__PRIVATE_H(?![A-Za-z0-9_])/EVENT_EVCONFIG__PRIVATE_H_/g; s/(?<![A-Za-z0-9_])_event_iocp_port_unlock_and_free(?![A-Za-z0-9_])/event_iocp_port_unlock_and_free_/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_DEBUG(?![A-Za-z0-9_])/EVENT_LOG_DEBUG/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_ERR(?![A-Za-z0-9_])/EVENT_LOG_ERR/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_MSG(?![A-Za-z0-9_])/EVENT_LOG_MSG/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_WARN(?![A-Za-z0-9_])/EVENT_LOG_WARN/g; s/(?<![A-Za-z0-9_])_event_strlcpy(?![A-Za-z0-9_])/event_strlcpy_/g; s/(?<![A-Za-z0-9_])_EVHTTP_REQ_UNKNOWN(?![A-Za-z0-9_])/EVHTTP_REQ_UNKNOWN_/g; s/(?<![A-Za-z0-9_])_EVLOCK_SORTLOCKS(?![A-Za-z0-9_])/EVLOCK_SORTLOCKS_/g; s/(?<![A-Za-z0-9_])_evrpc_hooks(?![A-Za-z0-9_])/evrpc_hooks_/g; s/(?<![A-Za-z0-9_])_evsig_restore_handler(?![A-Za-z0-9_])/evsig_restore_handler_/g; s/(?<![A-Za-z0-9_])_evsig_set_handler(?![A-Za-z0-9_])/evsig_set_handler_/g; s/(?<![A-Za-z0-9_])_evthread_cond_fns(?![A-Za-z0-9_])/evthread_cond_fns_/g; s/(?<![A-Za-z0-9_])_evthread_debug_get_real_lock(?![A-Za-z0-9_])/evthread_debug_get_real_lock_/g; s/(?<![A-Za-z0-9_])_evthread_id_fn(?![A-Za-z0-9_])/evthread_id_fn_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_alloc(?![A-Za-z0-9_])/evthreadimpl_cond_alloc_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_free(?![A-Za-z0-9_])/evthreadimpl_cond_free_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_signal(?![A-Za-z0-9_])/evthreadimpl_cond_signal_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_wait(?![A-Za-z0-9_])/evthreadimpl_cond_wait_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_get_id(?![A-Za-z0-9_])/evthreadimpl_get_id_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_is_lock_debugging_enabled(?![A-Za-z0-9_])/evthreadimpl_is_lock_debugging_enabled_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_alloc(?![A-Za-z0-9_])/evthreadimpl_lock_alloc_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_free(?![A-Za-z0-9_])/evthreadimpl_lock_free_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_locking_enabled(?![A-Za-z0-9_])/evthreadimpl_locking_enabled_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_lock(?![A-Za-z0-9_])/evthreadimpl_lock_lock_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_unlock(?![A-Za-z0-9_])/evthreadimpl_lock_unlock_/g; s/(?<![A-Za-z0-9_])_evthread_is_debug_lock_held(?![A-Za-z0-9_])/evthread_is_debug_lock_held_/g; s/(?<![A-Za-z0-9_])_evthread_lock_debugging_enabled(?![A-Za-z0-9_])/evthread_lock_debugging_enabled_/g; s/(?<![A-Za-z0-9_])_evthread_lock_fns(?![A-Za-z0-9_])/evthread_lock_fns_/g; s/(?<![A-Za-z0-9_])_EVUTIL_NIL_CONDITION(?![A-Za-z0-9_])/EVUTIL_NIL_CONDITION_/g; s/(?<![A-Za-z0-9_])_EVUTIL_NIL_STMT(?![A-Za-z0-9_])/EVUTIL_NIL_STMT_/g; s/(?<![A-Za-z0-9_])_evutil_weakrand(?![A-Za-z0-9_])/evutil_weakrand_/g; s/(?<![A-Za-z0-9_])_http_close_detection(?![A-Za-z0-9_])/http_close_detection_/g; s/(?<![A-Za-z0-9_])_http_connection_test(?![A-Za-z0-9_])/http_connection_test_/g; s/(?<![A-Za-z0-9_])_http_incomplete_test(?![A-Za-z0-9_])/http_incomplete_test_/g; s/(?<![A-Za-z0-9_])_http_stream_in_test(?![A-Za-z0-9_])/http_stream_in_test_/g; s/(?<![A-Za-z0-9_])_internal(?![A-Za-z0-9_])/internal_/g; s/(?<![A-Za-z0-9_])_mm_free_fn(?![A-Za-z0-9_])/mm_free_fn_/g; s/(?<![A-Za-z0-9_])_mm_malloc_fn(?![A-Za-z0-9_])/mm_malloc_fn_/g; s/(?<![A-Za-z0-9_])_mm_realloc_fn(?![A-Za-z0-9_])/mm_realloc_fn_/g; s/(?<![A-Za-z0-9_])_original_cond_fns(?![A-Za-z0-9_])/original_cond_fns_/g; s/(?<![A-Za-z0-9_])_original_lock_fns(?![A-Za-z0-9_])/original_lock_fns_/g; s/(?<![A-Za-z0-9_])_rpc_hook_ctx(?![A-Za-z0-9_])/rpc_hook_ctx_/g; s/(?<![A-Za-z0-9_])_SYS_QUEUE_H_(?![A-Za-z0-9_])/SYS_QUEUE_H__/g; s/(?<![A-Za-z0-9_])_t(?![A-Za-z0-9_])/t_/g; s/(?<![A-Za-z0-9_])_t32(?![A-Za-z0-9_])/t32_/g; s/(?<![A-Za-z0-9_])_test_ai_eq(?![A-Za-z0-9_])/test_ai_eq_/g; s/(?<![A-Za-z0-9_])_URI_ADD(?![A-Za-z0-9_])/URI_ADD_/g; s/(?<![A-Za-z0-9_])_URI_FREE_STR(?![A-Za-z0-9_])/URI_FREE_STR_/g; s/(?<![A-Za-z0-9_])_URI_SET_STR(?![A-Za-z0-9_])/URI_SET_STR_/g; s/(?<![A-Za-z0-9_])_warn_helper(?![A-Za-z0-9_])/warn_helper_/g;
385 lines
13 KiB
C
385 lines
13 KiB
C
/*
|
|
* Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
|
|
* Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
|
|
*
|
|
* 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.
|
|
*/
|
|
#ifndef EVENT_INTERNAL_H_INCLUDED_
|
|
#define EVENT_INTERNAL_H_INCLUDED_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "event2/event-config.h"
|
|
#include "evconfig-private.h"
|
|
|
|
#include <time.h>
|
|
#include <sys/queue.h>
|
|
#include "event2/event_struct.h"
|
|
#include "minheap-internal.h"
|
|
#include "evsignal-internal.h"
|
|
#include "mm-internal.h"
|
|
#include "defer-internal.h"
|
|
|
|
/* map union members back */
|
|
|
|
/* mutually exclusive */
|
|
#define ev_signal_next ev_.ev_signal.ev_signal_next
|
|
#define ev_io_next ev_.ev_io.ev_io_next
|
|
#define ev_io_timeout ev_.ev_io.ev_timeout
|
|
|
|
/* used only by signals */
|
|
#define ev_ncalls ev_.ev_signal.ev_ncalls
|
|
#define ev_pncalls ev_.ev_signal.ev_pncalls
|
|
|
|
/* Possible values for ev_closure in struct event. */
|
|
#define EV_CLOSURE_NONE 0
|
|
#define EV_CLOSURE_SIGNAL 1
|
|
#define EV_CLOSURE_PERSIST 2
|
|
|
|
/** Structure to define the backend of a given event_base. */
|
|
struct eventop {
|
|
/** The name of this backend. */
|
|
const char *name;
|
|
/** Function to set up an event_base to use this backend. It should
|
|
* create a new structure holding whatever information is needed to
|
|
* run the backend, and return it. The returned pointer will get
|
|
* stored by event_init into the event_base.evbase field. On failure,
|
|
* this function should return NULL. */
|
|
void *(*init)(struct event_base *);
|
|
/** Enable reading/writing on a given fd or signal. 'events' will be
|
|
* the events that we're trying to enable: one or more of EV_READ,
|
|
* EV_WRITE, EV_SIGNAL, and EV_ET. 'old' will be those events that
|
|
* were enabled on this fd previously. 'fdinfo' will be a structure
|
|
* associated with the fd by the evmap; its size is defined by the
|
|
* fdinfo field below. It will be set to 0 the first time the fd is
|
|
* added. The function should return 0 on success and -1 on error.
|
|
*/
|
|
int (*add)(struct event_base *, evutil_socket_t fd, short old, short events, void *fdinfo);
|
|
/** As "add", except 'events' contains the events we mean to disable. */
|
|
int (*del)(struct event_base *, evutil_socket_t fd, short old, short events, void *fdinfo);
|
|
/** Function to implement the core of an event loop. It must see which
|
|
added events are ready, and cause event_active to be called for each
|
|
active event (usually via event_io_active or such). It should
|
|
return 0 on success and -1 on error.
|
|
*/
|
|
int (*dispatch)(struct event_base *, struct timeval *);
|
|
/** Function to clean up and free our data from the event_base. */
|
|
void (*dealloc)(struct event_base *);
|
|
/** Flag: set if we need to reinitialize the event base after we fork.
|
|
*/
|
|
int need_reinit;
|
|
/** Bit-array of supported event_method_features that this backend can
|
|
* provide. */
|
|
enum event_method_feature features;
|
|
/** Length of the extra information we should record for each fd that
|
|
has one or more active events. This information is recorded
|
|
as part of the evmap entry for each fd, and passed as an argument
|
|
to the add and del functions above.
|
|
*/
|
|
size_t fdinfo_len;
|
|
};
|
|
|
|
#ifdef _WIN32
|
|
/* If we're on win32, then file descriptors are not nice low densely packed
|
|
integers. Instead, they are pointer-like windows handles, and we want to
|
|
use a hashtable instead of an array to map fds to events.
|
|
*/
|
|
#define EVMAP_USE_HT
|
|
#endif
|
|
|
|
/* #define HT_CACHE_HASH_VALS */
|
|
|
|
#ifdef EVMAP_USE_HT
|
|
#define HT_NO_CACHE_HASH_VALUES
|
|
#include "ht-internal.h"
|
|
struct event_map_entry;
|
|
HT_HEAD(event_io_map, event_map_entry);
|
|
#else
|
|
#define event_io_map event_signal_map
|
|
#endif
|
|
|
|
/* Used to map signal numbers to a list of events. If EVMAP_USE_HT is not
|
|
defined, this structure is also used as event_io_map, which maps fds to a
|
|
list of events.
|
|
*/
|
|
struct event_signal_map {
|
|
/* An array of evmap_io * or of evmap_signal *; empty entries are
|
|
* set to NULL. */
|
|
void **entries;
|
|
/* The number of entries available in entries */
|
|
int nentries;
|
|
};
|
|
|
|
/* A list of events waiting on a given 'common' timeout value. Ordinarily,
|
|
* events waiting for a timeout wait on a minheap. Sometimes, however, a
|
|
* queue can be faster.
|
|
**/
|
|
struct common_timeout_list {
|
|
/* List of events currently waiting in the queue. */
|
|
struct event_list events;
|
|
/* 'magic' timeval used to indicate the duration of events in this
|
|
* queue. */
|
|
struct timeval duration;
|
|
/* Event that triggers whenever one of the events in the queue is
|
|
* ready to activate */
|
|
struct event timeout_event;
|
|
/* The event_base that this timeout list is part of */
|
|
struct event_base *base;
|
|
};
|
|
|
|
/** Mask used to get the real tv_usec value from a common timeout. */
|
|
#define COMMON_TIMEOUT_MICROSECONDS_MASK 0x000fffff
|
|
|
|
struct event_change;
|
|
|
|
/* List of 'changes' since the last call to eventop.dispatch. Only maintained
|
|
* if the backend is using changesets. */
|
|
struct event_changelist {
|
|
struct event_change *changes;
|
|
int n_changes;
|
|
int changes_size;
|
|
};
|
|
|
|
#ifndef EVENT__DISABLE_DEBUG_MODE
|
|
/* Global internal flag: set to one if debug mode is on. */
|
|
extern int event_debug_mode_on_;
|
|
#define EVENT_DEBUG_MODE_IS_ON() (event_debug_mode_on_)
|
|
#else
|
|
#define EVENT_DEBUG_MODE_IS_ON() (0)
|
|
#endif
|
|
|
|
struct event_base {
|
|
/** Function pointers and other data to describe this event_base's
|
|
* backend. */
|
|
const struct eventop *evsel;
|
|
/** Pointer to backend-specific data. */
|
|
void *evbase;
|
|
|
|
/** List of changes to tell backend about at next dispatch. Only used
|
|
* by the O(1) backends. */
|
|
struct event_changelist changelist;
|
|
|
|
/** Function pointers used to describe the backend that this event_base
|
|
* uses for signals */
|
|
const struct eventop *evsigsel;
|
|
/** Data to implement the common signal handelr code. */
|
|
struct evsig_info sig;
|
|
|
|
/** Number of virtual events */
|
|
int virtual_event_count;
|
|
/** Number of total events added to this event_base */
|
|
int event_count;
|
|
/** Number of total events active in this event_base */
|
|
int event_count_active;
|
|
|
|
/** Set if we should terminate the loop once we're done processing
|
|
* events. */
|
|
int event_gotterm;
|
|
/** Set if we should terminate the loop immediately */
|
|
int event_break;
|
|
|
|
/** Set if we're running the event_base_loop function, to prevent
|
|
* reentrant invocation. */
|
|
int running_loop;
|
|
|
|
/* Active event management. */
|
|
/** An array of nactivequeues queues for active events (ones that
|
|
* have triggered, and whose callbacks need to be called). Low
|
|
* priority numbers are more important, and stall higher ones.
|
|
*/
|
|
struct event_list *activequeues;
|
|
/** The length of the activequeues array */
|
|
int nactivequeues;
|
|
|
|
/* common timeout logic */
|
|
|
|
/** An array of common_timeout_list* for all of the common timeout
|
|
* values we know. */
|
|
struct common_timeout_list **common_timeout_queues;
|
|
/** The number of entries used in common_timeout_queues */
|
|
int n_common_timeouts;
|
|
/** The total size of common_timeout_queues. */
|
|
int n_common_timeouts_allocated;
|
|
|
|
/** List of defered_cb that are active. We run these after the active
|
|
* events. */
|
|
struct deferred_cb_queue defer_queue;
|
|
|
|
/** Mapping from file descriptors to enabled (added) events */
|
|
struct event_io_map io;
|
|
|
|
/** Mapping from signal numbers to enabled (added) events. */
|
|
struct event_signal_map sigmap;
|
|
|
|
/** Stored timeval; used to detect when time is running backwards. */
|
|
struct timeval event_tv;
|
|
|
|
/** Priority queue of events with timeouts. */
|
|
struct min_heap timeheap;
|
|
|
|
/** Stored timeval: used to avoid calling gettimeofday/clock_gettime
|
|
* too often. */
|
|
struct timeval tv_cache;
|
|
|
|
#if defined(EVENT__HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC)
|
|
/** Difference between internal time (maybe from clock_gettime) and
|
|
* gettimeofday. */
|
|
struct timeval tv_clock_diff;
|
|
/** Second in which we last updated tv_clock_diff, in monotonic time. */
|
|
time_t last_updated_clock_diff;
|
|
#endif
|
|
|
|
#ifndef EVENT__DISABLE_THREAD_SUPPORT
|
|
/* threading support */
|
|
/** The thread currently running the event_loop for this base */
|
|
unsigned long th_owner_id;
|
|
/** A lock to prevent conflicting accesses to this event_base */
|
|
void *th_base_lock;
|
|
/** The event whose callback is executing right now */
|
|
struct event *current_event;
|
|
/** A condition that gets signalled when we're done processing an
|
|
* event with waiters on it. */
|
|
void *current_event_cond;
|
|
/** Number of threads blocking on current_event_cond. */
|
|
int current_event_waiters;
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
/** IOCP support structure, if IOCP is enabled. */
|
|
struct event_iocp_port *iocp;
|
|
#endif
|
|
|
|
/** Flags that this base was configured with */
|
|
enum event_base_config_flag flags;
|
|
|
|
struct timeval max_dispatch_time;
|
|
int max_dispatch_callbacks;
|
|
int limit_callbacks_after_prio;
|
|
|
|
/* Notify main thread to wake up break, etc. */
|
|
/** True if the base already has a pending notify, and we don't need
|
|
* to add any more. */
|
|
int is_notify_pending;
|
|
/** A socketpair used by some th_notify functions to wake up the main
|
|
* thread. */
|
|
evutil_socket_t th_notify_fd[2];
|
|
/** An event used by some th_notify functions to wake up the main
|
|
* thread. */
|
|
struct event th_notify;
|
|
/** A function used to wake up the main thread from another thread. */
|
|
int (*th_notify_fn)(struct event_base *base);
|
|
};
|
|
|
|
struct event_config_entry {
|
|
TAILQ_ENTRY(event_config_entry) next;
|
|
|
|
const char *avoid_method;
|
|
};
|
|
|
|
/** Internal structure: describes the configuration we want for an event_base
|
|
* that we're about to allocate. */
|
|
struct event_config {
|
|
TAILQ_HEAD(event_configq, event_config_entry) entries;
|
|
|
|
int n_cpus_hint;
|
|
struct timeval max_dispatch_interval;
|
|
int max_dispatch_callbacks;
|
|
int limit_callbacks_after_prio;
|
|
enum event_method_feature require_features;
|
|
enum event_base_config_flag flags;
|
|
};
|
|
|
|
/* Internal use only: Functions that might be missing from <sys/queue.h> */
|
|
#if defined(EVENT__HAVE_SYS_QUEUE_H) && !defined(EVENT__HAVE_TAILQFOREACH)
|
|
#ifndef TAILQ_FIRST
|
|
#define TAILQ_FIRST(head) ((head)->tqh_first)
|
|
#endif
|
|
#ifndef TAILQ_END
|
|
#define TAILQ_END(head) NULL
|
|
#endif
|
|
#ifndef TAILQ_NEXT
|
|
#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
|
|
#endif
|
|
|
|
#ifndef TAILQ_FOREACH
|
|
#define TAILQ_FOREACH(var, head, field) \
|
|
for ((var) = TAILQ_FIRST(head); \
|
|
(var) != TAILQ_END(head); \
|
|
(var) = TAILQ_NEXT(var, field))
|
|
#endif
|
|
|
|
#ifndef TAILQ_INSERT_BEFORE
|
|
#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \
|
|
(elm)->field.tqe_prev = (listelm)->field.tqe_prev; \
|
|
(elm)->field.tqe_next = (listelm); \
|
|
*(listelm)->field.tqe_prev = (elm); \
|
|
(listelm)->field.tqe_prev = &(elm)->field.tqe_next; \
|
|
} while (0)
|
|
#endif
|
|
#endif /* TAILQ_FOREACH */
|
|
|
|
#define N_ACTIVE_CALLBACKS(base) \
|
|
((base)->event_count_active + (base)->defer_queue.active_count)
|
|
|
|
int evsig_set_handler_(struct event_base *base, int evsignal,
|
|
void (*fn)(int));
|
|
int evsig_restore_handler_(struct event_base *base, int evsignal);
|
|
|
|
|
|
void event_active_nolock(struct event *ev, int res, short count);
|
|
|
|
/* FIXME document. */
|
|
void event_base_add_virtual(struct event_base *base);
|
|
void event_base_del_virtual(struct event_base *base);
|
|
|
|
/** For debugging: unless assertions are disabled, verify the referential
|
|
integrity of the internal data structures of 'base'. This operation can
|
|
be expensive.
|
|
|
|
Returns on success; aborts on failure.
|
|
*/
|
|
void event_base_assert_ok(struct event_base *base);
|
|
|
|
/* Callback type for event_base_foreach_event. */
|
|
typedef int (*event_base_foreach_event_cb)(struct event_base *base, struct event *, void *);
|
|
|
|
/* Helper function: Call 'fn' exactly once every inserted or active event in
|
|
* the event_base 'base'.
|
|
*
|
|
* If fn returns 0, continue on to the next event. Otherwise, return the same
|
|
* value that fn returned.
|
|
*
|
|
* Requires that 'base' be locked.
|
|
*/
|
|
int event_base_foreach_event_(struct event_base *base,
|
|
event_base_foreach_event_cb cb, void *arg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* EVENT_INTERNAL_H_INCLUDED_ */
|
|
|