asyncengine 0.0.1.testing1 → 0.0.2.alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +3 -0
- data/Rakefile +38 -0
- data/asyncengine.gemspec +8 -4
- data/ext/asyncengine/ae_call_from_other_thread.c +106 -0
- data/ext/asyncengine/ae_call_from_other_thread.h +12 -0
- data/ext/asyncengine/ae_handle_common.c +193 -48
- data/ext/asyncengine/ae_handle_common.h +40 -13
- data/ext/asyncengine/ae_ip_utils.c +246 -0
- data/ext/asyncengine/ae_ip_utils.h +25 -0
- data/ext/asyncengine/ae_next_tick.c +81 -21
- data/ext/asyncengine/ae_next_tick.h +4 -2
- data/ext/asyncengine/ae_resolver.c +156 -0
- data/ext/asyncengine/ae_resolver.h +10 -0
- data/ext/asyncengine/ae_tcp.c +908 -0
- data/ext/asyncengine/ae_tcp.h +20 -0
- data/ext/asyncengine/ae_timer.c +355 -81
- data/ext/asyncengine/ae_timer.h +11 -4
- data/ext/asyncengine/ae_udp.c +579 -13
- data/ext/asyncengine/ae_udp.h +15 -2
- data/ext/asyncengine/ae_utils.c +192 -0
- data/ext/asyncengine/ae_utils.h +16 -0
- data/ext/asyncengine/asyncengine_ruby.c +469 -26
- data/ext/asyncengine/asyncengine_ruby.h +49 -11
- data/ext/asyncengine/debug.h +68 -0
- data/ext/asyncengine/extconf.rb +26 -2
- data/ext/asyncengine/ip_parser.c +5954 -0
- data/ext/asyncengine/ip_parser.h +16 -0
- data/ext/asyncengine/libuv/AUTHORS +16 -0
- data/ext/asyncengine/libuv/common.gypi +4 -4
- data/ext/asyncengine/libuv/config-mingw.mk +6 -6
- data/ext/asyncengine/libuv/config-unix.mk +13 -13
- data/ext/asyncengine/libuv/gyp_uv +5 -1
- data/ext/asyncengine/libuv/ibc_tests/exec_test.sh +8 -0
- data/ext/asyncengine/libuv/ibc_tests/uv_shutdown_write_issue.c +171 -0
- data/ext/asyncengine/libuv/ibc_tests/uv_tcp_close_while_connecting.c +102 -0
- data/ext/asyncengine/libuv/include/uv-private/ngx-queue.h +3 -1
- data/ext/asyncengine/libuv/include/uv-private/uv-unix.h +103 -50
- data/ext/asyncengine/libuv/include/uv-private/uv-win.h +76 -24
- data/ext/asyncengine/libuv/include/uv.h +353 -88
- data/ext/asyncengine/libuv/src/ares/ares__close_sockets.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares__get_hostent.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares__read_line.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares__timeval.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_cancel.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_data.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_destroy.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_expand_name.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_expand_string.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_fds.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_free_hostent.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_free_string.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_gethostbyaddr.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_gethostbyname.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_getnameinfo.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_getopt.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_getsock.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_init.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_library_init.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_llist.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_mkquery.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_nowarn.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_options.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_a_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_aaaa_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_mx_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_ns_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_ptr_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_srv_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_parse_txt_reply.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_process.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_query.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_search.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_send.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_strcasecmp.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_strdup.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_strerror.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_timeout.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_version.o +0 -0
- data/ext/asyncengine/libuv/src/ares/ares_writev.o +0 -0
- data/ext/asyncengine/libuv/src/ares/bitncmp.o +0 -0
- data/ext/asyncengine/libuv/src/ares/inet_net_pton.o +0 -0
- data/ext/asyncengine/libuv/src/ares/inet_ntop.o +0 -0
- data/ext/asyncengine/libuv/src/cares.c +225 -0
- data/ext/asyncengine/libuv/src/cares.o +0 -0
- data/ext/asyncengine/libuv/src/fs-poll.c +237 -0
- data/ext/asyncengine/libuv/src/fs-poll.o +0 -0
- data/ext/asyncengine/libuv/src/unix/async.c +78 -17
- data/ext/asyncengine/libuv/src/unix/async.o +0 -0
- data/ext/asyncengine/libuv/src/unix/core.c +305 -213
- data/ext/asyncengine/libuv/src/unix/core.o +0 -0
- data/ext/asyncengine/libuv/src/unix/cygwin.c +1 -1
- data/ext/asyncengine/libuv/src/unix/darwin.c +2 -1
- data/ext/asyncengine/libuv/src/unix/dl.c +36 -44
- data/ext/asyncengine/libuv/src/unix/dl.o +0 -0
- data/ext/asyncengine/libuv/src/unix/eio/eio.o +0 -0
- data/ext/asyncengine/libuv/src/unix/error.c +6 -0
- data/ext/asyncengine/libuv/src/unix/error.o +0 -0
- data/ext/asyncengine/libuv/src/unix/ev/ev.c +8 -4
- data/ext/asyncengine/libuv/src/unix/ev/ev.o +0 -0
- data/ext/asyncengine/libuv/src/unix/freebsd.c +1 -1
- data/ext/asyncengine/libuv/src/unix/fs.c +25 -33
- data/ext/asyncengine/libuv/src/unix/fs.o +0 -0
- data/ext/asyncengine/libuv/src/unix/internal.h +50 -31
- data/ext/asyncengine/libuv/src/unix/kqueue.c +2 -7
- data/ext/asyncengine/libuv/src/unix/linux/core.o +0 -0
- data/ext/asyncengine/libuv/src/unix/linux/inotify.c +12 -14
- data/ext/asyncengine/libuv/src/unix/linux/inotify.o +0 -0
- data/ext/asyncengine/libuv/src/unix/linux/{core.c → linux-core.c} +1 -1
- data/ext/asyncengine/libuv/src/unix/linux/linux-core.o +0 -0
- data/ext/asyncengine/libuv/src/unix/linux/syscalls.c +147 -1
- data/ext/asyncengine/libuv/src/unix/linux/syscalls.h +39 -2
- data/ext/asyncengine/libuv/src/unix/linux/syscalls.o +0 -0
- data/ext/asyncengine/libuv/src/unix/loop-watcher.c +63 -0
- data/ext/asyncengine/libuv/src/unix/loop-watcher.o +0 -0
- data/ext/asyncengine/libuv/src/unix/loop.c +29 -6
- data/ext/asyncengine/libuv/src/unix/loop.o +0 -0
- data/ext/asyncengine/libuv/src/unix/netbsd.c +1 -1
- data/ext/asyncengine/libuv/src/unix/openbsd.c +1 -1
- data/ext/asyncengine/libuv/src/unix/pipe.c +31 -36
- data/ext/asyncengine/libuv/src/unix/pipe.o +0 -0
- data/ext/asyncengine/libuv/src/unix/poll.c +116 -0
- data/ext/asyncengine/libuv/src/unix/poll.o +0 -0
- data/ext/asyncengine/libuv/src/unix/process.c +193 -115
- data/ext/asyncengine/libuv/src/unix/process.o +0 -0
- data/ext/asyncengine/libuv/src/unix/stream.c +146 -153
- data/ext/asyncengine/libuv/src/unix/stream.o +0 -0
- data/ext/asyncengine/libuv/src/unix/sunos.c +45 -36
- data/ext/asyncengine/libuv/src/unix/tcp.c +6 -5
- data/ext/asyncengine/libuv/src/unix/tcp.o +0 -0
- data/ext/asyncengine/libuv/src/unix/thread.c +82 -25
- data/ext/asyncengine/libuv/src/unix/thread.o +0 -0
- data/ext/asyncengine/libuv/src/unix/timer.c +69 -58
- data/ext/asyncengine/libuv/src/unix/timer.o +0 -0
- data/ext/asyncengine/libuv/src/unix/tty.c +3 -3
- data/ext/asyncengine/libuv/src/unix/tty.o +0 -0
- data/ext/asyncengine/libuv/src/unix/udp.c +57 -66
- data/ext/asyncengine/libuv/src/unix/udp.o +0 -0
- data/ext/asyncengine/libuv/src/unix/uv-eio.c +33 -50
- data/ext/asyncengine/libuv/src/unix/uv-eio.o +0 -0
- data/ext/asyncengine/libuv/src/uv-common.c +68 -38
- data/ext/asyncengine/libuv/src/uv-common.h +104 -20
- data/ext/asyncengine/libuv/src/uv-common.o +0 -0
- data/ext/asyncengine/libuv/src/win/async.c +20 -17
- data/ext/asyncengine/libuv/src/win/core.c +44 -31
- data/ext/asyncengine/libuv/src/win/dl.c +40 -36
- data/ext/asyncengine/libuv/src/win/error.c +21 -1
- data/ext/asyncengine/libuv/src/win/fs-event.c +19 -21
- data/ext/asyncengine/libuv/src/win/fs.c +541 -189
- data/ext/asyncengine/libuv/src/win/getaddrinfo.c +56 -63
- data/ext/asyncengine/libuv/src/win/handle-inl.h +145 -0
- data/ext/asyncengine/libuv/src/win/handle.c +26 -101
- data/ext/asyncengine/libuv/src/win/internal.h +92 -107
- data/ext/asyncengine/libuv/src/win/loop-watcher.c +6 -14
- data/ext/asyncengine/libuv/src/win/pipe.c +78 -64
- data/ext/asyncengine/libuv/src/win/poll.c +618 -0
- data/ext/asyncengine/libuv/src/win/process-stdio.c +479 -0
- data/ext/asyncengine/libuv/src/win/process.c +147 -274
- data/ext/asyncengine/libuv/src/win/req-inl.h +225 -0
- data/ext/asyncengine/libuv/src/win/req.c +0 -149
- data/ext/asyncengine/libuv/src/{unix/check.c → win/stream-inl.h} +31 -42
- data/ext/asyncengine/libuv/src/win/stream.c +9 -43
- data/ext/asyncengine/libuv/src/win/tcp.c +200 -82
- data/ext/asyncengine/libuv/src/win/thread.c +42 -2
- data/ext/asyncengine/libuv/src/win/threadpool.c +3 -2
- data/ext/asyncengine/libuv/src/win/timer.c +13 -63
- data/ext/asyncengine/libuv/src/win/tty.c +26 -20
- data/ext/asyncengine/libuv/src/win/udp.c +26 -17
- data/ext/asyncengine/libuv/src/win/util.c +312 -167
- data/ext/asyncengine/libuv/src/win/winapi.c +16 -1
- data/ext/asyncengine/libuv/src/win/winapi.h +33 -9
- data/ext/asyncengine/libuv/src/win/winsock.c +88 -1
- data/ext/asyncengine/libuv/src/win/winsock.h +36 -3
- data/ext/asyncengine/libuv/test/benchmark-ares.c +16 -17
- data/ext/asyncengine/libuv/test/benchmark-fs-stat.c +164 -0
- data/ext/asyncengine/libuv/test/benchmark-list.h +9 -0
- data/ext/asyncengine/libuv/{src/unix/prepare.c → test/benchmark-loop-count.c} +42 -33
- data/ext/asyncengine/libuv/test/benchmark-million-timers.c +65 -0
- data/ext/asyncengine/libuv/test/benchmark-pound.c +1 -1
- data/ext/asyncengine/libuv/test/benchmark-sizes.c +2 -0
- data/ext/asyncengine/libuv/test/benchmark-spawn.c +7 -1
- data/ext/asyncengine/libuv/test/benchmark-udp-packet-storm.c +1 -1
- data/ext/asyncengine/libuv/test/echo-server.c +8 -0
- data/ext/asyncengine/libuv/test/run-tests.c +30 -0
- data/ext/asyncengine/libuv/test/runner-unix.c +6 -26
- data/ext/asyncengine/libuv/test/runner-win.c +5 -63
- data/ext/asyncengine/libuv/test/runner.c +10 -1
- data/ext/asyncengine/libuv/test/task.h +0 -8
- data/ext/asyncengine/libuv/test/test-async.c +43 -141
- data/ext/asyncengine/libuv/test/test-callback-order.c +76 -0
- data/ext/asyncengine/libuv/test/test-counters-init.c +2 -3
- data/ext/asyncengine/libuv/test/test-dlerror.c +17 -8
- data/ext/asyncengine/libuv/test/test-fs-event.c +31 -39
- data/ext/asyncengine/libuv/test/test-fs-poll.c +146 -0
- data/ext/asyncengine/libuv/test/test-fs.c +114 -2
- data/ext/asyncengine/libuv/test/test-gethostbyname.c +8 -8
- data/ext/asyncengine/libuv/test/test-hrtime.c +18 -15
- data/ext/asyncengine/libuv/test/test-ipc.c +8 -2
- data/ext/asyncengine/libuv/test/test-list.h +59 -9
- data/ext/asyncengine/libuv/test/test-loop-handles.c +2 -25
- data/ext/asyncengine/libuv/{src/unix/idle.c → test/test-poll-close.c} +37 -39
- data/ext/asyncengine/libuv/test/test-poll.c +573 -0
- data/ext/asyncengine/libuv/test/test-ref.c +79 -63
- data/ext/asyncengine/libuv/test/test-run-once.c +15 -11
- data/ext/asyncengine/libuv/test/test-semaphore.c +111 -0
- data/ext/asyncengine/libuv/test/test-spawn.c +368 -20
- data/ext/asyncengine/libuv/test/test-stdio-over-pipes.c +25 -35
- data/ext/asyncengine/libuv/test/test-tcp-close-while-connecting.c +80 -0
- data/ext/asyncengine/libuv/test/test-tcp-close.c +1 -1
- data/ext/asyncengine/libuv/test/test-tcp-connect-error-after-write.c +95 -0
- data/ext/asyncengine/libuv/test/test-tcp-connect-timeout.c +85 -0
- data/ext/asyncengine/libuv/test/test-tcp-shutdown-after-write.c +131 -0
- data/ext/asyncengine/libuv/test/test-tcp-write-error.c +2 -2
- data/ext/asyncengine/libuv/test/test-tcp-writealot.c +29 -54
- data/ext/asyncengine/libuv/test/test-timer-again.c +1 -1
- data/ext/asyncengine/libuv/test/test-timer.c +23 -1
- data/ext/asyncengine/libuv/test/test-udp-options.c +1 -1
- data/ext/asyncengine/libuv/test/{test-eio-overflow.c → test-walk-handles.c} +31 -44
- data/ext/asyncengine/libuv/uv.gyp +26 -9
- data/ext/asyncengine/rb_utilities.c +54 -0
- data/ext/asyncengine/rb_utilities.h +63 -0
- data/lib/asyncengine.rb +45 -38
- data/lib/asyncengine/asyncengine_ext.so +0 -0
- data/lib/asyncengine/debug.rb +37 -0
- data/lib/asyncengine/handle.rb +9 -0
- data/lib/asyncengine/tcp.rb +28 -0
- data/lib/asyncengine/timer.rb +18 -28
- data/lib/asyncengine/udp.rb +29 -0
- data/lib/asyncengine/utils.rb +32 -0
- data/lib/asyncengine/uv_error.rb +17 -0
- data/lib/asyncengine/version.rb +9 -1
- data/test/ae_test_helper.rb +62 -0
- data/test/test_basic.rb +169 -0
- data/test/test_call_from_other_thread.rb +55 -0
- data/test/test_error.rb +92 -0
- data/test/test_ip_utils.rb +44 -0
- data/test/test_next_tick.rb +37 -0
- data/test/test_resolver.rb +51 -0
- data/test/test_threads.rb +69 -0
- data/test/test_timer.rb +95 -0
- data/test/test_udp.rb +216 -0
- data/test/test_utils.rb +49 -0
- metadata +84 -57
- data/ext/asyncengine/libuv/mkmf.log +0 -24
- data/ext/asyncengine/libuv/src/unix/cares.c +0 -194
- data/ext/asyncengine/libuv/src/unix/cares.o +0 -0
- data/ext/asyncengine/libuv/src/unix/check.o +0 -0
- data/ext/asyncengine/libuv/src/unix/idle.o +0 -0
- data/ext/asyncengine/libuv/src/unix/prepare.o +0 -0
- data/ext/asyncengine/libuv/src/win/cares.c +0 -290
- data/lib/asyncengine/errors.rb +0 -5
- 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
|
-
|
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(
|
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
|
107
|
-
|
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 ||
|
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
|
-
|
118
|
-
|
119
|
-
r = uv_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
|
-
|
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
|
-
|
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(
|
224
|
-
uv_unref(
|
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(
|
243
|
-
uv_ref(
|
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
|
+
}
|
@@ -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
|
+
}
|