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,428 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2011-2012 Spotify AB
|
4
|
+
Copyright (c) 2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include <stdlib.h>
|
23
|
+
|
24
|
+
#include <new>
|
25
|
+
#include <algorithm>
|
26
|
+
|
27
|
+
#include "platform.hpp"
|
28
|
+
#if defined ZMQ_HAVE_WINDOWS
|
29
|
+
#include "windows.hpp"
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#include "err.hpp"
|
33
|
+
#include "pipe.hpp"
|
34
|
+
#include "mtrie.hpp"
|
35
|
+
|
36
|
+
zmq::mtrie_t::mtrie_t () :
|
37
|
+
pipes (0),
|
38
|
+
min (0),
|
39
|
+
count (0),
|
40
|
+
live_nodes (0)
|
41
|
+
{
|
42
|
+
}
|
43
|
+
|
44
|
+
zmq::mtrie_t::~mtrie_t ()
|
45
|
+
{
|
46
|
+
if (pipes) {
|
47
|
+
delete pipes;
|
48
|
+
pipes = 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
if (count == 1) {
|
52
|
+
zmq_assert (next.node);
|
53
|
+
delete next.node;
|
54
|
+
next.node = 0;
|
55
|
+
}
|
56
|
+
else if (count > 1) {
|
57
|
+
for (unsigned short i = 0; i != count; ++i)
|
58
|
+
if (next.table [i])
|
59
|
+
delete next.table [i];
|
60
|
+
free (next.table);
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
bool zmq::mtrie_t::add (unsigned char *prefix_, size_t size_, pipe_t *pipe_)
|
65
|
+
{
|
66
|
+
return add_helper (prefix_, size_, pipe_);
|
67
|
+
}
|
68
|
+
|
69
|
+
bool zmq::mtrie_t::add_helper (unsigned char *prefix_, size_t size_,
|
70
|
+
pipe_t *pipe_)
|
71
|
+
{
|
72
|
+
// We are at the node corresponding to the prefix. We are done.
|
73
|
+
if (!size_) {
|
74
|
+
bool result = !pipes;
|
75
|
+
if (!pipes) {
|
76
|
+
pipes = new (std::nothrow) pipes_t;
|
77
|
+
alloc_assert (pipes);
|
78
|
+
}
|
79
|
+
pipes->insert (pipe_);
|
80
|
+
return result;
|
81
|
+
}
|
82
|
+
|
83
|
+
unsigned char c = *prefix_;
|
84
|
+
if (c < min || c >= min + count) {
|
85
|
+
|
86
|
+
// The character is out of range of currently handled
|
87
|
+
// charcters. We have to extend the table.
|
88
|
+
if (!count) {
|
89
|
+
min = c;
|
90
|
+
count = 1;
|
91
|
+
next.node = NULL;
|
92
|
+
}
|
93
|
+
else if (count == 1) {
|
94
|
+
unsigned char oldc = min;
|
95
|
+
mtrie_t *oldp = next.node;
|
96
|
+
count = (min < c ? c - min : min - c) + 1;
|
97
|
+
next.table = (mtrie_t**)
|
98
|
+
malloc (sizeof (mtrie_t*) * count);
|
99
|
+
alloc_assert (next.table);
|
100
|
+
for (unsigned short i = 0; i != count; ++i)
|
101
|
+
next.table [i] = 0;
|
102
|
+
min = std::min (min, c);
|
103
|
+
next.table [oldc - min] = oldp;
|
104
|
+
}
|
105
|
+
else if (min < c) {
|
106
|
+
|
107
|
+
// The new character is above the current character range.
|
108
|
+
unsigned short old_count = count;
|
109
|
+
count = c - min + 1;
|
110
|
+
next.table = (mtrie_t**) realloc (next.table,
|
111
|
+
sizeof (mtrie_t*) * count);
|
112
|
+
alloc_assert (next.table);
|
113
|
+
for (unsigned short i = old_count; i != count; i++)
|
114
|
+
next.table [i] = NULL;
|
115
|
+
}
|
116
|
+
else {
|
117
|
+
|
118
|
+
// The new character is below the current character range.
|
119
|
+
unsigned short old_count = count;
|
120
|
+
count = (min + old_count) - c;
|
121
|
+
next.table = (mtrie_t**) realloc (next.table,
|
122
|
+
sizeof (mtrie_t*) * count);
|
123
|
+
alloc_assert (next.table);
|
124
|
+
memmove (next.table + min - c, next.table,
|
125
|
+
old_count * sizeof (mtrie_t*));
|
126
|
+
for (unsigned short i = 0; i != min - c; i++)
|
127
|
+
next.table [i] = NULL;
|
128
|
+
min = c;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
// If next node does not exist, create one.
|
133
|
+
if (count == 1) {
|
134
|
+
if (!next.node) {
|
135
|
+
next.node = new (std::nothrow) mtrie_t;
|
136
|
+
alloc_assert (next.node);
|
137
|
+
++live_nodes;
|
138
|
+
}
|
139
|
+
return next.node->add_helper (prefix_ + 1, size_ - 1, pipe_);
|
140
|
+
}
|
141
|
+
else {
|
142
|
+
if (!next.table [c - min]) {
|
143
|
+
next.table [c - min] = new (std::nothrow) mtrie_t;
|
144
|
+
alloc_assert (next.table [c - min]);
|
145
|
+
++live_nodes;
|
146
|
+
}
|
147
|
+
return next.table [c - min]->add_helper (prefix_ + 1, size_ - 1, pipe_);
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
|
152
|
+
void zmq::mtrie_t::rm (pipe_t *pipe_,
|
153
|
+
void (*func_) (unsigned char *data_, size_t size_, void *arg_),
|
154
|
+
void *arg_)
|
155
|
+
{
|
156
|
+
unsigned char *buff = NULL;
|
157
|
+
rm_helper (pipe_, &buff, 0, 0, func_, arg_);
|
158
|
+
free (buff);
|
159
|
+
}
|
160
|
+
|
161
|
+
void zmq::mtrie_t::rm_helper (pipe_t *pipe_, unsigned char **buff_,
|
162
|
+
size_t buffsize_, size_t maxbuffsize_,
|
163
|
+
void (*func_) (unsigned char *data_, size_t size_, void *arg_),
|
164
|
+
void *arg_)
|
165
|
+
{
|
166
|
+
// Remove the subscription from this node.
|
167
|
+
if (pipes && pipes->erase (pipe_) && pipes->empty ()) {
|
168
|
+
func_ (*buff_, buffsize_, arg_);
|
169
|
+
delete pipes;
|
170
|
+
pipes = 0;
|
171
|
+
}
|
172
|
+
|
173
|
+
// Adjust the buffer.
|
174
|
+
if (buffsize_ >= maxbuffsize_) {
|
175
|
+
maxbuffsize_ = buffsize_ + 256;
|
176
|
+
*buff_ = (unsigned char*) realloc (*buff_, maxbuffsize_);
|
177
|
+
alloc_assert (*buff_);
|
178
|
+
}
|
179
|
+
|
180
|
+
// If there are no subnodes in the trie, return.
|
181
|
+
if (count == 0)
|
182
|
+
return;
|
183
|
+
|
184
|
+
// If there's one subnode (optimisation).
|
185
|
+
if (count == 1) {
|
186
|
+
(*buff_) [buffsize_] = min;
|
187
|
+
buffsize_++;
|
188
|
+
next.node->rm_helper (pipe_, buff_, buffsize_, maxbuffsize_,
|
189
|
+
func_, arg_);
|
190
|
+
|
191
|
+
// Prune the node if it was made redundant by the removal
|
192
|
+
if (next.node->is_redundant ()) {
|
193
|
+
delete next.node;
|
194
|
+
next.node = 0;
|
195
|
+
count = 0;
|
196
|
+
--live_nodes;
|
197
|
+
zmq_assert (live_nodes == 0);
|
198
|
+
}
|
199
|
+
return;
|
200
|
+
}
|
201
|
+
|
202
|
+
// If there are multiple subnodes.
|
203
|
+
//
|
204
|
+
// New min non-null character in the node table after the removal
|
205
|
+
unsigned char new_min = min + count - 1;
|
206
|
+
// New max non-null character in the node table after the removal
|
207
|
+
unsigned char new_max = min;
|
208
|
+
for (unsigned short c = 0; c != count; c++) {
|
209
|
+
(*buff_) [buffsize_] = min + c;
|
210
|
+
if (next.table [c]) {
|
211
|
+
next.table [c]->rm_helper (pipe_, buff_, buffsize_ + 1,
|
212
|
+
maxbuffsize_, func_, arg_);
|
213
|
+
|
214
|
+
// Prune redundant nodes from the mtrie
|
215
|
+
if (next.table [c]->is_redundant ()) {
|
216
|
+
delete next.table [c];
|
217
|
+
next.table [c] = 0;
|
218
|
+
|
219
|
+
zmq_assert (live_nodes > 0);
|
220
|
+
--live_nodes;
|
221
|
+
}
|
222
|
+
else {
|
223
|
+
// The node is not redundant, so it's a candidate for being
|
224
|
+
// the new min/max node.
|
225
|
+
//
|
226
|
+
// We loop through the node array from left to right, so the
|
227
|
+
// first non-null, non-redundant node encountered is the new
|
228
|
+
// minimum index. Conversely, the last non-redundant, non-null
|
229
|
+
// node encountered is the new maximum index.
|
230
|
+
if (c + min < new_min)
|
231
|
+
new_min = c + min;
|
232
|
+
if (c + min > new_max)
|
233
|
+
new_max = c + min;
|
234
|
+
}
|
235
|
+
}
|
236
|
+
}
|
237
|
+
|
238
|
+
zmq_assert (count > 1);
|
239
|
+
|
240
|
+
// Free the node table if it's no longer used.
|
241
|
+
if (live_nodes == 0) {
|
242
|
+
free (next.table);
|
243
|
+
next.table = NULL;
|
244
|
+
count = 0;
|
245
|
+
}
|
246
|
+
// Compact the node table if possible
|
247
|
+
else if (live_nodes == 1) {
|
248
|
+
// If there's only one live node in the table we can
|
249
|
+
// switch to using the more compact single-node
|
250
|
+
// representation
|
251
|
+
zmq_assert (new_min == new_max);
|
252
|
+
zmq_assert (new_min >= min && new_min < min + count);
|
253
|
+
mtrie_t *node = next.table [new_min - min];
|
254
|
+
zmq_assert (node);
|
255
|
+
free (next.table);
|
256
|
+
next.node = node;
|
257
|
+
count = 1;
|
258
|
+
min = new_min;
|
259
|
+
}
|
260
|
+
else if (new_min > min || new_max < min + count - 1) {
|
261
|
+
zmq_assert (new_max - new_min + 1 > 1);
|
262
|
+
|
263
|
+
mtrie_t **old_table = next.table;
|
264
|
+
zmq_assert (new_min > min || new_max < min + count - 1);
|
265
|
+
zmq_assert (new_min >= min);
|
266
|
+
zmq_assert (new_max <= min + count - 1);
|
267
|
+
zmq_assert (new_max - new_min + 1 < count);
|
268
|
+
|
269
|
+
count = new_max - new_min + 1;
|
270
|
+
next.table = (mtrie_t**) malloc (sizeof (mtrie_t*) * count);
|
271
|
+
alloc_assert (next.table);
|
272
|
+
|
273
|
+
memmove (next.table, old_table + (new_min - min),
|
274
|
+
sizeof (mtrie_t*) * count);
|
275
|
+
free (old_table);
|
276
|
+
|
277
|
+
min = new_min;
|
278
|
+
}
|
279
|
+
}
|
280
|
+
|
281
|
+
bool zmq::mtrie_t::rm (unsigned char *prefix_, size_t size_, pipe_t *pipe_)
|
282
|
+
{
|
283
|
+
return rm_helper (prefix_, size_, pipe_);
|
284
|
+
}
|
285
|
+
|
286
|
+
bool zmq::mtrie_t::rm_helper (unsigned char *prefix_, size_t size_,
|
287
|
+
pipe_t *pipe_)
|
288
|
+
{
|
289
|
+
if (!size_) {
|
290
|
+
if (pipes) {
|
291
|
+
pipes_t::size_type erased = pipes->erase (pipe_);
|
292
|
+
zmq_assert (erased == 1);
|
293
|
+
if (pipes->empty ()) {
|
294
|
+
delete pipes;
|
295
|
+
pipes = 0;
|
296
|
+
}
|
297
|
+
}
|
298
|
+
return !pipes;
|
299
|
+
}
|
300
|
+
|
301
|
+
unsigned char c = *prefix_;
|
302
|
+
if (!count || c < min || c >= min + count)
|
303
|
+
return false;
|
304
|
+
|
305
|
+
mtrie_t *next_node =
|
306
|
+
count == 1 ? next.node : next.table [c - min];
|
307
|
+
|
308
|
+
if (!next_node)
|
309
|
+
return false;
|
310
|
+
|
311
|
+
bool ret = next_node->rm_helper (prefix_ + 1, size_ - 1, pipe_);
|
312
|
+
|
313
|
+
if (next_node->is_redundant ()) {
|
314
|
+
delete next_node;
|
315
|
+
zmq_assert (count > 0);
|
316
|
+
|
317
|
+
if (count == 1) {
|
318
|
+
next.node = 0;
|
319
|
+
count = 0;
|
320
|
+
--live_nodes;
|
321
|
+
zmq_assert (live_nodes == 0);
|
322
|
+
}
|
323
|
+
else {
|
324
|
+
next.table [c - min] = 0;
|
325
|
+
zmq_assert (live_nodes > 1);
|
326
|
+
--live_nodes;
|
327
|
+
|
328
|
+
// Compact the table if possible
|
329
|
+
if (live_nodes == 1) {
|
330
|
+
// If there's only one live node in the table we can
|
331
|
+
// switch to using the more compact single-node
|
332
|
+
// representation
|
333
|
+
unsigned short i;
|
334
|
+
for (i = 0; i < count; ++i)
|
335
|
+
if (next.table [i])
|
336
|
+
break;
|
337
|
+
|
338
|
+
zmq_assert (i < count);
|
339
|
+
min += i;
|
340
|
+
count = 1;
|
341
|
+
mtrie_t *oldp = next.table [i];
|
342
|
+
free (next.table);
|
343
|
+
next.node = oldp;
|
344
|
+
}
|
345
|
+
else if (c == min) {
|
346
|
+
// We can compact the table "from the left"
|
347
|
+
unsigned short i;
|
348
|
+
for (i = 1; i < count; ++i)
|
349
|
+
if (next.table [i])
|
350
|
+
break;
|
351
|
+
|
352
|
+
zmq_assert (i < count);
|
353
|
+
min += i;
|
354
|
+
count -= i;
|
355
|
+
mtrie_t **old_table = next.table;
|
356
|
+
next.table = (mtrie_t**) malloc (sizeof (mtrie_t*) * count);
|
357
|
+
alloc_assert (next.table);
|
358
|
+
memmove (next.table, old_table + i, sizeof (mtrie_t*) * count);
|
359
|
+
free (old_table);
|
360
|
+
}
|
361
|
+
else if (c == min + count - 1) {
|
362
|
+
// We can compact the table "from the right"
|
363
|
+
unsigned short i;
|
364
|
+
for (i = 1; i < count; ++i)
|
365
|
+
if (next.table [count - 1 - i])
|
366
|
+
break;
|
367
|
+
|
368
|
+
zmq_assert (i < count);
|
369
|
+
count -= i;
|
370
|
+
mtrie_t **old_table = next.table;
|
371
|
+
next.table = (mtrie_t**) malloc (sizeof (mtrie_t*) * count);
|
372
|
+
alloc_assert (next.table);
|
373
|
+
memmove (next.table, old_table, sizeof (mtrie_t*) * count);
|
374
|
+
free (old_table);
|
375
|
+
}
|
376
|
+
}
|
377
|
+
}
|
378
|
+
|
379
|
+
return ret;
|
380
|
+
}
|
381
|
+
|
382
|
+
void zmq::mtrie_t::match (unsigned char *data_, size_t size_,
|
383
|
+
void (*func_) (pipe_t *pipe_, void *arg_), void *arg_)
|
384
|
+
{
|
385
|
+
mtrie_t *current = this;
|
386
|
+
while (true) {
|
387
|
+
|
388
|
+
// Signal the pipes attached to this node.
|
389
|
+
if (current->pipes) {
|
390
|
+
for (pipes_t::iterator it = current->pipes->begin ();
|
391
|
+
it != current->pipes->end (); ++it)
|
392
|
+
func_ (*it, arg_);
|
393
|
+
}
|
394
|
+
|
395
|
+
// If we are at the end of the message, there's nothing more to match.
|
396
|
+
if (!size_)
|
397
|
+
break;
|
398
|
+
|
399
|
+
// If there are no subnodes in the trie, return.
|
400
|
+
if (current->count == 0)
|
401
|
+
break;
|
402
|
+
|
403
|
+
// If there's one subnode (optimisation).
|
404
|
+
if (current->count == 1) {
|
405
|
+
if (data_ [0] != current->min)
|
406
|
+
break;
|
407
|
+
current = current->next.node;
|
408
|
+
data_++;
|
409
|
+
size_--;
|
410
|
+
continue;
|
411
|
+
}
|
412
|
+
|
413
|
+
// If there are multiple subnodes.
|
414
|
+
if (data_ [0] < current->min || data_ [0] >=
|
415
|
+
current->min + current->count)
|
416
|
+
break;
|
417
|
+
if (!current->next.table [data_ [0] - current->min])
|
418
|
+
break;
|
419
|
+
current = current->next.table [data_ [0] - current->min];
|
420
|
+
data_++;
|
421
|
+
size_--;
|
422
|
+
}
|
423
|
+
}
|
424
|
+
|
425
|
+
bool zmq::mtrie_t::is_redundant () const
|
426
|
+
{
|
427
|
+
return !pipes && live_nodes == 0;
|
428
|
+
}
|
@@ -0,0 +1,93 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2011-2012 Spotify AB
|
4
|
+
Copyright (c) 2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef __ZMQ_MTRIE_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_MTRIE_HPP_INCLUDED__
|
24
|
+
|
25
|
+
#include <stddef.h>
|
26
|
+
#include <set>
|
27
|
+
|
28
|
+
#include "stdint.hpp"
|
29
|
+
|
30
|
+
namespace zmq
|
31
|
+
{
|
32
|
+
|
33
|
+
class pipe_t;
|
34
|
+
|
35
|
+
// Multi-trie. Each node in the trie is a set of pointers to pipes.
|
36
|
+
|
37
|
+
class mtrie_t
|
38
|
+
{
|
39
|
+
public:
|
40
|
+
|
41
|
+
mtrie_t ();
|
42
|
+
~mtrie_t ();
|
43
|
+
|
44
|
+
// Add key to the trie. Returns true if it's a new subscription
|
45
|
+
// rather than a duplicate.
|
46
|
+
bool add (unsigned char *prefix_, size_t size_, zmq::pipe_t *pipe_);
|
47
|
+
|
48
|
+
// Remove all subscriptions for a specific peer from the trie.
|
49
|
+
// If there are no subscriptions left on some topics, invoke the
|
50
|
+
// supplied callback function.
|
51
|
+
void rm (zmq::pipe_t *pipe_,
|
52
|
+
void (*func_) (unsigned char *data_, size_t size_, void *arg_),
|
53
|
+
void *arg_);
|
54
|
+
|
55
|
+
// Remove specific subscription from the trie. Return true is it was
|
56
|
+
// actually removed rather than de-duplicated.
|
57
|
+
bool rm (unsigned char *prefix_, size_t size_, zmq::pipe_t *pipe_);
|
58
|
+
|
59
|
+
// Signal all the matching pipes.
|
60
|
+
void match (unsigned char *data_, size_t size_,
|
61
|
+
void (*func_) (zmq::pipe_t *pipe_, void *arg_), void *arg_);
|
62
|
+
|
63
|
+
private:
|
64
|
+
|
65
|
+
bool add_helper (unsigned char *prefix_, size_t size_,
|
66
|
+
zmq::pipe_t *pipe_);
|
67
|
+
void rm_helper (zmq::pipe_t *pipe_, unsigned char **buff_,
|
68
|
+
size_t buffsize_, size_t maxbuffsize_,
|
69
|
+
void (*func_) (unsigned char *data_, size_t size_, void *arg_),
|
70
|
+
void *arg_);
|
71
|
+
bool rm_helper (unsigned char *prefix_, size_t size_,
|
72
|
+
zmq::pipe_t *pipe_);
|
73
|
+
bool is_redundant () const;
|
74
|
+
|
75
|
+
typedef std::set <zmq::pipe_t*> pipes_t;
|
76
|
+
pipes_t *pipes;
|
77
|
+
|
78
|
+
unsigned char min;
|
79
|
+
unsigned short count;
|
80
|
+
unsigned short live_nodes;
|
81
|
+
union {
|
82
|
+
class mtrie_t *node;
|
83
|
+
class mtrie_t **table;
|
84
|
+
} next;
|
85
|
+
|
86
|
+
mtrie_t (const mtrie_t&);
|
87
|
+
const mtrie_t &operator = (const mtrie_t&);
|
88
|
+
};
|
89
|
+
|
90
|
+
}
|
91
|
+
|
92
|
+
#endif
|
93
|
+
|