asyncengine 0.0.1.testing1 → 0.0.2.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. data/README.markdown +3 -0
  2. data/Rakefile +38 -0
  3. data/asyncengine.gemspec +8 -4
  4. data/ext/asyncengine/ae_call_from_other_thread.c +106 -0
  5. data/ext/asyncengine/ae_call_from_other_thread.h +12 -0
  6. data/ext/asyncengine/ae_handle_common.c +193 -48
  7. data/ext/asyncengine/ae_handle_common.h +40 -13
  8. data/ext/asyncengine/ae_ip_utils.c +246 -0
  9. data/ext/asyncengine/ae_ip_utils.h +25 -0
  10. data/ext/asyncengine/ae_next_tick.c +81 -21
  11. data/ext/asyncengine/ae_next_tick.h +4 -2
  12. data/ext/asyncengine/ae_resolver.c +156 -0
  13. data/ext/asyncengine/ae_resolver.h +10 -0
  14. data/ext/asyncengine/ae_tcp.c +908 -0
  15. data/ext/asyncengine/ae_tcp.h +20 -0
  16. data/ext/asyncengine/ae_timer.c +355 -81
  17. data/ext/asyncengine/ae_timer.h +11 -4
  18. data/ext/asyncengine/ae_udp.c +579 -13
  19. data/ext/asyncengine/ae_udp.h +15 -2
  20. data/ext/asyncengine/ae_utils.c +192 -0
  21. data/ext/asyncengine/ae_utils.h +16 -0
  22. data/ext/asyncengine/asyncengine_ruby.c +469 -26
  23. data/ext/asyncengine/asyncengine_ruby.h +49 -11
  24. data/ext/asyncengine/debug.h +68 -0
  25. data/ext/asyncengine/extconf.rb +26 -2
  26. data/ext/asyncengine/ip_parser.c +5954 -0
  27. data/ext/asyncengine/ip_parser.h +16 -0
  28. data/ext/asyncengine/libuv/AUTHORS +16 -0
  29. data/ext/asyncengine/libuv/common.gypi +4 -4
  30. data/ext/asyncengine/libuv/config-mingw.mk +6 -6
  31. data/ext/asyncengine/libuv/config-unix.mk +13 -13
  32. data/ext/asyncengine/libuv/gyp_uv +5 -1
  33. data/ext/asyncengine/libuv/ibc_tests/exec_test.sh +8 -0
  34. data/ext/asyncengine/libuv/ibc_tests/uv_shutdown_write_issue.c +171 -0
  35. data/ext/asyncengine/libuv/ibc_tests/uv_tcp_close_while_connecting.c +102 -0
  36. data/ext/asyncengine/libuv/include/uv-private/ngx-queue.h +3 -1
  37. data/ext/asyncengine/libuv/include/uv-private/uv-unix.h +103 -50
  38. data/ext/asyncengine/libuv/include/uv-private/uv-win.h +76 -24
  39. data/ext/asyncengine/libuv/include/uv.h +353 -88
  40. data/ext/asyncengine/libuv/src/ares/ares__close_sockets.o +0 -0
  41. data/ext/asyncengine/libuv/src/ares/ares__get_hostent.o +0 -0
  42. data/ext/asyncengine/libuv/src/ares/ares__read_line.o +0 -0
  43. data/ext/asyncengine/libuv/src/ares/ares__timeval.o +0 -0
  44. data/ext/asyncengine/libuv/src/ares/ares_cancel.o +0 -0
  45. data/ext/asyncengine/libuv/src/ares/ares_data.o +0 -0
  46. data/ext/asyncengine/libuv/src/ares/ares_destroy.o +0 -0
  47. data/ext/asyncengine/libuv/src/ares/ares_expand_name.o +0 -0
  48. data/ext/asyncengine/libuv/src/ares/ares_expand_string.o +0 -0
  49. data/ext/asyncengine/libuv/src/ares/ares_fds.o +0 -0
  50. data/ext/asyncengine/libuv/src/ares/ares_free_hostent.o +0 -0
  51. data/ext/asyncengine/libuv/src/ares/ares_free_string.o +0 -0
  52. data/ext/asyncengine/libuv/src/ares/ares_gethostbyaddr.o +0 -0
  53. data/ext/asyncengine/libuv/src/ares/ares_gethostbyname.o +0 -0
  54. data/ext/asyncengine/libuv/src/ares/ares_getnameinfo.o +0 -0
  55. data/ext/asyncengine/libuv/src/ares/ares_getopt.o +0 -0
  56. data/ext/asyncengine/libuv/src/ares/ares_getsock.o +0 -0
  57. data/ext/asyncengine/libuv/src/ares/ares_init.o +0 -0
  58. data/ext/asyncengine/libuv/src/ares/ares_library_init.o +0 -0
  59. data/ext/asyncengine/libuv/src/ares/ares_llist.o +0 -0
  60. data/ext/asyncengine/libuv/src/ares/ares_mkquery.o +0 -0
  61. data/ext/asyncengine/libuv/src/ares/ares_nowarn.o +0 -0
  62. data/ext/asyncengine/libuv/src/ares/ares_options.o +0 -0
  63. data/ext/asyncengine/libuv/src/ares/ares_parse_a_reply.o +0 -0
  64. data/ext/asyncengine/libuv/src/ares/ares_parse_aaaa_reply.o +0 -0
  65. data/ext/asyncengine/libuv/src/ares/ares_parse_mx_reply.o +0 -0
  66. data/ext/asyncengine/libuv/src/ares/ares_parse_ns_reply.o +0 -0
  67. data/ext/asyncengine/libuv/src/ares/ares_parse_ptr_reply.o +0 -0
  68. data/ext/asyncengine/libuv/src/ares/ares_parse_srv_reply.o +0 -0
  69. data/ext/asyncengine/libuv/src/ares/ares_parse_txt_reply.o +0 -0
  70. data/ext/asyncengine/libuv/src/ares/ares_process.o +0 -0
  71. data/ext/asyncengine/libuv/src/ares/ares_query.o +0 -0
  72. data/ext/asyncengine/libuv/src/ares/ares_search.o +0 -0
  73. data/ext/asyncengine/libuv/src/ares/ares_send.o +0 -0
  74. data/ext/asyncengine/libuv/src/ares/ares_strcasecmp.o +0 -0
  75. data/ext/asyncengine/libuv/src/ares/ares_strdup.o +0 -0
  76. data/ext/asyncengine/libuv/src/ares/ares_strerror.o +0 -0
  77. data/ext/asyncengine/libuv/src/ares/ares_timeout.o +0 -0
  78. data/ext/asyncengine/libuv/src/ares/ares_version.o +0 -0
  79. data/ext/asyncengine/libuv/src/ares/ares_writev.o +0 -0
  80. data/ext/asyncengine/libuv/src/ares/bitncmp.o +0 -0
  81. data/ext/asyncengine/libuv/src/ares/inet_net_pton.o +0 -0
  82. data/ext/asyncengine/libuv/src/ares/inet_ntop.o +0 -0
  83. data/ext/asyncengine/libuv/src/cares.c +225 -0
  84. data/ext/asyncengine/libuv/src/cares.o +0 -0
  85. data/ext/asyncengine/libuv/src/fs-poll.c +237 -0
  86. data/ext/asyncengine/libuv/src/fs-poll.o +0 -0
  87. data/ext/asyncengine/libuv/src/unix/async.c +78 -17
  88. data/ext/asyncengine/libuv/src/unix/async.o +0 -0
  89. data/ext/asyncengine/libuv/src/unix/core.c +305 -213
  90. data/ext/asyncengine/libuv/src/unix/core.o +0 -0
  91. data/ext/asyncengine/libuv/src/unix/cygwin.c +1 -1
  92. data/ext/asyncengine/libuv/src/unix/darwin.c +2 -1
  93. data/ext/asyncengine/libuv/src/unix/dl.c +36 -44
  94. data/ext/asyncengine/libuv/src/unix/dl.o +0 -0
  95. data/ext/asyncengine/libuv/src/unix/eio/eio.o +0 -0
  96. data/ext/asyncengine/libuv/src/unix/error.c +6 -0
  97. data/ext/asyncengine/libuv/src/unix/error.o +0 -0
  98. data/ext/asyncengine/libuv/src/unix/ev/ev.c +8 -4
  99. data/ext/asyncengine/libuv/src/unix/ev/ev.o +0 -0
  100. data/ext/asyncengine/libuv/src/unix/freebsd.c +1 -1
  101. data/ext/asyncengine/libuv/src/unix/fs.c +25 -33
  102. data/ext/asyncengine/libuv/src/unix/fs.o +0 -0
  103. data/ext/asyncengine/libuv/src/unix/internal.h +50 -31
  104. data/ext/asyncengine/libuv/src/unix/kqueue.c +2 -7
  105. data/ext/asyncengine/libuv/src/unix/linux/core.o +0 -0
  106. data/ext/asyncengine/libuv/src/unix/linux/inotify.c +12 -14
  107. data/ext/asyncengine/libuv/src/unix/linux/inotify.o +0 -0
  108. data/ext/asyncengine/libuv/src/unix/linux/{core.c → linux-core.c} +1 -1
  109. data/ext/asyncengine/libuv/src/unix/linux/linux-core.o +0 -0
  110. data/ext/asyncengine/libuv/src/unix/linux/syscalls.c +147 -1
  111. data/ext/asyncengine/libuv/src/unix/linux/syscalls.h +39 -2
  112. data/ext/asyncengine/libuv/src/unix/linux/syscalls.o +0 -0
  113. data/ext/asyncengine/libuv/src/unix/loop-watcher.c +63 -0
  114. data/ext/asyncengine/libuv/src/unix/loop-watcher.o +0 -0
  115. data/ext/asyncengine/libuv/src/unix/loop.c +29 -6
  116. data/ext/asyncengine/libuv/src/unix/loop.o +0 -0
  117. data/ext/asyncengine/libuv/src/unix/netbsd.c +1 -1
  118. data/ext/asyncengine/libuv/src/unix/openbsd.c +1 -1
  119. data/ext/asyncengine/libuv/src/unix/pipe.c +31 -36
  120. data/ext/asyncengine/libuv/src/unix/pipe.o +0 -0
  121. data/ext/asyncengine/libuv/src/unix/poll.c +116 -0
  122. data/ext/asyncengine/libuv/src/unix/poll.o +0 -0
  123. data/ext/asyncengine/libuv/src/unix/process.c +193 -115
  124. data/ext/asyncengine/libuv/src/unix/process.o +0 -0
  125. data/ext/asyncengine/libuv/src/unix/stream.c +146 -153
  126. data/ext/asyncengine/libuv/src/unix/stream.o +0 -0
  127. data/ext/asyncengine/libuv/src/unix/sunos.c +45 -36
  128. data/ext/asyncengine/libuv/src/unix/tcp.c +6 -5
  129. data/ext/asyncengine/libuv/src/unix/tcp.o +0 -0
  130. data/ext/asyncengine/libuv/src/unix/thread.c +82 -25
  131. data/ext/asyncengine/libuv/src/unix/thread.o +0 -0
  132. data/ext/asyncengine/libuv/src/unix/timer.c +69 -58
  133. data/ext/asyncengine/libuv/src/unix/timer.o +0 -0
  134. data/ext/asyncengine/libuv/src/unix/tty.c +3 -3
  135. data/ext/asyncengine/libuv/src/unix/tty.o +0 -0
  136. data/ext/asyncengine/libuv/src/unix/udp.c +57 -66
  137. data/ext/asyncengine/libuv/src/unix/udp.o +0 -0
  138. data/ext/asyncengine/libuv/src/unix/uv-eio.c +33 -50
  139. data/ext/asyncengine/libuv/src/unix/uv-eio.o +0 -0
  140. data/ext/asyncengine/libuv/src/uv-common.c +68 -38
  141. data/ext/asyncengine/libuv/src/uv-common.h +104 -20
  142. data/ext/asyncengine/libuv/src/uv-common.o +0 -0
  143. data/ext/asyncengine/libuv/src/win/async.c +20 -17
  144. data/ext/asyncengine/libuv/src/win/core.c +44 -31
  145. data/ext/asyncengine/libuv/src/win/dl.c +40 -36
  146. data/ext/asyncengine/libuv/src/win/error.c +21 -1
  147. data/ext/asyncengine/libuv/src/win/fs-event.c +19 -21
  148. data/ext/asyncengine/libuv/src/win/fs.c +541 -189
  149. data/ext/asyncengine/libuv/src/win/getaddrinfo.c +56 -63
  150. data/ext/asyncengine/libuv/src/win/handle-inl.h +145 -0
  151. data/ext/asyncengine/libuv/src/win/handle.c +26 -101
  152. data/ext/asyncengine/libuv/src/win/internal.h +92 -107
  153. data/ext/asyncengine/libuv/src/win/loop-watcher.c +6 -14
  154. data/ext/asyncengine/libuv/src/win/pipe.c +78 -64
  155. data/ext/asyncengine/libuv/src/win/poll.c +618 -0
  156. data/ext/asyncengine/libuv/src/win/process-stdio.c +479 -0
  157. data/ext/asyncengine/libuv/src/win/process.c +147 -274
  158. data/ext/asyncengine/libuv/src/win/req-inl.h +225 -0
  159. data/ext/asyncengine/libuv/src/win/req.c +0 -149
  160. data/ext/asyncengine/libuv/src/{unix/check.c → win/stream-inl.h} +31 -42
  161. data/ext/asyncengine/libuv/src/win/stream.c +9 -43
  162. data/ext/asyncengine/libuv/src/win/tcp.c +200 -82
  163. data/ext/asyncengine/libuv/src/win/thread.c +42 -2
  164. data/ext/asyncengine/libuv/src/win/threadpool.c +3 -2
  165. data/ext/asyncengine/libuv/src/win/timer.c +13 -63
  166. data/ext/asyncengine/libuv/src/win/tty.c +26 -20
  167. data/ext/asyncengine/libuv/src/win/udp.c +26 -17
  168. data/ext/asyncengine/libuv/src/win/util.c +312 -167
  169. data/ext/asyncengine/libuv/src/win/winapi.c +16 -1
  170. data/ext/asyncengine/libuv/src/win/winapi.h +33 -9
  171. data/ext/asyncengine/libuv/src/win/winsock.c +88 -1
  172. data/ext/asyncengine/libuv/src/win/winsock.h +36 -3
  173. data/ext/asyncengine/libuv/test/benchmark-ares.c +16 -17
  174. data/ext/asyncengine/libuv/test/benchmark-fs-stat.c +164 -0
  175. data/ext/asyncengine/libuv/test/benchmark-list.h +9 -0
  176. data/ext/asyncengine/libuv/{src/unix/prepare.c → test/benchmark-loop-count.c} +42 -33
  177. data/ext/asyncengine/libuv/test/benchmark-million-timers.c +65 -0
  178. data/ext/asyncengine/libuv/test/benchmark-pound.c +1 -1
  179. data/ext/asyncengine/libuv/test/benchmark-sizes.c +2 -0
  180. data/ext/asyncengine/libuv/test/benchmark-spawn.c +7 -1
  181. data/ext/asyncengine/libuv/test/benchmark-udp-packet-storm.c +1 -1
  182. data/ext/asyncengine/libuv/test/echo-server.c +8 -0
  183. data/ext/asyncengine/libuv/test/run-tests.c +30 -0
  184. data/ext/asyncengine/libuv/test/runner-unix.c +6 -26
  185. data/ext/asyncengine/libuv/test/runner-win.c +5 -63
  186. data/ext/asyncengine/libuv/test/runner.c +10 -1
  187. data/ext/asyncengine/libuv/test/task.h +0 -8
  188. data/ext/asyncengine/libuv/test/test-async.c +43 -141
  189. data/ext/asyncengine/libuv/test/test-callback-order.c +76 -0
  190. data/ext/asyncengine/libuv/test/test-counters-init.c +2 -3
  191. data/ext/asyncengine/libuv/test/test-dlerror.c +17 -8
  192. data/ext/asyncengine/libuv/test/test-fs-event.c +31 -39
  193. data/ext/asyncengine/libuv/test/test-fs-poll.c +146 -0
  194. data/ext/asyncengine/libuv/test/test-fs.c +114 -2
  195. data/ext/asyncengine/libuv/test/test-gethostbyname.c +8 -8
  196. data/ext/asyncengine/libuv/test/test-hrtime.c +18 -15
  197. data/ext/asyncengine/libuv/test/test-ipc.c +8 -2
  198. data/ext/asyncengine/libuv/test/test-list.h +59 -9
  199. data/ext/asyncengine/libuv/test/test-loop-handles.c +2 -25
  200. data/ext/asyncengine/libuv/{src/unix/idle.c → test/test-poll-close.c} +37 -39
  201. data/ext/asyncengine/libuv/test/test-poll.c +573 -0
  202. data/ext/asyncengine/libuv/test/test-ref.c +79 -63
  203. data/ext/asyncengine/libuv/test/test-run-once.c +15 -11
  204. data/ext/asyncengine/libuv/test/test-semaphore.c +111 -0
  205. data/ext/asyncengine/libuv/test/test-spawn.c +368 -20
  206. data/ext/asyncengine/libuv/test/test-stdio-over-pipes.c +25 -35
  207. data/ext/asyncengine/libuv/test/test-tcp-close-while-connecting.c +80 -0
  208. data/ext/asyncengine/libuv/test/test-tcp-close.c +1 -1
  209. data/ext/asyncengine/libuv/test/test-tcp-connect-error-after-write.c +95 -0
  210. data/ext/asyncengine/libuv/test/test-tcp-connect-timeout.c +85 -0
  211. data/ext/asyncengine/libuv/test/test-tcp-shutdown-after-write.c +131 -0
  212. data/ext/asyncengine/libuv/test/test-tcp-write-error.c +2 -2
  213. data/ext/asyncengine/libuv/test/test-tcp-writealot.c +29 -54
  214. data/ext/asyncengine/libuv/test/test-timer-again.c +1 -1
  215. data/ext/asyncengine/libuv/test/test-timer.c +23 -1
  216. data/ext/asyncengine/libuv/test/test-udp-options.c +1 -1
  217. data/ext/asyncengine/libuv/test/{test-eio-overflow.c → test-walk-handles.c} +31 -44
  218. data/ext/asyncengine/libuv/uv.gyp +26 -9
  219. data/ext/asyncengine/rb_utilities.c +54 -0
  220. data/ext/asyncengine/rb_utilities.h +63 -0
  221. data/lib/asyncengine.rb +45 -38
  222. data/lib/asyncengine/asyncengine_ext.so +0 -0
  223. data/lib/asyncengine/debug.rb +37 -0
  224. data/lib/asyncengine/handle.rb +9 -0
  225. data/lib/asyncengine/tcp.rb +28 -0
  226. data/lib/asyncengine/timer.rb +18 -28
  227. data/lib/asyncengine/udp.rb +29 -0
  228. data/lib/asyncengine/utils.rb +32 -0
  229. data/lib/asyncengine/uv_error.rb +17 -0
  230. data/lib/asyncengine/version.rb +9 -1
  231. data/test/ae_test_helper.rb +62 -0
  232. data/test/test_basic.rb +169 -0
  233. data/test/test_call_from_other_thread.rb +55 -0
  234. data/test/test_error.rb +92 -0
  235. data/test/test_ip_utils.rb +44 -0
  236. data/test/test_next_tick.rb +37 -0
  237. data/test/test_resolver.rb +51 -0
  238. data/test/test_threads.rb +69 -0
  239. data/test/test_timer.rb +95 -0
  240. data/test/test_udp.rb +216 -0
  241. data/test/test_utils.rb +49 -0
  242. metadata +84 -57
  243. data/ext/asyncengine/libuv/mkmf.log +0 -24
  244. data/ext/asyncengine/libuv/src/unix/cares.c +0 -194
  245. data/ext/asyncengine/libuv/src/unix/cares.o +0 -0
  246. data/ext/asyncengine/libuv/src/unix/check.o +0 -0
  247. data/ext/asyncengine/libuv/src/unix/idle.o +0 -0
  248. data/ext/asyncengine/libuv/src/unix/prepare.o +0 -0
  249. data/ext/asyncengine/libuv/src/win/cares.c +0 -290
  250. data/lib/asyncengine/errors.rb +0 -5
  251. data/lib/asyncengine/next_tick.rb +0 -24
@@ -0,0 +1,225 @@
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
+
22
+ #ifndef UV_WIN_REQ_INL_H_
23
+ #define UV_WIN_REQ_INL_H_
24
+
25
+ #include <assert.h>
26
+
27
+ #include "uv.h"
28
+ #include "internal.h"
29
+
30
+
31
+ #define SET_REQ_STATUS(req, status) \
32
+ (req)->overlapped.Internal = (ULONG_PTR) (status)
33
+
34
+ #define SET_REQ_ERROR(req, error) \
35
+ SET_REQ_STATUS((req), NTSTATUS_FROM_WIN32((error)))
36
+
37
+ #define SET_REQ_SUCCESS(req) \
38
+ SET_REQ_STATUS((req), STATUS_SUCCESS)
39
+
40
+ #define GET_REQ_STATUS(req) \
41
+ ((NTSTATUS) (req)->overlapped.Internal)
42
+
43
+ #define REQ_SUCCESS(req) \
44
+ (NT_SUCCESS(GET_REQ_STATUS((req))))
45
+
46
+ #define GET_REQ_ERROR(req) \
47
+ (pRtlNtStatusToDosError(GET_REQ_STATUS((req))))
48
+
49
+ #define GET_REQ_SOCK_ERROR(req) \
50
+ (uv_ntstatus_to_winsock_error(GET_REQ_STATUS((req))))
51
+
52
+
53
+ #define REGISTER_HANDLE_REQ(loop, handle, req) \
54
+ do { \
55
+ INCREASE_ACTIVE_COUNT((loop), (handle)); \
56
+ uv__req_register((loop), (req)); \
57
+ } while (0)
58
+
59
+ #define UNREGISTER_HANDLE_REQ(loop, handle, req) \
60
+ do { \
61
+ DECREASE_ACTIVE_COUNT((loop), (handle)); \
62
+ uv__req_unregister((loop), (req)); \
63
+ } while (0)
64
+
65
+
66
+ #define UV_SUCCEEDED_WITHOUT_IOCP(result) \
67
+ ((result) && (handle->flags & UV_HANDLE_SYNC_BYPASS_IOCP))
68
+
69
+ #define UV_SUCCEEDED_WITH_IOCP(result) \
70
+ ((result) || (GetLastError() == ERROR_IO_PENDING))
71
+
72
+
73
+ #define POST_COMPLETION_FOR_REQ(loop, req) \
74
+ if (!PostQueuedCompletionStatus((loop)->iocp, \
75
+ 0, \
76
+ 0, \
77
+ &((req)->overlapped))) { \
78
+ uv_fatal_error(GetLastError(), "PostQueuedCompletionStatus"); \
79
+ }
80
+
81
+
82
+ INLINE static void uv_req_init(uv_loop_t* loop, uv_req_t* req) {
83
+ loop->counters.req_init++;
84
+ req->type = UV_UNKNOWN_REQ;
85
+ SET_REQ_SUCCESS(req);
86
+ }
87
+
88
+
89
+ INLINE static uv_req_t* uv_overlapped_to_req(OVERLAPPED* overlapped) {
90
+ return CONTAINING_RECORD(overlapped, uv_req_t, overlapped);
91
+ }
92
+
93
+
94
+ INLINE static void uv_insert_pending_req(uv_loop_t* loop, uv_req_t* req) {
95
+ req->next_req = NULL;
96
+ if (loop->pending_reqs_tail) {
97
+ req->next_req = loop->pending_reqs_tail->next_req;
98
+ loop->pending_reqs_tail->next_req = req;
99
+ loop->pending_reqs_tail = req;
100
+ } else {
101
+ req->next_req = req;
102
+ loop->pending_reqs_tail = req;
103
+ }
104
+ }
105
+
106
+
107
+ #define DELEGATE_STREAM_REQ(loop, req, method, handle_at) \
108
+ do { \
109
+ switch (((uv_handle_t*) (req)->handle_at)->type) { \
110
+ case UV_TCP: \
111
+ uv_process_tcp_##method##_req(loop, \
112
+ (uv_tcp_t*) ((req)->handle_at), \
113
+ req); \
114
+ break; \
115
+ \
116
+ case UV_NAMED_PIPE: \
117
+ uv_process_pipe_##method##_req(loop, \
118
+ (uv_pipe_t*) ((req)->handle_at), \
119
+ req); \
120
+ break; \
121
+ \
122
+ case UV_TTY: \
123
+ uv_process_tty_##method##_req(loop, \
124
+ (uv_tty_t*) ((req)->handle_at), \
125
+ req); \
126
+ break; \
127
+ \
128
+ default: \
129
+ assert(0); \
130
+ } \
131
+ } while (0)
132
+
133
+
134
+ INLINE static void uv_process_reqs(uv_loop_t* loop) {
135
+ uv_req_t* req;
136
+ uv_req_t* first;
137
+ uv_req_t* next;
138
+
139
+ if (loop->pending_reqs_tail == NULL) {
140
+ return;
141
+ }
142
+
143
+ first = loop->pending_reqs_tail->next_req;
144
+ next = first;
145
+ loop->pending_reqs_tail = NULL;
146
+
147
+ while (next != NULL) {
148
+ req = next;
149
+ next = req->next_req != first ? req->next_req : NULL;
150
+
151
+ switch (req->type) {
152
+ case UV_READ:
153
+ DELEGATE_STREAM_REQ(loop, req, read, data);
154
+ break;
155
+
156
+ case UV_WRITE:
157
+ DELEGATE_STREAM_REQ(loop, (uv_write_t*) req, write, handle);
158
+ break;
159
+
160
+ case UV_ACCEPT:
161
+ DELEGATE_STREAM_REQ(loop, req, accept, data);
162
+ break;
163
+
164
+ case UV_CONNECT:
165
+ DELEGATE_STREAM_REQ(loop, (uv_connect_t*) req, connect, handle);
166
+ break;
167
+
168
+ case UV_SHUTDOWN:
169
+ /* Tcp shutdown requests don't come here. */
170
+ assert(((uv_shutdown_t*) req)->handle->type == UV_NAMED_PIPE);
171
+ uv_process_pipe_shutdown_req(
172
+ loop,
173
+ (uv_pipe_t*) ((uv_shutdown_t*) req)->handle,
174
+ (uv_shutdown_t*) req);
175
+ break;
176
+
177
+ case UV_UDP_RECV:
178
+ uv_process_udp_recv_req(loop, (uv_udp_t*) req->data, req);
179
+ break;
180
+
181
+ case UV_UDP_SEND:
182
+ uv_process_udp_send_req(loop,
183
+ ((uv_udp_send_t*) req)->handle,
184
+ (uv_udp_send_t*) req);
185
+ break;
186
+
187
+ case UV_WAKEUP:
188
+ uv_process_async_wakeup_req(loop, (uv_async_t*) req->data, req);
189
+ break;
190
+
191
+ case UV_POLL_REQ:
192
+ uv_process_poll_req(loop, (uv_poll_t*) req->data, req);
193
+ break;
194
+
195
+ case UV_GETADDRINFO:
196
+ uv_process_getaddrinfo_req(loop, (uv_getaddrinfo_t*) req);
197
+ break;
198
+
199
+ case UV_PROCESS_EXIT:
200
+ uv_process_proc_exit(loop, (uv_process_t*) req->data);
201
+ break;
202
+
203
+ case UV_PROCESS_CLOSE:
204
+ uv_process_proc_close(loop, (uv_process_t*) req->data);
205
+ break;
206
+
207
+ case UV_FS:
208
+ uv_process_fs_req(loop, (uv_fs_t*) req);
209
+ break;
210
+
211
+ case UV_WORK:
212
+ uv_process_work_req(loop, (uv_work_t*) req);
213
+ break;
214
+
215
+ case UV_FS_EVENT_REQ:
216
+ uv_process_fs_event_req(loop, req, (uv_fs_event_t*) req->data);
217
+ break;
218
+
219
+ default:
220
+ assert(0);
221
+ }
222
+ }
223
+ }
224
+
225
+ #endif /* UV_WIN_REQ_INL_H_ */
@@ -22,153 +22,4 @@
22
22
  #include <assert.h>
23
23
 
24
24
  #include "uv.h"
25
- #include "../uv-common.h"
26
25
  #include "internal.h"
27
-
28
-
29
- void uv_req_init(uv_loop_t* loop, uv_req_t* req) {
30
- loop->counters.req_init++;
31
- req->type = UV_UNKNOWN_REQ;
32
- SET_REQ_SUCCESS(req);
33
- }
34
-
35
-
36
- uv_req_t* uv_overlapped_to_req(OVERLAPPED* overlapped) {
37
- return CONTAINING_RECORD(overlapped, uv_req_t, overlapped);
38
- }
39
-
40
-
41
- void uv_insert_pending_req(uv_loop_t* loop, uv_req_t* req) {
42
- req->next_req = NULL;
43
- if (loop->pending_reqs_tail) {
44
- req->next_req = loop->pending_reqs_tail->next_req;
45
- loop->pending_reqs_tail->next_req = req;
46
- loop->pending_reqs_tail = req;
47
- } else {
48
- req->next_req = req;
49
- loop->pending_reqs_tail = req;
50
- }
51
- }
52
-
53
-
54
- #define DELEGATE_STREAM_REQ(loop, req, method, handle_at) \
55
- do { \
56
- switch (((uv_handle_t*) (req)->handle_at)->type) { \
57
- case UV_TCP: \
58
- uv_process_tcp_##method##_req(loop, \
59
- (uv_tcp_t*) ((req)->handle_at), \
60
- req); \
61
- break; \
62
- \
63
- case UV_NAMED_PIPE: \
64
- uv_process_pipe_##method##_req(loop, \
65
- (uv_pipe_t*) ((req)->handle_at), \
66
- req); \
67
- break; \
68
- \
69
- case UV_TTY: \
70
- uv_process_tty_##method##_req(loop, \
71
- (uv_tty_t*) ((req)->handle_at), \
72
- req); \
73
- break; \
74
- \
75
- default: \
76
- assert(0); \
77
- } \
78
- } while (0)
79
-
80
-
81
- void uv_process_reqs(uv_loop_t* loop) {
82
- uv_req_t* req;
83
- uv_req_t* first;
84
- uv_req_t* next;
85
-
86
- if (loop->pending_reqs_tail == NULL) {
87
- return;
88
- }
89
-
90
- first = loop->pending_reqs_tail->next_req;
91
- next = first;
92
- loop->pending_reqs_tail = NULL;
93
-
94
- while (next != NULL) {
95
- req = next;
96
- next = req->next_req != first ? req->next_req : NULL;
97
-
98
- switch (req->type) {
99
- case UV_READ:
100
- DELEGATE_STREAM_REQ(loop, req, read, data);
101
- break;
102
-
103
- case UV_WRITE:
104
- DELEGATE_STREAM_REQ(loop, (uv_write_t*) req, write, handle);
105
- break;
106
-
107
- case UV_ACCEPT:
108
- DELEGATE_STREAM_REQ(loop, req, accept, data);
109
- break;
110
-
111
- case UV_CONNECT:
112
- DELEGATE_STREAM_REQ(loop, (uv_connect_t*) req, connect, handle);
113
- break;
114
-
115
- case UV_SHUTDOWN:
116
- /* Tcp shutdown requests don't come here. */
117
- assert(((uv_shutdown_t*) req)->handle->type == UV_NAMED_PIPE);
118
- uv_process_pipe_shutdown_req(
119
- loop,
120
- (uv_pipe_t*) ((uv_shutdown_t*) req)->handle,
121
- (uv_shutdown_t*) req);
122
- break;
123
-
124
- case UV_UDP_RECV:
125
- uv_process_udp_recv_req(loop, (uv_udp_t*) req->data, req);
126
- break;
127
-
128
- case UV_UDP_SEND:
129
- uv_process_udp_send_req(loop,
130
- ((uv_udp_send_t*) req)->handle,
131
- (uv_udp_send_t*) req);
132
- break;
133
-
134
- case UV_WAKEUP:
135
- uv_process_async_wakeup_req(loop, (uv_async_t*) req->data, req);
136
- break;
137
-
138
- case UV_ARES_EVENT_REQ:
139
- uv_process_ares_event_req(loop, (uv_ares_action_t*) req->data, req);
140
- break;
141
-
142
- case UV_ARES_CLEANUP_REQ:
143
- uv_process_ares_cleanup_req(loop, (uv_ares_task_t*) req->data, req);
144
- break;
145
-
146
- case UV_GETADDRINFO_REQ:
147
- uv_process_getaddrinfo_req(loop, (uv_getaddrinfo_t*) req->data, req);
148
- break;
149
-
150
- case UV_PROCESS_EXIT:
151
- uv_process_proc_exit(loop, (uv_process_t*) req->data);
152
- break;
153
-
154
- case UV_PROCESS_CLOSE:
155
- uv_process_proc_close(loop, (uv_process_t*) req->data);
156
- break;
157
-
158
- case UV_FS:
159
- uv_process_fs_req(loop, (uv_fs_t*) req);
160
- break;
161
-
162
- case UV_WORK:
163
- uv_process_work_req(loop, (uv_work_t*) req);
164
- break;
165
-
166
- case UV_FS_EVENT_REQ:
167
- uv_process_fs_event_req(loop, req, (uv_fs_event_t*) req->data);
168
- break;
169
-
170
- default:
171
- assert(0);
172
- }
173
- }
174
- }
@@ -1,4 +1,5 @@
1
1
  /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2
+ *
2
3
  * Permission is hereby granted, free of charge, to any person obtaining a copy
3
4
  * of this software and associated documentation files (the "Software"), to
4
5
  * deal in the Software without restriction, including without limitation the
@@ -18,63 +19,51 @@
18
19
  * IN THE SOFTWARE.
19
20
  */
20
21
 
21
- #include "uv.h"
22
- #include "internal.h"
22
+ #ifndef UV_WIN_STREAM_INL_H_
23
+ #define UV_WIN_STREAM_INL_H_
23
24
 
25
+ #include <assert.h>
24
26
 
25
- static void uv__check(EV_P_ ev_check* w, int revents) {
26
- uv_check_t* check = container_of(w, uv_check_t, check_watcher);
27
-
28
- if (check->check_cb) {
29
- check->check_cb(check, 0);
30
- }
31
- }
32
-
27
+ #include "uv.h"
28
+ #include "internal.h"
29
+ #include "handle-inl.h"
30
+ #include "req-inl.h"
33
31
 
34
- int uv_check_init(uv_loop_t* loop, uv_check_t* check) {
35
- uv__handle_init(loop, (uv_handle_t*)check, UV_CHECK);
36
- loop->counters.check_init++;
37
32
 
38
- ev_check_init(&check->check_watcher, uv__check);
39
- check->check_cb = NULL;
33
+ INLINE static void uv_stream_init(uv_loop_t* loop,
34
+ uv_stream_t* handle,
35
+ uv_handle_type type) {
36
+ uv__handle_init(loop, (uv_handle_t*) handle, type);
37
+ handle->write_queue_size = 0;
38
+ handle->activecnt = 0;
40
39
 
41
- return 0;
40
+ loop->counters.stream_init++;
42
41
  }
43
42
 
44
43
 
45
- int uv_check_start(uv_check_t* check, uv_check_cb cb) {
46
- int was_active = ev_is_active(&check->check_watcher);
44
+ INLINE static void uv_connection_init(uv_stream_t* handle) {
45
+ handle->flags |= UV_HANDLE_CONNECTION;
46
+ handle->write_reqs_pending = 0;
47
47
 
48
- check->check_cb = cb;
48
+ uv_req_init(handle->loop, (uv_req_t*) &(handle->read_req));
49
+ handle->read_req.event_handle = NULL;
50
+ handle->read_req.wait_handle = INVALID_HANDLE_VALUE;
51
+ handle->read_req.type = UV_READ;
52
+ handle->read_req.data = handle;
49
53
 
50
- ev_check_start(check->loop->ev, &check->check_watcher);
51
-
52
- if (!was_active) {
53
- ev_unref(check->loop->ev);
54
- }
55
-
56
- return 0;
54
+ handle->shutdown_req = NULL;
57
55
  }
58
56
 
59
57
 
60
- int uv_check_stop(uv_check_t* check) {
61
- int was_active = ev_is_active(&check->check_watcher);
58
+ INLINE static size_t uv_count_bufs(uv_buf_t bufs[], int count) {
59
+ size_t bytes = 0;
60
+ int i;
62
61
 
63
- ev_check_stop(check->loop->ev, &check->check_watcher);
64
-
65
- if (was_active) {
66
- ev_ref(check->loop->ev);
62
+ for (i = 0; i < count; i++) {
63
+ bytes += (size_t)bufs[i].len;
67
64
  }
68
65
 
69
- return 0;
66
+ return bytes;
70
67
  }
71
68
 
72
-
73
- int uv__check_active(const uv_check_t* handle) {
74
- return ev_is_active(&handle->check_watcher);
75
- }
76
-
77
-
78
- void uv__check_close(uv_check_t* handle) {
79
- uv_check_stop(handle);
80
- }
69
+ #endif /* UV_WIN_STREAM_INL_H_ */