libcouchbase 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.gitmodules +3 -0
- data/.rspec +1 -0
- data/.travis.yml +35 -0
- data/Gemfile +4 -0
- data/LICENSE +24 -0
- data/README.md +389 -0
- data/Rakefile +75 -0
- data/ext/README.md +6 -0
- data/ext/Rakefile +20 -0
- data/ext/libcouchbase/.gitignore +130 -0
- data/ext/libcouchbase/.travis.yml +19 -0
- data/ext/libcouchbase/CMakeLists.txt +429 -0
- data/ext/libcouchbase/CONTRIBUTING.md +124 -0
- data/ext/libcouchbase/LICENSE +202 -0
- data/ext/libcouchbase/README.markdown +163 -0
- data/ext/libcouchbase/RELEASE_NOTES.markdown +2691 -0
- data/ext/libcouchbase/cmake/Modules/ConfigureDtrace.cmake +27 -0
- data/ext/libcouchbase/cmake/Modules/CopyPDB.cmake +42 -0
- data/ext/libcouchbase/cmake/Modules/DistScript.cmake +17 -0
- data/ext/libcouchbase/cmake/Modules/DownloadLcbDep.cmake +20 -0
- data/ext/libcouchbase/cmake/Modules/FindCouchbaseHdrHistogram.cmake +15 -0
- data/ext/libcouchbase/cmake/Modules/FindCouchbaseLibev.cmake +73 -0
- data/ext/libcouchbase/cmake/Modules/FindCouchbaseLibevent.cmake +52 -0
- data/ext/libcouchbase/cmake/Modules/FindCouchbaseLibuv.cmake +56 -0
- data/ext/libcouchbase/cmake/Modules/FindCouchbaseSnappy.cmake +11 -0
- data/ext/libcouchbase/cmake/Modules/GenerateConfigDotH.cmake +29 -0
- data/ext/libcouchbase/cmake/Modules/GetLibcouchbaseFlags.cmake +133 -0
- data/ext/libcouchbase/cmake/Modules/GetPlatformCCInfo.cmake +45 -0
- data/ext/libcouchbase/cmake/Modules/GetVersionInfo.cmake +70 -0
- data/ext/libcouchbase/cmake/config-cmake.h.in +60 -0
- data/ext/libcouchbase/cmake/configure +357 -0
- data/ext/libcouchbase/cmake/defs.mk.in +8 -0
- data/ext/libcouchbase/cmake/dtrace-instr-link.pl +38 -0
- data/ext/libcouchbase/cmake/source_files.cmake +73 -0
- data/ext/libcouchbase/configure.pl +1 -0
- data/ext/libcouchbase/contrib/cJSON/cJSON.c +624 -0
- data/ext/libcouchbase/contrib/cJSON/cJSON.h +158 -0
- data/ext/libcouchbase/contrib/cbsasl/CMakeLists.txt +9 -0
- data/ext/libcouchbase/contrib/cbsasl/COPYING +202 -0
- data/ext/libcouchbase/contrib/cbsasl/include/cbsasl/cbsasl.h +217 -0
- data/ext/libcouchbase/contrib/cbsasl/src/client.c +205 -0
- data/ext/libcouchbase/contrib/cbsasl/src/common.c +46 -0
- data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/hmac.c +67 -0
- data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/hmac.h +33 -0
- data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/md5.c +296 -0
- data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/md5.h +45 -0
- data/ext/libcouchbase/contrib/cbsasl/src/hash.c +573 -0
- data/ext/libcouchbase/contrib/cbsasl/src/hash.h +15 -0
- data/ext/libcouchbase/contrib/cbsasl/src/util.h +31 -0
- data/ext/libcouchbase/contrib/cliopts/CMakeLists.txt +2 -0
- data/ext/libcouchbase/contrib/cliopts/cliopts.c +747 -0
- data/ext/libcouchbase/contrib/cliopts/cliopts.h +493 -0
- data/ext/libcouchbase/contrib/genhash/genhash.c +372 -0
- data/ext/libcouchbase/contrib/genhash/genhash.h +235 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/CHANGES +157 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/CMakeLists.txt +252 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/CONTRIBUTORS +37 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/LICENSE +28 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/MINIFY.sh +15 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/README +435 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/cmake/internal_utils.cmake +227 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-death-test.h +294 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-message.h +250 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-param-test.h +1421 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-param-test.h.pump +487 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-printers.h +855 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-spi.h +232 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-test-part.h +179 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-typed-test.h +259 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest.h +2291 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest_pred_impl.h +358 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest_prod.h +58 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h +319 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-filepath.h +206 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-internal.h +1158 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h +233 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h +5143 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump +301 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-param-util.h +619 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-port.h +1947 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-string.h +167 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-tuple.h +1012 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump +339 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-type-util.h +3331 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump +297 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-all.cc +48 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-death-test.cc +1344 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-filepath.cc +382 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-internal-inl.h +1218 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-port.cc +805 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-printers.cc +363 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-test-part.cc +110 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-typed-test.cc +110 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest.cc +5015 -0
- data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest_main.cc +38 -0
- data/ext/libcouchbase/contrib/http_parser/LICENSE-MIT +23 -0
- data/ext/libcouchbase/contrib/http_parser/README.md +178 -0
- data/ext/libcouchbase/contrib/http_parser/http_parser.c +2060 -0
- data/ext/libcouchbase/contrib/http_parser/http_parser.h +321 -0
- data/ext/libcouchbase/contrib/jsonsl/LICENSE +20 -0
- data/ext/libcouchbase/contrib/jsonsl/jsonsl.c +1452 -0
- data/ext/libcouchbase/contrib/jsonsl/jsonsl.h +971 -0
- data/ext/libcouchbase/contrib/lcb-jsoncpp/CMakeLists.txt +6 -0
- data/ext/libcouchbase/contrib/lcb-jsoncpp/LICENSE +55 -0
- data/ext/libcouchbase/contrib/lcb-jsoncpp/lcb-jsoncpp-forwards.h +255 -0
- data/ext/libcouchbase/contrib/lcb-jsoncpp/lcb-jsoncpp.cpp +4892 -0
- data/ext/libcouchbase/contrib/lcb-jsoncpp/lcb-jsoncpp.h +1961 -0
- data/ext/libcouchbase/contrib/snappy/CMakeLists.txt +8 -0
- data/ext/libcouchbase/contrib/snappy/COPYING +28 -0
- data/ext/libcouchbase/contrib/snappy/snappy-c.cc +90 -0
- data/ext/libcouchbase/contrib/snappy/snappy-c.h +138 -0
- data/ext/libcouchbase/contrib/snappy/snappy-internal.h +150 -0
- data/ext/libcouchbase/contrib/snappy/snappy-lcb-msvc.h +5 -0
- data/ext/libcouchbase/contrib/snappy/snappy-sinksource.cc +71 -0
- data/ext/libcouchbase/contrib/snappy/snappy-sinksource.h +137 -0
- data/ext/libcouchbase/contrib/snappy/snappy-stubs-internal.cc +42 -0
- data/ext/libcouchbase/contrib/snappy/snappy-stubs-internal.h +491 -0
- data/ext/libcouchbase/contrib/snappy/snappy-stubs-public.h +98 -0
- data/ext/libcouchbase/contrib/snappy/snappy.cc +1307 -0
- data/ext/libcouchbase/contrib/snappy/snappy.h +184 -0
- data/ext/libcouchbase/contrib/win32-defs/iocpdefs.h +133 -0
- data/ext/libcouchbase/contrib/win32-defs/mingwdefs.h +4396 -0
- data/ext/libcouchbase/contrib/win32-defs/win_stdint.h +258 -0
- data/ext/libcouchbase/example/CMakeLists.txt +37 -0
- data/ext/libcouchbase/example/README.markdown +47 -0
- data/ext/libcouchbase/example/db/db.c +167 -0
- data/ext/libcouchbase/example/db/vb.c +227 -0
- data/ext/libcouchbase/example/instancepool/main.cc +102 -0
- data/ext/libcouchbase/example/instancepool/pool.cc +102 -0
- data/ext/libcouchbase/example/instancepool/pool.h +69 -0
- data/ext/libcouchbase/example/libeventdirect/main.c +148 -0
- data/ext/libcouchbase/example/mcc/mcc.cc +246 -0
- data/ext/libcouchbase/example/minimal/minimal.c +130 -0
- data/ext/libcouchbase/example/observe/observe.c +146 -0
- data/ext/libcouchbase/example/subdoc/subdoc-multi.cc +132 -0
- data/ext/libcouchbase/example/subdoc/subdoc-simple.cc +191 -0
- data/ext/libcouchbase/example/tick/tick.c +119 -0
- data/ext/libcouchbase/example/views/views-example.cc +83 -0
- data/ext/libcouchbase/include/libcouchbase/_cxxwrap.h +150 -0
- data/ext/libcouchbase/include/libcouchbase/api-legacy.h +1689 -0
- data/ext/libcouchbase/include/libcouchbase/api3.h +2 -0
- data/ext/libcouchbase/include/libcouchbase/assert.h +44 -0
- data/ext/libcouchbase/include/libcouchbase/cbft.h +109 -0
- data/ext/libcouchbase/include/libcouchbase/cntl-private.h +356 -0
- data/ext/libcouchbase/include/libcouchbase/cntl.h +937 -0
- data/ext/libcouchbase/include/libcouchbase/configuration.h.in +23 -0
- data/ext/libcouchbase/include/libcouchbase/couchbase.h +3677 -0
- data/ext/libcouchbase/include/libcouchbase/deprecated.h +300 -0
- data/ext/libcouchbase/include/libcouchbase/error.h +595 -0
- data/ext/libcouchbase/include/libcouchbase/http.h +1 -0
- data/ext/libcouchbase/include/libcouchbase/iops.h +1050 -0
- data/ext/libcouchbase/include/libcouchbase/ixmgmt.h +263 -0
- data/ext/libcouchbase/include/libcouchbase/kvbuf.h +132 -0
- data/ext/libcouchbase/include/libcouchbase/n1ql.h +364 -0
- data/ext/libcouchbase/include/libcouchbase/pktfwd.h +270 -0
- data/ext/libcouchbase/include/libcouchbase/plugins/io/bsdio-inl.c +367 -0
- data/ext/libcouchbase/include/libcouchbase/plugins/io/wsaerr-inl.c +76 -0
- data/ext/libcouchbase/include/libcouchbase/plugins/io/wsaerr.h +199 -0
- data/ext/libcouchbase/include/libcouchbase/subdoc.h +312 -0
- data/ext/libcouchbase/include/libcouchbase/sysdefs.h +98 -0
- data/ext/libcouchbase/include/libcouchbase/vbucket.h +643 -0
- data/ext/libcouchbase/include/libcouchbase/views.h +298 -0
- data/ext/libcouchbase/include/libcouchbase/visibility.h +65 -0
- data/ext/libcouchbase/include/memcached/COPYING +30 -0
- data/ext/libcouchbase/include/memcached/README +10 -0
- data/ext/libcouchbase/include/memcached/protocol_binary.h +1916 -0
- data/ext/libcouchbase/include/memcached/vbucket.h +42 -0
- data/ext/libcouchbase/packaging/README +7 -0
- data/ext/libcouchbase/packaging/abicheck/.gitignore +4 -0
- data/ext/libcouchbase/packaging/abicheck/Makefile +17 -0
- data/ext/libcouchbase/packaging/abicheck/README.md +27 -0
- data/ext/libcouchbase/packaging/abicheck/template.xml +3 -0
- data/ext/libcouchbase/packaging/deb/compat +1 -0
- data/ext/libcouchbase/packaging/deb/control +73 -0
- data/ext/libcouchbase/packaging/deb/copyright +10 -0
- data/ext/libcouchbase/packaging/deb/libcouchbase-dev.docs +3 -0
- data/ext/libcouchbase/packaging/deb/package.mk +31 -0
- data/ext/libcouchbase/packaging/deb/rules +46 -0
- data/ext/libcouchbase/packaging/deb/source/format +1 -0
- data/ext/libcouchbase/packaging/distinfo/README +1 -0
- data/ext/libcouchbase/packaging/distinfo/distinfo.cmake.in +4 -0
- data/ext/libcouchbase/packaging/dllversion.rc.in +39 -0
- data/ext/libcouchbase/packaging/libcouchbase.pc.in +10 -0
- data/ext/libcouchbase/packaging/nuget/libcouchbase.autopkg +76 -0
- data/ext/libcouchbase/packaging/parse-git-describe.pl +166 -0
- data/ext/libcouchbase/packaging/rpm/libcouchbase.spec.in +108 -0
- data/ext/libcouchbase/packaging/rpm/package.mk +40 -0
- data/ext/libcouchbase/plugins/io/iocp/CMakeLists.txt +9 -0
- data/ext/libcouchbase/plugins/io/iocp/iocp_iops.c +466 -0
- data/ext/libcouchbase/plugins/io/iocp/iocp_iops.h +217 -0
- data/ext/libcouchbase/plugins/io/iocp/iocp_loop.c +295 -0
- data/ext/libcouchbase/plugins/io/iocp/iocp_timer.c +79 -0
- data/ext/libcouchbase/plugins/io/iocp/iocp_util.c +229 -0
- data/ext/libcouchbase/plugins/io/libev/CMakeLists.txt +29 -0
- data/ext/libcouchbase/plugins/io/libev/libev_io_opts.h +65 -0
- data/ext/libcouchbase/plugins/io/libev/plugin-libev.c +289 -0
- data/ext/libcouchbase/plugins/io/libevent/CMakeLists.txt +29 -0
- data/ext/libcouchbase/plugins/io/libevent/libevent_io_opts.h +67 -0
- data/ext/libcouchbase/plugins/io/libevent/plugin-libevent.c +292 -0
- data/ext/libcouchbase/plugins/io/libuv/CMakeLists.txt +42 -0
- data/ext/libcouchbase/plugins/io/libuv/libuv_compat.h +212 -0
- data/ext/libcouchbase/plugins/io/libuv/libuv_io_opts.h +118 -0
- data/ext/libcouchbase/plugins/io/libuv/plugin-internal.h +148 -0
- data/ext/libcouchbase/plugins/io/libuv/plugin-libuv.c +648 -0
- data/ext/libcouchbase/plugins/io/select/CMakeLists.txt +11 -0
- data/ext/libcouchbase/plugins/io/select/plugin-select.c +448 -0
- data/ext/libcouchbase/plugins/io/select/select_io_opts.h +39 -0
- data/ext/libcouchbase/src/README.md +103 -0
- data/ext/libcouchbase/src/aspend.h +106 -0
- data/ext/libcouchbase/src/auth.cc +74 -0
- data/ext/libcouchbase/src/auth.h +54 -0
- data/ext/libcouchbase/src/bootstrap.c +269 -0
- data/ext/libcouchbase/src/bootstrap.h +129 -0
- data/ext/libcouchbase/src/bucketconfig/bc_cccp.c +495 -0
- data/ext/libcouchbase/src/bucketconfig/bc_file.c +347 -0
- data/ext/libcouchbase/src/bucketconfig/bc_http.c +630 -0
- data/ext/libcouchbase/src/bucketconfig/bc_http.h +82 -0
- data/ext/libcouchbase/src/bucketconfig/bc_mcraw.c +150 -0
- data/ext/libcouchbase/src/bucketconfig/clconfig.h +681 -0
- data/ext/libcouchbase/src/bucketconfig/confmon.c +474 -0
- data/ext/libcouchbase/src/callbacks.c +378 -0
- data/ext/libcouchbase/src/cbft.cc +210 -0
- data/ext/libcouchbase/src/cntl.cc +847 -0
- data/ext/libcouchbase/src/config_static.h +159 -0
- data/ext/libcouchbase/src/connspec.cc +462 -0
- data/ext/libcouchbase/src/connspec.h +105 -0
- data/ext/libcouchbase/src/ctx-log-inl.h +27 -0
- data/ext/libcouchbase/src/dump.c +98 -0
- data/ext/libcouchbase/src/getconfig.c +100 -0
- data/ext/libcouchbase/src/gethrtime.c +109 -0
- data/ext/libcouchbase/src/handler.c +922 -0
- data/ext/libcouchbase/src/hashset.c +164 -0
- data/ext/libcouchbase/src/hashset.h +86 -0
- data/ext/libcouchbase/src/hashtable.c +75 -0
- data/ext/libcouchbase/src/hdr_timings.c +92 -0
- data/ext/libcouchbase/src/hostlist.cc +301 -0
- data/ext/libcouchbase/src/hostlist.h +171 -0
- data/ext/libcouchbase/src/http/http-priv.h +307 -0
- data/ext/libcouchbase/src/http/http.cc +633 -0
- data/ext/libcouchbase/src/http/http.h +34 -0
- data/ext/libcouchbase/src/http/http_io.cc +307 -0
- data/ext/libcouchbase/src/instance.cc +722 -0
- data/ext/libcouchbase/src/internal.h +244 -0
- data/ext/libcouchbase/src/iofactory.c +575 -0
- data/ext/libcouchbase/src/jsparse/parser.cc +519 -0
- data/ext/libcouchbase/src/jsparse/parser.h +173 -0
- data/ext/libcouchbase/src/lcbht/lcbht.c +282 -0
- data/ext/libcouchbase/src/lcbht/lcbht.h +199 -0
- data/ext/libcouchbase/src/lcbio/connect.c +557 -0
- data/ext/libcouchbase/src/lcbio/connect.h +364 -0
- data/ext/libcouchbase/src/lcbio/ctx.c +611 -0
- data/ext/libcouchbase/src/lcbio/ctx.h +405 -0
- data/ext/libcouchbase/src/lcbio/iotable.c +290 -0
- data/ext/libcouchbase/src/lcbio/iotable.h +84 -0
- data/ext/libcouchbase/src/lcbio/ioutils.c +350 -0
- data/ext/libcouchbase/src/lcbio/ioutils.h +203 -0
- data/ext/libcouchbase/src/lcbio/lcbio.h +51 -0
- data/ext/libcouchbase/src/lcbio/manager.c +584 -0
- data/ext/libcouchbase/src/lcbio/manager.h +156 -0
- data/ext/libcouchbase/src/lcbio/protoctx.c +84 -0
- data/ext/libcouchbase/src/lcbio/rw-inl.h +115 -0
- data/ext/libcouchbase/src/lcbio/ssl.h +149 -0
- data/ext/libcouchbase/src/lcbio/timer-ng.h +179 -0
- data/ext/libcouchbase/src/lcbio/timer.c +132 -0
- data/ext/libcouchbase/src/legacy.c +430 -0
- data/ext/libcouchbase/src/list.c +144 -0
- data/ext/libcouchbase/src/list.h +127 -0
- data/ext/libcouchbase/src/logging.c +244 -0
- data/ext/libcouchbase/src/logging.h +86 -0
- data/ext/libcouchbase/src/mc/compress.c +90 -0
- data/ext/libcouchbase/src/mc/compress.h +61 -0
- data/ext/libcouchbase/src/mc/forward.c +186 -0
- data/ext/libcouchbase/src/mc/forward.h +90 -0
- data/ext/libcouchbase/src/mc/iovcursor-inl.h +279 -0
- data/ext/libcouchbase/src/mc/iovcursor.h +66 -0
- data/ext/libcouchbase/src/mc/mcreq-flush-inl.h +111 -0
- data/ext/libcouchbase/src/mc/mcreq.c +954 -0
- data/ext/libcouchbase/src/mc/mcreq.h +977 -0
- data/ext/libcouchbase/src/mcserver/mcserver.c +784 -0
- data/ext/libcouchbase/src/mcserver/mcserver.h +121 -0
- data/ext/libcouchbase/src/mcserver/negotiate.c +656 -0
- data/ext/libcouchbase/src/mcserver/negotiate.h +119 -0
- data/ext/libcouchbase/src/n1ql/ixmgmt.cc +860 -0
- data/ext/libcouchbase/src/n1ql/n1ql-internal.h +22 -0
- data/ext/libcouchbase/src/n1ql/n1ql.cc +729 -0
- data/ext/libcouchbase/src/n1ql/params.cc +215 -0
- data/ext/libcouchbase/src/netbuf/netbuf-defs.h +89 -0
- data/ext/libcouchbase/src/netbuf/netbuf-mblock.h +235 -0
- data/ext/libcouchbase/src/netbuf/netbuf.c +929 -0
- data/ext/libcouchbase/src/netbuf/netbuf.h +452 -0
- data/ext/libcouchbase/src/newconfig.c +385 -0
- data/ext/libcouchbase/src/nodeinfo.cc +194 -0
- data/ext/libcouchbase/src/operations/cbflush.c +71 -0
- data/ext/libcouchbase/src/operations/counter.c +116 -0
- data/ext/libcouchbase/src/operations/durability-cas.c +224 -0
- data/ext/libcouchbase/src/operations/durability-seqno.c +157 -0
- data/ext/libcouchbase/src/operations/durability.c +668 -0
- data/ext/libcouchbase/src/operations/durability_internal.h +199 -0
- data/ext/libcouchbase/src/operations/get.c +409 -0
- data/ext/libcouchbase/src/operations/observe-seqno.c +96 -0
- data/ext/libcouchbase/src/operations/observe.c +340 -0
- data/ext/libcouchbase/src/operations/pktfwd.c +86 -0
- data/ext/libcouchbase/src/operations/remove.c +83 -0
- data/ext/libcouchbase/src/operations/stats.c +461 -0
- data/ext/libcouchbase/src/operations/store.c +360 -0
- data/ext/libcouchbase/src/operations/subdoc.cc +510 -0
- data/ext/libcouchbase/src/operations/touch.c +81 -0
- data/ext/libcouchbase/src/packetutils.c +60 -0
- data/ext/libcouchbase/src/packetutils.h +147 -0
- data/ext/libcouchbase/src/probes.d +211 -0
- data/ext/libcouchbase/src/rdb/bigalloc.c +225 -0
- data/ext/libcouchbase/src/rdb/bigalloc.h +73 -0
- data/ext/libcouchbase/src/rdb/chunkalloc.c +174 -0
- data/ext/libcouchbase/src/rdb/libcalloc.c +94 -0
- data/ext/libcouchbase/src/rdb/rope.c +419 -0
- data/ext/libcouchbase/src/rdb/rope.h +488 -0
- data/ext/libcouchbase/src/retrychk.c +113 -0
- data/ext/libcouchbase/src/retryq.c +424 -0
- data/ext/libcouchbase/src/retryq.h +157 -0
- data/ext/libcouchbase/src/ringbuffer.c +442 -0
- data/ext/libcouchbase/src/ringbuffer.h +100 -0
- data/ext/libcouchbase/src/settings.c +95 -0
- data/ext/libcouchbase/src/settings.h +188 -0
- data/ext/libcouchbase/src/simplestring.c +211 -0
- data/ext/libcouchbase/src/simplestring.h +228 -0
- data/ext/libcouchbase/src/sllist-inl.h +197 -0
- data/ext/libcouchbase/src/sllist.h +76 -0
- data/ext/libcouchbase/src/ssl/CMakeLists.txt +23 -0
- data/ext/libcouchbase/src/ssl/ssl_c.c +415 -0
- data/ext/libcouchbase/src/ssl/ssl_common.c +454 -0
- data/ext/libcouchbase/src/ssl/ssl_e.c +408 -0
- data/ext/libcouchbase/src/ssl/ssl_iot_common.h +180 -0
- data/ext/libcouchbase/src/ssobuf.h +82 -0
- data/ext/libcouchbase/src/strcodecs/base64.c +123 -0
- data/ext/libcouchbase/src/strcodecs/strcodecs.h +285 -0
- data/ext/libcouchbase/src/timings.c +208 -0
- data/ext/libcouchbase/src/trace.h +105 -0
- data/ext/libcouchbase/src/utilities.c +171 -0
- data/ext/libcouchbase/src/vbucket/CMakeLists.txt +2 -0
- data/ext/libcouchbase/src/vbucket/aliases.h +35 -0
- data/ext/libcouchbase/src/vbucket/crc32.h +83 -0
- data/ext/libcouchbase/src/vbucket/hash.h +30 -0
- data/ext/libcouchbase/src/vbucket/json-inl.h +112 -0
- data/ext/libcouchbase/src/vbucket/ketama.c +66 -0
- data/ext/libcouchbase/src/vbucket/rfc1321/global.h +32 -0
- data/ext/libcouchbase/src/vbucket/rfc1321/md5.h +35 -0
- data/ext/libcouchbase/src/vbucket/rfc1321/md5c-inl.h +335 -0
- data/ext/libcouchbase/src/vbucket/vbucket.c +1543 -0
- data/ext/libcouchbase/src/views/docreq.c +194 -0
- data/ext/libcouchbase/src/views/docreq.h +83 -0
- data/ext/libcouchbase/src/views/viewreq.c +358 -0
- data/ext/libcouchbase/src/views/viewreq.h +36 -0
- data/ext/libcouchbase/src/wait.c +161 -0
- data/ext/libcouchbase/tests/CMakeLists.txt +140 -0
- data/ext/libcouchbase/tests/basic/t_base64.cc +81 -0
- data/ext/libcouchbase/tests/basic/t_ccbc103.cc +95 -0
- data/ext/libcouchbase/tests/basic/t_connstr.cc +404 -0
- data/ext/libcouchbase/tests/basic/t_creds.cc +32 -0
- data/ext/libcouchbase/tests/basic/t_ctlcodes.cc +92 -0
- data/ext/libcouchbase/tests/basic/t_hashset.cc +262 -0
- data/ext/libcouchbase/tests/basic/t_host.cc +198 -0
- data/ext/libcouchbase/tests/basic/t_jsparse.cc +137 -0
- data/ext/libcouchbase/tests/basic/t_jsparse.h +589 -0
- data/ext/libcouchbase/tests/basic/t_list.cc +155 -0
- data/ext/libcouchbase/tests/basic/t_logger.cc +65 -0
- data/ext/libcouchbase/tests/basic/t_misc.cc +24 -0
- data/ext/libcouchbase/tests/basic/t_n1qlstrings.cc +18 -0
- data/ext/libcouchbase/tests/basic/t_netbuf.cc +446 -0
- data/ext/libcouchbase/tests/basic/t_packet.cc +222 -0
- data/ext/libcouchbase/tests/basic/t_ringbuffer.cc +278 -0
- data/ext/libcouchbase/tests/basic/t_slist.cc +429 -0
- data/ext/libcouchbase/tests/basic/t_strerror.cc +64 -0
- data/ext/libcouchbase/tests/basic/t_string.cc +112 -0
- data/ext/libcouchbase/tests/basic/t_urlencode.cc +132 -0
- data/ext/libcouchbase/tests/check-all.cc +608 -0
- data/ext/libcouchbase/tests/htparse/t_basic.cc +193 -0
- data/ext/libcouchbase/tests/ioserver/connection.cc +166 -0
- data/ext/libcouchbase/tests/ioserver/future.cc +50 -0
- data/ext/libcouchbase/tests/ioserver/ioserver.cc +104 -0
- data/ext/libcouchbase/tests/ioserver/ioserver.h +478 -0
- data/ext/libcouchbase/tests/ioserver/socket.cc +88 -0
- data/ext/libcouchbase/tests/ioserver/ssl_connection.cc +145 -0
- data/ext/libcouchbase/tests/ioserver/threads-pthreads.cc +119 -0
- data/ext/libcouchbase/tests/ioserver/threads-win32.cc +117 -0
- data/ext/libcouchbase/tests/ioserver/threads.h +66 -0
- data/ext/libcouchbase/tests/iotests/iotests.h +15 -0
- data/ext/libcouchbase/tests/iotests/mock-environment.cc +524 -0
- data/ext/libcouchbase/tests/iotests/mock-environment.h +385 -0
- data/ext/libcouchbase/tests/iotests/mock-unit-test.cc +67 -0
- data/ext/libcouchbase/tests/iotests/mock-unit-test.h +61 -0
- data/ext/libcouchbase/tests/iotests/serverparams.h +76 -0
- data/ext/libcouchbase/tests/iotests/t_arithmetic.cc +143 -0
- data/ext/libcouchbase/tests/iotests/t_behavior.cc +226 -0
- data/ext/libcouchbase/tests/iotests/t_configcache.cc +117 -0
- data/ext/libcouchbase/tests/iotests/t_confmon.cc +241 -0
- data/ext/libcouchbase/tests/iotests/t_durability.cc +1059 -0
- data/ext/libcouchbase/tests/iotests/t_forward.cc +110 -0
- data/ext/libcouchbase/tests/iotests/t_get.cc +512 -0
- data/ext/libcouchbase/tests/iotests/t_http.cc +438 -0
- data/ext/libcouchbase/tests/iotests/t_iops.cc +175 -0
- data/ext/libcouchbase/tests/iotests/t_lock.cc +275 -0
- data/ext/libcouchbase/tests/iotests/t_misc.cc +713 -0
- data/ext/libcouchbase/tests/iotests/t_mutate.cc +609 -0
- data/ext/libcouchbase/tests/iotests/t_n1ql.cc +270 -0
- data/ext/libcouchbase/tests/iotests/t_netfail.cc +654 -0
- data/ext/libcouchbase/tests/iotests/t_obseqno.cc +157 -0
- data/ext/libcouchbase/tests/iotests/t_regression.cc +321 -0
- data/ext/libcouchbase/tests/iotests/t_sched.cc +88 -0
- data/ext/libcouchbase/tests/iotests/t_serverops.cc +230 -0
- data/ext/libcouchbase/tests/iotests/t_smoke.cc +528 -0
- data/ext/libcouchbase/tests/iotests/t_subdoc.cc +822 -0
- data/ext/libcouchbase/tests/iotests/t_syncmode.cc +64 -0
- data/ext/libcouchbase/tests/iotests/t_views.cc +405 -0
- data/ext/libcouchbase/tests/iotests/testutil.cc +250 -0
- data/ext/libcouchbase/tests/iotests/testutil.h +163 -0
- data/ext/libcouchbase/tests/mc/mctest.h +119 -0
- data/ext/libcouchbase/tests/mc/pktmaker.h +101 -0
- data/ext/libcouchbase/tests/mc/t_alloc.cc +269 -0
- data/ext/libcouchbase/tests/mc/t_context.cc +100 -0
- data/ext/libcouchbase/tests/mc/t_flush.cc +185 -0
- data/ext/libcouchbase/tests/mc/t_forward.cc +239 -0
- data/ext/libcouchbase/tests/mc/t_ioflush.cc +102 -0
- data/ext/libcouchbase/tests/mc/t_iovcursor.cc +173 -0
- data/ext/libcouchbase/tests/mocksupport/procutil.c +305 -0
- data/ext/libcouchbase/tests/mocksupport/procutil.h +89 -0
- data/ext/libcouchbase/tests/mocksupport/server.c +391 -0
- data/ext/libcouchbase/tests/mocksupport/server.h +72 -0
- data/ext/libcouchbase/tests/mocksupport/timeout.c +69 -0
- data/ext/libcouchbase/tests/nonio_tests.cc +23 -0
- data/ext/libcouchbase/tests/rdb/rdbtest.h +133 -0
- data/ext/libcouchbase/tests/rdb/t_basic.cc +128 -0
- data/ext/libcouchbase/tests/rdb/t_bigalloc.cc +93 -0
- data/ext/libcouchbase/tests/rdb/t_refs.cc +112 -0
- data/ext/libcouchbase/tests/socktests/socktest.cc +347 -0
- data/ext/libcouchbase/tests/socktests/socktest.h +448 -0
- data/ext/libcouchbase/tests/socktests/t_basic.cc +143 -0
- data/ext/libcouchbase/tests/socktests/t_ctx.cc +73 -0
- data/ext/libcouchbase/tests/socktests/t_manager.cc +179 -0
- data/ext/libcouchbase/tests/socktests/t_putex.cc +256 -0
- data/ext/libcouchbase/tests/socktests/t_read.cc +187 -0
- data/ext/libcouchbase/tests/socktests/t_reentrant.cc +143 -0
- data/ext/libcouchbase/tests/socktests/t_ssl.cc +80 -0
- data/ext/libcouchbase/tests/socktests/t_write.cc +95 -0
- data/ext/libcouchbase/tests/start_mock.bat +15 -0
- data/ext/libcouchbase/tests/start_mock.sh +42 -0
- data/ext/libcouchbase/tests/unit_tests.cc +43 -0
- data/ext/libcouchbase/tests/vbucket/confdata/bad.json +101 -0
- data/ext/libcouchbase/tests/vbucket/confdata/full_25.json +363 -0
- data/ext/libcouchbase/tests/vbucket/confdata/memd_25.json +90 -0
- data/ext/libcouchbase/tests/vbucket/confdata/memd_30.json +1 -0
- data/ext/libcouchbase/tests/vbucket/confdata/memd_45.json +1 -0
- data/ext/libcouchbase/tests/vbucket/confdata/terse_25.json +291 -0
- data/ext/libcouchbase/tests/vbucket/confdata/terse_30.json +1 -0
- data/ext/libcouchbase/tests/vbucket/t_config.cc +341 -0
- data/ext/libcouchbase/tools/CMakeLists.txt +51 -0
- data/ext/libcouchbase/tools/cbc-handlers.h +462 -0
- data/ext/libcouchbase/tools/cbc-n1qlback.cc +439 -0
- data/ext/libcouchbase/tools/cbc-pillowfight.cc +822 -0
- data/ext/libcouchbase/tools/cbc.cc +1541 -0
- data/ext/libcouchbase/tools/common/histogram.cc +43 -0
- data/ext/libcouchbase/tools/common/histogram.h +23 -0
- data/ext/libcouchbase/tools/common/my_inttypes.h +22 -0
- data/ext/libcouchbase/tools/common/options.cc +420 -0
- data/ext/libcouchbase/tools/common/options.h +81 -0
- data/ext/libcouchbase/tools/docgen/docgen.h +469 -0
- data/ext/libcouchbase/tools/docgen/loc.h +210 -0
- data/ext/libcouchbase/tools/docgen/placeholders.h +211 -0
- data/ext/libcouchbase/tools/docgen/seqgen.h +94 -0
- data/lib/libcouchbase.rb +36 -0
- data/lib/libcouchbase/bucket.rb +819 -0
- data/lib/libcouchbase/callbacks.rb +72 -0
- data/lib/libcouchbase/connection.rb +790 -0
- data/lib/libcouchbase/design_docs.rb +86 -0
- data/lib/libcouchbase/error.rb +68 -0
- data/lib/libcouchbase/ext/libcouchbase.rb +1135 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdbase.rb +23 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdcounter.rb +36 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdendure.rb +26 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdfts.rb +24 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdget.rb +30 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdgetreplica.rb +49 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdhttp.rb +58 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdn1ql.rb +40 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdobseqno.rb +33 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdobserve.rb +30 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdstore.rb +40 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdstoredur.rb +45 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdsubdoc.rb +49 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdverbosity.rb +29 -0
- data/lib/libcouchbase/ext/libcouchbase/cmdviewquery.rb +61 -0
- data/lib/libcouchbase/ext/libcouchbase/contigbuf.rb +14 -0
- data/lib/libcouchbase/ext/libcouchbase/create_st.rb +15 -0
- data/lib/libcouchbase/ext/libcouchbase/create_st0.rb +23 -0
- data/lib/libcouchbase/ext/libcouchbase/create_st1.rb +26 -0
- data/lib/libcouchbase/ext/libcouchbase/create_st2.rb +32 -0
- data/lib/libcouchbase/ext/libcouchbase/create_st3.rb +26 -0
- data/lib/libcouchbase/ext/libcouchbase/crst_u.rb +20 -0
- data/lib/libcouchbase/ext/libcouchbase/durability_opts_st_v.rb +11 -0
- data/lib/libcouchbase/ext/libcouchbase/durability_opts_t.rb +14 -0
- data/lib/libcouchbase/ext/libcouchbase/durabilityopt_sv0.rb +63 -0
- data/lib/libcouchbase/ext/libcouchbase/enums.rb +991 -0
- data/lib/libcouchbase/ext/libcouchbase/fragbuf.rb +18 -0
- data/lib/libcouchbase/ext/libcouchbase/ftshandle.rb +7 -0
- data/lib/libcouchbase/ext/libcouchbase/histogram.rb +34 -0
- data/lib/libcouchbase/ext/libcouchbase/http_request_t.rb +7 -0
- data/lib/libcouchbase/ext/libcouchbase/keybuf.rb +20 -0
- data/lib/libcouchbase/ext/libcouchbase/multicmd_ctx.rb +30 -0
- data/lib/libcouchbase/ext/libcouchbase/mutation_token.rb +17 -0
- data/lib/libcouchbase/ext/libcouchbase/n1qlhandle.rb +7 -0
- data/lib/libcouchbase/ext/libcouchbase/n1qlparams.rb +7 -0
- data/lib/libcouchbase/ext/libcouchbase/respbase.rb +29 -0
- data/lib/libcouchbase/ext/libcouchbase/respcounter.rb +32 -0
- data/lib/libcouchbase/ext/libcouchbase/respendure.rb +49 -0
- data/lib/libcouchbase/ext/libcouchbase/respfts.rb +40 -0
- data/lib/libcouchbase/ext/libcouchbase/respget.rb +44 -0
- data/lib/libcouchbase/ext/libcouchbase/resphttp.rb +48 -0
- data/lib/libcouchbase/ext/libcouchbase/respmcversion.rb +38 -0
- data/lib/libcouchbase/ext/libcouchbase/respn1ql.rb +41 -0
- data/lib/libcouchbase/ext/libcouchbase/respobseqno.rb +52 -0
- data/lib/libcouchbase/ext/libcouchbase/respobserve.rb +41 -0
- data/lib/libcouchbase/ext/libcouchbase/respserverbase.rb +32 -0
- data/lib/libcouchbase/ext/libcouchbase/respstats.rb +38 -0
- data/lib/libcouchbase/ext/libcouchbase/respstore.rb +32 -0
- data/lib/libcouchbase/ext/libcouchbase/respstoredur.rb +38 -0
- data/lib/libcouchbase/ext/libcouchbase/respsubdoc.rb +35 -0
- data/lib/libcouchbase/ext/libcouchbase/respviewquery.rb +67 -0
- data/lib/libcouchbase/ext/libcouchbase/sdentry.rb +22 -0
- data/lib/libcouchbase/ext/libcouchbase/sdspec.rb +26 -0
- data/lib/libcouchbase/ext/libcouchbase/t.rb +7 -0
- data/lib/libcouchbase/ext/libcouchbase/valbuf.rb +22 -0
- data/lib/libcouchbase/ext/libcouchbase/valbuf_u_buf.rb +14 -0
- data/lib/libcouchbase/ext/libcouchbase/viewhandle.rb +7 -0
- data/lib/libcouchbase/ext/libcouchbase_iocp.rb +26 -0
- data/lib/libcouchbase/ext/libcouchbase_libuv.rb +18 -0
- data/lib/libcouchbase/ext/tasks.rb +87 -0
- data/lib/libcouchbase/n1ql.rb +73 -0
- data/lib/libcouchbase/query_full_text.rb +147 -0
- data/lib/libcouchbase/query_n1ql.rb +121 -0
- data/lib/libcouchbase/query_view.rb +129 -0
- data/lib/libcouchbase/results_fiber.rb +262 -0
- data/lib/libcouchbase/results_native.rb +211 -0
- data/lib/libcouchbase/version.rb +5 -0
- data/libcouchbase.gemspec +61 -0
- data/spec/bucket_spec.rb +270 -0
- data/spec/connection_spec.rb +277 -0
- data/spec/design_docs_spec.rb +23 -0
- data/spec/error_spec.rb +26 -0
- data/spec/fts_spec.rb +129 -0
- data/spec/n1ql_spec.rb +201 -0
- data/spec/results_libuv_spec.rb +229 -0
- data/spec/results_native_spec.rb +259 -0
- data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/design.json +1 -0
- data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/data-0000.cbb +0 -0
- data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/failover.json +1 -0
- data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/meta.json +1 -0
- data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/seqno.json +1 -0
- data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/snapshot_markers.json +1 -0
- data/spec/view_spec.rb +195 -0
- metadata +775 -0
|
@@ -0,0 +1,977 @@
|
|
|
1
|
+
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
2
|
+
/*
|
|
3
|
+
* Copyright 2014 Couchbase, Inc.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
#ifndef LCB_MCREQ_H
|
|
19
|
+
#define LCB_MCREQ_H
|
|
20
|
+
|
|
21
|
+
#include <libcouchbase/couchbase.h>
|
|
22
|
+
#include <libcouchbase/api3.h>
|
|
23
|
+
#include <libcouchbase/vbucket.h>
|
|
24
|
+
#include <memcached/protocol_binary.h>
|
|
25
|
+
#include "netbuf/netbuf.h"
|
|
26
|
+
#include "sllist.h"
|
|
27
|
+
#include "config.h"
|
|
28
|
+
#include "packetutils.h"
|
|
29
|
+
|
|
30
|
+
#ifdef __cplusplus
|
|
31
|
+
extern "C" {
|
|
32
|
+
#endif /** __cplusplus */
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @file
|
|
36
|
+
* @brief Core memcached client routines
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @defgroup mcreq Memcached Packets
|
|
41
|
+
*
|
|
42
|
+
* @brief
|
|
43
|
+
* This module defines the core routines which are used to construct, handle,
|
|
44
|
+
* and enqueue packets. They also handle the retry mechanisms.
|
|
45
|
+
*
|
|
46
|
+
*
|
|
47
|
+
* # Initializing the Queue
|
|
48
|
+
*
|
|
49
|
+
* Using the mcreq system involves first establishing an mc_CMDQUEUE structure.
|
|
50
|
+
* This structure contains several mc_PIPELINE structures. The proper way to
|
|
51
|
+
* initialize the mc_CMDQEUE structure is to call mcreq_queue_init().
|
|
52
|
+
*
|
|
53
|
+
* Once the queue has been initialized, it must be assigned a
|
|
54
|
+
* `lcbvb_CONFIG*` (which it will _not_ own). This is done via the
|
|
55
|
+
* mcreq_queue_add_pipelines(). This function takes an array of pipeline pointers,
|
|
56
|
+
* and this will typically be a "subclass" (mc_SERVER) allocated via
|
|
57
|
+
* mcserver_alloc()
|
|
58
|
+
*
|
|
59
|
+
* Once the pipelines have been established, operations may be scheduled and
|
|
60
|
+
* distributed across the various pipelines.
|
|
61
|
+
*
|
|
62
|
+
* # Creating a Packet
|
|
63
|
+
*
|
|
64
|
+
* For each packet sent, the packet should first be reserved via the
|
|
65
|
+
* mcreq_basic_packet() call which allocates space for the actual packet
|
|
66
|
+
* as well as provides and populates the vbucket fields as needed.
|
|
67
|
+
*
|
|
68
|
+
* The header size must be the total size of the header plus any extras
|
|
69
|
+
* following the header but before the actual key data.
|
|
70
|
+
*
|
|
71
|
+
* If the command carries a body in addition to the key, it should be provided
|
|
72
|
+
* via mcreq_reserve_value().
|
|
73
|
+
*
|
|
74
|
+
* Once the packet has a key and value it must be assigned a cookie. The
|
|
75
|
+
* cookie may either be of a simple embedded type or an extended type. Whatever
|
|
76
|
+
* the case the appropriate flags should be set.
|
|
77
|
+
*
|
|
78
|
+
* # Scheduling Commands
|
|
79
|
+
*
|
|
80
|
+
* Scheduling commands is performed in an _enter_ and _leave_ sequence.
|
|
81
|
+
* mcreq_sched_enter() should be called before one or more commands are added.
|
|
82
|
+
* Then for each new command added, mcreq_sched_add() should be invoked with
|
|
83
|
+
* the new packet, and finally either mcreq_sched_leave() or mcreq_sched_fail()
|
|
84
|
+
* should be invoked to flush the commands to the network or free the resources
|
|
85
|
+
* allocated. In both cases the commands affected are scoped by the last call
|
|
86
|
+
* to mcreq_sched_enter().
|
|
87
|
+
*
|
|
88
|
+
* In order for commands to actually be flushed, the mc_PIPELINE::flush_start
|
|
89
|
+
* field must be set. This can vary depending on what the state of the underlying
|
|
90
|
+
* socket is. In server.c for example, the initial callback just schedules a
|
|
91
|
+
* connection. While the connection is in progress this field is set to a no-op
|
|
92
|
+
* callback, and finally when the socket is connected this field is set to
|
|
93
|
+
* interact with the I/O system which actually writes the buffers.
|
|
94
|
+
*
|
|
95
|
+
* # Flushing Responses
|
|
96
|
+
*
|
|
97
|
+
* This module does not do network I/O by design. Its only bridge is the
|
|
98
|
+
* mc_PIPELINE::flush_start function which should be set to actually flush
|
|
99
|
+
* the data.
|
|
100
|
+
*
|
|
101
|
+
* # Handling Reponses
|
|
102
|
+
*
|
|
103
|
+
* The I/O system reading the responses should place the response into a
|
|
104
|
+
* packet_info structure. Once this is done, the request for the response must
|
|
105
|
+
* be found using the opaque. This may be done with mcreq_pipeline_find()
|
|
106
|
+
* or mcreq_pipeline_remove() depending on whether this request expects multiple
|
|
107
|
+
* responses (such as the 'stat' command). These parameters should be passed
|
|
108
|
+
* to the mcreq_dispatch_response() function which will invoke the appropriate
|
|
109
|
+
* user-defined handler for it.
|
|
110
|
+
*
|
|
111
|
+
* If the packet does not expect more responses (as above), the application
|
|
112
|
+
* should call mcreq_packet_handled()
|
|
113
|
+
*
|
|
114
|
+
*
|
|
115
|
+
* # Error Handling and Failing Commands
|
|
116
|
+
*
|
|
117
|
+
* This module offers facilities for failing commands from a pipeline while
|
|
118
|
+
* safely allowing for their sharing of user-allocated data.
|
|
119
|
+
*
|
|
120
|
+
* The mcreq_pipeline_fail() and mcreq_pipeline_timeout() will fail packets
|
|
121
|
+
* in a single pipeline (the former failing all packets, the latter failing
|
|
122
|
+
* only packets older than a specified threshold).
|
|
123
|
+
*
|
|
124
|
+
* The mcreq_iterwipe() will clean a pipeline of its packets, invoking a
|
|
125
|
+
* callback which allows the user to relocate the packet to another pipeline.
|
|
126
|
+
* In this callback the user may invoke the mcreq_renew_packet() function to
|
|
127
|
+
* create a copy of the packet, keeping the previous packet in tact, but
|
|
128
|
+
* returning a copy of the packet as the 'primary' version.
|
|
129
|
+
*
|
|
130
|
+
* @addtogroup mcreq
|
|
131
|
+
* @{
|
|
132
|
+
*/
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* @name Core Packet Structure
|
|
137
|
+
* @{
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
/** @brief Constant defining the size of a memcached header */
|
|
141
|
+
#define MCREQ_PKT_BASESIZE 24
|
|
142
|
+
|
|
143
|
+
/** @brief Embedded user data for a simple request. */
|
|
144
|
+
typedef struct {
|
|
145
|
+
const void *cookie; /**< User pointer to place in callbacks */
|
|
146
|
+
hrtime_t start; /**< Time of the initial request. Used for timeouts */
|
|
147
|
+
} mc_REQDATA;
|
|
148
|
+
|
|
149
|
+
struct mc_packet_st;
|
|
150
|
+
struct mc_pipeline_st;
|
|
151
|
+
|
|
152
|
+
/** This structure serves as a kind of 'vtable' for the mc_REQDATAEX structure. */
|
|
153
|
+
typedef struct {
|
|
154
|
+
/**
|
|
155
|
+
* Callback to be invoked for "Extended" packet handling. This is only
|
|
156
|
+
* available in the mc_REQDATAEX structure
|
|
157
|
+
* @param pipeline the pipeline on which the response was received
|
|
158
|
+
* @param pkt the request packet
|
|
159
|
+
* @param rc the error code for the response
|
|
160
|
+
* @param arg opaque pointer for callback
|
|
161
|
+
*/
|
|
162
|
+
void (*handler)(struct mc_pipeline_st *pipeline,
|
|
163
|
+
struct mc_packet_st *pkt, lcb_error_t rc, const void *res);
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Destructor function called from within mcreq_sched_fail() for packets with
|
|
167
|
+
* extended data. This function should suitably free the data for the packet,
|
|
168
|
+
* if any.
|
|
169
|
+
* @param pkt The packet being unscheduled.
|
|
170
|
+
*/
|
|
171
|
+
void (*fail_dtor)(struct mc_packet_st *pkt);
|
|
172
|
+
} mc_REQDATAPROCS;
|
|
173
|
+
|
|
174
|
+
/**@brief Allocated user data for an extended request.
|
|
175
|
+
*
|
|
176
|
+
* @details
|
|
177
|
+
* An extended request is typically used by commands which have more complex
|
|
178
|
+
* handling requirements, such as mapping a single user API call to multiple
|
|
179
|
+
* packets, or when the packet itself is generated internally rather than
|
|
180
|
+
* on behalf of an API request.
|
|
181
|
+
*/
|
|
182
|
+
typedef struct {
|
|
183
|
+
const void *cookie; /**< User data */
|
|
184
|
+
hrtime_t start; /**< Start time */
|
|
185
|
+
mc_REQDATAPROCS *procs; /**< Common routines for the packet */
|
|
186
|
+
} mc_REQDATAEX;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Called when the buffers for a packet have been invoked
|
|
190
|
+
* @param pl the pipeline
|
|
191
|
+
* @param ucookie the cookie passed to the scheduler
|
|
192
|
+
* @param kbuf the pointer to the beginning of the key/header buffer, if
|
|
193
|
+
* passed to the scheduler
|
|
194
|
+
* @param vbuf the pointer to the beginning of the value buffer or the first
|
|
195
|
+
* IOV within the buffer.
|
|
196
|
+
*/
|
|
197
|
+
typedef void (*mcreq_bufdone_fn)(struct mc_pipeline_st *pl,
|
|
198
|
+
const void *ucookie, void *kbuf, void *vbuf);
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Possible values for the mc_PACKET#flags field in the packet structure.
|
|
202
|
+
* These provide
|
|
203
|
+
* information as to which fields in the various unions are in use, and how
|
|
204
|
+
* to allocate/release data buffers for requests.
|
|
205
|
+
*/
|
|
206
|
+
typedef enum {
|
|
207
|
+
/** The key is user-allocated. Do not release to MBLOCK */
|
|
208
|
+
MCREQ_F_KEY_NOCOPY = 1 << 0,
|
|
209
|
+
|
|
210
|
+
/** The value is user-allocated. Do not release to MBLOCK */
|
|
211
|
+
MCREQ_F_VALUE_NOCOPY = 1 << 1,
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* The value is user allocated and in the form of an IOV.
|
|
215
|
+
* Use mc_VALUE#multi
|
|
216
|
+
*/
|
|
217
|
+
MCREQ_F_VALUE_IOV = 1 << 2,
|
|
218
|
+
|
|
219
|
+
/** The request has a value. Use mc_VALUE#single unless otherwise noted */
|
|
220
|
+
MCREQ_F_HASVALUE = 1 << 3,
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* The request is tied to an 'extended' user data structure.
|
|
224
|
+
* Use mc_USER#exdata
|
|
225
|
+
*/
|
|
226
|
+
MCREQ_F_REQEXT = 1 << 4,
|
|
227
|
+
|
|
228
|
+
/** The request is a one-to-one user forwarded packet */
|
|
229
|
+
MCREQ_F_UFWD = 1 << 5,
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Indicates that the entire packet has been flushed. Specifically this
|
|
233
|
+
* also indicates that the packet's underlying buffers are no longer needed
|
|
234
|
+
* by libcouchbase.
|
|
235
|
+
*/
|
|
236
|
+
MCREQ_F_FLUSHED = 1 << 6,
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* Indicates that the callback should NOT be invoked for the request. This
|
|
240
|
+
* is typically because the request is just present in the queue for buffer
|
|
241
|
+
* management purposes and has expired or otherwise been invalidated.
|
|
242
|
+
*/
|
|
243
|
+
MCREQ_F_INVOKED = 1 << 7,
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Indicates that this packet and its constituent data members are not
|
|
247
|
+
* part of a nb_MBLOCK but rather point to standalone malloc'd memory. This
|
|
248
|
+
* also indicates that the packet is actually an mc_EXPACKET extended
|
|
249
|
+
* type. This is set by mcreq_renew_packet()
|
|
250
|
+
*/
|
|
251
|
+
MCREQ_F_DETACHED = 1 << 8,
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Another way of signalling that the callback has an 'internal' variant.
|
|
255
|
+
* Dispatching this command requires a specially formatted cookie object,
|
|
256
|
+
* which itself is expected to _contain_ a pointer to the callback, and
|
|
257
|
+
* thus be formatted like so:
|
|
258
|
+
* @code{.c}
|
|
259
|
+
* struct {
|
|
260
|
+
* lcb_RESPCALLBACK callback;
|
|
261
|
+
* };
|
|
262
|
+
* @endcode
|
|
263
|
+
*/
|
|
264
|
+
MCREQ_F_PRIVCALLBACK = 1 << 9
|
|
265
|
+
} mcreq_flags;
|
|
266
|
+
|
|
267
|
+
/** @brief mask of flags indicating user-allocated buffers */
|
|
268
|
+
#define MCREQ_UBUF_FLAGS (MCREQ_F_KEY_NOCOPY|MCREQ_F_VALUE_NOCOPY)
|
|
269
|
+
/** @brief mask of flags indicating response state of the packet */
|
|
270
|
+
#define MCREQ_STATE_FLAGS (MCREQ_F_INVOKED|MCREQ_F_FLUSHED)
|
|
271
|
+
|
|
272
|
+
/** Union representing the value within a packet */
|
|
273
|
+
union mc_VALUE {
|
|
274
|
+
/** For a single contiguous value */
|
|
275
|
+
nb_SPAN single;
|
|
276
|
+
|
|
277
|
+
/** For a set of multiple IOV buffers */
|
|
278
|
+
lcb_FRAGBUF multi;
|
|
279
|
+
};
|
|
280
|
+
|
|
281
|
+
/** Union representing application/command data within a packet structure */
|
|
282
|
+
union mc_USER {
|
|
283
|
+
/** Embedded command info for simple commands; 16 bytes, 48B */
|
|
284
|
+
mc_REQDATA reqdata;
|
|
285
|
+
|
|
286
|
+
/** Pointer to extended data */
|
|
287
|
+
mc_REQDATAEX *exdata;
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* @brief Packet structure for a single Memcached command
|
|
292
|
+
*
|
|
293
|
+
* A single packet structure is allocated for each request
|
|
294
|
+
* sent to a server. A packet structure may be associated with user data in the
|
|
295
|
+
* u_rdata union field, either by using the embedded structure, or by referencing
|
|
296
|
+
* an allocated chunk of 'extended' user data.
|
|
297
|
+
*/
|
|
298
|
+
typedef struct mc_packet_st {
|
|
299
|
+
/** Node in the linked list for logical command ordering */
|
|
300
|
+
sllist_node slnode;
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Node in the linked list for actual output ordering.
|
|
304
|
+
* @see netbuf_end_flush2(), netbuf_pdu_enqueue()
|
|
305
|
+
*/
|
|
306
|
+
sllist_node sl_flushq;
|
|
307
|
+
|
|
308
|
+
/** Span for key and header */
|
|
309
|
+
nb_SPAN kh_span;
|
|
310
|
+
|
|
311
|
+
/** Extras length */
|
|
312
|
+
uint8_t extlen;
|
|
313
|
+
|
|
314
|
+
/** Retries */
|
|
315
|
+
uint8_t retries;
|
|
316
|
+
|
|
317
|
+
/** flags for request. @see mcreq_flags */
|
|
318
|
+
uint16_t flags;
|
|
319
|
+
|
|
320
|
+
/** Cached opaque value */
|
|
321
|
+
uint32_t opaque;
|
|
322
|
+
|
|
323
|
+
/** User/CMDAPI Data */
|
|
324
|
+
union mc_USER u_rdata;
|
|
325
|
+
|
|
326
|
+
/** Value data */
|
|
327
|
+
union mc_VALUE u_value;
|
|
328
|
+
|
|
329
|
+
/** Allocation data for the PACKET structure itself */
|
|
330
|
+
nb_MBLOCK *alloc_parent;
|
|
331
|
+
} mc_PACKET;
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* @brief Gets the request data from the packet structure itself
|
|
336
|
+
* @return an mc_REQDATA or mc_REQDATAEX pointer
|
|
337
|
+
*/
|
|
338
|
+
#define MCREQ_PKT_RDATA(pkt) \
|
|
339
|
+
(((pkt)->flags & MCREQ_F_REQEXT) \
|
|
340
|
+
? ((mc_REQDATA *)(pkt)->u_rdata.exdata) \
|
|
341
|
+
: (&(pkt)->u_rdata.reqdata))
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* @brief Retrieve the cookie pointer from a packet
|
|
345
|
+
* @param pkt
|
|
346
|
+
*/
|
|
347
|
+
#define MCREQ_PKT_COOKIE(pkt) MCREQ_PKT_RDATA(pkt)->cookie
|
|
348
|
+
|
|
349
|
+
/**@}*/
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Callback invoked when APIs request that a pipeline start flushing. It
|
|
353
|
+
* receives a pipeline object as its sole argument.
|
|
354
|
+
*/
|
|
355
|
+
typedef void (*mcreq_flushstart_fn)(struct mc_pipeline_st *pipeline);
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* @brief Structure representing a single input/output queue for memcached
|
|
359
|
+
*
|
|
360
|
+
* Memcached request pipeline. This contains the command log for
|
|
361
|
+
* sending/receiving requests. This is basically the non-I/O part of the server
|
|
362
|
+
*/
|
|
363
|
+
typedef struct mc_pipeline_st {
|
|
364
|
+
/** List of requests. Newer requests are appended at the end */
|
|
365
|
+
sllist_root requests;
|
|
366
|
+
|
|
367
|
+
/** Parent command queue */
|
|
368
|
+
struct mc_cmdqueue_st *parent;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Flush handler. This is invoked to schedule a flush operation
|
|
372
|
+
* the socket
|
|
373
|
+
*/
|
|
374
|
+
mcreq_flushstart_fn flush_start;
|
|
375
|
+
|
|
376
|
+
/** Index of this server within the configuration map */
|
|
377
|
+
int index;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Intermediate queue where pending packets are placed. Moved to
|
|
381
|
+
* the `requests` list when mcreq_sched_leave() is called
|
|
382
|
+
*/
|
|
383
|
+
sllist_root ctxqueued;
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Callback invoked for each packet (which has user-defined buffers) when
|
|
387
|
+
* it is no longer required
|
|
388
|
+
*/
|
|
389
|
+
mcreq_bufdone_fn buf_done_callback;
|
|
390
|
+
|
|
391
|
+
/** Buffer manager for the respective requests. */
|
|
392
|
+
nb_MGR nbmgr;
|
|
393
|
+
|
|
394
|
+
/** Allocator for packet structures */
|
|
395
|
+
nb_MGR reqpool;
|
|
396
|
+
} mc_PIPELINE;
|
|
397
|
+
|
|
398
|
+
typedef struct mc_cmdqueue_st {
|
|
399
|
+
/** Indexed pipelines, i.e. server map target */
|
|
400
|
+
mc_PIPELINE **pipelines;
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* Small array of size npipelines, for mcreq_sched_enter()/mcreq_sched_leave()
|
|
404
|
+
* stuff. See those functions for usage
|
|
405
|
+
*/
|
|
406
|
+
char *scheds;
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Whether a context is currently entered (i.e. sched_enter())
|
|
410
|
+
*/
|
|
411
|
+
unsigned ctxenter;
|
|
412
|
+
|
|
413
|
+
/** Number of pipelines in the queue */
|
|
414
|
+
unsigned npipelines;
|
|
415
|
+
|
|
416
|
+
/** Number of pipelines, with fallback included */
|
|
417
|
+
unsigned _npipelines_ex;
|
|
418
|
+
|
|
419
|
+
/** Sequence number for pipeline. Incremented for each new packet */
|
|
420
|
+
uint32_t seq;
|
|
421
|
+
|
|
422
|
+
/** Configuration handle for vBucket mapping */
|
|
423
|
+
lcbvb_CONFIG* config;
|
|
424
|
+
|
|
425
|
+
/** Opaque pointer to be used by the application (in this case, lcb core) */
|
|
426
|
+
void* cqdata;
|
|
427
|
+
|
|
428
|
+
/**Special pipeline used to contain orphaned packets within a scheduling
|
|
429
|
+
* context. This field is used by mcreq_set_fallback_handler() */
|
|
430
|
+
mc_PIPELINE *fallback;
|
|
431
|
+
} mc_CMDQUEUE;
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* Allocate a packet belonging to a specific pipeline.
|
|
435
|
+
* @param pipeline the pipeline to allocate against
|
|
436
|
+
* @return a new packet structure or NULL on error
|
|
437
|
+
*/
|
|
438
|
+
mc_PACKET *
|
|
439
|
+
mcreq_allocate_packet(mc_PIPELINE *pipeline);
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* Free the packet structure. This will simply free the skeleton structure.
|
|
444
|
+
* The underlying members will not be touched.
|
|
445
|
+
* @param pipeline the pipleine which was used to allocate the packet
|
|
446
|
+
* @param packet the packet to release
|
|
447
|
+
*/
|
|
448
|
+
void
|
|
449
|
+
mcreq_release_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
|
|
450
|
+
|
|
451
|
+
struct mc_epkt_datum;
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Extended packet structure. This is returned by mcreq_renew_packet().
|
|
455
|
+
*
|
|
456
|
+
* The purpose of this structure is to be able to "tag" extra data to the packet
|
|
457
|
+
* (typically for retries, or "special" commands) without weighing down on the
|
|
458
|
+
* normal packet structure; thus it should be considered a 'subclass' of the
|
|
459
|
+
* normal packet structure.
|
|
460
|
+
*/
|
|
461
|
+
typedef struct mc_expacket_st {
|
|
462
|
+
/** The base packet structure */
|
|
463
|
+
mc_PACKET base;
|
|
464
|
+
/* Additional data for the packet itself */
|
|
465
|
+
sllist_root data;
|
|
466
|
+
} mc_EXPACKET;
|
|
467
|
+
|
|
468
|
+
typedef struct mc_epkt_datum {
|
|
469
|
+
sllist_node slnode;
|
|
470
|
+
|
|
471
|
+
/**Unique string key by which this datum will be identified, as more
|
|
472
|
+
* than a single datum can exist for a packet */
|
|
473
|
+
const char *key;
|
|
474
|
+
|
|
475
|
+
/**Free the data structure
|
|
476
|
+
* @param datum the datum object */
|
|
477
|
+
void (*dtorfn)(struct mc_epkt_datum *datum);
|
|
478
|
+
} mc_EPKTDATUM;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* Detatches the packet src belonging to the given pipeline. A detached
|
|
482
|
+
* packet has all its data allocated via malloc and does not belong to
|
|
483
|
+
* any particular buffer. This is typically used for relocation or retries
|
|
484
|
+
* where it is impractical to affect the in-order netbuf allocator.
|
|
485
|
+
*
|
|
486
|
+
* @param src the source packet to copy
|
|
487
|
+
* @return a new packet structure. You should still clear the packet's data
|
|
488
|
+
* with wipe_packet/release_packet but you may pass NULL as the pipeline
|
|
489
|
+
* parameter.
|
|
490
|
+
*
|
|
491
|
+
* @attention
|
|
492
|
+
* Any 'Extended' packet data is **MOVED** from the source to the destination
|
|
493
|
+
* packet. This goes well with the typical use case of this function, which is
|
|
494
|
+
* not to actually duplicate the packet, but rather to provide a fresh copy
|
|
495
|
+
* which may be re-used.
|
|
496
|
+
*
|
|
497
|
+
* @attention
|
|
498
|
+
* This function attempts to be "dumb" in the sense of trying to make an
|
|
499
|
+
* exact effective clone of the original packet (the main goal of this function
|
|
500
|
+
* is to move the resources of the packet over to a new block of memory). This
|
|
501
|
+
* means things like non-buffer-related flags (i.e. the ones not specifying
|
|
502
|
+
* the layout of the buffer) are _preserved_, including the so-called
|
|
503
|
+
* "state flags" which indicate if a packet has been flushed and/or handled. If
|
|
504
|
+
* calling this function to retry a packet, ensure to clear these state flags.
|
|
505
|
+
*/
|
|
506
|
+
mc_PACKET *
|
|
507
|
+
mcreq_renew_packet(const mc_PACKET *src);
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* Associates a datum with the packet. The packet must be a standalone packet,
|
|
511
|
+
* indicated by the MCREQ_F_DETACHED flag in the mc_PACKET::flags field.
|
|
512
|
+
* @param ep The packet to which the data should be added
|
|
513
|
+
* @param datum The datum object to add. The object is not copied and should
|
|
514
|
+
* not be freed until the `dtorfn` or `copyfn` functions have been called
|
|
515
|
+
* @return 0 on success, nonzero on failure (i.e. if packet is not detached).
|
|
516
|
+
*/
|
|
517
|
+
int
|
|
518
|
+
mcreq_epkt_insert(mc_EXPACKET *ep, mc_EPKTDATUM *datum);
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* Locate the datum associated with the given key for the packet.
|
|
522
|
+
* @param ep The packet in which to search
|
|
523
|
+
* @param key A NUL-terminated string matching the mc_EPKTDATUM::key field
|
|
524
|
+
* @return The datum, or NULL if it does not exist.
|
|
525
|
+
*/
|
|
526
|
+
mc_EPKTDATUM *
|
|
527
|
+
mcreq_epkt_find(mc_EXPACKET *ep, const char *key);
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Reserve the packet's basic header structure, this is for use for frames
|
|
531
|
+
* which do not contain keys, or contain fixed size data which does not
|
|
532
|
+
* need to be returned via get_key
|
|
533
|
+
* @param pipeline the pipeline to use
|
|
534
|
+
* @param packet the packet which should contain the header
|
|
535
|
+
* @param hdrsize the total size of the header+extras+key
|
|
536
|
+
*/
|
|
537
|
+
lcb_error_t
|
|
538
|
+
mcreq_reserve_header(
|
|
539
|
+
mc_PIPELINE *pipeline, mc_PACKET *packet, uint8_t hdrsize);
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* Initialize the given packet's key structure
|
|
543
|
+
* @param pipeline the pipeline used to allocate the packet
|
|
544
|
+
* @param packet the packet which should have its key field initialized
|
|
545
|
+
* @param hdrsize the size of the header before the key. This should contain
|
|
546
|
+
* the header size (i.e. 24 bytes) PLUS any extras therein.
|
|
547
|
+
* @param kreq the user-provided key structure
|
|
548
|
+
* @return LCB_SUCCESS on success, LCB_CLIENT_ENOMEM on allocation failure
|
|
549
|
+
*/
|
|
550
|
+
lcb_error_t
|
|
551
|
+
mcreq_reserve_key(
|
|
552
|
+
mc_PIPELINE *pipeline, mc_PACKET *packet,
|
|
553
|
+
uint8_t hdrsize, const lcb_KEYBUF *kreq);
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* Initialize the given packet's value structure. Only applicable for storage
|
|
558
|
+
* operations.
|
|
559
|
+
* @param pipeline the pipeline used to allocate the packet
|
|
560
|
+
* @param packet the packet whose value field should be initialized
|
|
561
|
+
* @param vreq the user-provided structure containing the value parameters
|
|
562
|
+
* @return LCB_SUCCESS on success, LCB_CLIENT_ENOMEM on allocation failure
|
|
563
|
+
*/
|
|
564
|
+
lcb_error_t
|
|
565
|
+
mcreq_reserve_value(mc_PIPELINE *pipeline, mc_PACKET *packet,
|
|
566
|
+
const lcb_VALBUF *vreq);
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* Reserves value/body space, but doesn't actually copy the contents over
|
|
570
|
+
* @param pipeline the pipeline to use
|
|
571
|
+
* @param packet the packet to host the value
|
|
572
|
+
* @param n the number of bytes to reserve
|
|
573
|
+
*/
|
|
574
|
+
lcb_error_t
|
|
575
|
+
mcreq_reserve_value2(mc_PIPELINE *pipeline, mc_PACKET *packet, lcb_size_t n);
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* Enqueue the packet to the pipeline. This packet should have fully been
|
|
580
|
+
* initialized. Specifically, the packet's data buffer contents (i.e. key,
|
|
581
|
+
* header, and value) must not be modified once this function is called
|
|
582
|
+
*
|
|
583
|
+
* @param pipeline the target pipeline that the packet will be queued in
|
|
584
|
+
* @param packet the packet to enqueue.
|
|
585
|
+
* This function always succeeds.
|
|
586
|
+
*/
|
|
587
|
+
void
|
|
588
|
+
mcreq_enqueue_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* Like enqueue packet, except it will also inspect the packet's timeout field
|
|
592
|
+
* and if necessary, restructure the command inside the request list so that
|
|
593
|
+
* it appears before newer commands.
|
|
594
|
+
*
|
|
595
|
+
* The default enqueue_packet() just appends the command to the end of the
|
|
596
|
+
* queue while this will perform an additional check (and is less efficient)
|
|
597
|
+
*/
|
|
598
|
+
void
|
|
599
|
+
mcreq_reenqueue_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
* Wipe the packet's internal buffers, releasing them. This should be called
|
|
603
|
+
* when the underlying data buffer fields are no longer needed, usually this
|
|
604
|
+
* is called directly before release_packet.
|
|
605
|
+
* Note that release_packet should be called to free the storage for the packet
|
|
606
|
+
* structure itself.
|
|
607
|
+
* @param pipeline the pipeline structure used to allocate this packet
|
|
608
|
+
* @param packet the packet to wipe.
|
|
609
|
+
*/
|
|
610
|
+
void
|
|
611
|
+
mcreq_wipe_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* Function to extract mapping information given a key and a hashkey
|
|
615
|
+
* @param queue The command queue
|
|
616
|
+
* @param key The structure for the key
|
|
617
|
+
* @param hashkey The optional hashkey structure
|
|
618
|
+
* @param nhdr The size of the header (for KV_CONTIG)
|
|
619
|
+
* @param[out] vbid The vBucket ID
|
|
620
|
+
* @param[out] srvix The master server's index
|
|
621
|
+
*/
|
|
622
|
+
void
|
|
623
|
+
mcreq_map_key(mc_CMDQUEUE *queue,
|
|
624
|
+
const lcb_KEYBUF *key, const lcb_KEYBUF *hashkey,
|
|
625
|
+
unsigned nhdr, int *vbid, int *srvix);
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
/**If the packet's vbucket does not have a master node, use the fallback pipeline
|
|
629
|
+
* and let it be handled by the handler installed via mcreq_set_fallback_handler()
|
|
630
|
+
*/
|
|
631
|
+
#define MCREQ_BASICPACKET_F_FALLBACKOK 0x01
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* Handle the basic requirements of a packet common to all commands
|
|
635
|
+
* @param queue the queue
|
|
636
|
+
* @param cmd the command base structure
|
|
637
|
+
*
|
|
638
|
+
* @param[out] req the request header which will be set with key, vbucket, and extlen
|
|
639
|
+
* fields. In other words, you do not need to initialize them once this
|
|
640
|
+
* function has completed.
|
|
641
|
+
*
|
|
642
|
+
* @param extlen the size of extras for this command
|
|
643
|
+
* @param[out] packet a pointer set to the address of the allocated packet
|
|
644
|
+
* @param[out] pipeline a pointer set to the target pipeline
|
|
645
|
+
* @param options a set of options to control creation behavior. Currently the
|
|
646
|
+
* only recognized options are `0` (i.e. default options), or @ref
|
|
647
|
+
* MCREQ_BASICPACKET_F_FALLBACKOK
|
|
648
|
+
*/
|
|
649
|
+
|
|
650
|
+
lcb_error_t
|
|
651
|
+
mcreq_basic_packet(
|
|
652
|
+
mc_CMDQUEUE *queue, const lcb_CMDBASE *cmd,
|
|
653
|
+
protocol_binary_request_header *req, uint8_t extlen,
|
|
654
|
+
mc_PACKET **packet, mc_PIPELINE **pipeline, int options);
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* @brief Get the key from a packet
|
|
658
|
+
* @param[in] packet The packet from which to retrieve the key
|
|
659
|
+
* @param[out] key
|
|
660
|
+
* @param[out] nkey
|
|
661
|
+
*/
|
|
662
|
+
void
|
|
663
|
+
mcreq_get_key(const mc_PACKET *packet, const void **key, lcb_size_t *nkey);
|
|
664
|
+
|
|
665
|
+
/** @brief Returns the size of the entire packet, in bytes */
|
|
666
|
+
uint32_t
|
|
667
|
+
mcreq_get_bodysize(const mc_PACKET *packet);
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* @brief get the total packet size (header+body)
|
|
671
|
+
* @param pkt the packet
|
|
672
|
+
* @return the total size
|
|
673
|
+
*/
|
|
674
|
+
uint32_t
|
|
675
|
+
mcreq_get_size(const mc_PACKET *packet);
|
|
676
|
+
|
|
677
|
+
/**
|
|
678
|
+
* @brief Get the vBucket for the request
|
|
679
|
+
* @param packet The packet
|
|
680
|
+
* @return The vBucket ID from the packet.
|
|
681
|
+
*/
|
|
682
|
+
uint16_t
|
|
683
|
+
mcreq_get_vbucket(const mc_PACKET *packet);
|
|
684
|
+
|
|
685
|
+
/** Initializes a single pipeline object */
|
|
686
|
+
int
|
|
687
|
+
mcreq_pipeline_init(mc_PIPELINE *pipeline);
|
|
688
|
+
|
|
689
|
+
/** Cleans up any initialization from pipeline_init */
|
|
690
|
+
void
|
|
691
|
+
mcreq_pipeline_cleanup(mc_PIPELINE *pipeline);
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* Set the pipelines that this queue will manage
|
|
696
|
+
* @param queue the queue to take the pipelines
|
|
697
|
+
* @param pipelines an array of pipeline pointers. The array is copied
|
|
698
|
+
* @param npipelines number of pipelines in the queue
|
|
699
|
+
* @param config the configuration handle. The configuration is _not_ owned
|
|
700
|
+
* and _not_ copied and the caller must ensure it remains valid
|
|
701
|
+
* until it is replaces.
|
|
702
|
+
*/
|
|
703
|
+
void
|
|
704
|
+
mcreq_queue_add_pipelines(
|
|
705
|
+
mc_CMDQUEUE *queue, mc_PIPELINE * const *pipelines,
|
|
706
|
+
unsigned npipelines, lcbvb_CONFIG* config);
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* Set the arra
|
|
711
|
+
* @param queue the queue
|
|
712
|
+
* @param count a pointer to the number of pipelines within the queue
|
|
713
|
+
* @return the pipeline array.
|
|
714
|
+
*
|
|
715
|
+
* When this function completes another call to add_pipelines must be performed
|
|
716
|
+
* in order for the queue to function properly.
|
|
717
|
+
*/
|
|
718
|
+
mc_PIPELINE **
|
|
719
|
+
mcreq_queue_take_pipelines(mc_CMDQUEUE *queue, unsigned *count);
|
|
720
|
+
|
|
721
|
+
int
|
|
722
|
+
mcreq_queue_init(mc_CMDQUEUE *queue);
|
|
723
|
+
|
|
724
|
+
void
|
|
725
|
+
mcreq_queue_cleanup(mc_CMDQUEUE *queue);
|
|
726
|
+
|
|
727
|
+
/**
|
|
728
|
+
* @brief Add a packet to the current scheduling context
|
|
729
|
+
* @param pipeline
|
|
730
|
+
* @param pkt
|
|
731
|
+
* @see mcreq_sched_enter()
|
|
732
|
+
*/
|
|
733
|
+
void
|
|
734
|
+
mcreq_sched_add(mc_PIPELINE *pipeline, mc_PACKET *pkt);
|
|
735
|
+
|
|
736
|
+
/**
|
|
737
|
+
* @brief enter a scheduling scope
|
|
738
|
+
* @param queue
|
|
739
|
+
* @attention It is not safe to call this function twice
|
|
740
|
+
* @volatile
|
|
741
|
+
*/
|
|
742
|
+
void
|
|
743
|
+
mcreq_sched_enter(struct mc_cmdqueue_st *queue);
|
|
744
|
+
|
|
745
|
+
/**
|
|
746
|
+
* @brief successfully exit a scheduling scope
|
|
747
|
+
*
|
|
748
|
+
* All operations enqueued since the last call to mcreq_sched_enter() will be
|
|
749
|
+
* placed in their respective pipelines' operation queue.
|
|
750
|
+
*
|
|
751
|
+
* @param queue
|
|
752
|
+
* @param do_flush Whether the items in the queue should be flushed
|
|
753
|
+
* @volatile
|
|
754
|
+
*/
|
|
755
|
+
void
|
|
756
|
+
mcreq_sched_leave(struct mc_cmdqueue_st *queue, int do_flush);
|
|
757
|
+
|
|
758
|
+
/**
|
|
759
|
+
* @brief destroy all operations within the scheduling scope
|
|
760
|
+
* All operations enqueued since the last call to mcreq_sched_enter() will
|
|
761
|
+
* be destroyed
|
|
762
|
+
* @param queue
|
|
763
|
+
*/
|
|
764
|
+
void
|
|
765
|
+
mcreq_sched_fail(struct mc_cmdqueue_st *queue);
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* Find a packet with the given opaque value
|
|
769
|
+
*/
|
|
770
|
+
mc_PACKET *
|
|
771
|
+
mcreq_pipeline_find(mc_PIPELINE *pipeline, uint32_t opaque);
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* Find and remove the packet with the given opaque value
|
|
775
|
+
*/
|
|
776
|
+
mc_PACKET *
|
|
777
|
+
mcreq_pipeline_remove(mc_PIPELINE *pipeline, uint32_t opaque);
|
|
778
|
+
|
|
779
|
+
/**
|
|
780
|
+
* Handles a received packet in response to a command
|
|
781
|
+
* @param pipeline the pipeline upon which the request was received
|
|
782
|
+
* @param request the original request
|
|
783
|
+
* @param response the packet received in the response
|
|
784
|
+
* @param immerr an immediate error message. If this is not LCB_SUCCESS then
|
|
785
|
+
* the packet in `response` shall contain only a header and the request itself
|
|
786
|
+
* should be analyzed
|
|
787
|
+
*
|
|
788
|
+
* @return 0 on success, nonzero if the handler could not be found for the
|
|
789
|
+
* command.
|
|
790
|
+
*/
|
|
791
|
+
int
|
|
792
|
+
mcreq_dispatch_response(mc_PIPELINE *pipeline, mc_PACKET *request,
|
|
793
|
+
packet_info *response, lcb_error_t immerr);
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
#define MCREQ_KEEP_PACKET 1
|
|
797
|
+
#define MCREQ_REMOVE_PACKET 2
|
|
798
|
+
/**
|
|
799
|
+
* Callback used for packet iteration wiping
|
|
800
|
+
*
|
|
801
|
+
* @param queue the queue
|
|
802
|
+
* @param srcpl the source pipeline which is being cleaned
|
|
803
|
+
* @param pkt the packet which is being cleaned
|
|
804
|
+
* @param cbarg the argument passed to the iterwipe
|
|
805
|
+
*
|
|
806
|
+
* @return one of MCREQ_KEEP_PACKET (if the packet should be kept inside the
|
|
807
|
+
* pipeline) or MCREQ_REMOVE_PACKET (if the packet should not be kept)
|
|
808
|
+
*/
|
|
809
|
+
typedef int (*mcreq_iterwipe_fn)
|
|
810
|
+
(mc_CMDQUEUE *queue, mc_PIPELINE *srcpl, mc_PACKET *pkt, void *cbarg);
|
|
811
|
+
/**
|
|
812
|
+
* Wipe a single pipeline. This may be used to move and/or relocate
|
|
813
|
+
* existing commands to other pipelines.
|
|
814
|
+
* @param queue the queue to use
|
|
815
|
+
* @param src the pipeline to wipe
|
|
816
|
+
* @param callback the callback to invoke for each packet
|
|
817
|
+
* @param arg the argument passed to the callback
|
|
818
|
+
*/
|
|
819
|
+
void
|
|
820
|
+
mcreq_iterwipe(mc_CMDQUEUE *queue, mc_PIPELINE *src,
|
|
821
|
+
mcreq_iterwipe_fn callback, void *arg);
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
/**
|
|
825
|
+
* Called when a packet does not need to have any more references to it
|
|
826
|
+
* remaining. A packet by itself only has two implicit references; one is
|
|
827
|
+
* a flush reference and the other is a handler reference.
|
|
828
|
+
*
|
|
829
|
+
* The flush reference is unset once the packet has been flushed and the
|
|
830
|
+
* handler reference is unset once the packet's handler callback has been
|
|
831
|
+
* invoked and the relevant data relayed to the user.
|
|
832
|
+
*
|
|
833
|
+
* Once this function is called, the packet passed will no longer be valid
|
|
834
|
+
* and thus should not be used.
|
|
835
|
+
*/
|
|
836
|
+
void
|
|
837
|
+
mcreq_packet_done(mc_PIPELINE *pipeline, mc_PACKET *pkt);
|
|
838
|
+
|
|
839
|
+
/**
|
|
840
|
+
* @brief Indicate that the packet was handled
|
|
841
|
+
* @param pipeline the pipeline
|
|
842
|
+
* @param pkt the packet which was handled
|
|
843
|
+
* If the packet has also been flushed, the packet's storage will be released
|
|
844
|
+
* and `pkt` will no longer point to valid memory.
|
|
845
|
+
*/
|
|
846
|
+
#define mcreq_packet_handled(pipeline, pkt) do { \
|
|
847
|
+
(pkt)->flags |= MCREQ_F_INVOKED; \
|
|
848
|
+
if ((pkt)->flags & MCREQ_F_FLUSHED) { \
|
|
849
|
+
mcreq_packet_done(pipeline, pkt); \
|
|
850
|
+
} \
|
|
851
|
+
} while (0);
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* Reset the timeout (or rather, the start time) on all pending packets
|
|
855
|
+
* to the time specified.
|
|
856
|
+
*
|
|
857
|
+
* @param pl The pipeline
|
|
858
|
+
* @param nstime The new timestamp to use.
|
|
859
|
+
*/
|
|
860
|
+
void
|
|
861
|
+
mcreq_reset_timeouts(mc_PIPELINE *pl, lcb_U64 nstime);
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Callback to be invoked when a packet is about to be failed out from the
|
|
865
|
+
* request queue. This should be used to possibly invoke handlers. The packet
|
|
866
|
+
* will then be removed from the queue.
|
|
867
|
+
* @param pipeline the pipeline which has been errored
|
|
868
|
+
* @param packet the current packet
|
|
869
|
+
* @param err the error received
|
|
870
|
+
* @param arg an opaque pointer
|
|
871
|
+
*/
|
|
872
|
+
typedef void (*mcreq_pktfail_fn)
|
|
873
|
+
(mc_PIPELINE *pipeline, mc_PACKET *packet, lcb_error_t err, void *arg);
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* Fail out a given pipeline. All commands in the pipeline will be removed
|
|
877
|
+
* from the pipeline (though they may still not be freed if they are pending
|
|
878
|
+
* a flush).
|
|
879
|
+
*
|
|
880
|
+
* @param pipeline the pipeline to fail out
|
|
881
|
+
* @param err the error which caused the failure
|
|
882
|
+
* @param failcb a callback invoked to handle each failed packet
|
|
883
|
+
* @param cbarg a pointer passed as the last parameter to the callback
|
|
884
|
+
*
|
|
885
|
+
* @return the number of items actually failed.
|
|
886
|
+
*/
|
|
887
|
+
unsigned
|
|
888
|
+
mcreq_pipeline_fail(
|
|
889
|
+
mc_PIPELINE *pipeline, lcb_error_t err,
|
|
890
|
+
mcreq_pktfail_fn failcb, void *cbarg);
|
|
891
|
+
|
|
892
|
+
/**
|
|
893
|
+
* Fail out all commands in the pipeline which are older than a specified
|
|
894
|
+
* interval. This is similar to the pipeline_fail() function except that commands
|
|
895
|
+
* which are newer than the threshold are still kept
|
|
896
|
+
*
|
|
897
|
+
* @param pipeline the pipeline to fail out
|
|
898
|
+
* @param err the error to provide to the handlers (usually LCB_ETIMEDOUT)
|
|
899
|
+
* @param failcb the callback to invoke
|
|
900
|
+
* @param cbarg the last argument to the callback
|
|
901
|
+
* @param oldest_valid the _oldest_ time for a command to still be valid
|
|
902
|
+
* @param oldest_start set to the start time of the _oldest_ command which is
|
|
903
|
+
* still valid.
|
|
904
|
+
*
|
|
905
|
+
* @return the number of commands actually failed.
|
|
906
|
+
*/
|
|
907
|
+
unsigned
|
|
908
|
+
mcreq_pipeline_timeout(
|
|
909
|
+
mc_PIPELINE *pipeline, lcb_error_t err,
|
|
910
|
+
mcreq_pktfail_fn failcb, void *cbarg,
|
|
911
|
+
hrtime_t oldest_valid,
|
|
912
|
+
hrtime_t *oldest_start);
|
|
913
|
+
|
|
914
|
+
/**
|
|
915
|
+
* This function is called when a packet could not be properly mapped to a real
|
|
916
|
+
* pipeline
|
|
917
|
+
* @param cq the command queue
|
|
918
|
+
* @param pkt the packet which needs to be relocated. The packet needs to be
|
|
919
|
+
* properly copied via mcreq_renew_packet()
|
|
920
|
+
*/
|
|
921
|
+
typedef void (*mcreq_fallback_cb)(mc_CMDQUEUE *cq, mc_PACKET *pkt);
|
|
922
|
+
|
|
923
|
+
/**
|
|
924
|
+
* Set the callback function to be invoked when a packet could not be properly
|
|
925
|
+
* mapped to a node. The callback function is invoked from within the
|
|
926
|
+
* mcreq_sched_leave() function.
|
|
927
|
+
*
|
|
928
|
+
* The handler should be assigned only once, during initialization
|
|
929
|
+
*
|
|
930
|
+
* @param cq The command queue
|
|
931
|
+
* @param handler The handler to invoke
|
|
932
|
+
*/
|
|
933
|
+
void
|
|
934
|
+
mcreq_set_fallback_handler(mc_CMDQUEUE *cq, mcreq_fallback_cb handler);
|
|
935
|
+
|
|
936
|
+
/**
|
|
937
|
+
* Callback used by mcreq_dump_packet() and mcreq_dump_chain() to format the
|
|
938
|
+
* packet's payload
|
|
939
|
+
* @param data the data to dump
|
|
940
|
+
* @param size the size of the data
|
|
941
|
+
* @param fp the file to write the output to
|
|
942
|
+
*/
|
|
943
|
+
typedef void (*mcreq_payload_dump_fn)
|
|
944
|
+
(const void *data, unsigned size, FILE *fp);
|
|
945
|
+
|
|
946
|
+
/**
|
|
947
|
+
* Dumps a single packet to the file indicated by `fp`
|
|
948
|
+
* @param pkt the packet to dump
|
|
949
|
+
* @param fp The file to write to
|
|
950
|
+
* @param dumpfn If specified, this function is called to handle the packet's
|
|
951
|
+
* header and payload body
|
|
952
|
+
*/
|
|
953
|
+
void
|
|
954
|
+
mcreq_dump_packet(const mc_PACKET *pkt, FILE *fp, mcreq_payload_dump_fn dumpfn);
|
|
955
|
+
|
|
956
|
+
void
|
|
957
|
+
mcreq_dump_chain(const mc_PIPELINE *pipeline, FILE *fp, mcreq_payload_dump_fn dumpfn);
|
|
958
|
+
|
|
959
|
+
#define mcreq_write_hdr(pkt, hdr) \
|
|
960
|
+
memcpy( SPAN_BUFFER(&(pkt)->kh_span), (hdr)->bytes, sizeof((hdr)->bytes) )
|
|
961
|
+
|
|
962
|
+
#define mcreq_write_exhdr(pkt, hdr, n) \
|
|
963
|
+
memcpy(SPAN_BUFFER((&pkt)->kh_span), (hdr)->bytes, n)
|
|
964
|
+
|
|
965
|
+
#define mcreq_read_hdr(pkt, hdr) \
|
|
966
|
+
memcpy( (hdr)->bytes, SPAN_BUFFER(&(pkt)->kh_span), sizeof((hdr)->bytes) )
|
|
967
|
+
|
|
968
|
+
#define mcreq_first_packet(pipeline) \
|
|
969
|
+
SLLIST_IS_EMPTY(&(pipeline)->requests) ? NULL : \
|
|
970
|
+
SLLIST_ITEM(SLLIST_FIRST(&(pipeline)->requests), mc_PACKET, slnode)
|
|
971
|
+
|
|
972
|
+
/**@}*/
|
|
973
|
+
|
|
974
|
+
#ifdef __cplusplus
|
|
975
|
+
}
|
|
976
|
+
#endif /** __cplusplus */
|
|
977
|
+
#endif /* LCB_MCREQ_H */
|