rbczmq 1.6.2 → 1.6.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -3
- data/.gitmodules +6 -0
- data/.travis.yml +5 -1
- data/CHANGELOG.rdoc +15 -0
- data/Gemfile.lock +2 -2
- data/README.rdoc +5 -2
- data/Rakefile +8 -3
- data/ext/czmq/.gitignore +52 -0
- data/ext/czmq/.travis.yml +18 -0
- data/ext/czmq/AUTHORS +9 -0
- data/ext/czmq/COPYING +674 -0
- data/ext/czmq/COPYING.LESSER +178 -0
- data/ext/czmq/ChangeLog +0 -0
- data/ext/czmq/Makefile.am +22 -0
- data/ext/czmq/NEWS +263 -0
- data/ext/czmq/README +0 -0
- data/ext/czmq/README.md +1122 -0
- data/ext/czmq/README.txt +327 -0
- data/ext/czmq/autogen.sh +46 -0
- data/ext/czmq/builds/android/Android.mk +35 -0
- data/ext/czmq/builds/android/Application.mk +1 -0
- data/ext/czmq/builds/android/build.sh +59 -0
- data/ext/czmq/builds/android/clean.sh +26 -0
- data/ext/czmq/builds/mingw32/Makefile.mingw32 +38 -0
- data/ext/czmq/builds/mingw32/platform.h +0 -0
- data/ext/czmq/builds/msvc/.gitignore +18 -0
- data/ext/czmq/builds/msvc/README.txt +17 -0
- data/ext/czmq/builds/msvc/czmq.sln +69 -0
- data/ext/czmq/builds/msvc/czmq.vcproj +2246 -0
- data/ext/czmq/builds/msvc/czmq.vcxproj +329 -0
- data/ext/czmq/builds/msvc/czmq.vcxproj.filters +117 -0
- data/ext/czmq/builds/msvc/czmq11.sln +36 -0
- data/ext/czmq/builds/msvc/czmq_selftest.vcproj +840 -0
- data/ext/czmq/builds/msvc/czmq_selftest.vcxproj +189 -0
- data/ext/czmq/builds/msvc/czmq_selftest.vcxproj.filters +14 -0
- data/ext/czmq/c +520 -0
- data/ext/czmq/configure.ac +229 -0
- data/ext/czmq/doc/Makefile.am +49 -0
- data/ext/czmq/doc/asciidoc.conf +57 -0
- data/ext/czmq/doc/czmq.txt +334 -0
- data/ext/czmq/doc/mkman +100 -0
- data/ext/czmq/doc/mksite +65 -0
- data/ext/czmq/doc/wdput +43 -0
- data/ext/czmq/doc/xml2wd.pl +242 -0
- data/ext/czmq/doc/zbeacon.txt +173 -0
- data/ext/czmq/doc/zclock.txt +51 -0
- data/ext/czmq/doc/zconfig.txt +92 -0
- data/ext/czmq/doc/zctx.txt +111 -0
- data/ext/czmq/doc/zfile.txt +77 -0
- data/ext/czmq/doc/zframe.txt +222 -0
- data/ext/czmq/doc/zhash.txt +225 -0
- data/ext/czmq/doc/zlist.txt +176 -0
- data/ext/czmq/doc/zloop.txt +106 -0
- data/ext/czmq/doc/zmsg.txt +315 -0
- data/ext/czmq/doc/zmutex.txt +54 -0
- data/ext/czmq/doc/zsocket.txt +110 -0
- data/ext/czmq/doc/zsockopt.txt +528 -0
- data/ext/czmq/doc/zstr.txt +80 -0
- data/ext/czmq/doc/zsys.txt +44 -0
- data/ext/czmq/doc/zthread.txt +126 -0
- data/ext/czmq/doc/ztree.txt +236 -0
- data/ext/czmq/images/README_1.png +0 -0
- data/ext/czmq/images/README_2.png +0 -0
- data/ext/czmq/include/czmq.h +64 -0
- data/ext/czmq/include/czmq_prelude.h +504 -0
- data/ext/czmq/include/zbeacon.h +91 -0
- data/ext/czmq/include/zclock.h +56 -0
- data/ext/czmq/include/zconfig.h +117 -0
- data/ext/czmq/include/zctx.h +96 -0
- data/ext/czmq/include/zfile.h +82 -0
- data/ext/czmq/include/zframe.h +145 -0
- data/ext/czmq/include/zhash.h +127 -0
- data/ext/czmq/include/zlist.h +113 -0
- data/ext/czmq/include/zloop.h +98 -0
- data/ext/czmq/include/zmsg.h +165 -0
- data/ext/czmq/include/zmutex.h +62 -0
- data/ext/czmq/include/zsocket.h +104 -0
- data/ext/czmq/include/zsockopt.h +249 -0
- data/ext/czmq/include/zstr.h +69 -0
- data/ext/czmq/include/zsys.h +66 -0
- data/ext/czmq/include/zthread.h +62 -0
- data/ext/czmq/include/ztree.h +133 -0
- data/ext/czmq/mkdoc +14 -0
- data/ext/czmq/model/generate +2 -0
- data/ext/czmq/model/sockopts.xml +101 -0
- data/ext/czmq/notes.txt +21 -0
- data/ext/czmq/scripts/sockopts.gsl +325 -0
- data/ext/czmq/src/Makefile.am +61 -0
- data/ext/czmq/src/czmq_selftest.c +60 -0
- data/ext/czmq/src/libczmq.pc.in +11 -0
- data/ext/czmq/src/selftest +7 -0
- data/ext/czmq/src/selftest.cfg +5 -0
- data/ext/czmq/src/valgrind.supp +14 -0
- data/ext/czmq/src/vg +2 -0
- data/ext/czmq/src/zbeacon.c +787 -0
- data/ext/czmq/src/zclock.c +143 -0
- data/ext/czmq/src/zconfig.c +691 -0
- data/ext/czmq/src/zctx.c +287 -0
- data/ext/czmq/src/zfile.c +237 -0
- data/ext/czmq/src/zframe.c +551 -0
- data/ext/czmq/src/zhash.c +664 -0
- data/ext/czmq/src/zlist.c +459 -0
- data/ext/czmq/src/zloop.c +496 -0
- data/ext/czmq/src/zmsg.c +854 -0
- data/ext/czmq/src/zmutex.c +134 -0
- data/ext/czmq/src/zsocket.c +313 -0
- data/ext/czmq/src/zsockopt.c +1756 -0
- data/ext/czmq/src/zstr.c +297 -0
- data/ext/czmq/src/zsys.c +136 -0
- data/ext/czmq/src/zthread.c +269 -0
- data/ext/czmq/src/ztree.c +888 -0
- data/ext/czmq/version.sh +21 -0
- data/ext/rbczmq/extconf.rb +1 -18
- data/ext/rbczmq/poller.c +4 -1
- data/ext/rbczmq/socket.c +28 -5
- data/ext/rbczmq/socket.h +1 -0
- data/ext/zeromq/AUTHORS +110 -0
- data/ext/zeromq/CMakeLists.txt +392 -0
- data/ext/zeromq/COPYING +674 -0
- data/ext/zeromq/COPYING.LESSER +179 -0
- data/ext/zeromq/INSTALL +246 -0
- data/ext/zeromq/MAINTAINERS +56 -0
- data/ext/zeromq/Makefile.am +40 -0
- data/ext/zeromq/NEWS +333 -0
- data/ext/zeromq/README +39 -0
- data/ext/zeromq/acinclude.m4 +930 -0
- data/ext/zeromq/autogen.sh +45 -0
- data/ext/zeromq/branding.bmp +0 -0
- data/ext/zeromq/builds/msvc/Makefile.am +33 -0
- data/ext/zeromq/builds/msvc/c_local_lat/c_local_lat.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_local_lat/c_local_lat.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/c_local_thr/c_local_thr.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_local_thr/c_local_thr.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/c_remote_lat/c_remote_lat.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_remote_lat/c_remote_lat.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/c_remote_thr/c_remote_thr.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_remote_thr/c_remote_thr.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/errno.cpp +32 -0
- data/ext/zeromq/builds/msvc/errno.hpp +56 -0
- data/ext/zeromq/builds/msvc/inproc_lat/inproc_lat.vcproj +174 -0
- data/ext/zeromq/builds/msvc/inproc_lat/inproc_lat.vcxproj +86 -0
- data/ext/zeromq/builds/msvc/inproc_thr/inproc_thr.vcproj +174 -0
- data/ext/zeromq/builds/msvc/inproc_thr/inproc_thr.vcxproj +86 -0
- data/ext/zeromq/builds/msvc/libzmq/libzmq.vcproj +804 -0
- data/ext/zeromq/builds/msvc/libzmq/libzmq.vcxproj +252 -0
- data/ext/zeromq/builds/msvc/libzmq/libzmq.vcxproj.filters +431 -0
- data/ext/zeromq/builds/msvc/msvc.sln +89 -0
- data/ext/zeromq/builds/msvc/msvc10.sln +116 -0
- data/ext/zeromq/builds/msvc/platform.hpp +32 -0
- data/ext/zeromq/builds/msvc/properties/Common.props +21 -0
- data/ext/zeromq/builds/msvc/properties/Debug.props +19 -0
- data/ext/zeromq/builds/msvc/properties/Dynamic.props +20 -0
- data/ext/zeromq/builds/msvc/properties/Executable.props +19 -0
- data/ext/zeromq/builds/msvc/properties/Precompiled.props +14 -0
- data/ext/zeromq/builds/msvc/properties/Release.props +22 -0
- data/ext/zeromq/builds/msvc/properties/Win32.props +12 -0
- data/ext/zeromq/builds/msvc/properties/Win32_Release.props +17 -0
- data/ext/zeromq/builds/msvc/properties/WithOpenPGM.props +12 -0
- data/ext/zeromq/builds/msvc/properties/ZeroMQ.props +23 -0
- data/ext/zeromq/builds/msvc/properties/x64.props +12 -0
- data/ext/zeromq/builds/redhat/zeromq.spec.in +160 -0
- data/ext/zeromq/builds/valgrind/valgrind.supp +14 -0
- data/ext/zeromq/builds/valgrind/vg +1 -0
- data/ext/zeromq/cmake/Modules/TestZMQVersion.cmake +35 -0
- data/ext/zeromq/cmake/Modules/zmq_version.cpp +31 -0
- data/ext/zeromq/cmake/NSIS.template32.in +952 -0
- data/ext/zeromq/cmake/NSIS.template64.in +960 -0
- data/ext/zeromq/configure.in +428 -0
- data/ext/zeromq/doc/Makefile.am +51 -0
- data/ext/zeromq/doc/asciidoc.conf +56 -0
- data/ext/zeromq/doc/zmq.txt +233 -0
- data/ext/zeromq/doc/zmq_bind.txt +102 -0
- data/ext/zeromq/doc/zmq_close.txt +52 -0
- data/ext/zeromq/doc/zmq_connect.txt +98 -0
- data/ext/zeromq/doc/zmq_ctx_destroy.txt +66 -0
- data/ext/zeromq/doc/zmq_ctx_get.txt +67 -0
- data/ext/zeromq/doc/zmq_ctx_new.txt +49 -0
- data/ext/zeromq/doc/zmq_ctx_set.txt +75 -0
- data/ext/zeromq/doc/zmq_disconnect.txt +67 -0
- data/ext/zeromq/doc/zmq_epgm.txt +162 -0
- data/ext/zeromq/doc/zmq_errno.txt +50 -0
- data/ext/zeromq/doc/zmq_getsockopt.txt +516 -0
- data/ext/zeromq/doc/zmq_init.txt +52 -0
- data/ext/zeromq/doc/zmq_inproc.txt +85 -0
- data/ext/zeromq/doc/zmq_ipc.txt +85 -0
- data/ext/zeromq/doc/zmq_msg_close.txt +55 -0
- data/ext/zeromq/doc/zmq_msg_copy.txt +57 -0
- data/ext/zeromq/doc/zmq_msg_data.txt +48 -0
- data/ext/zeromq/doc/zmq_msg_get.txt +72 -0
- data/ext/zeromq/doc/zmq_msg_init.txt +65 -0
- data/ext/zeromq/doc/zmq_msg_init_data.txt +85 -0
- data/ext/zeromq/doc/zmq_msg_init_size.txt +58 -0
- data/ext/zeromq/doc/zmq_msg_more.txt +63 -0
- data/ext/zeromq/doc/zmq_msg_move.txt +52 -0
- data/ext/zeromq/doc/zmq_msg_recv.txt +125 -0
- data/ext/zeromq/doc/zmq_msg_send.txt +122 -0
- data/ext/zeromq/doc/zmq_msg_set.txt +45 -0
- data/ext/zeromq/doc/zmq_msg_size.txt +48 -0
- data/ext/zeromq/doc/zmq_pgm.txt +162 -0
- data/ext/zeromq/doc/zmq_poll.txt +132 -0
- data/ext/zeromq/doc/zmq_proxy.txt +97 -0
- data/ext/zeromq/doc/zmq_recv.txt +93 -0
- data/ext/zeromq/doc/zmq_recvmsg.txt +123 -0
- data/ext/zeromq/doc/zmq_send.txt +100 -0
- data/ext/zeromq/doc/zmq_sendmsg.txt +119 -0
- data/ext/zeromq/doc/zmq_setsockopt.txt +523 -0
- data/ext/zeromq/doc/zmq_socket.txt +369 -0
- data/ext/zeromq/doc/zmq_socket_monitor.txt +288 -0
- data/ext/zeromq/doc/zmq_strerror.txt +55 -0
- data/ext/zeromq/doc/zmq_tcp.txt +101 -0
- data/ext/zeromq/doc/zmq_term.txt +66 -0
- data/ext/zeromq/doc/zmq_unbind.txt +65 -0
- data/ext/zeromq/doc/zmq_version.txt +53 -0
- data/ext/zeromq/foreign/openpgm/Makefile.am +8 -0
- data/ext/zeromq/foreign/openpgm/libpgm-5.1.118~dfsg.tar.gz +0 -0
- data/ext/zeromq/include/zmq.h +402 -0
- data/ext/zeromq/include/zmq_utils.h +64 -0
- data/ext/zeromq/installer.ico +0 -0
- data/ext/zeromq/perf/Makefile.am +22 -0
- data/ext/zeromq/perf/inproc_lat.cpp +233 -0
- data/ext/zeromq/perf/inproc_thr.cpp +241 -0
- data/ext/zeromq/perf/local_lat.cpp +109 -0
- data/ext/zeromq/perf/local_thr.cpp +133 -0
- data/ext/zeromq/perf/remote_lat.cpp +122 -0
- data/ext/zeromq/perf/remote_thr.cpp +105 -0
- data/ext/zeromq/src/Makefile.am +171 -0
- data/ext/zeromq/src/address.cpp +78 -0
- data/ext/zeromq/src/address.hpp +52 -0
- data/ext/zeromq/src/array.hpp +155 -0
- data/ext/zeromq/src/atomic_counter.hpp +197 -0
- data/ext/zeromq/src/atomic_ptr.hpp +196 -0
- data/ext/zeromq/src/blob.hpp +129 -0
- data/ext/zeromq/src/clock.cpp +147 -0
- data/ext/zeromq/src/clock.hpp +60 -0
- data/ext/zeromq/src/command.hpp +154 -0
- data/ext/zeromq/src/config.hpp +89 -0
- data/ext/zeromq/src/ctx.cpp +352 -0
- data/ext/zeromq/src/ctx.hpp +173 -0
- data/ext/zeromq/src/dealer.cpp +133 -0
- data/ext/zeromq/src/dealer.hpp +92 -0
- data/ext/zeromq/src/decoder.cpp +166 -0
- data/ext/zeromq/src/decoder.hpp +248 -0
- data/ext/zeromq/src/devpoll.cpp +190 -0
- data/ext/zeromq/src/devpoll.hpp +105 -0
- data/ext/zeromq/src/dist.cpp +194 -0
- data/ext/zeromq/src/dist.hpp +105 -0
- data/ext/zeromq/src/encoder.cpp +102 -0
- data/ext/zeromq/src/encoder.hpp +200 -0
- data/ext/zeromq/src/epoll.cpp +178 -0
- data/ext/zeromq/src/epoll.hpp +101 -0
- data/ext/zeromq/src/err.cpp +291 -0
- data/ext/zeromq/src/err.hpp +155 -0
- data/ext/zeromq/src/fd.hpp +45 -0
- data/ext/zeromq/src/fq.cpp +141 -0
- data/ext/zeromq/src/fq.hpp +74 -0
- data/ext/zeromq/src/i_decoder.hpp +49 -0
- data/ext/zeromq/src/i_encoder.hpp +55 -0
- data/ext/zeromq/src/i_engine.hpp +55 -0
- data/ext/zeromq/src/i_msg_sink.hpp +43 -0
- data/ext/zeromq/src/i_msg_source.hpp +44 -0
- data/ext/zeromq/src/i_poll_events.hpp +47 -0
- data/ext/zeromq/src/io_object.cpp +108 -0
- data/ext/zeromq/src/io_object.hpp +81 -0
- data/ext/zeromq/src/io_thread.cpp +104 -0
- data/ext/zeromq/src/io_thread.hpp +91 -0
- data/ext/zeromq/src/ip.cpp +109 -0
- data/ext/zeromq/src/ip.hpp +41 -0
- data/ext/zeromq/src/ipc_address.cpp +84 -0
- data/ext/zeromq/src/ipc_address.hpp +67 -0
- data/ext/zeromq/src/ipc_connecter.cpp +265 -0
- data/ext/zeromq/src/ipc_connecter.hpp +128 -0
- data/ext/zeromq/src/ipc_listener.cpp +206 -0
- data/ext/zeromq/src/ipc_listener.hpp +99 -0
- data/ext/zeromq/src/kqueue.cpp +201 -0
- data/ext/zeromq/src/kqueue.hpp +107 -0
- data/ext/zeromq/src/lb.cpp +148 -0
- data/ext/zeromq/src/lb.hpp +73 -0
- data/ext/zeromq/src/libzmq.pc.in +10 -0
- data/ext/zeromq/src/likely.hpp +33 -0
- data/ext/zeromq/src/mailbox.cpp +87 -0
- data/ext/zeromq/src/mailbox.hpp +75 -0
- data/ext/zeromq/src/msg.cpp +299 -0
- data/ext/zeromq/src/msg.hpp +148 -0
- data/ext/zeromq/src/mtrie.cpp +428 -0
- data/ext/zeromq/src/mtrie.hpp +93 -0
- data/ext/zeromq/src/mutex.hpp +118 -0
- data/ext/zeromq/src/object.cpp +393 -0
- data/ext/zeromq/src/object.hpp +134 -0
- data/ext/zeromq/src/options.cpp +562 -0
- data/ext/zeromq/src/options.hpp +135 -0
- data/ext/zeromq/src/own.cpp +206 -0
- data/ext/zeromq/src/own.hpp +145 -0
- data/ext/zeromq/src/pair.cpp +136 -0
- data/ext/zeromq/src/pair.hpp +79 -0
- data/ext/zeromq/src/pgm_receiver.cpp +283 -0
- data/ext/zeromq/src/pgm_receiver.hpp +141 -0
- data/ext/zeromq/src/pgm_sender.cpp +218 -0
- data/ext/zeromq/src/pgm_sender.hpp +113 -0
- data/ext/zeromq/src/pgm_socket.cpp +706 -0
- data/ext/zeromq/src/pgm_socket.hpp +124 -0
- data/ext/zeromq/src/pipe.cpp +447 -0
- data/ext/zeromq/src/pipe.hpp +207 -0
- data/ext/zeromq/src/poll.cpp +176 -0
- data/ext/zeromq/src/poll.hpp +105 -0
- data/ext/zeromq/src/poller.hpp +82 -0
- data/ext/zeromq/src/poller_base.cpp +99 -0
- data/ext/zeromq/src/poller_base.hpp +86 -0
- data/ext/zeromq/src/precompiled.cpp +21 -0
- data/ext/zeromq/src/precompiled.hpp +47 -0
- data/ext/zeromq/src/proxy.cpp +150 -0
- data/ext/zeromq/src/proxy.hpp +32 -0
- data/ext/zeromq/src/pub.cpp +57 -0
- data/ext/zeromq/src/pub.hpp +69 -0
- data/ext/zeromq/src/pull.cpp +79 -0
- data/ext/zeromq/src/pull.hpp +81 -0
- data/ext/zeromq/src/push.cpp +76 -0
- data/ext/zeromq/src/push.hpp +80 -0
- data/ext/zeromq/src/random.cpp +52 -0
- data/ext/zeromq/src/random.hpp +37 -0
- data/ext/zeromq/src/reaper.cpp +117 -0
- data/ext/zeromq/src/reaper.hpp +80 -0
- data/ext/zeromq/src/rep.cpp +137 -0
- data/ext/zeromq/src/rep.hpp +80 -0
- data/ext/zeromq/src/req.cpp +185 -0
- data/ext/zeromq/src/req.hpp +91 -0
- data/ext/zeromq/src/router.cpp +364 -0
- data/ext/zeromq/src/router.hpp +138 -0
- data/ext/zeromq/src/select.cpp +216 -0
- data/ext/zeromq/src/select.hpp +126 -0
- data/ext/zeromq/src/session_base.cpp +503 -0
- data/ext/zeromq/src/session_base.hpp +156 -0
- data/ext/zeromq/src/signaler.cpp +406 -0
- data/ext/zeromq/src/signaler.hpp +63 -0
- data/ext/zeromq/src/socket_base.cpp +1236 -0
- data/ext/zeromq/src/socket_base.hpp +255 -0
- data/ext/zeromq/src/stdint.hpp +63 -0
- data/ext/zeromq/src/stream_engine.cpp +594 -0
- data/ext/zeromq/src/stream_engine.hpp +149 -0
- data/ext/zeromq/src/sub.cpp +93 -0
- data/ext/zeromq/src/sub.hpp +71 -0
- data/ext/zeromq/src/tcp.cpp +131 -0
- data/ext/zeromq/src/tcp.hpp +38 -0
- data/ext/zeromq/src/tcp_address.cpp +613 -0
- data/ext/zeromq/src/tcp_address.hpp +100 -0
- data/ext/zeromq/src/tcp_connecter.cpp +319 -0
- data/ext/zeromq/src/tcp_connecter.hpp +123 -0
- data/ext/zeromq/src/tcp_listener.cpp +293 -0
- data/ext/zeromq/src/tcp_listener.hpp +91 -0
- data/ext/zeromq/src/thread.cpp +107 -0
- data/ext/zeromq/src/thread.hpp +79 -0
- data/ext/zeromq/src/trie.cpp +337 -0
- data/ext/zeromq/src/trie.hpp +79 -0
- data/ext/zeromq/src/v1_decoder.cpp +162 -0
- data/ext/zeromq/src/v1_decoder.hpp +68 -0
- data/ext/zeromq/src/v1_encoder.cpp +103 -0
- data/ext/zeromq/src/v1_encoder.hpp +60 -0
- data/ext/zeromq/src/v1_protocol.hpp +43 -0
- data/ext/zeromq/src/version.rc.in +93 -0
- data/ext/zeromq/src/windows.hpp +181 -0
- data/ext/zeromq/src/wire.hpp +99 -0
- data/ext/zeromq/src/xpub.cpp +200 -0
- data/ext/zeromq/src/xpub.hpp +110 -0
- data/ext/zeromq/src/xsub.cpp +242 -0
- data/ext/zeromq/src/xsub.hpp +108 -0
- data/ext/zeromq/src/ypipe.hpp +210 -0
- data/ext/zeromq/src/yqueue.hpp +199 -0
- data/ext/zeromq/src/zmq.cpp +1058 -0
- data/ext/zeromq/src/zmq_utils.cpp +61 -0
- data/ext/zeromq/tests/Makefile.am +55 -0
- data/ext/zeromq/tests/test_connect_delay.cpp +260 -0
- data/ext/zeromq/tests/test_connect_resolve.cpp +54 -0
- data/ext/zeromq/tests/test_disconnect_inproc.cpp +120 -0
- data/ext/zeromq/tests/test_hwm.cpp +83 -0
- data/ext/zeromq/tests/test_invalid_rep.cpp +92 -0
- data/ext/zeromq/tests/test_last_endpoint.cpp +60 -0
- data/ext/zeromq/tests/test_monitor.cpp +289 -0
- data/ext/zeromq/tests/test_msg_flags.cpp +78 -0
- data/ext/zeromq/tests/test_pair_inproc.cpp +53 -0
- data/ext/zeromq/tests/test_pair_ipc.cpp +53 -0
- data/ext/zeromq/tests/test_pair_tcp.cpp +54 -0
- data/ext/zeromq/tests/test_reqrep_device.cpp +143 -0
- data/ext/zeromq/tests/test_reqrep_inproc.cpp +53 -0
- data/ext/zeromq/tests/test_reqrep_ipc.cpp +53 -0
- data/ext/zeromq/tests/test_reqrep_tcp.cpp +54 -0
- data/ext/zeromq/tests/test_router_mandatory.cpp +62 -0
- data/ext/zeromq/tests/test_shutdown_stress.cpp +93 -0
- data/ext/zeromq/tests/test_sub_forward.cpp +99 -0
- data/ext/zeromq/tests/test_term_endpoint.cpp +118 -0
- data/ext/zeromq/tests/test_timeo.cpp +119 -0
- data/ext/zeromq/tests/testutil.hpp +77 -0
- data/ext/zeromq/version.sh +21 -0
- data/lib/zmq/version.rb +1 -1
- data/rbczmq.gemspec +16 -3
- data/test/test_socket.rb +13 -1
- metadata +398 -9
- checksums.yaml +0 -15
- data/ext/czmq-1.4.1.tar.gz +0 -0
- data/ext/zeromq-3.2.3.tar.gz +0 -0
@@ -0,0 +1,207 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2011 VMware, Inc.
|
5
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
6
|
+
|
7
|
+
This file is part of 0MQ.
|
8
|
+
|
9
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
10
|
+
the terms of the GNU Lesser General Public License as published by
|
11
|
+
the Free Software Foundation; either version 3 of the License, or
|
12
|
+
(at your option) any later version.
|
13
|
+
|
14
|
+
0MQ is distributed in the hope that it will be useful,
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
17
|
+
GNU Lesser General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU Lesser General Public License
|
20
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#ifndef __ZMQ_PIPE_HPP_INCLUDED__
|
24
|
+
#define __ZMQ_PIPE_HPP_INCLUDED__
|
25
|
+
|
26
|
+
#include "msg.hpp"
|
27
|
+
#include "ypipe.hpp"
|
28
|
+
#include "config.hpp"
|
29
|
+
#include "object.hpp"
|
30
|
+
#include "stdint.hpp"
|
31
|
+
#include "array.hpp"
|
32
|
+
#include "blob.hpp"
|
33
|
+
|
34
|
+
namespace zmq
|
35
|
+
{
|
36
|
+
|
37
|
+
class object_t;
|
38
|
+
class pipe_t;
|
39
|
+
|
40
|
+
// Create a pipepair for bi-directional transfer of messages.
|
41
|
+
// First HWM is for messages passed from first pipe to the second pipe.
|
42
|
+
// Second HWM is for messages passed from second pipe to the first pipe.
|
43
|
+
// Delay specifies how the pipe behaves when the peer terminates. If true
|
44
|
+
// pipe receives all the pending messages before terminating, otherwise it
|
45
|
+
// terminates straight away.
|
46
|
+
int pipepair (zmq::object_t *parents_ [2], zmq::pipe_t* pipes_ [2],
|
47
|
+
int hwms_ [2], bool delays_ [2]);
|
48
|
+
|
49
|
+
struct i_pipe_events
|
50
|
+
{
|
51
|
+
virtual ~i_pipe_events () {}
|
52
|
+
|
53
|
+
virtual void read_activated (zmq::pipe_t *pipe_) = 0;
|
54
|
+
virtual void write_activated (zmq::pipe_t *pipe_) = 0;
|
55
|
+
virtual void hiccuped (zmq::pipe_t *pipe_) = 0;
|
56
|
+
virtual void terminated (zmq::pipe_t *pipe_) = 0;
|
57
|
+
};
|
58
|
+
|
59
|
+
// Note that pipe can be stored in three different arrays.
|
60
|
+
// The array of inbound pipes (1), the array of outbound pipes (2) and
|
61
|
+
// the generic array of pipes to deallocate (3).
|
62
|
+
|
63
|
+
class pipe_t :
|
64
|
+
public object_t,
|
65
|
+
public array_item_t <1>,
|
66
|
+
public array_item_t <2>,
|
67
|
+
public array_item_t <3>
|
68
|
+
{
|
69
|
+
// This allows pipepair to create pipe objects.
|
70
|
+
friend int pipepair (zmq::object_t *parents_ [2],
|
71
|
+
zmq::pipe_t* pipes_ [2], int hwms_ [2], bool delays_ [2]);
|
72
|
+
|
73
|
+
public:
|
74
|
+
|
75
|
+
// Specifies the object to send events to.
|
76
|
+
void set_event_sink (i_pipe_events *sink_);
|
77
|
+
|
78
|
+
// Pipe endpoint can store an opaque ID to be used by its clients.
|
79
|
+
void set_identity (const blob_t &identity_);
|
80
|
+
blob_t get_identity ();
|
81
|
+
|
82
|
+
// Returns true if there is at least one message to read in the pipe.
|
83
|
+
bool check_read ();
|
84
|
+
|
85
|
+
// Reads a message to the underlying pipe.
|
86
|
+
bool read (msg_t *msg_);
|
87
|
+
|
88
|
+
// Checks whether messages can be written to the pipe. If writing
|
89
|
+
// the message would cause high watermark the function returns false.
|
90
|
+
bool check_write ();
|
91
|
+
|
92
|
+
// Writes a message to the underlying pipe. Returns false if the
|
93
|
+
// message cannot be written because high watermark was reached.
|
94
|
+
bool write (msg_t *msg_);
|
95
|
+
|
96
|
+
// Remove unfinished parts of the outbound message from the pipe.
|
97
|
+
void rollback ();
|
98
|
+
|
99
|
+
// Flush the messages downsteam.
|
100
|
+
void flush ();
|
101
|
+
|
102
|
+
// Temporaraily disconnects the inbound message stream and drops
|
103
|
+
// all the messages on the fly. Causes 'hiccuped' event to be generated
|
104
|
+
// in the peer.
|
105
|
+
void hiccup ();
|
106
|
+
|
107
|
+
// Ask pipe to terminate. The termination will happen asynchronously
|
108
|
+
// and user will be notified about actual deallocation by 'terminated'
|
109
|
+
// event. If delay is true, the pending messages will be processed
|
110
|
+
// before actual shutdown.
|
111
|
+
void terminate (bool delay_);
|
112
|
+
|
113
|
+
private:
|
114
|
+
|
115
|
+
// Type of the underlying lock-free pipe.
|
116
|
+
typedef ypipe_t <msg_t, message_pipe_granularity> upipe_t;
|
117
|
+
|
118
|
+
// Command handlers.
|
119
|
+
void process_activate_read ();
|
120
|
+
void process_activate_write (uint64_t msgs_read_);
|
121
|
+
void process_hiccup (void *pipe_);
|
122
|
+
void process_pipe_term ();
|
123
|
+
void process_pipe_term_ack ();
|
124
|
+
|
125
|
+
// Handler for delimiter read from the pipe.
|
126
|
+
void delimit ();
|
127
|
+
|
128
|
+
// Constructor is private. Pipe can only be created using
|
129
|
+
// pipepair function.
|
130
|
+
pipe_t (object_t *parent_, upipe_t *inpipe_, upipe_t *outpipe_,
|
131
|
+
int inhwm_, int outhwm_, bool delay_);
|
132
|
+
|
133
|
+
// Pipepair uses this function to let us know about
|
134
|
+
// the peer pipe object.
|
135
|
+
void set_peer (pipe_t *pipe_);
|
136
|
+
|
137
|
+
// Destructor is private. Pipe objects destroy themselves.
|
138
|
+
~pipe_t ();
|
139
|
+
|
140
|
+
// Underlying pipes for both directions.
|
141
|
+
upipe_t *inpipe;
|
142
|
+
upipe_t *outpipe;
|
143
|
+
|
144
|
+
// Can the pipe be read from / written to?
|
145
|
+
bool in_active;
|
146
|
+
bool out_active;
|
147
|
+
|
148
|
+
// High watermark for the outbound pipe.
|
149
|
+
int hwm;
|
150
|
+
|
151
|
+
// Low watermark for the inbound pipe.
|
152
|
+
int lwm;
|
153
|
+
|
154
|
+
// Number of messages read and written so far.
|
155
|
+
uint64_t msgs_read;
|
156
|
+
uint64_t msgs_written;
|
157
|
+
|
158
|
+
// Last received peer's msgs_read. The actual number in the peer
|
159
|
+
// can be higher at the moment.
|
160
|
+
uint64_t peers_msgs_read;
|
161
|
+
|
162
|
+
// The pipe object on the other side of the pipepair.
|
163
|
+
pipe_t *peer;
|
164
|
+
|
165
|
+
// Sink to send events to.
|
166
|
+
i_pipe_events *sink;
|
167
|
+
|
168
|
+
// State of the pipe endpoint. Active is common state before any
|
169
|
+
// termination begins. Delimited means that delimiter was read from
|
170
|
+
// pipe before term command was received. Pending means that term
|
171
|
+
// command was already received from the peer but there are still
|
172
|
+
// pending messages to read. Terminating means that all pending
|
173
|
+
// messages were already read and all we are waiting for is ack from
|
174
|
+
// the peer. Terminated means that 'terminate' was explicitly called
|
175
|
+
// by the user. Double_terminated means that user called 'terminate'
|
176
|
+
// and then we've got term command from the peer as well.
|
177
|
+
enum {
|
178
|
+
active,
|
179
|
+
delimited,
|
180
|
+
pending,
|
181
|
+
terminating,
|
182
|
+
terminated,
|
183
|
+
double_terminated
|
184
|
+
} state;
|
185
|
+
|
186
|
+
// If true, we receive all the pending inbound messages before
|
187
|
+
// terminating. If false, we terminate immediately when the peer
|
188
|
+
// asks us to.
|
189
|
+
bool delay;
|
190
|
+
|
191
|
+
// Identity of the writer. Used uniquely by the reader side.
|
192
|
+
blob_t identity;
|
193
|
+
|
194
|
+
// Returns true if the message is delimiter; false otherwise.
|
195
|
+
static bool is_delimiter (msg_t &msg_);
|
196
|
+
|
197
|
+
// Computes appropriate low watermark from the given high watermark.
|
198
|
+
static int compute_lwm (int hwm_);
|
199
|
+
|
200
|
+
// Disable copying.
|
201
|
+
pipe_t (const pipe_t&);
|
202
|
+
const pipe_t &operator = (const pipe_t&);
|
203
|
+
};
|
204
|
+
|
205
|
+
}
|
206
|
+
|
207
|
+
#endif
|
@@ -0,0 +1,176 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include "poll.hpp"
|
23
|
+
#if defined ZMQ_USE_POLL
|
24
|
+
|
25
|
+
#include <sys/types.h>
|
26
|
+
#include <sys/time.h>
|
27
|
+
#include <poll.h>
|
28
|
+
#include <algorithm>
|
29
|
+
|
30
|
+
#include "poll.hpp"
|
31
|
+
#include "err.hpp"
|
32
|
+
#include "config.hpp"
|
33
|
+
#include "i_poll_events.hpp"
|
34
|
+
|
35
|
+
zmq::poll_t::poll_t () :
|
36
|
+
retired (false),
|
37
|
+
stopping (false)
|
38
|
+
{
|
39
|
+
}
|
40
|
+
|
41
|
+
zmq::poll_t::~poll_t ()
|
42
|
+
{
|
43
|
+
worker.stop ();
|
44
|
+
}
|
45
|
+
|
46
|
+
zmq::poll_t::handle_t zmq::poll_t::add_fd (fd_t fd_, i_poll_events *events_)
|
47
|
+
{
|
48
|
+
// If the file descriptor table is too small expand it.
|
49
|
+
fd_table_t::size_type sz = fd_table.size ();
|
50
|
+
if (sz <= (fd_table_t::size_type) fd_) {
|
51
|
+
fd_table.resize (fd_ + 1);
|
52
|
+
while (sz != (fd_table_t::size_type) (fd_ + 1)) {
|
53
|
+
fd_table [sz].index = retired_fd;
|
54
|
+
++sz;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
pollfd pfd = {fd_, 0, 0};
|
59
|
+
pollset.push_back (pfd);
|
60
|
+
zmq_assert (fd_table [fd_].index == retired_fd);
|
61
|
+
|
62
|
+
fd_table [fd_].index = pollset.size() - 1;
|
63
|
+
fd_table [fd_].events = events_;
|
64
|
+
|
65
|
+
// Increase the load metric of the thread.
|
66
|
+
adjust_load (1);
|
67
|
+
|
68
|
+
return fd_;
|
69
|
+
}
|
70
|
+
|
71
|
+
void zmq::poll_t::rm_fd (handle_t handle_)
|
72
|
+
{
|
73
|
+
fd_t index = fd_table [handle_].index;
|
74
|
+
zmq_assert (index != retired_fd);
|
75
|
+
|
76
|
+
// Mark the fd as unused.
|
77
|
+
pollset [index].fd = retired_fd;
|
78
|
+
fd_table [handle_].index = retired_fd;
|
79
|
+
retired = true;
|
80
|
+
|
81
|
+
// Decrease the load metric of the thread.
|
82
|
+
adjust_load (-1);
|
83
|
+
}
|
84
|
+
|
85
|
+
void zmq::poll_t::set_pollin (handle_t handle_)
|
86
|
+
{
|
87
|
+
int index = fd_table [handle_].index;
|
88
|
+
pollset [index].events |= POLLIN;
|
89
|
+
}
|
90
|
+
|
91
|
+
void zmq::poll_t::reset_pollin (handle_t handle_)
|
92
|
+
{
|
93
|
+
int index = fd_table [handle_].index;
|
94
|
+
pollset [index].events &= ~((short) POLLIN);
|
95
|
+
}
|
96
|
+
|
97
|
+
void zmq::poll_t::set_pollout (handle_t handle_)
|
98
|
+
{
|
99
|
+
int index = fd_table [handle_].index;
|
100
|
+
pollset [index].events |= POLLOUT;
|
101
|
+
}
|
102
|
+
|
103
|
+
void zmq::poll_t::reset_pollout (handle_t handle_)
|
104
|
+
{
|
105
|
+
int index = fd_table [handle_].index;
|
106
|
+
pollset [index].events &= ~((short) POLLOUT);
|
107
|
+
}
|
108
|
+
|
109
|
+
void zmq::poll_t::start ()
|
110
|
+
{
|
111
|
+
worker.start (worker_routine, this);
|
112
|
+
}
|
113
|
+
|
114
|
+
void zmq::poll_t::stop ()
|
115
|
+
{
|
116
|
+
stopping = true;
|
117
|
+
}
|
118
|
+
|
119
|
+
void zmq::poll_t::loop ()
|
120
|
+
{
|
121
|
+
while (!stopping) {
|
122
|
+
|
123
|
+
// Execute any due timers.
|
124
|
+
int timeout = (int) execute_timers ();
|
125
|
+
|
126
|
+
// Wait for events.
|
127
|
+
int rc = poll (&pollset [0], pollset.size (), timeout ? timeout : -1);
|
128
|
+
if (rc == -1) {
|
129
|
+
errno_assert (errno == EINTR);
|
130
|
+
continue;
|
131
|
+
}
|
132
|
+
|
133
|
+
// If there are no events (i.e. it's a timeout) there's no point
|
134
|
+
// in checking the pollset.
|
135
|
+
if (rc == 0)
|
136
|
+
continue;
|
137
|
+
|
138
|
+
for (pollset_t::size_type i = 0; i != pollset.size (); i++) {
|
139
|
+
|
140
|
+
zmq_assert (!(pollset [i].revents & POLLNVAL));
|
141
|
+
if (pollset [i].fd == retired_fd)
|
142
|
+
continue;
|
143
|
+
if (pollset [i].revents & (POLLERR | POLLHUP))
|
144
|
+
fd_table [pollset [i].fd].events->in_event ();
|
145
|
+
if (pollset [i].fd == retired_fd)
|
146
|
+
continue;
|
147
|
+
if (pollset [i].revents & POLLOUT)
|
148
|
+
fd_table [pollset [i].fd].events->out_event ();
|
149
|
+
if (pollset [i].fd == retired_fd)
|
150
|
+
continue;
|
151
|
+
if (pollset [i].revents & POLLIN)
|
152
|
+
fd_table [pollset [i].fd].events->in_event ();
|
153
|
+
}
|
154
|
+
|
155
|
+
// Clean up the pollset and update the fd_table accordingly.
|
156
|
+
if (retired) {
|
157
|
+
pollset_t::size_type i = 0;
|
158
|
+
while (i < pollset.size ()) {
|
159
|
+
if (pollset [i].fd == retired_fd)
|
160
|
+
pollset.erase (pollset.begin () + i);
|
161
|
+
else {
|
162
|
+
fd_table [pollset [i].fd].index = i;
|
163
|
+
i ++;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
retired = false;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
}
|
170
|
+
|
171
|
+
void zmq::poll_t::worker_routine (void *arg_)
|
172
|
+
{
|
173
|
+
((poll_t*) arg_)->loop ();
|
174
|
+
}
|
175
|
+
|
176
|
+
#endif
|
@@ -0,0 +1,105 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef __ZMQ_POLL_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_POLL_HPP_INCLUDED__
|
24
|
+
|
25
|
+
// poller.hpp decides which polling mechanism to use.
|
26
|
+
#include "poller.hpp"
|
27
|
+
#if defined ZMQ_USE_POLL
|
28
|
+
|
29
|
+
#include <poll.h>
|
30
|
+
#include <stddef.h>
|
31
|
+
#include <vector>
|
32
|
+
|
33
|
+
#include "fd.hpp"
|
34
|
+
#include "thread.hpp"
|
35
|
+
#include "poller_base.hpp"
|
36
|
+
|
37
|
+
namespace zmq
|
38
|
+
{
|
39
|
+
|
40
|
+
struct i_poll_events;
|
41
|
+
|
42
|
+
// Implements socket polling mechanism using the POSIX.1-2001
|
43
|
+
// poll() system call.
|
44
|
+
|
45
|
+
class poll_t : public poller_base_t
|
46
|
+
{
|
47
|
+
public:
|
48
|
+
|
49
|
+
typedef fd_t handle_t;
|
50
|
+
|
51
|
+
poll_t ();
|
52
|
+
~poll_t ();
|
53
|
+
|
54
|
+
// "poller" concept.
|
55
|
+
handle_t add_fd (fd_t fd_, zmq::i_poll_events *events_);
|
56
|
+
void rm_fd (handle_t handle_);
|
57
|
+
void set_pollin (handle_t handle_);
|
58
|
+
void reset_pollin (handle_t handle_);
|
59
|
+
void set_pollout (handle_t handle_);
|
60
|
+
void reset_pollout (handle_t handle_);
|
61
|
+
void start ();
|
62
|
+
void stop ();
|
63
|
+
|
64
|
+
private:
|
65
|
+
|
66
|
+
// Main worker thread routine.
|
67
|
+
static void worker_routine (void *arg_);
|
68
|
+
|
69
|
+
// Main event loop.
|
70
|
+
void loop ();
|
71
|
+
|
72
|
+
struct fd_entry_t
|
73
|
+
{
|
74
|
+
fd_t index;
|
75
|
+
zmq::i_poll_events *events;
|
76
|
+
};
|
77
|
+
|
78
|
+
// This table stores data for registered descriptors.
|
79
|
+
typedef std::vector <fd_entry_t> fd_table_t;
|
80
|
+
fd_table_t fd_table;
|
81
|
+
|
82
|
+
// Pollset to pass to the poll function.
|
83
|
+
typedef std::vector <pollfd> pollset_t;
|
84
|
+
pollset_t pollset;
|
85
|
+
|
86
|
+
// If true, there's at least one retired event source.
|
87
|
+
bool retired;
|
88
|
+
|
89
|
+
// If true, thread is in the process of shutting down.
|
90
|
+
bool stopping;
|
91
|
+
|
92
|
+
// Handle of the physical thread doing the I/O work.
|
93
|
+
thread_t worker;
|
94
|
+
|
95
|
+
poll_t (const poll_t&);
|
96
|
+
const poll_t &operator = (const poll_t&);
|
97
|
+
};
|
98
|
+
|
99
|
+
typedef poll_t poller_t;
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
#endif
|
104
|
+
|
105
|
+
#endif
|