/usr/include/pike7.8/pike/backend.h is in pike7.8-dev 7.8.866-8.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | /*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
|| $Id: ed03c0bac5d92dac1d7b60c237e877718f8d8a11 $
*/
#ifndef BACKEND_H
#define BACKEND_H
#include "global.h"
#include "time_stuff.h"
#include "callback.h"
/*
* POLL/SELECT selection
*/
#if defined(HAVE_POLL) && defined(HAVE_AND_USE_POLL)
/* We have poll(2), and it isn't simulated. */
#if defined(HAVE_SYS_DEVPOLL_H) && defined(PIKE_POLL_DEVICE)
/*
* Backend using /dev/poll-style poll device.
*
* Used on:
* Solaris 7 + patches and above.
* OSF/1 + patches and above.
* IRIX 5.6.15m and above.
*/
#define BACKEND_USES_POLL_DEVICE
#define BACKEND_USES_DEVPOLL
#elif defined(HAVE_SYS_EPOLL_H) && defined(WITH_EPOLL)
/*
* Backend using /dev/epoll-style poll device.
*
* Used on:
* Linux 2.6 and above.
*/
#define BACKEND_USES_POLL_DEVICE
#define BACKEND_USES_DEVEPOLL
#else /* !BACKEND_USES_POLL_DEVICE */
/*
* Backend using poll(2).
*
* This is used on most older SVR4- or POSIX-style systems.
*/
#define BACKEND_USES_POLL
#endif /* HAVE_SYS_DEVPOLL_H || HAVE_SYS_EPOLL_H */
#elif defined(HAVE_SYS_EVENT_H) && defined(HAVE_KQUEUE) /* && !HAVE_POLL */
/*
* Backend using kqueue-style poll device.
*
* FIXME: Not fully implemented yet! Out of band data handling is missing.
*
* Used on
* FreeBSD 4.1 and above.
* MacOS X/Darwin 7.x and above.
* Various other BSDs.
*/
#define BACKEND_USES_KQUEUE
/* Currently kqueue doesn't differentiate between in-band and out-of-band
* data.
*/
#define BACKEND_OOB_IS_SIMULATED
#else /* !HAVE_POLL && !HAVE_KQUEUE */
/*
* Backend using select(2)
*
* This is used on most older BSD-style systems, and WIN32.
*/
#define BACKEND_USES_SELECT
#endif /* HAVE_POLL || BACKEND_USES_KQUEUE */
struct Backend_struct;
PMOD_EXPORT extern struct timeval current_time;
PMOD_EXPORT extern struct Backend_struct *default_backend;
extern struct callback_list do_debug_callbacks;
PMOD_EXPORT extern struct program *Backend_program;
void count_memory_in_call_out_ss(size_t *num, size_t *size);
void count_memory_in_compat_cb_boxs(size_t *num, size_t *size);
PMOD_EXPORT void debug_check_fd_not_in_use (int fd);
#if 1
struct Backend_struct *get_backend_for_fd(int fd);
PMOD_EXPORT struct object *get_backend_obj_for_fd (int fd);
PMOD_EXPORT void set_backend_for_fd (int fd, struct Backend_struct *new_be);
#endif
PMOD_EXPORT struct object *get_backend_obj (struct Backend_struct *b);
PMOD_EXPORT void wake_up_backend(void);
void init_backend(void);
void do_debug(void);
void backend(void);
void exit_backend(void);
PMOD_EXPORT int write_to_stderr(char *a, size_t len);
PMOD_EXPORT struct callback *debug_add_backend_callback(callback_func call,
void *arg,
callback_func free_func);
/*
* New style callback interface.
*/
struct fd_callback_box;
typedef int (*fd_box_callback) (struct fd_callback_box *box, int event);
/** The callback user should keep an instance of this struct around for as long
* as callbacks are wanted. Use hook_fd_callback_box and
* unhook_fd_callback_box to connect/disconnect it to/from a backend. */
struct fd_callback_box
{
struct Backend_struct *backend; /**< Not refcounted. Cleared when the backend
* is destructed or the box is unhooked. */
struct object *ref_obj; /**< If set, it's the object containing the box.
* It then acts as the ref from the backend to
* the object and is refcounted by the backend
* whenever any event is wanted.
*
* It receives a ref for each when next and/or
* events are non-zero. */
struct fd_callback_box *next; /**< Circular list of active fds in a backend.
* NULL if the fd is not active in some
* backend. Note: ref_obj MUST be freed when
* the box is unlinked. */
int fd; /**< Use change_fd_for_box to change this. May
* be negative, in which case only the ref
* magic on backend and ref_obj is done. The
* backend might change a negative value to a
* different negative value. */
int events; /**< Bitfield with wanted events. Always use
* set_fd_callback_events to change this. It's
* ok to have hooked boxes where no events are
* wanted. */
int revents; /**< Bitfield with active events. Always clear
* the corresponding event if you perform an
* action that might affect it. */
fd_box_callback callback; /**< Function to call. Assumed to be valid if
* any event is wanted. */
};
#define INIT_FD_CALLBACK_BOX(BOX, BACKEND, REF_OBJ, FD, EVENTS, CALLBACK) do { \
struct fd_callback_box *box__ = (BOX); \
box__->backend = (BACKEND); \
box__->ref_obj = (REF_OBJ); \
box__->next = NULL; \
box__->fd = (FD); \
box__->events = (EVENTS); \
box__->revents = 0; \
box__->callback = (CALLBACK); \
if (box__->backend) hook_fd_callback_box (box__); \
} while (0)
/* The event types. */
#define PIKE_FD_READ 0
#define PIKE_FD_WRITE 1
#define PIKE_FD_READ_OOB 2
#define PIKE_FD_WRITE_OOB 3
#define PIKE_FD_ERROR 4
#define PIKE_FD_NUM_EVENTS 5
/* Flags for event bitfields. */
#define PIKE_BIT_FD_READ (1 << PIKE_FD_READ)
#define PIKE_BIT_FD_WRITE (1 << PIKE_FD_WRITE)
#define PIKE_BIT_FD_READ_OOB (1 << PIKE_FD_READ_OOB)
#define PIKE_BIT_FD_WRITE_OOB (1 << PIKE_FD_WRITE_OOB)
#define PIKE_BIT_FD_ERROR (1 << PIKE_FD_ERROR)
/* If an error condition occurs then all events except
* PIKE_BIT_FD_ERROR are cleared from fd_callback_box.events. */
/* Note: If ref_obj is used, both unhook_fd_callback_box and
* set_fd_callback_events may free the object containing the box.
* They may be used from within the gc recurse passes. */
PMOD_EXPORT void hook_fd_callback_box (struct fd_callback_box *box);
PMOD_EXPORT void unhook_fd_callback_box (struct fd_callback_box *box);
PMOD_EXPORT void set_fd_callback_events (struct fd_callback_box *box, int events);
PMOD_EXPORT void change_backend_for_box (struct fd_callback_box *box,
struct Backend_struct *new_be);
PMOD_EXPORT void change_fd_for_box (struct fd_callback_box *box, int new_fd);
/* Old style callback interface. This only accesses the default backend. It
* can't be mixed with the new style interface above for the same fd. */
typedef int (*file_callback)(int,void *);
#if 1
PMOD_EXPORT void set_read_callback(int fd,file_callback cb,void *data);
PMOD_EXPORT void set_write_callback(int fd,file_callback cb,void *data);
PMOD_EXPORT void set_read_oob_callback(int fd,file_callback cb,void *data);
PMOD_EXPORT void set_write_oob_callback(int fd,file_callback cb,void *data);
PMOD_EXPORT file_callback query_read_callback(int fd);
PMOD_EXPORT file_callback query_write_callback(int fd);
PMOD_EXPORT file_callback query_read_oob_callback(int fd);
PMOD_EXPORT file_callback query_write_oob_callback(int fd);
PMOD_EXPORT void *query_read_callback_data(int fd);
PMOD_EXPORT void *query_write_callback_data(int fd);
PMOD_EXPORT void *query_read_oob_callback_data(int fd);
PMOD_EXPORT void *query_write_oob_callback_data(int fd);
#endif
PMOD_EXPORT void backend_wake_up_backend(struct Backend_struct *be);
PMOD_EXPORT void backend_lower_timeout(struct Backend_struct *me,
struct timeval *tv);
PMOD_EXPORT struct object *get_backend_obj (struct Backend_struct *b);
PMOD_EXPORT struct callback *backend_debug_add_backend_callback(
struct Backend_struct *be, callback_func call, void *arg,
callback_func free_func);
#define add_backend_callback(X,Y,Z) \
dmalloc_touch(struct callback *,debug_add_backend_callback((X),(Y),(Z)))
#define backend_add_backend_callback(B,X,Y,Z) \
dmalloc_touch(struct callback *,\
backend_debug_add_backend_callback((B),(X),(Y),(Z)))
#endif
|