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,135 @@
|
|
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_OPTIONS_HPP_INCLUDED__
|
24
|
+
#define __ZMQ_OPTIONS_HPP_INCLUDED__
|
25
|
+
|
26
|
+
#include <string>
|
27
|
+
#include <vector>
|
28
|
+
|
29
|
+
#include "stddef.h"
|
30
|
+
#include "stdint.hpp"
|
31
|
+
#include "tcp_address.hpp"
|
32
|
+
#include "../include/zmq.h"
|
33
|
+
|
34
|
+
namespace zmq
|
35
|
+
{
|
36
|
+
|
37
|
+
struct options_t
|
38
|
+
{
|
39
|
+
options_t ();
|
40
|
+
|
41
|
+
int setsockopt (int option_, const void *optval_, size_t optvallen_);
|
42
|
+
int getsockopt (int option_, void *optval_, size_t *optvallen_);
|
43
|
+
|
44
|
+
// High-water marks for message pipes.
|
45
|
+
int sndhwm;
|
46
|
+
int rcvhwm;
|
47
|
+
|
48
|
+
// I/O thread affinity.
|
49
|
+
uint64_t affinity;
|
50
|
+
|
51
|
+
// Socket identity
|
52
|
+
unsigned char identity_size;
|
53
|
+
unsigned char identity [256];
|
54
|
+
|
55
|
+
// Last socket endpoint resolved URI
|
56
|
+
std::string last_endpoint;
|
57
|
+
|
58
|
+
// Maximum tranfer rate [kb/s]. Default 100kb/s.
|
59
|
+
int rate;
|
60
|
+
|
61
|
+
// Reliability time interval [ms]. Default 10 seconds.
|
62
|
+
int recovery_ivl;
|
63
|
+
|
64
|
+
// Sets the time-to-live field in every multicast packet sent.
|
65
|
+
int multicast_hops;
|
66
|
+
|
67
|
+
// SO_SNDBUF and SO_RCVBUF to be passed to underlying transport sockets.
|
68
|
+
int sndbuf;
|
69
|
+
int rcvbuf;
|
70
|
+
|
71
|
+
// Socket type.
|
72
|
+
int type;
|
73
|
+
|
74
|
+
// Linger time, in milliseconds.
|
75
|
+
int linger;
|
76
|
+
|
77
|
+
// Minimum interval between attempts to reconnect, in milliseconds.
|
78
|
+
// Default 100ms
|
79
|
+
int reconnect_ivl;
|
80
|
+
|
81
|
+
// Maximum interval between attempts to reconnect, in milliseconds.
|
82
|
+
// Default 0 (unused)
|
83
|
+
int reconnect_ivl_max;
|
84
|
+
|
85
|
+
// Maximum backlog for pending connections.
|
86
|
+
int backlog;
|
87
|
+
|
88
|
+
// Maximal size of message to handle.
|
89
|
+
int64_t maxmsgsize;
|
90
|
+
|
91
|
+
// The timeout for send/recv operations for this socket.
|
92
|
+
int rcvtimeo;
|
93
|
+
int sndtimeo;
|
94
|
+
|
95
|
+
// If 1, indicates the use of IPv4 sockets only, it will not be
|
96
|
+
// possible to communicate with IPv6-only hosts. If 0, the socket can
|
97
|
+
// connect to and accept connections from both IPv4 and IPv6 hosts.
|
98
|
+
int ipv4only;
|
99
|
+
|
100
|
+
// If 1, connecting pipes are not attached immediately, meaning a send()
|
101
|
+
// on a socket with only connecting pipes would block
|
102
|
+
int delay_attach_on_connect;
|
103
|
+
|
104
|
+
// If true, session reads all the pending messages from the pipe and
|
105
|
+
// sends them to the network when socket is closed.
|
106
|
+
bool delay_on_close;
|
107
|
+
|
108
|
+
// If true, socket reads all the messages from the pipe and delivers
|
109
|
+
// them to the user when the peer terminates.
|
110
|
+
bool delay_on_disconnect;
|
111
|
+
|
112
|
+
// If 1, (X)SUB socket should filter the messages. If 0, it should not.
|
113
|
+
bool filter;
|
114
|
+
|
115
|
+
// If true, the identity message is forwarded to the socket.
|
116
|
+
bool recv_identity;
|
117
|
+
|
118
|
+
// TCP keep-alive settings.
|
119
|
+
// Defaults to -1 = do not change socket options
|
120
|
+
int tcp_keepalive;
|
121
|
+
int tcp_keepalive_cnt;
|
122
|
+
int tcp_keepalive_idle;
|
123
|
+
int tcp_keepalive_intvl;
|
124
|
+
|
125
|
+
// TCP accept() filters
|
126
|
+
typedef std::vector <tcp_address_mask_t> tcp_accept_filters_t;
|
127
|
+
tcp_accept_filters_t tcp_accept_filters;
|
128
|
+
|
129
|
+
// ID of the socket.
|
130
|
+
int socket_id;
|
131
|
+
};
|
132
|
+
|
133
|
+
}
|
134
|
+
|
135
|
+
#endif
|
@@ -0,0 +1,206 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "own.hpp"
|
22
|
+
#include "err.hpp"
|
23
|
+
#include "io_thread.hpp"
|
24
|
+
|
25
|
+
zmq::own_t::own_t (class ctx_t *parent_, uint32_t tid_) :
|
26
|
+
object_t (parent_, tid_),
|
27
|
+
terminating (false),
|
28
|
+
sent_seqnum (0),
|
29
|
+
processed_seqnum (0),
|
30
|
+
owner (NULL),
|
31
|
+
term_acks (0)
|
32
|
+
{
|
33
|
+
}
|
34
|
+
|
35
|
+
zmq::own_t::own_t (io_thread_t *io_thread_, const options_t &options_) :
|
36
|
+
object_t (io_thread_),
|
37
|
+
options (options_),
|
38
|
+
terminating (false),
|
39
|
+
sent_seqnum (0),
|
40
|
+
processed_seqnum (0),
|
41
|
+
owner (NULL),
|
42
|
+
term_acks (0)
|
43
|
+
{
|
44
|
+
}
|
45
|
+
|
46
|
+
zmq::own_t::~own_t ()
|
47
|
+
{
|
48
|
+
}
|
49
|
+
|
50
|
+
void zmq::own_t::set_owner (own_t *owner_)
|
51
|
+
{
|
52
|
+
zmq_assert (!owner);
|
53
|
+
owner = owner_;
|
54
|
+
}
|
55
|
+
|
56
|
+
void zmq::own_t::inc_seqnum ()
|
57
|
+
{
|
58
|
+
// This function may be called from a different thread!
|
59
|
+
sent_seqnum.add (1);
|
60
|
+
}
|
61
|
+
|
62
|
+
void zmq::own_t::process_seqnum ()
|
63
|
+
{
|
64
|
+
// Catch up with counter of processed commands.
|
65
|
+
processed_seqnum++;
|
66
|
+
|
67
|
+
// We may have catched up and still have pending terms acks.
|
68
|
+
check_term_acks ();
|
69
|
+
}
|
70
|
+
|
71
|
+
void zmq::own_t::launch_child (own_t *object_)
|
72
|
+
{
|
73
|
+
// Specify the owner of the object.
|
74
|
+
object_->set_owner (this);
|
75
|
+
|
76
|
+
// Plug the object into the I/O thread.
|
77
|
+
send_plug (object_);
|
78
|
+
|
79
|
+
// Take ownership of the object.
|
80
|
+
send_own (this, object_);
|
81
|
+
}
|
82
|
+
|
83
|
+
void zmq::own_t::term_child (own_t *object_)
|
84
|
+
{
|
85
|
+
process_term_req (object_);
|
86
|
+
}
|
87
|
+
|
88
|
+
void zmq::own_t::process_term_req (own_t *object_)
|
89
|
+
{
|
90
|
+
// When shutting down we can ignore termination requests from owned
|
91
|
+
// objects. The termination request was already sent to the object.
|
92
|
+
if (terminating)
|
93
|
+
return;
|
94
|
+
|
95
|
+
// If I/O object is well and alive let's ask it to terminate.
|
96
|
+
owned_t::iterator it = std::find (owned.begin (), owned.end (), object_);
|
97
|
+
|
98
|
+
// If not found, we assume that termination request was already sent to
|
99
|
+
// the object so we can safely ignore the request.
|
100
|
+
if (it == owned.end ())
|
101
|
+
return;
|
102
|
+
|
103
|
+
owned.erase (it);
|
104
|
+
register_term_acks (1);
|
105
|
+
|
106
|
+
// Note that this object is the root of the (partial shutdown) thus, its
|
107
|
+
// value of linger is used, rather than the value stored by the children.
|
108
|
+
send_term (object_, options.linger);
|
109
|
+
}
|
110
|
+
|
111
|
+
void zmq::own_t::process_own (own_t *object_)
|
112
|
+
{
|
113
|
+
// If the object is already being shut down, new owned objects are
|
114
|
+
// immediately asked to terminate. Note that linger is set to zero.
|
115
|
+
if (terminating) {
|
116
|
+
register_term_acks (1);
|
117
|
+
send_term (object_, 0);
|
118
|
+
return;
|
119
|
+
}
|
120
|
+
|
121
|
+
// Store the reference to the owned object.
|
122
|
+
owned.insert (object_);
|
123
|
+
}
|
124
|
+
|
125
|
+
void zmq::own_t::terminate ()
|
126
|
+
{
|
127
|
+
// If termination is already underway, there's no point
|
128
|
+
// in starting it anew.
|
129
|
+
if (terminating)
|
130
|
+
return;
|
131
|
+
|
132
|
+
// As for the root of the ownership tree, there's noone to terminate it,
|
133
|
+
// so it has to terminate itself.
|
134
|
+
if (!owner) {
|
135
|
+
process_term (options.linger);
|
136
|
+
return;
|
137
|
+
}
|
138
|
+
|
139
|
+
// If I am an owned object, I'll ask my owner to terminate me.
|
140
|
+
send_term_req (owner, this);
|
141
|
+
}
|
142
|
+
|
143
|
+
bool zmq::own_t::is_terminating ()
|
144
|
+
{
|
145
|
+
return terminating;
|
146
|
+
}
|
147
|
+
|
148
|
+
void zmq::own_t::process_term (int linger_)
|
149
|
+
{
|
150
|
+
// Double termination should never happen.
|
151
|
+
zmq_assert (!terminating);
|
152
|
+
|
153
|
+
// Send termination request to all owned objects.
|
154
|
+
for (owned_t::iterator it = owned.begin (); it != owned.end (); ++it)
|
155
|
+
send_term (*it, linger_);
|
156
|
+
register_term_acks ((int) owned.size ());
|
157
|
+
owned.clear ();
|
158
|
+
|
159
|
+
// Start termination process and check whether by chance we cannot
|
160
|
+
// terminate immediately.
|
161
|
+
terminating = true;
|
162
|
+
check_term_acks ();
|
163
|
+
}
|
164
|
+
|
165
|
+
void zmq::own_t::register_term_acks (int count_)
|
166
|
+
{
|
167
|
+
term_acks += count_;
|
168
|
+
}
|
169
|
+
|
170
|
+
void zmq::own_t::unregister_term_ack ()
|
171
|
+
{
|
172
|
+
zmq_assert (term_acks > 0);
|
173
|
+
term_acks--;
|
174
|
+
|
175
|
+
// This may be a last ack we are waiting for before termination...
|
176
|
+
check_term_acks ();
|
177
|
+
}
|
178
|
+
|
179
|
+
void zmq::own_t::process_term_ack ()
|
180
|
+
{
|
181
|
+
unregister_term_ack ();
|
182
|
+
}
|
183
|
+
|
184
|
+
void zmq::own_t::check_term_acks ()
|
185
|
+
{
|
186
|
+
if (terminating && processed_seqnum == sent_seqnum.get () &&
|
187
|
+
term_acks == 0) {
|
188
|
+
|
189
|
+
// Sanity check. There should be no active children at this point.
|
190
|
+
zmq_assert (owned.empty ());
|
191
|
+
|
192
|
+
// The root object has nobody to confirm the termination to.
|
193
|
+
// Other nodes will confirm the termination to the owner.
|
194
|
+
if (owner)
|
195
|
+
send_term_ack (owner);
|
196
|
+
|
197
|
+
// Deallocate the resources.
|
198
|
+
process_destroy ();
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
void zmq::own_t::process_destroy ()
|
203
|
+
{
|
204
|
+
delete this;
|
205
|
+
}
|
206
|
+
|
@@ -0,0 +1,145 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef __ZMQ_OWN_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_OWN_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#include <set>
|
25
|
+
#include <algorithm>
|
26
|
+
|
27
|
+
#include "object.hpp"
|
28
|
+
#include "options.hpp"
|
29
|
+
#include "atomic_counter.hpp"
|
30
|
+
#include "stdint.hpp"
|
31
|
+
|
32
|
+
namespace zmq
|
33
|
+
{
|
34
|
+
|
35
|
+
class ctx_t;
|
36
|
+
class io_thread_t;
|
37
|
+
|
38
|
+
// Base class for objects forming a part of ownership hierarchy.
|
39
|
+
// It handles initialisation and destruction of such objects.
|
40
|
+
|
41
|
+
class own_t : public object_t
|
42
|
+
{
|
43
|
+
public:
|
44
|
+
|
45
|
+
// Note that the owner is unspecified in the constructor.
|
46
|
+
// It'll be supplied later on when the object is plugged in.
|
47
|
+
|
48
|
+
// The object is not living within an I/O thread. It has it's own
|
49
|
+
// thread outside of 0MQ infrastructure.
|
50
|
+
own_t (zmq::ctx_t *parent_, uint32_t tid_);
|
51
|
+
|
52
|
+
// The object is living within I/O thread.
|
53
|
+
own_t (zmq::io_thread_t *io_thread_, const options_t &options_);
|
54
|
+
|
55
|
+
// When another owned object wants to send command to this object
|
56
|
+
// it calls this function to let it know it should not shut down
|
57
|
+
// before the command is delivered.
|
58
|
+
void inc_seqnum ();
|
59
|
+
|
60
|
+
// Use following two functions to wait for arbitrary events before
|
61
|
+
// terminating. Just add number of events to wait for using
|
62
|
+
// register_tem_acks functions. When event occurs, call
|
63
|
+
// remove_term_ack. When number of pending acks reaches zero
|
64
|
+
// object will be deallocated.
|
65
|
+
void register_term_acks (int count_);
|
66
|
+
void unregister_term_ack ();
|
67
|
+
|
68
|
+
protected:
|
69
|
+
|
70
|
+
// Launch the supplied object and become its owner.
|
71
|
+
void launch_child (own_t *object_);
|
72
|
+
|
73
|
+
// Terminate owned object
|
74
|
+
void term_child (own_t *object_);
|
75
|
+
|
76
|
+
// Ask owner object to terminate this object. It may take a while
|
77
|
+
// while actual termination is started. This function should not be
|
78
|
+
// called more than once.
|
79
|
+
void terminate ();
|
80
|
+
|
81
|
+
// Returns true if the object is in process of termination.
|
82
|
+
bool is_terminating ();
|
83
|
+
|
84
|
+
// Derived object destroys own_t. There's no point in allowing
|
85
|
+
// others to invoke the destructor. At the same time, it has to be
|
86
|
+
// virtual so that generic own_t deallocation mechanism destroys
|
87
|
+
// specific type of the owned object correctly.
|
88
|
+
virtual ~own_t ();
|
89
|
+
|
90
|
+
// Term handler is protocted rather than private so that it can
|
91
|
+
// be intercepted by the derived class. This is useful to add custom
|
92
|
+
// steps to the beginning of the termination process.
|
93
|
+
void process_term (int linger_);
|
94
|
+
|
95
|
+
// A place to hook in when phyicallal destruction of the object
|
96
|
+
// is to be delayed.
|
97
|
+
virtual void process_destroy ();
|
98
|
+
|
99
|
+
// Socket options associated with this object.
|
100
|
+
options_t options;
|
101
|
+
|
102
|
+
private:
|
103
|
+
|
104
|
+
// Set owner of the object
|
105
|
+
void set_owner (own_t *owner_);
|
106
|
+
|
107
|
+
// Handlers for incoming commands.
|
108
|
+
void process_own (own_t *object_);
|
109
|
+
void process_term_req (own_t *object_);
|
110
|
+
void process_term_ack ();
|
111
|
+
void process_seqnum ();
|
112
|
+
|
113
|
+
// Check whether all the peding term acks were delivered.
|
114
|
+
// If so, deallocate this object.
|
115
|
+
void check_term_acks ();
|
116
|
+
|
117
|
+
// True if termination was already initiated. If so, we can destroy
|
118
|
+
// the object if there are no more child objects or pending term acks.
|
119
|
+
bool terminating;
|
120
|
+
|
121
|
+
// Sequence number of the last command sent to this object.
|
122
|
+
atomic_counter_t sent_seqnum;
|
123
|
+
|
124
|
+
// Sequence number of the last command processed by this object.
|
125
|
+
uint64_t processed_seqnum;
|
126
|
+
|
127
|
+
// Socket owning this object. It's responsible for shutting down
|
128
|
+
// this object.
|
129
|
+
own_t *owner;
|
130
|
+
|
131
|
+
// List of all objects owned by this socket. We are responsible
|
132
|
+
// for deallocating them before we quit.
|
133
|
+
typedef std::set <own_t*> owned_t;
|
134
|
+
owned_t owned;
|
135
|
+
|
136
|
+
// Number of events we have to get before we can destroy the object.
|
137
|
+
int term_acks;
|
138
|
+
|
139
|
+
own_t (const own_t&);
|
140
|
+
const own_t &operator = (const own_t&);
|
141
|
+
};
|
142
|
+
|
143
|
+
}
|
144
|
+
|
145
|
+
#endif
|