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,141 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2010-2011 Miru Limited
|
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_PGM_RECEIVER_HPP_INCLUDED__
|
24
|
+
#define __ZMQ_PGM_RECEIVER_HPP_INCLUDED__
|
25
|
+
|
26
|
+
#include "platform.hpp"
|
27
|
+
|
28
|
+
#if defined ZMQ_HAVE_OPENPGM
|
29
|
+
|
30
|
+
#ifdef ZMQ_HAVE_WINDOWS
|
31
|
+
#include "windows.hpp"
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#include <map>
|
35
|
+
#include <algorithm>
|
36
|
+
|
37
|
+
#include "io_object.hpp"
|
38
|
+
#include "i_engine.hpp"
|
39
|
+
#include "options.hpp"
|
40
|
+
#include "decoder.hpp"
|
41
|
+
#include "pgm_socket.hpp"
|
42
|
+
|
43
|
+
namespace zmq
|
44
|
+
{
|
45
|
+
|
46
|
+
class io_thread_t;
|
47
|
+
class session_base_t;
|
48
|
+
|
49
|
+
class pgm_receiver_t : public io_object_t, public i_engine
|
50
|
+
{
|
51
|
+
|
52
|
+
public:
|
53
|
+
|
54
|
+
pgm_receiver_t (zmq::io_thread_t *parent_, const options_t &options_);
|
55
|
+
~pgm_receiver_t ();
|
56
|
+
|
57
|
+
int init (bool udp_encapsulation_, const char *network_);
|
58
|
+
|
59
|
+
// i_engine interface implementation.
|
60
|
+
void plug (zmq::io_thread_t *io_thread_,
|
61
|
+
zmq::session_base_t *session_);
|
62
|
+
void terminate ();
|
63
|
+
void activate_in ();
|
64
|
+
void activate_out ();
|
65
|
+
|
66
|
+
// i_poll_events interface implementation.
|
67
|
+
void in_event ();
|
68
|
+
void timer_event (int token);
|
69
|
+
|
70
|
+
private:
|
71
|
+
|
72
|
+
// Unplug the engine from the session.
|
73
|
+
void unplug ();
|
74
|
+
|
75
|
+
// PGM is not able to move subscriptions upstream. Thus, drop all
|
76
|
+
// the pending subscriptions.
|
77
|
+
void drop_subscriptions ();
|
78
|
+
|
79
|
+
// RX timeout timer ID.
|
80
|
+
enum {rx_timer_id = 0xa1};
|
81
|
+
|
82
|
+
// RX timer is running.
|
83
|
+
bool has_rx_timer;
|
84
|
+
|
85
|
+
// If joined is true we are already getting messages from the peer.
|
86
|
+
// It it's false, we are getting data but still we haven't seen
|
87
|
+
// beginning of a message.
|
88
|
+
struct peer_info_t
|
89
|
+
{
|
90
|
+
bool joined;
|
91
|
+
decoder_t *decoder;
|
92
|
+
};
|
93
|
+
|
94
|
+
struct tsi_comp
|
95
|
+
{
|
96
|
+
bool operator () (const pgm_tsi_t <si,
|
97
|
+
const pgm_tsi_t &rtsi) const
|
98
|
+
{
|
99
|
+
uint32_t ll[2], rl[2];
|
100
|
+
memcpy (ll, <si, sizeof (ll));
|
101
|
+
memcpy (rl, &rtsi, sizeof (rl));
|
102
|
+
return (ll[0] < rl[0]) || (ll[0] == rl[0] && ll[1] < rl[1]);
|
103
|
+
}
|
104
|
+
};
|
105
|
+
|
106
|
+
typedef std::map <pgm_tsi_t, peer_info_t, tsi_comp> peers_t;
|
107
|
+
peers_t peers;
|
108
|
+
|
109
|
+
// PGM socket.
|
110
|
+
pgm_socket_t pgm_socket;
|
111
|
+
|
112
|
+
// Socket options.
|
113
|
+
options_t options;
|
114
|
+
|
115
|
+
// Associated session.
|
116
|
+
zmq::session_base_t *session;
|
117
|
+
|
118
|
+
// Most recently used decoder.
|
119
|
+
decoder_t *mru_decoder;
|
120
|
+
|
121
|
+
// Number of bytes not consumed by the decoder due to pipe overflow.
|
122
|
+
size_t pending_bytes;
|
123
|
+
|
124
|
+
// Pointer to data still waiting to be processed by the decoder.
|
125
|
+
unsigned char *pending_ptr;
|
126
|
+
|
127
|
+
// Poll handle associated with PGM socket.
|
128
|
+
handle_t socket_handle;
|
129
|
+
|
130
|
+
// Poll handle associated with engine PGM waiting pipe.
|
131
|
+
handle_t pipe_handle;
|
132
|
+
|
133
|
+
pgm_receiver_t (const pgm_receiver_t&);
|
134
|
+
const pgm_receiver_t &operator = (const pgm_receiver_t&);
|
135
|
+
};
|
136
|
+
|
137
|
+
}
|
138
|
+
|
139
|
+
#endif
|
140
|
+
|
141
|
+
#endif
|
@@ -0,0 +1,218 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2010-2011 Miru Limited
|
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
|
+
#include "platform.hpp"
|
24
|
+
|
25
|
+
#if defined ZMQ_HAVE_OPENPGM
|
26
|
+
|
27
|
+
#ifdef ZMQ_HAVE_WINDOWS
|
28
|
+
#include "windows.hpp"
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#include <stdlib.h>
|
32
|
+
|
33
|
+
#include "io_thread.hpp"
|
34
|
+
#include "pgm_sender.hpp"
|
35
|
+
#include "session_base.hpp"
|
36
|
+
#include "err.hpp"
|
37
|
+
#include "wire.hpp"
|
38
|
+
#include "stdint.hpp"
|
39
|
+
|
40
|
+
zmq::pgm_sender_t::pgm_sender_t (io_thread_t *parent_,
|
41
|
+
const options_t &options_) :
|
42
|
+
io_object_t (parent_),
|
43
|
+
has_tx_timer (false),
|
44
|
+
has_rx_timer (false),
|
45
|
+
encoder (0),
|
46
|
+
pgm_socket (false, options_),
|
47
|
+
options (options_),
|
48
|
+
out_buffer (NULL),
|
49
|
+
out_buffer_size (0),
|
50
|
+
write_size (0)
|
51
|
+
{
|
52
|
+
}
|
53
|
+
|
54
|
+
int zmq::pgm_sender_t::init (bool udp_encapsulation_, const char *network_)
|
55
|
+
{
|
56
|
+
int rc = pgm_socket.init (udp_encapsulation_, network_);
|
57
|
+
if (rc != 0)
|
58
|
+
return rc;
|
59
|
+
|
60
|
+
out_buffer_size = pgm_socket.get_max_tsdu_size ();
|
61
|
+
out_buffer = (unsigned char*) malloc (out_buffer_size);
|
62
|
+
alloc_assert (out_buffer);
|
63
|
+
|
64
|
+
return rc;
|
65
|
+
}
|
66
|
+
|
67
|
+
void zmq::pgm_sender_t::plug (io_thread_t *io_thread_, session_base_t *session_)
|
68
|
+
{
|
69
|
+
// Alocate 2 fds for PGM socket.
|
70
|
+
fd_t downlink_socket_fd = retired_fd;
|
71
|
+
fd_t uplink_socket_fd = retired_fd;
|
72
|
+
fd_t rdata_notify_fd = retired_fd;
|
73
|
+
fd_t pending_notify_fd = retired_fd;
|
74
|
+
|
75
|
+
encoder.set_msg_source (session_);
|
76
|
+
|
77
|
+
// Fill fds from PGM transport and add them to the poller.
|
78
|
+
pgm_socket.get_sender_fds (&downlink_socket_fd, &uplink_socket_fd,
|
79
|
+
&rdata_notify_fd, &pending_notify_fd);
|
80
|
+
|
81
|
+
handle = add_fd (downlink_socket_fd);
|
82
|
+
uplink_handle = add_fd (uplink_socket_fd);
|
83
|
+
rdata_notify_handle = add_fd (rdata_notify_fd);
|
84
|
+
pending_notify_handle = add_fd (pending_notify_fd);
|
85
|
+
|
86
|
+
// Set POLLIN. We wont never want to stop polling for uplink = we never
|
87
|
+
// want to stop porocess NAKs.
|
88
|
+
set_pollin (uplink_handle);
|
89
|
+
set_pollin (rdata_notify_handle);
|
90
|
+
set_pollin (pending_notify_handle);
|
91
|
+
|
92
|
+
// Set POLLOUT for downlink_socket_handle.
|
93
|
+
set_pollout (handle);
|
94
|
+
}
|
95
|
+
|
96
|
+
void zmq::pgm_sender_t::unplug ()
|
97
|
+
{
|
98
|
+
if (has_rx_timer) {
|
99
|
+
cancel_timer (rx_timer_id);
|
100
|
+
has_rx_timer = false;
|
101
|
+
}
|
102
|
+
|
103
|
+
if (has_tx_timer) {
|
104
|
+
cancel_timer (tx_timer_id);
|
105
|
+
has_tx_timer = false;
|
106
|
+
}
|
107
|
+
|
108
|
+
rm_fd (handle);
|
109
|
+
rm_fd (uplink_handle);
|
110
|
+
rm_fd (rdata_notify_handle);
|
111
|
+
rm_fd (pending_notify_handle);
|
112
|
+
encoder.set_msg_source (NULL);
|
113
|
+
}
|
114
|
+
|
115
|
+
void zmq::pgm_sender_t::terminate ()
|
116
|
+
{
|
117
|
+
unplug ();
|
118
|
+
delete this;
|
119
|
+
}
|
120
|
+
|
121
|
+
void zmq::pgm_sender_t::activate_out ()
|
122
|
+
{
|
123
|
+
set_pollout (handle);
|
124
|
+
out_event ();
|
125
|
+
}
|
126
|
+
|
127
|
+
void zmq::pgm_sender_t::activate_in ()
|
128
|
+
{
|
129
|
+
zmq_assert (false);
|
130
|
+
}
|
131
|
+
|
132
|
+
zmq::pgm_sender_t::~pgm_sender_t ()
|
133
|
+
{
|
134
|
+
if (out_buffer) {
|
135
|
+
free (out_buffer);
|
136
|
+
out_buffer = NULL;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
void zmq::pgm_sender_t::in_event ()
|
141
|
+
{
|
142
|
+
if (has_rx_timer) {
|
143
|
+
cancel_timer (rx_timer_id);
|
144
|
+
has_rx_timer = false;
|
145
|
+
}
|
146
|
+
|
147
|
+
// In-event on sender side means NAK or SPMR receiving from some peer.
|
148
|
+
pgm_socket.process_upstream ();
|
149
|
+
if (errno == ENOMEM || errno == EBUSY) {
|
150
|
+
const long timeout = pgm_socket.get_rx_timeout ();
|
151
|
+
add_timer (timeout, rx_timer_id);
|
152
|
+
has_rx_timer = true;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
void zmq::pgm_sender_t::out_event ()
|
157
|
+
{
|
158
|
+
// POLLOUT event from send socket. If write buffer is empty,
|
159
|
+
// try to read new data from the encoder.
|
160
|
+
if (write_size == 0) {
|
161
|
+
|
162
|
+
// First two bytes (sizeof uint16_t) are used to store message
|
163
|
+
// offset in following steps. Note that by passing our buffer to
|
164
|
+
// the get data function we prevent it from returning its own buffer.
|
165
|
+
unsigned char *bf = out_buffer + sizeof (uint16_t);
|
166
|
+
size_t bfsz = out_buffer_size - sizeof (uint16_t);
|
167
|
+
int offset = -1;
|
168
|
+
encoder.get_data (&bf, &bfsz, &offset);
|
169
|
+
|
170
|
+
// If there are no data to write stop polling for output.
|
171
|
+
if (!bfsz) {
|
172
|
+
reset_pollout (handle);
|
173
|
+
return;
|
174
|
+
}
|
175
|
+
|
176
|
+
// Put offset information in the buffer.
|
177
|
+
write_size = bfsz + sizeof (uint16_t);
|
178
|
+
put_uint16 (out_buffer, offset == -1 ? 0xffff : (uint16_t) offset);
|
179
|
+
}
|
180
|
+
|
181
|
+
if (has_tx_timer) {
|
182
|
+
cancel_timer (tx_timer_id);
|
183
|
+
has_tx_timer = false;
|
184
|
+
}
|
185
|
+
|
186
|
+
// Send the data.
|
187
|
+
size_t nbytes = pgm_socket.send (out_buffer, write_size);
|
188
|
+
|
189
|
+
// We can write either all data or 0 which means rate limit reached.
|
190
|
+
if (nbytes == write_size) {
|
191
|
+
write_size = 0;
|
192
|
+
} else {
|
193
|
+
zmq_assert (nbytes == 0);
|
194
|
+
|
195
|
+
if (errno == ENOMEM) {
|
196
|
+
const long timeout = pgm_socket.get_tx_timeout ();
|
197
|
+
add_timer (timeout, tx_timer_id);
|
198
|
+
has_tx_timer = true;
|
199
|
+
} else
|
200
|
+
errno_assert (errno == EBUSY);
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
void zmq::pgm_sender_t::timer_event (int token)
|
205
|
+
{
|
206
|
+
// Timer cancels on return by poller_base.
|
207
|
+
if (token == rx_timer_id) {
|
208
|
+
has_rx_timer = false;
|
209
|
+
in_event ();
|
210
|
+
} else if (token == tx_timer_id) {
|
211
|
+
has_tx_timer = false;
|
212
|
+
out_event ();
|
213
|
+
} else
|
214
|
+
zmq_assert (false);
|
215
|
+
}
|
216
|
+
|
217
|
+
#endif
|
218
|
+
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2010-2011 Miru Limited
|
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_PGM_SENDER_HPP_INCLUDED__
|
24
|
+
#define __ZMQ_PGM_SENDER_HPP_INCLUDED__
|
25
|
+
|
26
|
+
#include "platform.hpp"
|
27
|
+
|
28
|
+
#if defined ZMQ_HAVE_OPENPGM
|
29
|
+
|
30
|
+
#ifdef ZMQ_HAVE_WINDOWS
|
31
|
+
#include "windows.hpp"
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#include "stdint.hpp"
|
35
|
+
#include "io_object.hpp"
|
36
|
+
#include "i_engine.hpp"
|
37
|
+
#include "options.hpp"
|
38
|
+
#include "pgm_socket.hpp"
|
39
|
+
#include "encoder.hpp"
|
40
|
+
|
41
|
+
namespace zmq
|
42
|
+
{
|
43
|
+
|
44
|
+
class io_thread_t;
|
45
|
+
class session_base_t;
|
46
|
+
|
47
|
+
class pgm_sender_t : public io_object_t, public i_engine
|
48
|
+
{
|
49
|
+
|
50
|
+
public:
|
51
|
+
|
52
|
+
pgm_sender_t (zmq::io_thread_t *parent_, const options_t &options_);
|
53
|
+
~pgm_sender_t ();
|
54
|
+
|
55
|
+
int init (bool udp_encapsulation_, const char *network_);
|
56
|
+
|
57
|
+
// i_engine interface implementation.
|
58
|
+
void plug (zmq::io_thread_t *io_thread_,
|
59
|
+
zmq::session_base_t *session_);
|
60
|
+
void terminate ();
|
61
|
+
void activate_in ();
|
62
|
+
void activate_out ();
|
63
|
+
|
64
|
+
// i_poll_events interface implementation.
|
65
|
+
void in_event ();
|
66
|
+
void out_event ();
|
67
|
+
void timer_event (int token);
|
68
|
+
|
69
|
+
private:
|
70
|
+
|
71
|
+
// Unplug the engine from the session.
|
72
|
+
void unplug ();
|
73
|
+
|
74
|
+
// TX and RX timeout timer ID's.
|
75
|
+
enum {tx_timer_id = 0xa0, rx_timer_id = 0xa1};
|
76
|
+
|
77
|
+
// Timers are running.
|
78
|
+
bool has_tx_timer;
|
79
|
+
bool has_rx_timer;
|
80
|
+
|
81
|
+
// Message encoder.
|
82
|
+
encoder_t encoder;
|
83
|
+
|
84
|
+
// PGM socket.
|
85
|
+
pgm_socket_t pgm_socket;
|
86
|
+
|
87
|
+
// Socket options.
|
88
|
+
options_t options;
|
89
|
+
|
90
|
+
// Poll handle associated with PGM socket.
|
91
|
+
handle_t handle;
|
92
|
+
handle_t uplink_handle;
|
93
|
+
handle_t rdata_notify_handle;
|
94
|
+
handle_t pending_notify_handle;
|
95
|
+
|
96
|
+
// Output buffer from pgm_socket.
|
97
|
+
unsigned char *out_buffer;
|
98
|
+
|
99
|
+
// Output buffer size.
|
100
|
+
size_t out_buffer_size;
|
101
|
+
|
102
|
+
// Number of bytes in the buffer to be written to the socket.
|
103
|
+
// If zero, there are no data to be sent.
|
104
|
+
size_t write_size;
|
105
|
+
|
106
|
+
pgm_sender_t (const pgm_sender_t&);
|
107
|
+
const pgm_sender_t &operator = (const pgm_sender_t&);
|
108
|
+
};
|
109
|
+
|
110
|
+
}
|
111
|
+
#endif
|
112
|
+
|
113
|
+
#endif
|