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,105 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 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_DIST_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_DIST_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#include <vector>
|
25
|
+
|
26
|
+
#include "array.hpp"
|
27
|
+
#include "pipe.hpp"
|
28
|
+
|
29
|
+
namespace zmq
|
30
|
+
{
|
31
|
+
|
32
|
+
class pipe_t;
|
33
|
+
class msg_t;
|
34
|
+
|
35
|
+
// Class manages a set of outbound pipes. It sends each messages to
|
36
|
+
// each of them.
|
37
|
+
class dist_t
|
38
|
+
{
|
39
|
+
public:
|
40
|
+
|
41
|
+
dist_t ();
|
42
|
+
~dist_t ();
|
43
|
+
|
44
|
+
// Adds the pipe to the distributor object.
|
45
|
+
void attach (zmq::pipe_t *pipe_);
|
46
|
+
|
47
|
+
// Activates pipe that have previously reached high watermark.
|
48
|
+
void activated (zmq::pipe_t *pipe_);
|
49
|
+
|
50
|
+
// Mark the pipe as matching. Subsequent call to send_to_matching
|
51
|
+
// will send message also to this pipe.
|
52
|
+
void match (zmq::pipe_t *pipe_);
|
53
|
+
|
54
|
+
// Mark all pipes as non-matching.
|
55
|
+
void unmatch ();
|
56
|
+
|
57
|
+
// Removes the pipe from the distributor object.
|
58
|
+
void terminated (zmq::pipe_t *pipe_);
|
59
|
+
|
60
|
+
// Send the message to the matching outbound pipes.
|
61
|
+
int send_to_matching (zmq::msg_t *msg_, int flags_);
|
62
|
+
|
63
|
+
// Send the message to all the outbound pipes.
|
64
|
+
int send_to_all (zmq::msg_t *msg_, int flags_);
|
65
|
+
|
66
|
+
bool has_out ();
|
67
|
+
|
68
|
+
private:
|
69
|
+
|
70
|
+
// Write the message to the pipe. Make the pipe inactive if writing
|
71
|
+
// fails. In such a case false is returned.
|
72
|
+
bool write (zmq::pipe_t *pipe_, zmq::msg_t *msg_);
|
73
|
+
|
74
|
+
// Put the message to all active pipes.
|
75
|
+
void distribute (zmq::msg_t *msg_, int flags_);
|
76
|
+
|
77
|
+
// List of outbound pipes.
|
78
|
+
typedef array_t <zmq::pipe_t, 2> pipes_t;
|
79
|
+
pipes_t pipes;
|
80
|
+
|
81
|
+
// Number of all the pipes to send the next message to.
|
82
|
+
pipes_t::size_type matching;
|
83
|
+
|
84
|
+
// Number of active pipes. All the active pipes are located at the
|
85
|
+
// beginning of the pipes array. These are the pipes the messages
|
86
|
+
// can be sent to at the moment.
|
87
|
+
pipes_t::size_type active;
|
88
|
+
|
89
|
+
// Number of pipes eligible for sending messages to. This includes all
|
90
|
+
// the active pipes plus all the pipes that we can in theory send
|
91
|
+
// messages to (the HWM is not yet reached), but sending a message
|
92
|
+
// to them would result in partial message being delivered, ie. message
|
93
|
+
// with initial parts missing.
|
94
|
+
pipes_t::size_type eligible;
|
95
|
+
|
96
|
+
// True if last we are in the middle of a multipart message.
|
97
|
+
bool more;
|
98
|
+
|
99
|
+
dist_t (const dist_t&);
|
100
|
+
const dist_t &operator = (const dist_t&);
|
101
|
+
};
|
102
|
+
|
103
|
+
}
|
104
|
+
|
105
|
+
#endif
|
@@ -0,0 +1,102 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2007-2012 iMatix Corporation
|
3
|
+
Copyright (c) 2009-2011 250bpm s.r.o.
|
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
|
+
#include "encoder.hpp"
|
24
|
+
#include "i_msg_source.hpp"
|
25
|
+
#include "likely.hpp"
|
26
|
+
#include "wire.hpp"
|
27
|
+
|
28
|
+
zmq::encoder_t::encoder_t (size_t bufsize_) :
|
29
|
+
encoder_base_t <encoder_t> (bufsize_),
|
30
|
+
msg_source (NULL)
|
31
|
+
{
|
32
|
+
int rc = in_progress.init ();
|
33
|
+
errno_assert (rc == 0);
|
34
|
+
|
35
|
+
// Write 0 bytes to the batch and go to message_ready state.
|
36
|
+
next_step (NULL, 0, &encoder_t::message_ready, true);
|
37
|
+
}
|
38
|
+
|
39
|
+
zmq::encoder_t::~encoder_t ()
|
40
|
+
{
|
41
|
+
int rc = in_progress.close ();
|
42
|
+
errno_assert (rc == 0);
|
43
|
+
}
|
44
|
+
|
45
|
+
void zmq::encoder_t::set_msg_source (i_msg_source *msg_source_)
|
46
|
+
{
|
47
|
+
msg_source = msg_source_;
|
48
|
+
}
|
49
|
+
|
50
|
+
bool zmq::encoder_t::size_ready ()
|
51
|
+
{
|
52
|
+
// Write message body into the buffer.
|
53
|
+
next_step (in_progress.data (), in_progress.size (),
|
54
|
+
&encoder_t::message_ready, !(in_progress.flags () & msg_t::more));
|
55
|
+
return true;
|
56
|
+
}
|
57
|
+
|
58
|
+
bool zmq::encoder_t::message_ready ()
|
59
|
+
{
|
60
|
+
// Destroy content of the old message.
|
61
|
+
int rc = in_progress.close ();
|
62
|
+
errno_assert (rc == 0);
|
63
|
+
|
64
|
+
// Read new message. If there is none, return false.
|
65
|
+
// Note that new state is set only if write is successful. That way
|
66
|
+
// unsuccessful write will cause retry on the next state machine
|
67
|
+
// invocation.
|
68
|
+
if (unlikely (!msg_source)) {
|
69
|
+
rc = in_progress.init ();
|
70
|
+
errno_assert (rc == 0);
|
71
|
+
return false;
|
72
|
+
}
|
73
|
+
rc = msg_source->pull_msg (&in_progress);
|
74
|
+
if (unlikely (rc != 0)) {
|
75
|
+
errno_assert (errno == EAGAIN);
|
76
|
+
rc = in_progress.init ();
|
77
|
+
errno_assert (rc == 0);
|
78
|
+
return false;
|
79
|
+
}
|
80
|
+
|
81
|
+
// Get the message size.
|
82
|
+
size_t size = in_progress.size ();
|
83
|
+
|
84
|
+
// Account for the 'flags' byte.
|
85
|
+
size++;
|
86
|
+
|
87
|
+
// For messages less than 255 bytes long, write one byte of message size.
|
88
|
+
// For longer messages write 0xff escape character followed by 8-byte
|
89
|
+
// message size. In both cases 'flags' field follows.
|
90
|
+
if (size < 255) {
|
91
|
+
tmpbuf [0] = (unsigned char) size;
|
92
|
+
tmpbuf [1] = (in_progress.flags () & msg_t::more);
|
93
|
+
next_step (tmpbuf, 2, &encoder_t::size_ready, false);
|
94
|
+
}
|
95
|
+
else {
|
96
|
+
tmpbuf [0] = 0xff;
|
97
|
+
put_uint64 (tmpbuf + 1, size);
|
98
|
+
tmpbuf [9] = (in_progress.flags () & msg_t::more);
|
99
|
+
next_step (tmpbuf, 10, &encoder_t::size_ready, false);
|
100
|
+
}
|
101
|
+
return true;
|
102
|
+
}
|
@@ -0,0 +1,200 @@
|
|
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_ENCODER_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_ENCODER_HPP_INCLUDED__
|
24
|
+
|
25
|
+
#if defined(_MSC_VER)
|
26
|
+
#ifndef NOMINMAX
|
27
|
+
#define NOMINMAX
|
28
|
+
#endif
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#include <stddef.h>
|
32
|
+
#include <string.h>
|
33
|
+
#include <stdlib.h>
|
34
|
+
#include <algorithm>
|
35
|
+
|
36
|
+
#include "err.hpp"
|
37
|
+
#include "msg.hpp"
|
38
|
+
#include "i_encoder.hpp"
|
39
|
+
|
40
|
+
namespace zmq
|
41
|
+
{
|
42
|
+
|
43
|
+
class i_msg_source;
|
44
|
+
|
45
|
+
// Helper base class for encoders. It implements the state machine that
|
46
|
+
// fills the outgoing buffer. Derived classes should implement individual
|
47
|
+
// state machine actions.
|
48
|
+
|
49
|
+
template <typename T> class encoder_base_t : public i_encoder
|
50
|
+
{
|
51
|
+
public:
|
52
|
+
|
53
|
+
inline encoder_base_t (size_t bufsize_) :
|
54
|
+
bufsize (bufsize_)
|
55
|
+
{
|
56
|
+
buf = (unsigned char*) malloc (bufsize_);
|
57
|
+
alloc_assert (buf);
|
58
|
+
}
|
59
|
+
|
60
|
+
// The destructor doesn't have to be virtual. It is made virtual
|
61
|
+
// just to keep ICC and code checking tools from complaining.
|
62
|
+
inline virtual ~encoder_base_t ()
|
63
|
+
{
|
64
|
+
free (buf);
|
65
|
+
}
|
66
|
+
|
67
|
+
// The function returns a batch of binary data. The data
|
68
|
+
// are filled to a supplied buffer. If no buffer is supplied (data_
|
69
|
+
// points to NULL) decoder object will provide buffer of its own.
|
70
|
+
// If offset is not NULL, it is filled by offset of the first message
|
71
|
+
// in the batch.If there's no beginning of a message in the batch,
|
72
|
+
// offset is set to -1.
|
73
|
+
inline void get_data (unsigned char **data_, size_t *size_,
|
74
|
+
int *offset_ = NULL)
|
75
|
+
{
|
76
|
+
unsigned char *buffer = !*data_ ? buf : *data_;
|
77
|
+
size_t buffersize = !*data_ ? bufsize : *size_;
|
78
|
+
|
79
|
+
if (offset_)
|
80
|
+
*offset_ = -1;
|
81
|
+
|
82
|
+
size_t pos = 0;
|
83
|
+
while (pos < buffersize) {
|
84
|
+
|
85
|
+
// If there are no more data to return, run the state machine.
|
86
|
+
// If there are still no data, return what we already have
|
87
|
+
// in the buffer.
|
88
|
+
if (!to_write) {
|
89
|
+
// If we are to encode the beginning of a new message,
|
90
|
+
// adjust the message offset.
|
91
|
+
if (beginning)
|
92
|
+
if (offset_ && *offset_ == -1)
|
93
|
+
*offset_ = static_cast <int> (pos);
|
94
|
+
|
95
|
+
if (!(static_cast <T*> (this)->*next) ())
|
96
|
+
break;
|
97
|
+
}
|
98
|
+
|
99
|
+
// If there are no data in the buffer yet and we are able to
|
100
|
+
// fill whole buffer in a single go, let's use zero-copy.
|
101
|
+
// There's no disadvantage to it as we cannot stuck multiple
|
102
|
+
// messages into the buffer anyway. Note that subsequent
|
103
|
+
// write(s) are non-blocking, thus each single write writes
|
104
|
+
// at most SO_SNDBUF bytes at once not depending on how large
|
105
|
+
// is the chunk returned from here.
|
106
|
+
// As a consequence, large messages being sent won't block
|
107
|
+
// other engines running in the same I/O thread for excessive
|
108
|
+
// amounts of time.
|
109
|
+
if (!pos && !*data_ && to_write >= buffersize) {
|
110
|
+
*data_ = write_pos;
|
111
|
+
*size_ = to_write;
|
112
|
+
write_pos = NULL;
|
113
|
+
to_write = 0;
|
114
|
+
return;
|
115
|
+
}
|
116
|
+
|
117
|
+
// Copy data to the buffer. If the buffer is full, return.
|
118
|
+
size_t to_copy = std::min (to_write, buffersize - pos);
|
119
|
+
memcpy (buffer + pos, write_pos, to_copy);
|
120
|
+
pos += to_copy;
|
121
|
+
write_pos += to_copy;
|
122
|
+
to_write -= to_copy;
|
123
|
+
}
|
124
|
+
|
125
|
+
*data_ = buffer;
|
126
|
+
*size_ = pos;
|
127
|
+
}
|
128
|
+
|
129
|
+
inline bool has_data ()
|
130
|
+
{
|
131
|
+
return to_write > 0;
|
132
|
+
}
|
133
|
+
|
134
|
+
protected:
|
135
|
+
|
136
|
+
// Prototype of state machine action.
|
137
|
+
typedef bool (T::*step_t) ();
|
138
|
+
|
139
|
+
// This function should be called from derived class to write the data
|
140
|
+
// to the buffer and schedule next state machine action. Set beginning
|
141
|
+
// to true when you are writing first byte of a message.
|
142
|
+
inline void next_step (void *write_pos_, size_t to_write_,
|
143
|
+
step_t next_, bool beginning_)
|
144
|
+
{
|
145
|
+
write_pos = (unsigned char*) write_pos_;
|
146
|
+
to_write = to_write_;
|
147
|
+
next = next_;
|
148
|
+
beginning = beginning_;
|
149
|
+
}
|
150
|
+
|
151
|
+
private:
|
152
|
+
|
153
|
+
// Where to get the data to write from.
|
154
|
+
unsigned char *write_pos;
|
155
|
+
|
156
|
+
// How much data to write before next step should be executed.
|
157
|
+
size_t to_write;
|
158
|
+
|
159
|
+
// Next step. If set to NULL, it means that associated data stream
|
160
|
+
// is dead.
|
161
|
+
step_t next;
|
162
|
+
|
163
|
+
// If true, first byte of the message is being written.
|
164
|
+
bool beginning;
|
165
|
+
|
166
|
+
// The buffer for encoded data.
|
167
|
+
size_t bufsize;
|
168
|
+
unsigned char *buf;
|
169
|
+
|
170
|
+
encoder_base_t (const encoder_base_t&);
|
171
|
+
void operator = (const encoder_base_t&);
|
172
|
+
};
|
173
|
+
|
174
|
+
// Encoder for 0MQ framing protocol. Converts messages into data batches.
|
175
|
+
|
176
|
+
class encoder_t : public encoder_base_t <encoder_t>
|
177
|
+
{
|
178
|
+
public:
|
179
|
+
|
180
|
+
encoder_t (size_t bufsize_);
|
181
|
+
~encoder_t ();
|
182
|
+
|
183
|
+
void set_msg_source (i_msg_source *msg_source_);
|
184
|
+
|
185
|
+
private:
|
186
|
+
|
187
|
+
bool size_ready ();
|
188
|
+
bool message_ready ();
|
189
|
+
|
190
|
+
i_msg_source *msg_source;
|
191
|
+
msg_t in_progress;
|
192
|
+
unsigned char tmpbuf [10];
|
193
|
+
|
194
|
+
encoder_t (const encoder_t&);
|
195
|
+
const encoder_t &operator = (const encoder_t&);
|
196
|
+
};
|
197
|
+
}
|
198
|
+
|
199
|
+
#endif
|
200
|
+
|
@@ -0,0 +1,178 @@
|
|
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
|
+
#include "epoll.hpp"
|
23
|
+
#if defined ZMQ_USE_EPOLL
|
24
|
+
|
25
|
+
#include <sys/epoll.h>
|
26
|
+
#include <stdlib.h>
|
27
|
+
#include <string.h>
|
28
|
+
#include <unistd.h>
|
29
|
+
#include <algorithm>
|
30
|
+
#include <new>
|
31
|
+
|
32
|
+
#include "epoll.hpp"
|
33
|
+
#include "err.hpp"
|
34
|
+
#include "config.hpp"
|
35
|
+
#include "i_poll_events.hpp"
|
36
|
+
|
37
|
+
zmq::epoll_t::epoll_t () :
|
38
|
+
stopping (false)
|
39
|
+
{
|
40
|
+
epoll_fd = epoll_create (1);
|
41
|
+
errno_assert (epoll_fd != -1);
|
42
|
+
}
|
43
|
+
|
44
|
+
zmq::epoll_t::~epoll_t ()
|
45
|
+
{
|
46
|
+
// Wait till the worker thread exits.
|
47
|
+
worker.stop ();
|
48
|
+
|
49
|
+
close (epoll_fd);
|
50
|
+
for (retired_t::iterator it = retired.begin (); it != retired.end (); ++it)
|
51
|
+
delete *it;
|
52
|
+
}
|
53
|
+
|
54
|
+
zmq::epoll_t::handle_t zmq::epoll_t::add_fd (fd_t fd_, i_poll_events *events_)
|
55
|
+
{
|
56
|
+
poll_entry_t *pe = new (std::nothrow) poll_entry_t;
|
57
|
+
alloc_assert (pe);
|
58
|
+
|
59
|
+
// The memset is not actually needed. It's here to prevent debugging
|
60
|
+
// tools to complain about using uninitialised memory.
|
61
|
+
memset (pe, 0, sizeof (poll_entry_t));
|
62
|
+
|
63
|
+
pe->fd = fd_;
|
64
|
+
pe->ev.events = 0;
|
65
|
+
pe->ev.data.ptr = pe;
|
66
|
+
pe->events = events_;
|
67
|
+
|
68
|
+
int rc = epoll_ctl (epoll_fd, EPOLL_CTL_ADD, fd_, &pe->ev);
|
69
|
+
errno_assert (rc != -1);
|
70
|
+
|
71
|
+
// Increase the load metric of the thread.
|
72
|
+
adjust_load (1);
|
73
|
+
|
74
|
+
return pe;
|
75
|
+
}
|
76
|
+
|
77
|
+
void zmq::epoll_t::rm_fd (handle_t handle_)
|
78
|
+
{
|
79
|
+
poll_entry_t *pe = (poll_entry_t*) handle_;
|
80
|
+
int rc = epoll_ctl (epoll_fd, EPOLL_CTL_DEL, pe->fd, &pe->ev);
|
81
|
+
errno_assert (rc != -1);
|
82
|
+
pe->fd = retired_fd;
|
83
|
+
retired.push_back (pe);
|
84
|
+
|
85
|
+
// Decrease the load metric of the thread.
|
86
|
+
adjust_load (-1);
|
87
|
+
}
|
88
|
+
|
89
|
+
void zmq::epoll_t::set_pollin (handle_t handle_)
|
90
|
+
{
|
91
|
+
poll_entry_t *pe = (poll_entry_t*) handle_;
|
92
|
+
pe->ev.events |= EPOLLIN;
|
93
|
+
int rc = epoll_ctl (epoll_fd, EPOLL_CTL_MOD, pe->fd, &pe->ev);
|
94
|
+
errno_assert (rc != -1);
|
95
|
+
}
|
96
|
+
|
97
|
+
void zmq::epoll_t::reset_pollin (handle_t handle_)
|
98
|
+
{
|
99
|
+
poll_entry_t *pe = (poll_entry_t*) handle_;
|
100
|
+
pe->ev.events &= ~((short) EPOLLIN);
|
101
|
+
int rc = epoll_ctl (epoll_fd, EPOLL_CTL_MOD, pe->fd, &pe->ev);
|
102
|
+
errno_assert (rc != -1);
|
103
|
+
}
|
104
|
+
|
105
|
+
void zmq::epoll_t::set_pollout (handle_t handle_)
|
106
|
+
{
|
107
|
+
poll_entry_t *pe = (poll_entry_t*) handle_;
|
108
|
+
pe->ev.events |= EPOLLOUT;
|
109
|
+
int rc = epoll_ctl (epoll_fd, EPOLL_CTL_MOD, pe->fd, &pe->ev);
|
110
|
+
errno_assert (rc != -1);
|
111
|
+
}
|
112
|
+
|
113
|
+
void zmq::epoll_t::reset_pollout (handle_t handle_)
|
114
|
+
{
|
115
|
+
poll_entry_t *pe = (poll_entry_t*) handle_;
|
116
|
+
pe->ev.events &= ~((short) EPOLLOUT);
|
117
|
+
int rc = epoll_ctl (epoll_fd, EPOLL_CTL_MOD, pe->fd, &pe->ev);
|
118
|
+
errno_assert (rc != -1);
|
119
|
+
}
|
120
|
+
|
121
|
+
void zmq::epoll_t::start ()
|
122
|
+
{
|
123
|
+
worker.start (worker_routine, this);
|
124
|
+
}
|
125
|
+
|
126
|
+
void zmq::epoll_t::stop ()
|
127
|
+
{
|
128
|
+
stopping = true;
|
129
|
+
}
|
130
|
+
|
131
|
+
void zmq::epoll_t::loop ()
|
132
|
+
{
|
133
|
+
epoll_event ev_buf [max_io_events];
|
134
|
+
|
135
|
+
while (!stopping) {
|
136
|
+
|
137
|
+
// Execute any due timers.
|
138
|
+
int timeout = (int) execute_timers ();
|
139
|
+
|
140
|
+
// Wait for events.
|
141
|
+
int n = epoll_wait (epoll_fd, &ev_buf [0], max_io_events,
|
142
|
+
timeout ? timeout : -1);
|
143
|
+
if (n == -1) {
|
144
|
+
errno_assert (errno == EINTR);
|
145
|
+
continue;
|
146
|
+
}
|
147
|
+
|
148
|
+
for (int i = 0; i < n; i ++) {
|
149
|
+
poll_entry_t *pe = ((poll_entry_t*) ev_buf [i].data.ptr);
|
150
|
+
|
151
|
+
if (pe->fd == retired_fd)
|
152
|
+
continue;
|
153
|
+
if (ev_buf [i].events & (EPOLLERR | EPOLLHUP))
|
154
|
+
pe->events->in_event ();
|
155
|
+
if (pe->fd == retired_fd)
|
156
|
+
continue;
|
157
|
+
if (ev_buf [i].events & EPOLLOUT)
|
158
|
+
pe->events->out_event ();
|
159
|
+
if (pe->fd == retired_fd)
|
160
|
+
continue;
|
161
|
+
if (ev_buf [i].events & EPOLLIN)
|
162
|
+
pe->events->in_event ();
|
163
|
+
}
|
164
|
+
|
165
|
+
// Destroy retired event sources.
|
166
|
+
for (retired_t::iterator it = retired.begin (); it != retired.end ();
|
167
|
+
++it)
|
168
|
+
delete *it;
|
169
|
+
retired.clear ();
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
void zmq::epoll_t::worker_routine (void *arg_)
|
174
|
+
{
|
175
|
+
((epoll_t*) arg_)->loop ();
|
176
|
+
}
|
177
|
+
|
178
|
+
#endif
|