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,22 @@
|
|
|
1
|
+
#ifndef LCB_N1QL_INTERNAL_H
|
|
2
|
+
#define LCB_N1QL_INTERNAL_H
|
|
3
|
+
|
|
4
|
+
#ifdef __cplusplus
|
|
5
|
+
#include <string>
|
|
6
|
+
extern "C" {
|
|
7
|
+
#endif
|
|
8
|
+
|
|
9
|
+
typedef struct lcb_N1QLCACHE_st lcb_N1QLCACHE;
|
|
10
|
+
lcb_N1QLCACHE *lcb_n1qlcache_create(void);
|
|
11
|
+
void lcb_n1qlcache_destroy(lcb_N1QLCACHE*);
|
|
12
|
+
void lcb_n1qlcache_clear(lcb_N1QLCACHE *);
|
|
13
|
+
|
|
14
|
+
#ifdef __cplusplus
|
|
15
|
+
void lcb_n1qlcache_getplan(lcb_N1QLCACHE *cache,
|
|
16
|
+
const std::string& key, std::string& out);
|
|
17
|
+
|
|
18
|
+
// Parse timeout value. Exposed for tests
|
|
19
|
+
lcb_U32 lcb_n1qlreq_parsetmo(const std::string& s);
|
|
20
|
+
}
|
|
21
|
+
#endif
|
|
22
|
+
#endif
|
|
@@ -0,0 +1,729 @@
|
|
|
1
|
+
#include <libcouchbase/couchbase.h>
|
|
2
|
+
#include <libcouchbase/n1ql.h>
|
|
3
|
+
#include <jsparse/parser.h>
|
|
4
|
+
#include "internal.h"
|
|
5
|
+
#include "http/http.h"
|
|
6
|
+
#include "logging.h"
|
|
7
|
+
#include "contrib/lcb-jsoncpp/lcb-jsoncpp.h"
|
|
8
|
+
#include <map>
|
|
9
|
+
#include <string>
|
|
10
|
+
#include <list>
|
|
11
|
+
|
|
12
|
+
#define LOGFMT "(NR=%p) "
|
|
13
|
+
#define LOGID(req) static_cast<const void*>(req)
|
|
14
|
+
#define LOGARGS(req, lvl) req->instance->settings, "n1ql", LCB_LOG_##lvl, __FILE__, __LINE__
|
|
15
|
+
|
|
16
|
+
// Indicate that the 'creds' field is to be used.
|
|
17
|
+
#define F_CMDN1QL_CREDSAUTH 1<<15
|
|
18
|
+
|
|
19
|
+
class Plan {
|
|
20
|
+
private:
|
|
21
|
+
friend struct lcb_N1QLCACHE_st;
|
|
22
|
+
std::string key;
|
|
23
|
+
std::string planstr;
|
|
24
|
+
Plan(const std::string& k) : key(k) {
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public:
|
|
28
|
+
/**
|
|
29
|
+
* Applies the plan to the output 'bodystr'. We don't assign the
|
|
30
|
+
* Json::Value directly, as this appears to be horribly slow. On my system
|
|
31
|
+
* an assignment took about 200ms!
|
|
32
|
+
* @param body The request body (e.g. N1QLREQ::json)
|
|
33
|
+
* @param[out] bodystr the actual request payload
|
|
34
|
+
*/
|
|
35
|
+
void apply_plan(Json::Value& body, std::string& bodystr) const {
|
|
36
|
+
body.removeMember("statement");
|
|
37
|
+
bodystr = Json::FastWriter().write(body);
|
|
38
|
+
|
|
39
|
+
// Assume bodystr ends with '}'
|
|
40
|
+
size_t pos = bodystr.rfind('}');
|
|
41
|
+
bodystr.erase(pos);
|
|
42
|
+
|
|
43
|
+
if (body.size() > 0) {
|
|
44
|
+
bodystr.append(",");
|
|
45
|
+
}
|
|
46
|
+
bodystr.append(planstr);
|
|
47
|
+
bodystr.append("}");
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
private:
|
|
51
|
+
/**
|
|
52
|
+
* Assign plan data to this entry
|
|
53
|
+
* @param plan The JSON returned from the PREPARE request
|
|
54
|
+
*/
|
|
55
|
+
void set_plan(const Json::Value& plan) {
|
|
56
|
+
// Set the plan as a string
|
|
57
|
+
planstr = "\"prepared\":";
|
|
58
|
+
planstr += Json::FastWriter().write(plan["name"]);
|
|
59
|
+
planstr += ",";
|
|
60
|
+
planstr += "\"encoded_plan\":";
|
|
61
|
+
planstr += Json::FastWriter().write(plan["encoded_plan"]);
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
// LRU Cache structure..
|
|
66
|
+
struct lcb_N1QLCACHE_st {
|
|
67
|
+
typedef std::list<Plan*> LruCache;
|
|
68
|
+
typedef std::map<std::string, LruCache::iterator> Lookup;
|
|
69
|
+
|
|
70
|
+
Lookup by_name;
|
|
71
|
+
LruCache lru;
|
|
72
|
+
|
|
73
|
+
/** Maximum number of entries in LRU cache. This is fixed at 5000 */
|
|
74
|
+
static size_t max_size() { return 5000; }
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Adds an entry for a given key
|
|
78
|
+
* @param key The key to add
|
|
79
|
+
* @param json The prepared statement returned by the server
|
|
80
|
+
* @return the newly added plan.
|
|
81
|
+
*/
|
|
82
|
+
const Plan& add_entry(const std::string& key, const Json::Value& json) {
|
|
83
|
+
if (lru.size() == max_size()) {
|
|
84
|
+
// Purge entry from end
|
|
85
|
+
remove_entry(lru.back()->key);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Remove old entry, if present
|
|
89
|
+
remove_entry(key);
|
|
90
|
+
|
|
91
|
+
lru.push_front(new Plan(key));
|
|
92
|
+
by_name[key] = lru.begin();
|
|
93
|
+
lru.front()->set_plan(json);
|
|
94
|
+
return *lru.front();
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Gets the entry for a given key
|
|
99
|
+
* @param key The statement (key) to look up
|
|
100
|
+
* @return a pointer to the plan if present, NULL if no entry exists for key
|
|
101
|
+
*/
|
|
102
|
+
const Plan* get_entry(const std::string& key) {
|
|
103
|
+
Lookup::iterator m = by_name.find(key);
|
|
104
|
+
if (m == by_name.end()) {
|
|
105
|
+
return NULL;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const Plan* cur = *m->second;
|
|
109
|
+
|
|
110
|
+
// Update LRU:
|
|
111
|
+
lru.splice(lru.begin(), lru, m->second);
|
|
112
|
+
// Note, updating of iterators is not required since splice doesn't
|
|
113
|
+
// invalidate iterators.
|
|
114
|
+
return cur;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/** Removes an entry with the given key */
|
|
118
|
+
void remove_entry(const std::string& key) {
|
|
119
|
+
Lookup::iterator m = by_name.find(key);
|
|
120
|
+
if (m == by_name.end()) {
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
// Remove entry from map
|
|
124
|
+
LruCache::iterator m2 = m->second;
|
|
125
|
+
delete *m2;
|
|
126
|
+
by_name.erase(m);
|
|
127
|
+
lru.erase(m2);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/** Clears the LRU cache */
|
|
131
|
+
void clear() {
|
|
132
|
+
for (LruCache::iterator ii = lru.begin(); ii != lru.end(); ++ii) {
|
|
133
|
+
delete *ii;
|
|
134
|
+
}
|
|
135
|
+
lru.clear();
|
|
136
|
+
by_name.clear();
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
~lcb_N1QLCACHE_st() {
|
|
140
|
+
clear();
|
|
141
|
+
}
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
typedef struct lcb_N1QLREQ {
|
|
145
|
+
const lcb_RESPHTTP *cur_htresp;
|
|
146
|
+
struct lcb_http_request_st *htreq;
|
|
147
|
+
lcbjsp_PARSER *parser;
|
|
148
|
+
const void *cookie;
|
|
149
|
+
lcb_N1QLCALLBACK callback;
|
|
150
|
+
lcb_t instance;
|
|
151
|
+
lcb_error_t lasterr;
|
|
152
|
+
lcb_U32 flags;
|
|
153
|
+
lcb_U32 timeout;
|
|
154
|
+
// How many rows were received. Used to avoid parsing the meta
|
|
155
|
+
size_t nrows;
|
|
156
|
+
|
|
157
|
+
/** The PREPARE query itself */
|
|
158
|
+
struct lcb_N1QLREQ *prepare_req;
|
|
159
|
+
|
|
160
|
+
/** Request body as received from the application */
|
|
161
|
+
Json::Value json;
|
|
162
|
+
const Json::Value& json_const() const { return json; }
|
|
163
|
+
|
|
164
|
+
/** String of the original statement. Cached here to avoid jsoncpp lookups */
|
|
165
|
+
std::string statement;
|
|
166
|
+
|
|
167
|
+
/** Whether we're retrying this */
|
|
168
|
+
bool was_retried;
|
|
169
|
+
|
|
170
|
+
lcb_N1QLCACHE& cache() { return *instance->n1ql_cache; }
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Creates the sub-N1QLREQ for the PREPARE statement. This inspects the
|
|
174
|
+
* current request (see ::json) and copies it so that we execute the
|
|
175
|
+
* PREPARE instead of the actual query.
|
|
176
|
+
* @return see issue_htreq()
|
|
177
|
+
*/
|
|
178
|
+
inline lcb_error_t request_plan();
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Use the plan to execute the given query, and issues the query
|
|
182
|
+
* @param plan The plan itself
|
|
183
|
+
* @return see issue_htreq()
|
|
184
|
+
*/
|
|
185
|
+
inline lcb_error_t apply_plan(const Plan& plan);
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Issues the HTTP request for the query
|
|
189
|
+
* @param payload The body to send
|
|
190
|
+
* @return Error code from lcb's http subsystem
|
|
191
|
+
*/
|
|
192
|
+
inline lcb_error_t issue_htreq(const std::string& payload);
|
|
193
|
+
|
|
194
|
+
lcb_error_t issue_htreq() {
|
|
195
|
+
std::string s = Json::FastWriter().write(json);
|
|
196
|
+
return issue_htreq(s);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Attempt to retry the query. This will inspect the meta (if present)
|
|
201
|
+
* for any errors indicating that a failure might be a result of a stale
|
|
202
|
+
* plan, and if this query was retried already.
|
|
203
|
+
* @return true if the retry was successful.
|
|
204
|
+
*/
|
|
205
|
+
inline bool maybe_retry();
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Did the application request this query to use prepared statements
|
|
209
|
+
* @return true if using prepared statements
|
|
210
|
+
*/
|
|
211
|
+
inline bool use_prepcache() const { return flags & LCB_CMDN1QL_F_PREPCACHE; }
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Pass a row back to the application
|
|
215
|
+
* @param resp The response. This is populated with state information
|
|
216
|
+
* from the current query
|
|
217
|
+
* @param is_last Whether this is the last row. If this is the last, then
|
|
218
|
+
* the RESP_F_FINAL flag is set, and no further callbacks will be invoked
|
|
219
|
+
*/
|
|
220
|
+
inline void invoke_row(lcb_RESPN1QL *resp, bool is_last);
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Fail an application-level query because the prepared statement failed
|
|
224
|
+
* @param orig The response from the PREPARE request
|
|
225
|
+
* @param err The error code
|
|
226
|
+
*/
|
|
227
|
+
inline void fail_prepared(const lcb_RESPN1QL *orig, lcb_error_t err);
|
|
228
|
+
|
|
229
|
+
inline lcb_N1QLREQ(lcb_t obj, const void *user_cookie, const lcb_CMDN1QL *cmd);
|
|
230
|
+
inline ~lcb_N1QLREQ();
|
|
231
|
+
|
|
232
|
+
} N1QLREQ;
|
|
233
|
+
|
|
234
|
+
static bool
|
|
235
|
+
parse_json(const char *s, size_t n, Json::Value& res)
|
|
236
|
+
{
|
|
237
|
+
return Json::Reader().parse(s, s + n, res);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
lcb_N1QLCACHE *
|
|
241
|
+
lcb_n1qlcache_create(void)
|
|
242
|
+
{
|
|
243
|
+
return new lcb_N1QLCACHE;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
void
|
|
247
|
+
lcb_n1qlcache_destroy(lcb_N1QLCACHE *cache)
|
|
248
|
+
{
|
|
249
|
+
delete cache;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
void
|
|
253
|
+
lcb_n1qlcache_clear(lcb_N1QLCACHE *cache)
|
|
254
|
+
{
|
|
255
|
+
cache->clear();
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// Special function for debugging. This returns the name and encoded form of
|
|
259
|
+
// the plan
|
|
260
|
+
void
|
|
261
|
+
lcb_n1qlcache_getplan(lcb_N1QLCACHE *cache,
|
|
262
|
+
const std::string& key, std::string& out)
|
|
263
|
+
{
|
|
264
|
+
const Plan* plan = cache->get_entry(key);
|
|
265
|
+
if (plan != NULL) {
|
|
266
|
+
Json::Value tmp(Json::objectValue);
|
|
267
|
+
plan->apply_plan(tmp, out);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
#define WTF_MAGIC_STRING \
|
|
272
|
+
"index deleted or node hosting the index is down - cause: queryport.indexNotFound"
|
|
273
|
+
|
|
274
|
+
static bool
|
|
275
|
+
has_retriable_error(const Json::Value& root)
|
|
276
|
+
{
|
|
277
|
+
if (!root.isObject()) {
|
|
278
|
+
return false;
|
|
279
|
+
}
|
|
280
|
+
const Json::Value& errors = root["errors"];
|
|
281
|
+
if (!errors.isArray()) {
|
|
282
|
+
return false;
|
|
283
|
+
}
|
|
284
|
+
Json::Value::const_iterator ii;
|
|
285
|
+
for (ii = errors.begin(); ii != errors.end(); ++ii) {
|
|
286
|
+
const Json::Value& cur = *ii;
|
|
287
|
+
if (!cur.isObject()) {
|
|
288
|
+
continue; // eh?
|
|
289
|
+
}
|
|
290
|
+
const Json::Value& jmsg = cur["msg"];
|
|
291
|
+
const Json::Value& jcode = cur["code"];
|
|
292
|
+
if (jcode.isNumeric()) {
|
|
293
|
+
unsigned code = jcode.asUInt();
|
|
294
|
+
if (code == 4050 || code == 4070) {
|
|
295
|
+
return true;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
if (jmsg.isString() && strstr(jmsg.asCString(), WTF_MAGIC_STRING) != NULL) {
|
|
299
|
+
return true;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
return false;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
bool
|
|
306
|
+
N1QLREQ::maybe_retry()
|
|
307
|
+
{
|
|
308
|
+
// Examines the buffer to determine the type of error
|
|
309
|
+
Json::Value root;
|
|
310
|
+
lcb_IOV meta;
|
|
311
|
+
|
|
312
|
+
if (callback == NULL) {
|
|
313
|
+
// Cancelled
|
|
314
|
+
return false;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
if (nrows) {
|
|
318
|
+
// Has results:
|
|
319
|
+
return false;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
if (was_retried) {
|
|
323
|
+
return false;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
if (!use_prepcache()) {
|
|
327
|
+
// Didn't use our built-in caching (maybe using it from elsewhere?)
|
|
328
|
+
return false;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
was_retried = true;
|
|
332
|
+
|
|
333
|
+
lcbjsp_get_postmortem(parser, &meta);
|
|
334
|
+
if (!parse_json(static_cast<const char*>(meta.iov_base), meta.iov_len, root)) {
|
|
335
|
+
return false; // Not JSON
|
|
336
|
+
}
|
|
337
|
+
if (!has_retriable_error(root)) {
|
|
338
|
+
return false;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
lcb_log(LOGARGS(this, ERROR), LOGFMT "Repreparing statement. Index or version mismatch.", LOGID(this));
|
|
342
|
+
|
|
343
|
+
// Let's see if we can actually retry. First remove the existing prepared
|
|
344
|
+
// entry:
|
|
345
|
+
cache().remove_entry(statement);
|
|
346
|
+
lcb_error_t rc = request_plan();
|
|
347
|
+
if (rc != LCB_SUCCESS) {
|
|
348
|
+
lasterr = rc;
|
|
349
|
+
return false;
|
|
350
|
+
|
|
351
|
+
} else {
|
|
352
|
+
// We'll be parsing more rows later on..
|
|
353
|
+
lcbjsp_reset(parser);
|
|
354
|
+
}
|
|
355
|
+
return true;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
void
|
|
359
|
+
N1QLREQ::invoke_row(lcb_RESPN1QL *resp, bool is_last)
|
|
360
|
+
{
|
|
361
|
+
resp->cookie = const_cast<void*>(cookie);
|
|
362
|
+
resp->htresp = cur_htresp;
|
|
363
|
+
|
|
364
|
+
if (is_last) {
|
|
365
|
+
lcb_IOV meta;
|
|
366
|
+
resp->rflags |= LCB_RESP_F_FINAL;
|
|
367
|
+
resp->rc = lasterr;
|
|
368
|
+
lcbjsp_get_postmortem(parser, &meta);
|
|
369
|
+
resp->row = static_cast<const char*>(meta.iov_base);
|
|
370
|
+
resp->nrow = meta.iov_len;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
if (callback) {
|
|
374
|
+
callback(instance, LCB_CALLBACK_N1QL, resp);
|
|
375
|
+
}
|
|
376
|
+
if (is_last) {
|
|
377
|
+
callback = NULL;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
lcb_N1QLREQ::~lcb_N1QLREQ()
|
|
382
|
+
{
|
|
383
|
+
if (htreq) {
|
|
384
|
+
lcb_cancel_http_request(instance, htreq);
|
|
385
|
+
htreq = NULL;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
if (callback) {
|
|
389
|
+
lcb_RESPN1QL resp = { 0 };
|
|
390
|
+
invoke_row(&resp, 1);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
if (parser) {
|
|
394
|
+
lcbjsp_free(parser);
|
|
395
|
+
}
|
|
396
|
+
if (prepare_req) {
|
|
397
|
+
lcb_n1ql_cancel(instance, prepare_req);
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
static void
|
|
402
|
+
row_callback(lcbjsp_PARSER *parser, const lcbjsp_ROW *datum)
|
|
403
|
+
{
|
|
404
|
+
N1QLREQ *req = static_cast<N1QLREQ*>(parser->data);
|
|
405
|
+
lcb_RESPN1QL resp = { 0 };
|
|
406
|
+
|
|
407
|
+
if (datum->type == LCBJSP_TYPE_ROW) {
|
|
408
|
+
resp.row = static_cast<const char*>(datum->row.iov_base);
|
|
409
|
+
resp.nrow = datum->row.iov_len;
|
|
410
|
+
req->nrows++;
|
|
411
|
+
req->invoke_row(&resp, 0);
|
|
412
|
+
} else if (datum->type == LCBJSP_TYPE_ERROR) {
|
|
413
|
+
req->lasterr = resp.rc = LCB_PROTOCOL_ERROR;
|
|
414
|
+
} else if (datum->type == LCBJSP_TYPE_COMPLETE) {
|
|
415
|
+
/* Nothing */
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
static void
|
|
420
|
+
chunk_callback(lcb_t instance, int ign, const lcb_RESPBASE *rb)
|
|
421
|
+
{
|
|
422
|
+
const lcb_RESPHTTP *rh = (const lcb_RESPHTTP *)rb;
|
|
423
|
+
N1QLREQ *req = static_cast<N1QLREQ*>(rh->cookie);
|
|
424
|
+
|
|
425
|
+
(void)ign; (void)instance;
|
|
426
|
+
|
|
427
|
+
req->cur_htresp = rh;
|
|
428
|
+
if (rh->rc != LCB_SUCCESS || rh->htstatus != 200) {
|
|
429
|
+
if (req->lasterr == LCB_SUCCESS || rh->htstatus != 200) {
|
|
430
|
+
req->lasterr = rh->rc ? rh->rc : LCB_HTTP_ERROR;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
if (rh->rflags & LCB_RESP_F_FINAL) {
|
|
435
|
+
req->htreq = NULL;
|
|
436
|
+
if (!req->maybe_retry()) {
|
|
437
|
+
delete req;
|
|
438
|
+
}
|
|
439
|
+
return;
|
|
440
|
+
} else if (req->callback == NULL) {
|
|
441
|
+
/* Cancelled. Similar to the block above, except the http request
|
|
442
|
+
* should remain alive (so we can cancel it later on) */
|
|
443
|
+
delete req;
|
|
444
|
+
return;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
lcbjsp_feed(req->parser, static_cast<const char*>(rh->body), rh->nbody);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
#define QUERY_PATH "/query/service"
|
|
451
|
+
|
|
452
|
+
void
|
|
453
|
+
N1QLREQ::fail_prepared(const lcb_RESPN1QL *orig, lcb_error_t err)
|
|
454
|
+
{
|
|
455
|
+
lcb_log(LOGARGS(this, ERROR), LOGFMT "Prepare failed!", LOGID(this));
|
|
456
|
+
|
|
457
|
+
lcb_RESPN1QL newresp = *orig;
|
|
458
|
+
newresp.rflags = LCB_RESP_F_FINAL;
|
|
459
|
+
newresp.cookie = const_cast<void*>(cookie);
|
|
460
|
+
newresp.rc = err;
|
|
461
|
+
if (err == LCB_SUCCESS) {
|
|
462
|
+
newresp.rc = LCB_ERROR;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
if (callback != NULL) {
|
|
466
|
+
callback(instance, LCB_CALLBACK_N1QL, &newresp);
|
|
467
|
+
callback = NULL;
|
|
468
|
+
}
|
|
469
|
+
delete this;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
// Received internally for PREPARE
|
|
473
|
+
static void
|
|
474
|
+
prepare_rowcb(lcb_t instance, int, const lcb_RESPN1QL *row)
|
|
475
|
+
{
|
|
476
|
+
lcb_N1QLREQ *origreq = reinterpret_cast<lcb_N1QLREQ*>(row->cookie);
|
|
477
|
+
|
|
478
|
+
lcb_n1ql_cancel(instance, origreq->prepare_req);
|
|
479
|
+
origreq->prepare_req = NULL;
|
|
480
|
+
|
|
481
|
+
if (row->rc != LCB_SUCCESS || (row->rflags & LCB_RESP_F_FINAL)) {
|
|
482
|
+
origreq->fail_prepared(row, row->rc);
|
|
483
|
+
} else {
|
|
484
|
+
// Insert into cache
|
|
485
|
+
Json::Value prepared;
|
|
486
|
+
if (!parse_json(row->row, row->nrow, prepared)) {
|
|
487
|
+
lcb_log(LOGARGS(origreq, ERROR), LOGFMT "Invalid JSON returned from PREPARE", LOGID(origreq));
|
|
488
|
+
origreq->fail_prepared(row, LCB_PROTOCOL_ERROR);
|
|
489
|
+
return;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// Insert plan into cache
|
|
493
|
+
lcb_log(LOGARGS(origreq, DEBUG), LOGFMT "Got prepared statement. Inserting into cache and reissuing", LOGID(origreq));
|
|
494
|
+
const Plan& ent =
|
|
495
|
+
origreq->cache().add_entry(origreq->statement, prepared);
|
|
496
|
+
|
|
497
|
+
// Issue the query with the newly prepared plan
|
|
498
|
+
lcb_error_t rc = origreq->apply_plan(ent);
|
|
499
|
+
if (rc != LCB_SUCCESS) {
|
|
500
|
+
origreq->fail_prepared(row, rc);
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
lcb_error_t
|
|
506
|
+
N1QLREQ::issue_htreq(const std::string& body)
|
|
507
|
+
{
|
|
508
|
+
lcb_CMDHTTP htcmd = { 0 };
|
|
509
|
+
htcmd.body = body.c_str();
|
|
510
|
+
htcmd.nbody = body.size();
|
|
511
|
+
|
|
512
|
+
htcmd.content_type = "application/json";
|
|
513
|
+
htcmd.method = LCB_HTTP_METHOD_POST;
|
|
514
|
+
htcmd.type = LCB_HTTP_TYPE_N1QL;
|
|
515
|
+
htcmd.cmdflags = LCB_CMDHTTP_F_STREAM|LCB_CMDHTTP_F_CASTMO;
|
|
516
|
+
if (flags & F_CMDN1QL_CREDSAUTH) {
|
|
517
|
+
htcmd.cmdflags |= LCB_CMDHTTP_F_NOUPASS;
|
|
518
|
+
}
|
|
519
|
+
htcmd.reqhandle = &htreq;
|
|
520
|
+
htcmd.cas = timeout;
|
|
521
|
+
|
|
522
|
+
lcb_error_t rc = lcb_http3(instance, this, &htcmd);
|
|
523
|
+
if (rc == LCB_SUCCESS) {
|
|
524
|
+
lcb_htreq_setcb(htreq, chunk_callback);
|
|
525
|
+
}
|
|
526
|
+
return rc;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
lcb_error_t
|
|
530
|
+
N1QLREQ::request_plan()
|
|
531
|
+
{
|
|
532
|
+
Json::Value newbody(Json::objectValue);
|
|
533
|
+
newbody["statement"] = "PREPARE " + statement;
|
|
534
|
+
lcb_CMDN1QL newcmd = { 0 };
|
|
535
|
+
newcmd.callback = prepare_rowcb;
|
|
536
|
+
newcmd.cmdflags = LCB_CMDN1QL_F_JSONQUERY;
|
|
537
|
+
newcmd.handle = &prepare_req;
|
|
538
|
+
newcmd.query = reinterpret_cast<const char*>(&newbody);
|
|
539
|
+
if (flags & F_CMDN1QL_CREDSAUTH) {
|
|
540
|
+
newcmd.cmdflags |= LCB_CMD_F_MULTIAUTH;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
return lcb_n1ql_query(instance, this, &newcmd);
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
lcb_error_t
|
|
547
|
+
N1QLREQ::apply_plan(const Plan& plan)
|
|
548
|
+
{
|
|
549
|
+
lcb_log(LOGARGS(this, DEBUG), LOGFMT "Using prepared plan", LOGID(this));
|
|
550
|
+
std::string bodystr;
|
|
551
|
+
plan.apply_plan(json, bodystr);
|
|
552
|
+
return issue_htreq(bodystr);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
lcb_U32
|
|
556
|
+
lcb_n1qlreq_parsetmo(const std::string& s)
|
|
557
|
+
{
|
|
558
|
+
double num;
|
|
559
|
+
int nchars, rv;
|
|
560
|
+
|
|
561
|
+
rv = sscanf(s.c_str(), "%lf%n", &num, &nchars);
|
|
562
|
+
if (rv != 1) {
|
|
563
|
+
return 0;
|
|
564
|
+
}
|
|
565
|
+
std::string mults = s.substr(nchars);
|
|
566
|
+
|
|
567
|
+
// Get the actual timeout value in microseconds. Note we can't use the macros
|
|
568
|
+
// since they will truncate the double value.
|
|
569
|
+
if (mults == "s") {
|
|
570
|
+
return num * static_cast<double>(LCB_S2US(1));
|
|
571
|
+
} else if (mults == "ms") {
|
|
572
|
+
return num * static_cast<double>(LCB_MS2US(1));
|
|
573
|
+
} else if (mults == "h") {
|
|
574
|
+
return num * static_cast<double>(LCB_S2US(3600));
|
|
575
|
+
} else if (mults == "us") {
|
|
576
|
+
return num;
|
|
577
|
+
} else if (mults == "m") {
|
|
578
|
+
return num * static_cast<double>(LCB_S2US(60));
|
|
579
|
+
} else if (mults == "ns") {
|
|
580
|
+
return LCB_NS2US(num);
|
|
581
|
+
} else {
|
|
582
|
+
return 0;
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
lcb_N1QLREQ::lcb_N1QLREQ(lcb_t obj,
|
|
587
|
+
const void *user_cookie, const lcb_CMDN1QL *cmd)
|
|
588
|
+
: cur_htresp(NULL), htreq(NULL), parser(lcbjsp_create(LCBJSP_MODE_N1QL)),
|
|
589
|
+
cookie(user_cookie), callback(cmd->callback), instance(obj),
|
|
590
|
+
lasterr(LCB_SUCCESS), flags(cmd->cmdflags), timeout(0),
|
|
591
|
+
nrows(0), prepare_req(NULL), was_retried(false)
|
|
592
|
+
{
|
|
593
|
+
parser->data = this;
|
|
594
|
+
parser->callback = row_callback;
|
|
595
|
+
if (cmd->handle) {
|
|
596
|
+
*cmd->handle = this;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
if (flags & LCB_CMDN1QL_F_JSONQUERY) {
|
|
600
|
+
json = *reinterpret_cast<const Json::Value*>(cmd->query);
|
|
601
|
+
} else if (!parse_json(cmd->query, cmd->nquery, json)) {
|
|
602
|
+
lasterr = LCB_EINVAL;
|
|
603
|
+
return;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
const Json::Value& j_statement = json_const()["statement"];
|
|
607
|
+
if (j_statement.isString()) {
|
|
608
|
+
statement = j_statement.asString();
|
|
609
|
+
} else if (!j_statement.isNull()) {
|
|
610
|
+
lasterr = LCB_EINVAL;
|
|
611
|
+
return;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
Json::Value& tmoval = json["timeout"];
|
|
615
|
+
if (tmoval.isNull()) {
|
|
616
|
+
// Set the default timeout as the server-side query timeout if no
|
|
617
|
+
// other timeout is used.
|
|
618
|
+
char buf[64] = { 0 };
|
|
619
|
+
sprintf(buf, "%uus", LCBT_SETTING(obj, n1ql_timeout));
|
|
620
|
+
tmoval = buf;
|
|
621
|
+
timeout = LCBT_SETTING(obj, n1ql_timeout);
|
|
622
|
+
} else if (tmoval.isString()) {
|
|
623
|
+
timeout = lcb_n1qlreq_parsetmo(tmoval.asString());
|
|
624
|
+
} else {
|
|
625
|
+
// Timeout is not a string!
|
|
626
|
+
lasterr = LCB_EINVAL;
|
|
627
|
+
return;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
// Determine if we need to add more credentials.
|
|
631
|
+
// Because N1QL multi-bucket auth will not work on server versions < 4.5
|
|
632
|
+
// using JSON encoding, we need to only use the multi-bucket auth feature
|
|
633
|
+
// if there are actually multiple credentials to employ.
|
|
634
|
+
const lcb::Authenticator& auth = *instance->settings->auth;
|
|
635
|
+
if (auth.buckets().size() > 1 && (cmd->cmdflags & LCB_CMD_F_MULTIAUTH)) {
|
|
636
|
+
flags |= F_CMDN1QL_CREDSAUTH;
|
|
637
|
+
Json::Value& creds = json["creds"];
|
|
638
|
+
lcb::Authenticator::Map::const_iterator ii = auth.buckets().begin();
|
|
639
|
+
if (! (creds.isNull() || creds.isArray())) {
|
|
640
|
+
lasterr = LCB_EINVAL;
|
|
641
|
+
return;
|
|
642
|
+
}
|
|
643
|
+
for (; ii != auth.buckets().end(); ++ii) {
|
|
644
|
+
if (ii->second.empty()) {
|
|
645
|
+
continue;
|
|
646
|
+
}
|
|
647
|
+
Json::Value& curCreds = creds.append(Json::Value(Json::objectValue));
|
|
648
|
+
curCreds["user"] = ii->first;
|
|
649
|
+
curCreds["pass"] = ii->second;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
LIBCOUCHBASE_API
|
|
655
|
+
lcb_error_t
|
|
656
|
+
lcb_n1ql_query(lcb_t instance, const void *cookie, const lcb_CMDN1QL *cmd)
|
|
657
|
+
{
|
|
658
|
+
lcb_error_t err;
|
|
659
|
+
N1QLREQ *req = NULL;
|
|
660
|
+
|
|
661
|
+
if (cmd->query == NULL || cmd->callback == NULL) {
|
|
662
|
+
return LCB_EINVAL;
|
|
663
|
+
}
|
|
664
|
+
req = new lcb_N1QLREQ(instance, cookie, cmd);
|
|
665
|
+
if (!req) {
|
|
666
|
+
err = LCB_CLIENT_ENOMEM;
|
|
667
|
+
goto GT_DESTROY;
|
|
668
|
+
}
|
|
669
|
+
if ((err = req->lasterr) != LCB_SUCCESS) {
|
|
670
|
+
goto GT_DESTROY;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
if (cmd->cmdflags & LCB_CMDN1QL_F_PREPCACHE) {
|
|
674
|
+
if (req->statement.empty()) {
|
|
675
|
+
err = LCB_EINVAL;
|
|
676
|
+
goto GT_DESTROY;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
const Plan *cached = req->cache().get_entry(req->statement);
|
|
680
|
+
if (cached != NULL) {
|
|
681
|
+
if ((err = req->apply_plan(*cached)) != LCB_SUCCESS) {
|
|
682
|
+
goto GT_DESTROY;
|
|
683
|
+
}
|
|
684
|
+
} else {
|
|
685
|
+
lcb_log(LOGARGS(req, DEBUG), LOGFMT "No cached plan found. Issuing prepare", LOGID(req));
|
|
686
|
+
if ((err = req->request_plan()) != LCB_SUCCESS) {
|
|
687
|
+
goto GT_DESTROY;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
} else {
|
|
691
|
+
// No prepare
|
|
692
|
+
if ((err = req->issue_htreq()) != LCB_SUCCESS) {
|
|
693
|
+
goto GT_DESTROY;
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
return LCB_SUCCESS;
|
|
698
|
+
|
|
699
|
+
GT_DESTROY:
|
|
700
|
+
if (cmd->handle) {
|
|
701
|
+
*cmd->handle = NULL;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
if (req) {
|
|
705
|
+
req->callback = NULL;
|
|
706
|
+
delete req;
|
|
707
|
+
}
|
|
708
|
+
return err;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
LIBCOUCHBASE_API
|
|
712
|
+
void
|
|
713
|
+
lcb_n1ql_cancel(lcb_t instance, lcb_N1QLHANDLE handle)
|
|
714
|
+
{
|
|
715
|
+
// Note that this function is just an elaborate way to nullify the
|
|
716
|
+
// callback. We are very particular about _not_ cancelling the underlying
|
|
717
|
+
// http request, because the handle's deletion is controlled
|
|
718
|
+
// from the HTTP callback, which checks if the callback is NULL before
|
|
719
|
+
// deleting.
|
|
720
|
+
// at worst, deferring deletion to the http response might cost a few
|
|
721
|
+
// extra network reads; whereas this function itself is intended as a
|
|
722
|
+
// bailout for unexpected destruction.
|
|
723
|
+
|
|
724
|
+
if (handle->prepare_req) {
|
|
725
|
+
lcb_n1ql_cancel(instance, handle->prepare_req);
|
|
726
|
+
handle->prepare_req = NULL;
|
|
727
|
+
}
|
|
728
|
+
handle->callback = NULL;
|
|
729
|
+
}
|