eloop.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /** @file eloop.h
  2. * @brief Public interface for Event Loop.
  3. */
  4. #ifndef _faux_eloop_h
  5. #define _faux_eloop_h
  6. #include <faux/faux.h>
  7. #include <faux/sched.h>
  8. typedef struct faux_eloop_s faux_eloop_t;
  9. typedef enum {
  10. FAUX_ELOOP_NULL = 0,
  11. FAUX_ELOOP_SIGNAL = 1,
  12. FAUX_ELOOP_SCHED = 2,
  13. FAUX_ELOOP_FD = 3
  14. } faux_eloop_type_e;
  15. typedef struct {
  16. int ev_id;
  17. faux_ev_t *ev;
  18. } faux_eloop_info_sched_t;
  19. typedef struct {
  20. int fd;
  21. short revents;
  22. } faux_eloop_info_fd_t;
  23. typedef struct {
  24. int signo;
  25. } faux_eloop_info_signal_t;
  26. // Callback function prototype
  27. typedef bool_t (*faux_eloop_cb_f)(faux_eloop_t *eloop, faux_eloop_type_e type,
  28. void *associated_data, void *user_data);
  29. C_DECL_BEGIN
  30. faux_eloop_t *faux_eloop_new(faux_eloop_cb_f default_event_cb);
  31. void faux_eloop_free(faux_eloop_t *eloop);
  32. bool_t faux_eloop_loop(faux_eloop_t *eloop);
  33. bool_t faux_eloop_add_fd(faux_eloop_t *eloop, int fd, short events,
  34. faux_eloop_cb_f event_cb, void *user_data);
  35. bool_t faux_eloop_del_fd(faux_eloop_t *eloop, int fd);
  36. bool_t faux_eloop_add_signal(faux_eloop_t *eloop, int signo,
  37. faux_eloop_cb_f event_cb, void *user_data);
  38. bool_t faux_eloop_del_signal(faux_eloop_t *eloop, int signo);
  39. faux_ev_t *faux_eloop_add_sched_once(faux_eloop_t *eloop, const struct timespec *time,
  40. int ev_id, faux_eloop_cb_f event_cb, void *data);
  41. faux_ev_t *faux_eloop_add_sched_once_delayed(faux_eloop_t *eloop, const struct timespec *interval,
  42. int ev_id, faux_eloop_cb_f event_cb, void *data);
  43. faux_ev_t *faux_eloop_add_sched_periodic(faux_eloop_t *eloop, const struct timespec *time,
  44. int ev_id, faux_eloop_cb_f event_cb, void *data,
  45. const struct timespec *period, unsigned int cycle_num);
  46. faux_ev_t *faux_eloop_add_sched_periodic_delayed(faux_eloop_t *eloop,
  47. int ev_id, faux_eloop_cb_f event_cb, void *data,
  48. const struct timespec *period, unsigned int cycle_num);
  49. bool_t faux_eloop_del_sched(faux_eloop_t *eloop, int id);
  50. C_DECL_END
  51. #endif