asyncengine 0.0.1.testing
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 +0 -0
- data/asyncengine.gemspec +26 -0
- data/ext/asyncengine_ext/asyncengine_ruby.c +82 -0
- data/ext/asyncengine_ext/extconf.rb +47 -0
- data/ext/asyncengine_ext/libuv/AUTHORS +45 -0
- data/ext/asyncengine_ext/libuv/LICENSE +42 -0
- data/ext/asyncengine_ext/libuv/Makefile +119 -0
- data/ext/asyncengine_ext/libuv/README.md +88 -0
- data/ext/asyncengine_ext/libuv/build/gcc_version.py +20 -0
- data/ext/asyncengine_ext/libuv/common.gypi +176 -0
- data/ext/asyncengine_ext/libuv/config-mingw.mk +61 -0
- data/ext/asyncengine_ext/libuv/config-unix.mk +173 -0
- data/ext/asyncengine_ext/libuv/gyp_uv +60 -0
- data/ext/asyncengine_ext/libuv/include/ares.h +591 -0
- data/ext/asyncengine_ext/libuv/include/ares_version.h +24 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/eio.h +403 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/ev.h +838 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/ngx-queue.h +106 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/tree.h +768 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/uv-unix.h +256 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/uv-win.h +458 -0
- data/ext/asyncengine_ext/libuv/include/uv.h +1556 -0
- data/ext/asyncengine_ext/libuv/src/ares/AUTHORS +37 -0
- data/ext/asyncengine_ext/libuv/src/ares/CHANGES +1218 -0
- data/ext/asyncengine_ext/libuv/src/ares/CMakeLists.txt +22 -0
- data/ext/asyncengine_ext/libuv/src/ares/NEWS +21 -0
- data/ext/asyncengine_ext/libuv/src/ares/README +60 -0
- data/ext/asyncengine_ext/libuv/src/ares/README.cares +13 -0
- data/ext/asyncengine_ext/libuv/src/ares/README.msvc +142 -0
- data/ext/asyncengine_ext/libuv/src/ares/README.node +21 -0
- data/ext/asyncengine_ext/libuv/src/ares/RELEASE-NOTES +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/TODO +23 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__close_sockets.c +66 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__get_hostent.c +263 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__read_line.c +71 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__timeval.c +111 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_cancel.c +63 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_data.c +190 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_data.h +65 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_destroy.c +105 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_dns.h +90 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_expand_name.c +200 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_expand_string.c +75 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_fds.c +63 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_free_hostent.c +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_free_string.c +25 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getenv.c +30 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getenv.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_gethostbyaddr.c +301 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_gethostbyname.c +523 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getnameinfo.c +427 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getopt.c +122 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getopt.h +53 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getsock.c +72 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_init.c +1809 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_iphlpapi.h +221 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_ipv6.h +78 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_library_init.c +142 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_library_init.h +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_llist.c +86 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_llist.h +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_mkquery.c +195 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_nowarn.c +181 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_nowarn.h +55 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_options.c +248 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_a_reply.c +263 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_aaaa_reply.c +259 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_mx_reply.c +170 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_ns_reply.c +182 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_ptr_reply.c +217 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_srv_reply.c +179 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_txt_reply.c +201 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_platform.c +11035 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_platform.h +43 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_private.h +355 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_process.c +1295 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_query.c +183 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_rules.h +144 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_search.c +321 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_send.c +134 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_setup.h +199 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strcasecmp.c +66 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strcasecmp.h +30 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strdup.c +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strdup.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strerror.c +56 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_timeout.c +80 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_version.c +11 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_writev.c +79 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_writev.h +36 -0
- data/ext/asyncengine_ext/libuv/src/ares/bitncmp.c +59 -0
- data/ext/asyncengine_ext/libuv/src/ares/bitncmp.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_cygwin/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_darwin/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_freebsd/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_linux/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_netbsd/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_openbsd/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_sunos/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_win32/ares_config.h +369 -0
- data/ext/asyncengine_ext/libuv/src/ares/get_ver.awk +35 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_net_pton.c +451 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_net_pton.h +31 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_ntop.c +208 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_ntop.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/nameser.h +203 -0
- data/ext/asyncengine_ext/libuv/src/ares/setup_once.h +504 -0
- data/ext/asyncengine_ext/libuv/src/ares/windows_port.c +22 -0
- data/ext/asyncengine_ext/libuv/src/unix/async.c +58 -0
- data/ext/asyncengine_ext/libuv/src/unix/cares.c +194 -0
- data/ext/asyncengine_ext/libuv/src/unix/check.c +80 -0
- data/ext/asyncengine_ext/libuv/src/unix/core.c +588 -0
- data/ext/asyncengine_ext/libuv/src/unix/cygwin.c +84 -0
- data/ext/asyncengine_ext/libuv/src/unix/darwin.c +341 -0
- data/ext/asyncengine_ext/libuv/src/unix/dl.c +91 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/Changes +63 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/LICENSE +36 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/Makefile.am +15 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/aclocal.m4 +8957 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/autogen.sh +3 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config.h.in +86 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_cygwin.h +80 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_darwin.h +141 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_freebsd.h +81 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_linux.h +94 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_netbsd.h +81 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_openbsd.h +137 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_sunos.h +84 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/configure.ac +22 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/demo.c +194 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/ecb.h +370 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/eio.3 +3428 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/eio.c +2593 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/eio.pod +969 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/libeio.m4 +195 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/xthread.h +164 -0
- data/ext/asyncengine_ext/libuv/src/unix/error.c +98 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/Changes +388 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/LICENSE +36 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/Makefile.am +18 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/Makefile.in +771 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/README +58 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/aclocal.m4 +8957 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/autogen.sh +6 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config.guess +1526 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config.h.in +125 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config.sub +1658 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_cygwin.h +123 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_darwin.h +122 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_freebsd.h +120 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_linux.h +141 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_netbsd.h +120 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_openbsd.h +126 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_sunos.h +122 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/configure +13037 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/configure.ac +18 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/depcomp +630 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev++.h +816 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev.3 +5311 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev.c +3921 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev.pod +5243 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_epoll.c +266 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_kqueue.c +235 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_poll.c +148 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_port.c +179 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_select.c +310 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_vars.h +203 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_win32.c +153 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_wrap.h +196 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/event.c +402 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/event.h +170 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/install-sh +294 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/libev.m4 +39 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ltmain.sh +8413 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/missing +336 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/mkinstalldirs +111 -0
- data/ext/asyncengine_ext/libuv/src/unix/freebsd.c +312 -0
- data/ext/asyncengine_ext/libuv/src/unix/fs.c +707 -0
- data/ext/asyncengine_ext/libuv/src/unix/idle.c +79 -0
- data/ext/asyncengine_ext/libuv/src/unix/internal.h +161 -0
- data/ext/asyncengine_ext/libuv/src/unix/kqueue.c +127 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/core.c +474 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/inotify.c +211 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/syscalls.c +230 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/syscalls.h +87 -0
- data/ext/asyncengine_ext/libuv/src/unix/loop.c +58 -0
- data/ext/asyncengine_ext/libuv/src/unix/netbsd.c +108 -0
- data/ext/asyncengine_ext/libuv/src/unix/openbsd.c +295 -0
- data/ext/asyncengine_ext/libuv/src/unix/pipe.c +266 -0
- data/ext/asyncengine_ext/libuv/src/unix/prepare.c +79 -0
- data/ext/asyncengine_ext/libuv/src/unix/process.c +369 -0
- data/ext/asyncengine_ext/libuv/src/unix/stream.c +1033 -0
- data/ext/asyncengine_ext/libuv/src/unix/sunos.c +466 -0
- data/ext/asyncengine_ext/libuv/src/unix/tcp.c +327 -0
- data/ext/asyncengine_ext/libuv/src/unix/thread.c +154 -0
- data/ext/asyncengine_ext/libuv/src/unix/timer.c +127 -0
- data/ext/asyncengine_ext/libuv/src/unix/tty.c +146 -0
- data/ext/asyncengine_ext/libuv/src/unix/udp.c +670 -0
- data/ext/asyncengine_ext/libuv/src/unix/uv-eio.c +124 -0
- data/ext/asyncengine_ext/libuv/src/unix/uv-eio.h +13 -0
- data/ext/asyncengine_ext/libuv/src/uv-common.c +354 -0
- data/ext/asyncengine_ext/libuv/src/uv-common.h +87 -0
- data/ext/asyncengine_ext/libuv/src/win/async.c +127 -0
- data/ext/asyncengine_ext/libuv/src/win/cares.c +290 -0
- data/ext/asyncengine_ext/libuv/src/win/core.c +270 -0
- data/ext/asyncengine_ext/libuv/src/win/dl.c +82 -0
- data/ext/asyncengine_ext/libuv/src/win/error.c +132 -0
- data/ext/asyncengine_ext/libuv/src/win/fs-event.c +514 -0
- data/ext/asyncengine_ext/libuv/src/win/fs.c +1576 -0
- data/ext/asyncengine_ext/libuv/src/win/getaddrinfo.c +372 -0
- data/ext/asyncengine_ext/libuv/src/win/handle.c +225 -0
- data/ext/asyncengine_ext/libuv/src/win/internal.h +352 -0
- data/ext/asyncengine_ext/libuv/src/win/loop-watcher.c +131 -0
- data/ext/asyncengine_ext/libuv/src/win/pipe.c +1661 -0
- data/ext/asyncengine_ext/libuv/src/win/process.c +1140 -0
- data/ext/asyncengine_ext/libuv/src/win/req.c +174 -0
- data/ext/asyncengine_ext/libuv/src/win/stream.c +201 -0
- data/ext/asyncengine_ext/libuv/src/win/tcp.c +1282 -0
- data/ext/asyncengine_ext/libuv/src/win/thread.c +332 -0
- data/ext/asyncengine_ext/libuv/src/win/threadpool.c +73 -0
- data/ext/asyncengine_ext/libuv/src/win/timer.c +276 -0
- data/ext/asyncengine_ext/libuv/src/win/tty.c +1795 -0
- data/ext/asyncengine_ext/libuv/src/win/udp.c +709 -0
- data/ext/asyncengine_ext/libuv/src/win/util.c +719 -0
- data/ext/asyncengine_ext/libuv/src/win/winapi.c +117 -0
- data/ext/asyncengine_ext/libuv/src/win/winapi.h +4419 -0
- data/ext/asyncengine_ext/libuv/src/win/winsock.c +470 -0
- data/ext/asyncengine_ext/libuv/src/win/winsock.h +138 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-ares.c +118 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-getaddrinfo.c +94 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-list.h +105 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-ping-pongs.c +213 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-pound.c +324 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-pump.c +462 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-sizes.c +40 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-spawn.c +156 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-tcp-write-batch.c +140 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-thread.c +64 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-udp-packet-storm.c +247 -0
- data/ext/asyncengine_ext/libuv/test/blackhole-server.c +118 -0
- data/ext/asyncengine_ext/libuv/test/dns-server.c +321 -0
- data/ext/asyncengine_ext/libuv/test/echo-server.c +370 -0
- data/ext/asyncengine_ext/libuv/test/fixtures/empty_file +0 -0
- data/ext/asyncengine_ext/libuv/test/fixtures/load_error.node +1 -0
- data/ext/asyncengine_ext/libuv/test/run-benchmarks.c +64 -0
- data/ext/asyncengine_ext/libuv/test/run-tests.c +108 -0
- data/ext/asyncengine_ext/libuv/test/runner-unix.c +315 -0
- data/ext/asyncengine_ext/libuv/test/runner-unix.h +36 -0
- data/ext/asyncengine_ext/libuv/test/runner-win.c +343 -0
- data/ext/asyncengine_ext/libuv/test/runner-win.h +42 -0
- data/ext/asyncengine_ext/libuv/test/runner.c +317 -0
- data/ext/asyncengine_ext/libuv/test/runner.h +159 -0
- data/ext/asyncengine_ext/libuv/test/task.h +117 -0
- data/ext/asyncengine_ext/libuv/test/test-async.c +216 -0
- data/ext/asyncengine_ext/libuv/test/test-callback-stack.c +203 -0
- data/ext/asyncengine_ext/libuv/test/test-connection-fail.c +148 -0
- data/ext/asyncengine_ext/libuv/test/test-counters-init.c +216 -0
- data/ext/asyncengine_ext/libuv/test/test-cwd-and-chdir.c +64 -0
- data/ext/asyncengine_ext/libuv/test/test-delayed-accept.c +197 -0
- data/ext/asyncengine_ext/libuv/test/test-dlerror.c +49 -0
- data/ext/asyncengine_ext/libuv/test/test-eio-overflow.c +90 -0
- data/ext/asyncengine_ext/libuv/test/test-error.c +59 -0
- data/ext/asyncengine_ext/libuv/test/test-fail-always.c +29 -0
- data/ext/asyncengine_ext/libuv/test/test-fs-event.c +442 -0
- data/ext/asyncengine_ext/libuv/test/test-fs.c +1731 -0
- data/ext/asyncengine_ext/libuv/test/test-get-currentexe.c +63 -0
- data/ext/asyncengine_ext/libuv/test/test-get-loadavg.c +36 -0
- data/ext/asyncengine_ext/libuv/test/test-get-memory.c +38 -0
- data/ext/asyncengine_ext/libuv/test/test-getaddrinfo.c +122 -0
- data/ext/asyncengine_ext/libuv/test/test-gethostbyname.c +189 -0
- data/ext/asyncengine_ext/libuv/test/test-getsockname.c +342 -0
- data/ext/asyncengine_ext/libuv/test/test-hrtime.c +51 -0
- data/ext/asyncengine_ext/libuv/test/test-idle.c +81 -0
- data/ext/asyncengine_ext/libuv/test/test-ipc-send-recv.c +209 -0
- data/ext/asyncengine_ext/libuv/test/test-ipc.c +614 -0
- data/ext/asyncengine_ext/libuv/test/test-list.h +371 -0
- data/ext/asyncengine_ext/libuv/test/test-loop-handles.c +359 -0
- data/ext/asyncengine_ext/libuv/test/test-multiple-listen.c +102 -0
- data/ext/asyncengine_ext/libuv/test/test-mutexes.c +63 -0
- data/ext/asyncengine_ext/libuv/test/test-pass-always.c +28 -0
- data/ext/asyncengine_ext/libuv/test/test-ping-pong.c +253 -0
- data/ext/asyncengine_ext/libuv/test/test-pipe-bind-error.c +140 -0
- data/ext/asyncengine_ext/libuv/test/test-pipe-connect-error.c +96 -0
- data/ext/asyncengine_ext/libuv/test/test-platform-output.c +87 -0
- data/ext/asyncengine_ext/libuv/test/test-process-title.c +42 -0
- data/ext/asyncengine_ext/libuv/test/test-ref.c +322 -0
- data/ext/asyncengine_ext/libuv/test/test-run-once.c +44 -0
- data/ext/asyncengine_ext/libuv/test/test-shutdown-close.c +103 -0
- data/ext/asyncengine_ext/libuv/test/test-shutdown-eof.c +183 -0
- data/ext/asyncengine_ext/libuv/test/test-spawn.c +499 -0
- data/ext/asyncengine_ext/libuv/test/test-stdio-over-pipes.c +256 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-bind-error.c +191 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-bind6-error.c +154 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-close.c +129 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-connect-error.c +70 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-connect6-error.c +68 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-flags.c +51 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-write-error.c +168 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-write-to-half-open-connection.c +135 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-writealot.c +195 -0
- data/ext/asyncengine_ext/libuv/test/test-thread.c +183 -0
- data/ext/asyncengine_ext/libuv/test/test-threadpool.c +57 -0
- data/ext/asyncengine_ext/libuv/test/test-timer-again.c +141 -0
- data/ext/asyncengine_ext/libuv/test/test-timer.c +130 -0
- data/ext/asyncengine_ext/libuv/test/test-tty.c +110 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-dgram-too-big.c +86 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-ipv6.c +156 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-multicast-join.c +139 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-multicast-ttl.c +86 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-options.c +86 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-send-and-recv.c +208 -0
- data/ext/asyncengine_ext/libuv/test/test-util.c +97 -0
- data/ext/asyncengine_ext/libuv/uv.gyp +435 -0
- data/ext/asyncengine_ext/libuv/vcbuild.bat +105 -0
- data/lib/asyncengine/version.rb +3 -0
- data/lib/asyncengine.rb +41 -0
- metadata +384 -0
@@ -0,0 +1,359 @@
|
|
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
|
+
/* Tests commented out with XXX are ones that are failing on Linux */
|
23
|
+
|
24
|
+
/*
|
25
|
+
* Purpose of this test is to check semantics of starting and stopping
|
26
|
+
* prepare, check and idle watchers.
|
27
|
+
*
|
28
|
+
* - A watcher must be able to safely stop or close itself;
|
29
|
+
* - Once a watcher is stopped or closed its callback should never be called.
|
30
|
+
* - If a watcher is closed, it is implicitly stopped and its close_cb should
|
31
|
+
* be called exactly once.
|
32
|
+
* - A watcher can safely start and stop other watchers of the same type.
|
33
|
+
* - Prepare and check watchers are called once per event loop iterations.
|
34
|
+
* - All active idle watchers are queued when the event loop has no more work
|
35
|
+
* to do. This is done repeatedly until all idle watchers are inactive.
|
36
|
+
* - If a watcher starts another watcher of the same type its callback is not
|
37
|
+
* immediately queued. For check and prepare watchers, that means that if
|
38
|
+
* a watcher makes another of the same type active, it'll not be called until
|
39
|
+
* the next event loop iteration. For idle. watchers this means that the
|
40
|
+
* newly activated idle watcher might not be queued immediately.
|
41
|
+
* - Prepare, check, idle watchers keep the event loop alive even when they're
|
42
|
+
* not active.
|
43
|
+
*
|
44
|
+
* This is what the test globally does:
|
45
|
+
*
|
46
|
+
* - prepare_1 is always active and counts event loop iterations. It also
|
47
|
+
* creates and starts prepare_2 every other iteration. Finally it verifies
|
48
|
+
* that no idle watchers are active before polling.
|
49
|
+
* - prepare_2 is started by prepare_1 every other iteration. It immediately
|
50
|
+
* stops itself. It verifies that a watcher is not queued immediately
|
51
|
+
* if created by another watcher of the same type.
|
52
|
+
* - There's a check watcher that stops the event loop after a certain number
|
53
|
+
* of iterations. It starts a varying number of idle_1 watchers.
|
54
|
+
* - Idle_1 watchers stop themselves after being called a few times. All idle_1
|
55
|
+
* watchers try to start the idle_2 watcher if it is not already started or
|
56
|
+
* awaiting its close callback.
|
57
|
+
* - The idle_2 watcher always exists but immediately closes itself after
|
58
|
+
* being started by a check_1 watcher. It verifies that a watcher is
|
59
|
+
* implicitly stopped when closed, and that a watcher can close itself
|
60
|
+
* safely.
|
61
|
+
* - There is a repeating timer. It does not keep the event loop alive
|
62
|
+
* (ev_unref) but makes sure that the loop keeps polling the system for
|
63
|
+
* events.
|
64
|
+
*/
|
65
|
+
|
66
|
+
|
67
|
+
#include "uv.h"
|
68
|
+
#include "task.h"
|
69
|
+
|
70
|
+
#include <math.h>
|
71
|
+
|
72
|
+
|
73
|
+
#define IDLE_COUNT 7
|
74
|
+
#define ITERATIONS 21
|
75
|
+
#define TIMEOUT 100
|
76
|
+
|
77
|
+
|
78
|
+
static uv_prepare_t prepare_1_handle;
|
79
|
+
static uv_prepare_t prepare_2_handle;
|
80
|
+
|
81
|
+
static uv_check_t check_handle;
|
82
|
+
|
83
|
+
static uv_idle_t idle_1_handles[IDLE_COUNT];
|
84
|
+
static uv_idle_t idle_2_handle;
|
85
|
+
|
86
|
+
static uv_timer_t timer_handle;
|
87
|
+
|
88
|
+
|
89
|
+
static int loop_iteration = 0;
|
90
|
+
|
91
|
+
static int prepare_1_cb_called = 0;
|
92
|
+
static int prepare_1_close_cb_called = 0;
|
93
|
+
|
94
|
+
static int prepare_2_cb_called = 0;
|
95
|
+
static int prepare_2_close_cb_called = 0;
|
96
|
+
|
97
|
+
static int check_cb_called = 0;
|
98
|
+
static int check_close_cb_called = 0;
|
99
|
+
|
100
|
+
static int idle_1_cb_called = 0;
|
101
|
+
static int idle_1_close_cb_called = 0;
|
102
|
+
static int idles_1_active = 0;
|
103
|
+
|
104
|
+
static int idle_2_cb_called = 0;
|
105
|
+
static int idle_2_close_cb_called = 0;
|
106
|
+
static int idle_2_cb_started = 0;
|
107
|
+
static int idle_2_is_active = 0;
|
108
|
+
|
109
|
+
static int timer_cb_called = 0;
|
110
|
+
|
111
|
+
|
112
|
+
static void timer_cb(uv_timer_t* handle, int status) {
|
113
|
+
ASSERT(handle == &timer_handle);
|
114
|
+
ASSERT(status == 0);
|
115
|
+
|
116
|
+
timer_cb_called++;
|
117
|
+
}
|
118
|
+
|
119
|
+
|
120
|
+
static void idle_2_close_cb(uv_handle_t* handle) {
|
121
|
+
LOG("IDLE_2_CLOSE_CB\n");
|
122
|
+
|
123
|
+
ASSERT(handle == (uv_handle_t*)&idle_2_handle);
|
124
|
+
|
125
|
+
ASSERT(idle_2_is_active);
|
126
|
+
|
127
|
+
idle_2_close_cb_called++;
|
128
|
+
idle_2_is_active = 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
static void idle_2_cb(uv_idle_t* handle, int status) {
|
133
|
+
LOG("IDLE_2_CB\n");
|
134
|
+
|
135
|
+
ASSERT(handle == &idle_2_handle);
|
136
|
+
ASSERT(status == 0);
|
137
|
+
|
138
|
+
idle_2_cb_called++;
|
139
|
+
|
140
|
+
uv_close((uv_handle_t*)handle, idle_2_close_cb);
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
static void idle_1_cb(uv_idle_t* handle, int status) {
|
145
|
+
int r;
|
146
|
+
|
147
|
+
LOG("IDLE_1_CB\n");
|
148
|
+
|
149
|
+
ASSERT(handle != NULL);
|
150
|
+
ASSERT(status == 0);
|
151
|
+
|
152
|
+
ASSERT(idles_1_active > 0);
|
153
|
+
|
154
|
+
/* Init idle_2 and make it active */
|
155
|
+
if (!idle_2_is_active) {
|
156
|
+
r = uv_idle_init(uv_default_loop(), &idle_2_handle);
|
157
|
+
ASSERT(r == 0);
|
158
|
+
r = uv_idle_start(&idle_2_handle, idle_2_cb);
|
159
|
+
ASSERT(r == 0);
|
160
|
+
idle_2_is_active = 1;
|
161
|
+
idle_2_cb_started++;
|
162
|
+
}
|
163
|
+
|
164
|
+
idle_1_cb_called++;
|
165
|
+
|
166
|
+
if (idle_1_cb_called % 5 == 0) {
|
167
|
+
r = uv_idle_stop((uv_idle_t*)handle);
|
168
|
+
ASSERT(r == 0);
|
169
|
+
idles_1_active--;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
static void idle_1_close_cb(uv_handle_t* handle) {
|
175
|
+
LOG("IDLE_1_CLOSE_CB\n");
|
176
|
+
|
177
|
+
ASSERT(handle != NULL);
|
178
|
+
|
179
|
+
idle_1_close_cb_called++;
|
180
|
+
}
|
181
|
+
|
182
|
+
|
183
|
+
static void prepare_1_close_cb(uv_handle_t* handle) {
|
184
|
+
LOG("PREPARE_1_CLOSE_CB");
|
185
|
+
ASSERT(handle == (uv_handle_t*)&prepare_1_handle);
|
186
|
+
|
187
|
+
prepare_1_close_cb_called++;
|
188
|
+
}
|
189
|
+
|
190
|
+
|
191
|
+
static void check_close_cb(uv_handle_t* handle) {
|
192
|
+
LOG("CHECK_CLOSE_CB\n");
|
193
|
+
ASSERT(handle == (uv_handle_t*)&check_handle);
|
194
|
+
|
195
|
+
check_close_cb_called++;
|
196
|
+
}
|
197
|
+
|
198
|
+
|
199
|
+
static void prepare_2_close_cb(uv_handle_t* handle) {
|
200
|
+
LOG("PREPARE_2_CLOSE_CB\n");
|
201
|
+
ASSERT(handle == (uv_handle_t*)&prepare_2_handle);
|
202
|
+
|
203
|
+
prepare_2_close_cb_called++;
|
204
|
+
}
|
205
|
+
|
206
|
+
|
207
|
+
static void check_cb(uv_check_t* handle, int status) {
|
208
|
+
int i, r;
|
209
|
+
|
210
|
+
LOG("CHECK_CB\n");
|
211
|
+
|
212
|
+
ASSERT(handle == &check_handle);
|
213
|
+
ASSERT(status == 0);
|
214
|
+
|
215
|
+
/* XXX
|
216
|
+
ASSERT(idles_1_active == 0);
|
217
|
+
ASSERT(idle_2_is_active == 0);
|
218
|
+
*/
|
219
|
+
|
220
|
+
if (loop_iteration < ITERATIONS) {
|
221
|
+
/* Make some idle watchers active */
|
222
|
+
for (i = 0; i < 1 + (loop_iteration % IDLE_COUNT); i++) {
|
223
|
+
r = uv_idle_start(&idle_1_handles[i], idle_1_cb);
|
224
|
+
ASSERT(r == 0);
|
225
|
+
idles_1_active++;
|
226
|
+
}
|
227
|
+
|
228
|
+
} else {
|
229
|
+
/* End of the test - close all handles */
|
230
|
+
uv_close((uv_handle_t*)&prepare_1_handle, prepare_1_close_cb);
|
231
|
+
uv_close((uv_handle_t*)&check_handle, check_close_cb);
|
232
|
+
uv_close((uv_handle_t*)&prepare_2_handle, prepare_2_close_cb);
|
233
|
+
|
234
|
+
for (i = 0; i < IDLE_COUNT; i++) {
|
235
|
+
uv_close((uv_handle_t*)&idle_1_handles[i], idle_1_close_cb);
|
236
|
+
}
|
237
|
+
|
238
|
+
/* This handle is closed/recreated every time, close it only if it is */
|
239
|
+
/* active.*/
|
240
|
+
if (idle_2_is_active) {
|
241
|
+
uv_close((uv_handle_t*)&idle_2_handle, idle_2_close_cb);
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
check_cb_called++;
|
246
|
+
}
|
247
|
+
|
248
|
+
|
249
|
+
static void prepare_2_cb(uv_prepare_t* handle, int status) {
|
250
|
+
int r;
|
251
|
+
|
252
|
+
LOG("PREPARE_2_CB\n");
|
253
|
+
|
254
|
+
ASSERT(handle == &prepare_2_handle);
|
255
|
+
ASSERT(status == 0);
|
256
|
+
|
257
|
+
/* XXX ASSERT(idles_1_active == 0); */
|
258
|
+
/* XXX ASSERT(idle_2_is_active == 0); */
|
259
|
+
|
260
|
+
/* prepare_2 gets started by prepare_1 when (loop_iteration % 2 == 0), */
|
261
|
+
/* and it stops itself immediately. A started watcher is not queued */
|
262
|
+
/* until the next round, so when this callback is made */
|
263
|
+
/* (loop_iteration % 2 == 0) cannot be true. */
|
264
|
+
ASSERT(loop_iteration % 2 != 0);
|
265
|
+
|
266
|
+
r = uv_prepare_stop((uv_prepare_t*)handle);
|
267
|
+
ASSERT(r == 0);
|
268
|
+
|
269
|
+
prepare_2_cb_called++;
|
270
|
+
}
|
271
|
+
|
272
|
+
|
273
|
+
static void prepare_1_cb(uv_prepare_t* handle, int status) {
|
274
|
+
int r;
|
275
|
+
|
276
|
+
LOG("PREPARE_1_CB\n");
|
277
|
+
|
278
|
+
ASSERT(handle == &prepare_1_handle);
|
279
|
+
ASSERT(status == 0);
|
280
|
+
|
281
|
+
/* XXX
|
282
|
+
ASSERT(idles_1_active == 0);
|
283
|
+
ASSERT(idle_2_is_active == 0);
|
284
|
+
*/
|
285
|
+
|
286
|
+
if (loop_iteration % 2 == 0) {
|
287
|
+
r = uv_prepare_start(&prepare_2_handle, prepare_2_cb);
|
288
|
+
ASSERT(r == 0);
|
289
|
+
}
|
290
|
+
|
291
|
+
prepare_1_cb_called++;
|
292
|
+
loop_iteration++;
|
293
|
+
|
294
|
+
printf("Loop iteration %d of %d.\n", loop_iteration, ITERATIONS);
|
295
|
+
}
|
296
|
+
|
297
|
+
|
298
|
+
TEST_IMPL(loop_handles) {
|
299
|
+
int i;
|
300
|
+
int r;
|
301
|
+
|
302
|
+
r = uv_prepare_init(uv_default_loop(), &prepare_1_handle);
|
303
|
+
ASSERT(r == 0);
|
304
|
+
r = uv_prepare_start(&prepare_1_handle, prepare_1_cb);
|
305
|
+
ASSERT(r == 0);
|
306
|
+
|
307
|
+
r = uv_check_init(uv_default_loop(), &check_handle);
|
308
|
+
ASSERT(r == 0);
|
309
|
+
r = uv_check_start(&check_handle, check_cb);
|
310
|
+
ASSERT(r == 0);
|
311
|
+
|
312
|
+
/* initialize only, prepare_2 is started by prepare_1_cb */
|
313
|
+
r = uv_prepare_init(uv_default_loop(), &prepare_2_handle);
|
314
|
+
ASSERT(r == 0);
|
315
|
+
|
316
|
+
for (i = 0; i < IDLE_COUNT; i++) {
|
317
|
+
/* initialize only, idle_1 handles are started by check_cb */
|
318
|
+
r = uv_idle_init(uv_default_loop(), &idle_1_handles[i]);
|
319
|
+
ASSERT(r == 0);
|
320
|
+
}
|
321
|
+
|
322
|
+
/* don't init or start idle_2, both is done by idle_1_cb */
|
323
|
+
|
324
|
+
/* the timer callback is there to keep the event loop polling */
|
325
|
+
/* unref it as it is not supposed to keep the loop alive */
|
326
|
+
r = uv_timer_init(uv_default_loop(), &timer_handle);
|
327
|
+
ASSERT(r == 0);
|
328
|
+
r = uv_timer_start(&timer_handle, timer_cb, TIMEOUT, TIMEOUT);
|
329
|
+
ASSERT(r == 0);
|
330
|
+
uv_unref(uv_default_loop());
|
331
|
+
|
332
|
+
r = uv_run(uv_default_loop());
|
333
|
+
ASSERT(r == 0);
|
334
|
+
|
335
|
+
ASSERT(loop_iteration == ITERATIONS);
|
336
|
+
|
337
|
+
ASSERT(prepare_1_cb_called == ITERATIONS);
|
338
|
+
ASSERT(prepare_1_close_cb_called == 1);
|
339
|
+
|
340
|
+
ASSERT(prepare_2_cb_called == floor(ITERATIONS / 2.0));
|
341
|
+
ASSERT(prepare_2_close_cb_called == 1);
|
342
|
+
|
343
|
+
ASSERT(check_cb_called == ITERATIONS);
|
344
|
+
ASSERT(check_close_cb_called == 1);
|
345
|
+
|
346
|
+
/* idle_1_cb should be called a lot */
|
347
|
+
/* XXX ASSERT(idle_1_cb_called >= ITERATIONS * IDLE_COUNT * 2); */
|
348
|
+
ASSERT(idle_1_close_cb_called == IDLE_COUNT);
|
349
|
+
/* XXX ASSERT(idles_1_active == 0); */
|
350
|
+
|
351
|
+
/* XXX ASSERT(idle_2_cb_started >= ITERATIONS); */
|
352
|
+
/* XXX ASSERT(idle_2_cb_called == idle_2_cb_started); */
|
353
|
+
ASSERT(idle_2_close_cb_called == idle_2_cb_started);
|
354
|
+
ASSERT(idle_2_is_active == 0);
|
355
|
+
|
356
|
+
ASSERT(timer_cb_called > 0);
|
357
|
+
|
358
|
+
return 0;
|
359
|
+
}
|
@@ -0,0 +1,102 @@
|
|
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
|
+
static int connection_cb_called = 0;
|
28
|
+
static int close_cb_called = 0;
|
29
|
+
static int connect_cb_called = 0;
|
30
|
+
static uv_tcp_t server;
|
31
|
+
static uv_tcp_t client;
|
32
|
+
|
33
|
+
|
34
|
+
static void close_cb(uv_handle_t* handle) {
|
35
|
+
ASSERT(handle != NULL);
|
36
|
+
close_cb_called++;
|
37
|
+
}
|
38
|
+
|
39
|
+
|
40
|
+
static void connection_cb(uv_stream_t* tcp, int status) {
|
41
|
+
ASSERT(status == 0);
|
42
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
43
|
+
connection_cb_called++;
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
static void start_server() {
|
48
|
+
struct sockaddr_in addr = uv_ip4_addr("0.0.0.0", TEST_PORT);
|
49
|
+
int r;
|
50
|
+
|
51
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
52
|
+
ASSERT(r == 0);
|
53
|
+
|
54
|
+
r = uv_tcp_bind(&server, addr);
|
55
|
+
ASSERT(r == 0);
|
56
|
+
|
57
|
+
r = uv_listen((uv_stream_t*)&server, 128, connection_cb);
|
58
|
+
ASSERT(r == 0);
|
59
|
+
|
60
|
+
r = uv_listen((uv_stream_t*)&server, 128, connection_cb);
|
61
|
+
ASSERT(r == 0);
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
static void connect_cb(uv_connect_t* req, int status) {
|
66
|
+
ASSERT(req != NULL);
|
67
|
+
ASSERT(status == 0);
|
68
|
+
free(req);
|
69
|
+
uv_close((uv_handle_t*)&client, close_cb);
|
70
|
+
connect_cb_called++;
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
static void client_connect() {
|
75
|
+
struct sockaddr_in addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
|
76
|
+
uv_connect_t* connect_req = malloc(sizeof *connect_req);
|
77
|
+
int r;
|
78
|
+
|
79
|
+
ASSERT(connect_req != NULL);
|
80
|
+
|
81
|
+
r = uv_tcp_init(uv_default_loop(), &client);
|
82
|
+
ASSERT(r == 0);
|
83
|
+
|
84
|
+
r = uv_tcp_connect(connect_req, &client, addr, connect_cb);
|
85
|
+
ASSERT(r == 0);
|
86
|
+
}
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
TEST_IMPL(multiple_listen) {
|
91
|
+
start_server();
|
92
|
+
|
93
|
+
client_connect();
|
94
|
+
|
95
|
+
uv_run(uv_default_loop());
|
96
|
+
|
97
|
+
ASSERT(connection_cb_called == 1);
|
98
|
+
ASSERT(connect_cb_called == 1);
|
99
|
+
ASSERT(close_cb_called == 2);
|
100
|
+
|
101
|
+
return 0;
|
102
|
+
}
|
@@ -0,0 +1,63 @@
|
|
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
|
+
|
28
|
+
|
29
|
+
/* The mutex and rwlock tests are really poor.
|
30
|
+
* They're very basic sanity checks and nothing more.
|
31
|
+
* Apologies if that rhymes.
|
32
|
+
*/
|
33
|
+
|
34
|
+
TEST_IMPL(thread_mutex) {
|
35
|
+
uv_mutex_t mutex;
|
36
|
+
int r;
|
37
|
+
|
38
|
+
r = uv_mutex_init(&mutex);
|
39
|
+
ASSERT(r == 0);
|
40
|
+
|
41
|
+
uv_mutex_lock(&mutex);
|
42
|
+
uv_mutex_unlock(&mutex);
|
43
|
+
uv_mutex_destroy(&mutex);
|
44
|
+
|
45
|
+
return 0;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
TEST_IMPL(thread_rwlock) {
|
50
|
+
uv_rwlock_t rwlock;
|
51
|
+
int r;
|
52
|
+
|
53
|
+
r = uv_rwlock_init(&rwlock);
|
54
|
+
ASSERT(r == 0);
|
55
|
+
|
56
|
+
uv_rwlock_rdlock(&rwlock);
|
57
|
+
uv_rwlock_rdunlock(&rwlock);
|
58
|
+
uv_rwlock_wrlock(&rwlock);
|
59
|
+
uv_rwlock_wrunlock(&rwlock);
|
60
|
+
uv_rwlock_destroy(&rwlock);
|
61
|
+
|
62
|
+
return 0;
|
63
|
+
}
|
@@ -0,0 +1,28 @@
|
|
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 "task.h"
|
23
|
+
|
24
|
+
|
25
|
+
TEST_IMPL(pass_always) {
|
26
|
+
/* This test always passes. It is used to test the test runner. */
|
27
|
+
return 0;
|
28
|
+
}
|