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,321 @@
|
|
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
|
+
#include <string.h>
|
27
|
+
|
28
|
+
|
29
|
+
typedef struct {
|
30
|
+
uv_write_t req;
|
31
|
+
uv_buf_t buf;
|
32
|
+
} write_req_t;
|
33
|
+
|
34
|
+
|
35
|
+
/* used to track multiple DNS requests received */
|
36
|
+
typedef struct {
|
37
|
+
char* prevbuf_ptr;
|
38
|
+
int prevbuf_pos;
|
39
|
+
int prevbuf_rem;
|
40
|
+
} dnsstate;
|
41
|
+
|
42
|
+
|
43
|
+
/* modify handle to append dnsstate */
|
44
|
+
typedef struct {
|
45
|
+
uv_tcp_t handle;
|
46
|
+
dnsstate state;
|
47
|
+
} dnshandle;
|
48
|
+
|
49
|
+
|
50
|
+
static uv_loop_t* loop;
|
51
|
+
|
52
|
+
|
53
|
+
static uv_tcp_t server;
|
54
|
+
|
55
|
+
|
56
|
+
static void after_write(uv_write_t* req, int status);
|
57
|
+
static void after_read(uv_stream_t*, ssize_t nread, uv_buf_t buf);
|
58
|
+
static void on_close(uv_handle_t* peer);
|
59
|
+
static void on_connection(uv_stream_t*, int status);
|
60
|
+
|
61
|
+
#define WRITE_BUF_LEN (64*1024)
|
62
|
+
#define DNSREC_LEN (4)
|
63
|
+
|
64
|
+
#define LEN_OFFSET 0
|
65
|
+
#define QUERYID_OFFSET 2
|
66
|
+
unsigned char DNSRsp[] = {0, 43, 0, 0, 0x81, 0x80, 0, 1, 0, 1, 0, 0, 0, 0 };
|
67
|
+
unsigned char qrecord[] = {5, 'e', 'c', 'h', 'o', 's', 3, 's', 'r', 'v', 0, 0, 1, 0, 1};
|
68
|
+
unsigned char arecord[] = {0xc0, 0x0c, 0, 1, 0, 1, 0, 0, 5, 0xbd, 0, 4, 10, 0, 1, 1 };
|
69
|
+
|
70
|
+
|
71
|
+
static void after_write(uv_write_t* req, int status) {
|
72
|
+
write_req_t* wr;
|
73
|
+
|
74
|
+
if (status) {
|
75
|
+
uv_err_t err = uv_last_error(loop);
|
76
|
+
fprintf(stderr, "uv_write error: %s\n", uv_strerror(err));
|
77
|
+
ASSERT(0);
|
78
|
+
}
|
79
|
+
|
80
|
+
wr = (write_req_t*) req;
|
81
|
+
|
82
|
+
/* Free the read/write buffer and the request */
|
83
|
+
free(wr->buf.base);
|
84
|
+
free(wr);
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
static void after_shutdown(uv_shutdown_t* req, int status) {
|
89
|
+
uv_close((uv_handle_t*) req->handle, on_close);
|
90
|
+
free(req);
|
91
|
+
}
|
92
|
+
|
93
|
+
|
94
|
+
static void addrsp(write_req_t* wr, char* hdr) {
|
95
|
+
char * dnsrsp;
|
96
|
+
short int rsplen;
|
97
|
+
short int* reclen;
|
98
|
+
|
99
|
+
rsplen = sizeof(DNSRsp) + sizeof(qrecord) + sizeof(arecord);
|
100
|
+
|
101
|
+
ASSERT (rsplen + wr->buf.len < WRITE_BUF_LEN);
|
102
|
+
|
103
|
+
dnsrsp = wr->buf.base + wr->buf.len;
|
104
|
+
|
105
|
+
/* copy stock response */
|
106
|
+
memcpy(dnsrsp, DNSRsp, sizeof(DNSRsp));
|
107
|
+
memcpy(dnsrsp + sizeof(DNSRsp), qrecord, sizeof(qrecord));
|
108
|
+
memcpy(dnsrsp + sizeof(DNSRsp) + sizeof(qrecord), arecord, sizeof(arecord));
|
109
|
+
|
110
|
+
/* overwrite with network order length and id from request header */
|
111
|
+
reclen = (short int*)dnsrsp;
|
112
|
+
*reclen = htons(rsplen-2);
|
113
|
+
dnsrsp[QUERYID_OFFSET] = hdr[QUERYID_OFFSET];
|
114
|
+
dnsrsp[QUERYID_OFFSET+1] = hdr[QUERYID_OFFSET+1];
|
115
|
+
|
116
|
+
wr->buf.len += rsplen;
|
117
|
+
}
|
118
|
+
|
119
|
+
static void process_req(uv_stream_t* handle, ssize_t nread, uv_buf_t buf) {
|
120
|
+
write_req_t* wr;
|
121
|
+
dnshandle* dns = (dnshandle*)handle;
|
122
|
+
char hdrbuf[DNSREC_LEN];
|
123
|
+
int hdrbuf_remaining = DNSREC_LEN;
|
124
|
+
int rec_remaining = 0;
|
125
|
+
int readbuf_remaining;
|
126
|
+
char* dnsreq;
|
127
|
+
char* hdrstart;
|
128
|
+
int usingprev = 0;
|
129
|
+
|
130
|
+
wr = (write_req_t*) malloc(sizeof *wr);
|
131
|
+
wr->buf.base = (char*)malloc(WRITE_BUF_LEN);
|
132
|
+
wr->buf.len = 0;
|
133
|
+
|
134
|
+
if (dns->state.prevbuf_ptr != NULL) {
|
135
|
+
dnsreq = dns->state.prevbuf_ptr + dns->state.prevbuf_pos;
|
136
|
+
readbuf_remaining = dns->state.prevbuf_rem;
|
137
|
+
usingprev = 1;
|
138
|
+
} else {
|
139
|
+
dnsreq = buf.base;
|
140
|
+
readbuf_remaining = nread;
|
141
|
+
}
|
142
|
+
hdrstart = dnsreq;
|
143
|
+
|
144
|
+
while (dnsreq != NULL) {
|
145
|
+
/* something to process */
|
146
|
+
while (readbuf_remaining > 0) {
|
147
|
+
/* something to process in current buffer */
|
148
|
+
if (hdrbuf_remaining > 0) {
|
149
|
+
/* process len and id */
|
150
|
+
if (readbuf_remaining < hdrbuf_remaining) {
|
151
|
+
/* too little to get request header. save for next buffer */
|
152
|
+
memcpy(&hdrbuf[DNSREC_LEN - hdrbuf_remaining], dnsreq, readbuf_remaining);
|
153
|
+
hdrbuf_remaining = DNSREC_LEN - readbuf_remaining;
|
154
|
+
break;
|
155
|
+
} else {
|
156
|
+
short int reclen_n;
|
157
|
+
/* save header */
|
158
|
+
memcpy(&hdrbuf[DNSREC_LEN - hdrbuf_remaining], dnsreq, hdrbuf_remaining);
|
159
|
+
dnsreq += hdrbuf_remaining;
|
160
|
+
readbuf_remaining -= hdrbuf_remaining;
|
161
|
+
hdrbuf_remaining = 0;
|
162
|
+
|
163
|
+
/* get record length */
|
164
|
+
reclen_n = *((short int*)hdrbuf);
|
165
|
+
rec_remaining = ntohs(reclen_n) - (DNSREC_LEN - 2);
|
166
|
+
}
|
167
|
+
}
|
168
|
+
|
169
|
+
if (rec_remaining <= readbuf_remaining) {
|
170
|
+
/* prepare reply */
|
171
|
+
addrsp(wr, hdrbuf);
|
172
|
+
|
173
|
+
/* move to next record */
|
174
|
+
dnsreq += rec_remaining;
|
175
|
+
hdrstart = dnsreq;
|
176
|
+
readbuf_remaining -= rec_remaining;
|
177
|
+
rec_remaining = 0;
|
178
|
+
hdrbuf_remaining = DNSREC_LEN;
|
179
|
+
} else {
|
180
|
+
/* otherwise this buffer is done. */
|
181
|
+
rec_remaining -= readbuf_remaining;
|
182
|
+
break;
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
/* if we had to use bytes from prev buffer, start processing the current one */
|
187
|
+
if (usingprev == 1) {
|
188
|
+
/* free previous buffer */
|
189
|
+
free(dns->state.prevbuf_ptr);
|
190
|
+
dnsreq = buf.base;
|
191
|
+
readbuf_remaining = nread;
|
192
|
+
usingprev = 0;
|
193
|
+
} else {
|
194
|
+
dnsreq = NULL;
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
/* send write buffer */
|
199
|
+
if (wr->buf.len > 0) {
|
200
|
+
if (uv_write((uv_write_t*) &wr->req, handle, &wr->buf, 1, after_write)) {
|
201
|
+
FATAL("uv_write failed");
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
if (readbuf_remaining > 0) {
|
206
|
+
/* save start of record position, so we can continue on next read */
|
207
|
+
dns->state.prevbuf_ptr = buf.base;
|
208
|
+
dns->state.prevbuf_pos = hdrstart - buf.base;
|
209
|
+
dns->state.prevbuf_rem = nread - dns->state.prevbuf_pos;
|
210
|
+
} else {
|
211
|
+
/* nothing left in this buffer */
|
212
|
+
dns->state.prevbuf_ptr = NULL;
|
213
|
+
dns->state.prevbuf_pos = 0;
|
214
|
+
dns->state.prevbuf_rem = 0;
|
215
|
+
free(buf.base);
|
216
|
+
}
|
217
|
+
}
|
218
|
+
|
219
|
+
static void after_read(uv_stream_t* handle, ssize_t nread, uv_buf_t buf) {
|
220
|
+
uv_shutdown_t* req;
|
221
|
+
|
222
|
+
if (nread < 0) {
|
223
|
+
/* Error or EOF */
|
224
|
+
ASSERT (uv_last_error(loop).code == UV_EOF);
|
225
|
+
|
226
|
+
if (buf.base) {
|
227
|
+
free(buf.base);
|
228
|
+
}
|
229
|
+
|
230
|
+
req = malloc(sizeof *req);
|
231
|
+
uv_shutdown(req, handle, after_shutdown);
|
232
|
+
|
233
|
+
return;
|
234
|
+
}
|
235
|
+
|
236
|
+
if (nread == 0) {
|
237
|
+
/* Everything OK, but nothing read. */
|
238
|
+
free(buf.base);
|
239
|
+
return;
|
240
|
+
}
|
241
|
+
/* process requests and send responses */
|
242
|
+
process_req(handle, nread, buf);
|
243
|
+
}
|
244
|
+
|
245
|
+
|
246
|
+
static void on_close(uv_handle_t* peer) {
|
247
|
+
free(peer);
|
248
|
+
}
|
249
|
+
|
250
|
+
|
251
|
+
static uv_buf_t buf_alloc(uv_handle_t* handle, size_t suggested_size) {
|
252
|
+
uv_buf_t buf;
|
253
|
+
buf.base = (char*) malloc(suggested_size);
|
254
|
+
buf.len = suggested_size;
|
255
|
+
return buf;
|
256
|
+
}
|
257
|
+
|
258
|
+
|
259
|
+
static void on_connection(uv_stream_t* server, int status) {
|
260
|
+
dnshandle* handle;
|
261
|
+
int r;
|
262
|
+
|
263
|
+
ASSERT(status == 0);
|
264
|
+
|
265
|
+
handle = (dnshandle*) malloc(sizeof *handle);
|
266
|
+
ASSERT(handle != NULL);
|
267
|
+
|
268
|
+
/* initialize read buffer state */
|
269
|
+
handle->state.prevbuf_ptr = 0;
|
270
|
+
handle->state.prevbuf_pos = 0;
|
271
|
+
handle->state.prevbuf_rem = 0;
|
272
|
+
|
273
|
+
r = uv_tcp_init(loop, (uv_tcp_t*)handle);
|
274
|
+
ASSERT(r == 0);
|
275
|
+
|
276
|
+
r = uv_accept(server, (uv_stream_t*)handle);
|
277
|
+
ASSERT(r == 0);
|
278
|
+
|
279
|
+
r = uv_read_start((uv_stream_t*)handle, buf_alloc, after_read);
|
280
|
+
ASSERT(r == 0);
|
281
|
+
}
|
282
|
+
|
283
|
+
|
284
|
+
static int dns_start(int port) {
|
285
|
+
struct sockaddr_in addr = uv_ip4_addr("0.0.0.0", port);
|
286
|
+
int r;
|
287
|
+
|
288
|
+
r = uv_tcp_init(loop, &server);
|
289
|
+
if (r) {
|
290
|
+
/* TODO: Error codes */
|
291
|
+
fprintf(stderr, "Socket creation error\n");
|
292
|
+
return 1;
|
293
|
+
}
|
294
|
+
|
295
|
+
r = uv_tcp_bind(&server, addr);
|
296
|
+
if (r) {
|
297
|
+
/* TODO: Error codes */
|
298
|
+
fprintf(stderr, "Bind error\n");
|
299
|
+
return 1;
|
300
|
+
}
|
301
|
+
|
302
|
+
r = uv_listen((uv_stream_t*)&server, 128, on_connection);
|
303
|
+
if (r) {
|
304
|
+
/* TODO: Error codes */
|
305
|
+
fprintf(stderr, "Listen error\n");
|
306
|
+
return 1;
|
307
|
+
}
|
308
|
+
|
309
|
+
return 0;
|
310
|
+
}
|
311
|
+
|
312
|
+
|
313
|
+
HELPER_IMPL(dns_server) {
|
314
|
+
loop = uv_default_loop();
|
315
|
+
|
316
|
+
if (dns_start(TEST_PORT_2))
|
317
|
+
return 1;
|
318
|
+
|
319
|
+
uv_run(loop);
|
320
|
+
return 0;
|
321
|
+
}
|
@@ -0,0 +1,370 @@
|
|
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
|
+
typedef struct {
|
28
|
+
uv_write_t req;
|
29
|
+
uv_buf_t buf;
|
30
|
+
} write_req_t;
|
31
|
+
|
32
|
+
static uv_loop_t* loop;
|
33
|
+
|
34
|
+
static int server_closed;
|
35
|
+
static stream_type serverType;
|
36
|
+
static uv_tcp_t tcpServer;
|
37
|
+
static uv_udp_t udpServer;
|
38
|
+
static uv_pipe_t pipeServer;
|
39
|
+
static uv_handle_t* server;
|
40
|
+
|
41
|
+
static void after_write(uv_write_t* req, int status);
|
42
|
+
static void after_read(uv_stream_t*, ssize_t nread, uv_buf_t buf);
|
43
|
+
static void on_close(uv_handle_t* peer);
|
44
|
+
static void on_server_close(uv_handle_t* handle);
|
45
|
+
static void on_connection(uv_stream_t*, int status);
|
46
|
+
|
47
|
+
|
48
|
+
static void after_write(uv_write_t* req, int status) {
|
49
|
+
write_req_t* wr;
|
50
|
+
|
51
|
+
if (status) {
|
52
|
+
uv_err_t err = uv_last_error(loop);
|
53
|
+
fprintf(stderr, "uv_write error: %s\n", uv_strerror(err));
|
54
|
+
ASSERT(0);
|
55
|
+
}
|
56
|
+
|
57
|
+
wr = (write_req_t*) req;
|
58
|
+
|
59
|
+
/* Free the read/write buffer and the request */
|
60
|
+
free(wr->buf.base);
|
61
|
+
free(wr);
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
static void after_shutdown(uv_shutdown_t* req, int status) {
|
66
|
+
uv_close((uv_handle_t*)req->handle, on_close);
|
67
|
+
free(req);
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
static void after_read(uv_stream_t* handle, ssize_t nread, uv_buf_t buf) {
|
72
|
+
int i;
|
73
|
+
write_req_t *wr;
|
74
|
+
uv_shutdown_t* req;
|
75
|
+
|
76
|
+
if (nread < 0) {
|
77
|
+
/* Error or EOF */
|
78
|
+
ASSERT (uv_last_error(loop).code == UV_EOF);
|
79
|
+
|
80
|
+
if (buf.base) {
|
81
|
+
free(buf.base);
|
82
|
+
}
|
83
|
+
|
84
|
+
req = (uv_shutdown_t*) malloc(sizeof *req);
|
85
|
+
uv_shutdown(req, handle, after_shutdown);
|
86
|
+
|
87
|
+
return;
|
88
|
+
}
|
89
|
+
|
90
|
+
if (nread == 0) {
|
91
|
+
/* Everything OK, but nothing read. */
|
92
|
+
free(buf.base);
|
93
|
+
return;
|
94
|
+
}
|
95
|
+
|
96
|
+
/*
|
97
|
+
* Scan for the letter Q which signals that we should quit the server.
|
98
|
+
* If we get QS it means close the stream.
|
99
|
+
*/
|
100
|
+
if (!server_closed) {
|
101
|
+
for (i = 0; i < nread; i++) {
|
102
|
+
if (buf.base[i] == 'Q') {
|
103
|
+
if (i + 1 < nread && buf.base[i + 1] == 'S') {
|
104
|
+
free(buf.base);
|
105
|
+
uv_close((uv_handle_t*)handle, on_close);
|
106
|
+
return;
|
107
|
+
} else {
|
108
|
+
uv_close(server, on_server_close);
|
109
|
+
server_closed = 1;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
wr = (write_req_t*) malloc(sizeof *wr);
|
116
|
+
|
117
|
+
wr->buf = uv_buf_init(buf.base, nread);
|
118
|
+
if (uv_write(&wr->req, handle, &wr->buf, 1, after_write)) {
|
119
|
+
FATAL("uv_write failed");
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
static void on_close(uv_handle_t* peer) {
|
125
|
+
free(peer);
|
126
|
+
}
|
127
|
+
|
128
|
+
|
129
|
+
static uv_buf_t echo_alloc(uv_handle_t* handle, size_t suggested_size) {
|
130
|
+
return uv_buf_init(malloc(suggested_size), suggested_size);
|
131
|
+
}
|
132
|
+
|
133
|
+
|
134
|
+
static void on_connection(uv_stream_t* server, int status) {
|
135
|
+
uv_stream_t* stream;
|
136
|
+
int r;
|
137
|
+
|
138
|
+
if (status != 0) {
|
139
|
+
fprintf(stderr, "Connect error %d\n",
|
140
|
+
uv_last_error(loop).code);
|
141
|
+
}
|
142
|
+
ASSERT(status == 0);
|
143
|
+
|
144
|
+
switch (serverType) {
|
145
|
+
case TCP:
|
146
|
+
stream = malloc(sizeof(uv_tcp_t));
|
147
|
+
ASSERT(stream != NULL);
|
148
|
+
r = uv_tcp_init(loop, (uv_tcp_t*)stream);
|
149
|
+
ASSERT(r == 0);
|
150
|
+
break;
|
151
|
+
|
152
|
+
case PIPE:
|
153
|
+
stream = malloc(sizeof(uv_pipe_t));
|
154
|
+
ASSERT(stream != NULL);
|
155
|
+
r = uv_pipe_init(loop, (uv_pipe_t*)stream, 0);
|
156
|
+
ASSERT(r == 0);
|
157
|
+
break;
|
158
|
+
|
159
|
+
default:
|
160
|
+
ASSERT(0 && "Bad serverType");
|
161
|
+
abort();
|
162
|
+
}
|
163
|
+
|
164
|
+
/* associate server with stream */
|
165
|
+
stream->data = server;
|
166
|
+
|
167
|
+
r = uv_accept(server, stream);
|
168
|
+
ASSERT(r == 0);
|
169
|
+
|
170
|
+
r = uv_read_start(stream, echo_alloc, after_read);
|
171
|
+
ASSERT(r == 0);
|
172
|
+
}
|
173
|
+
|
174
|
+
|
175
|
+
static void on_server_close(uv_handle_t* handle) {
|
176
|
+
ASSERT(handle == server);
|
177
|
+
}
|
178
|
+
|
179
|
+
|
180
|
+
static void on_send(uv_udp_send_t* req, int status);
|
181
|
+
|
182
|
+
|
183
|
+
static void on_recv(uv_udp_t* handle,
|
184
|
+
ssize_t nread,
|
185
|
+
uv_buf_t buf,
|
186
|
+
struct sockaddr* addr,
|
187
|
+
unsigned flags) {
|
188
|
+
uv_udp_send_t* req;
|
189
|
+
int r;
|
190
|
+
|
191
|
+
ASSERT(nread > 0);
|
192
|
+
ASSERT(addr->sa_family == AF_INET);
|
193
|
+
|
194
|
+
req = malloc(sizeof(*req));
|
195
|
+
ASSERT(req != NULL);
|
196
|
+
|
197
|
+
r = uv_udp_send(req, handle, &buf, 1, *(struct sockaddr_in*)addr, on_send);
|
198
|
+
ASSERT(r == 0);
|
199
|
+
}
|
200
|
+
|
201
|
+
|
202
|
+
static void on_send(uv_udp_send_t* req, int status) {
|
203
|
+
ASSERT(status == 0);
|
204
|
+
free(req);
|
205
|
+
}
|
206
|
+
|
207
|
+
|
208
|
+
static int tcp4_echo_start(int port) {
|
209
|
+
struct sockaddr_in addr = uv_ip4_addr("0.0.0.0", port);
|
210
|
+
int r;
|
211
|
+
|
212
|
+
server = (uv_handle_t*)&tcpServer;
|
213
|
+
serverType = TCP;
|
214
|
+
|
215
|
+
r = uv_tcp_init(loop, &tcpServer);
|
216
|
+
if (r) {
|
217
|
+
/* TODO: Error codes */
|
218
|
+
fprintf(stderr, "Socket creation error\n");
|
219
|
+
return 1;
|
220
|
+
}
|
221
|
+
|
222
|
+
r = uv_tcp_bind(&tcpServer, addr);
|
223
|
+
if (r) {
|
224
|
+
/* TODO: Error codes */
|
225
|
+
fprintf(stderr, "Bind error\n");
|
226
|
+
return 1;
|
227
|
+
}
|
228
|
+
|
229
|
+
r = uv_listen((uv_stream_t*)&tcpServer, SOMAXCONN, on_connection);
|
230
|
+
if (r) {
|
231
|
+
/* TODO: Error codes */
|
232
|
+
fprintf(stderr, "Listen error %s\n",
|
233
|
+
uv_err_name(uv_last_error(loop)));
|
234
|
+
return 1;
|
235
|
+
}
|
236
|
+
|
237
|
+
return 0;
|
238
|
+
}
|
239
|
+
|
240
|
+
|
241
|
+
static int tcp6_echo_start(int port) {
|
242
|
+
struct sockaddr_in6 addr6 = uv_ip6_addr("::1", port);
|
243
|
+
int r;
|
244
|
+
|
245
|
+
server = (uv_handle_t*)&tcpServer;
|
246
|
+
serverType = TCP;
|
247
|
+
|
248
|
+
r = uv_tcp_init(loop, &tcpServer);
|
249
|
+
if (r) {
|
250
|
+
/* TODO: Error codes */
|
251
|
+
fprintf(stderr, "Socket creation error\n");
|
252
|
+
return 1;
|
253
|
+
}
|
254
|
+
|
255
|
+
/* IPv6 is optional as not all platforms support it */
|
256
|
+
r = uv_tcp_bind6(&tcpServer, addr6);
|
257
|
+
if (r) {
|
258
|
+
/* show message but return OK */
|
259
|
+
fprintf(stderr, "IPv6 not supported\n");
|
260
|
+
return 0;
|
261
|
+
}
|
262
|
+
|
263
|
+
r = uv_listen((uv_stream_t*)&tcpServer, SOMAXCONN, on_connection);
|
264
|
+
if (r) {
|
265
|
+
/* TODO: Error codes */
|
266
|
+
fprintf(stderr, "Listen error\n");
|
267
|
+
return 1;
|
268
|
+
}
|
269
|
+
|
270
|
+
return 0;
|
271
|
+
}
|
272
|
+
|
273
|
+
|
274
|
+
static int udp4_echo_start(int port) {
|
275
|
+
int r;
|
276
|
+
|
277
|
+
server = (uv_handle_t*)&udpServer;
|
278
|
+
serverType = UDP;
|
279
|
+
|
280
|
+
r = uv_udp_init(loop, &udpServer);
|
281
|
+
if (r) {
|
282
|
+
fprintf(stderr, "uv_udp_init: %s\n",
|
283
|
+
uv_strerror(uv_last_error(loop)));
|
284
|
+
return 1;
|
285
|
+
}
|
286
|
+
|
287
|
+
r = uv_udp_recv_start(&udpServer, echo_alloc, on_recv);
|
288
|
+
if (r) {
|
289
|
+
fprintf(stderr, "uv_udp_recv_start: %s\n",
|
290
|
+
uv_strerror(uv_last_error(loop)));
|
291
|
+
return 1;
|
292
|
+
}
|
293
|
+
|
294
|
+
return 0;
|
295
|
+
}
|
296
|
+
|
297
|
+
|
298
|
+
static int pipe_echo_start(char* pipeName) {
|
299
|
+
int r;
|
300
|
+
|
301
|
+
server = (uv_handle_t*)&pipeServer;
|
302
|
+
serverType = PIPE;
|
303
|
+
|
304
|
+
r = uv_pipe_init(loop, &pipeServer, 0);
|
305
|
+
if (r) {
|
306
|
+
fprintf(stderr, "uv_pipe_init: %s\n",
|
307
|
+
uv_strerror(uv_last_error(loop)));
|
308
|
+
return 1;
|
309
|
+
}
|
310
|
+
|
311
|
+
r = uv_pipe_bind(&pipeServer, pipeName);
|
312
|
+
if (r) {
|
313
|
+
fprintf(stderr, "uv_pipe_bind: %s\n",
|
314
|
+
uv_strerror(uv_last_error(loop)));
|
315
|
+
return 1;
|
316
|
+
}
|
317
|
+
|
318
|
+
r = uv_listen((uv_stream_t*)&pipeServer, SOMAXCONN, on_connection);
|
319
|
+
if (r) {
|
320
|
+
fprintf(stderr, "uv_pipe_listen: %s\n",
|
321
|
+
uv_strerror(uv_last_error(loop)));
|
322
|
+
return 1;
|
323
|
+
}
|
324
|
+
|
325
|
+
return 0;
|
326
|
+
}
|
327
|
+
|
328
|
+
|
329
|
+
HELPER_IMPL(tcp4_echo_server) {
|
330
|
+
loop = uv_default_loop();
|
331
|
+
|
332
|
+
if (tcp4_echo_start(TEST_PORT))
|
333
|
+
return 1;
|
334
|
+
|
335
|
+
uv_run(loop);
|
336
|
+
return 0;
|
337
|
+
}
|
338
|
+
|
339
|
+
|
340
|
+
HELPER_IMPL(tcp6_echo_server) {
|
341
|
+
loop = uv_default_loop();
|
342
|
+
|
343
|
+
if (tcp6_echo_start(TEST_PORT))
|
344
|
+
return 1;
|
345
|
+
|
346
|
+
uv_run(loop);
|
347
|
+
return 0;
|
348
|
+
}
|
349
|
+
|
350
|
+
|
351
|
+
HELPER_IMPL(pipe_echo_server) {
|
352
|
+
loop = uv_default_loop();
|
353
|
+
|
354
|
+
if (pipe_echo_start(TEST_PIPENAME))
|
355
|
+
return 1;
|
356
|
+
|
357
|
+
uv_run(loop);
|
358
|
+
return 0;
|
359
|
+
}
|
360
|
+
|
361
|
+
|
362
|
+
HELPER_IMPL(udp4_echo_server) {
|
363
|
+
loop = uv_default_loop();
|
364
|
+
|
365
|
+
if (udp4_echo_start(TEST_PORT))
|
366
|
+
return 1;
|
367
|
+
|
368
|
+
uv_run(loop);
|
369
|
+
return 0;
|
370
|
+
}
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
foobar
|