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,664 @@
|
|
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
|
+
/*
|
27
|
+
@header
|
28
|
+
Expandable hash table container
|
29
|
+
@discuss
|
30
|
+
Note that it's relatively slow (~50k insertions/deletes per second), so
|
31
|
+
don't do inserts/updates on the critical path for message I/O. It can
|
32
|
+
do ~2.5M lookups per second for 16-char keys. Timed on a 1.6GHz CPU.
|
33
|
+
@end
|
34
|
+
*/
|
35
|
+
|
36
|
+
#include "../include/czmq.h"
|
37
|
+
|
38
|
+
// Hash table performance parameters
|
39
|
+
|
40
|
+
#define INITIAL_SIZE 255 // Initial size in items
|
41
|
+
#define LOAD_FACTOR 75 // Percent loading before splitting
|
42
|
+
#define GROWTH_FACTOR 200 // Increase in % after splitting
|
43
|
+
|
44
|
+
|
45
|
+
// Hash item, used internally only
|
46
|
+
|
47
|
+
typedef struct _item_t {
|
48
|
+
void *value; // Opaque item value
|
49
|
+
struct _item_t *next; // Next item in the hash slot
|
50
|
+
qbyte index; // Index of item in table
|
51
|
+
char *key; // Item's original key
|
52
|
+
zhash_free_fn *free_fn; // Value free function if any
|
53
|
+
} item_t;
|
54
|
+
|
55
|
+
|
56
|
+
// ---------------------------------------------------------------------
|
57
|
+
// Structure of our class
|
58
|
+
|
59
|
+
struct _zhash_t {
|
60
|
+
size_t size; // Current size of hash table
|
61
|
+
size_t limit; // Current hash table limit
|
62
|
+
item_t **items; // Array of items
|
63
|
+
uint cached_index; // Avoids duplicate hash calculations
|
64
|
+
bool autofree; // If true, free values in destructor
|
65
|
+
};
|
66
|
+
|
67
|
+
|
68
|
+
// --------------------------------------------------------------------------
|
69
|
+
// Local helper function
|
70
|
+
// Compute hash for key string
|
71
|
+
|
72
|
+
static uint
|
73
|
+
s_item_hash (const char *key, size_t limit)
|
74
|
+
{
|
75
|
+
// Modified Bernstein hashing function
|
76
|
+
uint key_hash = 0;
|
77
|
+
while (*key)
|
78
|
+
key_hash = 33 * key_hash ^ *key++;
|
79
|
+
key_hash %= limit;
|
80
|
+
return key_hash;
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// --------------------------------------------------------------------------
|
85
|
+
// Local helper function
|
86
|
+
// Lookup item in hash table, returns item or NULL
|
87
|
+
|
88
|
+
static item_t *
|
89
|
+
s_item_lookup (zhash_t *self, const char *key)
|
90
|
+
{
|
91
|
+
// Look in bucket list for item by key
|
92
|
+
self->cached_index = s_item_hash (key, self->limit);
|
93
|
+
item_t *item = self->items [self->cached_index];
|
94
|
+
while (item) {
|
95
|
+
if (streq (item->key, key))
|
96
|
+
break;
|
97
|
+
item = item->next;
|
98
|
+
}
|
99
|
+
return item;
|
100
|
+
}
|
101
|
+
|
102
|
+
|
103
|
+
// --------------------------------------------------------------------------
|
104
|
+
// Local helper function
|
105
|
+
// Insert new item into hash table, returns item
|
106
|
+
// If item already existed, returns NULL
|
107
|
+
|
108
|
+
static item_t *
|
109
|
+
s_item_insert (zhash_t *self, const char *key, void *value)
|
110
|
+
{
|
111
|
+
// Check that item does not already exist in hash table
|
112
|
+
// Leaves self->cached_index with calculated hash item
|
113
|
+
item_t *item = s_item_lookup (self, key);
|
114
|
+
if (item == NULL) {
|
115
|
+
item = (item_t *) zmalloc (sizeof (item_t));
|
116
|
+
if (!item)
|
117
|
+
return NULL;
|
118
|
+
item->value = value;
|
119
|
+
item->key = strdup (key);
|
120
|
+
item->index = self->cached_index;
|
121
|
+
// Insert into start of bucket list
|
122
|
+
item->next = self->items [self->cached_index];
|
123
|
+
self->items [self->cached_index] = item;
|
124
|
+
self->size++;
|
125
|
+
}
|
126
|
+
else
|
127
|
+
item = NULL; // Signal duplicate insertion
|
128
|
+
return item;
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
// --------------------------------------------------------------------------
|
133
|
+
// Local helper function
|
134
|
+
// Destroy item in hash table, item must exist in table
|
135
|
+
|
136
|
+
static void
|
137
|
+
s_item_destroy (zhash_t *self, item_t *item, bool hard)
|
138
|
+
{
|
139
|
+
// Find previous item since it's a singly-linked list
|
140
|
+
item_t *cur_item = self->items [item->index];
|
141
|
+
item_t **prev_item = &(self->items [item->index]);
|
142
|
+
while (cur_item) {
|
143
|
+
if (cur_item == item)
|
144
|
+
break;
|
145
|
+
prev_item = &(cur_item->next);
|
146
|
+
cur_item = cur_item->next;
|
147
|
+
}
|
148
|
+
assert (cur_item);
|
149
|
+
*prev_item = item->next;
|
150
|
+
self->size--;
|
151
|
+
if (hard) {
|
152
|
+
if (item->free_fn)
|
153
|
+
(item->free_fn) (item->value);
|
154
|
+
else
|
155
|
+
if (self->autofree)
|
156
|
+
free (item->value);
|
157
|
+
|
158
|
+
free (item->key);
|
159
|
+
free (item);
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
// --------------------------------------------------------------------------
|
165
|
+
// Hash table constructor
|
166
|
+
|
167
|
+
zhash_t *
|
168
|
+
zhash_new (void)
|
169
|
+
{
|
170
|
+
zhash_t *self = (zhash_t *) zmalloc (sizeof (zhash_t));
|
171
|
+
if (self) {
|
172
|
+
self->limit = INITIAL_SIZE;
|
173
|
+
self->items = (item_t **) zmalloc (sizeof (item_t *) * self->limit);
|
174
|
+
if (!self->items)
|
175
|
+
zhash_destroy (&self);
|
176
|
+
}
|
177
|
+
return self;
|
178
|
+
}
|
179
|
+
|
180
|
+
|
181
|
+
// --------------------------------------------------------------------------
|
182
|
+
// Hash table destructor
|
183
|
+
|
184
|
+
void
|
185
|
+
zhash_destroy (zhash_t **self_p)
|
186
|
+
{
|
187
|
+
assert (self_p);
|
188
|
+
if (*self_p) {
|
189
|
+
zhash_t *self = *self_p;
|
190
|
+
uint index;
|
191
|
+
for (index = 0; index < self->limit; index++) {
|
192
|
+
// Destroy all items in this hash bucket
|
193
|
+
item_t *cur_item = self->items [index];
|
194
|
+
while (cur_item) {
|
195
|
+
item_t *next_item = cur_item->next;
|
196
|
+
s_item_destroy (self, cur_item, true);
|
197
|
+
cur_item = next_item;
|
198
|
+
}
|
199
|
+
}
|
200
|
+
if (self->items)
|
201
|
+
free (self->items);
|
202
|
+
|
203
|
+
free (self);
|
204
|
+
*self_p = NULL;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
|
208
|
+
|
209
|
+
// --------------------------------------------------------------------------
|
210
|
+
// Insert item into hash table with specified key and item
|
211
|
+
// If key is already present returns -1 and leaves existing item unchanged
|
212
|
+
// Returns 0 on success.
|
213
|
+
|
214
|
+
int
|
215
|
+
zhash_insert (zhash_t *self, const char *key, void *value)
|
216
|
+
{
|
217
|
+
assert (self);
|
218
|
+
assert (key);
|
219
|
+
|
220
|
+
// If we're exceeding the load factor of the hash table,
|
221
|
+
// resize it according to the growth factor
|
222
|
+
if (self->size >= self->limit * LOAD_FACTOR / 100) {
|
223
|
+
// Create new hash table
|
224
|
+
size_t new_limit = self->limit * GROWTH_FACTOR / 100;
|
225
|
+
item_t **new_items = (item_t **) zmalloc (sizeof (item_t *) * new_limit);
|
226
|
+
if (!new_items)
|
227
|
+
return ENOMEM;
|
228
|
+
|
229
|
+
// Move all items to the new hash table, rehashing to
|
230
|
+
// take into account new hash table limit
|
231
|
+
uint index;
|
232
|
+
for (index = 0; index != self->limit; index++) {
|
233
|
+
item_t *cur_item = self->items [index];
|
234
|
+
while (cur_item) {
|
235
|
+
item_t *next_item = cur_item->next;
|
236
|
+
uint new_index = s_item_hash (cur_item->key, new_limit);
|
237
|
+
cur_item->index = new_index;
|
238
|
+
cur_item->next = new_items [new_index];
|
239
|
+
new_items [new_index] = cur_item;
|
240
|
+
cur_item = next_item;
|
241
|
+
}
|
242
|
+
}
|
243
|
+
// Destroy old hash table
|
244
|
+
free (self->items);
|
245
|
+
self->items = new_items;
|
246
|
+
self->limit = new_limit;
|
247
|
+
}
|
248
|
+
// If necessary, take duplicate of item (string) value
|
249
|
+
if (self->autofree)
|
250
|
+
value = strdup ((char *) value);
|
251
|
+
|
252
|
+
return s_item_insert (self, key, value)? 0: -1;
|
253
|
+
}
|
254
|
+
|
255
|
+
|
256
|
+
// --------------------------------------------------------------------------
|
257
|
+
// Update item into hash table with specified key and item.
|
258
|
+
// If key is already present, destroys old item and inserts new one.
|
259
|
+
// Use free_fn method to ensure deallocator is properly called on item.
|
260
|
+
|
261
|
+
void
|
262
|
+
zhash_update (zhash_t *self, const char *key, void *value)
|
263
|
+
{
|
264
|
+
assert (self);
|
265
|
+
assert (key);
|
266
|
+
|
267
|
+
item_t *item = s_item_lookup (self, key);
|
268
|
+
if (item) {
|
269
|
+
if (item->free_fn)
|
270
|
+
(item->free_fn) (item->value);
|
271
|
+
else
|
272
|
+
if (self->autofree)
|
273
|
+
free (item->value);
|
274
|
+
|
275
|
+
// If necessary, take duplicate of item (string) value
|
276
|
+
if (self->autofree)
|
277
|
+
value = strdup ((char *) value);
|
278
|
+
item->value = value;
|
279
|
+
}
|
280
|
+
else
|
281
|
+
zhash_insert (self, key, value);
|
282
|
+
}
|
283
|
+
|
284
|
+
|
285
|
+
// --------------------------------------------------------------------------
|
286
|
+
// Remove an item specified by key from the hash table. If there was no such
|
287
|
+
// item, this function does nothing.
|
288
|
+
|
289
|
+
void
|
290
|
+
zhash_delete (zhash_t *self, const char *key)
|
291
|
+
{
|
292
|
+
assert (self);
|
293
|
+
assert (key);
|
294
|
+
|
295
|
+
item_t *item = s_item_lookup (self, key);
|
296
|
+
if (item)
|
297
|
+
s_item_destroy (self, item, true);
|
298
|
+
}
|
299
|
+
|
300
|
+
|
301
|
+
// --------------------------------------------------------------------------
|
302
|
+
// Look for item in hash table and return its item, or NULL
|
303
|
+
|
304
|
+
void *
|
305
|
+
zhash_lookup (zhash_t *self, const char *key)
|
306
|
+
{
|
307
|
+
assert (self);
|
308
|
+
assert (key);
|
309
|
+
|
310
|
+
item_t *item = s_item_lookup (self, key);
|
311
|
+
if (item)
|
312
|
+
return item->value;
|
313
|
+
else
|
314
|
+
return NULL;
|
315
|
+
}
|
316
|
+
|
317
|
+
|
318
|
+
// --------------------------------------------------------------------------
|
319
|
+
// Reindexes an item from an old key to a new key. If there was no such
|
320
|
+
// item, does nothing. If the new key already exists, deletes old item.
|
321
|
+
|
322
|
+
int
|
323
|
+
zhash_rename (zhash_t *self, const char *old_key, const char *new_key)
|
324
|
+
{
|
325
|
+
item_t *item = s_item_lookup (self, old_key);
|
326
|
+
if (item) {
|
327
|
+
s_item_destroy (self, item, false);
|
328
|
+
item_t *new_item = s_item_lookup (self, new_key);
|
329
|
+
if (new_item == NULL) {
|
330
|
+
free (item->key);
|
331
|
+
item->key = strdup (new_key);
|
332
|
+
item->index = self->cached_index;
|
333
|
+
item->next = self->items [self->cached_index];
|
334
|
+
self->items [self->cached_index] = item;
|
335
|
+
self->size++;
|
336
|
+
return 0;
|
337
|
+
}
|
338
|
+
else
|
339
|
+
return -1;
|
340
|
+
}
|
341
|
+
else
|
342
|
+
return -1;
|
343
|
+
}
|
344
|
+
|
345
|
+
|
346
|
+
// --------------------------------------------------------------------------
|
347
|
+
// Set a free function for the specified hash table item. When the item is
|
348
|
+
// destroyed, the free function, if any, is called on that item.
|
349
|
+
// Use this when hash items are dynamically allocated, to ensure that
|
350
|
+
// you don't have memory leaks. You can pass 'free' or NULL as a free_fn.
|
351
|
+
// Returns the item, or NULL if there is no such item.
|
352
|
+
|
353
|
+
void *
|
354
|
+
zhash_freefn (zhash_t *self, const char *key, zhash_free_fn *free_fn)
|
355
|
+
{
|
356
|
+
assert (self);
|
357
|
+
assert (key);
|
358
|
+
|
359
|
+
item_t *item = s_item_lookup (self, key);
|
360
|
+
if (item) {
|
361
|
+
item->free_fn = free_fn;
|
362
|
+
return item->value;
|
363
|
+
}
|
364
|
+
else
|
365
|
+
return NULL;
|
366
|
+
}
|
367
|
+
|
368
|
+
|
369
|
+
// --------------------------------------------------------------------------
|
370
|
+
// Return size of hash table
|
371
|
+
|
372
|
+
size_t
|
373
|
+
zhash_size (zhash_t *self)
|
374
|
+
{
|
375
|
+
assert (self);
|
376
|
+
return self->size;
|
377
|
+
}
|
378
|
+
|
379
|
+
|
380
|
+
// --------------------------------------------------------------------------
|
381
|
+
// Make copy of hash table
|
382
|
+
// Does not copy items themselves. Rebuilds new table so may be slow on
|
383
|
+
// very large tables. NOTE: only works with item values that are strings
|
384
|
+
// since there's no other way to know how to duplicate the item value.
|
385
|
+
|
386
|
+
zhash_t *
|
387
|
+
zhash_dup (zhash_t *self)
|
388
|
+
{
|
389
|
+
if (!self)
|
390
|
+
return NULL;
|
391
|
+
|
392
|
+
zhash_t *copy = zhash_new ();
|
393
|
+
zhash_autofree (copy);
|
394
|
+
if (copy) {
|
395
|
+
uint index;
|
396
|
+
for (index = 0; index != self->limit; index++) {
|
397
|
+
item_t *item = self->items [index];
|
398
|
+
while (item) {
|
399
|
+
zhash_insert (copy, item->key, item->value);
|
400
|
+
item = item->next;
|
401
|
+
}
|
402
|
+
}
|
403
|
+
}
|
404
|
+
return copy;
|
405
|
+
}
|
406
|
+
|
407
|
+
|
408
|
+
// --------------------------------------------------------------------------
|
409
|
+
// Return keys for items in table
|
410
|
+
|
411
|
+
zlist_t *
|
412
|
+
zhash_keys (zhash_t *self)
|
413
|
+
{
|
414
|
+
assert (self);
|
415
|
+
zlist_t *keys = zlist_new ();
|
416
|
+
zlist_autofree (keys);
|
417
|
+
|
418
|
+
uint index;
|
419
|
+
for (index = 0; index != self->limit; index++) {
|
420
|
+
item_t *item = self->items [index];
|
421
|
+
while (item) {
|
422
|
+
zlist_append (keys, item->key);
|
423
|
+
item = item->next;
|
424
|
+
}
|
425
|
+
}
|
426
|
+
return keys;
|
427
|
+
}
|
428
|
+
|
429
|
+
|
430
|
+
// --------------------------------------------------------------------------
|
431
|
+
// Apply function to each item in the hash table. Items are iterated in no
|
432
|
+
// defined order. Stops if callback function returns non-zero and returns
|
433
|
+
// final return code from callback function (zero = success).
|
434
|
+
|
435
|
+
int
|
436
|
+
zhash_foreach (zhash_t *self, zhash_foreach_fn *callback, void *argument)
|
437
|
+
{
|
438
|
+
assert (self);
|
439
|
+
int rc = 0;
|
440
|
+
uint index;
|
441
|
+
for (index = 0; index != self->limit; index++) {
|
442
|
+
item_t *item = self->items [index];
|
443
|
+
while (item) {
|
444
|
+
// Invoke callback, passing item properties and argument
|
445
|
+
item_t *next = item->next;
|
446
|
+
rc = callback (item->key, item->value, argument);
|
447
|
+
if (rc)
|
448
|
+
return rc; // End if non-zero return code
|
449
|
+
item = next;
|
450
|
+
}
|
451
|
+
}
|
452
|
+
return rc;
|
453
|
+
}
|
454
|
+
|
455
|
+
|
456
|
+
// --------------------------------------------------------------------------
|
457
|
+
// Save hash table to a text file in name=value format
|
458
|
+
// Hash values must be printable strings; keys may not contain '=' character
|
459
|
+
// Returns 0 if OK, else -1 if a file error occurred
|
460
|
+
|
461
|
+
int
|
462
|
+
zhash_save (zhash_t *self, char *filename)
|
463
|
+
{
|
464
|
+
assert (self);
|
465
|
+
|
466
|
+
FILE *handle = fopen (filename, "w");
|
467
|
+
if (!handle)
|
468
|
+
return -1; // Failed to create file
|
469
|
+
|
470
|
+
uint index;
|
471
|
+
for (index = 0; index != self->limit; index++) {
|
472
|
+
item_t *item = self->items [index];
|
473
|
+
while (item) {
|
474
|
+
fprintf (handle, "%s=%s\n", item->key, (char *) item->value);
|
475
|
+
item = item->next;
|
476
|
+
}
|
477
|
+
}
|
478
|
+
fclose (handle);
|
479
|
+
return 0;
|
480
|
+
}
|
481
|
+
|
482
|
+
|
483
|
+
// --------------------------------------------------------------------------
|
484
|
+
// Load hash table from a text file in name=value format; hash table must
|
485
|
+
// already exist. Hash values must printable strings; keys may not contain
|
486
|
+
// '=' character. Returns 0 if OK, else -1 if a file was not readable.
|
487
|
+
|
488
|
+
int
|
489
|
+
zhash_load (zhash_t *self, char *filename)
|
490
|
+
{
|
491
|
+
assert (self);
|
492
|
+
zhash_autofree (self);
|
493
|
+
|
494
|
+
FILE *handle = fopen (filename, "r");
|
495
|
+
if (!handle)
|
496
|
+
return -1; // Failed to create file
|
497
|
+
|
498
|
+
char buffer [1024];
|
499
|
+
while (fgets (buffer, 1024, handle)) {
|
500
|
+
// Buffer may end in newline, which we don't want
|
501
|
+
if (buffer [strlen (buffer) - 1] == '\n')
|
502
|
+
buffer [strlen (buffer) - 1] = 0;
|
503
|
+
// Split at equals, if any
|
504
|
+
char *equals = strchr (buffer, '=');
|
505
|
+
if (!equals)
|
506
|
+
break; // Some error, stop parsing it
|
507
|
+
*equals++ = 0;
|
508
|
+
zhash_update (self, buffer, equals);
|
509
|
+
}
|
510
|
+
fclose (handle);
|
511
|
+
return 0;
|
512
|
+
}
|
513
|
+
|
514
|
+
|
515
|
+
// --------------------------------------------------------------------------
|
516
|
+
// Set hash for automatic value destruction
|
517
|
+
|
518
|
+
void
|
519
|
+
zhash_autofree (zhash_t *self)
|
520
|
+
{
|
521
|
+
assert (self);
|
522
|
+
self->autofree = true;
|
523
|
+
}
|
524
|
+
|
525
|
+
|
526
|
+
// --------------------------------------------------------------------------
|
527
|
+
// Runs selftest of class
|
528
|
+
// TODO: add unit test for free_fn, foreach
|
529
|
+
//
|
530
|
+
|
531
|
+
static int
|
532
|
+
test_foreach (const char *key, void *item, void *arg)
|
533
|
+
{
|
534
|
+
assert (NULL != zhash_lookup ((zhash_t*) arg, key));
|
535
|
+
return 0;
|
536
|
+
}
|
537
|
+
|
538
|
+
static int
|
539
|
+
test_foreach_error (const char *key, void *item, void *arg)
|
540
|
+
{
|
541
|
+
return -1;
|
542
|
+
}
|
543
|
+
|
544
|
+
void
|
545
|
+
zhash_test (int verbose)
|
546
|
+
{
|
547
|
+
printf (" * zhash: ");
|
548
|
+
|
549
|
+
// @selftest
|
550
|
+
zhash_t *hash = zhash_new ();
|
551
|
+
assert (hash);
|
552
|
+
assert (zhash_size (hash) == 0);
|
553
|
+
|
554
|
+
// Insert some items
|
555
|
+
int rc;
|
556
|
+
rc = zhash_insert (hash, "DEADBEEF", "dead beef");
|
557
|
+
assert (rc == 0);
|
558
|
+
rc = zhash_insert (hash, "ABADCAFE", "a bad cafe");
|
559
|
+
assert (rc == 0);
|
560
|
+
rc = zhash_insert (hash, "C0DEDBAD", "coded bad");
|
561
|
+
assert (rc == 0);
|
562
|
+
rc = zhash_insert (hash, "DEADF00D", "dead food");
|
563
|
+
assert (rc == 0);
|
564
|
+
assert (zhash_size (hash) == 4);
|
565
|
+
|
566
|
+
// Look for existing items
|
567
|
+
char *item;
|
568
|
+
item = (char *) zhash_lookup (hash, "DEADBEEF");
|
569
|
+
assert (streq (item, "dead beef"));
|
570
|
+
item = (char *) zhash_lookup (hash, "ABADCAFE");
|
571
|
+
assert (streq (item, "a bad cafe"));
|
572
|
+
item = (char *) zhash_lookup (hash, "C0DEDBAD");
|
573
|
+
assert (streq (item, "coded bad"));
|
574
|
+
item = (char *) zhash_lookup (hash, "DEADF00D");
|
575
|
+
assert (streq (item, "dead food"));
|
576
|
+
|
577
|
+
// Look for non-existent items
|
578
|
+
item = (char *) zhash_lookup (hash, "foo");
|
579
|
+
assert (item == NULL);
|
580
|
+
|
581
|
+
// Try to insert duplicate items
|
582
|
+
rc = zhash_insert (hash, "DEADBEEF", "foo");
|
583
|
+
assert (rc == -1);
|
584
|
+
item = (char *) zhash_lookup (hash, "DEADBEEF");
|
585
|
+
assert (streq (item, "dead beef"));
|
586
|
+
|
587
|
+
// Rename an item
|
588
|
+
rc = zhash_rename (hash, "DEADBEEF", "LIVEBEEF");
|
589
|
+
assert (rc == 0);
|
590
|
+
rc = zhash_rename (hash, "WHATBEEF", "LIVEBEEF");
|
591
|
+
assert (rc == -1);
|
592
|
+
|
593
|
+
// Test keys method
|
594
|
+
zlist_t *keys = zhash_keys (hash);
|
595
|
+
assert (zlist_size (keys) == 4);
|
596
|
+
zlist_destroy (&keys);
|
597
|
+
|
598
|
+
// Test dup method
|
599
|
+
zhash_t *copy = zhash_dup (hash);
|
600
|
+
assert (zhash_size (copy) == 4);
|
601
|
+
item = (char *) zhash_lookup (copy, "LIVEBEEF");
|
602
|
+
assert (item);
|
603
|
+
assert (streq (item, "dead beef"));
|
604
|
+
zhash_destroy (©);
|
605
|
+
|
606
|
+
// Test foreach
|
607
|
+
assert (0 == zhash_foreach (hash, test_foreach, hash));
|
608
|
+
assert (-1 == zhash_foreach (hash, test_foreach_error, hash));
|
609
|
+
|
610
|
+
// Test save and load
|
611
|
+
zhash_save (hash, ".cache");
|
612
|
+
copy = zhash_new ();
|
613
|
+
zhash_load (copy, ".cache");
|
614
|
+
item = (char *) zhash_lookup (copy, "LIVEBEEF");
|
615
|
+
assert (item);
|
616
|
+
assert (streq (item, "dead beef"));
|
617
|
+
zhash_destroy (©);
|
618
|
+
#if (defined (WIN32))
|
619
|
+
DeleteFile (".cache");
|
620
|
+
#else
|
621
|
+
unlink (".cache");
|
622
|
+
#endif
|
623
|
+
|
624
|
+
// Delete a item
|
625
|
+
zhash_delete (hash, "LIVEBEEF");
|
626
|
+
item = (char *) zhash_lookup (hash, "LIVEBEEF");
|
627
|
+
assert (item == NULL);
|
628
|
+
assert (zhash_size (hash) == 3);
|
629
|
+
|
630
|
+
// Check that the queue is robust against random usage
|
631
|
+
struct {
|
632
|
+
char name [100];
|
633
|
+
bool exists;
|
634
|
+
} testset [200];
|
635
|
+
memset (testset, 0, sizeof (testset));
|
636
|
+
int testmax = 200, testnbr, iteration;
|
637
|
+
|
638
|
+
srandom ((unsigned) time (NULL));
|
639
|
+
for (iteration = 0; iteration < 25000; iteration++) {
|
640
|
+
testnbr = randof (testmax);
|
641
|
+
if (testset [testnbr].exists) {
|
642
|
+
item = (char *) zhash_lookup (hash, testset [testnbr].name);
|
643
|
+
assert (item);
|
644
|
+
zhash_delete (hash, testset [testnbr].name);
|
645
|
+
testset [testnbr].exists = false;
|
646
|
+
}
|
647
|
+
else {
|
648
|
+
sprintf (testset [testnbr].name, "%x-%x", rand (), rand ());
|
649
|
+
if (zhash_insert (hash, testset [testnbr].name, "") == 0)
|
650
|
+
testset [testnbr].exists = true;
|
651
|
+
}
|
652
|
+
}
|
653
|
+
// Test 10K lookups
|
654
|
+
for (iteration = 0; iteration < 10000; iteration++)
|
655
|
+
item = (char *) zhash_lookup (hash, "DEADBEEFABADCAFE");
|
656
|
+
|
657
|
+
// Destructor should be safe to call twice
|
658
|
+
zhash_destroy (&hash);
|
659
|
+
zhash_destroy (&hash);
|
660
|
+
assert (hash == NULL);
|
661
|
+
// @end
|
662
|
+
|
663
|
+
printf ("OK\n");
|
664
|
+
}
|