couchbase 4.6.0 → 4.7.0-dev.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.
Files changed (320) hide show
  1. package/CMakeLists.txt +2 -1
  2. package/deps/couchbase-cxx-cache/mozilla-ca-bundle.crt +66 -93
  3. package/deps/couchbase-cxx-cache/mozilla-ca-bundle.sha256 +1 -1
  4. package/deps/couchbase-cxx-client/CMakeLists.txt +24 -11
  5. package/deps/couchbase-cxx-client/README.md +17 -16
  6. package/deps/couchbase-cxx-client/cmake/APKBUILD.in +17 -1
  7. package/deps/couchbase-cxx-client/cmake/Bundler.cmake +9 -1
  8. package/deps/couchbase-cxx-client/cmake/Cache.cmake +48 -19
  9. package/deps/couchbase-cxx-client/cmake/CompilerOptions.cmake +3 -1
  10. package/deps/couchbase-cxx-client/cmake/OpenSSL.cmake +10 -2
  11. package/deps/couchbase-cxx-client/cmake/Packaging.cmake +48 -8
  12. package/deps/couchbase-cxx-client/cmake/ThirdPartyDependencies.cmake +43 -1
  13. package/deps/couchbase-cxx-client/cmake/build_config.hxx.in +2 -0
  14. package/deps/couchbase-cxx-client/cmake/couchbase-cxx-client.spec.in +18 -0
  15. package/deps/couchbase-cxx-client/cmake/debian/control +6 -1
  16. package/deps/couchbase-cxx-client/cmake/debian/rules +1 -0
  17. package/deps/couchbase-cxx-client/cmake/tarball_glob.txt +10 -0
  18. package/deps/couchbase-cxx-client/core/app_telemetry_meter.cxx +1 -0
  19. package/deps/couchbase-cxx-client/core/app_telemetry_reporter.cxx +45 -43
  20. package/deps/couchbase-cxx-client/core/app_telemetry_reporter.hxx +4 -3
  21. package/deps/couchbase-cxx-client/core/bucket.cxx +128 -13
  22. package/deps/couchbase-cxx-client/core/bucket.hxx +12 -2
  23. package/deps/couchbase-cxx-client/core/cluster.cxx +304 -152
  24. package/deps/couchbase-cxx-client/core/cluster.hxx +32 -0
  25. package/deps/couchbase-cxx-client/core/cluster_credentials.cxx +25 -0
  26. package/deps/couchbase-cxx-client/core/cluster_credentials.hxx +5 -0
  27. package/deps/couchbase-cxx-client/core/cluster_label_listener.cxx +72 -0
  28. package/deps/couchbase-cxx-client/core/cluster_label_listener.hxx +46 -0
  29. package/deps/couchbase-cxx-client/core/cluster_options.hxx +4 -0
  30. package/deps/couchbase-cxx-client/core/deprecation_utils.hxx +26 -0
  31. package/deps/couchbase-cxx-client/core/error.hxx +27 -0
  32. package/deps/couchbase-cxx-client/core/free_form_http_request.hxx +0 -2
  33. package/deps/couchbase-cxx-client/core/http_component.cxx +12 -48
  34. package/deps/couchbase-cxx-client/core/impl/analytics.cxx +3 -2
  35. package/deps/couchbase-cxx-client/core/impl/analytics.hxx +2 -1
  36. package/deps/couchbase-cxx-client/core/impl/analytics_index_manager.cxx +249 -137
  37. package/deps/couchbase-cxx-client/core/impl/binary_collection.cxx +134 -58
  38. package/deps/couchbase-cxx-client/core/impl/bucket_manager.cxx +87 -35
  39. package/deps/couchbase-cxx-client/core/impl/collection.cxx +560 -245
  40. package/deps/couchbase-cxx-client/core/impl/collection_manager.cxx +89 -49
  41. package/deps/couchbase-cxx-client/core/impl/dns_srv_tracker.cxx +4 -4
  42. package/deps/couchbase-cxx-client/core/impl/error.cxx +20 -13
  43. package/deps/couchbase-cxx-client/core/impl/error.hxx +15 -10
  44. package/deps/couchbase-cxx-client/core/impl/get_all_replicas.hxx +1 -1
  45. package/deps/couchbase-cxx-client/core/impl/get_any_replica.hxx +2 -1
  46. package/deps/couchbase-cxx-client/core/impl/get_replica.hxx +2 -0
  47. package/deps/couchbase-cxx-client/core/impl/lookup_in_replica.hxx +1 -1
  48. package/deps/couchbase-cxx-client/core/impl/observability_recorder.cxx +161 -0
  49. package/deps/couchbase-cxx-client/core/impl/observability_recorder.hxx +77 -0
  50. package/deps/couchbase-cxx-client/core/impl/observe_seqno.hxx +2 -0
  51. package/deps/couchbase-cxx-client/core/impl/public_bucket.cxx +31 -7
  52. package/deps/couchbase-cxx-client/core/impl/public_cluster.cxx +107 -19
  53. package/deps/couchbase-cxx-client/core/impl/query.cxx +6 -3
  54. package/deps/couchbase-cxx-client/core/impl/query.hxx +3 -1
  55. package/deps/couchbase-cxx-client/core/impl/query_index_manager.cxx +267 -102
  56. package/deps/couchbase-cxx-client/core/impl/scope.cxx +53 -11
  57. package/deps/couchbase-cxx-client/core/impl/search.cxx +8 -4
  58. package/deps/couchbase-cxx-client/core/impl/search.hxx +6 -2
  59. package/deps/couchbase-cxx-client/core/impl/search_index_manager.cxx +131 -41
  60. package/deps/couchbase-cxx-client/core/impl/with_cancellation.hxx +75 -0
  61. package/deps/couchbase-cxx-client/core/io/config_tracker.cxx +9 -9
  62. package/deps/couchbase-cxx-client/core/io/config_tracker.hxx +2 -1
  63. package/deps/couchbase-cxx-client/core/io/http_command.hxx +98 -49
  64. package/deps/couchbase-cxx-client/core/io/http_context.hxx +2 -0
  65. package/deps/couchbase-cxx-client/core/io/http_session.cxx +23 -10
  66. package/deps/couchbase-cxx-client/core/io/http_session.hxx +17 -9
  67. package/deps/couchbase-cxx-client/core/io/http_session_manager.hxx +163 -228
  68. package/deps/couchbase-cxx-client/core/io/http_traits.hxx +0 -7
  69. package/deps/couchbase-cxx-client/core/io/mcbp_command.hxx +123 -44
  70. package/deps/couchbase-cxx-client/core/io/mcbp_session.cxx +251 -26
  71. package/deps/couchbase-cxx-client/core/io/mcbp_session.hxx +9 -1
  72. package/deps/couchbase-cxx-client/core/io/mcbp_traits.hxx +0 -8
  73. package/deps/couchbase-cxx-client/core/io/streams.cxx +3 -3
  74. package/deps/couchbase-cxx-client/core/io/streams.hxx +3 -2
  75. package/deps/couchbase-cxx-client/core/meta/features.hxx +15 -0
  76. package/deps/couchbase-cxx-client/core/meta/version.cxx +13 -0
  77. package/deps/couchbase-cxx-client/core/meta/version.hxx +3 -0
  78. package/deps/couchbase-cxx-client/core/metrics/constants.hxx +23 -0
  79. package/deps/couchbase-cxx-client/core/metrics/logging_meter.cxx +5 -5
  80. package/deps/couchbase-cxx-client/core/metrics/meter_wrapper.cxx +65 -63
  81. package/deps/couchbase-cxx-client/core/metrics/meter_wrapper.hxx +12 -10
  82. package/deps/couchbase-cxx-client/core/operations/document_analytics.hxx +0 -5
  83. package/deps/couchbase-cxx-client/core/operations/document_append.hxx +0 -4
  84. package/deps/couchbase-cxx-client/core/operations/document_decrement.hxx +0 -5
  85. package/deps/couchbase-cxx-client/core/operations/document_exists.hxx +0 -7
  86. package/deps/couchbase-cxx-client/core/operations/document_get.hxx +0 -7
  87. package/deps/couchbase-cxx-client/core/operations/document_get_all_replicas.hxx +77 -27
  88. package/deps/couchbase-cxx-client/core/operations/document_get_and_lock.hxx +0 -9
  89. package/deps/couchbase-cxx-client/core/operations/document_get_and_touch.hxx +0 -9
  90. package/deps/couchbase-cxx-client/core/operations/document_get_any_replica.hxx +83 -2
  91. package/deps/couchbase-cxx-client/core/operations/document_get_projected.hxx +0 -9
  92. package/deps/couchbase-cxx-client/core/operations/document_increment.hxx +0 -5
  93. package/deps/couchbase-cxx-client/core/operations/document_insert.hxx +0 -4
  94. package/deps/couchbase-cxx-client/core/operations/document_lookup_in.hxx +0 -9
  95. package/deps/couchbase-cxx-client/core/operations/document_lookup_in_all_replicas.hxx +46 -4
  96. package/deps/couchbase-cxx-client/core/operations/document_lookup_in_any_replica.hxx +121 -43
  97. package/deps/couchbase-cxx-client/core/operations/document_mutate_in.hxx +0 -5
  98. package/deps/couchbase-cxx-client/core/operations/document_prepend.hxx +0 -4
  99. package/deps/couchbase-cxx-client/core/operations/document_query.hxx +0 -4
  100. package/deps/couchbase-cxx-client/core/operations/document_remove.hxx +0 -4
  101. package/deps/couchbase-cxx-client/core/operations/document_replace.hxx +0 -4
  102. package/deps/couchbase-cxx-client/core/operations/document_search.hxx +0 -7
  103. package/deps/couchbase-cxx-client/core/operations/document_touch.hxx +0 -7
  104. package/deps/couchbase-cxx-client/core/operations/document_unlock.hxx +0 -6
  105. package/deps/couchbase-cxx-client/core/operations/document_upsert.hxx +0 -4
  106. package/deps/couchbase-cxx-client/core/operations/document_view.cxx +2 -0
  107. package/deps/couchbase-cxx-client/core/operations/document_view.hxx +10 -13
  108. package/deps/couchbase-cxx-client/core/operations/http_noop.hxx +2 -0
  109. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.hxx +2 -0
  110. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.hxx +2 -0
  111. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_get_all.hxx +2 -0
  112. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.hxx +2 -0
  113. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.hxx +2 -0
  114. package/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.hxx +2 -0
  115. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_create.hxx +2 -0
  116. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.hxx +2 -0
  117. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_get_all.hxx +2 -0
  118. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.hxx +2 -0
  119. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_create.hxx +2 -0
  120. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.hxx +2 -0
  121. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.hxx +2 -0
  122. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.hxx +2 -0
  123. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_replace.hxx +2 -0
  124. package/deps/couchbase-cxx-client/core/operations/management/bucket_create.hxx +2 -0
  125. package/deps/couchbase-cxx-client/core/operations/management/bucket_describe.hxx +2 -0
  126. package/deps/couchbase-cxx-client/core/operations/management/bucket_drop.hxx +2 -0
  127. package/deps/couchbase-cxx-client/core/operations/management/bucket_flush.hxx +2 -0
  128. package/deps/couchbase-cxx-client/core/operations/management/bucket_get.hxx +2 -0
  129. package/deps/couchbase-cxx-client/core/operations/management/bucket_get_all.hxx +2 -0
  130. package/deps/couchbase-cxx-client/core/operations/management/bucket_update.hxx +2 -0
  131. package/deps/couchbase-cxx-client/core/operations/management/change_password.hxx +2 -0
  132. package/deps/couchbase-cxx-client/core/operations/management/cluster_describe.hxx +2 -0
  133. package/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.hxx +2 -0
  134. package/deps/couchbase-cxx-client/core/operations/management/collection_create.hxx +2 -0
  135. package/deps/couchbase-cxx-client/core/operations/management/collection_drop.hxx +2 -0
  136. package/deps/couchbase-cxx-client/core/operations/management/collection_update.hxx +2 -0
  137. package/deps/couchbase-cxx-client/core/operations/management/collections_manifest_get.hxx +2 -0
  138. package/deps/couchbase-cxx-client/core/operations/management/error_utils.cxx +4 -1
  139. package/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.hxx +2 -0
  140. package/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.hxx +2 -0
  141. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_all_functions.hxx +2 -0
  142. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.hxx +2 -0
  143. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_status.hxx +2 -0
  144. package/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.hxx +2 -0
  145. package/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.hxx +2 -0
  146. package/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.hxx +2 -0
  147. package/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.hxx +2 -0
  148. package/deps/couchbase-cxx-client/core/operations/management/freeform.hxx +2 -0
  149. package/deps/couchbase-cxx-client/core/operations/management/group_drop.hxx +2 -0
  150. package/deps/couchbase-cxx-client/core/operations/management/group_get.hxx +2 -0
  151. package/deps/couchbase-cxx-client/core/operations/management/group_get_all.hxx +2 -0
  152. package/deps/couchbase-cxx-client/core/operations/management/group_upsert.hxx +2 -0
  153. package/deps/couchbase-cxx-client/core/operations/management/query_index_build.hxx +2 -0
  154. package/deps/couchbase-cxx-client/core/operations/management/query_index_build_deferred.hxx +68 -30
  155. package/deps/couchbase-cxx-client/core/operations/management/query_index_create.hxx +2 -0
  156. package/deps/couchbase-cxx-client/core/operations/management/query_index_drop.hxx +2 -0
  157. package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.hxx +4 -3
  158. package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.hxx +2 -1
  159. package/deps/couchbase-cxx-client/core/operations/management/role_get_all.hxx +2 -0
  160. package/deps/couchbase-cxx-client/core/operations/management/scope_create.hxx +2 -0
  161. package/deps/couchbase-cxx-client/core/operations/management/scope_drop.hxx +2 -0
  162. package/deps/couchbase-cxx-client/core/operations/management/scope_get_all.hxx +2 -0
  163. package/deps/couchbase-cxx-client/core/operations/management/search_get_stats.hxx +2 -0
  164. package/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.hxx +2 -0
  165. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.hxx +2 -0
  166. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.hxx +2 -0
  167. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.hxx +2 -0
  168. package/deps/couchbase-cxx-client/core/operations/management/search_index_drop.hxx +2 -0
  169. package/deps/couchbase-cxx-client/core/operations/management/search_index_get.hxx +2 -0
  170. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.hxx +2 -0
  171. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.hxx +2 -0
  172. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.hxx +2 -0
  173. package/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.hxx +2 -0
  174. package/deps/couchbase-cxx-client/core/operations/management/user_drop.hxx +2 -0
  175. package/deps/couchbase-cxx-client/core/operations/management/user_get.hxx +2 -0
  176. package/deps/couchbase-cxx-client/core/operations/management/user_get_all.hxx +2 -0
  177. package/deps/couchbase-cxx-client/core/operations/management/user_upsert.hxx +2 -0
  178. package/deps/couchbase-cxx-client/core/operations/management/view_index_drop.hxx +2 -0
  179. package/deps/couchbase-cxx-client/core/operations/management/view_index_get.hxx +2 -0
  180. package/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.hxx +2 -0
  181. package/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.hxx +2 -0
  182. package/deps/couchbase-cxx-client/core/operations/operation_traits.hxx +6 -0
  183. package/deps/couchbase-cxx-client/core/operations.hxx +0 -1
  184. package/deps/couchbase-cxx-client/core/operations_fwd.hxx +8 -0
  185. package/deps/couchbase-cxx-client/core/origin.cxx +67 -12
  186. package/deps/couchbase-cxx-client/core/origin.hxx +13 -8
  187. package/deps/couchbase-cxx-client/core/orphan_reporter.cxx +164 -0
  188. package/deps/couchbase-cxx-client/core/orphan_reporter.hxx +65 -0
  189. package/deps/couchbase-cxx-client/core/sasl/CMakeLists.txt +1 -0
  190. package/deps/couchbase-cxx-client/core/sasl/client.cc +6 -0
  191. package/deps/couchbase-cxx-client/core/sasl/mechanism.cc +2 -1
  192. package/deps/couchbase-cxx-client/core/sasl/mechanism.h +2 -1
  193. package/deps/couchbase-cxx-client/core/sasl/oauthbearer/oauthbearer.cc +41 -0
  194. package/deps/couchbase-cxx-client/core/sasl/oauthbearer/oauthbearer.h +47 -0
  195. package/deps/couchbase-cxx-client/core/tls_context_provider.cxx +44 -0
  196. package/deps/couchbase-cxx-client/core/tls_context_provider.hxx +44 -0
  197. package/deps/couchbase-cxx-client/core/tracing/attribute_helpers.hxx +45 -0
  198. package/deps/couchbase-cxx-client/core/tracing/constants.hxx +148 -68
  199. package/deps/couchbase-cxx-client/core/tracing/threshold_logging_options.hxx +0 -3
  200. package/deps/couchbase-cxx-client/core/tracing/threshold_logging_tracer.cxx +122 -170
  201. package/deps/couchbase-cxx-client/core/tracing/tracer_wrapper.cxx +17 -24
  202. package/deps/couchbase-cxx-client/core/tracing/tracer_wrapper.hxx +8 -10
  203. package/deps/couchbase-cxx-client/core/tracing/wrapper_sdk_tracer.cxx +114 -0
  204. package/deps/couchbase-cxx-client/core/tracing/wrapper_sdk_tracer.hxx +85 -0
  205. package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.cxx +16 -14
  206. package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.hxx +4 -4
  207. package/deps/couchbase-cxx-client/core/transactions/transactions.cxx +1 -1
  208. package/deps/couchbase-cxx-client/core/transactions/transactions_cleanup.cxx +1 -2
  209. package/deps/couchbase-cxx-client/core/utils/byteswap.hxx +12 -0
  210. package/deps/couchbase-cxx-client/core/utils/concurrent_fixed_priority_queue.hxx +102 -0
  211. package/deps/couchbase-cxx-client/core/utils/connection_string.cxx +2 -0
  212. package/deps/couchbase-cxx-client/couchbase/certificate_authenticator.hxx +1 -0
  213. package/deps/couchbase-cxx-client/couchbase/cluster.hxx +47 -0
  214. package/deps/couchbase-cxx-client/couchbase/cluster_options.hxx +16 -0
  215. package/deps/couchbase-cxx-client/couchbase/collection.hxx +60 -15
  216. package/deps/couchbase-cxx-client/couchbase/error_codes.hxx +48 -48
  217. package/deps/couchbase-cxx-client/couchbase/jwt_authenticator.hxx +52 -0
  218. package/deps/couchbase-cxx-client/couchbase/metrics/meter.hxx +2 -1
  219. package/deps/couchbase-cxx-client/couchbase/metrics/otel_meter.hxx +75 -80
  220. package/deps/couchbase-cxx-client/couchbase/network_options.hxx +19 -0
  221. package/deps/couchbase-cxx-client/couchbase/password_authenticator.hxx +1 -0
  222. package/deps/couchbase-cxx-client/couchbase/tracing/otel_tracer.hxx +15 -17
  223. package/deps/couchbase-cxx-client/couchbase/tracing/request_span.hxx +2 -2
  224. package/dist/analyticsexecutor.d.ts +15 -0
  225. package/dist/analyticsexecutor.js +79 -50
  226. package/dist/analyticsindexmanager.d.ts +66 -0
  227. package/dist/analyticsindexmanager.js +404 -277
  228. package/dist/analyticstypes.d.ts +5 -0
  229. package/dist/authenticators.d.ts +34 -1
  230. package/dist/authenticators.js +19 -1
  231. package/dist/binarycollection.d.ts +17 -0
  232. package/dist/binding.d.ts +245 -228
  233. package/dist/binding.js +2 -2
  234. package/dist/bindingutilities.js +1 -1
  235. package/dist/bucket.d.ts +8 -0
  236. package/dist/bucket.js +8 -0
  237. package/dist/bucketmanager.d.ts +30 -0
  238. package/dist/bucketmanager.js +128 -69
  239. package/dist/cluster.d.ts +45 -0
  240. package/dist/cluster.js +133 -23
  241. package/dist/collection.d.ts +75 -2
  242. package/dist/collection.js +773 -552
  243. package/dist/collectionmanager.d.ts +34 -0
  244. package/dist/collectionmanager.js +172 -89
  245. package/dist/couchbase.d.ts +5 -0
  246. package/dist/couchbase.js +5 -0
  247. package/dist/datastructures.js +310 -97
  248. package/dist/diagnosticsexecutor.js +1 -1
  249. package/dist/errors.d.ts +8 -0
  250. package/dist/errors.js +12 -1
  251. package/dist/eventingfunctionmanager.d.ts +42 -0
  252. package/dist/eventingfunctionmanager.js +172 -100
  253. package/dist/logger.d.ts +192 -0
  254. package/dist/logger.js +213 -0
  255. package/dist/loggingmeter.d.ts +120 -0
  256. package/dist/loggingmeter.js +226 -0
  257. package/dist/metrics.d.ts +33 -0
  258. package/dist/metrics.js +5 -0
  259. package/dist/observability.d.ts +60 -0
  260. package/dist/observability.js +86 -0
  261. package/dist/observabilityhandler.d.ts +176 -0
  262. package/dist/observabilityhandler.js +733 -0
  263. package/dist/observabilitytypes.d.ts +320 -0
  264. package/dist/observabilitytypes.js +362 -0
  265. package/dist/observabilityutilities.d.ts +60 -0
  266. package/dist/observabilityutilities.js +175 -0
  267. package/dist/otelmeter.d.ts +51 -0
  268. package/dist/otelmeter.js +100 -0
  269. package/dist/oteltracer.d.ts +69 -0
  270. package/dist/oteltracer.js +141 -0
  271. package/dist/queryexecutor.d.ts +16 -0
  272. package/dist/queryexecutor.js +128 -86
  273. package/dist/queryindexmanager.d.ts +29 -0
  274. package/dist/queryindexmanager.js +277 -150
  275. package/dist/querytypes.d.ts +5 -0
  276. package/dist/scope.js +2 -2
  277. package/dist/scopeeventingfunctionmanager.d.ts +5 -0
  278. package/dist/scopeeventingfunctionmanager.js +217 -119
  279. package/dist/scopesearchindexmanager.d.ts +5 -0
  280. package/dist/scopesearchindexmanager.js +295 -166
  281. package/dist/sdspecs.js +6 -1
  282. package/dist/searchexecutor.d.ts +15 -0
  283. package/dist/searchexecutor.js +54 -26
  284. package/dist/searchindexmanager.d.ts +54 -0
  285. package/dist/searchindexmanager.js +235 -142
  286. package/dist/searchtypes.d.ts +5 -0
  287. package/dist/thresholdlogging.d.ts +301 -0
  288. package/dist/thresholdlogging.js +657 -0
  289. package/dist/tracing.d.ts +55 -0
  290. package/dist/tracing.js +2 -0
  291. package/dist/transactions.js +1 -1
  292. package/dist/transcoders.js +1 -1
  293. package/dist/usermanager.d.ts +46 -0
  294. package/dist/usermanager.js +199 -118
  295. package/dist/utilities.d.ts +4 -0
  296. package/dist/utilities.js +11 -1
  297. package/dist/utilities_internal.js +0 -1
  298. package/dist/version.d.ts +2 -0
  299. package/dist/version.js +7 -0
  300. package/dist/viewexecutor.d.ts +15 -0
  301. package/dist/viewexecutor.js +54 -29
  302. package/dist/viewindexmanager.d.ts +30 -0
  303. package/dist/viewindexmanager.js +129 -100
  304. package/dist/viewtypes.d.ts +5 -0
  305. package/package.json +32 -18
  306. package/scripts/buildPrebuild.js +2 -0
  307. package/scripts/install.js +2 -0
  308. package/scripts/prebuilds.js +7 -8
  309. package/scripts/prune.js +2 -0
  310. package/scripts/updateVersion.js +26 -0
  311. package/src/connection.cpp +79 -98
  312. package/src/connection.hpp +46 -38
  313. package/src/connection_autogen.cpp +1236 -292
  314. package/src/jstocbpp_autogen.hpp +1117 -313
  315. package/src/jstocbpp_basic.hpp +73 -0
  316. package/src/jstocbpp_defs.hpp +37 -9
  317. package/src/jstocbpp_errors.hpp +37 -11
  318. package/tools/gen-bindings-js.js +100 -22
  319. package/tools/gen-bindings-json.py +40 -6
  320. package/src/transcoder.hpp +0 -96
@@ -23,6 +23,7 @@
23
23
  #include "core/io/retry_context.hxx"
24
24
  #include "core/protocol/client_request.hxx"
25
25
  #include "core/protocol/cmd_get_collections_manifest.hxx"
26
+ #include "core/public_fwd.hxx"
26
27
  #include "core/timeout_defaults.hxx"
27
28
  #include "core/topology/collections_manifest.hxx"
28
29
 
@@ -48,6 +49,7 @@ struct collections_manifest_get_request {
48
49
 
49
50
  std::optional<std::chrono::milliseconds> timeout{};
50
51
  io::retry_context<true> retries{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  mcbp_context&& /* context */) const;
@@ -46,6 +46,9 @@ extract_common_query_error_code(std::uint64_t code, const std::string& message)
46
46
  -> std::optional<std::error_code>
47
47
  {
48
48
  switch (code) {
49
+ case 3000: /* ICode: E_PARSE_SYNTAX, IKey: "parse.syntax_error" */
50
+ return errc::common::parsing_failure;
51
+
49
52
  case 1191: /* ICode: E_SERVICE_USER_REQUEST_EXCEEDED, IKey: "service.requests.exceeded" */
50
53
  case 1192: /* ICode: E_SERVICE_USER_REQUEST_RATE_EXCEEDED, IKey: "service.request.rate.exceeded"
51
54
  */
@@ -55,7 +58,7 @@ extract_common_query_error_code(std::uint64_t code, const std::string& message)
55
58
  */
56
59
  return errc::common::rate_limited;
57
60
 
58
- case 13014: /*ICode: E_DATASTORE_INSUFFICIENT_CREDENTIALS, IKey:
61
+ case 13014: /* ICode: E_DATASTORE_INSUFFICIENT_CREDENTIALS, IKey:
59
62
  "datastore.couchbase.insufficient_credentials" */
60
63
  return errc::common::authentication_failure;
61
64
 
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_deploy_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_drop_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -47,6 +48,7 @@ struct eventing_get_all_functions_request {
47
48
 
48
49
  std::optional<std::string> client_context_id{};
49
50
  std::optional<std::chrono::milliseconds> timeout{};
51
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
50
52
 
51
53
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
52
54
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_get_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -23,6 +23,7 @@
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/management/eventing_status.hxx"
25
25
  #include "core/platform/uuid.h"
26
+ #include "core/public_fwd.hxx"
26
27
  #include "core/timeout_defaults.hxx"
27
28
  #include "eventing_problem.hxx"
28
29
 
@@ -49,6 +50,7 @@ struct eventing_get_status_request {
49
50
 
50
51
  std::optional<std::string> client_context_id{};
51
52
  std::optional<std::chrono::milliseconds> timeout{};
53
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
52
54
 
53
55
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
54
56
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_pause_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_resume_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_undeploy_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/eventing_function.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
  #include "eventing_problem.hxx"
27
28
 
@@ -48,6 +49,7 @@ struct eventing_upsert_function_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/service_type.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
@@ -49,6 +50,7 @@ struct freeform_request {
49
50
 
50
51
  std::optional<std::string> client_context_id{};
51
52
  std::optional<std::chrono::milliseconds> timeout{};
53
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
52
54
 
53
55
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
54
56
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -42,6 +43,7 @@ struct group_drop_request {
42
43
 
43
44
  std::optional<std::string> client_context_id{};
44
45
  std::optional<std::chrono::milliseconds> timeout{};
46
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
45
47
 
46
48
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
47
49
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/rbac.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
27
28
  namespace couchbase::core::operations::management
@@ -44,6 +45,7 @@ struct group_get_request {
44
45
 
45
46
  std::optional<std::string> client_context_id{};
46
47
  std::optional<std::chrono::milliseconds> timeout{};
48
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
47
49
 
48
50
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
49
51
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/rbac.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
27
28
  namespace couchbase::core::operations::management
@@ -42,6 +43,7 @@ struct group_get_all_request {
42
43
 
43
44
  std::optional<std::string> client_context_id{};
44
45
  std::optional<std::chrono::milliseconds> timeout{};
46
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
45
47
 
46
48
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
47
49
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/rbac.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
27
28
  namespace couchbase::core::operations::management
@@ -44,6 +45,7 @@ struct group_upsert_request {
44
45
 
45
46
  std::optional<std::string> client_context_id{};
46
47
  std::optional<std::chrono::milliseconds> timeout{};
48
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
47
49
 
48
50
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
49
51
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/query_context.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
@@ -55,6 +56,7 @@ struct query_index_build_request {
55
56
 
56
57
  std::optional<std::string> client_context_id{};
57
58
  std::optional<std::chrono::milliseconds> timeout{};
59
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
58
60
 
59
61
  [[nodiscard]] auto encode_to(encoded_request_type& encoded, http_context& context) const
60
62
  -> std::error_code;
@@ -21,7 +21,9 @@
21
21
  #include "core/operations/management/query_index_build.hxx"
22
22
  #include "core/operations/management/query_index_get_all_deferred.hxx"
23
23
  #include "core/operations/operation_traits.hxx"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/query_context.hxx"
26
+ #include "core/tracing/constants.hxx"
25
27
  #include "couchbase/management/query_index.hxx"
26
28
 
27
29
  namespace couchbase::core::operations
@@ -56,6 +58,7 @@ struct query_index_build_deferred_request {
56
58
 
57
59
  std::optional<std::string> client_context_id{};
58
60
  std::optional<std::chrono::milliseconds> timeout{};
61
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
59
62
 
60
63
  [[nodiscard]] response_type make_response(error_context::http&& ctx,
61
64
  const encoded_response_type& /* encoded */) const
@@ -85,36 +88,71 @@ struct query_index_build_deferred_request {
85
88
  template<typename Core, typename Handler>
86
89
  void execute(Core core, Handler handler)
87
90
  {
88
- core->execute(query_index_get_all_deferred_request{ bucket_name,
89
- scope_name.value_or(""),
90
- collection_name.value_or(""),
91
- query_ctx,
92
- client_context_id,
93
- timeout },
94
- [core,
95
- handler = std::move(handler),
96
- bucket_name = bucket_name,
97
- scope_name = scope_name.value_or(""),
98
- collection_name = collection_name.value_or(""),
99
- query_ctx = query_ctx,
100
- client_context_id = client_context_id,
101
- timeout = timeout](query_index_get_all_deferred_response resp1) mutable {
102
- auto list_resp = std::move(resp1);
103
- if (list_resp.ctx.ec || list_resp.index_names.empty()) {
104
- return handler(convert_response(std::move(list_resp)));
105
- }
106
- core->execute(query_index_build_request{ std::move(bucket_name),
107
- scope_name,
108
- collection_name,
109
- query_ctx,
110
- std::move(list_resp.index_names),
111
- client_context_id,
112
- timeout },
113
- [handler = std::move(handler)](
114
- query_index_build_response build_resp) mutable {
115
- return handler(convert_response(std::move(build_resp)));
116
- });
117
- });
91
+ auto get_deferred_indexes_span = core->tracer()->create_span(
92
+ tracing::operation::mgr_query_get_all_deferred_indexes, parent_span);
93
+ if (get_deferred_indexes_span->uses_tags()) {
94
+ get_deferred_indexes_span->add_tag(tracing::attributes::op::service, tracing::service::query);
95
+ get_deferred_indexes_span->add_tag(tracing::attributes::op::bucket_name, bucket_name);
96
+ if (scope_name.has_value()) {
97
+ get_deferred_indexes_span->add_tag(tracing::attributes::op::scope_name, scope_name.value());
98
+ }
99
+ if (collection_name.has_value()) {
100
+ get_deferred_indexes_span->add_tag(tracing::attributes::op::collection_name,
101
+ collection_name.value());
102
+ }
103
+ }
104
+ core->execute(
105
+ query_index_get_all_deferred_request{ bucket_name,
106
+ scope_name.value_or(""),
107
+ collection_name.value_or(""),
108
+ query_ctx,
109
+ client_context_id,
110
+ timeout,
111
+ get_deferred_indexes_span },
112
+ [core,
113
+ handler = std::move(handler),
114
+ bucket_name = bucket_name,
115
+ scope_name = scope_name.value_or(""),
116
+ collection_name = collection_name.value_or(""),
117
+ query_ctx = query_ctx,
118
+ client_context_id = client_context_id,
119
+ timeout = timeout,
120
+ get_deferred_indexes_span = std::move(get_deferred_indexes_span)](
121
+ query_index_get_all_deferred_response resp1) mutable {
122
+ get_deferred_indexes_span->end();
123
+ auto list_resp = std::move(resp1);
124
+ if (list_resp.ctx.ec || list_resp.index_names.empty()) {
125
+ return handler(convert_response(std::move(list_resp)));
126
+ }
127
+
128
+ auto build_indexes_span = core->tracer()->create_span(
129
+ tracing::operation::mgr_query_build_indexes, get_deferred_indexes_span);
130
+ if (build_indexes_span->uses_tags()) {
131
+ build_indexes_span->add_tag(tracing::attributes::op::service, tracing::service::query);
132
+ build_indexes_span->add_tag(tracing::attributes::op::bucket_name, bucket_name);
133
+ if (!scope_name.empty()) {
134
+ build_indexes_span->add_tag(tracing::attributes::op::scope_name, scope_name);
135
+ }
136
+ if (!collection_name.empty()) {
137
+ build_indexes_span->add_tag(tracing::attributes::op::collection_name, collection_name);
138
+ }
139
+ }
140
+
141
+ core->execute(
142
+ query_index_build_request{ std::move(bucket_name),
143
+ scope_name,
144
+ collection_name,
145
+ query_ctx,
146
+ std::move(list_resp.index_names),
147
+ client_context_id,
148
+ timeout,
149
+ build_indexes_span },
150
+ [handler = std::move(handler), build_indexes_span = std::move(build_indexes_span)](
151
+ query_index_build_response build_resp) mutable {
152
+ build_indexes_span->end();
153
+ return handler(convert_response(std::move(build_resp)));
154
+ });
155
+ });
118
156
  }
119
157
  };
120
158
  } // namespace management
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/query_context.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
@@ -60,6 +61,7 @@ struct query_index_create_request {
60
61
 
61
62
  std::optional<std::string> client_context_id{};
62
63
  std::optional<std::chrono::milliseconds> timeout{};
64
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
63
65
 
64
66
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
65
67
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/query_context.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
@@ -56,6 +57,7 @@ struct query_index_drop_request {
56
57
 
57
58
  std::optional<std::string> client_context_id{};
58
59
  std::optional<std::chrono::milliseconds> timeout{};
60
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
59
61
 
60
62
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
61
63
  http_context& context) const;
@@ -17,13 +17,13 @@
17
17
 
18
18
  #pragma once
19
19
 
20
+ #include <couchbase/management/query_index.hxx>
21
+
20
22
  #include "core/error_context/http.hxx"
21
23
  #include "core/io/http_context.hxx"
22
24
  #include "core/io/http_message.hxx"
23
- #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
24
26
  #include "core/query_context.hxx"
25
- #include "core/timeout_defaults.hxx"
26
- #include "couchbase/management/query_index.hxx"
27
27
 
28
28
  namespace couchbase::core::operations::management
29
29
  {
@@ -50,6 +50,7 @@ struct query_index_get_all_request {
50
50
  query_context query_ctx;
51
51
  std::optional<std::string> client_context_id{};
52
52
  std::optional<std::chrono::milliseconds> timeout{};
53
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
53
54
 
54
55
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
55
56
  http_context& context) const;
@@ -21,9 +21,9 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/query_context.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
- #include "couchbase/management/query_index.hxx"
27
27
 
28
28
  namespace couchbase::core::operations::management
29
29
  {
@@ -51,6 +51,7 @@ struct query_index_get_all_deferred_request {
51
51
  query_context query_ctx;
52
52
  std::optional<std::string> client_context_id{};
53
53
  std::optional<std::chrono::milliseconds> timeout{};
54
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
54
55
 
55
56
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
56
57
  http_context& context) const;
@@ -22,6 +22,7 @@
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/management/rbac.hxx"
24
24
  #include "core/platform/uuid.h"
25
+ #include "core/public_fwd.hxx"
25
26
  #include "core/timeout_defaults.hxx"
26
27
 
27
28
  namespace couchbase::core::operations::management
@@ -42,6 +43,7 @@ struct role_get_all_request {
42
43
 
43
44
  std::optional<std::string> client_context_id{};
44
45
  std::optional<std::chrono::milliseconds> timeout{};
46
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
45
47
 
46
48
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
47
49
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -44,6 +45,7 @@ struct scope_create_request {
44
45
 
45
46
  std::optional<std::string> client_context_id{};
46
47
  std::optional<std::chrono::milliseconds> timeout{};
48
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
47
49
 
48
50
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
49
51
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -44,6 +45,7 @@ struct scope_drop_request {
44
45
 
45
46
  std::optional<std::string> client_context_id{};
46
47
  std::optional<std::chrono::milliseconds> timeout{};
48
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
47
49
 
48
50
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
49
51
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
  #include "core/topology/collections_manifest.hxx"
26
27
 
@@ -44,6 +45,7 @@ struct scope_get_all_request {
44
45
 
45
46
  std::optional<std::string> client_context_id{};
46
47
  std::optional<std::chrono::milliseconds> timeout{};
48
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
47
49
 
48
50
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
49
51
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -41,6 +42,7 @@ struct search_get_stats_request {
41
42
 
42
43
  std::optional<std::string> client_context_id{};
43
44
  std::optional<std::chrono::milliseconds> timeout{};
45
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
44
46
 
45
47
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
46
48
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -49,6 +50,7 @@ struct search_index_analyze_document_request {
49
50
 
50
51
  std::optional<std::string> client_context_id{};
51
52
  std::optional<std::chrono::milliseconds> timeout{};
53
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
52
54
 
53
55
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
54
56
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -48,6 +49,7 @@ struct search_index_control_ingest_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations
@@ -50,6 +51,7 @@ struct search_index_control_plan_freeze_request {
50
51
 
51
52
  std::optional<std::string> client_context_id{};
52
53
  std::optional<std::chrono::milliseconds> timeout{};
54
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
53
55
 
54
56
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
55
57
  http_context& context) const;
@@ -21,6 +21,7 @@
21
21
  #include "core/io/http_context.hxx"
22
22
  #include "core/io/http_message.hxx"
23
23
  #include "core/platform/uuid.h"
24
+ #include "core/public_fwd.hxx"
24
25
  #include "core/timeout_defaults.hxx"
25
26
 
26
27
  namespace couchbase::core::operations::management
@@ -48,6 +49,7 @@ struct search_index_control_query_request {
48
49
 
49
50
  std::optional<std::string> client_context_id{};
50
51
  std::optional<std::chrono::milliseconds> timeout{};
52
+ std::shared_ptr<couchbase::tracing::request_span> parent_span{ nullptr };
51
53
 
52
54
  [[nodiscard]] std::error_code encode_to(encoded_request_type& encoded,
53
55
  http_context& context) const;