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,124 @@
|
|
1
|
+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
2
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
3
|
+
* of this software and associated documentation files (the "Software"), to
|
4
|
+
* deal in the Software without restriction, including without limitation the
|
5
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
6
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
7
|
+
* furnished to do so, subject to the following conditions:
|
8
|
+
*
|
9
|
+
* The above copyright notice and this permission notice shall be included in
|
10
|
+
* all copies or substantial portions of the Software.
|
11
|
+
*
|
12
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
13
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
14
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
15
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
16
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
17
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
18
|
+
* IN THE SOFTWARE.
|
19
|
+
*/
|
20
|
+
|
21
|
+
/* This file integrates the libuv event loop with the libeio thread pool */
|
22
|
+
|
23
|
+
#include "uv.h"
|
24
|
+
#include "eio.h"
|
25
|
+
|
26
|
+
#include <assert.h>
|
27
|
+
#include <stdio.h>
|
28
|
+
|
29
|
+
|
30
|
+
static void uv_eio_do_poll(uv_idle_t* watcher, int status) {
|
31
|
+
assert(watcher == &(watcher->loop->uv_eio_poller));
|
32
|
+
|
33
|
+
/* printf("uv_eio_poller\n"); */
|
34
|
+
|
35
|
+
if (eio_poll(&watcher->loop->uv_eio_channel) != -1 && uv_is_active((uv_handle_t*) watcher)) {
|
36
|
+
/* printf("uv_eio_poller stop\n"); */
|
37
|
+
uv_idle_stop(watcher);
|
38
|
+
uv_unref(watcher->loop);
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
|
43
|
+
/* Called from the main thread. */
|
44
|
+
static void uv_eio_want_poll_notifier_cb(uv_async_t* watcher, int status) {
|
45
|
+
uv_loop_t* loop = watcher->loop;
|
46
|
+
|
47
|
+
assert(watcher == &loop->uv_eio_want_poll_notifier);
|
48
|
+
|
49
|
+
/* printf("want poll notifier\n"); */
|
50
|
+
|
51
|
+
if (eio_poll(&watcher->loop->uv_eio_channel) == -1 && !uv_is_active((uv_handle_t*) &loop->uv_eio_poller)) {
|
52
|
+
/* printf("uv_eio_poller start\n"); */
|
53
|
+
uv_idle_start(&loop->uv_eio_poller, uv_eio_do_poll);
|
54
|
+
uv_ref(loop);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
|
59
|
+
static void uv_eio_done_poll_notifier_cb(uv_async_t* watcher, int revents) {
|
60
|
+
uv_loop_t* loop = watcher->loop;
|
61
|
+
|
62
|
+
assert(watcher == &loop->uv_eio_done_poll_notifier);
|
63
|
+
|
64
|
+
/* printf("done poll notifier\n"); */
|
65
|
+
|
66
|
+
if (eio_poll(&watcher->loop->uv_eio_channel) != -1 && uv_is_active((uv_handle_t*) &loop->uv_eio_poller)) {
|
67
|
+
/* printf("uv_eio_poller stop\n"); */
|
68
|
+
uv_idle_stop(&loop->uv_eio_poller);
|
69
|
+
uv_unref(loop);
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
/*
|
75
|
+
* uv_eio_want_poll() is called from the EIO thread pool each time an EIO
|
76
|
+
* request (that is, one of the node.fs.* functions) has completed.
|
77
|
+
*/
|
78
|
+
static void uv_eio_want_poll(eio_channel *channel) {
|
79
|
+
/* Signal the main thread that eio_poll need to be processed. */
|
80
|
+
|
81
|
+
/*
|
82
|
+
* TODO need to select the correct uv_loop_t and async_send to
|
83
|
+
* uv_eio_want_poll_notifier.
|
84
|
+
*/
|
85
|
+
|
86
|
+
uv_async_send(&((uv_loop_t *)channel->data)->uv_eio_want_poll_notifier);
|
87
|
+
}
|
88
|
+
|
89
|
+
|
90
|
+
static void uv_eio_done_poll(eio_channel *channel) {
|
91
|
+
/*
|
92
|
+
* Signal the main thread that we should stop calling eio_poll().
|
93
|
+
* from the idle watcher.
|
94
|
+
*/
|
95
|
+
uv_async_send(&((uv_loop_t *)channel->data)->uv_eio_done_poll_notifier);
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
static void uv__eio_init(void) {
|
100
|
+
eio_init(uv_eio_want_poll, uv_eio_done_poll);
|
101
|
+
}
|
102
|
+
|
103
|
+
static uv_once_t uv__eio_init_once_guard = UV_ONCE_INIT;
|
104
|
+
|
105
|
+
|
106
|
+
void uv_eio_init(uv_loop_t* loop) {
|
107
|
+
if (loop->counters.eio_init == 0) {
|
108
|
+
loop->counters.eio_init++;
|
109
|
+
|
110
|
+
uv_idle_init(loop, &loop->uv_eio_poller);
|
111
|
+
uv_idle_start(&loop->uv_eio_poller, uv_eio_do_poll);
|
112
|
+
|
113
|
+
loop->uv_eio_want_poll_notifier.data = loop;
|
114
|
+
uv_async_init(loop, &loop->uv_eio_want_poll_notifier,
|
115
|
+
uv_eio_want_poll_notifier_cb);
|
116
|
+
uv_unref(loop);
|
117
|
+
|
118
|
+
uv_async_init(loop, &loop->uv_eio_done_poll_notifier,
|
119
|
+
uv_eio_done_poll_notifier_cb);
|
120
|
+
uv_unref(loop);
|
121
|
+
|
122
|
+
uv_once(&uv__eio_init_once_guard, uv__eio_init);
|
123
|
+
}
|
124
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/* This header is private to libuv */
|
2
|
+
#ifndef UV_EIO_H_
|
3
|
+
#define UV_EIO_H_
|
4
|
+
|
5
|
+
#include "eio.h"
|
6
|
+
|
7
|
+
/*
|
8
|
+
* Call this function to integrate libeio into the libuv event loop. It is
|
9
|
+
* safe to call more than once.
|
10
|
+
* TODO: uv_eio_deinit
|
11
|
+
*/
|
12
|
+
void uv_eio_init(uv_loop_t*);
|
13
|
+
#endif
|
@@ -0,0 +1,354 @@
|
|
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 "uv-common.h"
|
24
|
+
|
25
|
+
#include <assert.h>
|
26
|
+
#include <stddef.h> /* NULL */
|
27
|
+
#include <stdlib.h> /* malloc */
|
28
|
+
#include <string.h> /* memset */
|
29
|
+
|
30
|
+
/* use inet_pton from c-ares if necessary */
|
31
|
+
#include "ares_config.h"
|
32
|
+
#include "ares/inet_net_pton.h"
|
33
|
+
#include "ares/inet_ntop.h"
|
34
|
+
|
35
|
+
#define XX(uc, lc) case UV_##uc: return sizeof(uv_##lc##_t);
|
36
|
+
|
37
|
+
size_t uv_handle_size(uv_handle_type type) {
|
38
|
+
switch (type) {
|
39
|
+
UV_HANDLE_TYPE_MAP(XX)
|
40
|
+
default:
|
41
|
+
return -1;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
size_t uv_req_size(uv_req_type type) {
|
46
|
+
switch(type) {
|
47
|
+
UV_REQ_TYPE_MAP(XX)
|
48
|
+
default:
|
49
|
+
return -1;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
#undef XX
|
54
|
+
|
55
|
+
size_t uv_strlcpy(char* dst, const char* src, size_t size) {
|
56
|
+
size_t n;
|
57
|
+
|
58
|
+
if (size == 0)
|
59
|
+
return 0;
|
60
|
+
|
61
|
+
for (n = 0; n < (size - 1) && *src != '\0'; n++)
|
62
|
+
*dst++ = *src++;
|
63
|
+
|
64
|
+
*dst = '\0';
|
65
|
+
|
66
|
+
return n;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
size_t uv_strlcat(char* dst, const char* src, size_t size) {
|
71
|
+
size_t n;
|
72
|
+
|
73
|
+
if (size == 0)
|
74
|
+
return 0;
|
75
|
+
|
76
|
+
for (n = 0; n < size && *dst != '\0'; n++, dst++);
|
77
|
+
|
78
|
+
if (n == size)
|
79
|
+
return n;
|
80
|
+
|
81
|
+
while (n < (size - 1) && *src != '\0')
|
82
|
+
n++, *dst++ = *src++;
|
83
|
+
|
84
|
+
*dst = '\0';
|
85
|
+
|
86
|
+
return n;
|
87
|
+
}
|
88
|
+
|
89
|
+
|
90
|
+
uv_buf_t uv_buf_init(char* base, size_t len) {
|
91
|
+
uv_buf_t buf;
|
92
|
+
buf.base = base;
|
93
|
+
buf.len = len;
|
94
|
+
return buf;
|
95
|
+
}
|
96
|
+
|
97
|
+
|
98
|
+
const uv_err_t uv_ok_ = { UV_OK, 0 };
|
99
|
+
|
100
|
+
#define UV_ERR_NAME_GEN(val, name, s) case UV_##name : return #name;
|
101
|
+
const char* uv_err_name(uv_err_t err) {
|
102
|
+
switch (err.code) {
|
103
|
+
UV_ERRNO_MAP(UV_ERR_NAME_GEN)
|
104
|
+
default:
|
105
|
+
assert(0);
|
106
|
+
return NULL;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
#undef UV_ERR_NAME_GEN
|
110
|
+
|
111
|
+
|
112
|
+
#define UV_STRERROR_GEN(val, name, s) case UV_##name : return s;
|
113
|
+
const char* uv_strerror(uv_err_t err) {
|
114
|
+
switch (err.code) {
|
115
|
+
UV_ERRNO_MAP(UV_STRERROR_GEN)
|
116
|
+
default:
|
117
|
+
return "Unknown system error";
|
118
|
+
}
|
119
|
+
}
|
120
|
+
#undef UV_STRERROR_GEN
|
121
|
+
|
122
|
+
|
123
|
+
int uv__set_error(uv_loop_t* loop, uv_err_code code, int sys_error) {
|
124
|
+
loop->last_err.code = code;
|
125
|
+
loop->last_err.sys_errno_ = sys_error;
|
126
|
+
return -1;
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
int uv__set_sys_error(uv_loop_t* loop, int sys_error) {
|
131
|
+
loop->last_err.code = uv_translate_sys_error(sys_error);
|
132
|
+
loop->last_err.sys_errno_ = sys_error;
|
133
|
+
return -1;
|
134
|
+
}
|
135
|
+
|
136
|
+
|
137
|
+
int uv__set_artificial_error(uv_loop_t* loop, uv_err_code code) {
|
138
|
+
loop->last_err = uv__new_artificial_error(code);
|
139
|
+
return -1;
|
140
|
+
}
|
141
|
+
|
142
|
+
|
143
|
+
uv_err_t uv__new_sys_error(int sys_error) {
|
144
|
+
uv_err_t error;
|
145
|
+
error.code = uv_translate_sys_error(sys_error);
|
146
|
+
error.sys_errno_ = sys_error;
|
147
|
+
return error;
|
148
|
+
}
|
149
|
+
|
150
|
+
|
151
|
+
uv_err_t uv__new_artificial_error(uv_err_code code) {
|
152
|
+
uv_err_t error;
|
153
|
+
error.code = code;
|
154
|
+
error.sys_errno_ = 0;
|
155
|
+
return error;
|
156
|
+
}
|
157
|
+
|
158
|
+
|
159
|
+
uv_err_t uv_last_error(uv_loop_t* loop) {
|
160
|
+
return loop->last_err;
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
struct sockaddr_in uv_ip4_addr(const char* ip, int port) {
|
165
|
+
struct sockaddr_in addr;
|
166
|
+
|
167
|
+
memset(&addr, 0, sizeof(struct sockaddr_in));
|
168
|
+
|
169
|
+
addr.sin_family = AF_INET;
|
170
|
+
addr.sin_port = htons(port);
|
171
|
+
addr.sin_addr.s_addr = inet_addr(ip);
|
172
|
+
|
173
|
+
return addr;
|
174
|
+
}
|
175
|
+
|
176
|
+
|
177
|
+
struct sockaddr_in6 uv_ip6_addr(const char* ip, int port) {
|
178
|
+
struct sockaddr_in6 addr;
|
179
|
+
|
180
|
+
memset(&addr, 0, sizeof(struct sockaddr_in6));
|
181
|
+
|
182
|
+
addr.sin6_family = AF_INET6;
|
183
|
+
addr.sin6_port = htons(port);
|
184
|
+
ares_inet_pton(AF_INET6, ip, &addr.sin6_addr);
|
185
|
+
|
186
|
+
return addr;
|
187
|
+
}
|
188
|
+
|
189
|
+
|
190
|
+
int uv_ip4_name(struct sockaddr_in* src, char* dst, size_t size) {
|
191
|
+
const char* d = ares_inet_ntop(AF_INET, &src->sin_addr, dst, size);
|
192
|
+
return d != dst;
|
193
|
+
}
|
194
|
+
|
195
|
+
|
196
|
+
int uv_ip6_name(struct sockaddr_in6* src, char* dst, size_t size) {
|
197
|
+
const char* d = ares_inet_ntop(AF_INET6, &src->sin6_addr, dst, size);
|
198
|
+
return d != dst;
|
199
|
+
}
|
200
|
+
|
201
|
+
|
202
|
+
static int cmp_ares_tasks(const uv_ares_task_t* a, const uv_ares_task_t* b) {
|
203
|
+
if (a->sock < b->sock) return -1;
|
204
|
+
if (a->sock > b->sock) return 1;
|
205
|
+
return 0;
|
206
|
+
}
|
207
|
+
|
208
|
+
|
209
|
+
RB_GENERATE_STATIC(uv__ares_tasks, uv_ares_task_s, node, cmp_ares_tasks)
|
210
|
+
|
211
|
+
|
212
|
+
/* add ares handle to list */
|
213
|
+
void uv_add_ares_handle(uv_loop_t* loop, uv_ares_task_t* handle) {
|
214
|
+
assert(loop == handle->loop);
|
215
|
+
RB_INSERT(uv__ares_tasks, &loop->uv_ares_handles_, handle);
|
216
|
+
}
|
217
|
+
|
218
|
+
|
219
|
+
/* find matching ares handle in list */
|
220
|
+
uv_ares_task_t* uv_find_ares_handle(uv_loop_t* loop, ares_socket_t sock) {
|
221
|
+
uv_ares_task_t handle;
|
222
|
+
handle.sock = sock;
|
223
|
+
return RB_FIND(uv__ares_tasks, &loop->uv_ares_handles_, &handle);
|
224
|
+
}
|
225
|
+
|
226
|
+
|
227
|
+
/* remove ares handle in list */
|
228
|
+
void uv_remove_ares_handle(uv_ares_task_t* handle) {
|
229
|
+
RB_REMOVE(uv__ares_tasks, &handle->loop->uv_ares_handles_, handle);
|
230
|
+
}
|
231
|
+
|
232
|
+
|
233
|
+
/* Returns 1 if the uv_ares_handles_ list is empty. 0 otherwise. */
|
234
|
+
int uv_ares_handles_empty(uv_loop_t* loop) {
|
235
|
+
return RB_EMPTY(&loop->uv_ares_handles_);
|
236
|
+
}
|
237
|
+
|
238
|
+
|
239
|
+
int uv_tcp_bind(uv_tcp_t* handle, struct sockaddr_in addr) {
|
240
|
+
if (handle->type != UV_TCP || addr.sin_family != AF_INET) {
|
241
|
+
uv__set_artificial_error(handle->loop, UV_EFAULT);
|
242
|
+
return -1;
|
243
|
+
}
|
244
|
+
|
245
|
+
return uv__tcp_bind(handle, addr);
|
246
|
+
}
|
247
|
+
|
248
|
+
|
249
|
+
int uv_tcp_bind6(uv_tcp_t* handle, struct sockaddr_in6 addr) {
|
250
|
+
if (handle->type != UV_TCP || addr.sin6_family != AF_INET6) {
|
251
|
+
uv__set_artificial_error(handle->loop, UV_EFAULT);
|
252
|
+
return -1;
|
253
|
+
}
|
254
|
+
|
255
|
+
return uv__tcp_bind6(handle, addr);
|
256
|
+
}
|
257
|
+
|
258
|
+
|
259
|
+
int uv_udp_bind(uv_udp_t* handle, struct sockaddr_in addr,
|
260
|
+
unsigned int flags) {
|
261
|
+
if (handle->type != UV_UDP || addr.sin_family != AF_INET) {
|
262
|
+
uv__set_artificial_error(handle->loop, UV_EFAULT);
|
263
|
+
return -1;
|
264
|
+
}
|
265
|
+
|
266
|
+
return uv__udp_bind(handle, addr, flags);
|
267
|
+
}
|
268
|
+
|
269
|
+
|
270
|
+
int uv_udp_bind6(uv_udp_t* handle, struct sockaddr_in6 addr,
|
271
|
+
unsigned int flags) {
|
272
|
+
if (handle->type != UV_UDP || addr.sin6_family != AF_INET6) {
|
273
|
+
uv__set_artificial_error(handle->loop, UV_EFAULT);
|
274
|
+
return -1;
|
275
|
+
}
|
276
|
+
|
277
|
+
return uv__udp_bind6(handle, addr, flags);
|
278
|
+
}
|
279
|
+
|
280
|
+
|
281
|
+
int uv_tcp_connect(uv_connect_t* req,
|
282
|
+
uv_tcp_t* handle,
|
283
|
+
struct sockaddr_in address,
|
284
|
+
uv_connect_cb cb) {
|
285
|
+
if (handle->type != UV_TCP || address.sin_family != AF_INET) {
|
286
|
+
uv__set_artificial_error(handle->loop, UV_EINVAL);
|
287
|
+
return -1;
|
288
|
+
}
|
289
|
+
|
290
|
+
return uv__tcp_connect(req, handle, address, cb);
|
291
|
+
}
|
292
|
+
|
293
|
+
|
294
|
+
int uv_tcp_connect6(uv_connect_t* req,
|
295
|
+
uv_tcp_t* handle,
|
296
|
+
struct sockaddr_in6 address,
|
297
|
+
uv_connect_cb cb) {
|
298
|
+
if (handle->type != UV_TCP || address.sin6_family != AF_INET6) {
|
299
|
+
uv__set_artificial_error(handle->loop, UV_EINVAL);
|
300
|
+
return -1;
|
301
|
+
}
|
302
|
+
|
303
|
+
return uv__tcp_connect6(req, handle, address, cb);
|
304
|
+
}
|
305
|
+
|
306
|
+
|
307
|
+
#ifdef _WIN32
|
308
|
+
static UINT __stdcall uv__thread_start(void *ctx_v)
|
309
|
+
#else
|
310
|
+
static void *uv__thread_start(void *ctx_v)
|
311
|
+
#endif
|
312
|
+
{
|
313
|
+
void (*entry)(void *arg);
|
314
|
+
void *arg;
|
315
|
+
|
316
|
+
struct {
|
317
|
+
void (*entry)(void *arg);
|
318
|
+
void *arg;
|
319
|
+
} *ctx;
|
320
|
+
|
321
|
+
ctx = ctx_v;
|
322
|
+
arg = ctx->arg;
|
323
|
+
entry = ctx->entry;
|
324
|
+
free(ctx);
|
325
|
+
entry(arg);
|
326
|
+
|
327
|
+
return 0;
|
328
|
+
}
|
329
|
+
|
330
|
+
|
331
|
+
int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) {
|
332
|
+
struct {
|
333
|
+
void (*entry)(void *arg);
|
334
|
+
void *arg;
|
335
|
+
} *ctx;
|
336
|
+
|
337
|
+
if ((ctx = malloc(sizeof *ctx)) == NULL)
|
338
|
+
return -1;
|
339
|
+
|
340
|
+
ctx->entry = entry;
|
341
|
+
ctx->arg = arg;
|
342
|
+
|
343
|
+
#ifdef _WIN32
|
344
|
+
*tid = (HANDLE) _beginthreadex(NULL, 0, uv__thread_start, ctx, 0, NULL);
|
345
|
+
if (*tid == 0) {
|
346
|
+
#else
|
347
|
+
if (pthread_create(tid, NULL, uv__thread_start, ctx)) {
|
348
|
+
#endif
|
349
|
+
free(ctx);
|
350
|
+
return -1;
|
351
|
+
}
|
352
|
+
|
353
|
+
return 0;
|
354
|
+
}
|
@@ -0,0 +1,87 @@
|
|
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
|
+
/*
|
23
|
+
* This file is private to libuv. It provides common functionality to both
|
24
|
+
* Windows and Unix backends.
|
25
|
+
*/
|
26
|
+
|
27
|
+
#ifndef UV_COMMON_H_
|
28
|
+
#define UV_COMMON_H_
|
29
|
+
|
30
|
+
#include "uv.h"
|
31
|
+
#include "tree.h"
|
32
|
+
|
33
|
+
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
|
34
|
+
|
35
|
+
|
36
|
+
struct uv_ares_task_s {
|
37
|
+
UV_HANDLE_FIELDS
|
38
|
+
#if _WIN32
|
39
|
+
struct uv_req_s ares_req;
|
40
|
+
SOCKET sock;
|
41
|
+
HANDLE h_wait;
|
42
|
+
WSAEVENT h_event;
|
43
|
+
HANDLE h_close_event;
|
44
|
+
#else
|
45
|
+
int sock;
|
46
|
+
ev_io read_watcher;
|
47
|
+
ev_io write_watcher;
|
48
|
+
#endif
|
49
|
+
RB_ENTRY(uv_ares_task_s) node;
|
50
|
+
};
|
51
|
+
|
52
|
+
|
53
|
+
void uv_remove_ares_handle(uv_ares_task_t* handle);
|
54
|
+
uv_ares_task_t* uv_find_ares_handle(uv_loop_t*, ares_socket_t sock);
|
55
|
+
|
56
|
+
/* TODO Rename to uv_ares_task_init? */
|
57
|
+
void uv_add_ares_handle(uv_loop_t* loop, uv_ares_task_t* handle);
|
58
|
+
|
59
|
+
int uv_ares_handles_empty(uv_loop_t* loop);
|
60
|
+
|
61
|
+
extern const uv_err_t uv_ok_;
|
62
|
+
|
63
|
+
uv_err_code uv_translate_sys_error(int sys_errno);
|
64
|
+
int uv__set_error(uv_loop_t* loop, uv_err_code code, int sys_error);
|
65
|
+
int uv__set_sys_error(uv_loop_t* loop, int sys_error);
|
66
|
+
int uv__set_artificial_error(uv_loop_t* loop, uv_err_code code);
|
67
|
+
uv_err_t uv__new_sys_error(int sys_error);
|
68
|
+
uv_err_t uv__new_artificial_error(uv_err_code code);
|
69
|
+
|
70
|
+
int uv__tcp_bind(uv_tcp_t* handle, struct sockaddr_in addr);
|
71
|
+
int uv__tcp_bind6(uv_tcp_t* handle, struct sockaddr_in6 addr);
|
72
|
+
|
73
|
+
int uv__udp_bind(uv_udp_t* handle, struct sockaddr_in addr, unsigned flags);
|
74
|
+
int uv__udp_bind6(uv_udp_t* handle, struct sockaddr_in6 addr, unsigned flags);
|
75
|
+
|
76
|
+
int uv__tcp_connect(uv_connect_t* req,
|
77
|
+
uv_tcp_t* handle,
|
78
|
+
struct sockaddr_in address,
|
79
|
+
uv_connect_cb cb);
|
80
|
+
|
81
|
+
int uv__tcp_connect6(uv_connect_t* req,
|
82
|
+
uv_tcp_t* handle,
|
83
|
+
struct sockaddr_in6 address,
|
84
|
+
uv_connect_cb cb);
|
85
|
+
|
86
|
+
|
87
|
+
#endif /* UV_COMMON_H_ */
|
@@ -0,0 +1,127 @@
|
|
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 <assert.h>
|
23
|
+
|
24
|
+
#include "uv.h"
|
25
|
+
#include "internal.h"
|
26
|
+
|
27
|
+
|
28
|
+
/* Atomic set operation on char */
|
29
|
+
#ifdef _MSC_VER /* MSVC */
|
30
|
+
|
31
|
+
/* _InterlockedOr8 is supported by MSVC on x32 and x64. It is slightly less */
|
32
|
+
/* efficient than InterlockedExchange, but InterlockedExchange8 does not */
|
33
|
+
/* exist, and interlocked operations on larger targets might require the */
|
34
|
+
/* target to be aligned. */
|
35
|
+
#pragma intrinsic(_InterlockedOr8)
|
36
|
+
|
37
|
+
static char __declspec(inline) uv_atomic_exchange_set(char volatile* target) {
|
38
|
+
return _InterlockedOr8(target, 1);
|
39
|
+
}
|
40
|
+
|
41
|
+
#else /* GCC */
|
42
|
+
|
43
|
+
/* Mingw-32 version, hopefully this works for 64-bit gcc as well. */
|
44
|
+
static inline char uv_atomic_exchange_set(char volatile* target) {
|
45
|
+
const char one = 1;
|
46
|
+
char old_value;
|
47
|
+
__asm__ __volatile__ ("lock xchgb %0, %1\n\t"
|
48
|
+
: "=r"(old_value), "=m"(*target)
|
49
|
+
: "0"(one), "m"(*target)
|
50
|
+
: "memory");
|
51
|
+
return old_value;
|
52
|
+
}
|
53
|
+
|
54
|
+
#endif
|
55
|
+
|
56
|
+
|
57
|
+
void uv_async_endgame(uv_loop_t* loop, uv_async_t* handle) {
|
58
|
+
if (handle->flags & UV_HANDLE_CLOSING &&
|
59
|
+
!handle->async_sent) {
|
60
|
+
assert(!(handle->flags & UV_HANDLE_CLOSED));
|
61
|
+
handle->flags |= UV_HANDLE_CLOSED;
|
62
|
+
|
63
|
+
if (handle->close_cb) {
|
64
|
+
handle->close_cb((uv_handle_t*)handle);
|
65
|
+
}
|
66
|
+
|
67
|
+
uv_unref(loop);
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
|
72
|
+
int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) {
|
73
|
+
uv_req_t* req;
|
74
|
+
|
75
|
+
loop->counters.handle_init++;
|
76
|
+
loop->counters.async_init++;
|
77
|
+
|
78
|
+
handle->type = UV_ASYNC;
|
79
|
+
handle->loop = loop;
|
80
|
+
handle->flags = 0;
|
81
|
+
handle->async_sent = 0;
|
82
|
+
handle->async_cb = async_cb;
|
83
|
+
|
84
|
+
req = &handle->async_req;
|
85
|
+
uv_req_init(loop, req);
|
86
|
+
req->type = UV_WAKEUP;
|
87
|
+
req->data = handle;
|
88
|
+
|
89
|
+
uv_ref(loop);
|
90
|
+
|
91
|
+
return 0;
|
92
|
+
}
|
93
|
+
|
94
|
+
|
95
|
+
int uv_async_send(uv_async_t* handle) {
|
96
|
+
uv_loop_t* loop = handle->loop;
|
97
|
+
|
98
|
+
if (handle->type != UV_ASYNC) {
|
99
|
+
/* Can't set errno because that's not thread-safe. */
|
100
|
+
return -1;
|
101
|
+
}
|
102
|
+
|
103
|
+
/* The user should make sure never to call uv_async_send to a closing */
|
104
|
+
/* or closed handle. */
|
105
|
+
assert(!(handle->flags & UV_HANDLE_CLOSING));
|
106
|
+
|
107
|
+
if (!uv_atomic_exchange_set(&handle->async_sent)) {
|
108
|
+
POST_COMPLETION_FOR_REQ(loop, &handle->async_req);
|
109
|
+
}
|
110
|
+
|
111
|
+
return 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
|
115
|
+
void uv_process_async_wakeup_req(uv_loop_t* loop, uv_async_t* handle,
|
116
|
+
uv_req_t* req) {
|
117
|
+
assert(handle->type == UV_ASYNC);
|
118
|
+
assert(req->type == UV_WAKEUP);
|
119
|
+
|
120
|
+
handle->async_sent = 0;
|
121
|
+
if (handle->async_cb) {
|
122
|
+
handle->async_cb((uv_async_t*) handle, 0);
|
123
|
+
}
|
124
|
+
if (handle->flags & UV_HANDLE_CLOSING) {
|
125
|
+
uv_want_endgame(loop, (uv_handle_t*)handle);
|
126
|
+
}
|
127
|
+
}
|