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,101 @@
|
|
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_EPOLL_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_EPOLL_HPP_INCLUDED__
|
24
|
+
|
25
|
+
// poller.hpp decides which polling mechanism to use.
|
26
|
+
#include "poller.hpp"
|
27
|
+
#if defined ZMQ_USE_EPOLL
|
28
|
+
|
29
|
+
#include <vector>
|
30
|
+
#include <sys/epoll.h>
|
31
|
+
|
32
|
+
#include "fd.hpp"
|
33
|
+
#include "thread.hpp"
|
34
|
+
#include "poller_base.hpp"
|
35
|
+
|
36
|
+
namespace zmq
|
37
|
+
{
|
38
|
+
|
39
|
+
struct i_poll_events;
|
40
|
+
|
41
|
+
// This class implements socket polling mechanism using the Linux-specific
|
42
|
+
// epoll mechanism.
|
43
|
+
|
44
|
+
class epoll_t : public poller_base_t
|
45
|
+
{
|
46
|
+
public:
|
47
|
+
|
48
|
+
typedef void* handle_t;
|
49
|
+
|
50
|
+
epoll_t ();
|
51
|
+
~epoll_t ();
|
52
|
+
|
53
|
+
// "poller" concept.
|
54
|
+
handle_t add_fd (fd_t fd_, zmq::i_poll_events *events_);
|
55
|
+
void rm_fd (handle_t handle_);
|
56
|
+
void set_pollin (handle_t handle_);
|
57
|
+
void reset_pollin (handle_t handle_);
|
58
|
+
void set_pollout (handle_t handle_);
|
59
|
+
void reset_pollout (handle_t handle_);
|
60
|
+
void start ();
|
61
|
+
void stop ();
|
62
|
+
|
63
|
+
private:
|
64
|
+
|
65
|
+
// Main worker thread routine.
|
66
|
+
static void worker_routine (void *arg_);
|
67
|
+
|
68
|
+
// Main event loop.
|
69
|
+
void loop ();
|
70
|
+
|
71
|
+
// Main epoll file descriptor
|
72
|
+
fd_t epoll_fd;
|
73
|
+
|
74
|
+
struct poll_entry_t
|
75
|
+
{
|
76
|
+
fd_t fd;
|
77
|
+
epoll_event ev;
|
78
|
+
zmq::i_poll_events *events;
|
79
|
+
};
|
80
|
+
|
81
|
+
// List of retired event sources.
|
82
|
+
typedef std::vector <poll_entry_t*> retired_t;
|
83
|
+
retired_t retired;
|
84
|
+
|
85
|
+
// If true, thread is in the process of shutting down.
|
86
|
+
bool stopping;
|
87
|
+
|
88
|
+
// Handle of the physical thread doing the I/O work.
|
89
|
+
thread_t worker;
|
90
|
+
|
91
|
+
epoll_t (const epoll_t&);
|
92
|
+
const epoll_t &operator = (const epoll_t&);
|
93
|
+
};
|
94
|
+
|
95
|
+
typedef epoll_t poller_t;
|
96
|
+
|
97
|
+
}
|
98
|
+
|
99
|
+
#endif
|
100
|
+
|
101
|
+
#endif
|
@@ -0,0 +1,291 @@
|
|
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 "err.hpp"
|
23
|
+
#include "platform.hpp"
|
24
|
+
|
25
|
+
const char *zmq::errno_to_string (int errno_)
|
26
|
+
{
|
27
|
+
switch (errno_) {
|
28
|
+
#if defined ZMQ_HAVE_WINDOWS
|
29
|
+
case ENOTSUP:
|
30
|
+
return "Not supported";
|
31
|
+
case EPROTONOSUPPORT:
|
32
|
+
return "Protocol not supported";
|
33
|
+
case ENOBUFS:
|
34
|
+
return "No buffer space available";
|
35
|
+
case ENETDOWN:
|
36
|
+
return "Network is down";
|
37
|
+
case EADDRINUSE:
|
38
|
+
return "Address in use";
|
39
|
+
case EADDRNOTAVAIL:
|
40
|
+
return "Address not available";
|
41
|
+
case ECONNREFUSED:
|
42
|
+
return "Connection refused";
|
43
|
+
case EINPROGRESS:
|
44
|
+
return "Operation in progress";
|
45
|
+
#endif
|
46
|
+
case EFSM:
|
47
|
+
return "Operation cannot be accomplished in current state";
|
48
|
+
case ENOCOMPATPROTO:
|
49
|
+
return "The protocol is not compatible with the socket type";
|
50
|
+
case ETERM:
|
51
|
+
return "Context was terminated";
|
52
|
+
case EMTHREAD:
|
53
|
+
return "No thread available";
|
54
|
+
default:
|
55
|
+
#if defined _MSC_VER
|
56
|
+
#pragma warning (push)
|
57
|
+
#pragma warning (disable:4996)
|
58
|
+
#endif
|
59
|
+
return strerror (errno_);
|
60
|
+
#if defined _MSC_VER
|
61
|
+
#pragma warning (pop)
|
62
|
+
#endif
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
void zmq::zmq_abort(const char *errmsg_)
|
67
|
+
{
|
68
|
+
#if defined ZMQ_HAVE_WINDOWS
|
69
|
+
|
70
|
+
// Raise STATUS_FATAL_APP_EXIT.
|
71
|
+
ULONG_PTR extra_info [1];
|
72
|
+
extra_info [0] = (ULONG_PTR) errmsg_;
|
73
|
+
RaiseException (0x40000015, EXCEPTION_NONCONTINUABLE, 1, extra_info);
|
74
|
+
#else
|
75
|
+
(void)errmsg_;
|
76
|
+
abort ();
|
77
|
+
#endif
|
78
|
+
}
|
79
|
+
|
80
|
+
#ifdef ZMQ_HAVE_WINDOWS
|
81
|
+
|
82
|
+
const char *zmq::wsa_error()
|
83
|
+
{
|
84
|
+
int no = WSAGetLastError ();
|
85
|
+
// TODO: This is not a generic way to handle this...
|
86
|
+
if (no == WSAEWOULDBLOCK)
|
87
|
+
return NULL;
|
88
|
+
|
89
|
+
return wsa_error_no (no);
|
90
|
+
}
|
91
|
+
|
92
|
+
const char *zmq::wsa_error_no (int no_)
|
93
|
+
{
|
94
|
+
// TODO: It seems that list of Windows socket errors is longer than this.
|
95
|
+
// Investigate whether there's a way to convert it into the string
|
96
|
+
// automatically (wsaError->HRESULT->string?).
|
97
|
+
return
|
98
|
+
(no_ == WSABASEERR) ?
|
99
|
+
"No Error" :
|
100
|
+
(no_ == WSAEINTR) ?
|
101
|
+
"Interrupted system call" :
|
102
|
+
(no_ == WSAEBADF) ?
|
103
|
+
"Bad file number" :
|
104
|
+
(no_ == WSAEACCES) ?
|
105
|
+
"Permission denied" :
|
106
|
+
(no_ == WSAEFAULT) ?
|
107
|
+
"Bad address" :
|
108
|
+
(no_ == WSAEINVAL) ?
|
109
|
+
"Invalid argument" :
|
110
|
+
(no_ == WSAEMFILE) ?
|
111
|
+
"Too many open files" :
|
112
|
+
(no_ == WSAEWOULDBLOCK) ?
|
113
|
+
"Operation would block" :
|
114
|
+
(no_ == WSAEINPROGRESS) ?
|
115
|
+
"Operation now in progress" :
|
116
|
+
(no_ == WSAEALREADY) ?
|
117
|
+
"Operation already in progress" :
|
118
|
+
(no_ == WSAENOTSOCK) ?
|
119
|
+
"Socket operation on non-socket" :
|
120
|
+
(no_ == WSAEDESTADDRREQ) ?
|
121
|
+
"Destination address required" :
|
122
|
+
(no_ == WSAEMSGSIZE) ?
|
123
|
+
"Message too long" :
|
124
|
+
(no_ == WSAEPROTOTYPE) ?
|
125
|
+
"Protocol wrong type for socket" :
|
126
|
+
(no_ == WSAENOPROTOOPT) ?
|
127
|
+
"Bad protocol option" :
|
128
|
+
(no_ == WSAEPROTONOSUPPORT) ?
|
129
|
+
"Protocol not supported" :
|
130
|
+
(no_ == WSAESOCKTNOSUPPORT) ?
|
131
|
+
"Socket type not supported" :
|
132
|
+
(no_ == WSAEOPNOTSUPP) ?
|
133
|
+
"Operation not supported on socket" :
|
134
|
+
(no_ == WSAEPFNOSUPPORT) ?
|
135
|
+
"Protocol family not supported" :
|
136
|
+
(no_ == WSAEAFNOSUPPORT) ?
|
137
|
+
"Address family not supported by protocol family" :
|
138
|
+
(no_ == WSAEADDRINUSE) ?
|
139
|
+
"Address already in use" :
|
140
|
+
(no_ == WSAEADDRNOTAVAIL) ?
|
141
|
+
"Can't assign requested address" :
|
142
|
+
(no_ == WSAENETDOWN) ?
|
143
|
+
"Network is down" :
|
144
|
+
(no_ == WSAENETUNREACH) ?
|
145
|
+
"Network is unreachable" :
|
146
|
+
(no_ == WSAENETRESET) ?
|
147
|
+
"Net dropped connection or reset" :
|
148
|
+
(no_ == WSAECONNABORTED) ?
|
149
|
+
"Software caused connection abort" :
|
150
|
+
(no_ == WSAECONNRESET) ?
|
151
|
+
"Connection reset by peer" :
|
152
|
+
(no_ == WSAENOBUFS) ?
|
153
|
+
"No buffer space available" :
|
154
|
+
(no_ == WSAEISCONN) ?
|
155
|
+
"Socket is already connected" :
|
156
|
+
(no_ == WSAENOTCONN) ?
|
157
|
+
"Socket is not connected" :
|
158
|
+
(no_ == WSAESHUTDOWN) ?
|
159
|
+
"Can't send after socket shutdown" :
|
160
|
+
(no_ == WSAETOOMANYREFS) ?
|
161
|
+
"Too many references can't splice" :
|
162
|
+
(no_ == WSAETIMEDOUT) ?
|
163
|
+
"Connection timed out" :
|
164
|
+
(no_ == WSAECONNREFUSED) ?
|
165
|
+
"Connection refused" :
|
166
|
+
(no_ == WSAELOOP) ?
|
167
|
+
"Too many levels of symbolic links" :
|
168
|
+
(no_ == WSAENAMETOOLONG) ?
|
169
|
+
"File name too long" :
|
170
|
+
(no_ == WSAEHOSTDOWN) ?
|
171
|
+
"Host is down" :
|
172
|
+
(no_ == WSAEHOSTUNREACH) ?
|
173
|
+
"No Route to Host" :
|
174
|
+
(no_ == WSAENOTEMPTY) ?
|
175
|
+
"Directory not empty" :
|
176
|
+
(no_ == WSAEPROCLIM) ?
|
177
|
+
"Too many processes" :
|
178
|
+
(no_ == WSAEUSERS) ?
|
179
|
+
"Too many users" :
|
180
|
+
(no_ == WSAEDQUOT) ?
|
181
|
+
"Disc Quota Exceeded" :
|
182
|
+
(no_ == WSAESTALE) ?
|
183
|
+
"Stale NFS file handle" :
|
184
|
+
(no_ == WSAEREMOTE) ?
|
185
|
+
"Too many levels of remote in path" :
|
186
|
+
(no_ == WSASYSNOTREADY) ?
|
187
|
+
"Network SubSystem is unavailable" :
|
188
|
+
(no_ == WSAVERNOTSUPPORTED) ?
|
189
|
+
"WINSOCK DLL Version out of range" :
|
190
|
+
(no_ == WSANOTINITIALISED) ?
|
191
|
+
"Successful WSASTARTUP not yet performed" :
|
192
|
+
(no_ == WSAHOST_NOT_FOUND) ?
|
193
|
+
"Host not found" :
|
194
|
+
(no_ == WSATRY_AGAIN) ?
|
195
|
+
"Non-Authoritative Host not found" :
|
196
|
+
(no_ == WSANO_RECOVERY) ?
|
197
|
+
"Non-Recoverable errors: FORMERR REFUSED NOTIMP" :
|
198
|
+
(no_ == WSANO_DATA) ?
|
199
|
+
"Valid name no data record of requested" :
|
200
|
+
"error not defined";
|
201
|
+
}
|
202
|
+
|
203
|
+
void zmq::win_error (char *buffer_, size_t buffer_size_)
|
204
|
+
{
|
205
|
+
DWORD errcode = GetLastError ();
|
206
|
+
#if defined WINCE
|
207
|
+
DWORD rc = FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM |
|
208
|
+
FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errcode, MAKELANGID(LANG_NEUTRAL,
|
209
|
+
SUBLANG_DEFAULT), (LPWSTR)buffer_, buffer_size_ / sizeof(wchar_t), NULL );
|
210
|
+
#else
|
211
|
+
DWORD rc = FormatMessageA (FORMAT_MESSAGE_FROM_SYSTEM |
|
212
|
+
FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errcode, MAKELANGID(LANG_NEUTRAL,
|
213
|
+
SUBLANG_DEFAULT), buffer_, (DWORD) buffer_size_, NULL );
|
214
|
+
#endif
|
215
|
+
zmq_assert (rc);
|
216
|
+
}
|
217
|
+
|
218
|
+
int zmq::wsa_error_to_errno (int errcode)
|
219
|
+
{
|
220
|
+
switch (errcode) {
|
221
|
+
// 10009 - File handle is not valid.
|
222
|
+
case WSAEBADF:
|
223
|
+
return EBADF;
|
224
|
+
// 10013 - Permission denied.
|
225
|
+
case WSAEACCES:
|
226
|
+
return EACCES;
|
227
|
+
// 10014 - Bad address.
|
228
|
+
case WSAEFAULT:
|
229
|
+
return EFAULT;
|
230
|
+
// 10022 - Invalid argument.
|
231
|
+
case WSAEINVAL:
|
232
|
+
return EINVAL;
|
233
|
+
// 10024 - Too many open files.
|
234
|
+
case WSAEMFILE:
|
235
|
+
return EMFILE;
|
236
|
+
// 10036 - Operation now in progress.
|
237
|
+
case WSAEINPROGRESS:
|
238
|
+
return EAGAIN;
|
239
|
+
// 10040 - Message too long.
|
240
|
+
case WSAEMSGSIZE:
|
241
|
+
return EMSGSIZE;
|
242
|
+
// 10043 - Protocol not supported.
|
243
|
+
case WSAEPROTONOSUPPORT:
|
244
|
+
return EPROTONOSUPPORT;
|
245
|
+
// 10047 - Address family not supported by protocol family.
|
246
|
+
case WSAEAFNOSUPPORT:
|
247
|
+
return EAFNOSUPPORT;
|
248
|
+
// 10048 - Address already in use.
|
249
|
+
case WSAEADDRINUSE:
|
250
|
+
return EADDRINUSE;
|
251
|
+
// 10049 - Cannot assign requested address.
|
252
|
+
case WSAEADDRNOTAVAIL:
|
253
|
+
return EADDRNOTAVAIL;
|
254
|
+
// 10050 - Network is down.
|
255
|
+
case WSAENETDOWN:
|
256
|
+
return ENETDOWN;
|
257
|
+
// 10051 - Network is unreachable.
|
258
|
+
case WSAENETUNREACH:
|
259
|
+
return ENETUNREACH;
|
260
|
+
// 10052 - Network dropped connection on reset.
|
261
|
+
case WSAENETRESET:
|
262
|
+
return ENETRESET;
|
263
|
+
// 10053 - Software caused connection abort.
|
264
|
+
case WSAECONNABORTED:
|
265
|
+
return ECONNABORTED;
|
266
|
+
// 10054 - Connection reset by peer.
|
267
|
+
case WSAECONNRESET:
|
268
|
+
return ECONNRESET;
|
269
|
+
// 10055 - No buffer space available.
|
270
|
+
case WSAENOBUFS:
|
271
|
+
return ENOBUFS;
|
272
|
+
// 10057 - Socket is not connected.
|
273
|
+
case WSAENOTCONN:
|
274
|
+
return ENOTCONN;
|
275
|
+
// 10060 - Connection timed out.
|
276
|
+
case WSAETIMEDOUT:
|
277
|
+
return ETIMEDOUT;
|
278
|
+
// 10061 - Connection refused.
|
279
|
+
case WSAECONNREFUSED:
|
280
|
+
return ECONNREFUSED;
|
281
|
+
// 10065 - No route to host.
|
282
|
+
case WSAEHOSTUNREACH:
|
283
|
+
return EHOSTUNREACH;
|
284
|
+
default:
|
285
|
+
wsa_assert (false);
|
286
|
+
}
|
287
|
+
// Not reachable
|
288
|
+
return 0;
|
289
|
+
}
|
290
|
+
|
291
|
+
#endif
|
@@ -0,0 +1,155 @@
|
|
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_ERR_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_ERR_HPP_INCLUDED__
|
24
|
+
|
25
|
+
// 0MQ-specific error codes are defined in zmq.h
|
26
|
+
#include "../include/zmq.h"
|
27
|
+
|
28
|
+
#include <assert.h>
|
29
|
+
#if defined WINCE
|
30
|
+
#include "..\builds\msvc\errno.hpp"
|
31
|
+
#else
|
32
|
+
#include <errno.h>
|
33
|
+
#endif
|
34
|
+
#include <string.h>
|
35
|
+
#include <stdlib.h>
|
36
|
+
#include <stdio.h>
|
37
|
+
|
38
|
+
#include "platform.hpp"
|
39
|
+
#include "likely.hpp"
|
40
|
+
|
41
|
+
#ifdef ZMQ_HAVE_WINDOWS
|
42
|
+
#include "windows.hpp"
|
43
|
+
#else
|
44
|
+
#include <netdb.h>
|
45
|
+
#endif
|
46
|
+
|
47
|
+
namespace zmq
|
48
|
+
{
|
49
|
+
const char *errno_to_string (int errno_);
|
50
|
+
void zmq_abort (const char *errmsg_);
|
51
|
+
}
|
52
|
+
|
53
|
+
#ifdef ZMQ_HAVE_WINDOWS
|
54
|
+
|
55
|
+
namespace zmq
|
56
|
+
{
|
57
|
+
const char *wsa_error ();
|
58
|
+
const char *wsa_error_no (int no_);
|
59
|
+
void win_error (char *buffer_, size_t buffer_size_);
|
60
|
+
int wsa_error_to_errno (int errcode);
|
61
|
+
}
|
62
|
+
|
63
|
+
// Provides convenient way to check WSA-style errors on Windows.
|
64
|
+
#define wsa_assert(x) \
|
65
|
+
do {\
|
66
|
+
if (unlikely (!(x))) {\
|
67
|
+
const char *errstr = zmq::wsa_error ();\
|
68
|
+
if (errstr != NULL) {\
|
69
|
+
fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
|
70
|
+
__FILE__, __LINE__);\
|
71
|
+
zmq::zmq_abort (errstr);\
|
72
|
+
}\
|
73
|
+
}\
|
74
|
+
} while (false)
|
75
|
+
|
76
|
+
// Provides convenient way to assert on WSA-style errors on Windows.
|
77
|
+
#define wsa_assert_no(no) \
|
78
|
+
do {\
|
79
|
+
const char *errstr = zmq::wsa_error_no (no);\
|
80
|
+
if (errstr != NULL) {\
|
81
|
+
fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
|
82
|
+
__FILE__, __LINE__);\
|
83
|
+
zmq::zmq_abort (errstr);\
|
84
|
+
}\
|
85
|
+
} while (false)
|
86
|
+
|
87
|
+
// Provides convenient way to check GetLastError-style errors on Windows.
|
88
|
+
#define win_assert(x) \
|
89
|
+
do {\
|
90
|
+
if (unlikely (!(x))) {\
|
91
|
+
char errstr [256];\
|
92
|
+
zmq::win_error (errstr, 256);\
|
93
|
+
fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
|
94
|
+
__FILE__, __LINE__);\
|
95
|
+
zmq::zmq_abort (errstr);\
|
96
|
+
}\
|
97
|
+
} while (false)
|
98
|
+
|
99
|
+
#endif
|
100
|
+
|
101
|
+
// This macro works in exactly the same way as the normal assert. It is used
|
102
|
+
// in its stead because standard assert on Win32 in broken - it prints nothing
|
103
|
+
// when used within the scope of JNI library.
|
104
|
+
#define zmq_assert(x) \
|
105
|
+
do {\
|
106
|
+
if (unlikely (!(x))) {\
|
107
|
+
fprintf (stderr, "Assertion failed: %s (%s:%d)\n", #x, \
|
108
|
+
__FILE__, __LINE__);\
|
109
|
+
zmq::zmq_abort (#x);\
|
110
|
+
}\
|
111
|
+
} while (false)
|
112
|
+
|
113
|
+
// Provides convenient way to check for errno-style errors.
|
114
|
+
#define errno_assert(x) \
|
115
|
+
do {\
|
116
|
+
if (unlikely (!(x))) {\
|
117
|
+
const char *errstr = strerror (errno);\
|
118
|
+
fprintf (stderr, "%s (%s:%d)\n", errstr, __FILE__, __LINE__);\
|
119
|
+
zmq::zmq_abort (errstr);\
|
120
|
+
}\
|
121
|
+
} while (false)
|
122
|
+
|
123
|
+
// Provides convenient way to check for POSIX errors.
|
124
|
+
#define posix_assert(x) \
|
125
|
+
do {\
|
126
|
+
if (unlikely (x)) {\
|
127
|
+
const char *errstr = strerror (x);\
|
128
|
+
fprintf (stderr, "%s (%s:%d)\n", errstr, __FILE__, __LINE__);\
|
129
|
+
zmq::zmq_abort (errstr);\
|
130
|
+
}\
|
131
|
+
} while (false)
|
132
|
+
|
133
|
+
// Provides convenient way to check for errors from getaddrinfo.
|
134
|
+
#define gai_assert(x) \
|
135
|
+
do {\
|
136
|
+
if (unlikely (x)) {\
|
137
|
+
const char *errstr = gai_strerror (x);\
|
138
|
+
fprintf (stderr, "%s (%s:%d)\n", errstr, __FILE__, __LINE__);\
|
139
|
+
zmq::zmq_abort (errstr);\
|
140
|
+
}\
|
141
|
+
} while (false)
|
142
|
+
|
143
|
+
// Provides convenient way to check whether memory allocation have succeeded.
|
144
|
+
#define alloc_assert(x) \
|
145
|
+
do {\
|
146
|
+
if (unlikely (!x)) {\
|
147
|
+
fprintf (stderr, "FATAL ERROR: OUT OF MEMORY (%s:%d)\n",\
|
148
|
+
__FILE__, __LINE__);\
|
149
|
+
zmq::zmq_abort ("FATAL ERROR: OUT OF MEMORY");\
|
150
|
+
}\
|
151
|
+
} while (false)
|
152
|
+
|
153
|
+
#endif
|
154
|
+
|
155
|
+
|