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,75 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef __ZMQ_MAILBOX_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_MAILBOX_HPP_INCLUDED__
|
24
|
+
|
25
|
+
#include <stddef.h>
|
26
|
+
|
27
|
+
#include "platform.hpp"
|
28
|
+
#include "signaler.hpp"
|
29
|
+
#include "fd.hpp"
|
30
|
+
#include "config.hpp"
|
31
|
+
#include "command.hpp"
|
32
|
+
#include "ypipe.hpp"
|
33
|
+
#include "mutex.hpp"
|
34
|
+
|
35
|
+
namespace zmq
|
36
|
+
{
|
37
|
+
|
38
|
+
class mailbox_t
|
39
|
+
{
|
40
|
+
public:
|
41
|
+
|
42
|
+
mailbox_t ();
|
43
|
+
~mailbox_t ();
|
44
|
+
|
45
|
+
fd_t get_fd ();
|
46
|
+
void send (const command_t &cmd_);
|
47
|
+
int recv (command_t *cmd_, int timeout_);
|
48
|
+
|
49
|
+
private:
|
50
|
+
|
51
|
+
// The pipe to store actual commands.
|
52
|
+
typedef ypipe_t <command_t, command_pipe_granularity> cpipe_t;
|
53
|
+
cpipe_t cpipe;
|
54
|
+
|
55
|
+
// Signaler to pass signals from writer thread to reader thread.
|
56
|
+
signaler_t signaler;
|
57
|
+
|
58
|
+
// There's only one thread receiving from the mailbox, but there
|
59
|
+
// is arbitrary number of threads sending. Given that ypipe requires
|
60
|
+
// synchronised access on both of its endpoints, we have to synchronise
|
61
|
+
// the sending side.
|
62
|
+
mutex_t sync;
|
63
|
+
|
64
|
+
// True if the underlying pipe is active, ie. when we are allowed to
|
65
|
+
// read commands from it.
|
66
|
+
bool active;
|
67
|
+
|
68
|
+
// Disable copying of mailbox_t object.
|
69
|
+
mailbox_t (const mailbox_t&);
|
70
|
+
const mailbox_t &operator = (const mailbox_t&);
|
71
|
+
};
|
72
|
+
|
73
|
+
}
|
74
|
+
|
75
|
+
#endif
|
@@ -0,0 +1,299 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2007-2012 iMatix Corporation
|
3
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
4
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include "msg.hpp"
|
23
|
+
#include "../include/zmq.h"
|
24
|
+
|
25
|
+
#include <string.h>
|
26
|
+
#include <stdlib.h>
|
27
|
+
#include <new>
|
28
|
+
|
29
|
+
#include "stdint.hpp"
|
30
|
+
#include "likely.hpp"
|
31
|
+
#include "err.hpp"
|
32
|
+
|
33
|
+
// Check whether the sizes of public representation of the message (zmq_msg_t)
|
34
|
+
// and private represenation of the message (zmq::msg_t) match.
|
35
|
+
typedef char zmq_msg_size_check
|
36
|
+
[2 * ((sizeof (zmq::msg_t) == sizeof (zmq_msg_t)) != 0) - 1];
|
37
|
+
|
38
|
+
bool zmq::msg_t::check ()
|
39
|
+
{
|
40
|
+
return u.base.type >= type_min && u.base.type <= type_max;
|
41
|
+
}
|
42
|
+
|
43
|
+
int zmq::msg_t::init ()
|
44
|
+
{
|
45
|
+
u.vsm.type = type_vsm;
|
46
|
+
u.vsm.flags = 0;
|
47
|
+
u.vsm.size = 0;
|
48
|
+
return 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
int zmq::msg_t::init_size (size_t size_)
|
52
|
+
{
|
53
|
+
if (size_ <= max_vsm_size) {
|
54
|
+
u.vsm.type = type_vsm;
|
55
|
+
u.vsm.flags = 0;
|
56
|
+
u.vsm.size = (unsigned char) size_;
|
57
|
+
}
|
58
|
+
else {
|
59
|
+
u.lmsg.type = type_lmsg;
|
60
|
+
u.lmsg.flags = 0;
|
61
|
+
u.lmsg.content =
|
62
|
+
(content_t*) malloc (sizeof (content_t) + size_);
|
63
|
+
if (!u.lmsg.content) {
|
64
|
+
errno = ENOMEM;
|
65
|
+
return -1;
|
66
|
+
}
|
67
|
+
|
68
|
+
u.lmsg.content->data = u.lmsg.content + 1;
|
69
|
+
u.lmsg.content->size = size_;
|
70
|
+
u.lmsg.content->ffn = NULL;
|
71
|
+
u.lmsg.content->hint = NULL;
|
72
|
+
new (&u.lmsg.content->refcnt) zmq::atomic_counter_t ();
|
73
|
+
}
|
74
|
+
return 0;
|
75
|
+
}
|
76
|
+
|
77
|
+
int zmq::msg_t::init_data (void *data_, size_t size_, msg_free_fn *ffn_,
|
78
|
+
void *hint_)
|
79
|
+
{
|
80
|
+
u.lmsg.type = type_lmsg;
|
81
|
+
u.lmsg.flags = 0;
|
82
|
+
u.lmsg.content = (content_t*) malloc (sizeof (content_t));
|
83
|
+
if (!u.lmsg.content) {
|
84
|
+
errno = ENOMEM;
|
85
|
+
return -1;
|
86
|
+
}
|
87
|
+
|
88
|
+
u.lmsg.content->data = data_;
|
89
|
+
u.lmsg.content->size = size_;
|
90
|
+
u.lmsg.content->ffn = ffn_;
|
91
|
+
u.lmsg.content->hint = hint_;
|
92
|
+
new (&u.lmsg.content->refcnt) zmq::atomic_counter_t ();
|
93
|
+
return 0;
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
int zmq::msg_t::init_delimiter ()
|
98
|
+
{
|
99
|
+
u.delimiter.type = type_delimiter;
|
100
|
+
u.delimiter.flags = 0;
|
101
|
+
return 0;
|
102
|
+
}
|
103
|
+
|
104
|
+
int zmq::msg_t::close ()
|
105
|
+
{
|
106
|
+
// Check the validity of the message.
|
107
|
+
if (unlikely (!check ())) {
|
108
|
+
errno = EFAULT;
|
109
|
+
return -1;
|
110
|
+
}
|
111
|
+
|
112
|
+
if (u.base.type == type_lmsg) {
|
113
|
+
|
114
|
+
// If the content is not shared, or if it is shared and the reference
|
115
|
+
// count has dropped to zero, deallocate it.
|
116
|
+
if (!(u.lmsg.flags & msg_t::shared) ||
|
117
|
+
!u.lmsg.content->refcnt.sub (1)) {
|
118
|
+
|
119
|
+
// We used "placement new" operator to initialize the reference
|
120
|
+
// counter so we call the destructor explicitly now.
|
121
|
+
u.lmsg.content->refcnt.~atomic_counter_t ();
|
122
|
+
|
123
|
+
if (u.lmsg.content->ffn)
|
124
|
+
u.lmsg.content->ffn (u.lmsg.content->data,
|
125
|
+
u.lmsg.content->hint);
|
126
|
+
free (u.lmsg.content);
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
// Make the message invalid.
|
131
|
+
u.base.type = 0;
|
132
|
+
|
133
|
+
return 0;
|
134
|
+
|
135
|
+
}
|
136
|
+
|
137
|
+
int zmq::msg_t::move (msg_t &src_)
|
138
|
+
{
|
139
|
+
// Check the validity of the source.
|
140
|
+
if (unlikely (!src_.check ())) {
|
141
|
+
errno = EFAULT;
|
142
|
+
return -1;
|
143
|
+
}
|
144
|
+
|
145
|
+
int rc = close ();
|
146
|
+
if (unlikely (rc < 0))
|
147
|
+
return rc;
|
148
|
+
|
149
|
+
*this = src_;
|
150
|
+
|
151
|
+
rc = src_.init ();
|
152
|
+
if (unlikely (rc < 0))
|
153
|
+
return rc;
|
154
|
+
|
155
|
+
return 0;
|
156
|
+
}
|
157
|
+
|
158
|
+
int zmq::msg_t::copy (msg_t &src_)
|
159
|
+
{
|
160
|
+
// Check the validity of the source.
|
161
|
+
if (unlikely (!src_.check ())) {
|
162
|
+
errno = EFAULT;
|
163
|
+
return -1;
|
164
|
+
}
|
165
|
+
|
166
|
+
int rc = close ();
|
167
|
+
if (unlikely (rc < 0))
|
168
|
+
return rc;
|
169
|
+
|
170
|
+
if (src_.u.base.type == type_lmsg) {
|
171
|
+
|
172
|
+
// One reference is added to shared messages. Non-shared messages
|
173
|
+
// are turned into shared messages and reference count is set to 2.
|
174
|
+
if (src_.u.lmsg.flags & msg_t::shared)
|
175
|
+
src_.u.lmsg.content->refcnt.add (1);
|
176
|
+
else {
|
177
|
+
src_.u.lmsg.flags |= msg_t::shared;
|
178
|
+
src_.u.lmsg.content->refcnt.set (2);
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
*this = src_;
|
183
|
+
|
184
|
+
return 0;
|
185
|
+
|
186
|
+
}
|
187
|
+
|
188
|
+
void *zmq::msg_t::data ()
|
189
|
+
{
|
190
|
+
// Check the validity of the message.
|
191
|
+
zmq_assert (check ());
|
192
|
+
|
193
|
+
switch (u.base.type) {
|
194
|
+
case type_vsm:
|
195
|
+
return u.vsm.data;
|
196
|
+
case type_lmsg:
|
197
|
+
return u.lmsg.content->data;
|
198
|
+
default:
|
199
|
+
zmq_assert (false);
|
200
|
+
return NULL;
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
size_t zmq::msg_t::size ()
|
205
|
+
{
|
206
|
+
// Check the validity of the message.
|
207
|
+
zmq_assert (check ());
|
208
|
+
|
209
|
+
switch (u.base.type) {
|
210
|
+
case type_vsm:
|
211
|
+
return u.vsm.size;
|
212
|
+
case type_lmsg:
|
213
|
+
return u.lmsg.content->size;
|
214
|
+
default:
|
215
|
+
zmq_assert (false);
|
216
|
+
return 0;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
unsigned char zmq::msg_t::flags ()
|
221
|
+
{
|
222
|
+
return u.base.flags;
|
223
|
+
}
|
224
|
+
|
225
|
+
void zmq::msg_t::set_flags (unsigned char flags_)
|
226
|
+
{
|
227
|
+
u.base.flags |= flags_;
|
228
|
+
}
|
229
|
+
|
230
|
+
void zmq::msg_t::reset_flags (unsigned char flags_)
|
231
|
+
{
|
232
|
+
u.base.flags &= ~flags_;
|
233
|
+
}
|
234
|
+
|
235
|
+
bool zmq::msg_t::is_identity () const
|
236
|
+
{
|
237
|
+
return (u.base.flags & identity) == identity;
|
238
|
+
}
|
239
|
+
|
240
|
+
bool zmq::msg_t::is_delimiter ()
|
241
|
+
{
|
242
|
+
return u.base.type == type_delimiter;
|
243
|
+
}
|
244
|
+
|
245
|
+
bool zmq::msg_t::is_vsm ()
|
246
|
+
{
|
247
|
+
return u.base.type == type_vsm;
|
248
|
+
}
|
249
|
+
|
250
|
+
void zmq::msg_t::add_refs (int refs_)
|
251
|
+
{
|
252
|
+
zmq_assert (refs_ >= 0);
|
253
|
+
|
254
|
+
// No copies required.
|
255
|
+
if (!refs_)
|
256
|
+
return;
|
257
|
+
|
258
|
+
// VSMs and delimiters can be copied straight away. The only message type
|
259
|
+
// that needs special care are long messages.
|
260
|
+
if (u.base.type == type_lmsg) {
|
261
|
+
if (u.lmsg.flags & msg_t::shared)
|
262
|
+
u.lmsg.content->refcnt.add (refs_);
|
263
|
+
else {
|
264
|
+
u.lmsg.content->refcnt.set (refs_ + 1);
|
265
|
+
u.lmsg.flags |= msg_t::shared;
|
266
|
+
}
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
bool zmq::msg_t::rm_refs (int refs_)
|
271
|
+
{
|
272
|
+
zmq_assert (refs_ >= 0);
|
273
|
+
|
274
|
+
// No copies required.
|
275
|
+
if (!refs_)
|
276
|
+
return true;
|
277
|
+
|
278
|
+
// If there's only one reference close the message.
|
279
|
+
if (u.base.type != type_lmsg || !(u.lmsg.flags & msg_t::shared)) {
|
280
|
+
close ();
|
281
|
+
return false;
|
282
|
+
}
|
283
|
+
|
284
|
+
// The only message type that needs special care are long messages.
|
285
|
+
if (!u.lmsg.content->refcnt.sub (refs_)) {
|
286
|
+
// We used "placement new" operator to initialize the reference
|
287
|
+
// counter so we call the destructor explicitly now.
|
288
|
+
u.lmsg.content->refcnt.~atomic_counter_t ();
|
289
|
+
|
290
|
+
if (u.lmsg.content->ffn)
|
291
|
+
u.lmsg.content->ffn (u.lmsg.content->data, u.lmsg.content->hint);
|
292
|
+
free (u.lmsg.content);
|
293
|
+
|
294
|
+
return false;
|
295
|
+
}
|
296
|
+
|
297
|
+
return true;
|
298
|
+
}
|
299
|
+
|
@@ -0,0 +1,148 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2011 VMware, Inc.
|
5
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
6
|
+
|
7
|
+
This file is part of 0MQ.
|
8
|
+
|
9
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
10
|
+
the terms of the GNU Lesser General Public License as published by
|
11
|
+
the Free Software Foundation; either version 3 of the License, or
|
12
|
+
(at your option) any later version.
|
13
|
+
|
14
|
+
0MQ is distributed in the hope that it will be useful,
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
17
|
+
GNU Lesser General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU Lesser General Public License
|
20
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#ifndef __ZMQ_MSG_HPP_INCLUDE__
|
24
|
+
#define __ZMQ_MSG_HPP_INCLUDE__
|
25
|
+
|
26
|
+
#include <stddef.h>
|
27
|
+
#include <stdio.h>
|
28
|
+
|
29
|
+
#include "config.hpp"
|
30
|
+
#include "atomic_counter.hpp"
|
31
|
+
|
32
|
+
// Signature for free function to deallocate the message content.
|
33
|
+
// Note that it has to be declared as "C" so that it is the same as
|
34
|
+
// zmq_free_fn defined in zmq.h.
|
35
|
+
extern "C"
|
36
|
+
{
|
37
|
+
typedef void (msg_free_fn) (void *data, void *hint);
|
38
|
+
}
|
39
|
+
|
40
|
+
namespace zmq
|
41
|
+
{
|
42
|
+
|
43
|
+
// Note that this structure needs to be explicitly constructed
|
44
|
+
// (init functions) and destructed (close function).
|
45
|
+
|
46
|
+
class msg_t
|
47
|
+
{
|
48
|
+
public:
|
49
|
+
|
50
|
+
// Mesage flags.
|
51
|
+
enum
|
52
|
+
{
|
53
|
+
more = 1,
|
54
|
+
identity = 64,
|
55
|
+
shared = 128
|
56
|
+
};
|
57
|
+
|
58
|
+
bool check ();
|
59
|
+
int init ();
|
60
|
+
int init_size (size_t size_);
|
61
|
+
int init_data (void *data_, size_t size_, msg_free_fn *ffn_,
|
62
|
+
void *hint_);
|
63
|
+
int init_delimiter ();
|
64
|
+
int close ();
|
65
|
+
int move (msg_t &src_);
|
66
|
+
int copy (msg_t &src_);
|
67
|
+
void *data ();
|
68
|
+
size_t size ();
|
69
|
+
unsigned char flags ();
|
70
|
+
void set_flags (unsigned char flags_);
|
71
|
+
void reset_flags (unsigned char flags_);
|
72
|
+
bool is_identity () const;
|
73
|
+
bool is_delimiter ();
|
74
|
+
bool is_vsm ();
|
75
|
+
|
76
|
+
// After calling this function you can copy the message in POD-style
|
77
|
+
// refs_ times. No need to call copy.
|
78
|
+
void add_refs (int refs_);
|
79
|
+
|
80
|
+
// Removes references previously added by add_refs. If the number of
|
81
|
+
// references drops to 0, the message is closed and false is returned.
|
82
|
+
bool rm_refs (int refs_);
|
83
|
+
|
84
|
+
private:
|
85
|
+
|
86
|
+
// Size in bytes of the largest message that is still copied around
|
87
|
+
// rather than being reference-counted.
|
88
|
+
enum {max_vsm_size = 29};
|
89
|
+
|
90
|
+
// Shared message buffer. Message data are either allocated in one
|
91
|
+
// continuous block along with this structure - thus avoiding one
|
92
|
+
// malloc/free pair or they are stored in used-supplied memory.
|
93
|
+
// In the latter case, ffn member stores pointer to the function to be
|
94
|
+
// used to deallocate the data. If the buffer is actually shared (there
|
95
|
+
// are at least 2 references to it) refcount member contains number of
|
96
|
+
// references.
|
97
|
+
struct content_t
|
98
|
+
{
|
99
|
+
void *data;
|
100
|
+
size_t size;
|
101
|
+
msg_free_fn *ffn;
|
102
|
+
void *hint;
|
103
|
+
zmq::atomic_counter_t refcnt;
|
104
|
+
};
|
105
|
+
|
106
|
+
// Different message types.
|
107
|
+
enum type_t
|
108
|
+
{
|
109
|
+
type_min = 101,
|
110
|
+
type_vsm = 101,
|
111
|
+
type_lmsg = 102,
|
112
|
+
type_delimiter = 103,
|
113
|
+
type_max = 103
|
114
|
+
};
|
115
|
+
|
116
|
+
// Note that fields shared between different message types are not
|
117
|
+
// moved to tha parent class (msg_t). This way we ger tighter packing
|
118
|
+
// of the data. Shared fields can be accessed via 'base' member of
|
119
|
+
// the union.
|
120
|
+
union {
|
121
|
+
struct {
|
122
|
+
unsigned char unused [max_vsm_size + 1];
|
123
|
+
unsigned char type;
|
124
|
+
unsigned char flags;
|
125
|
+
} base;
|
126
|
+
struct {
|
127
|
+
unsigned char data [max_vsm_size];
|
128
|
+
unsigned char size;
|
129
|
+
unsigned char type;
|
130
|
+
unsigned char flags;
|
131
|
+
} vsm;
|
132
|
+
struct {
|
133
|
+
content_t *content;
|
134
|
+
unsigned char unused [max_vsm_size + 1 - sizeof (content_t*)];
|
135
|
+
unsigned char type;
|
136
|
+
unsigned char flags;
|
137
|
+
} lmsg;
|
138
|
+
struct {
|
139
|
+
unsigned char unused [max_vsm_size + 1];
|
140
|
+
unsigned char type;
|
141
|
+
unsigned char flags;
|
142
|
+
} delimiter;
|
143
|
+
} u;
|
144
|
+
};
|
145
|
+
|
146
|
+
}
|
147
|
+
|
148
|
+
#endif
|