simple-watch.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #ifndef foosimplewatchhfoo
  2. #define foosimplewatchhfoo
  3. /***
  4. This file is part of avahi.
  5. avahi is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. avahi is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  12. Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with avahi; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  16. USA.
  17. ***/
  18. /** \file simple-watch.h Simple poll() based main loop implementation */
  19. #include <sys/poll.h>
  20. #include <avahi-common/cdecl.h>
  21. #include <avahi-common/watch.h>
  22. AVAHI_C_DECL_BEGIN
  23. /** A main loop object. Main loops of this type aren't very flexible
  24. * since they only support a single wakeup type. Nevertheless it
  25. * should suffice for small test and example applications. */
  26. typedef struct AvahiSimplePoll AvahiSimplePoll;
  27. /** Create a new main loop object */
  28. AvahiSimplePoll *avahi_simple_poll_new(void);
  29. /** Free a main loop object */
  30. void avahi_simple_poll_free(AvahiSimplePoll *s);
  31. /** Return the abstracted poll API object for this main loop
  32. * object. The is will return the same pointer each time it is
  33. * called. */
  34. const AvahiPoll* avahi_simple_poll_get(AvahiSimplePoll *s);
  35. /** Run a single main loop iteration of this main loop. If sleep_time
  36. is < 0 this will block until any of the registered events happens,
  37. then it will execute the attached callback function. If sleep_time is
  38. 0 the routine just checks if any event is pending. If yes the attached
  39. callback function is called, otherwise the function returns
  40. immediately. If sleep_time > 0 the function will block for at most the
  41. specified time in msecs. Returns -1 on error, 0 on success and 1 if a
  42. quit request has been scheduled. Usually this function should be called
  43. in a loop until it returns a non-zero value*/
  44. int avahi_simple_poll_iterate(AvahiSimplePoll *s, int sleep_time);
  45. /** Request that the main loop quits. If this is called the next
  46. call to avahi_simple_poll_iterate() will return 1 */
  47. void avahi_simple_poll_quit(AvahiSimplePoll *s);
  48. /** Prototype for a poll() type function */
  49. typedef int (*AvahiPollFunc)(struct pollfd *ufds, unsigned int nfds, int timeout, void *userdata);
  50. /** Replace the internally used poll() function. By default the system's poll() will be used */
  51. void avahi_simple_poll_set_func(AvahiSimplePoll *s, AvahiPollFunc func, void *userdata);
  52. /** The first stage of avahi_simple_poll_iterate(), use this function only if you know what you do */
  53. int avahi_simple_poll_prepare(AvahiSimplePoll *s, int timeout);
  54. /** The second stage of avahi_simple_poll_iterate(), use this function only if you know what you do */
  55. int avahi_simple_poll_run(AvahiSimplePoll *s);
  56. /** The third and final stage of avahi_simple_poll_iterate(), use this function only if you know what you do */
  57. int avahi_simple_poll_dispatch(AvahiSimplePoll *s);
  58. /** Call avahi_simple_poll_iterate() in a loop and return if it returns non-zero */
  59. int avahi_simple_poll_loop(AvahiSimplePoll *s);
  60. /** Wakeup the main loop. (for threaded environments) */
  61. void avahi_simple_poll_wakeup(AvahiSimplePoll *s);
  62. AVAHI_C_DECL_END
  63. #endif