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,127 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
zhash - generic type-free hash container
|
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 __ZHASH_H_INCLUDED__
|
27
|
+
#define __ZHASH_H_INCLUDED__
|
28
|
+
|
29
|
+
#ifdef __cplusplus
|
30
|
+
extern "C" {
|
31
|
+
#endif
|
32
|
+
|
33
|
+
// Opaque class structure
|
34
|
+
typedef struct _zhash_t zhash_t;
|
35
|
+
|
36
|
+
// @interface
|
37
|
+
// Callback function for zhash_foreach method
|
38
|
+
typedef int (zhash_foreach_fn) (const char *key, void *item, void *argument);
|
39
|
+
// Callback function for zhash_freefn method
|
40
|
+
typedef void (zhash_free_fn) (void *data);
|
41
|
+
|
42
|
+
// Create a new, empty hash container
|
43
|
+
CZMQ_EXPORT zhash_t *
|
44
|
+
zhash_new (void);
|
45
|
+
|
46
|
+
// Destroy a hash container and all items in it
|
47
|
+
CZMQ_EXPORT void
|
48
|
+
zhash_destroy (zhash_t **self_p);
|
49
|
+
|
50
|
+
// Insert item into hash table with specified key and item.
|
51
|
+
// If key is already present returns -1 and leaves existing item unchanged
|
52
|
+
// Returns 0 on success.
|
53
|
+
CZMQ_EXPORT int
|
54
|
+
zhash_insert (zhash_t *self, const char *key, void *item);
|
55
|
+
|
56
|
+
// Update item into hash table with specified key and item.
|
57
|
+
// If key is already present, destroys old item and inserts new one.
|
58
|
+
// Use free_fn method to ensure deallocator is properly called on item.
|
59
|
+
CZMQ_EXPORT void
|
60
|
+
zhash_update (zhash_t *self, const char *key, void *item);
|
61
|
+
|
62
|
+
// Remove an item specified by key from the hash table. If there was no such
|
63
|
+
// item, this function does nothing.
|
64
|
+
CZMQ_EXPORT void
|
65
|
+
zhash_delete (zhash_t *self, const char *key);
|
66
|
+
|
67
|
+
// Return the item at the specified key, or null
|
68
|
+
CZMQ_EXPORT void *
|
69
|
+
zhash_lookup (zhash_t *self, const char *key);
|
70
|
+
|
71
|
+
// Reindexes an item from an old key to a new key. If there was no such
|
72
|
+
// item, does nothing. Returns 0 if successful, else -1.
|
73
|
+
CZMQ_EXPORT int
|
74
|
+
zhash_rename (zhash_t *self, const char *old_key, const char *new_key);
|
75
|
+
|
76
|
+
// Set a free function for the specified hash table item. When the item is
|
77
|
+
// destroyed, the free function, if any, is called on that item.
|
78
|
+
// Use this when hash items are dynamically allocated, to ensure that
|
79
|
+
// you don't have memory leaks. You can pass 'free' or NULL as a free_fn.
|
80
|
+
// Returns the item, or NULL if there is no such item.
|
81
|
+
CZMQ_EXPORT void *
|
82
|
+
zhash_freefn (zhash_t *self, const char *key, zhash_free_fn *free_fn);
|
83
|
+
|
84
|
+
// Return the number of keys/items in the hash table
|
85
|
+
CZMQ_EXPORT size_t
|
86
|
+
zhash_size (zhash_t *self);
|
87
|
+
|
88
|
+
// Make copy of hash table
|
89
|
+
CZMQ_EXPORT zhash_t *
|
90
|
+
zhash_dup (zhash_t *self);
|
91
|
+
|
92
|
+
// Return keys for items in table
|
93
|
+
CZMQ_EXPORT zlist_t *
|
94
|
+
zhash_keys (zhash_t *self);
|
95
|
+
|
96
|
+
// Apply function to each item in the hash table. Items are iterated in no
|
97
|
+
// defined order. Stops if callback function returns non-zero and returns
|
98
|
+
// final return code from callback function (zero = success).
|
99
|
+
CZMQ_EXPORT int
|
100
|
+
zhash_foreach (zhash_t *self, zhash_foreach_fn *callback, void *argument);
|
101
|
+
|
102
|
+
// Save hash table to a text file in name=value format. Hash values must be
|
103
|
+
// printable strings; keys may not contain '=' character. Returns 0 if OK,
|
104
|
+
// else -1 if a file error occurred.
|
105
|
+
CZMQ_EXPORT int
|
106
|
+
zhash_save (zhash_t *self, char *filename);
|
107
|
+
|
108
|
+
// Load hash table from a text file in name=value format; hash table must
|
109
|
+
// already exist. Hash values must printable strings; keys may not contain
|
110
|
+
// '=' character. Returns 0 if OK, else -1 if a file was not readable.
|
111
|
+
CZMQ_EXPORT int
|
112
|
+
zhash_load (zhash_t *self, char *filename);
|
113
|
+
|
114
|
+
// Set hash for automatic value destruction
|
115
|
+
CZMQ_EXPORT void
|
116
|
+
zhash_autofree (zhash_t *self);
|
117
|
+
|
118
|
+
// Self test of this class
|
119
|
+
CZMQ_EXPORT void
|
120
|
+
zhash_test (int verbose);
|
121
|
+
// @end
|
122
|
+
|
123
|
+
#ifdef __cplusplus
|
124
|
+
}
|
125
|
+
#endif
|
126
|
+
|
127
|
+
#endif
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
zlist - generic type-free list container
|
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 __ZLIST_H_INCLUDED__
|
27
|
+
#define __ZLIST_H_INCLUDED__
|
28
|
+
|
29
|
+
#ifdef __cplusplus
|
30
|
+
extern "C" {
|
31
|
+
#endif
|
32
|
+
|
33
|
+
// Opaque class structure
|
34
|
+
typedef struct _zlist_t zlist_t;
|
35
|
+
|
36
|
+
// @interface
|
37
|
+
// Comparison function for zlist_sort method
|
38
|
+
typedef bool (zlist_compare_fn) (void *item1, void *item2);
|
39
|
+
|
40
|
+
// Create a new list container
|
41
|
+
CZMQ_EXPORT zlist_t *
|
42
|
+
zlist_new (void);
|
43
|
+
|
44
|
+
// Destroy a list container
|
45
|
+
CZMQ_EXPORT void
|
46
|
+
zlist_destroy (zlist_t **self_p);
|
47
|
+
|
48
|
+
// Return first item in the list, or null
|
49
|
+
CZMQ_EXPORT void *
|
50
|
+
zlist_first (zlist_t *self);
|
51
|
+
|
52
|
+
// Return last item in the list, or null
|
53
|
+
CZMQ_EXPORT void *
|
54
|
+
zlist_last (zlist_t *self);
|
55
|
+
|
56
|
+
// Return first item in the list, or null, leaves the cursor
|
57
|
+
CZMQ_EXPORT void *
|
58
|
+
zlist_head (zlist_t *self);
|
59
|
+
|
60
|
+
// Return last item in the list, or null, leaves the cursor
|
61
|
+
CZMQ_EXPORT void *
|
62
|
+
zlist_tail (zlist_t *self);
|
63
|
+
|
64
|
+
// Return next item in the list, or null
|
65
|
+
CZMQ_EXPORT void *
|
66
|
+
zlist_next (zlist_t *self);
|
67
|
+
|
68
|
+
// Append an item to the end of the list
|
69
|
+
CZMQ_EXPORT int
|
70
|
+
zlist_append (zlist_t *self, void *item);
|
71
|
+
|
72
|
+
// Push an item to the start of the list
|
73
|
+
CZMQ_EXPORT int
|
74
|
+
zlist_push (zlist_t *self, void *item);
|
75
|
+
|
76
|
+
// Pop the item off the start of the list, if any
|
77
|
+
CZMQ_EXPORT void *
|
78
|
+
zlist_pop (zlist_t *self);
|
79
|
+
|
80
|
+
// Remove the specified item from the list if present
|
81
|
+
CZMQ_EXPORT void
|
82
|
+
zlist_remove (zlist_t *self, void *item);
|
83
|
+
|
84
|
+
// Copy the entire list, return the copy
|
85
|
+
CZMQ_EXPORT zlist_t *
|
86
|
+
zlist_dup (zlist_t *self);
|
87
|
+
|
88
|
+
// Copy the entire list, return the copy (deprecated)
|
89
|
+
CZMQ_EXPORT zlist_t *
|
90
|
+
zlist_copy (zlist_t *self);
|
91
|
+
|
92
|
+
// Return number of items in the list
|
93
|
+
CZMQ_EXPORT size_t
|
94
|
+
zlist_size (zlist_t *self);
|
95
|
+
|
96
|
+
// Sort list
|
97
|
+
CZMQ_EXPORT void
|
98
|
+
zlist_sort (zlist_t *self, zlist_compare_fn *compare);
|
99
|
+
|
100
|
+
// Set list for automatic item destruction
|
101
|
+
CZMQ_EXPORT void
|
102
|
+
zlist_autofree (zlist_t *self);
|
103
|
+
|
104
|
+
// Self test of this class
|
105
|
+
CZMQ_EXPORT void
|
106
|
+
zlist_test (int verbose);
|
107
|
+
// @end
|
108
|
+
|
109
|
+
#ifdef __cplusplus
|
110
|
+
}
|
111
|
+
#endif
|
112
|
+
|
113
|
+
#endif
|
@@ -0,0 +1,98 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
zloop - event-driven reactor
|
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 __ZLOOP_H_INCLUDED__
|
27
|
+
#define __ZLOOP_H_INCLUDED__
|
28
|
+
|
29
|
+
#ifdef __cplusplus
|
30
|
+
extern "C" {
|
31
|
+
#endif
|
32
|
+
|
33
|
+
|
34
|
+
// Opaque class structure
|
35
|
+
typedef struct _zloop_t zloop_t;
|
36
|
+
|
37
|
+
// @interface
|
38
|
+
// Callback function for reactor events
|
39
|
+
typedef int (zloop_fn) (zloop_t *loop, zmq_pollitem_t *item, void *arg);
|
40
|
+
|
41
|
+
// Create a new zloop reactor
|
42
|
+
CZMQ_EXPORT zloop_t *
|
43
|
+
zloop_new (void);
|
44
|
+
|
45
|
+
// Destroy a reactor
|
46
|
+
CZMQ_EXPORT void
|
47
|
+
zloop_destroy (zloop_t **self_p);
|
48
|
+
|
49
|
+
// Register pollitem with the reactor. When the pollitem is ready, will call
|
50
|
+
// the handler, passing the arg. Returns 0 if OK, -1 if there was an error.
|
51
|
+
// If you register the pollitem more than once, each instance will invoke its
|
52
|
+
// corresponding handler.
|
53
|
+
CZMQ_EXPORT int
|
54
|
+
zloop_poller (zloop_t *self, zmq_pollitem_t *item, zloop_fn handler, void *arg);
|
55
|
+
|
56
|
+
// Cancel a pollitem from the reactor, specified by socket or FD. If both
|
57
|
+
// are specified, uses only socket. If multiple poll items exist for same
|
58
|
+
// socket/FD, cancels ALL of them.
|
59
|
+
CZMQ_EXPORT void
|
60
|
+
zloop_poller_end (zloop_t *self, zmq_pollitem_t *item);
|
61
|
+
|
62
|
+
// Register a timer that expires after some delay and repeats some number of
|
63
|
+
// times. At each expiry, will call the handler, passing the arg. To
|
64
|
+
// run a timer forever, use 0 times. Returns 0 if OK, -1 if there was an
|
65
|
+
// error.
|
66
|
+
CZMQ_EXPORT int
|
67
|
+
zloop_timer (zloop_t *self, size_t delay, size_t times, zloop_fn handler, void *arg);
|
68
|
+
|
69
|
+
// Cancel all timers for a specific argument (as provided in zloop_timer)
|
70
|
+
CZMQ_EXPORT int
|
71
|
+
zloop_timer_end (zloop_t *self, void *arg);
|
72
|
+
|
73
|
+
// Set verbose tracing of reactor on/off
|
74
|
+
CZMQ_EXPORT void
|
75
|
+
zloop_set_verbose (zloop_t *self, bool verbose);
|
76
|
+
|
77
|
+
// Start the reactor. Takes control of the thread and returns when the 0MQ
|
78
|
+
// context is terminated or the process is interrupted, or any event handler
|
79
|
+
// returns -1. Event handlers may register new sockets and timers, and
|
80
|
+
// cancel sockets. Returns 0 if interrupted, -1 if cancelled by a handler.
|
81
|
+
CZMQ_EXPORT int
|
82
|
+
zloop_start (zloop_t *self);
|
83
|
+
|
84
|
+
// Self test of this class
|
85
|
+
CZMQ_EXPORT void
|
86
|
+
zloop_test (bool verbose);
|
87
|
+
// @end
|
88
|
+
|
89
|
+
|
90
|
+
// to suppress disabling the event handler on POLLERR
|
91
|
+
// set this in pollitem.events
|
92
|
+
#define ZMQ_IGNERR 8
|
93
|
+
|
94
|
+
#ifdef __cplusplus
|
95
|
+
}
|
96
|
+
#endif
|
97
|
+
|
98
|
+
#endif
|
@@ -0,0 +1,165 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
zmsg - working with multipart messages
|
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 __ZMSG_H_INCLUDED__
|
27
|
+
#define __ZMSG_H_INCLUDED__
|
28
|
+
|
29
|
+
#ifdef __cplusplus
|
30
|
+
extern "C" {
|
31
|
+
#endif
|
32
|
+
|
33
|
+
// Opaque class structure
|
34
|
+
typedef struct _zmsg_t zmsg_t;
|
35
|
+
|
36
|
+
// @interface
|
37
|
+
// Create a new empty message object
|
38
|
+
CZMQ_EXPORT zmsg_t *
|
39
|
+
zmsg_new (void);
|
40
|
+
|
41
|
+
// Destroy a message object and all frames it contains
|
42
|
+
CZMQ_EXPORT void
|
43
|
+
zmsg_destroy (zmsg_t **self_p);
|
44
|
+
|
45
|
+
// Read 1 or more frames off the socket, into a new message object
|
46
|
+
CZMQ_EXPORT zmsg_t *
|
47
|
+
zmsg_recv (void *socket);
|
48
|
+
|
49
|
+
// Send a message to the socket, and then destroy it
|
50
|
+
CZMQ_EXPORT int
|
51
|
+
zmsg_send (zmsg_t **self_p, void *socket);
|
52
|
+
|
53
|
+
// Return number of frames in message
|
54
|
+
CZMQ_EXPORT size_t
|
55
|
+
zmsg_size (zmsg_t *self);
|
56
|
+
|
57
|
+
// Return combined size of all frames in message
|
58
|
+
CZMQ_EXPORT size_t
|
59
|
+
zmsg_content_size (zmsg_t *self);
|
60
|
+
|
61
|
+
// Push frame to front of message, before first frame
|
62
|
+
CZMQ_EXPORT int
|
63
|
+
zmsg_push (zmsg_t *self, zframe_t *frame);
|
64
|
+
|
65
|
+
// Pop frame off front of message, caller now owns frame
|
66
|
+
CZMQ_EXPORT zframe_t *
|
67
|
+
zmsg_pop (zmsg_t *self);
|
68
|
+
|
69
|
+
// Add frame to end of message, after last frame
|
70
|
+
CZMQ_EXPORT int
|
71
|
+
zmsg_add (zmsg_t *self, zframe_t *frame);
|
72
|
+
|
73
|
+
// Push block of memory as new frame to front of message.
|
74
|
+
// Returns 0 on success, -1 on error.
|
75
|
+
CZMQ_EXPORT int
|
76
|
+
zmsg_pushmem (zmsg_t *self, const void *src, size_t size);
|
77
|
+
|
78
|
+
// Push block of memory as new frame to end of message.
|
79
|
+
// Returns 0 on success, -1 on error.
|
80
|
+
CZMQ_EXPORT int
|
81
|
+
zmsg_addmem (zmsg_t *self, const void *src, size_t size);
|
82
|
+
|
83
|
+
// Push string as new frame to front of message.
|
84
|
+
// Returns 0 on success, -1 on error.
|
85
|
+
CZMQ_EXPORT int
|
86
|
+
zmsg_pushstr (zmsg_t *self, const char *format, ...);
|
87
|
+
|
88
|
+
// Push string as new frame to end of message.
|
89
|
+
// Returns 0 on success, -1 on error.
|
90
|
+
CZMQ_EXPORT int
|
91
|
+
zmsg_addstr (zmsg_t *self, const char *format, ...);
|
92
|
+
|
93
|
+
// Pop frame off front of message, return as fresh string
|
94
|
+
CZMQ_EXPORT char *
|
95
|
+
zmsg_popstr (zmsg_t *self);
|
96
|
+
|
97
|
+
// Push frame to front of message, before first frame
|
98
|
+
// Pushes an empty frame in front of frame
|
99
|
+
CZMQ_EXPORT void
|
100
|
+
zmsg_wrap (zmsg_t *self, zframe_t *frame);
|
101
|
+
|
102
|
+
// Pop frame off front of message, caller now owns frame
|
103
|
+
// If next frame is empty, pops and destroys that empty frame.
|
104
|
+
CZMQ_EXPORT zframe_t *
|
105
|
+
zmsg_unwrap (zmsg_t *self);
|
106
|
+
|
107
|
+
// Remove frame from message, at any position, caller owns it
|
108
|
+
CZMQ_EXPORT void
|
109
|
+
zmsg_remove (zmsg_t *self, zframe_t *frame);
|
110
|
+
|
111
|
+
// Return first frame in message, or null
|
112
|
+
CZMQ_EXPORT zframe_t *
|
113
|
+
zmsg_first (zmsg_t *self);
|
114
|
+
|
115
|
+
// Return next frame in message, or null
|
116
|
+
CZMQ_EXPORT zframe_t *
|
117
|
+
zmsg_next (zmsg_t *self);
|
118
|
+
|
119
|
+
// Return last frame in message, or null
|
120
|
+
CZMQ_EXPORT zframe_t *
|
121
|
+
zmsg_last (zmsg_t *self);
|
122
|
+
|
123
|
+
// Save message to an open file, return 0 if OK, else -1.
|
124
|
+
CZMQ_EXPORT int
|
125
|
+
zmsg_save (zmsg_t *self, FILE *file);
|
126
|
+
|
127
|
+
// Load/append an open file into message, create new message if
|
128
|
+
// null message provided.
|
129
|
+
CZMQ_EXPORT zmsg_t *
|
130
|
+
zmsg_load (zmsg_t *self, FILE *file);
|
131
|
+
|
132
|
+
// Encode message to a new buffer, return buffer size
|
133
|
+
CZMQ_EXPORT size_t
|
134
|
+
zmsg_encode (zmsg_t *self, byte **buffer);
|
135
|
+
|
136
|
+
// Decode a buffer into a new message, returns NULL if buffer is not
|
137
|
+
// properly formatted.
|
138
|
+
CZMQ_EXPORT zmsg_t *
|
139
|
+
zmsg_decode (byte *buffer, size_t buffer_size);
|
140
|
+
|
141
|
+
// Create copy of message, as new message object
|
142
|
+
CZMQ_EXPORT zmsg_t *
|
143
|
+
zmsg_dup (zmsg_t *self);
|
144
|
+
|
145
|
+
// Print message to stderr, for debugging
|
146
|
+
CZMQ_EXPORT void
|
147
|
+
zmsg_dump (zmsg_t *self);
|
148
|
+
|
149
|
+
// Push block of memory as new frame to end of message.
|
150
|
+
// The frame is constructed using zero-copy.
|
151
|
+
// Returns 0 on success, -1 on error.
|
152
|
+
// DEPRECATED - will be removed for next stable release
|
153
|
+
CZMQ_EXPORT int
|
154
|
+
zmsg_addmem_zero_copy (zmsg_t *self, void *src, size_t size, zframe_free_fn *free_fn, void *arg);
|
155
|
+
|
156
|
+
// Self test of this class
|
157
|
+
CZMQ_EXPORT int
|
158
|
+
zmsg_test (bool verbose);
|
159
|
+
// @end
|
160
|
+
|
161
|
+
#ifdef __cplusplus
|
162
|
+
}
|
163
|
+
#endif
|
164
|
+
|
165
|
+
#endif
|