loop-watcher.c 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to
  5. * deal in the Software without restriction, including without limitation the
  6. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  7. * sell copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  18. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  19. * IN THE SOFTWARE.
  20. */
  21. #include "uv.h"
  22. #include "internal.h"
  23. #define UV_LOOP_WATCHER_DEFINE(name, type) \
  24. int uv_##name##_init(uv_loop_t* loop, uv_##name##_t* handle) { \
  25. uv__handle_init(loop, (uv_handle_t*)handle, UV_##type); \
  26. handle->name##_cb = NULL; \
  27. return 0; \
  28. } \
  29. \
  30. int uv_##name##_start(uv_##name##_t* handle, uv_##name##_cb cb) { \
  31. if (uv__is_active(handle)) return 0; \
  32. if (cb == NULL) return UV_EINVAL; \
  33. QUEUE_INSERT_HEAD(&handle->loop->name##_handles, &handle->queue); \
  34. handle->name##_cb = cb; \
  35. uv__handle_start(handle); \
  36. return 0; \
  37. } \
  38. \
  39. int uv_##name##_stop(uv_##name##_t* handle) { \
  40. if (!uv__is_active(handle)) return 0; \
  41. QUEUE_REMOVE(&handle->queue); \
  42. uv__handle_stop(handle); \
  43. return 0; \
  44. } \
  45. \
  46. void uv__run_##name(uv_loop_t* loop) { \
  47. uv_##name##_t* h; \
  48. QUEUE queue; \
  49. QUEUE* q; \
  50. QUEUE_MOVE(&loop->name##_handles, &queue); \
  51. while (!QUEUE_EMPTY(&queue)) { \
  52. q = QUEUE_HEAD(&queue); \
  53. h = QUEUE_DATA(q, uv_##name##_t, queue); \
  54. QUEUE_REMOVE(q); \
  55. QUEUE_INSERT_TAIL(&loop->name##_handles, q); \
  56. h->name##_cb(h); \
  57. } \
  58. } \
  59. \
  60. void uv__##name##_close(uv_##name##_t* handle) { \
  61. uv_##name##_stop(handle); \
  62. }
  63. UV_LOOP_WATCHER_DEFINE(prepare, PREPARE)
  64. UV_LOOP_WATCHER_DEFINE(check, CHECK)
  65. UV_LOOP_WATCHER_DEFINE(idle, IDLE)