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,588 @@
|
|
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
|
+
#include "uv.h"
|
22
|
+
#include "unix/internal.h"
|
23
|
+
|
24
|
+
#include <stddef.h> /* NULL */
|
25
|
+
#include <stdio.h> /* printf */
|
26
|
+
#include <stdlib.h>
|
27
|
+
#include <string.h> /* strerror */
|
28
|
+
#include <errno.h>
|
29
|
+
#include <assert.h>
|
30
|
+
#include <unistd.h>
|
31
|
+
#include <sys/types.h>
|
32
|
+
#include <sys/stat.h>
|
33
|
+
#include <fcntl.h>
|
34
|
+
#include <sys/socket.h>
|
35
|
+
#include <sys/un.h>
|
36
|
+
#include <netinet/in.h>
|
37
|
+
#include <arpa/inet.h>
|
38
|
+
#include <limits.h> /* PATH_MAX */
|
39
|
+
#include <sys/uio.h> /* writev */
|
40
|
+
|
41
|
+
#ifdef __linux__
|
42
|
+
# include <sys/ioctl.h>
|
43
|
+
#endif
|
44
|
+
|
45
|
+
#ifdef __sun
|
46
|
+
# include <sys/types.h>
|
47
|
+
# include <sys/wait.h>
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#ifdef __APPLE__
|
51
|
+
# include <mach-o/dyld.h> /* _NSGetExecutablePath */
|
52
|
+
#endif
|
53
|
+
|
54
|
+
#ifdef __FreeBSD__
|
55
|
+
# include <sys/sysctl.h>
|
56
|
+
# include <sys/wait.h>
|
57
|
+
#endif
|
58
|
+
|
59
|
+
static uv_loop_t default_loop_struct;
|
60
|
+
static uv_loop_t* default_loop_ptr;
|
61
|
+
|
62
|
+
static void uv__finish_close(uv_handle_t* handle);
|
63
|
+
|
64
|
+
|
65
|
+
void uv_close(uv_handle_t* handle, uv_close_cb close_cb) {
|
66
|
+
handle->close_cb = close_cb;
|
67
|
+
|
68
|
+
switch (handle->type) {
|
69
|
+
case UV_NAMED_PIPE:
|
70
|
+
uv__pipe_close((uv_pipe_t*)handle);
|
71
|
+
break;
|
72
|
+
|
73
|
+
case UV_TTY:
|
74
|
+
case UV_TCP:
|
75
|
+
uv__stream_close((uv_stream_t*)handle);
|
76
|
+
break;
|
77
|
+
|
78
|
+
case UV_UDP:
|
79
|
+
uv__udp_close((uv_udp_t*)handle);
|
80
|
+
break;
|
81
|
+
|
82
|
+
case UV_PREPARE:
|
83
|
+
uv__prepare_close((uv_prepare_t*)handle);
|
84
|
+
break;
|
85
|
+
|
86
|
+
case UV_CHECK:
|
87
|
+
uv__check_close((uv_check_t*)handle);
|
88
|
+
break;
|
89
|
+
|
90
|
+
case UV_IDLE:
|
91
|
+
uv__idle_close((uv_idle_t*)handle);
|
92
|
+
break;
|
93
|
+
|
94
|
+
case UV_ASYNC:
|
95
|
+
uv__async_close((uv_async_t*)handle);
|
96
|
+
break;
|
97
|
+
|
98
|
+
case UV_TIMER:
|
99
|
+
uv__timer_close((uv_timer_t*)handle);
|
100
|
+
break;
|
101
|
+
|
102
|
+
case UV_PROCESS:
|
103
|
+
uv__process_close((uv_process_t*)handle);
|
104
|
+
break;
|
105
|
+
|
106
|
+
case UV_FS_EVENT:
|
107
|
+
uv__fs_event_close((uv_fs_event_t*)handle);
|
108
|
+
break;
|
109
|
+
|
110
|
+
default:
|
111
|
+
assert(0);
|
112
|
+
}
|
113
|
+
|
114
|
+
handle->flags |= UV_CLOSING;
|
115
|
+
handle->endgame_next = handle->loop->endgame_handles;
|
116
|
+
handle->loop->endgame_handles = handle;
|
117
|
+
uv_unref(handle->loop);
|
118
|
+
}
|
119
|
+
|
120
|
+
|
121
|
+
int uv_is_closing(uv_handle_t* handle) {
|
122
|
+
return handle->flags & (UV_CLOSING | UV_CLOSED);
|
123
|
+
}
|
124
|
+
|
125
|
+
|
126
|
+
uv_loop_t* uv_default_loop(void) {
|
127
|
+
if (default_loop_ptr)
|
128
|
+
return default_loop_ptr;
|
129
|
+
|
130
|
+
if (uv__loop_init(&default_loop_struct, /* default_loop? */ 1))
|
131
|
+
return NULL;
|
132
|
+
|
133
|
+
return (default_loop_ptr = &default_loop_struct);
|
134
|
+
}
|
135
|
+
|
136
|
+
|
137
|
+
uv_loop_t* uv_loop_new(void) {
|
138
|
+
uv_loop_t* loop;
|
139
|
+
|
140
|
+
if ((loop = malloc(sizeof(*loop))) == NULL)
|
141
|
+
return NULL;
|
142
|
+
|
143
|
+
if (uv__loop_init(loop, /* default_loop? */ 0)) {
|
144
|
+
free(loop);
|
145
|
+
return NULL;
|
146
|
+
}
|
147
|
+
|
148
|
+
return loop;
|
149
|
+
}
|
150
|
+
|
151
|
+
|
152
|
+
void uv_loop_delete(uv_loop_t* loop) {
|
153
|
+
uv__loop_delete(loop);
|
154
|
+
#ifndef NDEBUG
|
155
|
+
memset(loop, -1, sizeof *loop);
|
156
|
+
#endif
|
157
|
+
if (loop == default_loop_ptr)
|
158
|
+
default_loop_ptr = NULL;
|
159
|
+
else
|
160
|
+
free(loop);
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
int uv_loop_refcount(const uv_loop_t* loop) {
|
165
|
+
return ev_loop_refcount(loop->ev);
|
166
|
+
}
|
167
|
+
|
168
|
+
|
169
|
+
void uv__run(uv_loop_t* loop) {
|
170
|
+
ev_run(loop->ev, EVRUN_ONCE);
|
171
|
+
|
172
|
+
while (loop->endgame_handles)
|
173
|
+
uv__finish_close(loop->endgame_handles);
|
174
|
+
}
|
175
|
+
|
176
|
+
|
177
|
+
int uv_run(uv_loop_t* loop) {
|
178
|
+
do
|
179
|
+
uv__run(loop);
|
180
|
+
while (uv_loop_refcount(loop) > 0);
|
181
|
+
|
182
|
+
return 0;
|
183
|
+
}
|
184
|
+
|
185
|
+
|
186
|
+
int uv_run_once(uv_loop_t* loop) {
|
187
|
+
uv__run(loop);
|
188
|
+
return 0;
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
void uv__handle_init(uv_loop_t* loop, uv_handle_t* handle,
|
193
|
+
uv_handle_type type) {
|
194
|
+
loop->counters.handle_init++;
|
195
|
+
|
196
|
+
handle->loop = loop;
|
197
|
+
handle->type = type;
|
198
|
+
handle->flags = 0;
|
199
|
+
handle->endgame_next = NULL;
|
200
|
+
uv_ref(loop); /* unref'd in uv_close() */
|
201
|
+
}
|
202
|
+
|
203
|
+
|
204
|
+
void uv__finish_close(uv_handle_t* handle) {
|
205
|
+
uv_loop_t* loop = handle->loop;
|
206
|
+
|
207
|
+
assert(handle->flags & UV_CLOSING);
|
208
|
+
assert(!(handle->flags & UV_CLOSED));
|
209
|
+
handle->flags |= UV_CLOSED;
|
210
|
+
|
211
|
+
switch (handle->type) {
|
212
|
+
case UV_PREPARE:
|
213
|
+
assert(!ev_is_active(&((uv_prepare_t*)handle)->prepare_watcher));
|
214
|
+
break;
|
215
|
+
|
216
|
+
case UV_CHECK:
|
217
|
+
assert(!ev_is_active(&((uv_check_t*)handle)->check_watcher));
|
218
|
+
break;
|
219
|
+
|
220
|
+
case UV_IDLE:
|
221
|
+
assert(!ev_is_active(&((uv_idle_t*)handle)->idle_watcher));
|
222
|
+
break;
|
223
|
+
|
224
|
+
case UV_ASYNC:
|
225
|
+
assert(!ev_is_active(&((uv_async_t*)handle)->async_watcher));
|
226
|
+
break;
|
227
|
+
|
228
|
+
case UV_TIMER:
|
229
|
+
assert(!ev_is_active(&((uv_timer_t*)handle)->timer_watcher));
|
230
|
+
break;
|
231
|
+
|
232
|
+
case UV_NAMED_PIPE:
|
233
|
+
case UV_TCP:
|
234
|
+
case UV_TTY:
|
235
|
+
assert(!ev_is_active(&((uv_stream_t*)handle)->read_watcher));
|
236
|
+
assert(!ev_is_active(&((uv_stream_t*)handle)->write_watcher));
|
237
|
+
assert(((uv_stream_t*)handle)->fd == -1);
|
238
|
+
uv__stream_destroy((uv_stream_t*)handle);
|
239
|
+
break;
|
240
|
+
|
241
|
+
case UV_UDP:
|
242
|
+
uv__udp_finish_close((uv_udp_t*)handle);
|
243
|
+
break;
|
244
|
+
|
245
|
+
case UV_PROCESS:
|
246
|
+
assert(!ev_is_active(&((uv_process_t*)handle)->child_watcher));
|
247
|
+
break;
|
248
|
+
|
249
|
+
case UV_FS_EVENT:
|
250
|
+
break;
|
251
|
+
|
252
|
+
default:
|
253
|
+
assert(0);
|
254
|
+
break;
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
loop->endgame_handles = handle->endgame_next;
|
259
|
+
|
260
|
+
if (handle->close_cb) {
|
261
|
+
handle->close_cb(handle);
|
262
|
+
}
|
263
|
+
}
|
264
|
+
|
265
|
+
|
266
|
+
void uv_ref(uv_loop_t* loop) {
|
267
|
+
ev_ref(loop->ev);
|
268
|
+
}
|
269
|
+
|
270
|
+
|
271
|
+
void uv_unref(uv_loop_t* loop) {
|
272
|
+
ev_unref(loop->ev);
|
273
|
+
}
|
274
|
+
|
275
|
+
|
276
|
+
void uv_update_time(uv_loop_t* loop) {
|
277
|
+
ev_now_update(loop->ev);
|
278
|
+
}
|
279
|
+
|
280
|
+
|
281
|
+
int64_t uv_now(uv_loop_t* loop) {
|
282
|
+
return (int64_t)(ev_now(loop->ev) * 1000);
|
283
|
+
}
|
284
|
+
|
285
|
+
|
286
|
+
void uv__req_init(uv_loop_t* loop, uv_req_t* req) {
|
287
|
+
loop->counters.req_init++;
|
288
|
+
req->type = UV_UNKNOWN_REQ;
|
289
|
+
}
|
290
|
+
|
291
|
+
|
292
|
+
int uv_is_active(uv_handle_t* handle) {
|
293
|
+
switch (handle->type) {
|
294
|
+
case UV_CHECK:
|
295
|
+
return uv__check_active((uv_check_t*)handle);
|
296
|
+
case UV_IDLE:
|
297
|
+
return uv__idle_active((uv_idle_t*)handle);
|
298
|
+
case UV_PREPARE:
|
299
|
+
return uv__prepare_active((uv_prepare_t*)handle);
|
300
|
+
case UV_TIMER:
|
301
|
+
return uv__timer_active((uv_timer_t*)handle);
|
302
|
+
default:
|
303
|
+
return 1;
|
304
|
+
}
|
305
|
+
}
|
306
|
+
|
307
|
+
|
308
|
+
static int uv_getaddrinfo_done(eio_req* req) {
|
309
|
+
uv_getaddrinfo_t* handle = req->data;
|
310
|
+
struct addrinfo *res = handle->res;
|
311
|
+
#if __sun
|
312
|
+
size_t hostlen = strlen(handle->hostname);
|
313
|
+
#endif
|
314
|
+
|
315
|
+
handle->res = NULL;
|
316
|
+
|
317
|
+
uv_unref(handle->loop);
|
318
|
+
|
319
|
+
free(handle->hints);
|
320
|
+
free(handle->service);
|
321
|
+
free(handle->hostname);
|
322
|
+
|
323
|
+
if (handle->retcode == 0) {
|
324
|
+
/* OK */
|
325
|
+
#if EAI_NODATA /* FreeBSD deprecated EAI_NODATA */
|
326
|
+
} else if (handle->retcode == EAI_NONAME || handle->retcode == EAI_NODATA) {
|
327
|
+
#else
|
328
|
+
} else if (handle->retcode == EAI_NONAME) {
|
329
|
+
#endif
|
330
|
+
uv__set_sys_error(handle->loop, ENOENT); /* FIXME compatibility hack */
|
331
|
+
#if __sun
|
332
|
+
} else if (handle->retcode == EAI_MEMORY && hostlen >= MAXHOSTNAMELEN) {
|
333
|
+
uv__set_sys_error(handle->loop, ENOENT);
|
334
|
+
#endif
|
335
|
+
} else {
|
336
|
+
handle->loop->last_err.code = UV_EADDRINFO;
|
337
|
+
handle->loop->last_err.sys_errno_ = handle->retcode;
|
338
|
+
}
|
339
|
+
|
340
|
+
handle->cb(handle, handle->retcode, res);
|
341
|
+
|
342
|
+
return 0;
|
343
|
+
}
|
344
|
+
|
345
|
+
|
346
|
+
static void getaddrinfo_thread_proc(eio_req *req) {
|
347
|
+
uv_getaddrinfo_t* handle = req->data;
|
348
|
+
|
349
|
+
handle->retcode = getaddrinfo(handle->hostname,
|
350
|
+
handle->service,
|
351
|
+
handle->hints,
|
352
|
+
&handle->res);
|
353
|
+
}
|
354
|
+
|
355
|
+
|
356
|
+
/* stub implementation of uv_getaddrinfo */
|
357
|
+
int uv_getaddrinfo(uv_loop_t* loop,
|
358
|
+
uv_getaddrinfo_t* handle,
|
359
|
+
uv_getaddrinfo_cb cb,
|
360
|
+
const char* hostname,
|
361
|
+
const char* service,
|
362
|
+
const struct addrinfo* hints) {
|
363
|
+
eio_req* req;
|
364
|
+
uv_eio_init(loop);
|
365
|
+
|
366
|
+
if (handle == NULL || cb == NULL ||
|
367
|
+
(hostname == NULL && service == NULL)) {
|
368
|
+
uv__set_artificial_error(loop, UV_EINVAL);
|
369
|
+
return -1;
|
370
|
+
}
|
371
|
+
|
372
|
+
uv__req_init(loop, (uv_req_t*)handle);
|
373
|
+
handle->type = UV_GETADDRINFO;
|
374
|
+
handle->loop = loop;
|
375
|
+
handle->cb = cb;
|
376
|
+
|
377
|
+
/* TODO don't alloc so much. */
|
378
|
+
|
379
|
+
if (hints) {
|
380
|
+
handle->hints = malloc(sizeof(struct addrinfo));
|
381
|
+
memcpy(handle->hints, hints, sizeof(struct addrinfo));
|
382
|
+
}
|
383
|
+
else {
|
384
|
+
handle->hints = NULL;
|
385
|
+
}
|
386
|
+
|
387
|
+
/* TODO security! check lengths, check return values. */
|
388
|
+
|
389
|
+
handle->hostname = hostname ? strdup(hostname) : NULL;
|
390
|
+
handle->service = service ? strdup(service) : NULL;
|
391
|
+
handle->res = NULL;
|
392
|
+
handle->retcode = 0;
|
393
|
+
|
394
|
+
/* TODO check handle->hostname == NULL */
|
395
|
+
/* TODO check handle->service == NULL */
|
396
|
+
|
397
|
+
uv_ref(loop);
|
398
|
+
|
399
|
+
req = eio_custom(getaddrinfo_thread_proc, EIO_PRI_DEFAULT,
|
400
|
+
uv_getaddrinfo_done, handle, &loop->uv_eio_channel);
|
401
|
+
assert(req);
|
402
|
+
assert(req->data == handle);
|
403
|
+
|
404
|
+
return 0;
|
405
|
+
}
|
406
|
+
|
407
|
+
|
408
|
+
void uv_freeaddrinfo(struct addrinfo* ai) {
|
409
|
+
if (ai)
|
410
|
+
freeaddrinfo(ai);
|
411
|
+
}
|
412
|
+
|
413
|
+
|
414
|
+
/* Open a socket in non-blocking close-on-exec mode, atomically if possible. */
|
415
|
+
int uv__socket(int domain, int type, int protocol) {
|
416
|
+
int sockfd;
|
417
|
+
|
418
|
+
#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC)
|
419
|
+
sockfd = socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);
|
420
|
+
|
421
|
+
if (sockfd != -1)
|
422
|
+
goto out;
|
423
|
+
|
424
|
+
if (errno != EINVAL)
|
425
|
+
goto out;
|
426
|
+
#endif
|
427
|
+
|
428
|
+
sockfd = socket(domain, type, protocol);
|
429
|
+
|
430
|
+
if (sockfd == -1)
|
431
|
+
goto out;
|
432
|
+
|
433
|
+
if (uv__nonblock(sockfd, 1) || uv__cloexec(sockfd, 1)) {
|
434
|
+
close(sockfd);
|
435
|
+
sockfd = -1;
|
436
|
+
}
|
437
|
+
|
438
|
+
out:
|
439
|
+
return sockfd;
|
440
|
+
}
|
441
|
+
|
442
|
+
|
443
|
+
int uv__accept(int sockfd, struct sockaddr* saddr, socklen_t slen) {
|
444
|
+
int peerfd;
|
445
|
+
|
446
|
+
assert(sockfd >= 0);
|
447
|
+
|
448
|
+
while (1) {
|
449
|
+
#if __linux__
|
450
|
+
peerfd = uv__accept4(sockfd, saddr, &slen, UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC);
|
451
|
+
if (peerfd != -1)
|
452
|
+
break;
|
453
|
+
|
454
|
+
if (errno == EINTR)
|
455
|
+
continue;
|
456
|
+
|
457
|
+
if (errno != ENOSYS)
|
458
|
+
break;
|
459
|
+
#endif
|
460
|
+
|
461
|
+
if ((peerfd = accept(sockfd, saddr, &slen)) == -1) {
|
462
|
+
if (errno == EINTR)
|
463
|
+
continue;
|
464
|
+
else
|
465
|
+
break;
|
466
|
+
}
|
467
|
+
|
468
|
+
if (uv__cloexec(peerfd, 1) || uv__nonblock(peerfd, 1)) {
|
469
|
+
close(peerfd);
|
470
|
+
peerfd = -1;
|
471
|
+
}
|
472
|
+
|
473
|
+
break;
|
474
|
+
}
|
475
|
+
|
476
|
+
return peerfd;
|
477
|
+
}
|
478
|
+
|
479
|
+
|
480
|
+
int uv__nonblock(int fd, int set) {
|
481
|
+
#if FIONBIO
|
482
|
+
return ioctl(fd, FIONBIO, &set);
|
483
|
+
#else
|
484
|
+
int flags;
|
485
|
+
|
486
|
+
if ((flags = fcntl(fd, F_GETFL)) == -1) {
|
487
|
+
return -1;
|
488
|
+
}
|
489
|
+
|
490
|
+
if (set) {
|
491
|
+
flags |= O_NONBLOCK;
|
492
|
+
} else {
|
493
|
+
flags &= ~O_NONBLOCK;
|
494
|
+
}
|
495
|
+
|
496
|
+
if (fcntl(fd, F_SETFL, flags) == -1) {
|
497
|
+
return -1;
|
498
|
+
}
|
499
|
+
|
500
|
+
return 0;
|
501
|
+
#endif
|
502
|
+
}
|
503
|
+
|
504
|
+
|
505
|
+
int uv__cloexec(int fd, int set) {
|
506
|
+
#if __linux__
|
507
|
+
/* Linux knows only FD_CLOEXEC so we can safely omit the fcntl(F_GETFD)
|
508
|
+
* syscall. CHECKME: That's probably true for other Unices as well.
|
509
|
+
*/
|
510
|
+
return fcntl(fd, F_SETFD, set ? FD_CLOEXEC : 0);
|
511
|
+
#else
|
512
|
+
int flags;
|
513
|
+
|
514
|
+
if ((flags = fcntl(fd, F_GETFD)) == -1) {
|
515
|
+
return -1;
|
516
|
+
}
|
517
|
+
|
518
|
+
if (set) {
|
519
|
+
flags |= FD_CLOEXEC;
|
520
|
+
} else {
|
521
|
+
flags &= ~FD_CLOEXEC;
|
522
|
+
}
|
523
|
+
|
524
|
+
if (fcntl(fd, F_SETFD, flags) == -1) {
|
525
|
+
return -1;
|
526
|
+
}
|
527
|
+
|
528
|
+
return 0;
|
529
|
+
#endif
|
530
|
+
}
|
531
|
+
|
532
|
+
|
533
|
+
/* This function is not execve-safe, there is a race window
|
534
|
+
* between the call to dup() and fcntl(FD_CLOEXEC).
|
535
|
+
*/
|
536
|
+
int uv__dup(int fd) {
|
537
|
+
fd = dup(fd);
|
538
|
+
|
539
|
+
if (fd == -1)
|
540
|
+
return -1;
|
541
|
+
|
542
|
+
if (uv__cloexec(fd, 1)) {
|
543
|
+
SAVE_ERRNO(close(fd));
|
544
|
+
return -1;
|
545
|
+
}
|
546
|
+
|
547
|
+
return fd;
|
548
|
+
}
|
549
|
+
|
550
|
+
|
551
|
+
/* TODO move to uv-common.c? */
|
552
|
+
size_t uv__strlcpy(char* dst, const char* src, size_t size) {
|
553
|
+
const char *org;
|
554
|
+
|
555
|
+
if (size == 0) {
|
556
|
+
return 0;
|
557
|
+
}
|
558
|
+
|
559
|
+
org = src;
|
560
|
+
while (--size && *src) {
|
561
|
+
*dst++ = *src++;
|
562
|
+
}
|
563
|
+
*dst = '\0';
|
564
|
+
|
565
|
+
return src - org;
|
566
|
+
}
|
567
|
+
|
568
|
+
|
569
|
+
uv_err_t uv_cwd(char* buffer, size_t size) {
|
570
|
+
if (!buffer || !size) {
|
571
|
+
return uv__new_artificial_error(UV_EINVAL);
|
572
|
+
}
|
573
|
+
|
574
|
+
if (getcwd(buffer, size)) {
|
575
|
+
return uv_ok_;
|
576
|
+
} else {
|
577
|
+
return uv__new_sys_error(errno);
|
578
|
+
}
|
579
|
+
}
|
580
|
+
|
581
|
+
|
582
|
+
uv_err_t uv_chdir(const char* dir) {
|
583
|
+
if (chdir(dir) == 0) {
|
584
|
+
return uv_ok_;
|
585
|
+
} else {
|
586
|
+
return uv__new_sys_error(errno);
|
587
|
+
}
|
588
|
+
}
|
@@ -0,0 +1,84 @@
|
|
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
|
+
#include "uv.h"
|
22
|
+
#include "../uv-common.h"
|
23
|
+
|
24
|
+
#include <assert.h>
|
25
|
+
#include <stdint.h>
|
26
|
+
#include <stddef.h>
|
27
|
+
#include <errno.h>
|
28
|
+
#include <unistd.h>
|
29
|
+
#include <time.h>
|
30
|
+
|
31
|
+
#undef NANOSEC
|
32
|
+
#define NANOSEC 1000000000
|
33
|
+
|
34
|
+
|
35
|
+
uint64_t uv_hrtime() {
|
36
|
+
struct timespec ts;
|
37
|
+
clock_gettime(CLOCK_MONOTONIC, &ts);
|
38
|
+
return (ts.tv_sec * NANOSEC + ts.tv_nsec);
|
39
|
+
}
|
40
|
+
|
41
|
+
void uv_loadavg(double avg[3]) {
|
42
|
+
/* Unsupported as of cygwin 1.7.7 */
|
43
|
+
avg[0] = avg[1] = avg[2] = 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
int uv_exepath(char* buffer, size_t* size) {
|
48
|
+
uint32_t usize;
|
49
|
+
int result;
|
50
|
+
char* path;
|
51
|
+
char* fullpath;
|
52
|
+
|
53
|
+
if (!buffer || !size) {
|
54
|
+
return -1;
|
55
|
+
}
|
56
|
+
|
57
|
+
*size = readlink("/proc/self/exe", buffer, *size - 1);
|
58
|
+
if (*size <= 0) return -1;
|
59
|
+
buffer[*size] = '\0';
|
60
|
+
return 0;
|
61
|
+
}
|
62
|
+
|
63
|
+
uint64_t uv_get_free_memory(void) {
|
64
|
+
return (uint64_t) sysconf(_SC_PAGESIZE) * sysconf(_SC_AVPHYS_PAGES);
|
65
|
+
}
|
66
|
+
|
67
|
+
uint64_t uv_get_total_memory(void) {
|
68
|
+
return (uint64_t) sysconf(_SC_PAGESIZE) * sysconf(_SC_PHYS_PAGES);
|
69
|
+
}
|
70
|
+
|
71
|
+
int uv_fs_event_init(uv_loop_t* loop,
|
72
|
+
uv_fs_event_t* handle,
|
73
|
+
const char* filename,
|
74
|
+
uv_fs_event_cb cb,
|
75
|
+
int flags) {
|
76
|
+
loop->counters.fs_event_init++;
|
77
|
+
uv__set_sys_error(loop, ENOSYS);
|
78
|
+
return -1;
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
void uv__fs_event_close(uv_fs_event_t* handle) {
|
83
|
+
assert(0 && "implement me");
|
84
|
+
}
|