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,66 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
zsys - system 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 __ZSYS_H_INCLUDED__
|
27
|
+
#define __ZSYS_H_INCLUDED__
|
28
|
+
|
29
|
+
#ifdef __cplusplus
|
30
|
+
extern "C" {
|
31
|
+
#endif
|
32
|
+
|
33
|
+
// @interface
|
34
|
+
// Callback for interrupt signal handler
|
35
|
+
typedef void (zsys_handler_fn) (int signal_value);
|
36
|
+
|
37
|
+
// Set interrupt handler (NULL means external handler)
|
38
|
+
CZMQ_EXPORT void
|
39
|
+
zsys_handler_set (zsys_handler_fn *handler_fn);
|
40
|
+
|
41
|
+
// Reset interrupt handler, call this at exit if needed
|
42
|
+
CZMQ_EXPORT void
|
43
|
+
zsys_handler_reset (void);
|
44
|
+
|
45
|
+
// Set network interface name to use for broadcasts
|
46
|
+
// Use this to force the interface for beacons
|
47
|
+
// This is experimental; may be merged into zbeacon class.
|
48
|
+
CZMQ_EXPORT void
|
49
|
+
zsys_set_interface (char *interface);
|
50
|
+
|
51
|
+
// Return network interface name to use for broadcasts.
|
52
|
+
// Returns "" if no interface was set.
|
53
|
+
// This is experimental; may be merged into zbeacon class.
|
54
|
+
CZMQ_EXPORT char *
|
55
|
+
zsys_interface (void);
|
56
|
+
|
57
|
+
// Self test of this class
|
58
|
+
CZMQ_EXPORT int
|
59
|
+
zsys_test (bool verbose);
|
60
|
+
// @end
|
61
|
+
|
62
|
+
#ifdef __cplusplus
|
63
|
+
}
|
64
|
+
#endif
|
65
|
+
|
66
|
+
#endif
|
@@ -0,0 +1,62 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
zthread - working with system threads
|
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 __ZTHREAD_H_INCLUDED__
|
27
|
+
#define __ZTHREAD_H_INCLUDED__
|
28
|
+
|
29
|
+
#ifdef __cplusplus
|
30
|
+
extern "C" {
|
31
|
+
#endif
|
32
|
+
|
33
|
+
// @interface
|
34
|
+
// Detached threads follow POSIX pthreads API
|
35
|
+
typedef void *(zthread_detached_fn) (void *args);
|
36
|
+
|
37
|
+
// Attached threads get context and pipe from parent
|
38
|
+
typedef void (zthread_attached_fn) (void *args, zctx_t *ctx, void *pipe);
|
39
|
+
|
40
|
+
// Create a detached thread. A detached thread operates autonomously
|
41
|
+
// and is used to simulate a separate process. It gets no ctx, and no
|
42
|
+
// pipe.
|
43
|
+
CZMQ_EXPORT int
|
44
|
+
zthread_new (zthread_detached_fn *thread_fn, void *args);
|
45
|
+
|
46
|
+
// Create an attached thread. An attached thread gets a ctx and a PAIR
|
47
|
+
// pipe back to its parent. It must monitor its pipe, and exit if the
|
48
|
+
// pipe becomes unreadable. Do not destroy the ctx, the thread does this
|
49
|
+
// automatically when it ends.
|
50
|
+
CZMQ_EXPORT void *
|
51
|
+
zthread_fork (zctx_t *ctx, zthread_attached_fn *thread_fn, void *args);
|
52
|
+
|
53
|
+
// Self test of this class
|
54
|
+
CZMQ_EXPORT int
|
55
|
+
zthread_test (bool verbose);
|
56
|
+
// @end
|
57
|
+
|
58
|
+
#ifdef __cplusplus
|
59
|
+
}
|
60
|
+
#endif
|
61
|
+
|
62
|
+
#endif
|
@@ -0,0 +1,133 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
ztree - generic red-black tree container
|
3
|
+
|
4
|
+
-------------------------------------------------------------------------
|
5
|
+
Copyright (c) 2013 Stephen Hemminger <stephen@networkplumber.org>
|
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
|
+
This code is derived from Redblack balanced tree algorithm
|
25
|
+
Copyright (C) Damian Ivereigh 2000
|
26
|
+
Which was licensed under GPL version 2 (or later) license.
|
27
|
+
|
28
|
+
=========================================================================
|
29
|
+
*/
|
30
|
+
|
31
|
+
#ifndef __ZTREE_H_INCLUDED__
|
32
|
+
#define __ZTREE_H_INCLUDED__
|
33
|
+
|
34
|
+
#ifdef __cplusplus
|
35
|
+
extern "C" {
|
36
|
+
#endif
|
37
|
+
|
38
|
+
// Opaque class structure
|
39
|
+
typedef struct _ztree_t ztree_t;
|
40
|
+
|
41
|
+
// @interface
|
42
|
+
// Callback function for ztee_walk method
|
43
|
+
typedef int (ztree_walk_fn) (const char *key, void *value, void *argument);
|
44
|
+
|
45
|
+
// Callback function for ztree_freefn method
|
46
|
+
typedef void (ztree_free_fn) (void *data);
|
47
|
+
|
48
|
+
// Comparison function for ztree ordering
|
49
|
+
// returns -1 for key1 < key2, 0 if key1 == key 2, 1 for key1 > key2
|
50
|
+
// if key's are strings okay to use strcmp as function
|
51
|
+
typedef int (ztree_compare_fn) (const char *key1, const char *key2);
|
52
|
+
|
53
|
+
// Create a new tree container
|
54
|
+
CZMQ_EXPORT ztree_t *
|
55
|
+
ztree_new (ztree_compare_fn *compare_func);
|
56
|
+
|
57
|
+
// Destroy a tree container
|
58
|
+
CZMQ_EXPORT void
|
59
|
+
ztree_destroy (ztree_t **self_p);
|
60
|
+
|
61
|
+
// Insert node into tree with specified key and value
|
62
|
+
// If key is already present returns -1 and leaves existing node unchanged
|
63
|
+
// Returns 0 on success.
|
64
|
+
CZMQ_EXPORT int
|
65
|
+
ztree_insert (ztree_t *self, const char *key, void *value);
|
66
|
+
|
67
|
+
// Update node in tree with specified key and value.
|
68
|
+
// If key is already present, destroys old value and inserts new one.
|
69
|
+
// Use free_fn method to ensure deallocator is properly called on value.
|
70
|
+
CZMQ_EXPORT void
|
71
|
+
ztree_update (ztree_t *self, const char *key, void *value);
|
72
|
+
|
73
|
+
// Remove a node specified by key from the tree. If there was no such
|
74
|
+
// node, this function does nothing.
|
75
|
+
CZMQ_EXPORT void
|
76
|
+
ztree_delete (ztree_t *self, const char *key);
|
77
|
+
|
78
|
+
// Return the value at the specified key, or null
|
79
|
+
CZMQ_EXPORT void *
|
80
|
+
ztree_lookup (ztree_t *self, const char *key);
|
81
|
+
|
82
|
+
// Set a free function for the specified tree node. When the value is
|
83
|
+
// destroyed, the free function, if any, is called on that node.
|
84
|
+
// Use this when tree values are dynamically allocated, to ensure that
|
85
|
+
// you don't have memory leaks. You can pass 'free' or NULL as a free_fn.
|
86
|
+
// Returns the item, or NULL if there is no such item.
|
87
|
+
CZMQ_EXPORT void *
|
88
|
+
ztree_freefn (ztree_t *self, const char *key, ztree_free_fn *free_fn);
|
89
|
+
|
90
|
+
// Return the number of keys/values in the tree
|
91
|
+
CZMQ_EXPORT size_t
|
92
|
+
ztree_size (ztree_t *self);
|
93
|
+
|
94
|
+
// Return keys for nodes in tree
|
95
|
+
CZMQ_EXPORT zlist_t *
|
96
|
+
ztree_keys (ztree_t *self);
|
97
|
+
|
98
|
+
// Copy the entire tree, return the copy
|
99
|
+
CZMQ_EXPORT ztree_t *
|
100
|
+
ztree_dup (ztree_t *self);
|
101
|
+
|
102
|
+
// Walk the tree depth-first, left-to-right order.
|
103
|
+
// Stops if callback function returns non-zero and returns
|
104
|
+
// final return code from callback function (zero = success).
|
105
|
+
CZMQ_EXPORT int
|
106
|
+
ztree_walk (ztree_t *self, ztree_walk_fn *callback, void *argument);
|
107
|
+
|
108
|
+
// Save tree to a text file in name=value format. Values must be
|
109
|
+
// printable strings; keys may not contain '=' character. Returns 0 if OK,
|
110
|
+
// else -1 if a file error occurred.
|
111
|
+
CZMQ_EXPORT int
|
112
|
+
ztree_save (ztree_t *self, const char *filename);
|
113
|
+
|
114
|
+
// Load tree from a text file in name=value format; tree must
|
115
|
+
// already exist. Tree values must printable strings; keys may not contain
|
116
|
+
// '=' character. Returns 0 if OK, else -1 if a file was not readable.
|
117
|
+
CZMQ_EXPORT int
|
118
|
+
ztree_load (ztree_t *self, const char *filename);
|
119
|
+
|
120
|
+
// Set tree for automatic value destruction
|
121
|
+
CZMQ_EXPORT void
|
122
|
+
ztree_autofree (ztree_t *self);
|
123
|
+
|
124
|
+
// Self test of this class
|
125
|
+
CZMQ_EXPORT void
|
126
|
+
ztree_test (int verbose);
|
127
|
+
// @end
|
128
|
+
|
129
|
+
#ifdef __cplusplus
|
130
|
+
}
|
131
|
+
#endif
|
132
|
+
|
133
|
+
#endif
|
data/ext/czmq/mkdoc
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#! /bin/bash
|
2
|
+
#
|
3
|
+
# Generate zapi documentation
|
4
|
+
|
5
|
+
# Generate man pages and website manual
|
6
|
+
cd doc
|
7
|
+
./mksite
|
8
|
+
cd ..
|
9
|
+
|
10
|
+
# Generate README.md and upload to git
|
11
|
+
gitdown README.txt
|
12
|
+
git add README.* images
|
13
|
+
git commit -m "Generated documentation"
|
14
|
+
git push origin master
|
@@ -0,0 +1,101 @@
|
|
1
|
+
<?xml?>
|
2
|
+
<!-- Used to generate the socket options interface
|
3
|
+
Requires gsl4 from https://github.com/imatix/gsl
|
4
|
+
use 'gsl sockopts'
|
5
|
+
-->
|
6
|
+
<options script = "sockopts">
|
7
|
+
<version major = "2">
|
8
|
+
<option name = "hwm" type = "uint64" mode = "rw" test = "SUB" />
|
9
|
+
<option name = "swap" type = "int64" mode = "rw" test = "SUB" />
|
10
|
+
<option name = "affinity" type = "uint64" mode = "rw" test = "SUB" />
|
11
|
+
<option name = "identity" type = "blob" mode = "rw" test = "SUB" />
|
12
|
+
<option name = "rate" type = "int64" mode = "rw" test = "SUB" />
|
13
|
+
<option name = "recovery_ivl" type = "int64" mode = "rw" test = "SUB" />
|
14
|
+
<option name = "recovery_ivl_msec" type = "int64" mode = "rw" test = "SUB" />
|
15
|
+
<option name = "mcast_loop" type = "int64" mode = "rw" test = "SUB" />
|
16
|
+
<option name = "rcvtimeo" type = "int" mode = "rw" test = "SUB" minor = "2" />
|
17
|
+
<option name = "sndtimeo" type = "int" mode = "rw" test = "SUB" minor = "2" />
|
18
|
+
<option name = "sndbuf" type = "uint64" mode = "rw" test = "SUB" />
|
19
|
+
<option name = "rcvbuf" type = "uint64" mode = "rw" test = "SUB" />
|
20
|
+
<option name = "linger" type = "int" mode = "rw" test = "SUB" />
|
21
|
+
<option name = "reconnect_ivl" type = "int" mode = "rw" test = "SUB" />
|
22
|
+
<option name = "reconnect_ivl_max" type = "int" mode = "rw" test = "SUB" />
|
23
|
+
<option name = "backlog" type = "int" mode = "rw" test = "SUB" />
|
24
|
+
<option name = "subscribe" type = "blob" mode = "w" test = "SUB">
|
25
|
+
<restrict type = "SUB" />
|
26
|
+
</option>
|
27
|
+
<option name = "unsubscribe" type = "blob" mode = "w" test = "SUB">
|
28
|
+
<restrict type = "SUB" />
|
29
|
+
</option>
|
30
|
+
<option name = "type" type = "int" mode = "r" test = "SUB" />
|
31
|
+
<option name = "rcvmore" type = "int64" mode = "r" test = "SUB" />
|
32
|
+
<option name = "fd" type = "int" mode = "r" test = "SUB" />
|
33
|
+
<option name = "events" type = "uint32" mode = "r" test = "SUB" />
|
34
|
+
</version>
|
35
|
+
|
36
|
+
<version major = "3">
|
37
|
+
<option name = "type" type = "int" mode = "r" test = "SUB" />
|
38
|
+
<option name = "sndhwm" type = "int" mode = "rw" test = "PUB" />
|
39
|
+
<option name = "rcvhwm" type = "int" mode = "rw" test = "SUB" />
|
40
|
+
<option name = "affinity" type = "uint64" mode = "rw" test = "SUB" />
|
41
|
+
<option name = "subscribe" type = "blob" mode = "w" test = "SUB">
|
42
|
+
<restrict type = "SUB" />
|
43
|
+
</option>
|
44
|
+
<option name = "unsubscribe" type = "blob" mode = "w" test = "SUB">
|
45
|
+
<restrict type = "SUB" />
|
46
|
+
</option>
|
47
|
+
<option name = "identity" type = "blob" mode = "rw" test = "DEALER">
|
48
|
+
<restrict type = "REQ" />
|
49
|
+
<restrict type = "REP" />
|
50
|
+
<restrict type = "DEALER" />
|
51
|
+
<restrict type = "ROUTER" />
|
52
|
+
</option>
|
53
|
+
<option name = "rate" type = "int" mode = "rw" test = "SUB" />
|
54
|
+
<option name = "recovery_ivl" type = "int" mode = "rw" test = "SUB" />
|
55
|
+
<option name = "sndbuf" type = "int" mode = "rw" test = "PUB" />
|
56
|
+
<option name = "rcvbuf" type = "int" mode = "rw" test = "SUB" />
|
57
|
+
<option name = "linger" type = "int" mode = "rw" test = "SUB" />
|
58
|
+
<option name = "reconnect_ivl" type = "int" mode = "rw" test = "SUB" />
|
59
|
+
<option name = "reconnect_ivl_max" type = "int" mode = "rw" test = "SUB" />
|
60
|
+
<option name = "backlog" type = "int" mode = "rw" test = "SUB" />
|
61
|
+
<option name = "maxmsgsize" type = "int64" mode = "rw" test = "SUB" />
|
62
|
+
<option name = "multicast_hops" type = "int" mode = "rw" test = "SUB" />
|
63
|
+
<option name = "rcvtimeo" type = "int" mode = "rw" test = "SUB" />
|
64
|
+
<option name = "sndtimeo" type = "int" mode = "rw" test = "SUB" />
|
65
|
+
<option name = "ipv4only" type = "int" mode = "rw" test = "SUB" />
|
66
|
+
<option name = "delay_attach_on_connect"
|
67
|
+
type = "int" mode = "w" test = "PUB" />
|
68
|
+
<option name = "router_mandatory" type = "int" mode = "w" test = "ROUTER">
|
69
|
+
<restrict type = "ROUTER" />
|
70
|
+
</option>
|
71
|
+
<option name = "router_raw" type = "int" mode = "w" test = "ROUTER">
|
72
|
+
<restrict type = "ROUTER" />
|
73
|
+
</option>
|
74
|
+
<option name = "xpub_verbose" type = "int" mode = "w" test = "XPUB">
|
75
|
+
<restrict type = "XPUB" />
|
76
|
+
</option>
|
77
|
+
<option name = "rcvmore" type = "int" mode = "r" test = "SUB" />
|
78
|
+
<option name = "fd" type = "int" mode = "r" test = "SUB" />
|
79
|
+
<option name = "events" type = "int" mode = "r" test = "SUB" />
|
80
|
+
<option name = "last_endpoint" type = "blob" mode = "r" test = "SUB" />
|
81
|
+
<header>
|
82
|
+
// Emulation of widely-used 2.x socket options
|
83
|
+
void zsocket_set_hwm (void *zocket, int hwm);
|
84
|
+
</header>
|
85
|
+
<source>
|
86
|
+
// --------------------------------------------------------------------------
|
87
|
+
// Set socket high-water mark, emulating 2.x API
|
88
|
+
|
89
|
+
void
|
90
|
+
zsocket_set_hwm (void *zocket, int hwm)
|
91
|
+
{
|
92
|
+
zsocket_set_sndhwm (zocket, hwm);
|
93
|
+
zsocket_set_rcvhwm (zocket, hwm);
|
94
|
+
}
|
95
|
+
</source>
|
96
|
+
<selftest>
|
97
|
+
zocket = zsocket_new (ctx, ZMQ_SUB);
|
98
|
+
zsocket_set_hwm (zocket, 1);
|
99
|
+
</selftest>
|
100
|
+
</version>
|
101
|
+
</options>
|
data/ext/czmq/notes.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
zsocket_
|
2
|
+
|
3
|
+
- subscribe
|
4
|
+
- unsubscribe
|
5
|
+
- hwm / set_
|
6
|
+
- swap / set_
|
7
|
+
- affinity / set_
|
8
|
+
- identity / set_
|
9
|
+
- rate / set_
|
10
|
+
- recovery_ivl / set_
|
11
|
+
- recovery_ivl_msec / set_
|
12
|
+
- mcast_loop / set_
|
13
|
+
- sndbuf / set_
|
14
|
+
- rcvbuf / set_
|
15
|
+
- linger / set_
|
16
|
+
- reconnect_ivl / set_
|
17
|
+
- reconnect_ivl_max / set_
|
18
|
+
- backlog / set_
|
19
|
+
- fd
|
20
|
+
- events
|
21
|
+
- type
|
@@ -0,0 +1,325 @@
|
|
1
|
+
.output "../include/zsockopt.h"
|
2
|
+
.for version
|
3
|
+
. for option
|
4
|
+
. if type = "uint64" | type = "int64" | type = "uint32" | type = "int"
|
5
|
+
. option.ctype = "int"
|
6
|
+
. option.ctype_const = "int"
|
7
|
+
. elsif type = "blob"
|
8
|
+
. option.ctype = "char *" # Enforce C strings
|
9
|
+
. option.ctype_const = "const char *"
|
10
|
+
. else
|
11
|
+
. echo "E: unknown type: $(type)"
|
12
|
+
. endif
|
13
|
+
. endfor
|
14
|
+
.endfor
|
15
|
+
/* =========================================================================
|
16
|
+
zsockopt - get/set 0MQ socket options
|
17
|
+
|
18
|
+
****************************************************
|
19
|
+
* GENERATED SOURCE CODE, DO NOT EDIT!! *
|
20
|
+
* TO CHANGE THIS, EDIT scripts/sockopts.gsl *
|
21
|
+
* AND RUN ./generate in models/. *
|
22
|
+
****************************************************
|
23
|
+
-------------------------------------------------------------------------
|
24
|
+
Copyright (c) 1991-2013 iMatix Corporation <www.imatix.com>
|
25
|
+
Copyright other contributors as noted in the AUTHORS file.
|
26
|
+
|
27
|
+
This file is part of CZMQ, the high-level C binding for 0MQ:
|
28
|
+
http://czmq.zeromq.org.
|
29
|
+
|
30
|
+
This is free software; you can redistribute it and/or modify it under
|
31
|
+
the terms of the GNU Lesser General Public License as published by the
|
32
|
+
Free Software Foundation; either version 3 of the License, or (at your
|
33
|
+
option) any later version.
|
34
|
+
|
35
|
+
This software is distributed in the hope that it will be useful, but
|
36
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABIL-
|
37
|
+
ITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
38
|
+
Public License for more details.
|
39
|
+
|
40
|
+
You should have received a copy of the GNU Lesser General Public License
|
41
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
42
|
+
=========================================================================
|
43
|
+
*/
|
44
|
+
|
45
|
+
#ifndef __ZSOCKOPT_H_INCLUDED__
|
46
|
+
#define __ZSOCKOPT_H_INCLUDED__
|
47
|
+
|
48
|
+
#ifdef __cplusplus
|
49
|
+
extern "C" {
|
50
|
+
#endif
|
51
|
+
|
52
|
+
// @interface
|
53
|
+
.for version
|
54
|
+
#if (ZMQ_VERSION_MAJOR == $(major))
|
55
|
+
// Get socket options
|
56
|
+
. for option
|
57
|
+
. if defined (.minor)
|
58
|
+
# if (ZMQ_VERSION_MINOR == $(minor))
|
59
|
+
. endif
|
60
|
+
. if mode = "rw" | mode = "r"
|
61
|
+
CZMQ_EXPORT $(ctype) zsocket_$(name) (void *zocket);
|
62
|
+
. endif
|
63
|
+
. if defined (.minor)
|
64
|
+
# endif
|
65
|
+
. endif
|
66
|
+
. endfor
|
67
|
+
|
68
|
+
// Set socket options
|
69
|
+
. for option
|
70
|
+
. if defined (.minor)
|
71
|
+
# if (ZMQ_VERSION_MINOR == $(minor))
|
72
|
+
. endif
|
73
|
+
. if mode = "rw" | mode = "w"
|
74
|
+
CZMQ_EXPORT void zsocket_set_$(name) (void *zocket, $(ctype_const) $(name));
|
75
|
+
. endif
|
76
|
+
. if defined (.minor)
|
77
|
+
# endif
|
78
|
+
. endif
|
79
|
+
. endfor
|
80
|
+
. for header
|
81
|
+
|
82
|
+
$(string.trim(.):)
|
83
|
+
. endfor
|
84
|
+
#endif
|
85
|
+
|
86
|
+
.endfor
|
87
|
+
// Self test of this class
|
88
|
+
int zsockopt_test (bool verbose);
|
89
|
+
// @end
|
90
|
+
|
91
|
+
.for version
|
92
|
+
// Deprecated function names
|
93
|
+
#if (ZMQ_VERSION_MAJOR == $(major))
|
94
|
+
. for option
|
95
|
+
. if defined (.minor)
|
96
|
+
# if (ZMQ_VERSION_MINOR == $(minor))
|
97
|
+
. endif
|
98
|
+
. if mode = "rw" | mode = "r"
|
99
|
+
#define zsockopt_$(name) zsocket_$(name)
|
100
|
+
. endif
|
101
|
+
. if mode = "rw" | mode = "w"
|
102
|
+
#define zsockopt_set_$(name) zsocket_set_$(name)
|
103
|
+
. endif
|
104
|
+
. if defined (.minor)
|
105
|
+
# endif
|
106
|
+
. endif
|
107
|
+
. endfor
|
108
|
+
#endif
|
109
|
+
|
110
|
+
.endfor
|
111
|
+
|
112
|
+
#ifdef __cplusplus
|
113
|
+
}
|
114
|
+
#endif
|
115
|
+
|
116
|
+
#endif
|
117
|
+
.output "../src/zsockopt.c"
|
118
|
+
/* =========================================================================
|
119
|
+
zsockopt - get/set 0MQ socket options
|
120
|
+
|
121
|
+
****************************************************
|
122
|
+
* GENERATED SOURCE CODE, DO NOT EDIT!! *
|
123
|
+
* TO CHANGE THIS, EDIT scripts/sockopts.gsl *
|
124
|
+
* AND RUN ./generate in models/. *
|
125
|
+
****************************************************
|
126
|
+
-------------------------------------------------------------------------
|
127
|
+
Copyright (c) 1991-2013 iMatix Corporation <www.imatix.com>
|
128
|
+
Copyright other contributors as noted in the AUTHORS file.
|
129
|
+
|
130
|
+
This file is part of CZMQ, the high-level C binding for 0MQ:
|
131
|
+
http://czmq.zeromq.org.
|
132
|
+
|
133
|
+
This is free software; you can redistribute it and/or modify it under
|
134
|
+
the terms of the GNU Lesser General Public License as published by the
|
135
|
+
Free Software Foundation; either version 3 of the License, or (at your
|
136
|
+
option) any later version.
|
137
|
+
|
138
|
+
This software is distributed in the hope that it will be useful, but
|
139
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABIL-
|
140
|
+
ITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
141
|
+
Public License for more details.
|
142
|
+
|
143
|
+
You should have received a copy of the GNU Lesser General Public License
|
144
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
145
|
+
=========================================================================
|
146
|
+
*/
|
147
|
+
|
148
|
+
/*
|
149
|
+
@header
|
150
|
+
The zsockopt class provides access to the 0MQ getsockopt/setsockopt API.
|
151
|
+
@discuss
|
152
|
+
This class is generated, using the GSL code generator. See the sockopts
|
153
|
+
XML file, which provides the metadata, and the sockopts.gsl template,
|
154
|
+
which does the work.
|
155
|
+
@end
|
156
|
+
*/
|
157
|
+
|
158
|
+
#include "../include/czmq.h"
|
159
|
+
|
160
|
+
.for version
|
161
|
+
#if (ZMQ_VERSION_MAJOR == $(major))
|
162
|
+
. for option
|
163
|
+
. if defined (.minor)
|
164
|
+
# if (ZMQ_VERSION_MINOR == $(minor))
|
165
|
+
. endif
|
166
|
+
. if mode = "rw" | mode = "w"
|
167
|
+
// --------------------------------------------------------------------------
|
168
|
+
// Set socket ZMQ_$(NAME) value
|
169
|
+
// *** GENERATED SOURCE CODE, DO NOT EDIT, SEE INSTRUCTIONS AT START ***
|
170
|
+
|
171
|
+
void
|
172
|
+
zsocket_set_$(name) (void *zocket, $(ctype_const) $(name))
|
173
|
+
{
|
174
|
+
# if defined (ZMQ_$(NAME))
|
175
|
+
. if count (restrict)
|
176
|
+
. for restrict
|
177
|
+
. if first()
|
178
|
+
. .open = "if ("
|
179
|
+
. else
|
180
|
+
. .open = "&& "
|
181
|
+
. endif
|
182
|
+
. if last()
|
183
|
+
. .close = ") {"
|
184
|
+
. else
|
185
|
+
. .close = ""
|
186
|
+
. endif
|
187
|
+
$(open)zsockopt_type (zocket) != ZMQ_$(TYPE)$(close)
|
188
|
+
. endfor
|
189
|
+
printf ("ZMQ_$(NAME) is not valid on %s sockets\\n", zsocket_type_str (zocket));
|
190
|
+
assert (false);
|
191
|
+
}
|
192
|
+
. endif
|
193
|
+
. if ctype = "int"
|
194
|
+
. if type = "uint64"
|
195
|
+
uint64_t value = $(name);
|
196
|
+
int rc = zmq_setsockopt (zocket, ZMQ_$(NAME), &value, sizeof (uint64_t));
|
197
|
+
. elsif type = "int64"
|
198
|
+
int64_t value = $(name);
|
199
|
+
int rc = zmq_setsockopt (zocket, ZMQ_$(NAME), &value, sizeof (int64_t));
|
200
|
+
. elsif type = "uint32"
|
201
|
+
uint32_t value = $(name);
|
202
|
+
int rc = zmq_setsockopt (zocket, ZMQ_$(NAME), &value, sizeof (uint32_t));
|
203
|
+
. else
|
204
|
+
int rc = zmq_setsockopt (zocket, ZMQ_$(NAME), &$(name), sizeof (int));
|
205
|
+
. endif
|
206
|
+
. else
|
207
|
+
int rc = zmq_setsockopt (zocket, ZMQ_$(NAME), $(name), strlen ($(name)));
|
208
|
+
. endif
|
209
|
+
assert (rc == 0 || errno == ETERM);
|
210
|
+
# endif
|
211
|
+
}
|
212
|
+
|
213
|
+
|
214
|
+
. endif
|
215
|
+
. if mode = "rw" | mode = "r"
|
216
|
+
// --------------------------------------------------------------------------
|
217
|
+
// Return socket ZMQ_$(NAME) value
|
218
|
+
// *** GENERATED SOURCE CODE, DO NOT EDIT, SEE INSTRUCTIONS AT START ***
|
219
|
+
|
220
|
+
$(ctype)
|
221
|
+
zsocket_$(name) (void *zocket)
|
222
|
+
{
|
223
|
+
# if defined (ZMQ_$(NAME))
|
224
|
+
. if type = "uint64"
|
225
|
+
uint64_t $(name);
|
226
|
+
size_t option_len = sizeof (uint64_t);
|
227
|
+
zmq_getsockopt (zocket, ZMQ_$(NAME), &$(name), &option_len);
|
228
|
+
. elsif type = "int64"
|
229
|
+
int64_t $(name);
|
230
|
+
size_t option_len = sizeof (int64_t);
|
231
|
+
zmq_getsockopt (zocket, ZMQ_$(NAME), &$(name), &option_len);
|
232
|
+
. elsif type = "uint32"
|
233
|
+
uint32_t $(name);
|
234
|
+
size_t option_len = sizeof (uint32_t);
|
235
|
+
zmq_getsockopt (zocket, ZMQ_$(NAME), &$(name), &option_len);
|
236
|
+
. elsif type = "int"
|
237
|
+
int $(name);
|
238
|
+
size_t option_len = sizeof (int);
|
239
|
+
zmq_getsockopt (zocket, ZMQ_$(NAME), &$(name), &option_len);
|
240
|
+
. elsif type = "blob"
|
241
|
+
size_t option_len = 255;
|
242
|
+
char *$(name) = (char *) zmalloc (option_len);
|
243
|
+
zmq_getsockopt (zocket, ZMQ_$(NAME), $(name), &option_len);
|
244
|
+
. endif
|
245
|
+
. if type = "int"
|
246
|
+
return $(name);
|
247
|
+
. else
|
248
|
+
return ($(ctype)) $(name);
|
249
|
+
. endif
|
250
|
+
# endif
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
. endif
|
255
|
+
. if defined (.minor)
|
256
|
+
# endif
|
257
|
+
. endif
|
258
|
+
. endfor
|
259
|
+
. for source
|
260
|
+
$(string.trim(.):)
|
261
|
+
|
262
|
+
. endfor
|
263
|
+
#endif
|
264
|
+
|
265
|
+
.endfor
|
266
|
+
// --------------------------------------------------------------------------
|
267
|
+
// Selftest
|
268
|
+
// *** GENERATED SOURCE CODE, DO NOT EDIT, SEE INSTRUCTIONS AT START ***
|
269
|
+
|
270
|
+
int
|
271
|
+
zsockopt_test (bool verbose)
|
272
|
+
{
|
273
|
+
printf (" * zsockopt: ");
|
274
|
+
|
275
|
+
// @selftest
|
276
|
+
zctx_t *ctx = zctx_new ();
|
277
|
+
assert (ctx);
|
278
|
+
void *zocket;
|
279
|
+
.for version
|
280
|
+
#if (ZMQ_VERSION_MAJOR == $(major))
|
281
|
+
. for option
|
282
|
+
. if defined (.minor)
|
283
|
+
# if (ZMQ_VERSION_MINOR == $(minor))
|
284
|
+
. endif
|
285
|
+
# if defined (ZMQ_$(NAME))
|
286
|
+
zocket = zsocket_new (ctx, ZMQ_$(TEST));
|
287
|
+
assert (zocket);
|
288
|
+
. if mode = "rw" | mode = "w"
|
289
|
+
. if ctype = "int"
|
290
|
+
zsocket_set_$(name) (zocket, 1);
|
291
|
+
. if mode = "rw"
|
292
|
+
assert (zsocket_$(name) (zocket) == 1);
|
293
|
+
. endif
|
294
|
+
. else
|
295
|
+
zsocket_set_$(name) (zocket, "test");
|
296
|
+
. endif
|
297
|
+
. endif
|
298
|
+
. if mode = "rw" | mode = "r"
|
299
|
+
. if type = "blob"
|
300
|
+
char *$(name) = zsocket_$(name) (zocket);
|
301
|
+
assert ($(name));
|
302
|
+
free ($(name));
|
303
|
+
. else
|
304
|
+
zsocket_$(name) (zocket);
|
305
|
+
. endif
|
306
|
+
. endif
|
307
|
+
zsocket_destroy (ctx, zocket);
|
308
|
+
# endif
|
309
|
+
. if defined (.minor)
|
310
|
+
# endif
|
311
|
+
. endif
|
312
|
+
. endfor
|
313
|
+
. for selftest
|
314
|
+
|
315
|
+
$(string.trim(.):)
|
316
|
+
. endfor
|
317
|
+
#endif
|
318
|
+
|
319
|
+
.endfor
|
320
|
+
zctx_destroy (&ctx);
|
321
|
+
// @end
|
322
|
+
|
323
|
+
printf ("OK\\n");
|
324
|
+
return 0;
|
325
|
+
}
|