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
@@ -41,12 +41,6 @@ static char output[OUTPUT_SIZE];
41
41
  static int output_used;
42
42
 
43
43
 
44
- typedef struct {
45
- uv_write_t req;
46
- uv_buf_t buf;
47
- } write_req_t;
48
-
49
-
50
44
  static void close_cb(uv_handle_t* handle) {
51
45
  printf("close_cb\n");
52
46
  close_cb_called++;
@@ -78,45 +72,38 @@ static void init_process_options(char* test, uv_exit_cb exit_cb) {
78
72
 
79
73
 
80
74
  static uv_buf_t on_alloc(uv_handle_t* handle, size_t suggested_size) {
81
- uv_buf_t buf;
82
- buf.base = output + output_used;
83
- buf.len = OUTPUT_SIZE - output_used;
84
- return buf;
75
+ return uv_buf_init(output + output_used, OUTPUT_SIZE - output_used);
85
76
  }
86
77
 
87
78
 
88
79
  static void after_write(uv_write_t* req, int status) {
89
- write_req_t* wr;
90
-
91
80
  if (status) {
92
81
  uv_err_t err = uv_last_error(loop);
93
82
  fprintf(stderr, "uv_write error: %s\n", uv_strerror(err));
94
83
  ASSERT(0);
95
84
  }
96
85
 
97
- wr = (write_req_t*) req;
98
-
99
86
  /* Free the read/write buffer and the request */
100
- free(wr);
87
+ free(req);
101
88
 
102
89
  after_write_cb_called++;
103
90
  }
104
91
 
105
92
 
106
- static void on_read(uv_stream_t* tcp, ssize_t nread, uv_buf_t buf) {
107
- write_req_t* write_req;
93
+ static void on_read(uv_stream_t* tcp, ssize_t nread, uv_buf_t rdbuf) {
94
+ uv_write_t* req;
95
+ uv_buf_t wrbuf;
108
96
  int r;
109
- uv_err_t err = uv_last_error(uv_default_loop());
110
97
 
111
- ASSERT(nread > 0 || err.code == UV_EOF);
98
+ ASSERT(nread > 0 || uv_last_error(uv_default_loop()).code == UV_EOF);
112
99
 
113
100
  if (nread > 0) {
114
101
  output_used += nread;
115
102
  if (output_used == 12) {
116
103
  ASSERT(memcmp("hello world\n", output, 12) == 0);
117
- write_req = (write_req_t*)malloc(sizeof(*write_req));
118
- write_req->buf = uv_buf_init(output, output_used);
119
- r = uv_write(&write_req->req, (uv_stream_t*)&in, &write_req->buf, 1, after_write);
104
+ wrbuf = uv_buf_init(output, output_used);
105
+ req = malloc(sizeof(*req));
106
+ r = uv_write(req, (uv_stream_t*)&in, &wrbuf, 1, after_write);
120
107
  ASSERT(r == 0);
121
108
  }
122
109
  }
@@ -128,14 +115,21 @@ static void on_read(uv_stream_t* tcp, ssize_t nread, uv_buf_t buf) {
128
115
  TEST_IMPL(stdio_over_pipes) {
129
116
  int r;
130
117
  uv_process_t process;
118
+ uv_stdio_container_t stdio[2];
119
+
131
120
  loop = uv_default_loop();
132
121
 
133
122
  init_process_options("stdio_over_pipes_helper", exit_cb);
134
123
 
135
124
  uv_pipe_init(loop, &out, 0);
136
- options.stdout_stream = &out;
137
125
  uv_pipe_init(loop, &in, 0);
138
- options.stdin_stream = ∈
126
+
127
+ options.stdio = stdio;
128
+ options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE;
129
+ options.stdio[0].data.stream = (uv_stream_t*)∈
130
+ options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE;
131
+ options.stdio[1].data.stream = (uv_stream_t*)&out;
132
+ options.stdio_count = 2;
139
133
 
140
134
  r = uv_spawn(loop, &process, options);
141
135
  ASSERT(r == 0);
@@ -182,12 +176,8 @@ static void after_pipe_write(uv_write_t* req, int status) {
182
176
  }
183
177
 
184
178
 
185
- static uv_buf_t on_read_alloc(uv_handle_t* handle,
186
- size_t suggested_size) {
187
- uv_buf_t buf;
188
- buf.base = (char*)malloc(suggested_size);
189
- buf.len = suggested_size;
190
- return buf;
179
+ static uv_buf_t on_read_alloc(uv_handle_t* handle, size_t suggested_size) {
180
+ return uv_buf_init(malloc(suggested_size), suggested_size);
191
181
  }
192
182
 
193
183
 
@@ -220,8 +210,8 @@ int stdio_over_pipes_helper() {
220
210
  uv_pipe_open(&stdout_pipe, 1);
221
211
 
222
212
  /* Unref both stdio handles to make sure that all writes complete. */
223
- uv_unref(loop);
224
- uv_unref(loop);
213
+ uv_unref((uv_handle_t*)&stdin_pipe);
214
+ uv_unref((uv_handle_t*)&stdout_pipe);
225
215
 
226
216
  for (i = 0; i < ARRAY_SIZE(buffers); i++) {
227
217
  buf[i] = uv_buf_init((char*)buffers[i], strlen(buffers[i]));
@@ -239,8 +229,8 @@ int stdio_over_pipes_helper() {
239
229
  ASSERT(on_pipe_read_called == 0);
240
230
  ASSERT(close_cb_called == 0);
241
231
 
242
- uv_ref(loop);
243
- uv_ref(loop);
232
+ uv_ref((uv_handle_t*)&stdout_pipe);
233
+ uv_ref((uv_handle_t*)&stdin_pipe);
244
234
 
245
235
  r = uv_read_start((uv_stream_t*)&stdin_pipe, on_read_alloc,
246
236
  on_pipe_read);
@@ -253,4 +243,4 @@ int stdio_over_pipes_helper() {
253
243
  ASSERT(close_cb_called == 2);
254
244
 
255
245
  return 0;
256
- }
246
+ }
@@ -0,0 +1,80 @@
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
+ #include "uv.h"
23
+ #include "task.h"
24
+
25
+ static uv_timer_t timer1_handle;
26
+ static uv_timer_t timer2_handle;
27
+ static uv_tcp_t tcp_handle;
28
+
29
+ static int connect_cb_called;
30
+ static int timer1_cb_called;
31
+ static int close_cb_called;
32
+
33
+
34
+ static void close_cb(uv_handle_t* handle) {
35
+ close_cb_called++;
36
+ }
37
+
38
+
39
+ static void connect_cb(uv_connect_t* req, int status) {
40
+ ASSERT(status == -1);
41
+ ASSERT(uv_last_error(req->handle->loop).code == UV_EINTR);
42
+ uv_timer_stop(&timer2_handle);
43
+ connect_cb_called++;
44
+ }
45
+
46
+
47
+ static void timer1_cb(uv_timer_t* handle, int status) {
48
+ uv_close((uv_handle_t*)handle, close_cb);
49
+ uv_close((uv_handle_t*)&tcp_handle, close_cb);
50
+ timer1_cb_called++;
51
+ }
52
+
53
+
54
+ static void timer2_cb(uv_timer_t* handle, int status) {
55
+ ASSERT(0 && "should not be called");
56
+ }
57
+
58
+
59
+ TEST_IMPL(tcp_close_while_connecting) {
60
+ uv_connect_t connect_req;
61
+ struct sockaddr_in addr;
62
+ uv_loop_t* loop;
63
+
64
+ addr = uv_ip4_addr("1.2.3.4", TEST_PORT);
65
+ loop = uv_default_loop();
66
+
67
+ ASSERT(0 == uv_tcp_init(loop, &tcp_handle));
68
+ ASSERT(0 == uv_tcp_connect(&connect_req, &tcp_handle, addr, connect_cb));
69
+ ASSERT(0 == uv_timer_init(loop, &timer1_handle));
70
+ ASSERT(0 == uv_timer_start(&timer1_handle, timer1_cb, 50, 0));
71
+ ASSERT(0 == uv_timer_init(loop, &timer2_handle));
72
+ ASSERT(0 == uv_timer_start(&timer2_handle, timer2_cb, 86400 * 1000, 0));
73
+ ASSERT(0 == uv_run(loop));
74
+
75
+ ASSERT(connect_cb_called == 1);
76
+ ASSERT(timer1_cb_called == 1);
77
+ ASSERT(close_cb_called == 2);
78
+
79
+ return 0;
80
+ }
@@ -88,7 +88,7 @@ static void start_server(uv_loop_t* loop, uv_tcp_t* handle) {
88
88
  r = uv_listen((uv_stream_t*)handle, 128, connection_cb);
89
89
  ASSERT(r == 0);
90
90
 
91
- uv_unref(loop);
91
+ uv_unref((uv_handle_t*)handle);
92
92
  }
93
93
 
94
94
 
@@ -0,0 +1,95 @@
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
+ #include "uv.h"
23
+ #include "task.h"
24
+
25
+ #include <stdio.h>
26
+ #include <stdlib.h>
27
+ #include <string.h>
28
+
29
+ static int connect_cb_called;
30
+ static int write_cb_called;
31
+ static int close_cb_called;
32
+
33
+
34
+ static void close_cb(uv_handle_t* handle) {
35
+ close_cb_called++;
36
+ }
37
+
38
+
39
+ static void connect_cb(uv_connect_t* req, int status) {
40
+ ASSERT(status == -1);
41
+ connect_cb_called++;
42
+ uv_close((uv_handle_t*)req->handle, close_cb);
43
+ }
44
+
45
+
46
+ static void write_cb(uv_write_t* req, int status) {
47
+ ASSERT(status == -1);
48
+ write_cb_called++;
49
+ }
50
+
51
+
52
+ /*
53
+ * Try to connect to an address on which nothing listens, get ECONNREFUSED
54
+ * (uv errno 12) and get connect_cb() called once with status != 0.
55
+ * Related issue: https://github.com/joyent/libuv/issues/443
56
+ */
57
+ TEST_IMPL(tcp_connect_error_after_write) {
58
+ uv_connect_t connect_req;
59
+ struct sockaddr_in addr;
60
+ uv_write_t write_req;
61
+ uv_tcp_t conn;
62
+ uv_buf_t buf;
63
+ int r;
64
+
65
+ #ifdef _WIN32
66
+ fprintf(stderr, "This test is disabled on Windows for now.\n");
67
+ fprintf(stderr, "See https://github.com/joyent/libuv/issues/444\n");
68
+ return 0; /* windows slackers... */
69
+ #endif
70
+
71
+ addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
72
+ buf = uv_buf_init("TEST", 4);
73
+
74
+ r = uv_tcp_init(uv_default_loop(), &conn);
75
+ ASSERT(r == 0);
76
+
77
+ r = uv_write(&write_req, (uv_stream_t*)&conn, &buf, 1, write_cb);
78
+ ASSERT(r == -1);
79
+ ASSERT(uv_last_error(uv_default_loop()).code == UV_EBADF);
80
+
81
+ r = uv_tcp_connect(&connect_req, &conn, addr, connect_cb);
82
+ ASSERT(r == 0);
83
+
84
+ r = uv_write(&write_req, (uv_stream_t*)&conn, &buf, 1, write_cb);
85
+ ASSERT(r == 0);
86
+
87
+ r = uv_run(uv_default_loop());
88
+ ASSERT(r == 0);
89
+
90
+ ASSERT(connect_cb_called == 1);
91
+ ASSERT(write_cb_called == 1);
92
+ ASSERT(close_cb_called == 1);
93
+
94
+ return 0;
95
+ }
@@ -0,0 +1,85 @@
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
+ #include "uv.h"
23
+ #include "task.h"
24
+ #include <stdio.h>
25
+ #include <stdlib.h>
26
+
27
+
28
+ static int connect_cb_called;
29
+ static int close_cb_called;
30
+
31
+ static uv_connect_t connect_req;
32
+ static uv_timer_t timer;
33
+ static uv_tcp_t conn;
34
+
35
+ static void connect_cb(uv_connect_t* req, int status);
36
+ static void timer_cb(uv_timer_t* handle, int status);
37
+ static void close_cb(uv_handle_t* handle);
38
+
39
+
40
+ static void connect_cb(uv_connect_t* req, int status) {
41
+ ASSERT(req == &connect_req);
42
+ ASSERT(status == -1);
43
+ connect_cb_called++;
44
+ }
45
+
46
+
47
+ static void timer_cb(uv_timer_t* handle, int status) {
48
+ ASSERT(handle == &timer);
49
+ uv_close((uv_handle_t*)&conn, close_cb);
50
+ uv_close((uv_handle_t*)&timer, close_cb);
51
+ }
52
+
53
+
54
+ static void close_cb(uv_handle_t* handle) {
55
+ ASSERT(handle == (uv_handle_t*)&conn || handle == (uv_handle_t*)&timer);
56
+ close_cb_called++;
57
+ }
58
+
59
+
60
+ /* Verify that connecting to an unreachable address or port doesn't hang
61
+ * the event loop.
62
+ */
63
+ TEST_IMPL(tcp_connect_timeout) {
64
+ struct sockaddr_in addr;
65
+ int r;
66
+
67
+ addr = uv_ip4_addr("8.8.8.8", 9999);
68
+
69
+ r = uv_timer_init(uv_default_loop(), &timer);
70
+ ASSERT(r == 0);
71
+
72
+ r = uv_timer_start(&timer, timer_cb, 50, 0);
73
+ ASSERT(r == 0);
74
+
75
+ r = uv_tcp_init(uv_default_loop(), &conn);
76
+ ASSERT(r == 0);
77
+
78
+ r = uv_tcp_connect(&connect_req, &conn, addr, connect_cb);
79
+ ASSERT(r == 0);
80
+
81
+ r = uv_run(uv_default_loop());
82
+ ASSERT(r == 0);
83
+
84
+ return 0;
85
+ }
@@ -0,0 +1,131 @@
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
+ #include "uv.h"
23
+ #include "task.h"
24
+
25
+ static void write_cb(uv_write_t* req, int status);
26
+ static void shutdown_cb(uv_shutdown_t* req, int status);
27
+
28
+ static uv_tcp_t conn;
29
+ static uv_timer_t timer;
30
+ static uv_connect_t connect_req;
31
+ static uv_write_t write_req;
32
+ static uv_shutdown_t shutdown_req;
33
+
34
+ static int connect_cb_called;
35
+ static int write_cb_called;
36
+ static int shutdown_cb_called;
37
+
38
+ static int conn_close_cb_called;
39
+ static int timer_close_cb_called;
40
+
41
+
42
+ static void close_cb(uv_handle_t* handle) {
43
+ if (handle == (uv_handle_t*)&conn)
44
+ conn_close_cb_called++;
45
+ else if (handle == (uv_handle_t*)&timer)
46
+ timer_close_cb_called++;
47
+ else
48
+ ASSERT(0 && "bad handle in close_cb");
49
+ }
50
+
51
+
52
+ static uv_buf_t alloc_cb(uv_handle_t* handle, size_t suggested_size) {
53
+ static char slab[64];
54
+ return uv_buf_init(slab, sizeof(slab));
55
+ }
56
+
57
+
58
+ static void timer_cb(uv_timer_t* handle, int status) {
59
+ uv_buf_t buf;
60
+ int r;
61
+
62
+ uv_close((uv_handle_t*)handle, close_cb);
63
+
64
+ buf = uv_buf_init("TEST", 4);
65
+ r = uv_write(&write_req, (uv_stream_t*)&conn, &buf, 1, write_cb);
66
+ ASSERT(r == 0);
67
+
68
+ r = uv_shutdown(&shutdown_req, (uv_stream_t*)&conn, shutdown_cb);
69
+ ASSERT(r == 0);
70
+ }
71
+
72
+
73
+ static void read_cb(uv_stream_t* handle, ssize_t nread, uv_buf_t buf) {
74
+ }
75
+
76
+
77
+ static void connect_cb(uv_connect_t* req, int status) {
78
+ int r;
79
+
80
+ ASSERT(status == 0);
81
+ connect_cb_called++;
82
+
83
+ r = uv_read_start((uv_stream_t*)&conn, alloc_cb, read_cb);
84
+ ASSERT(r == 0);
85
+ }
86
+
87
+
88
+ static void write_cb(uv_write_t* req, int status) {
89
+ ASSERT(status == 0);
90
+ write_cb_called++;
91
+ }
92
+
93
+
94
+ static void shutdown_cb(uv_shutdown_t* req, int status) {
95
+ ASSERT(status == 0);
96
+ shutdown_cb_called++;
97
+ uv_close((uv_handle_t*)&conn, close_cb);
98
+ }
99
+
100
+
101
+ TEST_IMPL(tcp_shutdown_after_write) {
102
+ struct sockaddr_in addr;
103
+ uv_loop_t* loop;
104
+ int r;
105
+
106
+ addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
107
+ loop = uv_default_loop();
108
+
109
+ r = uv_timer_init(loop, &timer);
110
+ ASSERT(r == 0);
111
+
112
+ r = uv_timer_start(&timer, timer_cb, 125, 0);
113
+ ASSERT(r == 0);
114
+
115
+ r = uv_tcp_init(loop, &conn);
116
+ ASSERT(r == 0);
117
+
118
+ r = uv_tcp_connect(&connect_req, &conn, addr, connect_cb);
119
+ ASSERT(r == 0);
120
+
121
+ r = uv_run(loop);
122
+ ASSERT(r == 0);
123
+
124
+ ASSERT(connect_cb_called == 1);
125
+ ASSERT(write_cb_called == 1);
126
+ ASSERT(shutdown_cb_called == 1);
127
+ ASSERT(conn_close_cb_called == 1);
128
+ ASSERT(timer_close_cb_called == 1);
129
+
130
+ return 0;
131
+ }