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,110 @@
|
|
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_XPUB_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_XPUB_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#include <deque>
|
25
|
+
#include <string>
|
26
|
+
|
27
|
+
#include "socket_base.hpp"
|
28
|
+
#include "session_base.hpp"
|
29
|
+
#include "mtrie.hpp"
|
30
|
+
#include "array.hpp"
|
31
|
+
#include "dist.hpp"
|
32
|
+
|
33
|
+
namespace zmq
|
34
|
+
{
|
35
|
+
|
36
|
+
class ctx_t;
|
37
|
+
class msg_t;
|
38
|
+
class pipe_t;
|
39
|
+
class io_thread_t;
|
40
|
+
|
41
|
+
class xpub_t :
|
42
|
+
public socket_base_t
|
43
|
+
{
|
44
|
+
public:
|
45
|
+
|
46
|
+
xpub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
|
47
|
+
~xpub_t ();
|
48
|
+
|
49
|
+
// Implementations of virtual functions from socket_base_t.
|
50
|
+
void xattach_pipe (zmq::pipe_t *pipe_, bool icanhasall_ = false);
|
51
|
+
int xsend (zmq::msg_t *msg_, int flags_);
|
52
|
+
bool xhas_out ();
|
53
|
+
int xrecv (zmq::msg_t *msg_, int flags_);
|
54
|
+
bool xhas_in ();
|
55
|
+
void xread_activated (zmq::pipe_t *pipe_);
|
56
|
+
void xwrite_activated (zmq::pipe_t *pipe_);
|
57
|
+
int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
|
58
|
+
void xterminated (zmq::pipe_t *pipe_);
|
59
|
+
|
60
|
+
private:
|
61
|
+
|
62
|
+
// Function to be applied to the trie to send all the subsciptions
|
63
|
+
// upstream.
|
64
|
+
static void send_unsubscription (unsigned char *data_, size_t size_,
|
65
|
+
void *arg_);
|
66
|
+
|
67
|
+
// Function to be applied to each matching pipes.
|
68
|
+
static void mark_as_matching (zmq::pipe_t *pipe_, void *arg_);
|
69
|
+
|
70
|
+
// List of all subscriptions mapped to corresponding pipes.
|
71
|
+
mtrie_t subscriptions;
|
72
|
+
|
73
|
+
// Distributor of messages holding the list of outbound pipes.
|
74
|
+
dist_t dist;
|
75
|
+
|
76
|
+
// If true, send all subscription messages upstream, not just
|
77
|
+
// unique ones
|
78
|
+
bool verbose;
|
79
|
+
|
80
|
+
// True if we are in the middle of sending a multi-part message.
|
81
|
+
bool more;
|
82
|
+
|
83
|
+
// List of pending (un)subscriptions, ie. those that were already
|
84
|
+
// applied to the trie, but not yet received by the user.
|
85
|
+
typedef std::basic_string <unsigned char> blob_t;
|
86
|
+
typedef std::deque <blob_t> pending_t;
|
87
|
+
pending_t pending;
|
88
|
+
|
89
|
+
xpub_t (const xpub_t&);
|
90
|
+
const xpub_t &operator = (const xpub_t&);
|
91
|
+
};
|
92
|
+
|
93
|
+
class xpub_session_t : public session_base_t
|
94
|
+
{
|
95
|
+
public:
|
96
|
+
|
97
|
+
xpub_session_t (zmq::io_thread_t *io_thread_, bool connect_,
|
98
|
+
socket_base_t *socket_, const options_t &options_,
|
99
|
+
const address_t *addr_);
|
100
|
+
~xpub_session_t ();
|
101
|
+
|
102
|
+
private:
|
103
|
+
|
104
|
+
xpub_session_t (const xpub_session_t&);
|
105
|
+
const xpub_session_t &operator = (const xpub_session_t&);
|
106
|
+
};
|
107
|
+
|
108
|
+
}
|
109
|
+
|
110
|
+
#endif
|
@@ -0,0 +1,242 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2011 VMware, Inc.
|
4
|
+
Copyright (c) 2010-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 <string.h>
|
23
|
+
|
24
|
+
#include "xsub.hpp"
|
25
|
+
#include "err.hpp"
|
26
|
+
|
27
|
+
zmq::xsub_t::xsub_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
|
28
|
+
socket_base_t (parent_, tid_, sid_),
|
29
|
+
has_message (false),
|
30
|
+
more (false)
|
31
|
+
{
|
32
|
+
options.type = ZMQ_XSUB;
|
33
|
+
|
34
|
+
// When socket is being closed down we don't want to wait till pending
|
35
|
+
// subscription commands are sent to the wire.
|
36
|
+
options.linger = 0;
|
37
|
+
|
38
|
+
int rc = message.init ();
|
39
|
+
errno_assert (rc == 0);
|
40
|
+
}
|
41
|
+
|
42
|
+
zmq::xsub_t::~xsub_t ()
|
43
|
+
{
|
44
|
+
int rc = message.close ();
|
45
|
+
errno_assert (rc == 0);
|
46
|
+
}
|
47
|
+
|
48
|
+
void zmq::xsub_t::xattach_pipe (pipe_t *pipe_, bool icanhasall_)
|
49
|
+
{
|
50
|
+
// icanhasall_ is unused
|
51
|
+
(void)icanhasall_;
|
52
|
+
|
53
|
+
zmq_assert (pipe_);
|
54
|
+
fq.attach (pipe_);
|
55
|
+
dist.attach (pipe_);
|
56
|
+
|
57
|
+
// Send all the cached subscriptions to the new upstream peer.
|
58
|
+
subscriptions.apply (send_subscription, pipe_);
|
59
|
+
pipe_->flush ();
|
60
|
+
}
|
61
|
+
|
62
|
+
void zmq::xsub_t::xread_activated (pipe_t *pipe_)
|
63
|
+
{
|
64
|
+
fq.activated (pipe_);
|
65
|
+
}
|
66
|
+
|
67
|
+
void zmq::xsub_t::xwrite_activated (pipe_t *pipe_)
|
68
|
+
{
|
69
|
+
dist.activated (pipe_);
|
70
|
+
}
|
71
|
+
|
72
|
+
void zmq::xsub_t::xterminated (pipe_t *pipe_)
|
73
|
+
{
|
74
|
+
fq.terminated (pipe_);
|
75
|
+
dist.terminated (pipe_);
|
76
|
+
}
|
77
|
+
|
78
|
+
void zmq::xsub_t::xhiccuped (pipe_t *pipe_)
|
79
|
+
{
|
80
|
+
// Send all the cached subscriptions to the hiccuped pipe.
|
81
|
+
subscriptions.apply (send_subscription, pipe_);
|
82
|
+
pipe_->flush ();
|
83
|
+
}
|
84
|
+
|
85
|
+
int zmq::xsub_t::xsend (msg_t *msg_, int flags_)
|
86
|
+
{
|
87
|
+
size_t size = msg_->size ();
|
88
|
+
unsigned char *data = (unsigned char*) msg_->data ();
|
89
|
+
|
90
|
+
// Malformed subscriptions.
|
91
|
+
if (size < 1 || (*data != 0 && *data != 1)) {
|
92
|
+
errno = EINVAL;
|
93
|
+
return -1;
|
94
|
+
}
|
95
|
+
|
96
|
+
// Process the subscription.
|
97
|
+
if (*data == 1) {
|
98
|
+
if (subscriptions.add (data + 1, size - 1))
|
99
|
+
return dist.send_to_all (msg_, flags_);
|
100
|
+
}
|
101
|
+
else {
|
102
|
+
if (subscriptions.rm (data + 1, size - 1))
|
103
|
+
return dist.send_to_all (msg_, flags_);
|
104
|
+
}
|
105
|
+
|
106
|
+
int rc = msg_->close ();
|
107
|
+
errno_assert (rc == 0);
|
108
|
+
rc = msg_->init ();
|
109
|
+
errno_assert (rc == 0);
|
110
|
+
|
111
|
+
return 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
bool zmq::xsub_t::xhas_out ()
|
115
|
+
{
|
116
|
+
// Subscription can be added/removed anytime.
|
117
|
+
return true;
|
118
|
+
}
|
119
|
+
|
120
|
+
int zmq::xsub_t::xrecv (msg_t *msg_, int flags_)
|
121
|
+
{
|
122
|
+
// flags_ is unused
|
123
|
+
(void)flags_;
|
124
|
+
|
125
|
+
// If there's already a message prepared by a previous call to zmq_poll,
|
126
|
+
// return it straight ahead.
|
127
|
+
if (has_message) {
|
128
|
+
int rc = msg_->move (message);
|
129
|
+
errno_assert (rc == 0);
|
130
|
+
has_message = false;
|
131
|
+
more = msg_->flags () & msg_t::more ? true : false;
|
132
|
+
return 0;
|
133
|
+
}
|
134
|
+
|
135
|
+
// TODO: This can result in infinite loop in the case of continuous
|
136
|
+
// stream of non-matching messages which breaks the non-blocking recv
|
137
|
+
// semantics.
|
138
|
+
while (true) {
|
139
|
+
|
140
|
+
// Get a message using fair queueing algorithm.
|
141
|
+
int rc = fq.recv (msg_);
|
142
|
+
|
143
|
+
// If there's no message available, return immediately.
|
144
|
+
// The same when error occurs.
|
145
|
+
if (rc != 0)
|
146
|
+
return -1;
|
147
|
+
|
148
|
+
// Check whether the message matches at least one subscription.
|
149
|
+
// Non-initial parts of the message are passed
|
150
|
+
if (more || !options.filter || match (msg_)) {
|
151
|
+
more = msg_->flags () & msg_t::more ? true : false;
|
152
|
+
return 0;
|
153
|
+
}
|
154
|
+
|
155
|
+
// Message doesn't match. Pop any remaining parts of the message
|
156
|
+
// from the pipe.
|
157
|
+
while (msg_->flags () & msg_t::more) {
|
158
|
+
rc = fq.recv (msg_);
|
159
|
+
errno_assert (rc == 0);
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
bool zmq::xsub_t::xhas_in ()
|
165
|
+
{
|
166
|
+
// There are subsequent parts of the partly-read message available.
|
167
|
+
if (more)
|
168
|
+
return true;
|
169
|
+
|
170
|
+
// If there's already a message prepared by a previous call to zmq_poll,
|
171
|
+
// return straight ahead.
|
172
|
+
if (has_message)
|
173
|
+
return true;
|
174
|
+
|
175
|
+
// TODO: This can result in infinite loop in the case of continuous
|
176
|
+
// stream of non-matching messages.
|
177
|
+
while (true) {
|
178
|
+
|
179
|
+
// Get a message using fair queueing algorithm.
|
180
|
+
int rc = fq.recv (&message);
|
181
|
+
|
182
|
+
// If there's no message available, return immediately.
|
183
|
+
// The same when error occurs.
|
184
|
+
if (rc != 0) {
|
185
|
+
errno_assert (errno == EAGAIN);
|
186
|
+
return false;
|
187
|
+
}
|
188
|
+
|
189
|
+
// Check whether the message matches at least one subscription.
|
190
|
+
if (!options.filter || match (&message)) {
|
191
|
+
has_message = true;
|
192
|
+
return true;
|
193
|
+
}
|
194
|
+
|
195
|
+
// Message doesn't match. Pop any remaining parts of the message
|
196
|
+
// from the pipe.
|
197
|
+
while (message.flags () & msg_t::more) {
|
198
|
+
rc = fq.recv (&message);
|
199
|
+
errno_assert (rc == 0);
|
200
|
+
}
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
bool zmq::xsub_t::match (msg_t *msg_)
|
205
|
+
{
|
206
|
+
return subscriptions.check ((unsigned char*) msg_->data (), msg_->size ());
|
207
|
+
}
|
208
|
+
|
209
|
+
void zmq::xsub_t::send_subscription (unsigned char *data_, size_t size_,
|
210
|
+
void *arg_)
|
211
|
+
{
|
212
|
+
pipe_t *pipe = (pipe_t*) arg_;
|
213
|
+
|
214
|
+
// Create the subsctription message.
|
215
|
+
msg_t msg;
|
216
|
+
int rc = msg.init_size (size_ + 1);
|
217
|
+
errno_assert (rc == 0);
|
218
|
+
unsigned char *data = (unsigned char*) msg.data ();
|
219
|
+
data [0] = 1;
|
220
|
+
memcpy (data + 1, data_, size_);
|
221
|
+
|
222
|
+
// Send it to the pipe.
|
223
|
+
bool sent = pipe->write (&msg);
|
224
|
+
// If we reached the SNDHWM, and thus cannot send the subscription, drop
|
225
|
+
// the subscription message instead. This matches the behaviour of
|
226
|
+
// zmq_setsockopt(ZMQ_SUBSCRIBE, ...), which also drops subscriptions
|
227
|
+
// when the SNDHWM is reached.
|
228
|
+
if (!sent)
|
229
|
+
msg.close ();
|
230
|
+
}
|
231
|
+
|
232
|
+
zmq::xsub_session_t::xsub_session_t (io_thread_t *io_thread_, bool connect_,
|
233
|
+
socket_base_t *socket_, const options_t &options_,
|
234
|
+
const address_t *addr_) :
|
235
|
+
session_base_t (io_thread_, connect_, socket_, options_, addr_)
|
236
|
+
{
|
237
|
+
}
|
238
|
+
|
239
|
+
zmq::xsub_session_t::~xsub_session_t ()
|
240
|
+
{
|
241
|
+
}
|
242
|
+
|
@@ -0,0 +1,108 @@
|
|
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_XSUB_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_XSUB_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#include "socket_base.hpp"
|
25
|
+
#include "session_base.hpp"
|
26
|
+
#include "dist.hpp"
|
27
|
+
#include "fq.hpp"
|
28
|
+
#include "trie.hpp"
|
29
|
+
|
30
|
+
namespace zmq
|
31
|
+
{
|
32
|
+
|
33
|
+
class ctx_t;
|
34
|
+
class pipe_t;
|
35
|
+
class io_thread_t;
|
36
|
+
|
37
|
+
class xsub_t :
|
38
|
+
public socket_base_t
|
39
|
+
{
|
40
|
+
public:
|
41
|
+
|
42
|
+
xsub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
|
43
|
+
~xsub_t ();
|
44
|
+
|
45
|
+
protected:
|
46
|
+
|
47
|
+
// Overloads of functions from socket_base_t.
|
48
|
+
void xattach_pipe (zmq::pipe_t *pipe_, bool icanhasall_);
|
49
|
+
int xsend (zmq::msg_t *msg_, int flags_);
|
50
|
+
bool xhas_out ();
|
51
|
+
int xrecv (zmq::msg_t *msg_, int flags_);
|
52
|
+
bool xhas_in ();
|
53
|
+
void xread_activated (zmq::pipe_t *pipe_);
|
54
|
+
void xwrite_activated (zmq::pipe_t *pipe_);
|
55
|
+
void xhiccuped (pipe_t *pipe_);
|
56
|
+
void xterminated (zmq::pipe_t *pipe_);
|
57
|
+
|
58
|
+
private:
|
59
|
+
|
60
|
+
// Check whether the message matches at least one subscription.
|
61
|
+
bool match (zmq::msg_t *msg_);
|
62
|
+
|
63
|
+
// Function to be applied to the trie to send all the subsciptions
|
64
|
+
// upstream.
|
65
|
+
static void send_subscription (unsigned char *data_, size_t size_,
|
66
|
+
void *arg_);
|
67
|
+
|
68
|
+
// Fair queueing object for inbound pipes.
|
69
|
+
fq_t fq;
|
70
|
+
|
71
|
+
// Object for distributing the subscriptions upstream.
|
72
|
+
dist_t dist;
|
73
|
+
|
74
|
+
// The repository of subscriptions.
|
75
|
+
trie_t subscriptions;
|
76
|
+
|
77
|
+
// If true, 'message' contains a matching message to return on the
|
78
|
+
// next recv call.
|
79
|
+
bool has_message;
|
80
|
+
msg_t message;
|
81
|
+
|
82
|
+
// If true, part of a multipart message was already received, but
|
83
|
+
// there are following parts still waiting.
|
84
|
+
bool more;
|
85
|
+
|
86
|
+
xsub_t (const xsub_t&);
|
87
|
+
const xsub_t &operator = (const xsub_t&);
|
88
|
+
};
|
89
|
+
|
90
|
+
class xsub_session_t : public session_base_t
|
91
|
+
{
|
92
|
+
public:
|
93
|
+
|
94
|
+
xsub_session_t (class io_thread_t *io_thread_, bool connect_,
|
95
|
+
socket_base_t *socket_, const options_t &options_,
|
96
|
+
const address_t *addr_);
|
97
|
+
~xsub_session_t ();
|
98
|
+
|
99
|
+
private:
|
100
|
+
|
101
|
+
xsub_session_t (const xsub_session_t&);
|
102
|
+
const xsub_session_t &operator = (const xsub_session_t&);
|
103
|
+
};
|
104
|
+
|
105
|
+
}
|
106
|
+
|
107
|
+
#endif
|
108
|
+
|