/* ELAPI Header file for the ELAPI async processing interface. Copyright (C) Dmitri Pal 2009 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef ELAPI_ASYNC_H #define ELAPI_ASYNC_H #include #define ELAPI_FD_READ 0x00000001 /* request to read */ #define ELAPI_FD_WRITE 0x00000002 /* request to write */ /* Structure that holds ELAPI file descriptor's watch data */ struct elapi_fd_data; /* Structure that holds ELAPI timer data */ struct elapi_tm_data; /* Functions to set and get data from file descriptor data. */ /* Functions return EINVAL if passed in argument is invalid. */ int elapi_set_fd_priv(struct elapi_fd_data *fd_data, void *priv_data_to_set); int elapi_get_fd_priv(struct elapi_fd_data *fd_data, void **priv_data_to_get); /* Cleanup function */ int elapi_destroy_fd_data(struct elapi_fd_data *fd_data); /* Functions to set and get custom data from timer data. */ /* Functions return EINVAL if passed in argument is invalid. */ int elapi_set_tm_priv(struct elapi_tm_data *tm_data, void *priv_data_to_set); int elapi_get_tm_priv(struct elapi_tm_data *tm_data, void **priv_data_to_get); /* Cleanup function */ int elapi_destroy_tm_data(struct elapi_tm_data *tm_data); /* Public interfaces ELAPI exposes to handle fd or timer * events (do not confuse with log events). */ int elapi_process_fd(struct elapi_fd_data *fd_data); int elapi_process_tm(struct elapi_tm_data *tm_data); /* Signature of the function to add * file descriptor into the event loop. * Provided by caller of the ELAPI interface. */ typedef int (*elapi_add_fd)(int fd, unsigned flags, struct elapi_fd_data *fd_data, void *ext_fd_data); /* Signature of the function to remove * file descriptor from the event loop. * Provided by caller of the ELAPI interface. */ typedef int (*elapi_rem_fd)(int fd, struct elapi_fd_data *fd_data, void *ext_fd_data); /* Signature of the function to set * file descriptor for read/write operation. * Provided by caller of the ELAPI interface. */ typedef int (*elapi_set_fd)(int fd, unsigned flags, struct elapi_fd_data *fd_data, void *ext_fd_data); /* Signature of the function to add timer. * Provided by caller of the ELAPI interface. * Caller must be aware that the timeval strcuture * is allocated on stack. */ typedef int (*elapi_add_tm)(struct timeval *tv, struct elapi_tm_data *tm_data, void *ext_tm_data); /* Signature of the function to add timer. * Provided by caller of the ELAPI interface. * Caller must be aware that the timeval strcuture * is allocated on stack. */ typedef int (*elapi_rem_tm)(struct elapi_tm_data *tm_data, void *ext_tm_data); /* Structure that contains the pointer to functions * that needed to be provided to enable async processing. */ struct elapi_async_ctx { elapi_add_fd add_fd_cb; elapi_rem_fd rem_fd_cb; elapi_set_fd set_fd_cb; void *ext_fd_data; elapi_add_tm add_tm_cb; elapi_rem_tm rem_tm_cb; void *ext_tm_data; }; /* Interface to create the async context */ int elapi_create_asctx(struct elapi_async_ctx **ctx, elapi_add_fd add_fd_cb, elapi_rem_fd rem_fd_cb, elapi_set_fd set_fd_cb, void *ext_fd_data, elapi_add_tm add_tm_cb, elapi_rem_tm rem_tm_cb, void *ext_tm_data); /* Function to free the async context */ void elapi_destroy_asctx(struct elapi_async_ctx *ctx); /* Function to validate the consistency of the * async context */ int elapi_check_asctx(struct elapi_async_ctx *ctx); #endif