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
Binary file
|
Binary file
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
czmq.h - CZMQ wrapper
|
3
|
+
|
4
|
+
-------------------------------------------------------------------------
|
5
|
+
Copyright (c) 1991-2013 iMatix Corporation <www.imatix.com>
|
6
|
+
Copyright other contributors as noted in the AUTHORS file.
|
7
|
+
|
8
|
+
This file is part of CZMQ, the high-level C binding for 0MQ:
|
9
|
+
http://czmq.zeromq.org.
|
10
|
+
|
11
|
+
This is free software; you can redistribute it and/or modify it under
|
12
|
+
the terms of the GNU Lesser General Public License as published by the
|
13
|
+
Free Software Foundation; either version 3 of the License, or (at your
|
14
|
+
option) any later version.
|
15
|
+
|
16
|
+
This software is distributed in the hope that it will be useful, but
|
17
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABIL-
|
18
|
+
ITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
19
|
+
Public License for more details.
|
20
|
+
|
21
|
+
You should have received a copy of the GNU Lesser General Public License
|
22
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
23
|
+
=========================================================================
|
24
|
+
*/
|
25
|
+
|
26
|
+
#ifndef __CZMQ_H_INCLUDED__
|
27
|
+
#define __CZMQ_H_INCLUDED__
|
28
|
+
|
29
|
+
// Set up environment for the application
|
30
|
+
//
|
31
|
+
#include "czmq_prelude.h"
|
32
|
+
|
33
|
+
// CZMQ version macros for compile-time API detection
|
34
|
+
|
35
|
+
#define CZMQ_VERSION_MAJOR 1
|
36
|
+
#define CZMQ_VERSION_MINOR 4
|
37
|
+
#define CZMQ_VERSION_PATCH 2
|
38
|
+
|
39
|
+
#define CZMQ_MAKE_VERSION(major, minor, patch) \
|
40
|
+
((major) * 10000 + (minor) * 100 + (patch))
|
41
|
+
#define CZMQ_VERSION \
|
42
|
+
CZMQ_MAKE_VERSION(CZMQ_VERSION_MAJOR, CZMQ_VERSION_MINOR, CZMQ_VERSION_PATCH)
|
43
|
+
|
44
|
+
// Classes in the API
|
45
|
+
|
46
|
+
#include "zclock.h"
|
47
|
+
#include "zconfig.h"
|
48
|
+
#include "zctx.h"
|
49
|
+
#include "zfile.h"
|
50
|
+
#include "zframe.h"
|
51
|
+
#include "zlist.h"
|
52
|
+
#include "zhash.h"
|
53
|
+
#include "ztree.h"
|
54
|
+
#include "zloop.h"
|
55
|
+
#include "zmsg.h"
|
56
|
+
#include "zmutex.h"
|
57
|
+
#include "zsocket.h"
|
58
|
+
#include "zsockopt.h"
|
59
|
+
#include "zstr.h"
|
60
|
+
#include "zsys.h"
|
61
|
+
#include "zthread.h"
|
62
|
+
#include "zbeacon.h"
|
63
|
+
|
64
|
+
#endif
|
@@ -0,0 +1,504 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
czmq_prelude.h - CZMQ environment
|
3
|
+
|
4
|
+
-------------------------------------------------------------------------
|
5
|
+
Copyright (c) 1991-2013 iMatix Corporation <www.imatix.com>
|
6
|
+
Copyright other contributors as noted in the AUTHORS file.
|
7
|
+
|
8
|
+
This file is part of CZMQ, the high-level C binding for 0MQ:
|
9
|
+
http://czmq.zeromq.org.
|
10
|
+
|
11
|
+
This is free software; you can redistribute it and/or modify it under
|
12
|
+
the terms of the GNU Lesser General Public License as published by the
|
13
|
+
Free Software Foundation; either version 3 of the License, or (at your
|
14
|
+
option) any later version.
|
15
|
+
|
16
|
+
This software is distributed in the hope that it will be useful, but
|
17
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABIL-
|
18
|
+
ITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
19
|
+
Public License for more details.
|
20
|
+
|
21
|
+
You should have received a copy of the GNU Lesser General Public License
|
22
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
23
|
+
=========================================================================
|
24
|
+
*/
|
25
|
+
|
26
|
+
#ifndef __CZMQ_PRELUDE_H_INCLUDED__
|
27
|
+
#define __CZMQ_PRELUDE_H_INCLUDED__
|
28
|
+
|
29
|
+
//- Establish the compiler and computer system ------------------------------
|
30
|
+
/*
|
31
|
+
* Defines zero or more of these symbols, for use in any non-portable
|
32
|
+
* code:
|
33
|
+
*
|
34
|
+
* __WINDOWS__ Microsoft C/C++ with Windows calls
|
35
|
+
* __MSDOS__ System is MS-DOS (set if __WINDOWS__ set)
|
36
|
+
* __VMS__ System is VAX/VMS or Alpha/OpenVMS
|
37
|
+
* __UNIX__ System is UNIX
|
38
|
+
* __OS2__ System is OS/2
|
39
|
+
*
|
40
|
+
* __IS_32BIT__ OS/compiler is 32 bits
|
41
|
+
* __IS_64BIT__ OS/compiler is 64 bits
|
42
|
+
*
|
43
|
+
* When __UNIX__ is defined, we also define exactly one of these:
|
44
|
+
*
|
45
|
+
* __UTYPE_AUX Apple AUX
|
46
|
+
* __UTYPE_BEOS BeOS
|
47
|
+
* __UTYPE_BSDOS BSD/OS
|
48
|
+
* __UTYPE_DECALPHA Digital UNIX (Alpha)
|
49
|
+
* __UTYPE_IBMAIX IBM RS/6000 AIX
|
50
|
+
* __UTYPE_FREEBSD FreeBSD
|
51
|
+
* __UTYPE_HPUX HP/UX
|
52
|
+
* __UTYPE_ANDROID Android
|
53
|
+
* __UTYPE_LINUX Linux
|
54
|
+
* __UTYPE_MIPS MIPS (BSD 4.3/System V mixture)
|
55
|
+
* __UTYPE_NETBSD NetBSD
|
56
|
+
* __UTYPE_NEXT NeXT
|
57
|
+
* __UTYPE_OPENBSD OpenBSD
|
58
|
+
* __UTYPE_OSX Apple Macintosh OS X
|
59
|
+
* __UTYPE_QNX QNX
|
60
|
+
* __UTYPE_IRIX Silicon Graphics IRIX
|
61
|
+
* __UTYPE_SINIX SINIX-N (Siemens-Nixdorf Unix)
|
62
|
+
* __UTYPE_SUNOS SunOS
|
63
|
+
* __UTYPE_SUNSOLARIS Sun Solaris
|
64
|
+
* __UTYPE_UNIXWARE SCO UnixWare
|
65
|
+
* ... these are the ones I know about so far.
|
66
|
+
* __UTYPE_GENERIC Any other UNIX
|
67
|
+
*
|
68
|
+
* When __VMS__ is defined, we may define one or more of these:
|
69
|
+
*
|
70
|
+
* __VMS_XOPEN Supports XOPEN functions
|
71
|
+
*/
|
72
|
+
|
73
|
+
#if (defined (__64BIT__) || defined (__x86_64__))
|
74
|
+
# define __IS_64BIT__ // May have 64-bit OS/compiler
|
75
|
+
#else
|
76
|
+
# define __IS_32BIT__ // Else assume 32-bit OS/compiler
|
77
|
+
#endif
|
78
|
+
|
79
|
+
#if (defined WIN32 || defined _WIN32)
|
80
|
+
# undef __WINDOWS__
|
81
|
+
# define __WINDOWS__
|
82
|
+
# undef __MSDOS__
|
83
|
+
# define __MSDOS__
|
84
|
+
#endif
|
85
|
+
|
86
|
+
#if (defined WINDOWS || defined _WINDOWS || defined __WINDOWS__)
|
87
|
+
# undef __WINDOWS__
|
88
|
+
# define __WINDOWS__
|
89
|
+
# undef __MSDOS__
|
90
|
+
# define __MSDOS__
|
91
|
+
# if _MSC_VER == 1500
|
92
|
+
# ifndef _CRT_SECURE_NO_DEPRECATE
|
93
|
+
# define _CRT_SECURE_NO_DEPRECATE 1
|
94
|
+
# endif
|
95
|
+
# pragma warning(disable: 4996)
|
96
|
+
# endif
|
97
|
+
#endif
|
98
|
+
|
99
|
+
// MSDOS Microsoft C
|
100
|
+
// _MSC_VER Microsoft C
|
101
|
+
#if (defined (MSDOS) || defined (_MSC_VER))
|
102
|
+
# undef __MSDOS__
|
103
|
+
# define __MSDOS__
|
104
|
+
# if (defined (_DEBUG) && !defined (DEBUG))
|
105
|
+
# define DEBUG
|
106
|
+
# endif
|
107
|
+
#endif
|
108
|
+
|
109
|
+
#if (defined (__EMX__) && defined (__i386__))
|
110
|
+
# undef __OS2__
|
111
|
+
# define __OS2__
|
112
|
+
#endif
|
113
|
+
|
114
|
+
// VMS VAX C (VAX/VMS)
|
115
|
+
// __VMS Dec C (Alpha/OpenVMS)
|
116
|
+
// __vax__ gcc
|
117
|
+
#if (defined (VMS) || defined (__VMS) || defined (__vax__))
|
118
|
+
# undef __VMS__
|
119
|
+
# define __VMS__
|
120
|
+
# if (__VMS_VER >= 70000000)
|
121
|
+
# define __VMS_XOPEN
|
122
|
+
# endif
|
123
|
+
#endif
|
124
|
+
|
125
|
+
// Try to define a __UTYPE_xxx symbol...
|
126
|
+
// unix SunOS at least
|
127
|
+
// __unix__ gcc
|
128
|
+
// _POSIX_SOURCE is various UNIX systems, maybe also VAX/VMS
|
129
|
+
#if (defined (unix) || defined (__unix__) || defined (_POSIX_SOURCE))
|
130
|
+
# if (!defined (__VMS__))
|
131
|
+
# undef __UNIX__
|
132
|
+
# define __UNIX__
|
133
|
+
# if (defined (__alpha)) // Digital UNIX is 64-bit
|
134
|
+
# undef __IS_32BIT__
|
135
|
+
# define __IS_64BIT__
|
136
|
+
# define __UTYPE_DECALPHA
|
137
|
+
# endif
|
138
|
+
# endif
|
139
|
+
#endif
|
140
|
+
|
141
|
+
#if (defined (_AUX))
|
142
|
+
# define __UTYPE_AUX
|
143
|
+
# define __UNIX__
|
144
|
+
#elif (defined (__BEOS__))
|
145
|
+
# define __UTYPE_BEOS
|
146
|
+
# define __UNIX__
|
147
|
+
#elif (defined (__hpux))
|
148
|
+
# define __UTYPE_HPUX
|
149
|
+
# define __UNIX__
|
150
|
+
# define _INCLUDE_HPUX_SOURCE
|
151
|
+
# define _INCLUDE_XOPEN_SOURCE
|
152
|
+
# define _INCLUDE_POSIX_SOURCE
|
153
|
+
#elif (defined (_AIX) || defined (AIX))
|
154
|
+
# define __UTYPE_IBMAIX
|
155
|
+
# define __UNIX__
|
156
|
+
#elif (defined (BSD) || defined (bsd))
|
157
|
+
# define __UTYPE_BSDOS
|
158
|
+
# define __UNIX__
|
159
|
+
#elif (defined (APPLE) || defined (__APPLE__))
|
160
|
+
# define __UTYPE_GENERIC
|
161
|
+
# define __UNIX__
|
162
|
+
#elif (defined (__ANDROID__))
|
163
|
+
# define __UTYPE_ANDROID
|
164
|
+
# define __UNIX__
|
165
|
+
#elif (defined (LINUX) || defined (linux))
|
166
|
+
# define __UTYPE_LINUX
|
167
|
+
# define __UNIX__
|
168
|
+
# ifndef __NO_CTYPE
|
169
|
+
# define __NO_CTYPE // Suppress warnings on tolower()
|
170
|
+
# endif
|
171
|
+
#elif (defined (Mips))
|
172
|
+
# define __UTYPE_MIPS
|
173
|
+
# define __UNIX__
|
174
|
+
#elif (defined (FreeBSD) || defined (__FreeBSD__))
|
175
|
+
# define __UTYPE_FREEBSD
|
176
|
+
# define __UNIX__
|
177
|
+
#elif (defined (NetBSD) || defined (__NetBSD__))
|
178
|
+
# define __UTYPE_NETBSD
|
179
|
+
# define __UNIX__
|
180
|
+
#elif (defined (OpenBSD) || defined (__OpenBSD__))
|
181
|
+
# define __UTYPE_OPENBSD
|
182
|
+
# define __UNIX__
|
183
|
+
#elif (defined (__APPLE__))
|
184
|
+
# define __UTYPE_OSX
|
185
|
+
# define __UNIX__
|
186
|
+
#elif (defined (NeXT))
|
187
|
+
# define __UTYPE_NEXT
|
188
|
+
# define __UNIX__
|
189
|
+
#elif (defined (__QNX__))
|
190
|
+
# define __UTYPE_QNX
|
191
|
+
# define __UNIX__
|
192
|
+
#elif (defined (sgi))
|
193
|
+
# define __UTYPE_IRIX
|
194
|
+
# define __UNIX__
|
195
|
+
#elif (defined (sinix))
|
196
|
+
# define __UTYPE_SINIX
|
197
|
+
# define __UNIX__
|
198
|
+
#elif (defined (SOLARIS) || defined (__SRV4))
|
199
|
+
# define __UTYPE_SUNSOLARIS
|
200
|
+
# define __UNIX__
|
201
|
+
#elif (defined (SUNOS) || defined (SUN) || defined (sun))
|
202
|
+
# define __UTYPE_SUNOS
|
203
|
+
# define __UNIX__
|
204
|
+
#elif (defined (__USLC__) || defined (UnixWare))
|
205
|
+
# define __UTYPE_UNIXWARE
|
206
|
+
# define __UNIX__
|
207
|
+
#elif (defined (__CYGWIN__))
|
208
|
+
# define __UTYPE_CYGWIN
|
209
|
+
# define __UNIX__
|
210
|
+
#elif (defined (__UNIX__))
|
211
|
+
# define __UTYPE_GENERIC
|
212
|
+
#endif
|
213
|
+
|
214
|
+
//- Standard ANSI include files ---------------------------------------------
|
215
|
+
|
216
|
+
#include <ctype.h>
|
217
|
+
#include <limits.h>
|
218
|
+
#include <stdarg.h>
|
219
|
+
#include <stdio.h>
|
220
|
+
#include <stdlib.h>
|
221
|
+
#include <stddef.h>
|
222
|
+
#include <string.h>
|
223
|
+
#include <time.h>
|
224
|
+
#include <errno.h>
|
225
|
+
#include <float.h>
|
226
|
+
#include <math.h>
|
227
|
+
#include <signal.h>
|
228
|
+
#include <setjmp.h>
|
229
|
+
#include <assert.h>
|
230
|
+
|
231
|
+
//- System-specific include files -------------------------------------------
|
232
|
+
|
233
|
+
#if (defined (__MSDOS__))
|
234
|
+
# if (defined (__WINDOWS__))
|
235
|
+
# if (!defined (FD_SETSIZE))
|
236
|
+
# define FD_SETSIZE 1024 // Max. filehandles/sockets
|
237
|
+
# endif
|
238
|
+
# include <direct.h>
|
239
|
+
# include <winsock2.h>
|
240
|
+
# include <windows.h>
|
241
|
+
# include <process.h>
|
242
|
+
# endif
|
243
|
+
# include <malloc.h>
|
244
|
+
# include <dos.h>
|
245
|
+
# include <io.h>
|
246
|
+
# include <fcntl.h>
|
247
|
+
# include <sys/types.h>
|
248
|
+
# include <sys/stat.h>
|
249
|
+
# include <sys/utime.h>
|
250
|
+
# include <share.h>
|
251
|
+
# if _MSC_VER == 1500
|
252
|
+
# ifndef _CRT_SECURE_NO_DEPRECATE
|
253
|
+
# define _CRT_SECURE_NO_DEPRECATE 1
|
254
|
+
# endif
|
255
|
+
# pragma warning(disable: 4996)
|
256
|
+
# endif
|
257
|
+
#endif
|
258
|
+
|
259
|
+
#if (defined (__UNIX__))
|
260
|
+
# include <fcntl.h>
|
261
|
+
# include <netdb.h>
|
262
|
+
# include <unistd.h>
|
263
|
+
# include <pthread.h>
|
264
|
+
# include <dirent.h>
|
265
|
+
# include <pwd.h>
|
266
|
+
# include <grp.h>
|
267
|
+
# include <utime.h>
|
268
|
+
# include <inttypes.h>
|
269
|
+
# include <sys/types.h>
|
270
|
+
# include <sys/param.h>
|
271
|
+
# include <sys/socket.h>
|
272
|
+
# include <sys/time.h>
|
273
|
+
# include <sys/stat.h>
|
274
|
+
# include <sys/ioctl.h>
|
275
|
+
# include <sys/file.h>
|
276
|
+
# include <sys/wait.h>
|
277
|
+
# include <sys/uio.h> // This is required to make CZMQ compile with libzmq/3.x
|
278
|
+
# include <netinet/in.h> // Must come before arpa/inet.h
|
279
|
+
# if (!defined (__UTYPE_ANDROID)) && (!defined (__UTYPE_IBMAIX)) && (!defined (__UTYPE_HPUX)) && (!defined (__UTYPE_SUNOS))
|
280
|
+
# include <ifaddrs.h>
|
281
|
+
# endif
|
282
|
+
# if (!defined (__UTYPE_BEOS))
|
283
|
+
# include <arpa/inet.h>
|
284
|
+
# if (!defined (TCP_NODELAY))
|
285
|
+
# include <netinet/tcp.h>
|
286
|
+
# endif
|
287
|
+
# endif
|
288
|
+
# if (defined (__UTYPE_IBMAIX) || defined(__UTYPE_QNX))
|
289
|
+
# include <sys/select.h>
|
290
|
+
# endif
|
291
|
+
# if (defined (__UTYPE_BEOS))
|
292
|
+
# include <NetKit.h>
|
293
|
+
# endif
|
294
|
+
# if ((defined (_XOPEN_REALTIME) && (_XOPEN_REALTIME >= 1)) || \
|
295
|
+
(defined (_POSIX_VERSION) && (_POSIX_VERSION >= 199309L)))
|
296
|
+
# include <sched.h>
|
297
|
+
# endif
|
298
|
+
# if (defined (__UTYPE_OSX))
|
299
|
+
# include <crt_externs.h> /* For _NSGetEnviron() */
|
300
|
+
# endif
|
301
|
+
#endif
|
302
|
+
|
303
|
+
#if (defined (__VMS__))
|
304
|
+
# if (!defined (vaxc))
|
305
|
+
# include <fcntl.h> // Not provided by Vax C
|
306
|
+
# endif
|
307
|
+
# include <netdb.h>
|
308
|
+
# include <unistd.h>
|
309
|
+
# include <pthread.h>
|
310
|
+
# include <unixio.h>
|
311
|
+
# include <unixlib.h>
|
312
|
+
# include <types.h>
|
313
|
+
# include <file.h>
|
314
|
+
# include <socket.h>
|
315
|
+
# include <dirent.h>
|
316
|
+
# include <time.h>
|
317
|
+
# include <pwd.h>
|
318
|
+
# include <stat.h>
|
319
|
+
# include <in.h>
|
320
|
+
# include <inet.h>
|
321
|
+
#endif
|
322
|
+
|
323
|
+
#if (defined (__OS2__))
|
324
|
+
# include <sys/types.h> // Required near top
|
325
|
+
# include <fcntl.h>
|
326
|
+
# include <malloc.h>
|
327
|
+
# include <netdb.h>
|
328
|
+
# include <unistd.h>
|
329
|
+
# include <pthread.h>
|
330
|
+
# include <dirent.h>
|
331
|
+
# include <pwd.h>
|
332
|
+
# include <grp.h>
|
333
|
+
# include <io.h>
|
334
|
+
# include <process.h>
|
335
|
+
# include <sys/param.h>
|
336
|
+
# include <sys/socket.h>
|
337
|
+
# include <sys/select.h>
|
338
|
+
# include <sys/time.h>
|
339
|
+
# include <sys/stat.h>
|
340
|
+
# include <sys/ioctl.h>
|
341
|
+
# include <sys/file.h>
|
342
|
+
# include <sys/wait.h>
|
343
|
+
# include <netinet/in.h> // Must come before arpa/inet.h
|
344
|
+
# include <arpa/inet.h>
|
345
|
+
# include <utime.h>
|
346
|
+
# if (!defined (TCP_NODELAY))
|
347
|
+
# include <netinet/tcp.h>
|
348
|
+
# endif
|
349
|
+
#endif
|
350
|
+
|
351
|
+
//- Check compiler data type sizes ------------------------------------------
|
352
|
+
|
353
|
+
#if (UCHAR_MAX != 0xFF)
|
354
|
+
# error "Cannot compile: must change definition of 'byte'."
|
355
|
+
#endif
|
356
|
+
#if (USHRT_MAX != 0xFFFFU)
|
357
|
+
# error "Cannot compile: must change definition of 'dbyte'."
|
358
|
+
#endif
|
359
|
+
#if (UINT_MAX != 0xFFFFFFFFU)
|
360
|
+
# error "Cannot compile: must change definition of 'qbyte'."
|
361
|
+
#endif
|
362
|
+
|
363
|
+
//- Data types --------------------------------------------------------------
|
364
|
+
|
365
|
+
typedef unsigned char byte; // Single unsigned byte = 8 bits
|
366
|
+
typedef unsigned short dbyte; // Double byte = 16 bits
|
367
|
+
typedef unsigned int qbyte; // Quad byte = 32 bits
|
368
|
+
|
369
|
+
//- Inevitable macros -------------------------------------------------------
|
370
|
+
|
371
|
+
#define streq(s1,s2) (!strcmp ((s1), (s2)))
|
372
|
+
#define strneq(s1,s2) (strcmp ((s1), (s2)))
|
373
|
+
|
374
|
+
// Provide random number from 0..(num-1)
|
375
|
+
#if (defined (__WINDOWS__)) || (defined (__UTYPE_IBMAIX)) || (defined (__UTYPE_HPUX)) || (defined (__UTYPE_SUNOS))
|
376
|
+
# define randof(num) (int) ((float) (num) * rand () / (RAND_MAX + 1.0))
|
377
|
+
#else
|
378
|
+
# define randof(num) (int) ((float) (num) * random () / (RAND_MAX + 1.0))
|
379
|
+
#endif
|
380
|
+
|
381
|
+
// Windows MSVS doesn't have stdbool
|
382
|
+
#if (defined (__WINDOWS__))
|
383
|
+
# if (!defined(__cplusplus) && (!defined (true)))
|
384
|
+
# define true 1
|
385
|
+
# define false 0
|
386
|
+
typedef char bool;
|
387
|
+
# endif
|
388
|
+
#else
|
389
|
+
# include <stdbool.h>
|
390
|
+
#endif
|
391
|
+
|
392
|
+
//- A number of POSIX and C99 keywords and data types -----------------------
|
393
|
+
|
394
|
+
#if (defined (__WINDOWS__))
|
395
|
+
# define inline __inline
|
396
|
+
# define strtoull _strtoui64
|
397
|
+
# define srandom srand
|
398
|
+
# define TIMEZONE _timezone
|
399
|
+
# if (!defined (__MINGW32__))
|
400
|
+
# define snprintf _snprintf
|
401
|
+
# define vsnprintf _vsnprintf
|
402
|
+
# endif
|
403
|
+
typedef unsigned long ulong;
|
404
|
+
typedef unsigned int uint;
|
405
|
+
# if (!defined (__MINGW32__))
|
406
|
+
typedef int mode_t;
|
407
|
+
typedef __int32 int32_t;
|
408
|
+
typedef __int64 int64_t;
|
409
|
+
typedef unsigned __int32 uint32_t;
|
410
|
+
typedef unsigned __int64 uint64_t;
|
411
|
+
typedef long ssize_t;
|
412
|
+
# endif
|
413
|
+
#elif (defined (__APPLE__))
|
414
|
+
typedef unsigned long ulong;
|
415
|
+
typedef unsigned int uint;
|
416
|
+
#endif
|
417
|
+
|
418
|
+
//- Error reporting ---------------------------------------------------------
|
419
|
+
// If the compiler is GCC or supports C99, include enclosing function
|
420
|
+
// in CZMQ assertions
|
421
|
+
#if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
|
422
|
+
# define CZMQ_ASSERT_SANE_FUNCTION __func__
|
423
|
+
#elif defined (__GNUC__) && (__GNUC__ >= 2)
|
424
|
+
# define CZMQ_ASSERT_SANE_FUNCTION __FUNCTION__
|
425
|
+
#else
|
426
|
+
# define CZMQ_ASSERT_SANE_FUNCTION "<unknown>"
|
427
|
+
#endif
|
428
|
+
|
429
|
+
// Replacement for malloc() which asserts if we run out of heap, and
|
430
|
+
// which zeroes the allocated block.
|
431
|
+
static inline void *
|
432
|
+
safe_malloc (
|
433
|
+
size_t size,
|
434
|
+
char *file,
|
435
|
+
unsigned line,
|
436
|
+
const char *func)
|
437
|
+
{
|
438
|
+
void
|
439
|
+
*mem;
|
440
|
+
|
441
|
+
mem = calloc (1, size);
|
442
|
+
if (mem == NULL) {
|
443
|
+
fprintf (stderr, "FATAL ERROR at %s:%u, in %s\n", file, line, func);
|
444
|
+
fprintf (stderr, "OUT OF MEMORY (malloc returned NULL)\n");
|
445
|
+
fflush (stderr);
|
446
|
+
abort ();
|
447
|
+
}
|
448
|
+
return mem;
|
449
|
+
}
|
450
|
+
|
451
|
+
// Define _ZMALLOC_DEBUG if you need to trace memory leaks using e.g. mtrace,
|
452
|
+
// otherwise all allocations will claim to come from zfl_prelude.h. For best
|
453
|
+
// results, compile all classes so you see dangling object allocations.
|
454
|
+
// _ZMALLOC_PEDANTIC does the same thing, but its intention is to propagate
|
455
|
+
// out of memory condition back up the call stack.
|
456
|
+
#if defined _ZMALLOC_DEBUG || _ZMALLOC_PEDANTIC
|
457
|
+
# define zmalloc(size) calloc(1,(size))
|
458
|
+
#else
|
459
|
+
# define zmalloc(size) safe_malloc((size), __FILE__, __LINE__, CZMQ_ASSERT_SANE_FUNCTION)
|
460
|
+
#endif
|
461
|
+
|
462
|
+
//- DLL exports -------------------------------------------------------------
|
463
|
+
|
464
|
+
#if defined (_WINDLL)
|
465
|
+
# if defined LIBCZMQ_EXPORTS
|
466
|
+
# define CZMQ_EXPORT __declspec(dllexport)
|
467
|
+
# else
|
468
|
+
# define CZMQ_EXPORT __declspec(dllimport)
|
469
|
+
# endif
|
470
|
+
#else
|
471
|
+
# define CZMQ_EXPORT
|
472
|
+
#endif
|
473
|
+
|
474
|
+
//- Always include ZeroMQ header file ---------------------------------------
|
475
|
+
|
476
|
+
#include "zmq.h"
|
477
|
+
|
478
|
+
// Older libzmq APIs will be missing some aspects of libzmq/3.0
|
479
|
+
|
480
|
+
#ifndef ZMQ_ROUTER
|
481
|
+
# define ZMQ_ROUTER ZMQ_XREP
|
482
|
+
#endif
|
483
|
+
#ifndef ZMQ_DEALER
|
484
|
+
# define ZMQ_DEALER ZMQ_XREQ
|
485
|
+
#endif
|
486
|
+
#ifndef ZMQ_DONTWAIT
|
487
|
+
# define ZMQ_DONTWAIT ZMQ_NOBLOCK
|
488
|
+
#endif
|
489
|
+
#ifndef ZMQ_XSUB
|
490
|
+
# error "please upgrade to latest stable libzmq from http://zeromq.org"
|
491
|
+
#endif
|
492
|
+
#if ZMQ_VERSION_MAJOR == 2
|
493
|
+
# if ZMQ_VERSION_MINOR == 0 \
|
494
|
+
|| (ZMQ_VERSION_MINOR == 1 && ZMQ_VERSION_PATCH < 7)
|
495
|
+
# error "CZMQ requires at least libzmq/2.1.7 stable"
|
496
|
+
# endif
|
497
|
+
# define zmq_sendmsg zmq_send
|
498
|
+
# define zmq_recvmsg zmq_recv
|
499
|
+
# define ZMQ_POLL_MSEC 1000 // zmq_poll is usec
|
500
|
+
#elif ZMQ_VERSION_MAJOR == 3 || ZMQ_VERSION_MAJOR == 4
|
501
|
+
# define ZMQ_POLL_MSEC 1 // zmq_poll is msec
|
502
|
+
#endif
|
503
|
+
|
504
|
+
#endif
|