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,66 @@
|
|
1
|
+
zmq_ctx_destroy(3)
|
2
|
+
==================
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
----
|
7
|
+
zmq_ctx_destroy - destroy a 0MQ context
|
8
|
+
|
9
|
+
|
10
|
+
SYNOPSIS
|
11
|
+
--------
|
12
|
+
*int zmq_ctx_destroy (void '*context');*
|
13
|
+
|
14
|
+
|
15
|
+
DESCRIPTION
|
16
|
+
-----------
|
17
|
+
The _zmq_ctx_destroy()_ function shall destroy the 0MQ context 'context'.
|
18
|
+
|
19
|
+
Context termination is performed in the following steps:
|
20
|
+
|
21
|
+
1. Any blocking operations currently in progress on sockets open within
|
22
|
+
'context' shall return immediately with an error code of ETERM. With the
|
23
|
+
exception of _zmq_close()_, any further operations on sockets open within
|
24
|
+
'context' shall fail with an error code of ETERM.
|
25
|
+
|
26
|
+
2. After interrupting all blocking calls, _zmq_ctx_destroy()_ shall _block_ until the
|
27
|
+
following conditions are satisfied:
|
28
|
+
|
29
|
+
* All sockets open within 'context' have been closed with _zmq_close()_.
|
30
|
+
|
31
|
+
* For each socket within 'context', all messages sent by the application
|
32
|
+
with _zmq_send()_ have either been physically transferred to a network
|
33
|
+
peer, or the socket's linger period set with the _ZMQ_LINGER_ socket
|
34
|
+
option has expired.
|
35
|
+
|
36
|
+
For further details regarding socket linger behavior refer to the _ZMQ_LINGER_
|
37
|
+
option in linkzmq:zmq_setsockopt[3].
|
38
|
+
|
39
|
+
This function replaces the deprecated function linkzmq:zmq_term[3].
|
40
|
+
|
41
|
+
|
42
|
+
RETURN VALUE
|
43
|
+
------------
|
44
|
+
The _zmq_ctx_destroy()_ function shall return zero if successful. Otherwise
|
45
|
+
it shall return `-1` and set 'errno' to one of the values defined below.
|
46
|
+
|
47
|
+
|
48
|
+
ERRORS
|
49
|
+
------
|
50
|
+
*EFAULT*::
|
51
|
+
The provided 'context' was invalid.
|
52
|
+
*EINTR*::
|
53
|
+
Termination was interrupted by a signal. It can be restarted if needed.
|
54
|
+
|
55
|
+
|
56
|
+
SEE ALSO
|
57
|
+
--------
|
58
|
+
linkzmq:zmq[7]
|
59
|
+
linkzmq:zmq_init[3]
|
60
|
+
linkzmq:zmq_close[3]
|
61
|
+
linkzmq:zmq_setsockopt[3]
|
62
|
+
|
63
|
+
|
64
|
+
AUTHORS
|
65
|
+
-------
|
66
|
+
This 0MQ manual page was written by Pieter Hintjens <ph@imatix.com>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
zmq_ctx_get(3)
|
2
|
+
==============
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
----
|
7
|
+
|
8
|
+
zmq_ctx_get - get context options
|
9
|
+
|
10
|
+
|
11
|
+
SYNOPSIS
|
12
|
+
--------
|
13
|
+
*int zmq_ctx_get (void '*context', int 'option_name');*
|
14
|
+
|
15
|
+
|
16
|
+
DESCRIPTION
|
17
|
+
-----------
|
18
|
+
The _zmq_ctx_get()_ function shall return the option specified by the
|
19
|
+
'option_name' argument.
|
20
|
+
|
21
|
+
The _zmq_ctx_get()_ function accepts the following option names:
|
22
|
+
|
23
|
+
|
24
|
+
ZMQ_IO_THREADS: Get number of I/O threads
|
25
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
26
|
+
The 'ZMQ_IO_THREADS' argument returns the size of the 0MQ thread pool
|
27
|
+
for this context.
|
28
|
+
|
29
|
+
ZMQ_MAX_SOCKETS: Set maximum number of sockets
|
30
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
31
|
+
The 'ZMQ_MAX_SOCKETS' argument returns the maximum number of sockets
|
32
|
+
allowed for this context.
|
33
|
+
|
34
|
+
|
35
|
+
RETURN VALUE
|
36
|
+
------------
|
37
|
+
The _zmq_ctx_get()_ function returns a value of 0 or greater if successful.
|
38
|
+
Otherwise it returns `-1` and sets 'errno' to one of the values defined
|
39
|
+
below.
|
40
|
+
|
41
|
+
|
42
|
+
ERRORS
|
43
|
+
------
|
44
|
+
*EINVAL*::
|
45
|
+
The requested option _option_name_ is unknown.
|
46
|
+
|
47
|
+
|
48
|
+
EXAMPLE
|
49
|
+
-------
|
50
|
+
.Setting a limit on the number of sockets
|
51
|
+
----
|
52
|
+
void *context = zmq_ctx_new ();
|
53
|
+
zmq_ctx_get (context, ZMQ_MAX_SOCKETS, 256);
|
54
|
+
int max_sockets = zmq_ctx_get (context, ZMQ_MAX_SOCKETS);
|
55
|
+
assert (max_sockets == 256);
|
56
|
+
----
|
57
|
+
|
58
|
+
|
59
|
+
SEE ALSO
|
60
|
+
--------
|
61
|
+
linkzmq:zmq_ctx_set[3]
|
62
|
+
linkzmq:zmq[7]
|
63
|
+
|
64
|
+
|
65
|
+
AUTHORS
|
66
|
+
-------
|
67
|
+
This 0MQ manual page was written by Pieter Hintjens <ph@imatix.com>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
zmq_ctx_new(3)
|
2
|
+
==============
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
----
|
7
|
+
zmq_ctx_new - create new 0MQ context
|
8
|
+
|
9
|
+
|
10
|
+
SYNOPSIS
|
11
|
+
--------
|
12
|
+
*void *zmq_ctx_new ();*
|
13
|
+
|
14
|
+
|
15
|
+
DESCRIPTION
|
16
|
+
-----------
|
17
|
+
The _zmq_ctx_new()_ function creates a new 0MQ 'context'.
|
18
|
+
|
19
|
+
This function replaces the deprecated function linkzmq:zmq_init[3].
|
20
|
+
|
21
|
+
.Thread safety
|
22
|
+
A 0MQ 'context' is thread safe and may be shared among as many application
|
23
|
+
threads as necessary, without any additional locking required on the part of
|
24
|
+
the caller.
|
25
|
+
|
26
|
+
|
27
|
+
RETURN VALUE
|
28
|
+
------------
|
29
|
+
The _zmq_ctx_new()_ function shall return an opaque handle to the newly created
|
30
|
+
'context' if successful. Otherwise it shall return NULL and set 'errno' to one
|
31
|
+
of the values defined below.
|
32
|
+
|
33
|
+
|
34
|
+
ERRORS
|
35
|
+
------
|
36
|
+
No error values are defined for this function.
|
37
|
+
|
38
|
+
|
39
|
+
SEE ALSO
|
40
|
+
--------
|
41
|
+
linkzmq:zmq[7]
|
42
|
+
linkzmq:zmq_ctx_set[3]
|
43
|
+
linkzmq:zmq_ctx_get[3]
|
44
|
+
linkzmq:zmq_ctx_destroy[3]
|
45
|
+
|
46
|
+
|
47
|
+
AUTHORS
|
48
|
+
-------
|
49
|
+
This 0MQ manual page was written by Pieter Hintjens <ph@imatix.com>
|
@@ -0,0 +1,75 @@
|
|
1
|
+
zmq_ctx_set(3)
|
2
|
+
==============
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
----
|
7
|
+
|
8
|
+
zmq_ctx_set - set context options
|
9
|
+
|
10
|
+
|
11
|
+
SYNOPSIS
|
12
|
+
--------
|
13
|
+
*int zmq_ctx_set (void '*context', int 'option_name', int 'option_value');*
|
14
|
+
|
15
|
+
|
16
|
+
DESCRIPTION
|
17
|
+
-----------
|
18
|
+
The _zmq_ctx_set()_ function shall set the option specified by the
|
19
|
+
'option_name' argument to the value of the 'option_value' argument.
|
20
|
+
|
21
|
+
The _zmq_ctx_set()_ function accepts the following options:
|
22
|
+
|
23
|
+
|
24
|
+
ZMQ_IO_THREADS: Set number of I/O threads
|
25
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
26
|
+
The 'ZMQ_IO_THREADS' argument specifies the size of the 0MQ thread pool to
|
27
|
+
handle I/O operations. If your application is using only the 'inproc'
|
28
|
+
transport for messaging you may set this to zero, otherwise set it to at
|
29
|
+
least one. This option only applies before creating any sockets on the
|
30
|
+
context.
|
31
|
+
|
32
|
+
[horizontal]
|
33
|
+
Default value:: 1
|
34
|
+
|
35
|
+
ZMQ_MAX_SOCKETS: Set maximum number of sockets
|
36
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
37
|
+
The 'ZMQ_MAX_SOCKETS' argument sets the maximum number of sockets allowed
|
38
|
+
on the context.
|
39
|
+
|
40
|
+
[horizontal]
|
41
|
+
Default value:: 1024
|
42
|
+
|
43
|
+
|
44
|
+
RETURN VALUE
|
45
|
+
------------
|
46
|
+
The _zmq_ctx_set()_ function returns zero if successful. Otherwise it
|
47
|
+
returns `-1` and sets 'errno' to one of the values defined below.
|
48
|
+
|
49
|
+
|
50
|
+
ERRORS
|
51
|
+
------
|
52
|
+
*EINVAL*::
|
53
|
+
The requested option _option_name_ is unknown.
|
54
|
+
|
55
|
+
|
56
|
+
EXAMPLE
|
57
|
+
-------
|
58
|
+
.Setting a limit on the number of sockets
|
59
|
+
----
|
60
|
+
void *context = zmq_ctx_new ();
|
61
|
+
zmq_ctx_set (context, ZMQ_MAX_SOCKETS, 256);
|
62
|
+
int max_sockets = zmq_ctx_get (context, ZMQ_MAX_SOCKETS);
|
63
|
+
assert (max_sockets == 256);
|
64
|
+
----
|
65
|
+
|
66
|
+
|
67
|
+
SEE ALSO
|
68
|
+
--------
|
69
|
+
linkzmq:zmq_ctx_get[3]
|
70
|
+
linkzmq:zmq[7]
|
71
|
+
|
72
|
+
|
73
|
+
AUTHORS
|
74
|
+
-------
|
75
|
+
This 0MQ manual page was written by Pieter Hintjens <ph@imatix.com>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
zmq_disconnect(3)
|
2
|
+
=================
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
----
|
7
|
+
zmq_disconnect - Disconnect a socket
|
8
|
+
|
9
|
+
|
10
|
+
SYNOPSIS
|
11
|
+
--------
|
12
|
+
int zmq_disconnect (void '*socket', const char '*endpoint');
|
13
|
+
|
14
|
+
|
15
|
+
DESCRIPTION
|
16
|
+
-----------
|
17
|
+
The _zmq_disconnect()_ function shall disconnect a socket specified
|
18
|
+
by the 'socket' argument from the endpoint specified by the 'endpoint'
|
19
|
+
argument.
|
20
|
+
|
21
|
+
The 'endpoint' argument is as described in linkzmq:zmq_connect[3]
|
22
|
+
|
23
|
+
|
24
|
+
RETURN VALUE
|
25
|
+
------------
|
26
|
+
The _zmq_disconnect()_ function shall return zero if successful. Otherwise it
|
27
|
+
shall return `-1` and set 'errno' to one of the values defined below.
|
28
|
+
|
29
|
+
ERRORS
|
30
|
+
------
|
31
|
+
*EINVAL*::
|
32
|
+
The endpoint supplied is invalid.
|
33
|
+
*ETERM*::
|
34
|
+
The 0MQ 'context' associated with the specified 'socket' was terminated.
|
35
|
+
*ENOTSOCK*::
|
36
|
+
The provided 'socket' was invalid.
|
37
|
+
*ENOENT*::
|
38
|
+
The provided endpoint is not connected.
|
39
|
+
|
40
|
+
|
41
|
+
EXAMPLE
|
42
|
+
-------
|
43
|
+
.Connecting a subscriber socket to an in-process and a TCP transport
|
44
|
+
----
|
45
|
+
/* Create a ZMQ_SUB socket */
|
46
|
+
void *socket = zmq_socket (context, ZMQ_SUB);
|
47
|
+
assert (socket);
|
48
|
+
/* Connect it to the host server001, port 5555 using a TCP transport */
|
49
|
+
rc = zmq_connect (socket, "tcp://server001:5555");
|
50
|
+
assert (rc == 0);
|
51
|
+
/* Disconnect from the previously connected endpoint */
|
52
|
+
rc = zmq_disconnect (socket, "tcp://server001:5555");
|
53
|
+
assert (rc == 0);
|
54
|
+
----
|
55
|
+
|
56
|
+
|
57
|
+
SEE ALSO
|
58
|
+
--------
|
59
|
+
linkzmq:zmq_connect[3]
|
60
|
+
linkzmq:zmq_socket[3]
|
61
|
+
linkzmq:zmq[7]
|
62
|
+
|
63
|
+
|
64
|
+
AUTHORS
|
65
|
+
-------
|
66
|
+
This 0MQ manual page was written by Martin Sustrik <sustrik@250bpm.com>,
|
67
|
+
Martin Lucina <mato@kotelna.sk> and Ian Barber <ian.barber@gmail.com>
|
@@ -0,0 +1,162 @@
|
|
1
|
+
zmq_pgm(7)
|
2
|
+
==========
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
----
|
7
|
+
zmq_pgm - 0MQ reliable multicast transport using PGM
|
8
|
+
|
9
|
+
|
10
|
+
SYNOPSIS
|
11
|
+
--------
|
12
|
+
PGM (Pragmatic General Multicast) is a protocol for reliable multicast
|
13
|
+
transport of data over IP networks.
|
14
|
+
|
15
|
+
|
16
|
+
DESCRIPTION
|
17
|
+
-----------
|
18
|
+
0MQ implements two variants of PGM, the standard protocol where PGM datagrams
|
19
|
+
are layered directly on top of IP datagrams as defined by RFC 3208 (the 'pgm'
|
20
|
+
transport) and "Encapsulated PGM" or EPGM where PGM datagrams are encapsulated
|
21
|
+
inside UDP datagrams (the 'epgm' transport).
|
22
|
+
|
23
|
+
The 'pgm' and 'epgm' transports can only be used with the 'ZMQ_PUB' and
|
24
|
+
'ZMQ_SUB' socket types.
|
25
|
+
|
26
|
+
Further, PGM sockets are rate limited by default. For details, refer to the
|
27
|
+
'ZMQ_RATE', and 'ZMQ_RECOVERY_IVL' options documented in
|
28
|
+
linkzmq:zmq_setsockopt[3].
|
29
|
+
|
30
|
+
CAUTION: The 'pgm' transport implementation requires access to raw IP sockets.
|
31
|
+
Additional privileges may be required on some operating systems for this
|
32
|
+
operation. Applications not requiring direct interoperability with other PGM
|
33
|
+
implementations are encouraged to use the 'epgm' transport instead which does
|
34
|
+
not require any special privileges.
|
35
|
+
|
36
|
+
|
37
|
+
ADDRESSING
|
38
|
+
----------
|
39
|
+
A 0MQ endpoint is a string consisting of a 'transport'`://` followed by an
|
40
|
+
'address'. The 'transport' specifies the underlying protocol to use. The
|
41
|
+
'address' specifies the transport-specific address to connect to.
|
42
|
+
|
43
|
+
For the PGM transport, the transport is `pgm`, and for the EPGM protocol the
|
44
|
+
transport is `epgm`. The meaning of the 'address' part is defined below.
|
45
|
+
|
46
|
+
|
47
|
+
Connecting a socket
|
48
|
+
~~~~~~~~~~~~~~~~~~~
|
49
|
+
When connecting a socket to a peer address using _zmq_connect()_ with the 'pgm'
|
50
|
+
or 'epgm' transport, the 'endpoint' shall be interpreted as an 'interface'
|
51
|
+
followed by a semicolon, followed by a 'multicast address', followed by a colon
|
52
|
+
and a port number.
|
53
|
+
|
54
|
+
An 'interface' may be specified by either of the following:
|
55
|
+
|
56
|
+
* The interface name as defined by the operating system.
|
57
|
+
* The primary IPv4 address assigned to the interface, in it's numeric
|
58
|
+
representation.
|
59
|
+
|
60
|
+
NOTE: Interface names are not standardised in any way and should be assumed to
|
61
|
+
be arbitrary and platform dependent. On Win32 platforms no short interface
|
62
|
+
names exist, thus only the primary IPv4 address may be used to specify an
|
63
|
+
'interface'. The 'interface' part can be omitted, in that case the default one
|
64
|
+
will be selected.
|
65
|
+
|
66
|
+
A 'multicast address' is specified by an IPv4 multicast address in it's numeric
|
67
|
+
representation.
|
68
|
+
|
69
|
+
|
70
|
+
WIRE FORMAT
|
71
|
+
-----------
|
72
|
+
Consecutive PGM datagrams are interpreted by 0MQ as a single continuous stream
|
73
|
+
of data where 0MQ messages are not necessarily aligned with PGM datagram
|
74
|
+
boundaries and a single 0MQ message may span several PGM datagrams. This stream
|
75
|
+
of data consists of 0MQ messages encapsulated in 'frames' as described in
|
76
|
+
linkzmq:zmq_tcp[7].
|
77
|
+
|
78
|
+
|
79
|
+
PGM datagram payload
|
80
|
+
~~~~~~~~~~~~~~~~~~~~
|
81
|
+
The following ABNF grammar represents the payload of a single PGM datagram as
|
82
|
+
used by 0MQ:
|
83
|
+
|
84
|
+
....
|
85
|
+
datagram = (offset data)
|
86
|
+
offset = 2OCTET
|
87
|
+
data = *OCTET
|
88
|
+
....
|
89
|
+
|
90
|
+
In order for late joining consumers to be able to identify message boundaries,
|
91
|
+
each PGM datagram payload starts with a 16-bit unsigned integer in network byte
|
92
|
+
order specifying either the offset of the first message 'frame' in the datagram
|
93
|
+
or containing the value `0xFFFF` if the datagram contains solely an
|
94
|
+
intermediate part of a larger message.
|
95
|
+
|
96
|
+
Note that offset specifies where the first message begins rather than the first
|
97
|
+
message part. Thus, if there are trailing message parts at the beginning of
|
98
|
+
the packet the offset ignores them and points to first initial message part
|
99
|
+
in the packet.
|
100
|
+
|
101
|
+
The following diagram illustrates the layout of a single PGM datagram payload:
|
102
|
+
|
103
|
+
....
|
104
|
+
+------------------+----------------------+
|
105
|
+
| offset (16 bits) | data |
|
106
|
+
+------------------+----------------------+
|
107
|
+
....
|
108
|
+
|
109
|
+
The following diagram further illustrates how three example 0MQ frames are laid
|
110
|
+
out in consecutive PGM datagram payloads:
|
111
|
+
|
112
|
+
....
|
113
|
+
First datagram payload
|
114
|
+
+--------------+-------------+---------------------+
|
115
|
+
| Frame offset | Frame 1 | Frame 2, part 1 |
|
116
|
+
| 0x0000 | (Message 1) | (Message 2, part 1) |
|
117
|
+
+--------------+-------------+---------------------+
|
118
|
+
|
119
|
+
Second datagram payload
|
120
|
+
+--------------+---------------------+
|
121
|
+
| Frame offset | Frame 2, part 2 |
|
122
|
+
| 0xFFFF | (Message 2, part 2) |
|
123
|
+
+--------------+---------------------+
|
124
|
+
|
125
|
+
Third datagram payload
|
126
|
+
+--------------+----------------------------+-------------+
|
127
|
+
| Frame offset | Frame 2, final 8 bytes | Frame 3 |
|
128
|
+
| 0x0008 | (Message 2, final 8 bytes) | (Message 3) |
|
129
|
+
+--------------+----------------------------+-------------+
|
130
|
+
....
|
131
|
+
|
132
|
+
|
133
|
+
EXAMPLE
|
134
|
+
-------
|
135
|
+
.Connecting a socket
|
136
|
+
----
|
137
|
+
// Connecting to the multicast address 239.192.1.1, port 5555,
|
138
|
+
// using the first Ethernet network interface on Linux
|
139
|
+
// and the Encapsulated PGM protocol
|
140
|
+
rc = zmq_connect(socket, "epgm://eth0;239.192.1.1:5555");
|
141
|
+
assert (rc == 0);
|
142
|
+
// Connecting to the multicast address 239.192.1.1, port 5555,
|
143
|
+
// using the network interface with the address 192.168.1.1
|
144
|
+
// and the standard PGM protocol
|
145
|
+
rc = zmq_connect(socket, "pgm://192.168.1.1;239.192.1.1:5555");
|
146
|
+
assert (rc == 0);
|
147
|
+
----
|
148
|
+
|
149
|
+
|
150
|
+
SEE ALSO
|
151
|
+
--------
|
152
|
+
linkzmq:zmq_connect[3]
|
153
|
+
linkzmq:zmq_setsockopt[3]
|
154
|
+
linkzmq:zmq_tcp[7]
|
155
|
+
linkzmq:zmq_ipc[7]
|
156
|
+
linkzmq:zmq_inproc[7]
|
157
|
+
linkzmq:zmq[7]
|
158
|
+
|
159
|
+
AUTHORS
|
160
|
+
-------
|
161
|
+
This 0MQ manual page was written by Pieter Hintjens <ph@imatix.com>,
|
162
|
+
Martin Sustrik <sustrik@250bpm.com> and Martin Lucina <mato@kotelna.sk>.
|