couchbase 4.1.2 → 4.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2294) hide show
  1. package/deps/couchbase-cxx-client/.github/workflows/tests.yml +1 -1
  2. package/deps/couchbase-cxx-client/.idea/misc.xml +1 -0
  3. package/deps/couchbase-cxx-client/CMakeLists.txt +209 -21
  4. package/deps/couchbase-cxx-client/CODE_OF_CONDUCT.md +4 -0
  5. package/deps/couchbase-cxx-client/CONTRIBUTING.md +35 -0
  6. package/deps/couchbase-cxx-client/bin/build-tests +7 -0
  7. package/deps/couchbase-cxx-client/bin/build-tests.rb +1 -0
  8. package/deps/couchbase-cxx-client/bin/run-tests +6 -0
  9. package/deps/couchbase-cxx-client/cmake/Documentation.cmake +35 -0
  10. package/deps/couchbase-cxx-client/core/analytics_scan_consistency.hxx +26 -0
  11. package/deps/couchbase-cxx-client/core/bucket.hxx +553 -0
  12. package/deps/couchbase-cxx-client/core/capella_ca.hxx +43 -0
  13. package/deps/couchbase-cxx-client/core/cluster.cxx +124 -0
  14. package/deps/couchbase-cxx-client/core/cluster.hxx +480 -0
  15. package/deps/couchbase-cxx-client/core/cluster_options.cxx +50 -0
  16. package/deps/couchbase-cxx-client/core/cluster_options.hxx +84 -0
  17. package/deps/couchbase-cxx-client/core/config_profile.cxx +25 -0
  18. package/deps/couchbase-cxx-client/core/config_profile.hxx +92 -0
  19. package/deps/couchbase-cxx-client/core/crypto/CMakeLists.txt +12 -0
  20. package/deps/couchbase-cxx-client/core/crypto/cbcrypto.cc +897 -0
  21. package/deps/couchbase-cxx-client/core/crypto/cbcrypto.h +88 -0
  22. package/deps/couchbase-cxx-client/core/design_document_namespace.hxx +26 -0
  23. package/deps/couchbase-cxx-client/core/design_document_namespace_fmt.hxx +47 -0
  24. package/deps/couchbase-cxx-client/core/diagnostics.hxx +97 -0
  25. package/deps/couchbase-cxx-client/core/diagnostics_fmt.hxx +113 -0
  26. package/deps/couchbase-cxx-client/core/diagnostics_json.hxx +100 -0
  27. package/deps/couchbase-cxx-client/core/document_id.cxx +102 -0
  28. package/deps/couchbase-cxx-client/core/document_id.hxx +119 -0
  29. package/deps/couchbase-cxx-client/core/document_id_fmt.hxx +37 -0
  30. package/deps/couchbase-cxx-client/core/error_context/analytics.hxx +51 -0
  31. package/deps/couchbase-cxx-client/core/error_context/http.hxx +47 -0
  32. package/deps/couchbase-cxx-client/core/error_context/key_value.cxx +58 -0
  33. package/deps/couchbase-cxx-client/core/error_context/key_value.hxx +83 -0
  34. package/deps/couchbase-cxx-client/core/error_context/query.hxx +51 -0
  35. package/deps/couchbase-cxx-client/core/error_context/search.hxx +50 -0
  36. package/deps/couchbase-cxx-client/core/error_context/view.hxx +51 -0
  37. package/deps/couchbase-cxx-client/core/impl/analytics_error_category.cxx +62 -0
  38. package/deps/couchbase-cxx-client/core/impl/append.cxx +84 -0
  39. package/deps/couchbase-cxx-client/core/impl/build_deferred_query_indexes.cxx +81 -0
  40. package/deps/couchbase-cxx-client/core/impl/common_error_category.cxx +87 -0
  41. package/deps/couchbase-cxx-client/core/impl/decrement.cxx +87 -0
  42. package/deps/couchbase-cxx-client/core/impl/expiry.cxx +99 -0
  43. package/deps/couchbase-cxx-client/core/impl/field_level_encryption_error_category.cxx +63 -0
  44. package/deps/couchbase-cxx-client/core/impl/get.cxx +66 -0
  45. package/deps/couchbase-cxx-client/core/impl/get_all_replicas.cxx +139 -0
  46. package/deps/couchbase-cxx-client/core/impl/get_all_replicas.hxx +79 -0
  47. package/deps/couchbase-cxx-client/core/impl/get_and_touch.cxx +48 -0
  48. package/deps/couchbase-cxx-client/core/impl/get_any_replica.cxx +134 -0
  49. package/deps/couchbase-cxx-client/core/impl/get_any_replica.hxx +76 -0
  50. package/deps/couchbase-cxx-client/core/impl/get_replica.cxx +44 -0
  51. package/deps/couchbase-cxx-client/core/impl/get_replica.hxx +52 -0
  52. package/deps/couchbase-cxx-client/core/impl/increment.cxx +87 -0
  53. package/deps/couchbase-cxx-client/core/impl/insert.cxx +89 -0
  54. package/deps/couchbase-cxx-client/core/impl/key_value_error_category.cxx +99 -0
  55. package/deps/couchbase-cxx-client/core/impl/lookup_in.cxx +67 -0
  56. package/deps/couchbase-cxx-client/core/impl/management_error_category.cxx +75 -0
  57. package/deps/couchbase-cxx-client/core/impl/mutate_in.cxx +125 -0
  58. package/deps/couchbase-cxx-client/core/impl/network_error_category.cxx +59 -0
  59. package/deps/couchbase-cxx-client/core/impl/observe_poll.cxx +355 -0
  60. package/deps/couchbase-cxx-client/core/impl/observe_poll.hxx +49 -0
  61. package/deps/couchbase-cxx-client/core/impl/observe_seqno.cxx +47 -0
  62. package/deps/couchbase-cxx-client/core/impl/observe_seqno.hxx +63 -0
  63. package/deps/couchbase-cxx-client/core/impl/prepend.cxx +84 -0
  64. package/deps/couchbase-cxx-client/core/impl/query_error_category.cxx +55 -0
  65. package/deps/couchbase-cxx-client/core/impl/remove.cxx +83 -0
  66. package/deps/couchbase-cxx-client/core/impl/replace.cxx +93 -0
  67. package/deps/couchbase-cxx-client/core/impl/search_error_category.cxx +51 -0
  68. package/deps/couchbase-cxx-client/core/impl/streaming_json_lexter_error_category.cxx +102 -0
  69. package/deps/couchbase-cxx-client/core/impl/subdoc/array_add_unique.cxx +36 -0
  70. package/deps/couchbase-cxx-client/core/impl/subdoc/array_append.cxx +37 -0
  71. package/deps/couchbase-cxx-client/core/impl/subdoc/array_insert.cxx +37 -0
  72. package/deps/couchbase-cxx-client/core/impl/subdoc/array_prepend.cxx +37 -0
  73. package/deps/couchbase-cxx-client/core/impl/subdoc/command.hxx +41 -0
  74. package/deps/couchbase-cxx-client/core/impl/subdoc/command_bundle.hxx +42 -0
  75. package/deps/couchbase-cxx-client/core/impl/subdoc/count.cxx +36 -0
  76. package/deps/couchbase-cxx-client/core/impl/subdoc/counter.cxx +37 -0
  77. package/deps/couchbase-cxx-client/core/impl/subdoc/exists.cxx +36 -0
  78. package/deps/couchbase-cxx-client/core/impl/subdoc/get.cxx +36 -0
  79. package/deps/couchbase-cxx-client/core/impl/subdoc/insert.cxx +36 -0
  80. package/deps/couchbase-cxx-client/core/impl/subdoc/join_values.cxx +56 -0
  81. package/deps/couchbase-cxx-client/core/impl/subdoc/join_values.hxx +27 -0
  82. package/deps/couchbase-cxx-client/core/impl/subdoc/lookup_in_macro.cxx +109 -0
  83. package/deps/couchbase-cxx-client/core/impl/subdoc/lookup_in_specs.cxx +42 -0
  84. package/deps/couchbase-cxx-client/core/impl/subdoc/mutate_in_macro.cxx +76 -0
  85. package/deps/couchbase-cxx-client/core/impl/subdoc/mutate_in_specs.cxx +42 -0
  86. package/deps/couchbase-cxx-client/core/impl/subdoc/opcode.hxx +47 -0
  87. package/deps/couchbase-cxx-client/core/impl/subdoc/path_flags.hxx +77 -0
  88. package/deps/couchbase-cxx-client/core/impl/subdoc/remove.cxx +36 -0
  89. package/deps/couchbase-cxx-client/core/impl/subdoc/replace.cxx +36 -0
  90. package/deps/couchbase-cxx-client/core/impl/subdoc/upsert.cxx +36 -0
  91. package/deps/couchbase-cxx-client/core/impl/touch.cxx +48 -0
  92. package/deps/couchbase-cxx-client/core/impl/upsert.cxx +91 -0
  93. package/deps/couchbase-cxx-client/core/impl/view_error_category.cxx +50 -0
  94. package/deps/couchbase-cxx-client/core/impl/with_legacy_durability.hxx +65 -0
  95. package/deps/couchbase-cxx-client/core/io/CMakeLists.txt +12 -0
  96. package/deps/couchbase-cxx-client/core/io/dns_client.hxx +218 -0
  97. package/deps/couchbase-cxx-client/core/io/dns_codec.hxx +206 -0
  98. package/deps/couchbase-cxx-client/core/io/dns_config.hxx +115 -0
  99. package/deps/couchbase-cxx-client/core/io/dns_message.hxx +555 -0
  100. package/deps/couchbase-cxx-client/core/io/http_command.hxx +178 -0
  101. package/deps/couchbase-cxx-client/core/io/http_context.hxx +40 -0
  102. package/deps/couchbase-cxx-client/core/io/http_message.hxx +116 -0
  103. package/deps/couchbase-cxx-client/core/io/http_parser.cxx +141 -0
  104. package/deps/couchbase-cxx-client/core/io/http_parser.hxx +55 -0
  105. package/deps/couchbase-cxx-client/core/io/http_session.hxx +551 -0
  106. package/deps/couchbase-cxx-client/core/io/http_session_manager.hxx +383 -0
  107. package/deps/couchbase-cxx-client/core/io/http_traits.hxx +38 -0
  108. package/deps/couchbase-cxx-client/core/io/ip_protocol.hxx +28 -0
  109. package/deps/couchbase-cxx-client/core/io/mcbp_command.hxx +305 -0
  110. package/deps/couchbase-cxx-client/core/io/mcbp_context.hxx +39 -0
  111. package/deps/couchbase-cxx-client/core/io/mcbp_message.cxx +39 -0
  112. package/deps/couchbase-cxx-client/core/io/mcbp_message.hxx +55 -0
  113. package/deps/couchbase-cxx-client/core/io/mcbp_parser.cxx +88 -0
  114. package/deps/couchbase-cxx-client/core/io/mcbp_parser.hxx +45 -0
  115. package/deps/couchbase-cxx-client/core/io/mcbp_session.hxx +1336 -0
  116. package/deps/couchbase-cxx-client/core/io/mcbp_traits.hxx +38 -0
  117. package/deps/couchbase-cxx-client/core/io/query_cache.hxx +71 -0
  118. package/deps/couchbase-cxx-client/core/io/retry_action.hxx +30 -0
  119. package/deps/couchbase-cxx-client/core/io/retry_context.hxx +38 -0
  120. package/deps/couchbase-cxx-client/core/io/retry_orchestrator.hxx +112 -0
  121. package/deps/couchbase-cxx-client/core/io/retry_reason.hxx +86 -0
  122. package/deps/couchbase-cxx-client/core/io/retry_strategy.hxx +152 -0
  123. package/deps/couchbase-cxx-client/core/io/streams.hxx +253 -0
  124. package/deps/couchbase-cxx-client/core/json_string.hxx +48 -0
  125. package/deps/couchbase-cxx-client/core/logger/CMakeLists.txt +9 -0
  126. package/deps/couchbase-cxx-client/core/logger/configuration.hxx +57 -0
  127. package/deps/couchbase-cxx-client/core/logger/custom_rotating_file_sink.cxx +157 -0
  128. package/deps/couchbase-cxx-client/{couchbase → core}/logger/custom_rotating_file_sink.hxx +0 -0
  129. package/deps/couchbase-cxx-client/core/logger/logger.cxx +340 -0
  130. package/deps/couchbase-cxx-client/core/logger/logger.hxx +242 -0
  131. package/deps/couchbase-cxx-client/core/management/analytics_dataset.hxx +30 -0
  132. package/deps/couchbase-cxx-client/core/management/analytics_index.hxx +30 -0
  133. package/deps/couchbase-cxx-client/core/management/analytics_link.hxx +22 -0
  134. package/deps/couchbase-cxx-client/core/management/analytics_link_azure_blob_external.cxx +68 -0
  135. package/deps/couchbase-cxx-client/core/management/analytics_link_azure_blob_external.hxx +76 -0
  136. package/deps/couchbase-cxx-client/core/management/analytics_link_azure_blob_external_json.hxx +52 -0
  137. package/deps/couchbase-cxx-client/core/management/analytics_link_couchbase_remote.cxx +105 -0
  138. package/deps/couchbase-cxx-client/core/management/analytics_link_couchbase_remote.hxx +107 -0
  139. package/deps/couchbase-cxx-client/core/management/analytics_link_couchbase_remote_json.hxx +63 -0
  140. package/deps/couchbase-cxx-client/core/management/analytics_link_s3_external.cxx +58 -0
  141. package/deps/couchbase-cxx-client/core/management/analytics_link_s3_external.hxx +69 -0
  142. package/deps/couchbase-cxx-client/core/management/analytics_link_s3_external_json.hxx +47 -0
  143. package/deps/couchbase-cxx-client/core/management/bucket_settings.hxx +134 -0
  144. package/deps/couchbase-cxx-client/core/management/bucket_settings_json.hxx +123 -0
  145. package/deps/couchbase-cxx-client/core/management/design_document.hxx +41 -0
  146. package/deps/couchbase-cxx-client/core/management/eventing_function.hxx +188 -0
  147. package/deps/couchbase-cxx-client/core/management/eventing_function_json.hxx +212 -0
  148. package/deps/couchbase-cxx-client/core/management/eventing_status.hxx +84 -0
  149. package/deps/couchbase-cxx-client/core/management/eventing_status_json.hxx +77 -0
  150. package/deps/couchbase-cxx-client/core/management/query_index.hxx +39 -0
  151. package/deps/couchbase-cxx-client/core/management/rbac.hxx +77 -0
  152. package/deps/couchbase-cxx-client/core/management/rbac_fmt.hxx +49 -0
  153. package/deps/couchbase-cxx-client/core/management/rbac_json.hxx +179 -0
  154. package/deps/couchbase-cxx-client/core/management/search_index.hxx +38 -0
  155. package/deps/couchbase-cxx-client/core/management/search_index_json.hxx +58 -0
  156. package/deps/couchbase-cxx-client/core/meta/CMakeLists.txt +15 -0
  157. package/deps/couchbase-cxx-client/core/meta/version.cxx +190 -0
  158. package/deps/couchbase-cxx-client/core/meta/version.hxx +45 -0
  159. package/deps/couchbase-cxx-client/core/metrics/CMakeLists.txt +10 -0
  160. package/deps/couchbase-cxx-client/core/metrics/logging_meter.cxx +194 -0
  161. package/deps/couchbase-cxx-client/core/metrics/logging_meter.hxx +74 -0
  162. package/deps/couchbase-cxx-client/core/metrics/logging_meter_options.hxx +28 -0
  163. package/deps/couchbase-cxx-client/core/metrics/meter.hxx +52 -0
  164. package/deps/couchbase-cxx-client/core/metrics/noop_meter.hxx +47 -0
  165. package/deps/couchbase-cxx-client/core/operations/document_analytics.cxx +221 -0
  166. package/deps/couchbase-cxx-client/core/operations/document_analytics.hxx +113 -0
  167. package/deps/couchbase-cxx-client/core/operations/document_append.cxx +45 -0
  168. package/deps/couchbase-cxx-client/core/operations/document_append.hxx +78 -0
  169. package/deps/couchbase-cxx-client/core/operations/document_decrement.cxx +53 -0
  170. package/deps/couchbase-cxx-client/core/operations/document_decrement.hxx +81 -0
  171. package/deps/couchbase-cxx-client/core/operations/document_exists.cxx +50 -0
  172. package/deps/couchbase-cxx-client/core/operations/document_exists.hxx +72 -0
  173. package/deps/couchbase-cxx-client/core/operations/document_get.cxx +44 -0
  174. package/deps/couchbase-cxx-client/core/operations/document_get.hxx +62 -0
  175. package/deps/couchbase-cxx-client/core/operations/document_get_all_replicas.hxx +143 -0
  176. package/deps/couchbase-cxx-client/core/operations/document_get_and_lock.cxx +45 -0
  177. package/deps/couchbase-cxx-client/core/operations/document_get_and_lock.hxx +64 -0
  178. package/deps/couchbase-cxx-client/core/operations/document_get_and_touch.cxx +45 -0
  179. package/deps/couchbase-cxx-client/core/operations/document_get_and_touch.hxx +65 -0
  180. package/deps/couchbase-cxx-client/core/operations/document_get_any_replica.hxx +133 -0
  181. package/deps/couchbase-cxx-client/core/operations/document_get_projected.cxx +237 -0
  182. package/deps/couchbase-cxx-client/core/operations/document_get_projected.hxx +68 -0
  183. package/deps/couchbase-cxx-client/core/operations/document_increment.cxx +53 -0
  184. package/deps/couchbase-cxx-client/core/operations/document_increment.hxx +81 -0
  185. package/deps/couchbase-cxx-client/core/operations/document_insert.cxx +51 -0
  186. package/deps/couchbase-cxx-client/core/operations/document_insert.hxx +80 -0
  187. package/deps/couchbase-cxx-client/core/operations/document_lookup_in.cxx +97 -0
  188. package/deps/couchbase-cxx-client/core/operations/document_lookup_in.hxx +77 -0
  189. package/deps/couchbase-cxx-client/core/operations/document_mutate_in.cxx +117 -0
  190. package/deps/couchbase-cxx-client/core/operations/document_mutate_in.hxx +95 -0
  191. package/deps/couchbase-cxx-client/core/operations/document_prepend.cxx +45 -0
  192. package/deps/couchbase-cxx-client/core/operations/document_prepend.hxx +78 -0
  193. package/deps/couchbase-cxx-client/core/operations/document_query.cxx +385 -0
  194. package/deps/couchbase-cxx-client/core/operations/document_query.hxx +129 -0
  195. package/deps/couchbase-cxx-client/core/operations/document_remove.cxx +45 -0
  196. package/deps/couchbase-cxx-client/core/operations/document_remove.hxx +78 -0
  197. package/deps/couchbase-cxx-client/core/operations/document_replace.cxx +55 -0
  198. package/deps/couchbase-cxx-client/core/operations/document_replace.hxx +82 -0
  199. package/deps/couchbase-cxx-client/core/operations/document_search.cxx +312 -0
  200. package/deps/couchbase-cxx-client/core/operations/document_search.hxx +163 -0
  201. package/deps/couchbase-cxx-client/core/operations/document_touch.cxx +43 -0
  202. package/deps/couchbase-cxx-client/core/operations/document_touch.hxx +61 -0
  203. package/deps/couchbase-cxx-client/core/operations/document_unlock.cxx +43 -0
  204. package/deps/couchbase-cxx-client/core/operations/document_unlock.hxx +61 -0
  205. package/deps/couchbase-cxx-client/core/operations/document_upsert.cxx +54 -0
  206. package/deps/couchbase-cxx-client/core/operations/document_upsert.hxx +81 -0
  207. package/deps/couchbase-cxx-client/core/operations/document_view.cxx +197 -0
  208. package/deps/couchbase-cxx-client/core/operations/document_view.hxx +109 -0
  209. package/deps/couchbase-cxx-client/core/operations/http_noop.cxx +64 -0
  210. package/deps/couchbase-cxx-client/core/operations/http_noop.hxx +48 -0
  211. package/deps/couchbase-cxx-client/core/operations/management/CMakeLists.txt +79 -0
  212. package/deps/couchbase-cxx-client/core/operations/management/analytics.hxx +34 -0
  213. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.cxx +93 -0
  214. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.hxx +57 -0
  215. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.cxx +82 -0
  216. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.hxx +54 -0
  217. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_get_all.cxx +78 -0
  218. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_get_all.hxx +52 -0
  219. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.cxx +81 -0
  220. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.hxx +53 -0
  221. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.cxx +81 -0
  222. package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.hxx +53 -0
  223. package/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.cxx +69 -0
  224. package/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.hxx +52 -0
  225. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_create.cxx +105 -0
  226. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_create.hxx +56 -0
  227. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.cxx +89 -0
  228. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.hxx +55 -0
  229. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_get_all.cxx +79 -0
  230. package/deps/couchbase-cxx-client/core/operations/management/analytics_index_get_all.hxx +52 -0
  231. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.cxx +81 -0
  232. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.hxx +57 -0
  233. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_create.cxx +86 -0
  234. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_create.hxx +77 -0
  235. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.cxx +79 -0
  236. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.hxx +56 -0
  237. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.cxx +102 -0
  238. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.hxx +56 -0
  239. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.cxx +128 -0
  240. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.hxx +63 -0
  241. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_replace.cxx +86 -0
  242. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_replace.hxx +78 -0
  243. package/deps/couchbase-cxx-client/core/operations/management/analytics_link_utils.hxx +37 -0
  244. package/deps/couchbase-cxx-client/core/operations/management/analytics_problem.hxx +30 -0
  245. package/deps/couchbase-cxx-client/core/operations/management/bucket.hxx +25 -0
  246. package/deps/couchbase-cxx-client/core/operations/management/bucket_create.cxx +171 -0
  247. package/deps/couchbase-cxx-client/core/operations/management/bucket_create.hxx +52 -0
  248. package/deps/couchbase-cxx-client/core/operations/management/bucket_describe.cxx +66 -0
  249. package/deps/couchbase-cxx-client/core/operations/management/bucket_describe.hxx +61 -0
  250. package/deps/couchbase-cxx-client/core/operations/management/bucket_drop.cxx +51 -0
  251. package/deps/couchbase-cxx-client/core/operations/management/bucket_drop.hxx +49 -0
  252. package/deps/couchbase-cxx-client/core/operations/management/bucket_flush.cxx +58 -0
  253. package/deps/couchbase-cxx-client/core/operations/management/bucket_flush.hxx +49 -0
  254. package/deps/couchbase-cxx-client/core/operations/management/bucket_get.cxx +58 -0
  255. package/deps/couchbase-cxx-client/core/operations/management/bucket_get.hxx +51 -0
  256. package/deps/couchbase-cxx-client/core/operations/management/bucket_get_all.cxx +58 -0
  257. package/deps/couchbase-cxx-client/core/operations/management/bucket_get_all.hxx +49 -0
  258. package/deps/couchbase-cxx-client/core/operations/management/bucket_update.cxx +130 -0
  259. package/deps/couchbase-cxx-client/core/operations/management/bucket_update.hxx +52 -0
  260. package/deps/couchbase-cxx-client/core/operations/management/cluster_describe.cxx +89 -0
  261. package/deps/couchbase-cxx-client/core/operations/management/cluster_describe.hxx +72 -0
  262. package/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.cxx +43 -0
  263. package/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.hxx +48 -0
  264. package/deps/couchbase-cxx-client/core/operations/management/collection_create.cxx +82 -0
  265. package/deps/couchbase-cxx-client/core/operations/management/collection_create.hxx +53 -0
  266. package/deps/couchbase-cxx-client/core/operations/management/collection_drop.cxx +72 -0
  267. package/deps/couchbase-cxx-client/core/operations/management/collection_drop.hxx +52 -0
  268. package/deps/couchbase-cxx-client/core/operations/management/collections.hxx +25 -0
  269. package/deps/couchbase-cxx-client/core/operations/management/collections_manifest_get.cxx +40 -0
  270. package/deps/couchbase-cxx-client/core/operations/management/collections_manifest_get.hxx +53 -0
  271. package/deps/couchbase-cxx-client/core/operations/management/error_utils.cxx +267 -0
  272. package/deps/couchbase-cxx-client/core/operations/management/error_utils.hxx +49 -0
  273. package/deps/couchbase-cxx-client/core/operations/management/eventing.hxx +28 -0
  274. package/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.cxx +55 -0
  275. package/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.hxx +52 -0
  276. package/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.cxx +56 -0
  277. package/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.hxx +52 -0
  278. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_all_functions.cxx +63 -0
  279. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_all_functions.hxx +51 -0
  280. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.cxx +55 -0
  281. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.hxx +53 -0
  282. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_status.cxx +55 -0
  283. package/deps/couchbase-cxx-client/core/operations/management/eventing_get_status.hxx +53 -0
  284. package/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.cxx +55 -0
  285. package/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.hxx +52 -0
  286. package/deps/couchbase-cxx-client/core/operations/management/eventing_problem.hxx +31 -0
  287. package/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.cxx +55 -0
  288. package/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.hxx +52 -0
  289. package/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.cxx +55 -0
  290. package/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.hxx +52 -0
  291. package/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.cxx +340 -0
  292. package/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.hxx +52 -0
  293. package/deps/couchbase-cxx-client/core/operations/management/freeform.cxx +54 -0
  294. package/deps/couchbase-cxx-client/core/operations/management/freeform.hxx +55 -0
  295. package/deps/couchbase-cxx-client/core/operations/management/group_drop.cxx +50 -0
  296. package/deps/couchbase-cxx-client/core/operations/management/group_drop.hxx +49 -0
  297. package/deps/couchbase-cxx-client/core/operations/management/group_get.cxx +59 -0
  298. package/deps/couchbase-cxx-client/core/operations/management/group_get.hxx +50 -0
  299. package/deps/couchbase-cxx-client/core/operations/management/group_get_all.cxx +57 -0
  300. package/deps/couchbase-cxx-client/core/operations/management/group_get_all.hxx +49 -0
  301. package/deps/couchbase-cxx-client/core/operations/management/group_upsert.cxx +95 -0
  302. package/deps/couchbase-cxx-client/core/operations/management/group_upsert.hxx +51 -0
  303. package/deps/couchbase-cxx-client/core/operations/management/query.hxx +25 -0
  304. package/deps/couchbase-cxx-client/core/operations/management/query_index_build.cxx +93 -0
  305. package/deps/couchbase-cxx-client/core/operations/management/query_index_build.hxx +60 -0
  306. package/deps/couchbase-cxx-client/core/operations/management/query_index_build_deferred.hxx +107 -0
  307. package/deps/couchbase-cxx-client/core/operations/management/query_index_create.cxx +148 -0
  308. package/deps/couchbase-cxx-client/core/operations/management/query_index_create.hxx +65 -0
  309. package/deps/couchbase-cxx-client/core/operations/management/query_index_drop.cxx +128 -0
  310. package/deps/couchbase-cxx-client/core/operations/management/query_index_drop.hxx +61 -0
  311. package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.cxx +125 -0
  312. package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.hxx +54 -0
  313. package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.cxx +79 -0
  314. package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.hxx +55 -0
  315. package/deps/couchbase-cxx-client/core/operations/management/role_get_all.cxx +57 -0
  316. package/deps/couchbase-cxx-client/core/operations/management/role_get_all.hxx +49 -0
  317. package/deps/couchbase-cxx-client/core/operations/management/scope_create.cxx +74 -0
  318. package/deps/couchbase-cxx-client/core/operations/management/scope_create.hxx +51 -0
  319. package/deps/couchbase-cxx-client/core/operations/management/scope_drop.cxx +69 -0
  320. package/deps/couchbase-cxx-client/core/operations/management/scope_drop.hxx +51 -0
  321. package/deps/couchbase-cxx-client/core/operations/management/scope_get_all.cxx +61 -0
  322. package/deps/couchbase-cxx-client/core/operations/management/scope_get_all.hxx +51 -0
  323. package/deps/couchbase-cxx-client/core/operations/management/search.hxx +30 -0
  324. package/deps/couchbase-cxx-client/core/operations/management/search_get_stats.cxx +41 -0
  325. package/deps/couchbase-cxx-client/core/operations/management/search_get_stats.hxx +48 -0
  326. package/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.cxx +84 -0
  327. package/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.hxx +54 -0
  328. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.cxx +72 -0
  329. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.hxx +52 -0
  330. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.cxx +72 -0
  331. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.hxx +57 -0
  332. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.cxx +72 -0
  333. package/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.hxx +52 -0
  334. package/deps/couchbase-cxx-client/core/operations/management/search_index_drop.cxx +71 -0
  335. package/deps/couchbase-cxx-client/core/operations/management/search_index_drop.hxx +51 -0
  336. package/deps/couchbase-cxx-client/core/operations/management/search_index_get.cxx +74 -0
  337. package/deps/couchbase-cxx-client/core/operations/management/search_index_get.hxx +54 -0
  338. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.cxx +66 -0
  339. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.hxx +51 -0
  340. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.cxx +78 -0
  341. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.hxx +53 -0
  342. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.cxx +70 -0
  343. package/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.hxx +52 -0
  344. package/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.cxx +114 -0
  345. package/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.hxx +54 -0
  346. package/deps/couchbase-cxx-client/core/operations/management/user.hxx +28 -0
  347. package/deps/couchbase-cxx-client/core/operations/management/user_drop.cxx +51 -0
  348. package/deps/couchbase-cxx-client/core/operations/management/user_drop.hxx +51 -0
  349. package/deps/couchbase-cxx-client/core/operations/management/user_get.cxx +60 -0
  350. package/deps/couchbase-cxx-client/core/operations/management/user_get.hxx +52 -0
  351. package/deps/couchbase-cxx-client/core/operations/management/user_get_all.cxx +58 -0
  352. package/deps/couchbase-cxx-client/core/operations/management/user_get_all.hxx +51 -0
  353. package/deps/couchbase-cxx-client/core/operations/management/user_upsert.cxx +100 -0
  354. package/deps/couchbase-cxx-client/core/operations/management/user_upsert.hxx +52 -0
  355. package/deps/couchbase-cxx-client/core/operations/management/view.hxx +23 -0
  356. package/deps/couchbase-cxx-client/core/operations/management/view_index_drop.cxx +45 -0
  357. package/deps/couchbase-cxx-client/core/operations/management/view_index_drop.hxx +52 -0
  358. package/deps/couchbase-cxx-client/core/operations/management/view_index_get.cxx +73 -0
  359. package/deps/couchbase-cxx-client/core/operations/management/view_index_get.hxx +53 -0
  360. package/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.cxx +107 -0
  361. package/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.hxx +52 -0
  362. package/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.cxx +70 -0
  363. package/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.hxx +51 -0
  364. package/deps/couchbase-cxx-client/core/operations/mcbp_noop.cxx +38 -0
  365. package/deps/couchbase-cxx-client/core/operations/mcbp_noop.hxx +49 -0
  366. package/deps/couchbase-cxx-client/core/operations/operation_traits.hxx +31 -0
  367. package/deps/couchbase-cxx-client/core/operations.hxx +44 -0
  368. package/deps/couchbase-cxx-client/core/origin.hxx +195 -0
  369. package/deps/couchbase-cxx-client/core/platform/CMakeLists.txt +16 -0
  370. package/deps/couchbase-cxx-client/core/platform/backtrace.c +189 -0
  371. package/deps/couchbase-cxx-client/{couchbase → core}/platform/backtrace.h +0 -0
  372. package/deps/couchbase-cxx-client/core/platform/base64.cc +234 -0
  373. package/deps/couchbase-cxx-client/core/platform/base64.h +44 -0
  374. package/deps/couchbase-cxx-client/core/platform/dirutils.cc +123 -0
  375. package/deps/couchbase-cxx-client/core/platform/dirutils.h +43 -0
  376. package/deps/couchbase-cxx-client/core/platform/random.cc +120 -0
  377. package/deps/couchbase-cxx-client/core/platform/random.h +39 -0
  378. package/deps/couchbase-cxx-client/core/platform/string_hex.cc +101 -0
  379. package/deps/couchbase-cxx-client/core/platform/string_hex.h +50 -0
  380. package/deps/couchbase-cxx-client/core/platform/terminate_handler.cc +125 -0
  381. package/deps/couchbase-cxx-client/core/platform/terminate_handler.h +36 -0
  382. package/deps/couchbase-cxx-client/core/platform/uuid.cc +98 -0
  383. package/deps/couchbase-cxx-client/core/platform/uuid.h +56 -0
  384. package/deps/couchbase-cxx-client/core/protocol/client_opcode.hxx +359 -0
  385. package/deps/couchbase-cxx-client/core/protocol/client_opcode_fmt.hxx +316 -0
  386. package/deps/couchbase-cxx-client/core/protocol/client_request.cxx +38 -0
  387. package/deps/couchbase-cxx-client/core/protocol/client_request.hxx +168 -0
  388. package/deps/couchbase-cxx-client/core/protocol/client_response.cxx +75 -0
  389. package/deps/couchbase-cxx-client/core/protocol/client_response.hxx +210 -0
  390. package/deps/couchbase-cxx-client/core/protocol/cmd_append.cxx +74 -0
  391. package/deps/couchbase-cxx-client/core/protocol/cmd_append.hxx +107 -0
  392. package/deps/couchbase-cxx-client/core/protocol/cmd_cluster_map_change_notification.cxx +53 -0
  393. package/deps/couchbase-cxx-client/core/protocol/cmd_cluster_map_change_notification.hxx +57 -0
  394. package/deps/couchbase-cxx-client/core/protocol/cmd_decrement.cxx +96 -0
  395. package/deps/couchbase-cxx-client/core/protocol/cmd_decrement.hxx +130 -0
  396. package/deps/couchbase-cxx-client/core/protocol/cmd_get.cxx +59 -0
  397. package/deps/couchbase-cxx-client/core/protocol/cmd_get.hxx +96 -0
  398. package/deps/couchbase-cxx-client/core/protocol/cmd_get_and_lock.cxx +66 -0
  399. package/deps/couchbase-cxx-client/core/protocol/cmd_get_and_lock.hxx +112 -0
  400. package/deps/couchbase-cxx-client/core/protocol/cmd_get_and_touch.cxx +66 -0
  401. package/deps/couchbase-cxx-client/core/protocol/cmd_get_and_touch.hxx +112 -0
  402. package/deps/couchbase-cxx-client/core/protocol/cmd_get_cluster_config.cxx +85 -0
  403. package/deps/couchbase-cxx-client/core/protocol/cmd_get_cluster_config.hxx +89 -0
  404. package/deps/couchbase-cxx-client/core/protocol/cmd_get_collection_id.cxx +60 -0
  405. package/deps/couchbase-cxx-client/core/protocol/cmd_get_collection_id.hxx +95 -0
  406. package/deps/couchbase-cxx-client/core/protocol/cmd_get_collections_manifest.cxx +51 -0
  407. package/deps/couchbase-cxx-client/core/protocol/cmd_get_collections_manifest.hxx +84 -0
  408. package/deps/couchbase-cxx-client/core/protocol/cmd_get_error_map.cxx +61 -0
  409. package/deps/couchbase-cxx-client/core/protocol/cmd_get_error_map.hxx +103 -0
  410. package/deps/couchbase-cxx-client/core/protocol/cmd_get_meta.cxx +70 -0
  411. package/deps/couchbase-cxx-client/core/protocol/cmd_get_meta.hxx +117 -0
  412. package/deps/couchbase-cxx-client/core/protocol/cmd_get_replica.cxx +71 -0
  413. package/deps/couchbase-cxx-client/core/protocol/cmd_get_replica.hxx +88 -0
  414. package/deps/couchbase-cxx-client/core/protocol/cmd_hello.cxx +76 -0
  415. package/deps/couchbase-cxx-client/core/protocol/cmd_hello.hxx +136 -0
  416. package/deps/couchbase-cxx-client/core/protocol/cmd_increment.cxx +98 -0
  417. package/deps/couchbase-cxx-client/core/protocol/cmd_increment.hxx +130 -0
  418. package/deps/couchbase-cxx-client/core/protocol/cmd_info.hxx +29 -0
  419. package/deps/couchbase-cxx-client/core/protocol/cmd_insert.cxx +83 -0
  420. package/deps/couchbase-cxx-client/core/protocol/cmd_insert.hxx +124 -0
  421. package/deps/couchbase-cxx-client/core/protocol/cmd_lookup_in.cxx +108 -0
  422. package/deps/couchbase-cxx-client/core/protocol/cmd_lookup_in.hxx +139 -0
  423. package/deps/couchbase-cxx-client/core/protocol/cmd_mutate_in.cxx +163 -0
  424. package/deps/couchbase-cxx-client/core/protocol/cmd_mutate_in.hxx +216 -0
  425. package/deps/couchbase-cxx-client/core/protocol/cmd_noop.cxx +36 -0
  426. package/deps/couchbase-cxx-client/core/protocol/cmd_noop.hxx +75 -0
  427. package/deps/couchbase-cxx-client/core/protocol/cmd_observe_seqno.cxx +92 -0
  428. package/deps/couchbase-cxx-client/core/protocol/cmd_observe_seqno.hxx +132 -0
  429. package/deps/couchbase-cxx-client/core/protocol/cmd_prepend.cxx +73 -0
  430. package/deps/couchbase-cxx-client/core/protocol/cmd_prepend.hxx +103 -0
  431. package/deps/couchbase-cxx-client/core/protocol/cmd_remove.cxx +74 -0
  432. package/deps/couchbase-cxx-client/core/protocol/cmd_remove.hxx +94 -0
  433. package/deps/couchbase-cxx-client/core/protocol/cmd_replace.cxx +92 -0
  434. package/deps/couchbase-cxx-client/core/protocol/cmd_replace.hxx +131 -0
  435. package/deps/couchbase-cxx-client/core/protocol/cmd_sasl_auth.cxx +61 -0
  436. package/deps/couchbase-cxx-client/core/protocol/cmd_sasl_auth.hxx +91 -0
  437. package/deps/couchbase-cxx-client/core/protocol/cmd_sasl_list_mechs.cxx +53 -0
  438. package/deps/couchbase-cxx-client/core/protocol/cmd_sasl_list_mechs.hxx +82 -0
  439. package/deps/couchbase-cxx-client/core/protocol/cmd_sasl_step.cxx +61 -0
  440. package/deps/couchbase-cxx-client/core/protocol/cmd_sasl_step.hxx +91 -0
  441. package/deps/couchbase-cxx-client/core/protocol/cmd_select_bucket.cxx +45 -0
  442. package/deps/couchbase-cxx-client/core/protocol/cmd_select_bucket.hxx +79 -0
  443. package/deps/couchbase-cxx-client/core/protocol/cmd_touch.cxx +53 -0
  444. package/deps/couchbase-cxx-client/core/protocol/cmd_touch.hxx +84 -0
  445. package/deps/couchbase-cxx-client/core/protocol/cmd_unlock.cxx +44 -0
  446. package/deps/couchbase-cxx-client/core/protocol/cmd_unlock.hxx +81 -0
  447. package/deps/couchbase-cxx-client/core/protocol/cmd_upsert.cxx +92 -0
  448. package/deps/couchbase-cxx-client/core/protocol/cmd_upsert.hxx +126 -0
  449. package/deps/couchbase-cxx-client/core/protocol/datatype.hxx +48 -0
  450. package/deps/couchbase-cxx-client/core/protocol/enhanced_error_info.hxx +23 -0
  451. package/deps/couchbase-cxx-client/core/protocol/frame_info_id.hxx +142 -0
  452. package/deps/couchbase-cxx-client/core/protocol/frame_info_id_fmt.hxx +79 -0
  453. package/deps/couchbase-cxx-client/core/protocol/frame_info_utils.cxx +59 -0
  454. package/deps/couchbase-cxx-client/core/protocol/frame_info_utils.hxx +52 -0
  455. package/deps/couchbase-cxx-client/core/protocol/hello_feature.hxx +186 -0
  456. package/deps/couchbase-cxx-client/core/protocol/hello_feature_fmt.hxx +106 -0
  457. package/deps/couchbase-cxx-client/core/protocol/magic.hxx +53 -0
  458. package/deps/couchbase-cxx-client/core/protocol/magic_fmt.hxx +58 -0
  459. package/deps/couchbase-cxx-client/core/protocol/server_opcode.hxx +39 -0
  460. package/deps/couchbase-cxx-client/core/protocol/server_opcode_fmt.hxx +46 -0
  461. package/deps/couchbase-cxx-client/core/protocol/server_request.hxx +121 -0
  462. package/deps/couchbase-cxx-client/core/protocol/status.cxx +187 -0
  463. package/deps/couchbase-cxx-client/core/protocol/status.hxx +112 -0
  464. package/deps/couchbase-cxx-client/core/query_profile_mode.hxx +27 -0
  465. package/deps/couchbase-cxx-client/core/query_scan_consistency.hxx +23 -0
  466. package/deps/couchbase-cxx-client/core/sasl/CMakeLists.txt +16 -0
  467. package/deps/couchbase-cxx-client/core/sasl/client.cc +50 -0
  468. package/deps/couchbase-cxx-client/core/sasl/client.h +127 -0
  469. package/deps/couchbase-cxx-client/core/sasl/context.cc +34 -0
  470. package/deps/couchbase-cxx-client/core/sasl/context.h +52 -0
  471. package/deps/couchbase-cxx-client/core/sasl/error.h +28 -0
  472. package/deps/couchbase-cxx-client/core/sasl/error_fmt.h +70 -0
  473. package/deps/couchbase-cxx-client/core/sasl/mechanism.cc +45 -0
  474. package/deps/couchbase-cxx-client/core/sasl/mechanism.h +52 -0
  475. package/deps/couchbase-cxx-client/core/sasl/plain/plain.cc +39 -0
  476. package/deps/couchbase-cxx-client/core/sasl/plain/plain.h +54 -0
  477. package/deps/couchbase-cxx-client/core/sasl/scram-sha/scram-sha.cc +372 -0
  478. package/deps/couchbase-cxx-client/core/sasl/scram-sha/scram-sha.h +184 -0
  479. package/deps/couchbase-cxx-client/core/sasl/scram-sha/stringutils.cc +82 -0
  480. package/deps/couchbase-cxx-client/core/sasl/scram-sha/stringutils.h +48 -0
  481. package/deps/couchbase-cxx-client/core/search_highlight_style.hxx +23 -0
  482. package/deps/couchbase-cxx-client/core/search_scan_consistency.hxx +23 -0
  483. package/deps/couchbase-cxx-client/core/service_type.hxx +31 -0
  484. package/deps/couchbase-cxx-client/core/service_type_fmt.hxx +61 -0
  485. package/deps/couchbase-cxx-client/core/timeout_defaults.hxx +43 -0
  486. package/deps/couchbase-cxx-client/core/topology/capabilities.hxx +43 -0
  487. package/deps/couchbase-cxx-client/core/topology/capabilities_fmt.hxx +106 -0
  488. package/deps/couchbase-cxx-client/core/topology/collections_manifest.hxx +43 -0
  489. package/deps/couchbase-cxx-client/core/topology/collections_manifest_fmt.hxx +52 -0
  490. package/deps/couchbase-cxx-client/core/topology/collections_manifest_json.hxx +53 -0
  491. package/deps/couchbase-cxx-client/core/topology/configuration.cxx +223 -0
  492. package/deps/couchbase-cxx-client/core/topology/configuration.hxx +127 -0
  493. package/deps/couchbase-cxx-client/core/topology/configuration_fmt.hxx +166 -0
  494. package/deps/couchbase-cxx-client/core/topology/configuration_json.hxx +259 -0
  495. package/deps/couchbase-cxx-client/core/topology/error_map.hxx +35 -0
  496. package/deps/couchbase-cxx-client/core/topology/error_map_fmt.hxx +94 -0
  497. package/deps/couchbase-cxx-client/core/topology/error_map_json.hxx +89 -0
  498. package/deps/couchbase-cxx-client/core/tracing/CMakeLists.txt +9 -0
  499. package/deps/couchbase-cxx-client/core/tracing/constants.hxx +274 -0
  500. package/deps/couchbase-cxx-client/core/tracing/noop_tracer.hxx +55 -0
  501. package/deps/couchbase-cxx-client/core/tracing/request_tracer.hxx +79 -0
  502. package/deps/couchbase-cxx-client/core/tracing/threshold_logging_options.hxx +68 -0
  503. package/deps/couchbase-cxx-client/core/tracing/threshold_logging_tracer.cxx +422 -0
  504. package/deps/couchbase-cxx-client/core/tracing/threshold_logging_tracer.hxx +49 -0
  505. package/deps/couchbase-cxx-client/core/utils/binary.cxx +27 -0
  506. package/deps/couchbase-cxx-client/core/utils/binary.hxx +57 -0
  507. package/deps/couchbase-cxx-client/core/utils/byteswap.hxx +49 -0
  508. package/deps/couchbase-cxx-client/core/utils/connection_string.cxx +420 -0
  509. package/deps/couchbase-cxx-client/core/utils/connection_string.hxx +76 -0
  510. package/deps/couchbase-cxx-client/core/utils/crc32.hxx +49 -0
  511. package/deps/couchbase-cxx-client/core/utils/duration_parser.cxx +193 -0
  512. package/deps/couchbase-cxx-client/core/utils/duration_parser.hxx +45 -0
  513. package/deps/couchbase-cxx-client/core/utils/join_strings.hxx +65 -0
  514. package/deps/couchbase-cxx-client/core/utils/json.cxx +286 -0
  515. package/deps/couchbase-cxx-client/core/utils/json.hxx +43 -0
  516. package/deps/couchbase-cxx-client/core/utils/json_stream_control.hxx +32 -0
  517. package/deps/couchbase-cxx-client/core/utils/json_streaming_lexer.cxx +398 -0
  518. package/deps/couchbase-cxx-client/core/utils/json_streaming_lexer.hxx +59 -0
  519. package/deps/couchbase-cxx-client/core/utils/movable_function.hxx +110 -0
  520. package/deps/couchbase-cxx-client/core/utils/mutation_token.cxx +33 -0
  521. package/deps/couchbase-cxx-client/core/utils/mutation_token.hxx +29 -0
  522. package/deps/couchbase-cxx-client/core/utils/name_codec.hxx +41 -0
  523. package/deps/couchbase-cxx-client/core/utils/unsigned_leb128.hxx +181 -0
  524. package/deps/couchbase-cxx-client/core/utils/url_codec.cxx +404 -0
  525. package/deps/couchbase-cxx-client/core/utils/url_codec.hxx +72 -0
  526. package/deps/couchbase-cxx-client/core/view_on_error.hxx +27 -0
  527. package/deps/couchbase-cxx-client/core/view_scan_consistency.hxx +27 -0
  528. package/deps/couchbase-cxx-client/core/view_sort_order.hxx +23 -0
  529. package/deps/couchbase-cxx-client/couchbase/append_options.hxx +123 -0
  530. package/deps/couchbase-cxx-client/couchbase/binary_collection.hxx +327 -0
  531. package/deps/couchbase-cxx-client/couchbase/bucket.hxx +55 -494
  532. package/deps/couchbase-cxx-client/couchbase/build_query_index_options.hxx +132 -0
  533. package/deps/couchbase-cxx-client/couchbase/cas.hxx +74 -8
  534. package/deps/couchbase-cxx-client/couchbase/cluster.hxx +49 -405
  535. package/deps/couchbase-cxx-client/couchbase/codec/codec_flags.hxx +145 -0
  536. package/deps/couchbase-cxx-client/couchbase/codec/encoded_value.hxx +31 -0
  537. package/deps/couchbase-cxx-client/couchbase/codec/json_transcoder.hxx +87 -0
  538. package/deps/couchbase-cxx-client/couchbase/codec/raw_binary_transcoder.hxx +53 -0
  539. package/deps/couchbase-cxx-client/couchbase/codec/transcoder_traits.hxx +31 -0
  540. package/deps/couchbase-cxx-client/couchbase/collection.hxx +847 -0
  541. package/deps/couchbase-cxx-client/couchbase/common_durability_options.hxx +108 -0
  542. package/deps/couchbase-cxx-client/couchbase/common_options.hxx +92 -0
  543. package/deps/couchbase-cxx-client/couchbase/counter_result.hxx +73 -0
  544. package/deps/couchbase-cxx-client/couchbase/decrement_options.hxx +165 -0
  545. package/deps/couchbase-cxx-client/couchbase/durability_level.hxx +64 -0
  546. package/deps/couchbase-cxx-client/couchbase/error_codes.hxx +1104 -0
  547. package/deps/couchbase-cxx-client/couchbase/error_context.hxx +173 -0
  548. package/deps/couchbase-cxx-client/couchbase/expiry.hxx +55 -0
  549. package/deps/couchbase-cxx-client/couchbase/fmt/cas.hxx +37 -0
  550. package/deps/couchbase-cxx-client/couchbase/fmt/durability_level.hxx +52 -0
  551. package/deps/couchbase-cxx-client/couchbase/fmt/key_value_extended_error_info.hxx +46 -0
  552. package/deps/couchbase-cxx-client/couchbase/fmt/key_value_status_code.hxx +242 -0
  553. package/deps/couchbase-cxx-client/couchbase/fmt/mutation_token.hxx +38 -0
  554. package/deps/couchbase-cxx-client/couchbase/fmt/retry_reason.hxx +103 -0
  555. package/deps/couchbase-cxx-client/couchbase/get_all_replicas_options.hxx +102 -0
  556. package/deps/couchbase-cxx-client/couchbase/get_and_touch_options.hxx +94 -0
  557. package/deps/couchbase-cxx-client/couchbase/get_any_replica_options.hxx +93 -0
  558. package/deps/couchbase-cxx-client/couchbase/get_options.hxx +116 -0
  559. package/deps/couchbase-cxx-client/couchbase/get_replica_result.hxx +117 -0
  560. package/deps/couchbase-cxx-client/couchbase/get_result.hxx +126 -0
  561. package/deps/couchbase-cxx-client/couchbase/increment_options.hxx +165 -0
  562. package/deps/couchbase-cxx-client/couchbase/insert_options.hxx +135 -0
  563. package/deps/couchbase-cxx-client/couchbase/key_value_error_context.hxx +224 -0
  564. package/deps/couchbase-cxx-client/couchbase/key_value_error_map_attribute.hxx +124 -0
  565. package/deps/couchbase-cxx-client/couchbase/key_value_error_map_info.hxx +138 -0
  566. package/deps/couchbase-cxx-client/couchbase/key_value_extended_error_info.hxx +86 -0
  567. package/deps/couchbase-cxx-client/couchbase/key_value_status_code.hxx +93 -0
  568. package/deps/couchbase-cxx-client/couchbase/lookup_in_options.hxx +117 -0
  569. package/deps/couchbase-cxx-client/couchbase/lookup_in_result.hxx +254 -0
  570. package/deps/couchbase-cxx-client/couchbase/lookup_in_specs.hxx +146 -0
  571. package/deps/couchbase-cxx-client/couchbase/manager_error_context.hxx +136 -0
  572. package/deps/couchbase-cxx-client/couchbase/metrics/otel_meter.hxx +131 -0
  573. package/deps/couchbase-cxx-client/couchbase/mutate_in_options.hxx +234 -0
  574. package/deps/couchbase-cxx-client/couchbase/mutate_in_result.hxx +173 -0
  575. package/deps/couchbase-cxx-client/couchbase/mutate_in_specs.hxx +528 -0
  576. package/deps/couchbase-cxx-client/couchbase/mutation_result.hxx +73 -0
  577. package/deps/couchbase-cxx-client/couchbase/mutation_token.hxx +93 -6
  578. package/deps/couchbase-cxx-client/couchbase/persist_to.hxx +73 -0
  579. package/deps/couchbase-cxx-client/couchbase/prepend_options.hxx +123 -0
  580. package/deps/couchbase-cxx-client/couchbase/query_index_manager.hxx +82 -0
  581. package/deps/couchbase-cxx-client/couchbase/remove_options.hxx +122 -0
  582. package/deps/couchbase-cxx-client/couchbase/replace_options.hxx +183 -0
  583. package/deps/couchbase-cxx-client/couchbase/replicate_to.hxx +55 -0
  584. package/deps/couchbase-cxx-client/couchbase/result.hxx +66 -0
  585. package/deps/couchbase-cxx-client/couchbase/retry_reason.hxx +101 -0
  586. package/deps/couchbase-cxx-client/couchbase/scope.hxx +101 -0
  587. package/deps/couchbase-cxx-client/couchbase/store_semantics.hxx +63 -0
  588. package/deps/couchbase-cxx-client/couchbase/subdoc/array_add_unique.hxx +105 -0
  589. package/deps/couchbase-cxx-client/couchbase/subdoc/array_append.hxx +89 -0
  590. package/deps/couchbase-cxx-client/couchbase/subdoc/array_insert.hxx +90 -0
  591. package/deps/couchbase-cxx-client/couchbase/subdoc/array_prepend.hxx +90 -0
  592. package/deps/couchbase-cxx-client/couchbase/subdoc/count.hxx +70 -0
  593. package/deps/couchbase-cxx-client/couchbase/subdoc/counter.hxx +88 -0
  594. package/deps/couchbase-cxx-client/couchbase/subdoc/exists.hxx +70 -0
  595. package/deps/couchbase-cxx-client/couchbase/subdoc/fwd/command.hxx +25 -0
  596. package/deps/couchbase-cxx-client/couchbase/subdoc/fwd/command_bundle.hxx +25 -0
  597. package/deps/couchbase-cxx-client/couchbase/subdoc/get.hxx +78 -0
  598. package/deps/couchbase-cxx-client/couchbase/subdoc/insert.hxx +105 -0
  599. package/deps/couchbase-cxx-client/couchbase/subdoc/lookup_in_macro.hxx +65 -0
  600. package/deps/couchbase-cxx-client/couchbase/subdoc/mutate_in_macro.hxx +54 -0
  601. package/deps/couchbase-cxx-client/couchbase/subdoc/remove.hxx +70 -0
  602. package/deps/couchbase-cxx-client/couchbase/subdoc/replace.hxx +89 -0
  603. package/deps/couchbase-cxx-client/couchbase/subdoc/upsert.hxx +105 -0
  604. package/deps/couchbase-cxx-client/couchbase/subdocument_error_context.hxx +144 -0
  605. package/deps/couchbase-cxx-client/couchbase/touch_options.hxx +94 -0
  606. package/deps/couchbase-cxx-client/couchbase/tracing/otel_tracer.hxx +85 -0
  607. package/deps/couchbase-cxx-client/couchbase/upsert_options.hxx +157 -0
  608. package/deps/couchbase-cxx-client/docs/Doxyfile.in +2663 -0
  609. package/deps/couchbase-cxx-client/docs/doxygen-awesome.css +2137 -0
  610. package/deps/couchbase-cxx-client/docs/mainpage.hxx +35 -0
  611. package/deps/couchbase-cxx-client/docs/stability.hxx +68 -0
  612. package/deps/couchbase-cxx-client/test/CMakeLists.txt +6 -0
  613. package/deps/couchbase-cxx-client/test/benchmark_integration_get.cxx +5 -6
  614. package/deps/couchbase-cxx-client/test/profile.hxx +62 -0
  615. package/deps/couchbase-cxx-client/test/test_helper.hxx +3 -0
  616. package/deps/couchbase-cxx-client/test/test_helper_integration.hxx +1 -1
  617. package/deps/couchbase-cxx-client/test/test_integration_analytics.cxx +64 -63
  618. package/deps/couchbase-cxx-client/test/test_integration_arithmetic.cxx +119 -20
  619. package/deps/couchbase-cxx-client/test/test_integration_binary_operations.cxx +26 -38
  620. package/deps/couchbase-cxx-client/test/test_integration_collections.cxx +39 -39
  621. package/deps/couchbase-cxx-client/test/test_integration_connect.cxx +19 -19
  622. package/deps/couchbase-cxx-client/test/test_integration_crud.cxx +197 -182
  623. package/deps/couchbase-cxx-client/test/test_integration_diagnostics.cxx +75 -76
  624. package/deps/couchbase-cxx-client/test/test_integration_durability.cxx +171 -26
  625. package/deps/couchbase-cxx-client/test/test_integration_management.cxx +632 -573
  626. package/deps/couchbase-cxx-client/test/test_integration_meter.cxx +180 -0
  627. package/deps/couchbase-cxx-client/test/test_integration_query.cxx +114 -71
  628. package/deps/couchbase-cxx-client/test/test_integration_read_replica.cxx +232 -0
  629. package/deps/couchbase-cxx-client/test/test_integration_subdoc.cxx +336 -297
  630. package/deps/couchbase-cxx-client/test/test_integration_tracer.cxx +304 -0
  631. package/deps/couchbase-cxx-client/test/test_integration_transcoders.cxx +574 -0
  632. package/deps/couchbase-cxx-client/test/test_unit_config_profiles.cxx +132 -0
  633. package/deps/couchbase-cxx-client/test/test_unit_connection_string.cxx +166 -165
  634. package/deps/couchbase-cxx-client/test/test_unit_json_streaming_lexer.cxx +19 -18
  635. package/deps/couchbase-cxx-client/test/test_unit_json_transcoder.cxx +210 -0
  636. package/deps/couchbase-cxx-client/test/test_unit_jsonsl.cxx +1 -1
  637. package/deps/couchbase-cxx-client/test/test_unit_utils.cxx +23 -21
  638. package/deps/couchbase-cxx-client/test/tools/tool_kv_loader.cxx +31 -27
  639. package/deps/couchbase-cxx-client/test/utils/CMakeLists.txt +1 -0
  640. package/deps/couchbase-cxx-client/test/utils/binary.cxx +27 -0
  641. package/deps/couchbase-cxx-client/test/utils/binary.hxx +27 -0
  642. package/deps/couchbase-cxx-client/test/utils/integration_shortcuts.cxx +6 -6
  643. package/deps/couchbase-cxx-client/test/utils/integration_shortcuts.hxx +7 -8
  644. package/deps/couchbase-cxx-client/test/utils/integration_test_guard.cxx +27 -12
  645. package/deps/couchbase-cxx-client/test/utils/integration_test_guard.hxx +16 -15
  646. package/deps/couchbase-cxx-client/test/utils/logger.cxx +5 -3
  647. package/deps/couchbase-cxx-client/test/utils/logger.hxx +1 -1
  648. package/deps/couchbase-cxx-client/test/utils/server_version.hxx +1 -1
  649. package/deps/couchbase-cxx-client/test/utils/test_context.hxx +3 -3
  650. package/deps/couchbase-cxx-client/test/utils/wait_until.cxx +4 -4
  651. package/deps/couchbase-cxx-client/test/utils/wait_until.hxx +5 -5
  652. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/.github/workflows/tests.yml +1 -1
  653. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/.idea/misc.xml +1 -0
  654. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/CMakeLists.txt +208 -21
  655. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/CODE_OF_CONDUCT.md +4 -0
  656. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/CONTRIBUTING.md +35 -0
  657. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/bin/build-tests +7 -0
  658. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/bin/build-tests.rb +1 -0
  659. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/bin/run-tests +6 -0
  660. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/cmake/Documentation.cmake +35 -0
  661. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/analytics_scan_consistency.hxx +26 -0
  662. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/bucket.hxx +553 -0
  663. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/capella_ca.hxx +43 -0
  664. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/cluster.cxx +124 -0
  665. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/cluster.hxx +476 -0
  666. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/cluster_options.cxx +45 -0
  667. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/cluster_options.hxx +82 -0
  668. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/crypto/CMakeLists.txt +12 -0
  669. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/crypto/cbcrypto.cc +897 -0
  670. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/crypto/cbcrypto.h +88 -0
  671. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/design_document_namespace.hxx +26 -0
  672. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/design_document_namespace_fmt.hxx +47 -0
  673. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/diagnostics.hxx +97 -0
  674. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/diagnostics_fmt.hxx +113 -0
  675. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/diagnostics_json.hxx +100 -0
  676. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/document_id.cxx +102 -0
  677. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/document_id.hxx +119 -0
  678. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/document_id_fmt.hxx +37 -0
  679. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/analytics.hxx +51 -0
  680. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/http.hxx +47 -0
  681. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/key_value.cxx +58 -0
  682. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/key_value.hxx +83 -0
  683. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/query.hxx +51 -0
  684. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/search.hxx +50 -0
  685. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/error_context/view.hxx +51 -0
  686. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/analytics_error_category.cxx +62 -0
  687. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/append.cxx +84 -0
  688. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/build_deferred_query_indexes.cxx +81 -0
  689. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/common_error_category.cxx +87 -0
  690. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/decrement.cxx +87 -0
  691. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/expiry.cxx +99 -0
  692. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/field_level_encryption_error_category.cxx +63 -0
  693. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get.cxx +66 -0
  694. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_all_replicas.cxx +139 -0
  695. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_all_replicas.hxx +79 -0
  696. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_and_touch.cxx +48 -0
  697. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_any_replica.cxx +134 -0
  698. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_any_replica.hxx +76 -0
  699. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_replica.cxx +44 -0
  700. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/get_replica.hxx +52 -0
  701. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/increment.cxx +87 -0
  702. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/insert.cxx +89 -0
  703. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/key_value_error_category.cxx +99 -0
  704. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/lookup_in.cxx +67 -0
  705. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/management_error_category.cxx +75 -0
  706. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/mutate_in.cxx +125 -0
  707. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/network_error_category.cxx +59 -0
  708. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/observe_poll.cxx +355 -0
  709. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/observe_poll.hxx +48 -0
  710. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/observe_seqno.cxx +47 -0
  711. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/observe_seqno.hxx +63 -0
  712. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/prepend.cxx +84 -0
  713. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/query_error_category.cxx +55 -0
  714. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/remove.cxx +83 -0
  715. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/replace.cxx +93 -0
  716. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/search_error_category.cxx +51 -0
  717. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/streaming_json_lexter_error_category.cxx +102 -0
  718. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/array_add_unique.cxx +36 -0
  719. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/array_append.cxx +37 -0
  720. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/array_insert.cxx +37 -0
  721. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/array_prepend.cxx +37 -0
  722. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/command.hxx +41 -0
  723. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/command_bundle.hxx +42 -0
  724. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/count.cxx +36 -0
  725. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/counter.cxx +37 -0
  726. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/exists.cxx +36 -0
  727. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/get.cxx +36 -0
  728. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/insert.cxx +36 -0
  729. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/join_values.cxx +56 -0
  730. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/join_values.hxx +27 -0
  731. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/lookup_in_macro.cxx +109 -0
  732. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/lookup_in_specs.cxx +42 -0
  733. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/mutate_in_macro.cxx +76 -0
  734. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/mutate_in_specs.cxx +42 -0
  735. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/opcode.hxx +47 -0
  736. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/path_flags.hxx +77 -0
  737. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/remove.cxx +36 -0
  738. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/replace.cxx +36 -0
  739. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/subdoc/upsert.cxx +36 -0
  740. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/touch.cxx +48 -0
  741. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/upsert.cxx +91 -0
  742. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/view_error_category.cxx +50 -0
  743. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/impl/with_legacy_durability.hxx +65 -0
  744. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/CMakeLists.txt +12 -0
  745. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/dns_client.hxx +218 -0
  746. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/dns_codec.hxx +206 -0
  747. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/dns_config.hxx +115 -0
  748. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/dns_message.hxx +555 -0
  749. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_command.hxx +178 -0
  750. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_context.hxx +40 -0
  751. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_message.hxx +116 -0
  752. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_parser.cxx +141 -0
  753. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_parser.hxx +55 -0
  754. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_session.hxx +551 -0
  755. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_session_manager.hxx +383 -0
  756. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/http_traits.hxx +38 -0
  757. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/ip_protocol.hxx +28 -0
  758. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_command.hxx +305 -0
  759. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_context.hxx +39 -0
  760. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_message.cxx +39 -0
  761. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_message.hxx +55 -0
  762. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_parser.cxx +88 -0
  763. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_parser.hxx +45 -0
  764. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_session.hxx +1336 -0
  765. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/mcbp_traits.hxx +38 -0
  766. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/query_cache.hxx +71 -0
  767. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/retry_action.hxx +30 -0
  768. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/retry_context.hxx +38 -0
  769. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/retry_orchestrator.hxx +112 -0
  770. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/retry_reason.hxx +86 -0
  771. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/retry_strategy.hxx +152 -0
  772. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/io/streams.hxx +253 -0
  773. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/json_string.hxx +48 -0
  774. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/logger/CMakeLists.txt +9 -0
  775. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/logger/configuration.hxx +57 -0
  776. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/logger/custom_rotating_file_sink.cxx +157 -0
  777. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/{couchbase → core}/logger/custom_rotating_file_sink.hxx +0 -0
  778. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/logger/logger.cxx +340 -0
  779. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/logger/logger.hxx +242 -0
  780. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_dataset.hxx +30 -0
  781. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_index.hxx +30 -0
  782. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link.hxx +22 -0
  783. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_azure_blob_external.cxx +68 -0
  784. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_azure_blob_external.hxx +76 -0
  785. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_azure_blob_external_json.hxx +52 -0
  786. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_couchbase_remote.cxx +105 -0
  787. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_couchbase_remote.hxx +107 -0
  788. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_couchbase_remote_json.hxx +63 -0
  789. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_s3_external.cxx +58 -0
  790. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_s3_external.hxx +69 -0
  791. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/analytics_link_s3_external_json.hxx +47 -0
  792. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/bucket_settings.hxx +134 -0
  793. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/bucket_settings_json.hxx +123 -0
  794. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/design_document.hxx +41 -0
  795. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/eventing_function.hxx +188 -0
  796. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/eventing_function_json.hxx +212 -0
  797. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/eventing_status.hxx +84 -0
  798. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/eventing_status_json.hxx +77 -0
  799. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/query_index.hxx +39 -0
  800. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/rbac.hxx +77 -0
  801. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/rbac_fmt.hxx +49 -0
  802. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/rbac_json.hxx +179 -0
  803. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/search_index.hxx +38 -0
  804. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/management/search_index_json.hxx +58 -0
  805. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/meta/CMakeLists.txt +15 -0
  806. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/meta/version.cxx +190 -0
  807. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/meta/version.hxx +45 -0
  808. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/metrics/CMakeLists.txt +10 -0
  809. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/metrics/logging_meter.cxx +194 -0
  810. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/metrics/logging_meter.hxx +74 -0
  811. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/metrics/logging_meter_options.hxx +28 -0
  812. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/metrics/meter.hxx +52 -0
  813. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/metrics/noop_meter.hxx +47 -0
  814. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_analytics.cxx +221 -0
  815. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_analytics.hxx +113 -0
  816. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_append.cxx +45 -0
  817. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_append.hxx +78 -0
  818. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_decrement.cxx +53 -0
  819. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_decrement.hxx +81 -0
  820. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_exists.cxx +50 -0
  821. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_exists.hxx +72 -0
  822. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get.cxx +44 -0
  823. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get.hxx +62 -0
  824. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_all_replicas.hxx +143 -0
  825. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_and_lock.cxx +45 -0
  826. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_and_lock.hxx +64 -0
  827. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_and_touch.cxx +45 -0
  828. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_and_touch.hxx +65 -0
  829. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_any_replica.hxx +133 -0
  830. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_projected.cxx +237 -0
  831. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_get_projected.hxx +68 -0
  832. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_increment.cxx +53 -0
  833. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_increment.hxx +81 -0
  834. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_insert.cxx +51 -0
  835. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_insert.hxx +80 -0
  836. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_lookup_in.cxx +97 -0
  837. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_lookup_in.hxx +77 -0
  838. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_mutate_in.cxx +117 -0
  839. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_mutate_in.hxx +95 -0
  840. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_prepend.cxx +45 -0
  841. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_prepend.hxx +78 -0
  842. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_query.cxx +385 -0
  843. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_query.hxx +129 -0
  844. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_remove.cxx +45 -0
  845. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_remove.hxx +78 -0
  846. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_replace.cxx +55 -0
  847. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_replace.hxx +82 -0
  848. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_search.cxx +312 -0
  849. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_search.hxx +163 -0
  850. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_touch.cxx +43 -0
  851. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_touch.hxx +61 -0
  852. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_unlock.cxx +43 -0
  853. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_unlock.hxx +61 -0
  854. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_upsert.cxx +54 -0
  855. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_upsert.hxx +81 -0
  856. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_view.cxx +197 -0
  857. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/document_view.hxx +109 -0
  858. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/http_noop.cxx +64 -0
  859. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/http_noop.hxx +48 -0
  860. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/CMakeLists.txt +79 -0
  861. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics.hxx +34 -0
  862. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.cxx +93 -0
  863. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.hxx +57 -0
  864. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.cxx +82 -0
  865. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.hxx +54 -0
  866. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_get_all.cxx +78 -0
  867. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_get_all.hxx +52 -0
  868. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.cxx +81 -0
  869. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.hxx +53 -0
  870. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.cxx +81 -0
  871. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.hxx +53 -0
  872. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.cxx +69 -0
  873. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.hxx +52 -0
  874. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_index_create.cxx +105 -0
  875. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_index_create.hxx +56 -0
  876. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.cxx +89 -0
  877. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.hxx +55 -0
  878. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_index_get_all.cxx +79 -0
  879. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_index_get_all.hxx +52 -0
  880. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.cxx +81 -0
  881. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.hxx +57 -0
  882. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_create.cxx +86 -0
  883. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_create.hxx +77 -0
  884. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.cxx +79 -0
  885. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.hxx +56 -0
  886. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.cxx +102 -0
  887. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.hxx +56 -0
  888. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.cxx +128 -0
  889. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.hxx +63 -0
  890. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_replace.cxx +86 -0
  891. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_replace.hxx +78 -0
  892. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_link_utils.hxx +37 -0
  893. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/analytics_problem.hxx +30 -0
  894. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket.hxx +25 -0
  895. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_create.cxx +171 -0
  896. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_create.hxx +52 -0
  897. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_describe.cxx +66 -0
  898. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_describe.hxx +61 -0
  899. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_drop.cxx +51 -0
  900. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_drop.hxx +49 -0
  901. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_flush.cxx +58 -0
  902. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_flush.hxx +49 -0
  903. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_get.cxx +58 -0
  904. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_get.hxx +51 -0
  905. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_get_all.cxx +58 -0
  906. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_get_all.hxx +49 -0
  907. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_update.cxx +130 -0
  908. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/bucket_update.hxx +52 -0
  909. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/cluster_describe.cxx +89 -0
  910. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/cluster_describe.hxx +72 -0
  911. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.cxx +43 -0
  912. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.hxx +48 -0
  913. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collection_create.cxx +82 -0
  914. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collection_create.hxx +53 -0
  915. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collection_drop.cxx +72 -0
  916. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collection_drop.hxx +52 -0
  917. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collections.hxx +25 -0
  918. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collections_manifest_get.cxx +40 -0
  919. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/collections_manifest_get.hxx +53 -0
  920. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/error_utils.cxx +267 -0
  921. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/error_utils.hxx +49 -0
  922. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing.hxx +28 -0
  923. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.cxx +55 -0
  924. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.hxx +52 -0
  925. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.cxx +56 -0
  926. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.hxx +52 -0
  927. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_get_all_functions.cxx +63 -0
  928. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_get_all_functions.hxx +51 -0
  929. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.cxx +55 -0
  930. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.hxx +53 -0
  931. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_get_status.cxx +55 -0
  932. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_get_status.hxx +53 -0
  933. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.cxx +55 -0
  934. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.hxx +52 -0
  935. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_problem.hxx +31 -0
  936. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.cxx +55 -0
  937. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.hxx +52 -0
  938. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.cxx +55 -0
  939. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.hxx +52 -0
  940. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.cxx +340 -0
  941. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.hxx +52 -0
  942. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/freeform.cxx +54 -0
  943. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/freeform.hxx +55 -0
  944. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_drop.cxx +50 -0
  945. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_drop.hxx +49 -0
  946. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_get.cxx +59 -0
  947. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_get.hxx +50 -0
  948. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_get_all.cxx +57 -0
  949. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_get_all.hxx +49 -0
  950. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_upsert.cxx +95 -0
  951. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/group_upsert.hxx +51 -0
  952. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query.hxx +24 -0
  953. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_build.cxx +93 -0
  954. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_build.hxx +60 -0
  955. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_create.cxx +148 -0
  956. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_create.hxx +65 -0
  957. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_drop.cxx +128 -0
  958. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_drop.hxx +61 -0
  959. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.cxx +125 -0
  960. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.hxx +54 -0
  961. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.cxx +79 -0
  962. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.hxx +55 -0
  963. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/role_get_all.cxx +57 -0
  964. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/role_get_all.hxx +49 -0
  965. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/scope_create.cxx +74 -0
  966. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/scope_create.hxx +51 -0
  967. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/scope_drop.cxx +69 -0
  968. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/scope_drop.hxx +51 -0
  969. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/scope_get_all.cxx +61 -0
  970. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/scope_get_all.hxx +51 -0
  971. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search.hxx +30 -0
  972. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_get_stats.cxx +41 -0
  973. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_get_stats.hxx +48 -0
  974. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.cxx +84 -0
  975. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.hxx +54 -0
  976. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.cxx +72 -0
  977. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.hxx +52 -0
  978. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.cxx +72 -0
  979. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.hxx +57 -0
  980. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.cxx +72 -0
  981. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.hxx +52 -0
  982. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_drop.cxx +71 -0
  983. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_drop.hxx +51 -0
  984. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get.cxx +74 -0
  985. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get.hxx +54 -0
  986. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.cxx +66 -0
  987. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.hxx +51 -0
  988. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.cxx +78 -0
  989. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.hxx +53 -0
  990. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.cxx +70 -0
  991. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.hxx +52 -0
  992. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.cxx +114 -0
  993. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.hxx +54 -0
  994. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user.hxx +28 -0
  995. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_drop.cxx +51 -0
  996. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_drop.hxx +51 -0
  997. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_get.cxx +60 -0
  998. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_get.hxx +52 -0
  999. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_get_all.cxx +58 -0
  1000. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_get_all.hxx +51 -0
  1001. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_upsert.cxx +100 -0
  1002. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/user_upsert.hxx +52 -0
  1003. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view.hxx +23 -0
  1004. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_drop.cxx +45 -0
  1005. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_drop.hxx +52 -0
  1006. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_get.cxx +73 -0
  1007. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_get.hxx +53 -0
  1008. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.cxx +107 -0
  1009. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.hxx +52 -0
  1010. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.cxx +70 -0
  1011. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.hxx +51 -0
  1012. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/mcbp_noop.cxx +38 -0
  1013. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/mcbp_noop.hxx +49 -0
  1014. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations/operation_traits.hxx +31 -0
  1015. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/operations.hxx +44 -0
  1016. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/origin.hxx +195 -0
  1017. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/CMakeLists.txt +16 -0
  1018. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/backtrace.c +189 -0
  1019. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/{couchbase → core}/platform/backtrace.h +0 -0
  1020. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/base64.cc +234 -0
  1021. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/base64.h +44 -0
  1022. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/dirutils.cc +123 -0
  1023. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/dirutils.h +43 -0
  1024. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/random.cc +120 -0
  1025. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/random.h +39 -0
  1026. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/string_hex.cc +101 -0
  1027. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/string_hex.h +50 -0
  1028. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/terminate_handler.cc +125 -0
  1029. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/terminate_handler.h +36 -0
  1030. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/uuid.cc +98 -0
  1031. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/platform/uuid.h +56 -0
  1032. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/client_opcode.hxx +359 -0
  1033. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/client_opcode_fmt.hxx +316 -0
  1034. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/client_request.cxx +38 -0
  1035. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/client_request.hxx +168 -0
  1036. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/client_response.cxx +75 -0
  1037. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/client_response.hxx +210 -0
  1038. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_append.cxx +74 -0
  1039. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_append.hxx +107 -0
  1040. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_cluster_map_change_notification.cxx +53 -0
  1041. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_cluster_map_change_notification.hxx +57 -0
  1042. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_decrement.cxx +96 -0
  1043. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_decrement.hxx +130 -0
  1044. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get.cxx +59 -0
  1045. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get.hxx +96 -0
  1046. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_and_lock.cxx +66 -0
  1047. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_and_lock.hxx +112 -0
  1048. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_and_touch.cxx +66 -0
  1049. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_and_touch.hxx +112 -0
  1050. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_cluster_config.cxx +85 -0
  1051. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_cluster_config.hxx +89 -0
  1052. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_collection_id.cxx +60 -0
  1053. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_collection_id.hxx +95 -0
  1054. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_collections_manifest.cxx +51 -0
  1055. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_collections_manifest.hxx +84 -0
  1056. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_error_map.cxx +61 -0
  1057. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_error_map.hxx +103 -0
  1058. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_meta.cxx +70 -0
  1059. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_meta.hxx +117 -0
  1060. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_replica.cxx +71 -0
  1061. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_get_replica.hxx +88 -0
  1062. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_hello.cxx +76 -0
  1063. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_hello.hxx +136 -0
  1064. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_increment.cxx +98 -0
  1065. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_increment.hxx +130 -0
  1066. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_info.hxx +29 -0
  1067. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_insert.cxx +83 -0
  1068. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_insert.hxx +124 -0
  1069. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_lookup_in.cxx +108 -0
  1070. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_lookup_in.hxx +139 -0
  1071. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_mutate_in.cxx +163 -0
  1072. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_mutate_in.hxx +216 -0
  1073. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_noop.cxx +36 -0
  1074. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_noop.hxx +75 -0
  1075. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_observe_seqno.cxx +92 -0
  1076. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_observe_seqno.hxx +132 -0
  1077. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_prepend.cxx +73 -0
  1078. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_prepend.hxx +103 -0
  1079. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_remove.cxx +74 -0
  1080. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_remove.hxx +94 -0
  1081. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_replace.cxx +92 -0
  1082. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_replace.hxx +131 -0
  1083. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_sasl_auth.cxx +61 -0
  1084. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_sasl_auth.hxx +91 -0
  1085. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_sasl_list_mechs.cxx +53 -0
  1086. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_sasl_list_mechs.hxx +82 -0
  1087. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_sasl_step.cxx +61 -0
  1088. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_sasl_step.hxx +91 -0
  1089. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_select_bucket.cxx +45 -0
  1090. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_select_bucket.hxx +79 -0
  1091. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_touch.cxx +53 -0
  1092. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_touch.hxx +84 -0
  1093. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_unlock.cxx +44 -0
  1094. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_unlock.hxx +81 -0
  1095. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_upsert.cxx +92 -0
  1096. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/cmd_upsert.hxx +126 -0
  1097. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/datatype.hxx +48 -0
  1098. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/enhanced_error_info.hxx +23 -0
  1099. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/frame_info_id.hxx +142 -0
  1100. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/frame_info_id_fmt.hxx +79 -0
  1101. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/frame_info_utils.cxx +59 -0
  1102. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/frame_info_utils.hxx +52 -0
  1103. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/hello_feature.hxx +186 -0
  1104. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/hello_feature_fmt.hxx +106 -0
  1105. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/magic.hxx +53 -0
  1106. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/magic_fmt.hxx +58 -0
  1107. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/server_opcode.hxx +39 -0
  1108. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/server_opcode_fmt.hxx +46 -0
  1109. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/server_request.hxx +121 -0
  1110. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/status.cxx +187 -0
  1111. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/protocol/status.hxx +112 -0
  1112. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/query_profile_mode.hxx +27 -0
  1113. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/query_scan_consistency.hxx +23 -0
  1114. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/CMakeLists.txt +16 -0
  1115. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/client.cc +50 -0
  1116. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/client.h +127 -0
  1117. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/context.cc +34 -0
  1118. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/context.h +52 -0
  1119. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/error.h +28 -0
  1120. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/error_fmt.h +70 -0
  1121. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/mechanism.cc +45 -0
  1122. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/mechanism.h +52 -0
  1123. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/plain/plain.cc +39 -0
  1124. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/plain/plain.h +54 -0
  1125. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/scram-sha/scram-sha.cc +372 -0
  1126. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/scram-sha/scram-sha.h +184 -0
  1127. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/scram-sha/stringutils.cc +82 -0
  1128. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/sasl/scram-sha/stringutils.h +48 -0
  1129. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/search_highlight_style.hxx +23 -0
  1130. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/search_scan_consistency.hxx +23 -0
  1131. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/service_type.hxx +31 -0
  1132. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/service_type_fmt.hxx +61 -0
  1133. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/timeout_defaults.hxx +43 -0
  1134. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/capabilities.hxx +43 -0
  1135. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/capabilities_fmt.hxx +106 -0
  1136. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/collections_manifest.hxx +43 -0
  1137. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/collections_manifest_fmt.hxx +52 -0
  1138. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/collections_manifest_json.hxx +53 -0
  1139. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/configuration.cxx +223 -0
  1140. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/configuration.hxx +127 -0
  1141. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/configuration_fmt.hxx +166 -0
  1142. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/configuration_json.hxx +259 -0
  1143. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/error_map.hxx +35 -0
  1144. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/error_map_fmt.hxx +94 -0
  1145. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/topology/error_map_json.hxx +89 -0
  1146. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/CMakeLists.txt +9 -0
  1147. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/constants.hxx +274 -0
  1148. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/noop_tracer.hxx +55 -0
  1149. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/request_tracer.hxx +79 -0
  1150. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/threshold_logging_options.hxx +68 -0
  1151. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/threshold_logging_tracer.cxx +422 -0
  1152. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/tracing/threshold_logging_tracer.hxx +49 -0
  1153. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/binary.cxx +27 -0
  1154. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/binary.hxx +57 -0
  1155. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/byteswap.hxx +49 -0
  1156. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/connection_string.cxx +420 -0
  1157. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/connection_string.hxx +76 -0
  1158. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/crc32.hxx +49 -0
  1159. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/duration_parser.cxx +193 -0
  1160. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/duration_parser.hxx +45 -0
  1161. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/join_strings.hxx +65 -0
  1162. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/json.cxx +286 -0
  1163. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/json.hxx +43 -0
  1164. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/json_stream_control.hxx +32 -0
  1165. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/json_streaming_lexer.cxx +398 -0
  1166. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/json_streaming_lexer.hxx +59 -0
  1167. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/movable_function.hxx +110 -0
  1168. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/mutation_token.cxx +33 -0
  1169. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/mutation_token.hxx +29 -0
  1170. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/name_codec.hxx +41 -0
  1171. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/unsigned_leb128.hxx +181 -0
  1172. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/url_codec.cxx +404 -0
  1173. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/utils/url_codec.hxx +72 -0
  1174. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/view_on_error.hxx +27 -0
  1175. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/view_scan_consistency.hxx +27 -0
  1176. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/core/view_sort_order.hxx +23 -0
  1177. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/append_options.hxx +123 -0
  1178. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/binary_collection.hxx +327 -0
  1179. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/bucket.hxx +55 -494
  1180. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/build_query_index_options.hxx +132 -0
  1181. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/cas.hxx +74 -8
  1182. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/cluster.hxx +49 -405
  1183. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/codec/codec_flags.hxx +145 -0
  1184. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/codec/encoded_value.hxx +31 -0
  1185. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/codec/json_transcoder.hxx +83 -0
  1186. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/codec/raw_binary_transcoder.hxx +53 -0
  1187. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/codec/transcoder_traits.hxx +31 -0
  1188. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/collection.hxx +847 -0
  1189. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/common_durability_options.hxx +108 -0
  1190. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/common_options.hxx +92 -0
  1191. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/counter_result.hxx +73 -0
  1192. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/decrement_options.hxx +165 -0
  1193. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/durability_level.hxx +64 -0
  1194. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_codes.hxx +1104 -0
  1195. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context.hxx +173 -0
  1196. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/expiry.hxx +55 -0
  1197. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/fmt/cas.hxx +37 -0
  1198. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/fmt/durability_level.hxx +52 -0
  1199. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/fmt/key_value_extended_error_info.hxx +46 -0
  1200. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/fmt/key_value_status_code.hxx +242 -0
  1201. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/fmt/mutation_token.hxx +38 -0
  1202. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/fmt/retry_reason.hxx +103 -0
  1203. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/get_all_replicas_options.hxx +102 -0
  1204. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/get_and_touch_options.hxx +94 -0
  1205. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/get_any_replica_options.hxx +93 -0
  1206. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/get_options.hxx +116 -0
  1207. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/get_replica_result.hxx +117 -0
  1208. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/get_result.hxx +126 -0
  1209. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/increment_options.hxx +165 -0
  1210. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/insert_options.hxx +135 -0
  1211. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/key_value_error_context.hxx +224 -0
  1212. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/key_value_error_map_attribute.hxx +124 -0
  1213. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/key_value_error_map_info.hxx +138 -0
  1214. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/key_value_extended_error_info.hxx +86 -0
  1215. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/key_value_status_code.hxx +93 -0
  1216. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/lookup_in_options.hxx +117 -0
  1217. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/lookup_in_result.hxx +216 -0
  1218. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/lookup_in_specs.hxx +146 -0
  1219. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/manager_error_context.hxx +136 -0
  1220. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/otel_meter.hxx +131 -0
  1221. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/mutate_in_options.hxx +234 -0
  1222. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/mutate_in_result.hxx +135 -0
  1223. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/mutate_in_specs.hxx +528 -0
  1224. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/mutation_result.hxx +73 -0
  1225. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/mutation_token.hxx +93 -6
  1226. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/persist_to.hxx +73 -0
  1227. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/prepend_options.hxx +123 -0
  1228. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/query_index_manager.hxx +82 -0
  1229. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/remove_options.hxx +122 -0
  1230. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/replace_options.hxx +183 -0
  1231. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/replicate_to.hxx +55 -0
  1232. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/result.hxx +66 -0
  1233. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/retry_reason.hxx +101 -0
  1234. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/scope.hxx +101 -0
  1235. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/store_semantics.hxx +63 -0
  1236. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/array_add_unique.hxx +105 -0
  1237. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/array_append.hxx +89 -0
  1238. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/array_insert.hxx +90 -0
  1239. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/array_prepend.hxx +90 -0
  1240. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/count.hxx +70 -0
  1241. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/counter.hxx +88 -0
  1242. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/exists.hxx +70 -0
  1243. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/fwd/command.hxx +25 -0
  1244. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/fwd/command_bundle.hxx +25 -0
  1245. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/get.hxx +78 -0
  1246. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/insert.hxx +105 -0
  1247. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/lookup_in_macro.hxx +65 -0
  1248. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/mutate_in_macro.hxx +54 -0
  1249. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/remove.hxx +70 -0
  1250. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/replace.hxx +89 -0
  1251. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdoc/upsert.hxx +105 -0
  1252. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/subdocument_error_context.hxx +144 -0
  1253. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/touch_options.hxx +94 -0
  1254. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/otel_tracer.hxx +85 -0
  1255. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/upsert_options.hxx +157 -0
  1256. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/docs/Doxyfile.in +2663 -0
  1257. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/docs/doxygen-awesome.css +2137 -0
  1258. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/docs/mainpage.hxx +35 -0
  1259. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/docs/stability.hxx +68 -0
  1260. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/CMakeLists.txt +5 -0
  1261. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/benchmark_integration_get.cxx +6 -6
  1262. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/profile.hxx +62 -0
  1263. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_helper.hxx +1 -0
  1264. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_helper_integration.hxx +1 -1
  1265. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_analytics.cxx +50 -49
  1266. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_arithmetic.cxx +119 -20
  1267. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_binary_operations.cxx +32 -38
  1268. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_collections.cxx +34 -34
  1269. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_connect.cxx +17 -17
  1270. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_crud.cxx +201 -182
  1271. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_diagnostics.cxx +74 -74
  1272. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_durability.cxx +181 -26
  1273. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_management.cxx +460 -418
  1274. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_meter.cxx +180 -0
  1275. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_query.cxx +100 -51
  1276. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_read_replica.cxx +234 -0
  1277. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_subdoc.cxx +334 -295
  1278. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_tracer.cxx +304 -0
  1279. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_integration_transcoders.cxx +531 -0
  1280. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_unit_connection_string.cxx +166 -165
  1281. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_unit_json_streaming_lexer.cxx +14 -13
  1282. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_unit_json_transcoder.cxx +204 -0
  1283. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_unit_jsonsl.cxx +1 -1
  1284. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/test_unit_utils.cxx +23 -21
  1285. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/tools/tool_kv_loader.cxx +31 -27
  1286. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/CMakeLists.txt +1 -0
  1287. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/binary.cxx +27 -0
  1288. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/binary.hxx +27 -0
  1289. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/integration_shortcuts.cxx +6 -6
  1290. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/integration_shortcuts.hxx +7 -8
  1291. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/integration_test_guard.cxx +27 -12
  1292. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/integration_test_guard.hxx +16 -15
  1293. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/logger.cxx +5 -3
  1294. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/logger.hxx +1 -1
  1295. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/server_version.hxx +1 -1
  1296. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/test_context.hxx +3 -3
  1297. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/wait_until.cxx +4 -4
  1298. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/test/utils/wait_until.hxx +5 -5
  1299. package/deps/couchbase-transactions-cxx/examples/game_server.cxx +22 -22
  1300. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/async_attempt_context.hxx +9 -7
  1301. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/attempt_context.hxx +7 -7
  1302. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/internal/atr_cleanup_entry.hxx +3 -5
  1303. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/internal/doc_record.hxx +3 -3
  1304. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/internal/exceptions_internal.hxx +1 -0
  1305. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/internal/transaction_context.hxx +4 -4
  1306. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/internal/transactions_cleanup.hxx +10 -18
  1307. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/internal/utils.hxx +36 -37
  1308. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/per_transaction_config.hxx +5 -5
  1309. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/transaction_config.hxx +5 -5
  1310. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/transaction_get_result.hxx +8 -8
  1311. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/transaction_keyspace.hxx +2 -2
  1312. package/deps/couchbase-transactions-cxx/include/couchbase/transactions/transaction_query_options.hxx +11 -10
  1313. package/deps/couchbase-transactions-cxx/include/couchbase/transactions.hxx +8 -8
  1314. package/deps/couchbase-transactions-cxx/src/transactions/active_transaction_record.cxx +2 -3
  1315. package/deps/couchbase-transactions-cxx/src/transactions/active_transaction_record.hxx +27 -21
  1316. package/deps/couchbase-transactions-cxx/src/transactions/atr_cleanup_entry.cxx +67 -51
  1317. package/deps/couchbase-transactions-cxx/src/transactions/atr_ids.cxx +2 -2
  1318. package/deps/couchbase-transactions-cxx/src/transactions/attempt_context_impl.cxx +199 -192
  1319. package/deps/couchbase-transactions-cxx/src/transactions/attempt_context_impl.hxx +26 -26
  1320. package/deps/couchbase-transactions-cxx/src/transactions/binary_utils.cxx +28 -0
  1321. package/deps/couchbase-transactions-cxx/src/transactions/binary_utils.hxx +30 -0
  1322. package/deps/couchbase-transactions-cxx/src/transactions/exceptions.cxx +11 -12
  1323. package/deps/couchbase-transactions-cxx/src/transactions/logging.cxx +10 -10
  1324. package/deps/couchbase-transactions-cxx/src/transactions/result.cxx +1 -1
  1325. package/deps/couchbase-transactions-cxx/src/transactions/result.hxx +33 -13
  1326. package/deps/couchbase-transactions-cxx/src/transactions/staged_mutation.cxx +54 -34
  1327. package/deps/couchbase-transactions-cxx/src/transactions/staged_mutation.hxx +7 -7
  1328. package/deps/couchbase-transactions-cxx/src/transactions/transaction_config.cxx +1 -1
  1329. package/deps/couchbase-transactions-cxx/src/transactions/transaction_context.cxx +3 -3
  1330. package/deps/couchbase-transactions-cxx/src/transactions/transaction_get_result.cxx +33 -29
  1331. package/deps/couchbase-transactions-cxx/src/transactions/transaction_query_options.cxx +4 -4
  1332. package/deps/couchbase-transactions-cxx/src/transactions/transactions.cxx +1 -1
  1333. package/deps/couchbase-transactions-cxx/src/transactions/transactions_cleanup.cxx +50 -42
  1334. package/deps/couchbase-transactions-cxx/src/transactions/uid_generator.cxx +4 -2
  1335. package/deps/couchbase-transactions-cxx/tests/transactions/logging_t.cpp +16 -17
  1336. package/deps/couchbase-transactions-cxx/tests/transactions/simple_async_t.cpp +21 -21
  1337. package/deps/couchbase-transactions-cxx/tests/transactions/simple_t.cpp +4 -4
  1338. package/deps/couchbase-transactions-cxx/tests/transactions/transaction_context_t.cpp +13 -13
  1339. package/deps/couchbase-transactions-cxx/tests/transactions/transactions_env.h +35 -33
  1340. package/deps/couchbase-transactions-cxx/tests/transactions/waitable_op_list_t.cpp +8 -5
  1341. package/dist/analyticsexecutor.js +1 -1
  1342. package/dist/authenticators.d.ts +18 -0
  1343. package/dist/authenticators.js +15 -0
  1344. package/dist/binarycollection.d.ts +48 -0
  1345. package/dist/binding.d.ts +518 -295
  1346. package/dist/binding.js +55 -40
  1347. package/dist/bindingutilities.d.ts +16 -4
  1348. package/dist/bindingutilities.js +208 -87
  1349. package/dist/bucketmanager.d.ts +21 -21
  1350. package/dist/bucketmanager.js +6 -5
  1351. package/dist/cluster.d.ts +12 -0
  1352. package/dist/cluster.js +38 -8
  1353. package/dist/collection.d.ts +121 -1
  1354. package/dist/collection.js +304 -53
  1355. package/dist/configProfile.d.ts +69 -0
  1356. package/dist/configProfile.js +80 -0
  1357. package/dist/crudoptypes.d.ts +27 -0
  1358. package/dist/crudoptypes.js +17 -1
  1359. package/dist/errors.d.ts +16 -0
  1360. package/dist/errors.js +24 -2
  1361. package/dist/queryindexmanager.js +2 -2
  1362. package/dist/streamablepromises.d.ts +8 -0
  1363. package/dist/streamablepromises.js +23 -1
  1364. package/package.json +1 -1
  1365. package/src/binding.cpp +10 -10
  1366. package/src/cas.cpp +2 -2
  1367. package/src/connection.cpp +34 -9
  1368. package/src/connection.hpp +18 -3
  1369. package/src/connection_autogen.cpp +429 -232
  1370. package/src/constants.cpp +736 -588
  1371. package/src/instance.cpp +1 -1
  1372. package/src/instance.hpp +2 -2
  1373. package/src/jstocbpp_autogen.hpp +3250 -2192
  1374. package/src/jstocbpp_basic.hpp +13 -12
  1375. package/src/jstocbpp_errors.hpp +74 -42
  1376. package/src/jstocbpp_transactions.hpp +27 -27
  1377. package/src/mutationtoken.cpp +17 -20
  1378. package/src/mutationtoken.hpp +1 -1
  1379. package/src/transaction.cpp +30 -27
  1380. package/src/transactions.hpp +1 -1
  1381. package/tools/gen-bindings-js.js +43 -9
  1382. package/tools/gen-bindings-json.py +159 -101
  1383. package/deps/couchbase-cxx-client/couchbase/analytics_scan_consistency.hxx +0 -26
  1384. package/deps/couchbase-cxx-client/couchbase/capella_ca.hxx +0 -43
  1385. package/deps/couchbase-cxx-client/couchbase/cas_fmt.hxx +0 -37
  1386. package/deps/couchbase-cxx-client/couchbase/cluster.cxx +0 -124
  1387. package/deps/couchbase-cxx-client/couchbase/cluster_options.cxx +0 -45
  1388. package/deps/couchbase-cxx-client/couchbase/cluster_options.hxx +0 -78
  1389. package/deps/couchbase-cxx-client/couchbase/crypto/CMakeLists.txt +0 -12
  1390. package/deps/couchbase-cxx-client/couchbase/crypto/cbcrypto.cc +0 -887
  1391. package/deps/couchbase-cxx-client/couchbase/crypto/cbcrypto.h +0 -88
  1392. package/deps/couchbase-cxx-client/couchbase/design_document_namespace.hxx +0 -26
  1393. package/deps/couchbase-cxx-client/couchbase/design_document_namespace_fmt.hxx +0 -47
  1394. package/deps/couchbase-cxx-client/couchbase/diagnostics.hxx +0 -97
  1395. package/deps/couchbase-cxx-client/couchbase/diagnostics_fmt.hxx +0 -113
  1396. package/deps/couchbase-cxx-client/couchbase/diagnostics_json.hxx +0 -100
  1397. package/deps/couchbase-cxx-client/couchbase/document_id.cxx +0 -106
  1398. package/deps/couchbase-cxx-client/couchbase/document_id.hxx +0 -107
  1399. package/deps/couchbase-cxx-client/couchbase/document_id_fmt.hxx +0 -37
  1400. package/deps/couchbase-cxx-client/couchbase/error_context/analytics.hxx +0 -51
  1401. package/deps/couchbase-cxx-client/couchbase/error_context/http.hxx +0 -47
  1402. package/deps/couchbase-cxx-client/couchbase/error_context/key_value.hxx +0 -50
  1403. package/deps/couchbase-cxx-client/couchbase/error_context/query.hxx +0 -51
  1404. package/deps/couchbase-cxx-client/couchbase/error_context/search.hxx +0 -50
  1405. package/deps/couchbase-cxx-client/couchbase/error_context/view.hxx +0 -51
  1406. package/deps/couchbase-cxx-client/couchbase/errors.hxx +0 -1038
  1407. package/deps/couchbase-cxx-client/couchbase/io/CMakeLists.txt +0 -12
  1408. package/deps/couchbase-cxx-client/couchbase/io/dns_client.hxx +0 -217
  1409. package/deps/couchbase-cxx-client/couchbase/io/dns_codec.hxx +0 -206
  1410. package/deps/couchbase-cxx-client/couchbase/io/dns_config.hxx +0 -115
  1411. package/deps/couchbase-cxx-client/couchbase/io/dns_message.hxx +0 -555
  1412. package/deps/couchbase-cxx-client/couchbase/io/http_command.hxx +0 -174
  1413. package/deps/couchbase-cxx-client/couchbase/io/http_context.hxx +0 -40
  1414. package/deps/couchbase-cxx-client/couchbase/io/http_message.hxx +0 -116
  1415. package/deps/couchbase-cxx-client/couchbase/io/http_parser.cxx +0 -141
  1416. package/deps/couchbase-cxx-client/couchbase/io/http_parser.hxx +0 -55
  1417. package/deps/couchbase-cxx-client/couchbase/io/http_session.hxx +0 -548
  1418. package/deps/couchbase-cxx-client/couchbase/io/http_session_manager.hxx +0 -381
  1419. package/deps/couchbase-cxx-client/couchbase/io/http_traits.hxx +0 -30
  1420. package/deps/couchbase-cxx-client/couchbase/io/ip_protocol.hxx +0 -28
  1421. package/deps/couchbase-cxx-client/couchbase/io/mcbp_command.hxx +0 -300
  1422. package/deps/couchbase-cxx-client/couchbase/io/mcbp_context.hxx +0 -39
  1423. package/deps/couchbase-cxx-client/couchbase/io/mcbp_message.cxx +0 -39
  1424. package/deps/couchbase-cxx-client/couchbase/io/mcbp_message.hxx +0 -55
  1425. package/deps/couchbase-cxx-client/couchbase/io/mcbp_parser.cxx +0 -88
  1426. package/deps/couchbase-cxx-client/couchbase/io/mcbp_parser.hxx +0 -45
  1427. package/deps/couchbase-cxx-client/couchbase/io/mcbp_session.hxx +0 -1333
  1428. package/deps/couchbase-cxx-client/couchbase/io/mcbp_traits.hxx +0 -30
  1429. package/deps/couchbase-cxx-client/couchbase/io/query_cache.hxx +0 -61
  1430. package/deps/couchbase-cxx-client/couchbase/io/retry_action.hxx +0 -30
  1431. package/deps/couchbase-cxx-client/couchbase/io/retry_context.hxx +0 -38
  1432. package/deps/couchbase-cxx-client/couchbase/io/retry_orchestrator.hxx +0 -112
  1433. package/deps/couchbase-cxx-client/couchbase/io/retry_reason.hxx +0 -158
  1434. package/deps/couchbase-cxx-client/couchbase/io/retry_reason_fmt.hxx +0 -103
  1435. package/deps/couchbase-cxx-client/couchbase/io/retry_strategy.hxx +0 -152
  1436. package/deps/couchbase-cxx-client/couchbase/io/streams.hxx +0 -253
  1437. package/deps/couchbase-cxx-client/couchbase/json_string.hxx +0 -48
  1438. package/deps/couchbase-cxx-client/couchbase/logger/CMakeLists.txt +0 -9
  1439. package/deps/couchbase-cxx-client/couchbase/logger/configuration.hxx +0 -57
  1440. package/deps/couchbase-cxx-client/couchbase/logger/custom_rotating_file_sink.cxx +0 -157
  1441. package/deps/couchbase-cxx-client/couchbase/logger/logger.cxx +0 -340
  1442. package/deps/couchbase-cxx-client/couchbase/logger/logger.hxx +0 -235
  1443. package/deps/couchbase-cxx-client/couchbase/management/CMakeLists.txt +0 -13
  1444. package/deps/couchbase-cxx-client/couchbase/management/analytics_dataset.hxx +0 -30
  1445. package/deps/couchbase-cxx-client/couchbase/management/analytics_index.hxx +0 -30
  1446. package/deps/couchbase-cxx-client/couchbase/management/analytics_link.hxx +0 -22
  1447. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_azure_blob_external.cxx +0 -67
  1448. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_azure_blob_external.hxx +0 -76
  1449. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_azure_blob_external_json.hxx +0 -52
  1450. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_couchbase_remote.cxx +0 -104
  1451. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_couchbase_remote.hxx +0 -107
  1452. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_couchbase_remote_json.hxx +0 -63
  1453. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_s3_external.cxx +0 -57
  1454. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_s3_external.hxx +0 -69
  1455. package/deps/couchbase-cxx-client/couchbase/management/analytics_link_s3_external_json.hxx +0 -47
  1456. package/deps/couchbase-cxx-client/couchbase/management/bucket_settings.hxx +0 -134
  1457. package/deps/couchbase-cxx-client/couchbase/management/bucket_settings_json.hxx +0 -123
  1458. package/deps/couchbase-cxx-client/couchbase/management/design_document.hxx +0 -41
  1459. package/deps/couchbase-cxx-client/couchbase/management/eventing_function.hxx +0 -188
  1460. package/deps/couchbase-cxx-client/couchbase/management/eventing_function_json.hxx +0 -212
  1461. package/deps/couchbase-cxx-client/couchbase/management/eventing_status.hxx +0 -84
  1462. package/deps/couchbase-cxx-client/couchbase/management/eventing_status_json.hxx +0 -77
  1463. package/deps/couchbase-cxx-client/couchbase/management/query_index.hxx +0 -39
  1464. package/deps/couchbase-cxx-client/couchbase/management/rbac.hxx +0 -77
  1465. package/deps/couchbase-cxx-client/couchbase/management/rbac_fmt.hxx +0 -49
  1466. package/deps/couchbase-cxx-client/couchbase/management/rbac_json.hxx +0 -179
  1467. package/deps/couchbase-cxx-client/couchbase/management/search_index.hxx +0 -38
  1468. package/deps/couchbase-cxx-client/couchbase/management/search_index_json.hxx +0 -58
  1469. package/deps/couchbase-cxx-client/couchbase/meta/CMakeLists.txt +0 -15
  1470. package/deps/couchbase-cxx-client/couchbase/meta/version.cxx +0 -188
  1471. package/deps/couchbase-cxx-client/couchbase/meta/version.hxx +0 -45
  1472. package/deps/couchbase-cxx-client/couchbase/metrics/CMakeLists.txt +0 -11
  1473. package/deps/couchbase-cxx-client/couchbase/metrics/logging_meter.cxx +0 -194
  1474. package/deps/couchbase-cxx-client/couchbase/metrics/logging_meter.hxx +0 -74
  1475. package/deps/couchbase-cxx-client/couchbase/metrics/logging_meter_options.hxx +0 -28
  1476. package/deps/couchbase-cxx-client/couchbase/metrics/meter.hxx +0 -52
  1477. package/deps/couchbase-cxx-client/couchbase/metrics/noop_meter.hxx +0 -47
  1478. package/deps/couchbase-cxx-client/couchbase/mutation_token_fmt.hxx +0 -37
  1479. package/deps/couchbase-cxx-client/couchbase/operations/CMakeLists.txt +0 -35
  1480. package/deps/couchbase-cxx-client/couchbase/operations/document_analytics.cxx +0 -195
  1481. package/deps/couchbase-cxx-client/couchbase/operations/document_analytics.hxx +0 -92
  1482. package/deps/couchbase-cxx-client/couchbase/operations/document_append.cxx +0 -46
  1483. package/deps/couchbase-cxx-client/couchbase/operations/document_append.hxx +0 -63
  1484. package/deps/couchbase-cxx-client/couchbase/operations/document_decrement.cxx +0 -54
  1485. package/deps/couchbase-cxx-client/couchbase/operations/document_decrement.hxx +0 -66
  1486. package/deps/couchbase-cxx-client/couchbase/operations/document_exists.cxx +0 -49
  1487. package/deps/couchbase-cxx-client/couchbase/operations/document_exists.hxx +0 -61
  1488. package/deps/couchbase-cxx-client/couchbase/operations/document_get.cxx +0 -44
  1489. package/deps/couchbase-cxx-client/couchbase/operations/document_get.hxx +0 -53
  1490. package/deps/couchbase-cxx-client/couchbase/operations/document_get_and_lock.cxx +0 -45
  1491. package/deps/couchbase-cxx-client/couchbase/operations/document_get_and_lock.hxx +0 -54
  1492. package/deps/couchbase-cxx-client/couchbase/operations/document_get_and_touch.cxx +0 -45
  1493. package/deps/couchbase-cxx-client/couchbase/operations/document_get_and_touch.hxx +0 -54
  1494. package/deps/couchbase-cxx-client/couchbase/operations/document_get_projected.cxx +0 -230
  1495. package/deps/couchbase-cxx-client/couchbase/operations/document_get_projected.hxx +0 -58
  1496. package/deps/couchbase-cxx-client/couchbase/operations/document_increment.cxx +0 -54
  1497. package/deps/couchbase-cxx-client/couchbase/operations/document_increment.hxx +0 -66
  1498. package/deps/couchbase-cxx-client/couchbase/operations/document_insert.cxx +0 -48
  1499. package/deps/couchbase-cxx-client/couchbase/operations/document_insert.hxx +0 -65
  1500. package/deps/couchbase-cxx-client/couchbase/operations/document_lookup_in.cxx +0 -81
  1501. package/deps/couchbase-cxx-client/couchbase/operations/document_lookup_in.hxx +0 -64
  1502. package/deps/couchbase-cxx-client/couchbase/operations/document_mutate_in.cxx +0 -104
  1503. package/deps/couchbase-cxx-client/couchbase/operations/document_mutate_in.hxx +0 -82
  1504. package/deps/couchbase-cxx-client/couchbase/operations/document_prepend.cxx +0 -46
  1505. package/deps/couchbase-cxx-client/couchbase/operations/document_prepend.hxx +0 -63
  1506. package/deps/couchbase-cxx-client/couchbase/operations/document_query.cxx +0 -382
  1507. package/deps/couchbase-cxx-client/couchbase/operations/document_query.hxx +0 -123
  1508. package/deps/couchbase-cxx-client/couchbase/operations/document_remove.cxx +0 -46
  1509. package/deps/couchbase-cxx-client/couchbase/operations/document_remove.hxx +0 -63
  1510. package/deps/couchbase-cxx-client/couchbase/operations/document_replace.cxx +0 -52
  1511. package/deps/couchbase-cxx-client/couchbase/operations/document_replace.hxx +0 -67
  1512. package/deps/couchbase-cxx-client/couchbase/operations/document_search.cxx +0 -311
  1513. package/deps/couchbase-cxx-client/couchbase/operations/document_search.hxx +0 -153
  1514. package/deps/couchbase-cxx-client/couchbase/operations/document_touch.cxx +0 -43
  1515. package/deps/couchbase-cxx-client/couchbase/operations/document_touch.hxx +0 -52
  1516. package/deps/couchbase-cxx-client/couchbase/operations/document_unlock.cxx +0 -43
  1517. package/deps/couchbase-cxx-client/couchbase/operations/document_unlock.hxx +0 -52
  1518. package/deps/couchbase-cxx-client/couchbase/operations/document_upsert.cxx +0 -52
  1519. package/deps/couchbase-cxx-client/couchbase/operations/document_upsert.hxx +0 -66
  1520. package/deps/couchbase-cxx-client/couchbase/operations/document_view.cxx +0 -186
  1521. package/deps/couchbase-cxx-client/couchbase/operations/document_view.hxx +0 -98
  1522. package/deps/couchbase-cxx-client/couchbase/operations/http_noop.cxx +0 -64
  1523. package/deps/couchbase-cxx-client/couchbase/operations/http_noop.hxx +0 -48
  1524. package/deps/couchbase-cxx-client/couchbase/operations/management/CMakeLists.txt +0 -79
  1525. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics.hxx +0 -34
  1526. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_create.cxx +0 -94
  1527. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_create.hxx +0 -57
  1528. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_drop.cxx +0 -83
  1529. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_drop.hxx +0 -54
  1530. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_get_all.cxx +0 -79
  1531. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_get_all.hxx +0 -52
  1532. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_create.cxx +0 -82
  1533. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_create.hxx +0 -53
  1534. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_drop.cxx +0 -82
  1535. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_drop.hxx +0 -53
  1536. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_get_pending_mutations.cxx +0 -70
  1537. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_get_pending_mutations.hxx +0 -52
  1538. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_create.cxx +0 -106
  1539. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_create.hxx +0 -56
  1540. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_drop.cxx +0 -90
  1541. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_drop.hxx +0 -55
  1542. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_get_all.cxx +0 -80
  1543. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_get_all.hxx +0 -52
  1544. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_connect.cxx +0 -82
  1545. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_connect.hxx +0 -57
  1546. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_create.cxx +0 -87
  1547. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_create.hxx +0 -77
  1548. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_disconnect.cxx +0 -80
  1549. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_disconnect.hxx +0 -56
  1550. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_drop.cxx +0 -103
  1551. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_drop.hxx +0 -56
  1552. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_get_all.cxx +0 -129
  1553. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_get_all.hxx +0 -63
  1554. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_replace.cxx +0 -87
  1555. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_replace.hxx +0 -78
  1556. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_utils.hxx +0 -37
  1557. package/deps/couchbase-cxx-client/couchbase/operations/management/analytics_problem.hxx +0 -30
  1558. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket.hxx +0 -25
  1559. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_create.cxx +0 -171
  1560. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_create.hxx +0 -52
  1561. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_describe.cxx +0 -67
  1562. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_describe.hxx +0 -61
  1563. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_drop.cxx +0 -52
  1564. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_drop.hxx +0 -49
  1565. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_flush.cxx +0 -59
  1566. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_flush.hxx +0 -49
  1567. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get.cxx +0 -59
  1568. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get.hxx +0 -51
  1569. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get_all.cxx +0 -59
  1570. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get_all.hxx +0 -49
  1571. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_update.cxx +0 -130
  1572. package/deps/couchbase-cxx-client/couchbase/operations/management/bucket_update.hxx +0 -52
  1573. package/deps/couchbase-cxx-client/couchbase/operations/management/cluster_describe.cxx +0 -90
  1574. package/deps/couchbase-cxx-client/couchbase/operations/management/cluster_describe.hxx +0 -72
  1575. package/deps/couchbase-cxx-client/couchbase/operations/management/cluster_developer_preview_enable.cxx +0 -44
  1576. package/deps/couchbase-cxx-client/couchbase/operations/management/cluster_developer_preview_enable.hxx +0 -48
  1577. package/deps/couchbase-cxx-client/couchbase/operations/management/collection_create.cxx +0 -83
  1578. package/deps/couchbase-cxx-client/couchbase/operations/management/collection_create.hxx +0 -53
  1579. package/deps/couchbase-cxx-client/couchbase/operations/management/collection_drop.cxx +0 -73
  1580. package/deps/couchbase-cxx-client/couchbase/operations/management/collection_drop.hxx +0 -52
  1581. package/deps/couchbase-cxx-client/couchbase/operations/management/collections.hxx +0 -25
  1582. package/deps/couchbase-cxx-client/couchbase/operations/management/collections_manifest_get.cxx +0 -40
  1583. package/deps/couchbase-cxx-client/couchbase/operations/management/collections_manifest_get.hxx +0 -53
  1584. package/deps/couchbase-cxx-client/couchbase/operations/management/error_utils.cxx +0 -267
  1585. package/deps/couchbase-cxx-client/couchbase/operations/management/error_utils.hxx +0 -48
  1586. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing.hxx +0 -28
  1587. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_deploy_function.cxx +0 -56
  1588. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_deploy_function.hxx +0 -52
  1589. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_drop_function.cxx +0 -57
  1590. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_drop_function.hxx +0 -52
  1591. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_all_functions.cxx +0 -64
  1592. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_all_functions.hxx +0 -51
  1593. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_function.cxx +0 -56
  1594. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_function.hxx +0 -53
  1595. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_status.cxx +0 -56
  1596. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_status.hxx +0 -53
  1597. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_pause_function.cxx +0 -56
  1598. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_pause_function.hxx +0 -52
  1599. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_problem.hxx +0 -31
  1600. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_resume_function.cxx +0 -56
  1601. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_resume_function.hxx +0 -52
  1602. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_undeploy_function.cxx +0 -56
  1603. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_undeploy_function.hxx +0 -52
  1604. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_upsert_function.cxx +0 -341
  1605. package/deps/couchbase-cxx-client/couchbase/operations/management/eventing_upsert_function.hxx +0 -52
  1606. package/deps/couchbase-cxx-client/couchbase/operations/management/freeform.cxx +0 -55
  1607. package/deps/couchbase-cxx-client/couchbase/operations/management/freeform.hxx +0 -55
  1608. package/deps/couchbase-cxx-client/couchbase/operations/management/group_drop.cxx +0 -51
  1609. package/deps/couchbase-cxx-client/couchbase/operations/management/group_drop.hxx +0 -49
  1610. package/deps/couchbase-cxx-client/couchbase/operations/management/group_get.cxx +0 -60
  1611. package/deps/couchbase-cxx-client/couchbase/operations/management/group_get.hxx +0 -50
  1612. package/deps/couchbase-cxx-client/couchbase/operations/management/group_get_all.cxx +0 -58
  1613. package/deps/couchbase-cxx-client/couchbase/operations/management/group_get_all.hxx +0 -49
  1614. package/deps/couchbase-cxx-client/couchbase/operations/management/group_upsert.cxx +0 -96
  1615. package/deps/couchbase-cxx-client/couchbase/operations/management/group_upsert.hxx +0 -51
  1616. package/deps/couchbase-cxx-client/couchbase/operations/management/query.hxx +0 -23
  1617. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_build_deferred.cxx +0 -88
  1618. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_build_deferred.hxx +0 -61
  1619. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_create.cxx +0 -149
  1620. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_create.hxx +0 -65
  1621. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_drop.cxx +0 -129
  1622. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_drop.hxx +0 -61
  1623. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_get_all.cxx +0 -126
  1624. package/deps/couchbase-cxx-client/couchbase/operations/management/query_index_get_all.hxx +0 -54
  1625. package/deps/couchbase-cxx-client/couchbase/operations/management/role_get_all.cxx +0 -58
  1626. package/deps/couchbase-cxx-client/couchbase/operations/management/role_get_all.hxx +0 -49
  1627. package/deps/couchbase-cxx-client/couchbase/operations/management/scope_create.cxx +0 -75
  1628. package/deps/couchbase-cxx-client/couchbase/operations/management/scope_create.hxx +0 -51
  1629. package/deps/couchbase-cxx-client/couchbase/operations/management/scope_drop.cxx +0 -70
  1630. package/deps/couchbase-cxx-client/couchbase/operations/management/scope_drop.hxx +0 -51
  1631. package/deps/couchbase-cxx-client/couchbase/operations/management/scope_get_all.cxx +0 -62
  1632. package/deps/couchbase-cxx-client/couchbase/operations/management/scope_get_all.hxx +0 -51
  1633. package/deps/couchbase-cxx-client/couchbase/operations/management/search.hxx +0 -30
  1634. package/deps/couchbase-cxx-client/couchbase/operations/management/search_get_stats.cxx +0 -41
  1635. package/deps/couchbase-cxx-client/couchbase/operations/management/search_get_stats.hxx +0 -48
  1636. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_analyze_document.cxx +0 -85
  1637. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_analyze_document.hxx +0 -54
  1638. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_ingest.cxx +0 -73
  1639. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_ingest.hxx +0 -52
  1640. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_plan_freeze.cxx +0 -73
  1641. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_plan_freeze.hxx +0 -57
  1642. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_query.cxx +0 -73
  1643. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_query.hxx +0 -52
  1644. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_drop.cxx +0 -72
  1645. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_drop.hxx +0 -51
  1646. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get.cxx +0 -75
  1647. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get.hxx +0 -54
  1648. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_all.cxx +0 -67
  1649. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_all.hxx +0 -51
  1650. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_documents_count.cxx +0 -79
  1651. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_documents_count.hxx +0 -53
  1652. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_stats.cxx +0 -71
  1653. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_stats.hxx +0 -52
  1654. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_upsert.cxx +0 -108
  1655. package/deps/couchbase-cxx-client/couchbase/operations/management/search_index_upsert.hxx +0 -52
  1656. package/deps/couchbase-cxx-client/couchbase/operations/management/user.hxx +0 -28
  1657. package/deps/couchbase-cxx-client/couchbase/operations/management/user_drop.cxx +0 -52
  1658. package/deps/couchbase-cxx-client/couchbase/operations/management/user_drop.hxx +0 -51
  1659. package/deps/couchbase-cxx-client/couchbase/operations/management/user_get.cxx +0 -61
  1660. package/deps/couchbase-cxx-client/couchbase/operations/management/user_get.hxx +0 -52
  1661. package/deps/couchbase-cxx-client/couchbase/operations/management/user_get_all.cxx +0 -59
  1662. package/deps/couchbase-cxx-client/couchbase/operations/management/user_get_all.hxx +0 -51
  1663. package/deps/couchbase-cxx-client/couchbase/operations/management/user_upsert.cxx +0 -101
  1664. package/deps/couchbase-cxx-client/couchbase/operations/management/user_upsert.hxx +0 -52
  1665. package/deps/couchbase-cxx-client/couchbase/operations/management/view.hxx +0 -23
  1666. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_drop.cxx +0 -46
  1667. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_drop.hxx +0 -52
  1668. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get.cxx +0 -74
  1669. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get.hxx +0 -53
  1670. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get_all.cxx +0 -108
  1671. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get_all.hxx +0 -52
  1672. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_upsert.cxx +0 -71
  1673. package/deps/couchbase-cxx-client/couchbase/operations/management/view_index_upsert.hxx +0 -51
  1674. package/deps/couchbase-cxx-client/couchbase/operations/mcbp_noop.cxx +0 -38
  1675. package/deps/couchbase-cxx-client/couchbase/operations/mcbp_noop.hxx +0 -49
  1676. package/deps/couchbase-cxx-client/couchbase/operations.hxx +0 -42
  1677. package/deps/couchbase-cxx-client/couchbase/origin.hxx +0 -195
  1678. package/deps/couchbase-cxx-client/couchbase/platform/CMakeLists.txt +0 -16
  1679. package/deps/couchbase-cxx-client/couchbase/platform/backtrace.c +0 -189
  1680. package/deps/couchbase-cxx-client/couchbase/platform/base64.cc +0 -234
  1681. package/deps/couchbase-cxx-client/couchbase/platform/base64.h +0 -44
  1682. package/deps/couchbase-cxx-client/couchbase/platform/dirutils.cc +0 -123
  1683. package/deps/couchbase-cxx-client/couchbase/platform/dirutils.h +0 -43
  1684. package/deps/couchbase-cxx-client/couchbase/platform/random.cc +0 -120
  1685. package/deps/couchbase-cxx-client/couchbase/platform/random.h +0 -39
  1686. package/deps/couchbase-cxx-client/couchbase/platform/string_hex.cc +0 -101
  1687. package/deps/couchbase-cxx-client/couchbase/platform/string_hex.h +0 -50
  1688. package/deps/couchbase-cxx-client/couchbase/platform/terminate_handler.cc +0 -125
  1689. package/deps/couchbase-cxx-client/couchbase/platform/terminate_handler.h +0 -36
  1690. package/deps/couchbase-cxx-client/couchbase/platform/uuid.cc +0 -98
  1691. package/deps/couchbase-cxx-client/couchbase/platform/uuid.h +0 -56
  1692. package/deps/couchbase-cxx-client/couchbase/protocol/CMakeLists.txt +0 -43
  1693. package/deps/couchbase-cxx-client/couchbase/protocol/client_opcode.hxx +0 -359
  1694. package/deps/couchbase-cxx-client/couchbase/protocol/client_opcode_fmt.hxx +0 -316
  1695. package/deps/couchbase-cxx-client/couchbase/protocol/client_request.cxx +0 -38
  1696. package/deps/couchbase-cxx-client/couchbase/protocol/client_request.hxx +0 -157
  1697. package/deps/couchbase-cxx-client/couchbase/protocol/client_response.cxx +0 -74
  1698. package/deps/couchbase-cxx-client/couchbase/protocol/client_response.hxx +0 -209
  1699. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_append.cxx +0 -69
  1700. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_append.hxx +0 -107
  1701. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_cluster_map_change_notification.cxx +0 -53
  1702. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_cluster_map_change_notification.hxx +0 -57
  1703. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_decrement.cxx +0 -91
  1704. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_decrement.hxx +0 -129
  1705. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_exists.cxx +0 -88
  1706. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_exists.hxx +0 -121
  1707. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get.cxx +0 -59
  1708. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get.hxx +0 -96
  1709. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_lock.cxx +0 -66
  1710. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_lock.hxx +0 -112
  1711. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_touch.cxx +0 -66
  1712. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_touch.hxx +0 -112
  1713. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_cluster_config.cxx +0 -85
  1714. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_cluster_config.hxx +0 -89
  1715. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collection_id.cxx +0 -60
  1716. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collection_id.hxx +0 -95
  1717. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collections_manifest.cxx +0 -51
  1718. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collections_manifest.hxx +0 -84
  1719. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_error_map.cxx +0 -61
  1720. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_error_map.hxx +0 -103
  1721. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_meta.cxx +0 -70
  1722. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_meta.hxx +0 -117
  1723. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_hello.cxx +0 -76
  1724. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_hello.hxx +0 -136
  1725. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_increment.cxx +0 -93
  1726. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_increment.hxx +0 -129
  1727. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_info.hxx +0 -29
  1728. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_insert.cxx +0 -78
  1729. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_insert.hxx +0 -123
  1730. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_lookup_in.cxx +0 -109
  1731. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_lookup_in.hxx +0 -165
  1732. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_mutate_in.cxx +0 -158
  1733. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_mutate_in.hxx +0 -311
  1734. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_noop.cxx +0 -36
  1735. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_noop.hxx +0 -75
  1736. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_prepend.cxx +0 -68
  1737. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_prepend.hxx +0 -102
  1738. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_remove.cxx +0 -69
  1739. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_remove.hxx +0 -93
  1740. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_replace.cxx +0 -87
  1741. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_replace.hxx +0 -130
  1742. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_auth.cxx +0 -61
  1743. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_auth.hxx +0 -91
  1744. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_list_mechs.cxx +0 -53
  1745. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_list_mechs.hxx +0 -82
  1746. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_step.cxx +0 -61
  1747. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_step.hxx +0 -91
  1748. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_select_bucket.cxx +0 -45
  1749. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_select_bucket.hxx +0 -79
  1750. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_touch.cxx +0 -53
  1751. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_touch.hxx +0 -84
  1752. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_unlock.cxx +0 -44
  1753. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_unlock.hxx +0 -81
  1754. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_upsert.cxx +0 -86
  1755. package/deps/couchbase-cxx-client/couchbase/protocol/cmd_upsert.hxx +0 -125
  1756. package/deps/couchbase-cxx-client/couchbase/protocol/datatype.hxx +0 -48
  1757. package/deps/couchbase-cxx-client/couchbase/protocol/durability_level.hxx +0 -59
  1758. package/deps/couchbase-cxx-client/couchbase/protocol/durability_level_fmt.hxx +0 -52
  1759. package/deps/couchbase-cxx-client/couchbase/protocol/enhanced_error_info.hxx +0 -28
  1760. package/deps/couchbase-cxx-client/couchbase/protocol/enhanced_error_info_fmt.hxx +0 -44
  1761. package/deps/couchbase-cxx-client/couchbase/protocol/frame_info_id.hxx +0 -142
  1762. package/deps/couchbase-cxx-client/couchbase/protocol/frame_info_id_fmt.hxx +0 -79
  1763. package/deps/couchbase-cxx-client/couchbase/protocol/frame_info_utils.cxx +0 -59
  1764. package/deps/couchbase-cxx-client/couchbase/protocol/frame_info_utils.hxx +0 -52
  1765. package/deps/couchbase-cxx-client/couchbase/protocol/hello_feature.hxx +0 -186
  1766. package/deps/couchbase-cxx-client/couchbase/protocol/hello_feature_fmt.hxx +0 -106
  1767. package/deps/couchbase-cxx-client/couchbase/protocol/magic.hxx +0 -53
  1768. package/deps/couchbase-cxx-client/couchbase/protocol/magic_fmt.hxx +0 -58
  1769. package/deps/couchbase-cxx-client/couchbase/protocol/server_opcode.hxx +0 -39
  1770. package/deps/couchbase-cxx-client/couchbase/protocol/server_opcode_fmt.hxx +0 -46
  1771. package/deps/couchbase-cxx-client/couchbase/protocol/server_request.hxx +0 -121
  1772. package/deps/couchbase-cxx-client/couchbase/protocol/status.cxx +0 -187
  1773. package/deps/couchbase-cxx-client/couchbase/protocol/status.hxx +0 -180
  1774. package/deps/couchbase-cxx-client/couchbase/protocol/status_fmt.hxx +0 -241
  1775. package/deps/couchbase-cxx-client/couchbase/query_profile_mode.hxx +0 -27
  1776. package/deps/couchbase-cxx-client/couchbase/query_scan_consistency.hxx +0 -23
  1777. package/deps/couchbase-cxx-client/couchbase/sasl/CMakeLists.txt +0 -16
  1778. package/deps/couchbase-cxx-client/couchbase/sasl/client.cc +0 -50
  1779. package/deps/couchbase-cxx-client/couchbase/sasl/client.h +0 -128
  1780. package/deps/couchbase-cxx-client/couchbase/sasl/context.cc +0 -34
  1781. package/deps/couchbase-cxx-client/couchbase/sasl/context.h +0 -52
  1782. package/deps/couchbase-cxx-client/couchbase/sasl/error.h +0 -28
  1783. package/deps/couchbase-cxx-client/couchbase/sasl/error_fmt.h +0 -70
  1784. package/deps/couchbase-cxx-client/couchbase/sasl/mechanism.cc +0 -45
  1785. package/deps/couchbase-cxx-client/couchbase/sasl/mechanism.h +0 -52
  1786. package/deps/couchbase-cxx-client/couchbase/sasl/plain/plain.cc +0 -39
  1787. package/deps/couchbase-cxx-client/couchbase/sasl/plain/plain.h +0 -54
  1788. package/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/scram-sha.cc +0 -372
  1789. package/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/scram-sha.h +0 -184
  1790. package/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/stringutils.cc +0 -82
  1791. package/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/stringutils.h +0 -48
  1792. package/deps/couchbase-cxx-client/couchbase/search_highlight_style.hxx +0 -23
  1793. package/deps/couchbase-cxx-client/couchbase/search_scan_consistency.hxx +0 -23
  1794. package/deps/couchbase-cxx-client/couchbase/service_type.hxx +0 -31
  1795. package/deps/couchbase-cxx-client/couchbase/service_type_fmt.hxx +0 -61
  1796. package/deps/couchbase-cxx-client/couchbase/timeout_defaults.hxx +0 -43
  1797. package/deps/couchbase-cxx-client/couchbase/topology/CMakeLists.txt +0 -9
  1798. package/deps/couchbase-cxx-client/couchbase/topology/capabilities.hxx +0 -43
  1799. package/deps/couchbase-cxx-client/couchbase/topology/capabilities_fmt.hxx +0 -106
  1800. package/deps/couchbase-cxx-client/couchbase/topology/collections_manifest.hxx +0 -43
  1801. package/deps/couchbase-cxx-client/couchbase/topology/collections_manifest_fmt.hxx +0 -52
  1802. package/deps/couchbase-cxx-client/couchbase/topology/collections_manifest_json.hxx +0 -53
  1803. package/deps/couchbase-cxx-client/couchbase/topology/configuration.cxx +0 -223
  1804. package/deps/couchbase-cxx-client/couchbase/topology/configuration.hxx +0 -120
  1805. package/deps/couchbase-cxx-client/couchbase/topology/configuration_fmt.hxx +0 -166
  1806. package/deps/couchbase-cxx-client/couchbase/topology/configuration_json.hxx +0 -259
  1807. package/deps/couchbase-cxx-client/couchbase/topology/error_map.hxx +0 -149
  1808. package/deps/couchbase-cxx-client/couchbase/topology/error_map_fmt.hxx +0 -94
  1809. package/deps/couchbase-cxx-client/couchbase/topology/error_map_json.hxx +0 -88
  1810. package/deps/couchbase-cxx-client/couchbase/tracing/CMakeLists.txt +0 -9
  1811. package/deps/couchbase-cxx-client/couchbase/tracing/constants.hxx +0 -274
  1812. package/deps/couchbase-cxx-client/couchbase/tracing/noop_tracer.hxx +0 -55
  1813. package/deps/couchbase-cxx-client/couchbase/tracing/request_tracer.hxx +0 -79
  1814. package/deps/couchbase-cxx-client/couchbase/tracing/threshold_logging_options.hxx +0 -68
  1815. package/deps/couchbase-cxx-client/couchbase/tracing/threshold_logging_tracer.cxx +0 -422
  1816. package/deps/couchbase-cxx-client/couchbase/tracing/threshold_logging_tracer.hxx +0 -49
  1817. package/deps/couchbase-cxx-client/couchbase/utils/CMakeLists.txt +0 -18
  1818. package/deps/couchbase-cxx-client/couchbase/utils/binary.cxx +0 -27
  1819. package/deps/couchbase-cxx-client/couchbase/utils/binary.hxx +0 -57
  1820. package/deps/couchbase-cxx-client/couchbase/utils/byteswap.hxx +0 -49
  1821. package/deps/couchbase-cxx-client/couchbase/utils/connection_string.cxx +0 -420
  1822. package/deps/couchbase-cxx-client/couchbase/utils/connection_string.hxx +0 -76
  1823. package/deps/couchbase-cxx-client/couchbase/utils/crc32.hxx +0 -48
  1824. package/deps/couchbase-cxx-client/couchbase/utils/duration_parser.cxx +0 -193
  1825. package/deps/couchbase-cxx-client/couchbase/utils/duration_parser.hxx +0 -45
  1826. package/deps/couchbase-cxx-client/couchbase/utils/join_strings.hxx +0 -65
  1827. package/deps/couchbase-cxx-client/couchbase/utils/json.cxx +0 -281
  1828. package/deps/couchbase-cxx-client/couchbase/utils/json.hxx +0 -40
  1829. package/deps/couchbase-cxx-client/couchbase/utils/json_stream_control.hxx +0 -32
  1830. package/deps/couchbase-cxx-client/couchbase/utils/json_streaming_lexer.cxx +0 -398
  1831. package/deps/couchbase-cxx-client/couchbase/utils/json_streaming_lexer.hxx +0 -58
  1832. package/deps/couchbase-cxx-client/couchbase/utils/movable_function.hxx +0 -110
  1833. package/deps/couchbase-cxx-client/couchbase/utils/name_codec.hxx +0 -41
  1834. package/deps/couchbase-cxx-client/couchbase/utils/unsigned_leb128.hxx +0 -181
  1835. package/deps/couchbase-cxx-client/couchbase/utils/url_codec.cxx +0 -404
  1836. package/deps/couchbase-cxx-client/couchbase/utils/url_codec.hxx +0 -72
  1837. package/deps/couchbase-cxx-client/couchbase/view_scan_consistency.hxx +0 -27
  1838. package/deps/couchbase-cxx-client/couchbase/view_sort_order.hxx +0 -23
  1839. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/analytics_scan_consistency.hxx +0 -26
  1840. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/capella_ca.hxx +0 -43
  1841. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/cas_fmt.hxx +0 -37
  1842. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/cluster.cxx +0 -124
  1843. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/cluster_options.cxx +0 -45
  1844. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/cluster_options.hxx +0 -78
  1845. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/crypto/CMakeLists.txt +0 -12
  1846. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/crypto/cbcrypto.cc +0 -887
  1847. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/crypto/cbcrypto.h +0 -88
  1848. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/design_document_namespace.hxx +0 -26
  1849. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/design_document_namespace_fmt.hxx +0 -47
  1850. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/diagnostics.hxx +0 -97
  1851. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/diagnostics_fmt.hxx +0 -113
  1852. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/diagnostics_json.hxx +0 -100
  1853. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/document_id.cxx +0 -106
  1854. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/document_id.hxx +0 -107
  1855. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/document_id_fmt.hxx +0 -37
  1856. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context/analytics.hxx +0 -51
  1857. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context/http.hxx +0 -47
  1858. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context/key_value.hxx +0 -50
  1859. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context/query.hxx +0 -51
  1860. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context/search.hxx +0 -50
  1861. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/error_context/view.hxx +0 -51
  1862. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/errors.hxx +0 -1038
  1863. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/CMakeLists.txt +0 -12
  1864. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/dns_client.hxx +0 -217
  1865. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/dns_codec.hxx +0 -206
  1866. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/dns_config.hxx +0 -115
  1867. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/dns_message.hxx +0 -555
  1868. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_command.hxx +0 -174
  1869. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_context.hxx +0 -40
  1870. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_message.hxx +0 -116
  1871. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_parser.cxx +0 -141
  1872. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_parser.hxx +0 -55
  1873. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_session.hxx +0 -548
  1874. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_session_manager.hxx +0 -381
  1875. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/http_traits.hxx +0 -30
  1876. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/ip_protocol.hxx +0 -28
  1877. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_command.hxx +0 -300
  1878. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_context.hxx +0 -39
  1879. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_message.cxx +0 -39
  1880. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_message.hxx +0 -55
  1881. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_parser.cxx +0 -88
  1882. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_parser.hxx +0 -45
  1883. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_session.hxx +0 -1333
  1884. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/mcbp_traits.hxx +0 -30
  1885. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/query_cache.hxx +0 -61
  1886. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/retry_action.hxx +0 -30
  1887. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/retry_context.hxx +0 -38
  1888. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/retry_orchestrator.hxx +0 -112
  1889. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/retry_reason.hxx +0 -158
  1890. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/retry_reason_fmt.hxx +0 -103
  1891. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/retry_strategy.hxx +0 -152
  1892. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/io/streams.hxx +0 -253
  1893. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/json_string.hxx +0 -48
  1894. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/logger/CMakeLists.txt +0 -9
  1895. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/logger/configuration.hxx +0 -57
  1896. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/logger/custom_rotating_file_sink.cxx +0 -157
  1897. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/logger/logger.cxx +0 -340
  1898. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/logger/logger.hxx +0 -235
  1899. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/CMakeLists.txt +0 -13
  1900. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_dataset.hxx +0 -30
  1901. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_index.hxx +0 -30
  1902. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link.hxx +0 -22
  1903. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_azure_blob_external.cxx +0 -67
  1904. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_azure_blob_external.hxx +0 -76
  1905. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_azure_blob_external_json.hxx +0 -52
  1906. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_couchbase_remote.cxx +0 -104
  1907. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_couchbase_remote.hxx +0 -107
  1908. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_couchbase_remote_json.hxx +0 -63
  1909. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_s3_external.cxx +0 -57
  1910. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_s3_external.hxx +0 -69
  1911. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/analytics_link_s3_external_json.hxx +0 -47
  1912. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/bucket_settings.hxx +0 -134
  1913. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/bucket_settings_json.hxx +0 -123
  1914. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/design_document.hxx +0 -41
  1915. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/eventing_function.hxx +0 -188
  1916. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/eventing_function_json.hxx +0 -212
  1917. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/eventing_status.hxx +0 -84
  1918. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/eventing_status_json.hxx +0 -77
  1919. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/query_index.hxx +0 -39
  1920. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/rbac.hxx +0 -77
  1921. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/rbac_fmt.hxx +0 -49
  1922. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/rbac_json.hxx +0 -179
  1923. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/search_index.hxx +0 -38
  1924. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/management/search_index_json.hxx +0 -58
  1925. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/meta/CMakeLists.txt +0 -15
  1926. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/meta/version.cxx +0 -188
  1927. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/meta/version.hxx +0 -45
  1928. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/CMakeLists.txt +0 -11
  1929. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/logging_meter.cxx +0 -194
  1930. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/logging_meter.hxx +0 -74
  1931. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/logging_meter_options.hxx +0 -28
  1932. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/meter.hxx +0 -52
  1933. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/metrics/noop_meter.hxx +0 -47
  1934. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/mutation_token_fmt.hxx +0 -37
  1935. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/CMakeLists.txt +0 -35
  1936. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_analytics.cxx +0 -195
  1937. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_analytics.hxx +0 -92
  1938. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_append.cxx +0 -46
  1939. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_append.hxx +0 -63
  1940. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_decrement.cxx +0 -54
  1941. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_decrement.hxx +0 -66
  1942. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_exists.cxx +0 -49
  1943. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_exists.hxx +0 -61
  1944. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get.cxx +0 -44
  1945. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get.hxx +0 -53
  1946. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get_and_lock.cxx +0 -45
  1947. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get_and_lock.hxx +0 -54
  1948. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get_and_touch.cxx +0 -45
  1949. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get_and_touch.hxx +0 -54
  1950. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get_projected.cxx +0 -230
  1951. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_get_projected.hxx +0 -58
  1952. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_increment.cxx +0 -54
  1953. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_increment.hxx +0 -66
  1954. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_insert.cxx +0 -48
  1955. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_insert.hxx +0 -65
  1956. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_lookup_in.cxx +0 -81
  1957. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_lookup_in.hxx +0 -64
  1958. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_mutate_in.cxx +0 -104
  1959. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_mutate_in.hxx +0 -82
  1960. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_prepend.cxx +0 -46
  1961. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_prepend.hxx +0 -63
  1962. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_query.cxx +0 -382
  1963. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_query.hxx +0 -123
  1964. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_remove.cxx +0 -46
  1965. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_remove.hxx +0 -63
  1966. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_replace.cxx +0 -52
  1967. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_replace.hxx +0 -67
  1968. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_search.cxx +0 -311
  1969. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_search.hxx +0 -153
  1970. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_touch.cxx +0 -43
  1971. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_touch.hxx +0 -52
  1972. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_unlock.cxx +0 -43
  1973. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_unlock.hxx +0 -52
  1974. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_upsert.cxx +0 -52
  1975. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_upsert.hxx +0 -66
  1976. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_view.cxx +0 -186
  1977. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/document_view.hxx +0 -98
  1978. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/http_noop.cxx +0 -64
  1979. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/http_noop.hxx +0 -48
  1980. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/CMakeLists.txt +0 -79
  1981. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics.hxx +0 -34
  1982. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_create.cxx +0 -94
  1983. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_create.hxx +0 -57
  1984. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_drop.cxx +0 -83
  1985. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_drop.hxx +0 -54
  1986. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_get_all.cxx +0 -79
  1987. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataset_get_all.hxx +0 -52
  1988. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_create.cxx +0 -82
  1989. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_create.hxx +0 -53
  1990. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_drop.cxx +0 -82
  1991. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_dataverse_drop.hxx +0 -53
  1992. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_get_pending_mutations.cxx +0 -70
  1993. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_get_pending_mutations.hxx +0 -52
  1994. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_create.cxx +0 -106
  1995. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_create.hxx +0 -56
  1996. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_drop.cxx +0 -90
  1997. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_drop.hxx +0 -55
  1998. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_get_all.cxx +0 -80
  1999. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_index_get_all.hxx +0 -52
  2000. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_connect.cxx +0 -82
  2001. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_connect.hxx +0 -57
  2002. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_create.cxx +0 -87
  2003. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_create.hxx +0 -77
  2004. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_disconnect.cxx +0 -80
  2005. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_disconnect.hxx +0 -56
  2006. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_drop.cxx +0 -103
  2007. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_drop.hxx +0 -56
  2008. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_get_all.cxx +0 -129
  2009. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_get_all.hxx +0 -63
  2010. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_replace.cxx +0 -87
  2011. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_replace.hxx +0 -78
  2012. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_link_utils.hxx +0 -37
  2013. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/analytics_problem.hxx +0 -30
  2014. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket.hxx +0 -25
  2015. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_create.cxx +0 -171
  2016. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_create.hxx +0 -52
  2017. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_describe.cxx +0 -67
  2018. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_describe.hxx +0 -61
  2019. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_drop.cxx +0 -52
  2020. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_drop.hxx +0 -49
  2021. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_flush.cxx +0 -59
  2022. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_flush.hxx +0 -49
  2023. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get.cxx +0 -59
  2024. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get.hxx +0 -51
  2025. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get_all.cxx +0 -59
  2026. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_get_all.hxx +0 -49
  2027. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_update.cxx +0 -130
  2028. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/bucket_update.hxx +0 -52
  2029. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/cluster_describe.cxx +0 -90
  2030. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/cluster_describe.hxx +0 -72
  2031. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/cluster_developer_preview_enable.cxx +0 -44
  2032. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/cluster_developer_preview_enable.hxx +0 -48
  2033. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collection_create.cxx +0 -83
  2034. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collection_create.hxx +0 -53
  2035. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collection_drop.cxx +0 -73
  2036. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collection_drop.hxx +0 -52
  2037. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collections.hxx +0 -25
  2038. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collections_manifest_get.cxx +0 -40
  2039. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/collections_manifest_get.hxx +0 -53
  2040. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/error_utils.cxx +0 -267
  2041. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/error_utils.hxx +0 -48
  2042. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing.hxx +0 -28
  2043. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_deploy_function.cxx +0 -56
  2044. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_deploy_function.hxx +0 -52
  2045. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_drop_function.cxx +0 -57
  2046. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_drop_function.hxx +0 -52
  2047. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_all_functions.cxx +0 -64
  2048. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_all_functions.hxx +0 -51
  2049. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_function.cxx +0 -56
  2050. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_function.hxx +0 -53
  2051. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_status.cxx +0 -56
  2052. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_get_status.hxx +0 -53
  2053. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_pause_function.cxx +0 -56
  2054. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_pause_function.hxx +0 -52
  2055. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_problem.hxx +0 -31
  2056. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_resume_function.cxx +0 -56
  2057. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_resume_function.hxx +0 -52
  2058. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_undeploy_function.cxx +0 -56
  2059. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_undeploy_function.hxx +0 -52
  2060. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_upsert_function.cxx +0 -341
  2061. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/eventing_upsert_function.hxx +0 -52
  2062. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/freeform.cxx +0 -55
  2063. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/freeform.hxx +0 -55
  2064. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_drop.cxx +0 -51
  2065. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_drop.hxx +0 -49
  2066. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_get.cxx +0 -60
  2067. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_get.hxx +0 -50
  2068. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_get_all.cxx +0 -58
  2069. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_get_all.hxx +0 -49
  2070. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_upsert.cxx +0 -96
  2071. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/group_upsert.hxx +0 -51
  2072. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query.hxx +0 -23
  2073. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_build_deferred.cxx +0 -88
  2074. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_build_deferred.hxx +0 -61
  2075. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_create.cxx +0 -149
  2076. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_create.hxx +0 -65
  2077. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_drop.cxx +0 -129
  2078. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_drop.hxx +0 -61
  2079. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_get_all.cxx +0 -126
  2080. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/query_index_get_all.hxx +0 -54
  2081. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/role_get_all.cxx +0 -58
  2082. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/role_get_all.hxx +0 -49
  2083. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/scope_create.cxx +0 -75
  2084. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/scope_create.hxx +0 -51
  2085. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/scope_drop.cxx +0 -70
  2086. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/scope_drop.hxx +0 -51
  2087. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/scope_get_all.cxx +0 -62
  2088. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/scope_get_all.hxx +0 -51
  2089. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search.hxx +0 -30
  2090. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_get_stats.cxx +0 -41
  2091. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_get_stats.hxx +0 -48
  2092. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_analyze_document.cxx +0 -85
  2093. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_analyze_document.hxx +0 -54
  2094. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_ingest.cxx +0 -73
  2095. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_ingest.hxx +0 -52
  2096. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_plan_freeze.cxx +0 -73
  2097. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_plan_freeze.hxx +0 -57
  2098. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_query.cxx +0 -73
  2099. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_control_query.hxx +0 -52
  2100. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_drop.cxx +0 -72
  2101. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_drop.hxx +0 -51
  2102. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get.cxx +0 -75
  2103. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get.hxx +0 -54
  2104. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_all.cxx +0 -67
  2105. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_all.hxx +0 -51
  2106. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_documents_count.cxx +0 -79
  2107. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_documents_count.hxx +0 -53
  2108. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_stats.cxx +0 -71
  2109. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_get_stats.hxx +0 -52
  2110. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_upsert.cxx +0 -108
  2111. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/search_index_upsert.hxx +0 -52
  2112. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user.hxx +0 -28
  2113. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_drop.cxx +0 -52
  2114. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_drop.hxx +0 -51
  2115. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_get.cxx +0 -61
  2116. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_get.hxx +0 -52
  2117. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_get_all.cxx +0 -59
  2118. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_get_all.hxx +0 -51
  2119. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_upsert.cxx +0 -101
  2120. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/user_upsert.hxx +0 -52
  2121. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view.hxx +0 -23
  2122. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_drop.cxx +0 -46
  2123. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_drop.hxx +0 -52
  2124. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get.cxx +0 -74
  2125. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get.hxx +0 -53
  2126. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get_all.cxx +0 -108
  2127. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_get_all.hxx +0 -52
  2128. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_upsert.cxx +0 -71
  2129. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/management/view_index_upsert.hxx +0 -51
  2130. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/mcbp_noop.cxx +0 -38
  2131. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations/mcbp_noop.hxx +0 -49
  2132. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/operations.hxx +0 -42
  2133. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/origin.hxx +0 -195
  2134. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/CMakeLists.txt +0 -16
  2135. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/backtrace.c +0 -189
  2136. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/base64.cc +0 -234
  2137. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/base64.h +0 -44
  2138. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/dirutils.cc +0 -123
  2139. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/dirutils.h +0 -43
  2140. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/random.cc +0 -120
  2141. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/random.h +0 -39
  2142. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/string_hex.cc +0 -101
  2143. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/string_hex.h +0 -50
  2144. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/terminate_handler.cc +0 -125
  2145. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/terminate_handler.h +0 -36
  2146. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/uuid.cc +0 -98
  2147. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/platform/uuid.h +0 -56
  2148. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/CMakeLists.txt +0 -43
  2149. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/client_opcode.hxx +0 -359
  2150. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/client_opcode_fmt.hxx +0 -316
  2151. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/client_request.cxx +0 -38
  2152. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/client_request.hxx +0 -157
  2153. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/client_response.cxx +0 -74
  2154. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/client_response.hxx +0 -209
  2155. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_append.cxx +0 -69
  2156. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_append.hxx +0 -107
  2157. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_cluster_map_change_notification.cxx +0 -53
  2158. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_cluster_map_change_notification.hxx +0 -57
  2159. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_decrement.cxx +0 -91
  2160. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_decrement.hxx +0 -129
  2161. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_exists.cxx +0 -88
  2162. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_exists.hxx +0 -121
  2163. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get.cxx +0 -59
  2164. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get.hxx +0 -96
  2165. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_lock.cxx +0 -66
  2166. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_lock.hxx +0 -112
  2167. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_touch.cxx +0 -66
  2168. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_and_touch.hxx +0 -112
  2169. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_cluster_config.cxx +0 -85
  2170. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_cluster_config.hxx +0 -89
  2171. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collection_id.cxx +0 -60
  2172. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collection_id.hxx +0 -95
  2173. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collections_manifest.cxx +0 -51
  2174. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_collections_manifest.hxx +0 -84
  2175. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_error_map.cxx +0 -61
  2176. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_error_map.hxx +0 -103
  2177. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_meta.cxx +0 -70
  2178. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_get_meta.hxx +0 -117
  2179. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_hello.cxx +0 -76
  2180. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_hello.hxx +0 -136
  2181. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_increment.cxx +0 -93
  2182. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_increment.hxx +0 -129
  2183. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_info.hxx +0 -29
  2184. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_insert.cxx +0 -78
  2185. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_insert.hxx +0 -123
  2186. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_lookup_in.cxx +0 -109
  2187. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_lookup_in.hxx +0 -165
  2188. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_mutate_in.cxx +0 -158
  2189. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_mutate_in.hxx +0 -311
  2190. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_noop.cxx +0 -36
  2191. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_noop.hxx +0 -75
  2192. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_prepend.cxx +0 -68
  2193. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_prepend.hxx +0 -102
  2194. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_remove.cxx +0 -69
  2195. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_remove.hxx +0 -93
  2196. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_replace.cxx +0 -87
  2197. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_replace.hxx +0 -130
  2198. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_auth.cxx +0 -61
  2199. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_auth.hxx +0 -91
  2200. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_list_mechs.cxx +0 -53
  2201. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_list_mechs.hxx +0 -82
  2202. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_step.cxx +0 -61
  2203. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_sasl_step.hxx +0 -91
  2204. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_select_bucket.cxx +0 -45
  2205. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_select_bucket.hxx +0 -79
  2206. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_touch.cxx +0 -53
  2207. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_touch.hxx +0 -84
  2208. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_unlock.cxx +0 -44
  2209. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_unlock.hxx +0 -81
  2210. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_upsert.cxx +0 -86
  2211. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/cmd_upsert.hxx +0 -125
  2212. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/datatype.hxx +0 -48
  2213. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/durability_level.hxx +0 -59
  2214. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/durability_level_fmt.hxx +0 -52
  2215. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/enhanced_error_info.hxx +0 -28
  2216. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/enhanced_error_info_fmt.hxx +0 -44
  2217. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/frame_info_id.hxx +0 -142
  2218. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/frame_info_id_fmt.hxx +0 -79
  2219. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/frame_info_utils.cxx +0 -59
  2220. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/frame_info_utils.hxx +0 -52
  2221. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/hello_feature.hxx +0 -186
  2222. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/hello_feature_fmt.hxx +0 -106
  2223. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/magic.hxx +0 -53
  2224. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/magic_fmt.hxx +0 -58
  2225. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/server_opcode.hxx +0 -39
  2226. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/server_opcode_fmt.hxx +0 -46
  2227. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/server_request.hxx +0 -121
  2228. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/status.cxx +0 -187
  2229. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/status.hxx +0 -180
  2230. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/protocol/status_fmt.hxx +0 -241
  2231. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/query_profile_mode.hxx +0 -27
  2232. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/query_scan_consistency.hxx +0 -23
  2233. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/CMakeLists.txt +0 -16
  2234. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/client.cc +0 -50
  2235. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/client.h +0 -128
  2236. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/context.cc +0 -34
  2237. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/context.h +0 -52
  2238. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/error.h +0 -28
  2239. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/error_fmt.h +0 -70
  2240. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/mechanism.cc +0 -45
  2241. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/mechanism.h +0 -52
  2242. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/plain/plain.cc +0 -39
  2243. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/plain/plain.h +0 -54
  2244. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/scram-sha.cc +0 -372
  2245. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/scram-sha.h +0 -184
  2246. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/stringutils.cc +0 -82
  2247. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/sasl/scram-sha/stringutils.h +0 -48
  2248. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/search_highlight_style.hxx +0 -23
  2249. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/search_scan_consistency.hxx +0 -23
  2250. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/service_type.hxx +0 -31
  2251. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/service_type_fmt.hxx +0 -61
  2252. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/timeout_defaults.hxx +0 -43
  2253. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/CMakeLists.txt +0 -9
  2254. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/capabilities.hxx +0 -43
  2255. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/capabilities_fmt.hxx +0 -106
  2256. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/collections_manifest.hxx +0 -43
  2257. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/collections_manifest_fmt.hxx +0 -52
  2258. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/collections_manifest_json.hxx +0 -53
  2259. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/configuration.cxx +0 -223
  2260. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/configuration.hxx +0 -120
  2261. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/configuration_fmt.hxx +0 -166
  2262. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/configuration_json.hxx +0 -259
  2263. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/error_map.hxx +0 -149
  2264. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/error_map_fmt.hxx +0 -94
  2265. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/topology/error_map_json.hxx +0 -88
  2266. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/CMakeLists.txt +0 -9
  2267. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/constants.hxx +0 -274
  2268. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/noop_tracer.hxx +0 -55
  2269. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/request_tracer.hxx +0 -79
  2270. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/threshold_logging_options.hxx +0 -68
  2271. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/threshold_logging_tracer.cxx +0 -422
  2272. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/tracing/threshold_logging_tracer.hxx +0 -49
  2273. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/CMakeLists.txt +0 -18
  2274. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/binary.cxx +0 -27
  2275. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/binary.hxx +0 -57
  2276. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/byteswap.hxx +0 -49
  2277. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/connection_string.cxx +0 -420
  2278. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/connection_string.hxx +0 -76
  2279. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/crc32.hxx +0 -48
  2280. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/duration_parser.cxx +0 -193
  2281. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/duration_parser.hxx +0 -45
  2282. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/join_strings.hxx +0 -65
  2283. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/json.cxx +0 -281
  2284. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/json.hxx +0 -40
  2285. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/json_stream_control.hxx +0 -32
  2286. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/json_streaming_lexer.cxx +0 -398
  2287. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/json_streaming_lexer.hxx +0 -58
  2288. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/movable_function.hxx +0 -110
  2289. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/name_codec.hxx +0 -41
  2290. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/unsigned_leb128.hxx +0 -181
  2291. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/url_codec.cxx +0 -404
  2292. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/utils/url_codec.hxx +0 -72
  2293. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/view_scan_consistency.hxx +0 -27
  2294. package/deps/couchbase-transactions-cxx/deps/couchbase-cxx-client/couchbase/view_sort_order.hxx +0 -23
@@ -0,0 +1,2663 @@
1
+ # Doxyfile 1.9.1
2
+
3
+ # This file describes the settings to be used by the documentation system
4
+ # doxygen (www.doxygen.org) for a project.
5
+ #
6
+ # All text after a double hash (##) is considered a comment and is placed in
7
+ # front of the TAG it is preceding.
8
+ #
9
+ # All text after a single hash (#) is considered a comment and will be ignored.
10
+ # The format is:
11
+ # TAG = value [value, ...]
12
+ # For lists, items can also be appended using:
13
+ # TAG += value [value, ...]
14
+ # Values that contain spaces should be placed between quotes (\" \").
15
+
16
+ #---------------------------------------------------------------------------
17
+ # Project related configuration options
18
+ #---------------------------------------------------------------------------
19
+
20
+ # This tag specifies the encoding used for all characters in the configuration
21
+ # file that follow. The default is UTF-8 which is also the encoding used for all
22
+ # text before the first occurrence of this tag. Doxygen uses libiconv (or the
23
+ # iconv built into libc) for the transcoding. See
24
+ # https://www.gnu.org/software/libiconv/ for the list of possible encodings.
25
+ # The default value is: UTF-8.
26
+
27
+ DOXYFILE_ENCODING = UTF-8
28
+
29
+ # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
30
+ # double-quotes, unless you are using Doxywizard) that should identify the
31
+ # project for which the documentation is generated. This name is used in the
32
+ # title of most generated pages and in a few other places.
33
+ # The default value is: My Project.
34
+
35
+ PROJECT_NAME = "Couchbase C++ SDK"
36
+
37
+ # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
38
+ # could be handy for archiving the generated documentation or if some version
39
+ # control system is used.
40
+
41
+ PROJECT_NUMBER = @couchbase_cxx_client_VERSION@ (rev. @COUCHBASE_CXX_CLIENT_GIT_REVISION_SHORT@)
42
+
43
+ # Using the PROJECT_BRIEF tag one can provide an optional one line description
44
+ # for a project that appears at the top of each page and should give viewer a
45
+ # quick idea about the purpose of the project. Keep the description short.
46
+
47
+ PROJECT_BRIEF =
48
+
49
+ # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
50
+ # in the documentation. The maximum height of the logo should not exceed 55
51
+ # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
52
+ # the logo to the output directory.
53
+
54
+ PROJECT_LOGO =
55
+
56
+ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
57
+ # into which the generated documentation will be written. If a relative path is
58
+ # entered, it will be relative to the location where doxygen was started. If
59
+ # left blank the current directory will be used.
60
+
61
+ OUTPUT_DIRECTORY = ${DOXYGEN_OUTPUT_DIR}
62
+
63
+ # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
64
+ # directories (in 2 levels) under the output directory of each output format and
65
+ # will distribute the generated files over these directories. Enabling this
66
+ # option can be useful when feeding doxygen a huge amount of source files, where
67
+ # putting all generated files in the same directory would otherwise causes
68
+ # performance problems for the file system.
69
+ # The default value is: NO.
70
+
71
+ CREATE_SUBDIRS = NO
72
+
73
+ # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74
+ # characters to appear in the names of generated files. If set to NO, non-ASCII
75
+ # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
76
+ # U+3044.
77
+ # The default value is: NO.
78
+
79
+ ALLOW_UNICODE_NAMES = NO
80
+
81
+ # The OUTPUT_LANGUAGE tag is used to specify the language in which all
82
+ # documentation generated by doxygen is written. Doxygen will use this
83
+ # information to generate all constant output in the proper language.
84
+ # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
85
+ # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
86
+ # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
87
+ # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
88
+ # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
89
+ # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
90
+ # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
91
+ # Ukrainian and Vietnamese.
92
+ # The default value is: English.
93
+
94
+ OUTPUT_LANGUAGE = English
95
+
96
+ # The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all
97
+ # documentation generated by doxygen is written. Doxygen will use this
98
+ # information to generate all generated output in the proper direction.
99
+ # Possible values are: None, LTR, RTL and Context.
100
+ # The default value is: None.
101
+
102
+ OUTPUT_TEXT_DIRECTION = None
103
+
104
+ # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
105
+ # descriptions after the members that are listed in the file and class
106
+ # documentation (similar to Javadoc). Set to NO to disable this.
107
+ # The default value is: YES.
108
+
109
+ BRIEF_MEMBER_DESC = YES
110
+
111
+ # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
112
+ # description of a member or function before the detailed description
113
+ #
114
+ # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
115
+ # brief descriptions will be completely suppressed.
116
+ # The default value is: YES.
117
+
118
+ REPEAT_BRIEF = YES
119
+
120
+ # This tag implements a quasi-intelligent brief description abbreviator that is
121
+ # used to form the text in various listings. Each string in this list, if found
122
+ # as the leading text of the brief description, will be stripped from the text
123
+ # and the result, after processing the whole list, is used as the annotated
124
+ # text. Otherwise, the brief description is used as-is. If left blank, the
125
+ # following values are used ($name is automatically replaced with the name of
126
+ # the entity):The $name class, The $name widget, The $name file, is, provides,
127
+ # specifies, contains, represents, a, an and the.
128
+
129
+ ABBREVIATE_BRIEF = "The $name class" \
130
+ "The $name widget" \
131
+ "The $name file" \
132
+ is \
133
+ provides \
134
+ specifies \
135
+ contains \
136
+ represents \
137
+ a \
138
+ an \
139
+ the
140
+
141
+ # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
142
+ # doxygen will generate a detailed section even if there is only a brief
143
+ # description.
144
+ # The default value is: NO.
145
+
146
+ ALWAYS_DETAILED_SEC = NO
147
+
148
+ # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
149
+ # inherited members of a class in the documentation of that class as if those
150
+ # members were ordinary class members. Constructors, destructors and assignment
151
+ # operators of the base classes will not be shown.
152
+ # The default value is: NO.
153
+
154
+ INLINE_INHERITED_MEMB = NO
155
+
156
+ # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
157
+ # before files name in the file list and in the header files. If set to NO the
158
+ # shortest path that makes the file name unique will be used
159
+ # The default value is: YES.
160
+
161
+ FULL_PATH_NAMES = YES
162
+
163
+ # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
164
+ # Stripping is only done if one of the specified strings matches the left-hand
165
+ # part of the path. The tag can be used to show relative paths in the file list.
166
+ # If left blank the directory from which doxygen is run is used as the path to
167
+ # strip.
168
+ #
169
+ # Note that you can specify absolute paths here, but also relative paths, which
170
+ # will be relative from the directory where doxygen is started.
171
+ # This tag requires that the tag FULL_PATH_NAMES is set to YES.
172
+
173
+ STRIP_FROM_PATH = ${PROJECT_SOURCE_DIR}/
174
+
175
+ # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
176
+ # path mentioned in the documentation of a class, which tells the reader which
177
+ # header file to include in order to use a class. If left blank only the name of
178
+ # the header file containing the class definition is used. Otherwise one should
179
+ # specify the list of include paths that are normally passed to the compiler
180
+ # using the -I flag.
181
+
182
+ STRIP_FROM_INC_PATH = ${PROJECT_SOURCE_DIR}/
183
+
184
+ # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
185
+ # less readable) file names. This can be useful is your file systems doesn't
186
+ # support long names like on DOS, Mac, or CD-ROM.
187
+ # The default value is: NO.
188
+
189
+ SHORT_NAMES = NO
190
+
191
+ # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
192
+ # first line (until the first dot) of a Javadoc-style comment as the brief
193
+ # description. If set to NO, the Javadoc-style will behave just like regular Qt-
194
+ # style comments (thus requiring an explicit @brief command for a brief
195
+ # description.)
196
+ # The default value is: NO.
197
+
198
+ JAVADOC_AUTOBRIEF = YES
199
+
200
+ # If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line
201
+ # such as
202
+ # /***************
203
+ # as being the beginning of a Javadoc-style comment "banner". If set to NO, the
204
+ # Javadoc-style will behave just like regular comments and it will not be
205
+ # interpreted by doxygen.
206
+ # The default value is: NO.
207
+
208
+ JAVADOC_BANNER = NO
209
+
210
+ # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
211
+ # line (until the first dot) of a Qt-style comment as the brief description. If
212
+ # set to NO, the Qt-style will behave just like regular Qt-style comments (thus
213
+ # requiring an explicit \brief command for a brief description.)
214
+ # The default value is: NO.
215
+
216
+ QT_AUTOBRIEF = NO
217
+
218
+ # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
219
+ # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
220
+ # a brief description. This used to be the default behavior. The new default is
221
+ # to treat a multi-line C++ comment block as a detailed description. Set this
222
+ # tag to YES if you prefer the old behavior instead.
223
+ #
224
+ # Note that setting this tag to YES also means that rational rose comments are
225
+ # not recognized any more.
226
+ # The default value is: NO.
227
+
228
+ MULTILINE_CPP_IS_BRIEF = NO
229
+
230
+ # By default Python docstrings are displayed as preformatted text and doxygen's
231
+ # special commands cannot be used. By setting PYTHON_DOCSTRING to NO the
232
+ # doxygen's special commands can be used and the contents of the docstring
233
+ # documentation blocks is shown as doxygen documentation.
234
+ # The default value is: YES.
235
+
236
+ PYTHON_DOCSTRING = YES
237
+
238
+ # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
239
+ # documentation from any documented member that it re-implements.
240
+ # The default value is: YES.
241
+
242
+ INHERIT_DOCS = YES
243
+
244
+ # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
245
+ # page for each member. If set to NO, the documentation of a member will be part
246
+ # of the file/class/namespace that contains it.
247
+ # The default value is: NO.
248
+
249
+ SEPARATE_MEMBER_PAGES = NO
250
+
251
+ # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
252
+ # uses this value to replace tabs by spaces in code fragments.
253
+ # Minimum value: 1, maximum value: 16, default value: 4.
254
+
255
+ TAB_SIZE = 4
256
+
257
+ # This tag can be used to specify a number of aliases that act as commands in
258
+ # the documentation. An alias has the form:
259
+ # name=value
260
+ # For example adding
261
+ # "sideeffect=@par Side Effects:\n"
262
+ # will allow you to put the command \sideeffect (or @sideeffect) in the
263
+ # documentation, which will result in a user-defined paragraph with heading
264
+ # "Side Effects:". You can put \n's in the value part of an alias to insert
265
+ # newlines (in the resulting output). You can put ^^ in the value part of an
266
+ # alias to insert a newline as if a physical newline was in the original file.
267
+ # When you need a literal { or } or , in the value part of an alias you have to
268
+ # escape them by means of a backslash (\), this can lead to conflicts with the
269
+ # commands \{ and \} for these it is advised to use the version @{ and @} or use
270
+ # a double escape (\\{ and \\})
271
+
272
+ ALIASES = "committed=\xrefitem stability_committed \"Committed\" \"Committed Interfaces\" Generally available API and should be preferred in production" \
273
+ "uncommitted=\xrefitem stability_uncomitted \"Uncommitted\" \"Uncommitted Interfaces\" Might be changed in the future, and eventually promoted to committed" \
274
+ "volatile=\xrefitem stability_volatile \"Volatile\" \"Volatile Interfaces\" Should not be used in production" \
275
+ "internal=\xrefitem stability_internal \"Internal\" \"Internal Interfaces\" Internal interface" \
276
+
277
+
278
+ # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
279
+ # only. Doxygen will then generate output that is more tailored for C. For
280
+ # instance, some of the names that are used will be different. The list of all
281
+ # members will be omitted, etc.
282
+ # The default value is: NO.
283
+
284
+ OPTIMIZE_OUTPUT_FOR_C = NO
285
+
286
+ # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
287
+ # Python sources only. Doxygen will then generate output that is more tailored
288
+ # for that language. For instance, namespaces will be presented as packages,
289
+ # qualified scopes will look different, etc.
290
+ # The default value is: NO.
291
+
292
+ OPTIMIZE_OUTPUT_JAVA = NO
293
+
294
+ # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
295
+ # sources. Doxygen will then generate output that is tailored for Fortran.
296
+ # The default value is: NO.
297
+
298
+ OPTIMIZE_FOR_FORTRAN = NO
299
+
300
+ # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
301
+ # sources. Doxygen will then generate output that is tailored for VHDL.
302
+ # The default value is: NO.
303
+
304
+ OPTIMIZE_OUTPUT_VHDL = NO
305
+
306
+ # Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
307
+ # sources only. Doxygen will then generate output that is more tailored for that
308
+ # language. For instance, namespaces will be presented as modules, types will be
309
+ # separated into more groups, etc.
310
+ # The default value is: NO.
311
+
312
+ OPTIMIZE_OUTPUT_SLICE = NO
313
+
314
+ # Doxygen selects the parser to use depending on the extension of the files it
315
+ # parses. With this tag you can assign which parser to use for a given
316
+ # extension. Doxygen has a built-in mapping, but you can override or extend it
317
+ # using this tag. The format is ext=language, where ext is a file extension, and
318
+ # language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
319
+ # Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL,
320
+ # Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
321
+ # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
322
+ # tries to guess whether the code is fixed or free formatted code, this is the
323
+ # default for Fortran type files). For instance to make doxygen treat .inc files
324
+ # as Fortran files (default is PHP), and .f files as C (default is Fortran),
325
+ # use: inc=Fortran f=C.
326
+ #
327
+ # Note: For files without extension you can use no_extension as a placeholder.
328
+ #
329
+ # Note that for custom extensions you also need to set FILE_PATTERNS otherwise
330
+ # the files are not read by doxygen. When specifying no_extension you should add
331
+ # * to the FILE_PATTERNS.
332
+ #
333
+ # Note see also the list of default file extension mappings.
334
+
335
+ EXTENSION_MAPPING =
336
+
337
+ # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
338
+ # according to the Markdown format, which allows for more readable
339
+ # documentation. See https://daringfireball.net/projects/markdown/ for details.
340
+ # The output of markdown processing is further processed by doxygen, so you can
341
+ # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
342
+ # case of backward compatibilities issues.
343
+ # The default value is: YES.
344
+
345
+ MARKDOWN_SUPPORT = YES
346
+
347
+ # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
348
+ # to that level are automatically included in the table of contents, even if
349
+ # they do not have an id attribute.
350
+ # Note: This feature currently applies only to Markdown headings.
351
+ # Minimum value: 0, maximum value: 99, default value: 5.
352
+ # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
353
+
354
+ TOC_INCLUDE_HEADINGS = 5
355
+
356
+ # When enabled doxygen tries to link words that correspond to documented
357
+ # classes, or namespaces to their corresponding documentation. Such a link can
358
+ # be prevented in individual cases by putting a % sign in front of the word or
359
+ # globally by setting AUTOLINK_SUPPORT to NO.
360
+ # The default value is: YES.
361
+
362
+ AUTOLINK_SUPPORT = YES
363
+
364
+ # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
365
+ # to include (a tag file for) the STL sources as input, then you should set this
366
+ # tag to YES in order to let doxygen match functions declarations and
367
+ # definitions whose arguments contain STL classes (e.g. func(std::string);
368
+ # versus func(std::string) {}). This also make the inheritance and collaboration
369
+ # diagrams that involve STL classes more complete and accurate.
370
+ # The default value is: NO.
371
+
372
+ BUILTIN_STL_SUPPORT = NO
373
+
374
+ # If you use Microsoft's C++/CLI language, you should set this option to YES to
375
+ # enable parsing support.
376
+ # The default value is: NO.
377
+
378
+ CPP_CLI_SUPPORT = NO
379
+
380
+ # Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
381
+ # https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
382
+ # will parse them like normal C++ but will assume all classes use public instead
383
+ # of private inheritance when no explicit protection keyword is present.
384
+ # The default value is: NO.
385
+
386
+ SIP_SUPPORT = NO
387
+
388
+ # For Microsoft's IDL there are propget and propput attributes to indicate
389
+ # getter and setter methods for a property. Setting this option to YES will make
390
+ # doxygen to replace the get and set methods by a property in the documentation.
391
+ # This will only work if the methods are indeed getting or setting a simple
392
+ # type. If this is not the case, or you want to show the methods anyway, you
393
+ # should set this option to NO.
394
+ # The default value is: YES.
395
+
396
+ IDL_PROPERTY_SUPPORT = YES
397
+
398
+ # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
399
+ # tag is set to YES then doxygen will reuse the documentation of the first
400
+ # member in the group (if any) for the other members of the group. By default
401
+ # all members of a group must be documented explicitly.
402
+ # The default value is: NO.
403
+
404
+ DISTRIBUTE_GROUP_DOC = NO
405
+
406
+ # If one adds a struct or class to a group and this option is enabled, then also
407
+ # any nested class or struct is added to the same group. By default this option
408
+ # is disabled and one has to add nested compounds explicitly via \ingroup.
409
+ # The default value is: NO.
410
+
411
+ GROUP_NESTED_COMPOUNDS = NO
412
+
413
+ # Set the SUBGROUPING tag to YES to allow class member groups of the same type
414
+ # (for instance a group of public functions) to be put as a subgroup of that
415
+ # type (e.g. under the Public Functions section). Set it to NO to prevent
416
+ # subgrouping. Alternatively, this can be done per class using the
417
+ # \nosubgrouping command.
418
+ # The default value is: YES.
419
+
420
+ SUBGROUPING = YES
421
+
422
+ # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
423
+ # are shown inside the group in which they are included (e.g. using \ingroup)
424
+ # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
425
+ # and RTF).
426
+ #
427
+ # Note that this feature does not work in combination with
428
+ # SEPARATE_MEMBER_PAGES.
429
+ # The default value is: NO.
430
+
431
+ INLINE_GROUPED_CLASSES = NO
432
+
433
+ # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
434
+ # with only public data fields or simple typedef fields will be shown inline in
435
+ # the documentation of the scope in which they are defined (i.e. file,
436
+ # namespace, or group documentation), provided this scope is documented. If set
437
+ # to NO, structs, classes, and unions are shown on a separate page (for HTML and
438
+ # Man pages) or section (for LaTeX and RTF).
439
+ # The default value is: NO.
440
+
441
+ INLINE_SIMPLE_STRUCTS = NO
442
+
443
+ # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
444
+ # enum is documented as struct, union, or enum with the name of the typedef. So
445
+ # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
446
+ # with name TypeT. When disabled the typedef will appear as a member of a file,
447
+ # namespace, or class. And the struct will be named TypeS. This can typically be
448
+ # useful for C code in case the coding convention dictates that all compound
449
+ # types are typedef'ed and only the typedef is referenced, never the tag name.
450
+ # The default value is: NO.
451
+
452
+ TYPEDEF_HIDES_STRUCT = NO
453
+
454
+ # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
455
+ # cache is used to resolve symbols given their name and scope. Since this can be
456
+ # an expensive process and often the same symbol appears multiple times in the
457
+ # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
458
+ # doxygen will become slower. If the cache is too large, memory is wasted. The
459
+ # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
460
+ # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
461
+ # symbols. At the end of a run doxygen will report the cache usage and suggest
462
+ # the optimal cache size from a speed point of view.
463
+ # Minimum value: 0, maximum value: 9, default value: 0.
464
+
465
+ LOOKUP_CACHE_SIZE = 0
466
+
467
+ # The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use
468
+ # during processing. When set to 0 doxygen will based this on the number of
469
+ # cores available in the system. You can set it explicitly to a value larger
470
+ # than 0 to get more control over the balance between CPU load and processing
471
+ # speed. At this moment only the input processing can be done using multiple
472
+ # threads. Since this is still an experimental feature the default is set to 1,
473
+ # which efficively disables parallel processing. Please report any issues you
474
+ # encounter. Generating dot graphs in parallel is controlled by the
475
+ # DOT_NUM_THREADS setting.
476
+ # Minimum value: 0, maximum value: 32, default value: 1.
477
+
478
+ NUM_PROC_THREADS = 1
479
+
480
+ #---------------------------------------------------------------------------
481
+ # Build related configuration options
482
+ #---------------------------------------------------------------------------
483
+
484
+ # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
485
+ # documentation are documented, even if no documentation was available. Private
486
+ # class members and static file members will be hidden unless the
487
+ # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
488
+ # Note: This will also disable the warnings about undocumented members that are
489
+ # normally produced when WARNINGS is set to YES.
490
+ # The default value is: NO.
491
+
492
+ EXTRACT_ALL = YES
493
+
494
+ # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
495
+ # be included in the documentation.
496
+ # The default value is: NO.
497
+
498
+ EXTRACT_PRIVATE = NO
499
+
500
+ # If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
501
+ # methods of a class will be included in the documentation.
502
+ # The default value is: NO.
503
+
504
+ EXTRACT_PRIV_VIRTUAL = NO
505
+
506
+ # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
507
+ # scope will be included in the documentation.
508
+ # The default value is: NO.
509
+
510
+ EXTRACT_PACKAGE = NO
511
+
512
+ # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
513
+ # included in the documentation.
514
+ # The default value is: NO.
515
+
516
+ EXTRACT_STATIC = NO
517
+
518
+ # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
519
+ # locally in source files will be included in the documentation. If set to NO,
520
+ # only classes defined in header files are included. Does not have any effect
521
+ # for Java sources.
522
+ # The default value is: YES.
523
+
524
+ EXTRACT_LOCAL_CLASSES = YES
525
+
526
+ # This flag is only useful for Objective-C code. If set to YES, local methods,
527
+ # which are defined in the implementation section but not in the interface are
528
+ # included in the documentation. If set to NO, only methods in the interface are
529
+ # included.
530
+ # The default value is: NO.
531
+
532
+ EXTRACT_LOCAL_METHODS = NO
533
+
534
+ # If this flag is set to YES, the members of anonymous namespaces will be
535
+ # extracted and appear in the documentation as a namespace called
536
+ # 'anonymous_namespace{file}', where file will be replaced with the base name of
537
+ # the file that contains the anonymous namespace. By default anonymous namespace
538
+ # are hidden.
539
+ # The default value is: NO.
540
+
541
+ EXTRACT_ANON_NSPACES = NO
542
+
543
+ # If this flag is set to YES, the name of an unnamed parameter in a declaration
544
+ # will be determined by the corresponding definition. By default unnamed
545
+ # parameters remain unnamed in the output.
546
+ # The default value is: YES.
547
+
548
+ RESOLVE_UNNAMED_PARAMS = YES
549
+
550
+ # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
551
+ # undocumented members inside documented classes or files. If set to NO these
552
+ # members will be included in the various overviews, but no documentation
553
+ # section is generated. This option has no effect if EXTRACT_ALL is enabled.
554
+ # The default value is: NO.
555
+
556
+ HIDE_UNDOC_MEMBERS = NO
557
+
558
+ # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
559
+ # undocumented classes that are normally visible in the class hierarchy. If set
560
+ # to NO, these classes will be included in the various overviews. This option
561
+ # has no effect if EXTRACT_ALL is enabled.
562
+ # The default value is: NO.
563
+
564
+ HIDE_UNDOC_CLASSES = NO
565
+
566
+ # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
567
+ # declarations. If set to NO, these declarations will be included in the
568
+ # documentation.
569
+ # The default value is: NO.
570
+
571
+ HIDE_FRIEND_COMPOUNDS = NO
572
+
573
+ # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
574
+ # documentation blocks found inside the body of a function. If set to NO, these
575
+ # blocks will be appended to the function's detailed documentation block.
576
+ # The default value is: NO.
577
+
578
+ HIDE_IN_BODY_DOCS = NO
579
+
580
+ # The INTERNAL_DOCS tag determines if documentation that is typed after a
581
+ # \internal command is included. If the tag is set to NO then the documentation
582
+ # will be excluded. Set it to YES to include the internal documentation.
583
+ # The default value is: NO.
584
+
585
+ INTERNAL_DOCS = NO
586
+
587
+ # With the correct setting of option CASE_SENSE_NAMES doxygen will better be
588
+ # able to match the capabilities of the underlying filesystem. In case the
589
+ # filesystem is case sensitive (i.e. it supports files in the same directory
590
+ # whose names only differ in casing), the option must be set to YES to properly
591
+ # deal with such files in case they appear in the input. For filesystems that
592
+ # are not case sensitive the option should be be set to NO to properly deal with
593
+ # output files written for symbols that only differ in casing, such as for two
594
+ # classes, one named CLASS and the other named Class, and to also support
595
+ # references to files without having to specify the exact matching casing. On
596
+ # Windows (including Cygwin) and MacOS, users should typically set this option
597
+ # to NO, whereas on Linux or other Unix flavors it should typically be set to
598
+ # YES.
599
+ # The default value is: system dependent.
600
+
601
+ CASE_SENSE_NAMES = YES
602
+
603
+ # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
604
+ # their full class and namespace scopes in the documentation. If set to YES, the
605
+ # scope will be hidden.
606
+ # The default value is: NO.
607
+
608
+ HIDE_SCOPE_NAMES = NO
609
+
610
+ # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
611
+ # append additional text to a page's title, such as Class Reference. If set to
612
+ # YES the compound reference will be hidden.
613
+ # The default value is: NO.
614
+
615
+ HIDE_COMPOUND_REFERENCE= NO
616
+
617
+ # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
618
+ # the files that are included by a file in the documentation of that file.
619
+ # The default value is: YES.
620
+
621
+ SHOW_INCLUDE_FILES = YES
622
+
623
+ # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
624
+ # grouped member an include statement to the documentation, telling the reader
625
+ # which file to include in order to use the member.
626
+ # The default value is: NO.
627
+
628
+ SHOW_GROUPED_MEMB_INC = NO
629
+
630
+ # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
631
+ # files with double quotes in the documentation rather than with sharp brackets.
632
+ # The default value is: NO.
633
+
634
+ FORCE_LOCAL_INCLUDES = NO
635
+
636
+ # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
637
+ # documentation for inline members.
638
+ # The default value is: YES.
639
+
640
+ INLINE_INFO = YES
641
+
642
+ # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
643
+ # (detailed) documentation of file and class members alphabetically by member
644
+ # name. If set to NO, the members will appear in declaration order.
645
+ # The default value is: YES.
646
+
647
+ SORT_MEMBER_DOCS = YES
648
+
649
+ # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
650
+ # descriptions of file, namespace and class members alphabetically by member
651
+ # name. If set to NO, the members will appear in declaration order. Note that
652
+ # this will also influence the order of the classes in the class list.
653
+ # The default value is: NO.
654
+
655
+ SORT_BRIEF_DOCS = NO
656
+
657
+ # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
658
+ # (brief and detailed) documentation of class members so that constructors and
659
+ # destructors are listed first. If set to NO the constructors will appear in the
660
+ # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
661
+ # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
662
+ # member documentation.
663
+ # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
664
+ # detailed member documentation.
665
+ # The default value is: NO.
666
+
667
+ SORT_MEMBERS_CTORS_1ST = YES
668
+
669
+ # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
670
+ # of group names into alphabetical order. If set to NO the group names will
671
+ # appear in their defined order.
672
+ # The default value is: NO.
673
+
674
+ SORT_GROUP_NAMES = NO
675
+
676
+ # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
677
+ # fully-qualified names, including namespaces. If set to NO, the class list will
678
+ # be sorted only by class name, not including the namespace part.
679
+ # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
680
+ # Note: This option applies only to the class list, not to the alphabetical
681
+ # list.
682
+ # The default value is: NO.
683
+
684
+ SORT_BY_SCOPE_NAME = NO
685
+
686
+ # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
687
+ # type resolution of all parameters of a function it will reject a match between
688
+ # the prototype and the implementation of a member function even if there is
689
+ # only one candidate or it is obvious which candidate to choose by doing a
690
+ # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
691
+ # accept a match between prototype and implementation in such cases.
692
+ # The default value is: NO.
693
+
694
+ STRICT_PROTO_MATCHING = NO
695
+
696
+ # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
697
+ # list. This list is created by putting \todo commands in the documentation.
698
+ # The default value is: YES.
699
+
700
+ GENERATE_TODOLIST = YES
701
+
702
+ # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
703
+ # list. This list is created by putting \test commands in the documentation.
704
+ # The default value is: YES.
705
+
706
+ GENERATE_TESTLIST = YES
707
+
708
+ # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
709
+ # list. This list is created by putting \bug commands in the documentation.
710
+ # The default value is: YES.
711
+
712
+ GENERATE_BUGLIST = YES
713
+
714
+ # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
715
+ # the deprecated list. This list is created by putting \deprecated commands in
716
+ # the documentation.
717
+ # The default value is: YES.
718
+
719
+ GENERATE_DEPRECATEDLIST= YES
720
+
721
+ # The ENABLED_SECTIONS tag can be used to enable conditional documentation
722
+ # sections, marked by \if <section_label> ... \endif and \cond <section_label>
723
+ # ... \endcond blocks.
724
+
725
+ ENABLED_SECTIONS =
726
+
727
+ # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
728
+ # initial value of a variable or macro / define can have for it to appear in the
729
+ # documentation. If the initializer consists of more lines than specified here
730
+ # it will be hidden. Use a value of 0 to hide initializers completely. The
731
+ # appearance of the value of individual variables and macros / defines can be
732
+ # controlled using \showinitializer or \hideinitializer command in the
733
+ # documentation regardless of this setting.
734
+ # Minimum value: 0, maximum value: 10000, default value: 30.
735
+
736
+ MAX_INITIALIZER_LINES = 30
737
+
738
+ # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
739
+ # the bottom of the documentation of classes and structs. If set to YES, the
740
+ # list will mention the files that were used to generate the documentation.
741
+ # The default value is: YES.
742
+
743
+ SHOW_USED_FILES = YES
744
+
745
+ # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
746
+ # will remove the Files entry from the Quick Index and from the Folder Tree View
747
+ # (if specified).
748
+ # The default value is: YES.
749
+
750
+ SHOW_FILES = YES
751
+
752
+ # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
753
+ # page. This will remove the Namespaces entry from the Quick Index and from the
754
+ # Folder Tree View (if specified).
755
+ # The default value is: YES.
756
+
757
+ SHOW_NAMESPACES = YES
758
+
759
+ # The FILE_VERSION_FILTER tag can be used to specify a program or script that
760
+ # doxygen should invoke to get the current version for each file (typically from
761
+ # the version control system). Doxygen will invoke the program by executing (via
762
+ # popen()) the command command input-file, where command is the value of the
763
+ # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
764
+ # by doxygen. Whatever the program writes to standard output is used as the file
765
+ # version. For an example see the documentation.
766
+
767
+ FILE_VERSION_FILTER =
768
+
769
+ # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
770
+ # by doxygen. The layout file controls the global structure of the generated
771
+ # output files in an output format independent way. To create the layout file
772
+ # that represents doxygen's defaults, run doxygen with the -l option. You can
773
+ # optionally specify a file name after the option, if omitted DoxygenLayout.xml
774
+ # will be used as the name of the layout file.
775
+ #
776
+ # Note that if you run doxygen from a directory containing a file called
777
+ # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
778
+ # tag is left empty.
779
+
780
+ LAYOUT_FILE =
781
+
782
+ # The CITE_BIB_FILES tag can be used to specify one or more bib files containing
783
+ # the reference definitions. This must be a list of .bib files. The .bib
784
+ # extension is automatically appended if omitted. This requires the bibtex tool
785
+ # to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
786
+ # For LaTeX the style of the bibliography can be controlled using
787
+ # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
788
+ # search path. See also \cite for info how to create references.
789
+
790
+ CITE_BIB_FILES =
791
+
792
+ #---------------------------------------------------------------------------
793
+ # Configuration options related to warning and progress messages
794
+ #---------------------------------------------------------------------------
795
+
796
+ # The QUIET tag can be used to turn on/off the messages that are generated to
797
+ # standard output by doxygen. If QUIET is set to YES this implies that the
798
+ # messages are off.
799
+ # The default value is: NO.
800
+
801
+ QUIET = NO
802
+
803
+ # The WARNINGS tag can be used to turn on/off the warning messages that are
804
+ # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
805
+ # this implies that the warnings are on.
806
+ #
807
+ # Tip: Turn warnings on while writing the documentation.
808
+ # The default value is: YES.
809
+
810
+ WARNINGS = YES
811
+
812
+ # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
813
+ # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
814
+ # will automatically be disabled.
815
+ # The default value is: YES.
816
+
817
+ WARN_IF_UNDOCUMENTED = YES
818
+
819
+ # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
820
+ # potential errors in the documentation, such as not documenting some parameters
821
+ # in a documented function, or documenting parameters that don't exist or using
822
+ # markup commands wrongly.
823
+ # The default value is: YES.
824
+
825
+ WARN_IF_DOC_ERROR = YES
826
+
827
+ # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
828
+ # are documented, but have no documentation for their parameters or return
829
+ # value. If set to NO, doxygen will only warn about wrong or incomplete
830
+ # parameter documentation, but not about the absence of documentation. If
831
+ # EXTRACT_ALL is set to YES then this flag will automatically be disabled.
832
+ # The default value is: NO.
833
+
834
+ WARN_NO_PARAMDOC = NO
835
+
836
+ # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
837
+ # a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
838
+ # then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
839
+ # at the end of the doxygen process doxygen will return with a non-zero status.
840
+ # Possible values are: NO, YES and FAIL_ON_WARNINGS.
841
+ # The default value is: NO.
842
+
843
+ WARN_AS_ERROR = NO
844
+
845
+ # The WARN_FORMAT tag determines the format of the warning messages that doxygen
846
+ # can produce. The string should contain the $file, $line, and $text tags, which
847
+ # will be replaced by the file and line number from which the warning originated
848
+ # and the warning text. Optionally the format may contain $version, which will
849
+ # be replaced by the version of the file (if it could be obtained via
850
+ # FILE_VERSION_FILTER)
851
+ # The default value is: $file:$line: $text.
852
+
853
+ WARN_FORMAT = "$file:$line: $text"
854
+
855
+ # The WARN_LOGFILE tag can be used to specify a file to which warning and error
856
+ # messages should be written. If left blank the output is written to standard
857
+ # error (stderr).
858
+
859
+ WARN_LOGFILE =
860
+
861
+ #---------------------------------------------------------------------------
862
+ # Configuration options related to the input files
863
+ #---------------------------------------------------------------------------
864
+
865
+ # The INPUT tag is used to specify the files and/or directories that contain
866
+ # documented source files. You may enter file names like myfile.cpp or
867
+ # directories like /usr/src/myproject. Separate the files or directories with
868
+ # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
869
+ # Note: If this tag is empty the current directory is searched.
870
+
871
+ INPUT = ${DOXYGEN_INPUT_DIR} \
872
+ ${PROJECT_SOURCE_DIR}/docs/mainpage.hxx \
873
+ ${PROJECT_SOURCE_DIR}/docs/stability.hxx \
874
+
875
+ # This tag can be used to specify the character encoding of the source files
876
+ # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
877
+ # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
878
+ # documentation (see:
879
+ # https://www.gnu.org/software/libiconv/) for the list of possible encodings.
880
+ # The default value is: UTF-8.
881
+
882
+ INPUT_ENCODING = UTF-8
883
+
884
+ # If the value of the INPUT tag contains directories, you can use the
885
+ # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
886
+ # *.h) to filter out the source-files in the directories.
887
+ #
888
+ # Note that for custom extensions or not directly supported extensions you also
889
+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
890
+ # read by doxygen.
891
+ #
892
+ # Note the list of default checked file patterns might differ from the list of
893
+ # default file extension mappings.
894
+ #
895
+ # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
896
+ # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
897
+ # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
898
+ # *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment),
899
+ # *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl,
900
+ # *.ucf, *.qsf and *.ice.
901
+
902
+ FILE_PATTERNS = *.c \
903
+ *.cc \
904
+ *.cxx \
905
+ *.cpp \
906
+ *.c++ \
907
+ *.java \
908
+ *.ii \
909
+ *.ixx \
910
+ *.ipp \
911
+ *.i++ \
912
+ *.inl \
913
+ *.idl \
914
+ *.ddl \
915
+ *.odl \
916
+ *.h \
917
+ *.hh \
918
+ *.hxx \
919
+ *.hpp \
920
+ *.h++ \
921
+ *.cs \
922
+ *.d \
923
+ *.php \
924
+ *.php4 \
925
+ *.php5 \
926
+ *.phtml \
927
+ *.inc \
928
+ *.m \
929
+ *.markdown \
930
+ *.md \
931
+ *.mm \
932
+ *.dox \
933
+ *.py \
934
+ *.pyw \
935
+ *.f90 \
936
+ *.f95 \
937
+ *.f03 \
938
+ *.f08 \
939
+ *.f18 \
940
+ *.f \
941
+ *.for \
942
+ *.vhd \
943
+ *.vhdl \
944
+ *.ucf \
945
+ *.qsf \
946
+ *.ice
947
+
948
+ # The RECURSIVE tag can be used to specify whether or not subdirectories should
949
+ # be searched for input files as well.
950
+ # The default value is: NO.
951
+
952
+ RECURSIVE = NO
953
+
954
+ # The EXCLUDE tag can be used to specify files and/or directories that should be
955
+ # excluded from the INPUT source files. This way you can easily exclude a
956
+ # subdirectory from a directory tree whose root is specified with the INPUT tag.
957
+ #
958
+ # Note that relative paths are relative to the directory from which doxygen is
959
+ # run.
960
+
961
+ EXCLUDE =
962
+
963
+ # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
964
+ # directories that are symbolic links (a Unix file system feature) are excluded
965
+ # from the input.
966
+ # The default value is: NO.
967
+
968
+ EXCLUDE_SYMLINKS = NO
969
+
970
+ # If the value of the INPUT tag contains directories, you can use the
971
+ # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
972
+ # certain files from those directories.
973
+ #
974
+ # Note that the wildcards are matched against the file with absolute path, so to
975
+ # exclude all test directories for example use the pattern */test/*
976
+
977
+ EXCLUDE_PATTERNS =
978
+
979
+ # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
980
+ # (namespaces, classes, functions, etc.) that should be excluded from the
981
+ # output. The symbol name can be a fully qualified name, a word, or if the
982
+ # wildcard * is used, a substring. Examples: ANamespace, AClass,
983
+ # AClass::ANamespace, ANamespace::*Test
984
+ #
985
+ # Note that the wildcards are matched against the file with absolute path, so to
986
+ # exclude all test directories use the pattern */test/*
987
+
988
+ EXCLUDE_SYMBOLS =
989
+
990
+ # The EXAMPLE_PATH tag can be used to specify one or more files or directories
991
+ # that contain example code fragments that are included (see the \include
992
+ # command).
993
+
994
+ EXAMPLE_PATH = ${PROJECT_SOURCE_DIR}/test/
995
+
996
+ # If the value of the EXAMPLE_PATH tag contains directories, you can use the
997
+ # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
998
+ # *.h) to filter out the source-files in the directories. If left blank all
999
+ # files are included.
1000
+
1001
+ EXAMPLE_PATTERNS = *
1002
+
1003
+ # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
1004
+ # searched for input files to be used with the \include or \dontinclude commands
1005
+ # irrespective of the value of the RECURSIVE tag.
1006
+ # The default value is: NO.
1007
+
1008
+ EXAMPLE_RECURSIVE = NO
1009
+
1010
+ # The IMAGE_PATH tag can be used to specify one or more files or directories
1011
+ # that contain images that are to be included in the documentation (see the
1012
+ # \image command).
1013
+
1014
+ IMAGE_PATH =
1015
+
1016
+ # The INPUT_FILTER tag can be used to specify a program that doxygen should
1017
+ # invoke to filter for each input file. Doxygen will invoke the filter program
1018
+ # by executing (via popen()) the command:
1019
+ #
1020
+ # <filter> <input-file>
1021
+ #
1022
+ # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
1023
+ # name of an input file. Doxygen will then use the output that the filter
1024
+ # program writes to standard output. If FILTER_PATTERNS is specified, this tag
1025
+ # will be ignored.
1026
+ #
1027
+ # Note that the filter must not add or remove lines; it is applied before the
1028
+ # code is scanned, but not when the output code is generated. If lines are added
1029
+ # or removed, the anchors will not be placed correctly.
1030
+ #
1031
+ # Note that for custom extensions or not directly supported extensions you also
1032
+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
1033
+ # properly processed by doxygen.
1034
+
1035
+ INPUT_FILTER =
1036
+
1037
+ # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
1038
+ # basis. Doxygen will compare the file name with each pattern and apply the
1039
+ # filter if there is a match. The filters are a list of the form: pattern=filter
1040
+ # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
1041
+ # filters are used. If the FILTER_PATTERNS tag is empty or if none of the
1042
+ # patterns match the file name, INPUT_FILTER is applied.
1043
+ #
1044
+ # Note that for custom extensions or not directly supported extensions you also
1045
+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
1046
+ # properly processed by doxygen.
1047
+
1048
+ FILTER_PATTERNS =
1049
+
1050
+ # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
1051
+ # INPUT_FILTER) will also be used to filter the input files that are used for
1052
+ # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
1053
+ # The default value is: NO.
1054
+
1055
+ FILTER_SOURCE_FILES = NO
1056
+
1057
+ # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
1058
+ # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
1059
+ # it is also possible to disable source filtering for a specific pattern using
1060
+ # *.ext= (so without naming a filter).
1061
+ # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
1062
+
1063
+ FILTER_SOURCE_PATTERNS =
1064
+
1065
+ # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
1066
+ # is part of the input, its contents will be placed on the main page
1067
+ # (index.html). This can be useful if you have a project on for instance GitHub
1068
+ # and want to reuse the introduction page also for the doxygen output.
1069
+
1070
+ USE_MDFILE_AS_MAINPAGE =
1071
+
1072
+ #---------------------------------------------------------------------------
1073
+ # Configuration options related to source browsing
1074
+ #---------------------------------------------------------------------------
1075
+
1076
+ # If the SOURCE_BROWSER tag is set to YES then a list of source files will be
1077
+ # generated. Documented entities will be cross-referenced with these sources.
1078
+ #
1079
+ # Note: To get rid of all source code in the generated output, make sure that
1080
+ # also VERBATIM_HEADERS is set to NO.
1081
+ # The default value is: NO.
1082
+
1083
+ SOURCE_BROWSER = NO
1084
+
1085
+ # Setting the INLINE_SOURCES tag to YES will include the body of functions,
1086
+ # classes and enums directly into the documentation.
1087
+ # The default value is: NO.
1088
+
1089
+ INLINE_SOURCES = NO
1090
+
1091
+ # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
1092
+ # special comment blocks from generated source code fragments. Normal C, C++ and
1093
+ # Fortran comments will always remain visible.
1094
+ # The default value is: YES.
1095
+
1096
+ STRIP_CODE_COMMENTS = YES
1097
+
1098
+ # If the REFERENCED_BY_RELATION tag is set to YES then for each documented
1099
+ # entity all documented functions referencing it will be listed.
1100
+ # The default value is: NO.
1101
+
1102
+ REFERENCED_BY_RELATION = NO
1103
+
1104
+ # If the REFERENCES_RELATION tag is set to YES then for each documented function
1105
+ # all documented entities called/used by that function will be listed.
1106
+ # The default value is: NO.
1107
+
1108
+ REFERENCES_RELATION = NO
1109
+
1110
+ # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
1111
+ # to YES then the hyperlinks from functions in REFERENCES_RELATION and
1112
+ # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
1113
+ # link to the documentation.
1114
+ # The default value is: YES.
1115
+
1116
+ REFERENCES_LINK_SOURCE = YES
1117
+
1118
+ # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
1119
+ # source code will show a tooltip with additional information such as prototype,
1120
+ # brief description and links to the definition and documentation. Since this
1121
+ # will make the HTML file larger and loading of large files a bit slower, you
1122
+ # can opt to disable this feature.
1123
+ # The default value is: YES.
1124
+ # This tag requires that the tag SOURCE_BROWSER is set to YES.
1125
+
1126
+ SOURCE_TOOLTIPS = YES
1127
+
1128
+ # If the USE_HTAGS tag is set to YES then the references to source code will
1129
+ # point to the HTML generated by the htags(1) tool instead of doxygen built-in
1130
+ # source browser. The htags tool is part of GNU's global source tagging system
1131
+ # (see https://www.gnu.org/software/global/global.html). You will need version
1132
+ # 4.8.6 or higher.
1133
+ #
1134
+ # To use it do the following:
1135
+ # - Install the latest version of global
1136
+ # - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
1137
+ # - Make sure the INPUT points to the root of the source tree
1138
+ # - Run doxygen as normal
1139
+ #
1140
+ # Doxygen will invoke htags (and that will in turn invoke gtags), so these
1141
+ # tools must be available from the command line (i.e. in the search path).
1142
+ #
1143
+ # The result: instead of the source browser generated by doxygen, the links to
1144
+ # source code will now point to the output of htags.
1145
+ # The default value is: NO.
1146
+ # This tag requires that the tag SOURCE_BROWSER is set to YES.
1147
+
1148
+ USE_HTAGS = NO
1149
+
1150
+ # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
1151
+ # verbatim copy of the header file for each class for which an include is
1152
+ # specified. Set to NO to disable this.
1153
+ # See also: Section \class.
1154
+ # The default value is: YES.
1155
+
1156
+ VERBATIM_HEADERS = YES
1157
+
1158
+ # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
1159
+ # clang parser (see:
1160
+ # http://clang.llvm.org/) for more accurate parsing at the cost of reduced
1161
+ # performance. This can be particularly helpful with template rich C++ code for
1162
+ # which doxygen's built-in parser lacks the necessary type information.
1163
+ # Note: The availability of this option depends on whether or not doxygen was
1164
+ # generated with the -Duse_libclang=ON option for CMake.
1165
+ # The default value is: NO.
1166
+
1167
+ CLANG_ASSISTED_PARSING = NO
1168
+
1169
+ # If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to
1170
+ # YES then doxygen will add the directory of each input to the include path.
1171
+ # The default value is: YES.
1172
+
1173
+ CLANG_ADD_INC_PATHS = YES
1174
+
1175
+ # If clang assisted parsing is enabled you can provide the compiler with command
1176
+ # line options that you would normally use when invoking the compiler. Note that
1177
+ # the include paths will already be set by doxygen for the files and directories
1178
+ # specified with INPUT and INCLUDE_PATH.
1179
+ # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
1180
+
1181
+ CLANG_OPTIONS =
1182
+
1183
+ # If clang assisted parsing is enabled you can provide the clang parser with the
1184
+ # path to the directory containing a file called compile_commands.json. This
1185
+ # file is the compilation database (see:
1186
+ # http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the
1187
+ # options used when the source files were built. This is equivalent to
1188
+ # specifying the -p option to a clang tool, such as clang-check. These options
1189
+ # will then be passed to the parser. Any options specified with CLANG_OPTIONS
1190
+ # will be added as well.
1191
+ # Note: The availability of this option depends on whether or not doxygen was
1192
+ # generated with the -Duse_libclang=ON option for CMake.
1193
+
1194
+ CLANG_DATABASE_PATH =
1195
+
1196
+ #---------------------------------------------------------------------------
1197
+ # Configuration options related to the alphabetical class index
1198
+ #---------------------------------------------------------------------------
1199
+
1200
+ # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
1201
+ # compounds will be generated. Enable this if the project contains a lot of
1202
+ # classes, structs, unions or interfaces.
1203
+ # The default value is: YES.
1204
+
1205
+ ALPHABETICAL_INDEX = YES
1206
+
1207
+ # In case all classes in a project start with a common prefix, all classes will
1208
+ # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
1209
+ # can be used to specify a prefix (or a list of prefixes) that should be ignored
1210
+ # while generating the index headers.
1211
+ # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1212
+
1213
+ IGNORE_PREFIX =
1214
+
1215
+ #---------------------------------------------------------------------------
1216
+ # Configuration options related to the HTML output
1217
+ #---------------------------------------------------------------------------
1218
+
1219
+ # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
1220
+ # The default value is: YES.
1221
+
1222
+ GENERATE_HTML = YES
1223
+
1224
+ # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
1225
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1226
+ # it.
1227
+ # The default directory is: html.
1228
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1229
+
1230
+ HTML_OUTPUT = html
1231
+
1232
+ # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
1233
+ # generated HTML page (for example: .htm, .php, .asp).
1234
+ # The default value is: .html.
1235
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1236
+
1237
+ HTML_FILE_EXTENSION = .html
1238
+
1239
+ # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
1240
+ # each generated HTML page. If the tag is left blank doxygen will generate a
1241
+ # standard header.
1242
+ #
1243
+ # To get valid HTML the header file that includes any scripts and style sheets
1244
+ # that doxygen needs, which is dependent on the configuration options used (e.g.
1245
+ # the setting GENERATE_TREEVIEW). It is highly recommended to start with a
1246
+ # default header using
1247
+ # doxygen -w html new_header.html new_footer.html new_stylesheet.css
1248
+ # YourConfigFile
1249
+ # and then modify the file new_header.html. See also section "Doxygen usage"
1250
+ # for information on how to generate the default header that doxygen normally
1251
+ # uses.
1252
+ # Note: The header is subject to change so you typically have to regenerate the
1253
+ # default header when upgrading to a newer version of doxygen. For a description
1254
+ # of the possible markers and block names see the documentation.
1255
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1256
+
1257
+ HTML_HEADER =
1258
+
1259
+ # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
1260
+ # generated HTML page. If the tag is left blank doxygen will generate a standard
1261
+ # footer. See HTML_HEADER for more information on how to generate a default
1262
+ # footer and what special commands can be used inside the footer. See also
1263
+ # section "Doxygen usage" for information on how to generate the default footer
1264
+ # that doxygen normally uses.
1265
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1266
+
1267
+ HTML_FOOTER =
1268
+
1269
+ # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
1270
+ # sheet that is used by each HTML page. It can be used to fine-tune the look of
1271
+ # the HTML output. If left blank doxygen will generate a default style sheet.
1272
+ # See also section "Doxygen usage" for information on how to generate the style
1273
+ # sheet that doxygen normally uses.
1274
+ # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
1275
+ # it is more robust and this tag (HTML_STYLESHEET) will in the future become
1276
+ # obsolete.
1277
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1278
+
1279
+ HTML_STYLESHEET =
1280
+
1281
+ # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
1282
+ # cascading style sheets that are included after the standard style sheets
1283
+ # created by doxygen. Using this option one can overrule certain style aspects.
1284
+ # This is preferred over using HTML_STYLESHEET since it does not replace the
1285
+ # standard style sheet and is therefore more robust against future updates.
1286
+ # Doxygen will copy the style sheet files to the output directory.
1287
+ # Note: The order of the extra style sheet files is of importance (e.g. the last
1288
+ # style sheet in the list overrules the setting of the previous ones in the
1289
+ # list). For an example see the documentation.
1290
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1291
+
1292
+ # Temporarily disable custom stylesheet, because of trailing return types formatting
1293
+ # HTML_EXTRA_STYLESHEET = ${PROJECT_SOURCE_DIR}/docs/doxygen-awesome.css
1294
+
1295
+ # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1296
+ # other source files which should be copied to the HTML output directory. Note
1297
+ # that these files will be copied to the base HTML output directory. Use the
1298
+ # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
1299
+ # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
1300
+ # files will be copied as-is; there are no commands or markers available.
1301
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1302
+
1303
+ HTML_EXTRA_FILES =
1304
+
1305
+ # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
1306
+ # will adjust the colors in the style sheet and background images according to
1307
+ # this color. Hue is specified as an angle on a colorwheel, see
1308
+ # https://en.wikipedia.org/wiki/Hue for more information. For instance the value
1309
+ # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
1310
+ # purple, and 360 is red again.
1311
+ # Minimum value: 0, maximum value: 359, default value: 220.
1312
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1313
+
1314
+ HTML_COLORSTYLE_HUE = 220
1315
+
1316
+ # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
1317
+ # in the HTML output. For a value of 0 the output will use grayscales only. A
1318
+ # value of 255 will produce the most vivid colors.
1319
+ # Minimum value: 0, maximum value: 255, default value: 100.
1320
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1321
+
1322
+ HTML_COLORSTYLE_SAT = 100
1323
+
1324
+ # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
1325
+ # luminance component of the colors in the HTML output. Values below 100
1326
+ # gradually make the output lighter, whereas values above 100 make the output
1327
+ # darker. The value divided by 100 is the actual gamma applied, so 80 represents
1328
+ # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
1329
+ # change the gamma.
1330
+ # Minimum value: 40, maximum value: 240, default value: 80.
1331
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1332
+
1333
+ HTML_COLORSTYLE_GAMMA = 80
1334
+
1335
+ # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1336
+ # page will contain the date and time when the page was generated. Setting this
1337
+ # to YES can help to show when doxygen was last run and thus if the
1338
+ # documentation is up to date.
1339
+ # The default value is: NO.
1340
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1341
+
1342
+ HTML_TIMESTAMP = NO
1343
+
1344
+ # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
1345
+ # documentation will contain a main index with vertical navigation menus that
1346
+ # are dynamically created via JavaScript. If disabled, the navigation index will
1347
+ # consists of multiple levels of tabs that are statically embedded in every HTML
1348
+ # page. Disable this option to support browsers that do not have JavaScript,
1349
+ # like the Qt help browser.
1350
+ # The default value is: YES.
1351
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1352
+
1353
+ HTML_DYNAMIC_MENUS = YES
1354
+
1355
+ # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1356
+ # documentation will contain sections that can be hidden and shown after the
1357
+ # page has loaded.
1358
+ # The default value is: NO.
1359
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1360
+
1361
+ HTML_DYNAMIC_SECTIONS = NO
1362
+
1363
+ # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
1364
+ # shown in the various tree structured indices initially; the user can expand
1365
+ # and collapse entries dynamically later on. Doxygen will expand the tree to
1366
+ # such a level that at most the specified number of entries are visible (unless
1367
+ # a fully collapsed tree already exceeds this amount). So setting the number of
1368
+ # entries 1 will produce a full collapsed tree by default. 0 is a special value
1369
+ # representing an infinite number of entries and will result in a full expanded
1370
+ # tree by default.
1371
+ # Minimum value: 0, maximum value: 9999, default value: 100.
1372
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1373
+
1374
+ HTML_INDEX_NUM_ENTRIES = 100
1375
+
1376
+ # If the GENERATE_DOCSET tag is set to YES, additional index files will be
1377
+ # generated that can be used as input for Apple's Xcode 3 integrated development
1378
+ # environment (see:
1379
+ # https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
1380
+ # create a documentation set, doxygen will generate a Makefile in the HTML
1381
+ # output directory. Running make will produce the docset in that directory and
1382
+ # running make install will install the docset in
1383
+ # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
1384
+ # startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
1385
+ # genXcode/_index.html for more information.
1386
+ # The default value is: NO.
1387
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1388
+
1389
+ GENERATE_DOCSET = NO
1390
+
1391
+ # This tag determines the name of the docset feed. A documentation feed provides
1392
+ # an umbrella under which multiple documentation sets from a single provider
1393
+ # (such as a company or product suite) can be grouped.
1394
+ # The default value is: Doxygen generated docs.
1395
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1396
+
1397
+ DOCSET_FEEDNAME = "Doxygen generated docs"
1398
+
1399
+ # This tag specifies a string that should uniquely identify the documentation
1400
+ # set bundle. This should be a reverse domain-name style string, e.g.
1401
+ # com.mycompany.MyDocSet. Doxygen will append .docset to the name.
1402
+ # The default value is: org.doxygen.Project.
1403
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1404
+
1405
+ DOCSET_BUNDLE_ID = org.doxygen.Project
1406
+
1407
+ # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
1408
+ # the documentation publisher. This should be a reverse domain-name style
1409
+ # string, e.g. com.mycompany.MyDocSet.documentation.
1410
+ # The default value is: org.doxygen.Publisher.
1411
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1412
+
1413
+ DOCSET_PUBLISHER_ID = org.doxygen.Publisher
1414
+
1415
+ # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
1416
+ # The default value is: Publisher.
1417
+ # This tag requires that the tag GENERATE_DOCSET is set to YES.
1418
+
1419
+ DOCSET_PUBLISHER_NAME = Publisher
1420
+
1421
+ # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
1422
+ # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
1423
+ # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
1424
+ # (see:
1425
+ # https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows.
1426
+ #
1427
+ # The HTML Help Workshop contains a compiler that can convert all HTML output
1428
+ # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
1429
+ # files are now used as the Windows 98 help format, and will replace the old
1430
+ # Windows help format (.hlp) on all Windows platforms in the future. Compressed
1431
+ # HTML files also contain an index, a table of contents, and you can search for
1432
+ # words in the documentation. The HTML workshop also contains a viewer for
1433
+ # compressed HTML files.
1434
+ # The default value is: NO.
1435
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1436
+
1437
+ GENERATE_HTMLHELP = NO
1438
+
1439
+ # The CHM_FILE tag can be used to specify the file name of the resulting .chm
1440
+ # file. You can add a path in front of the file if the result should not be
1441
+ # written to the html output directory.
1442
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1443
+
1444
+ CHM_FILE =
1445
+
1446
+ # The HHC_LOCATION tag can be used to specify the location (absolute path
1447
+ # including file name) of the HTML help compiler (hhc.exe). If non-empty,
1448
+ # doxygen will try to run the HTML help compiler on the generated index.hhp.
1449
+ # The file has to be specified with full path.
1450
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1451
+
1452
+ HHC_LOCATION =
1453
+
1454
+ # The GENERATE_CHI flag controls if a separate .chi index file is generated
1455
+ # (YES) or that it should be included in the main .chm file (NO).
1456
+ # The default value is: NO.
1457
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1458
+
1459
+ GENERATE_CHI = NO
1460
+
1461
+ # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
1462
+ # and project file content.
1463
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1464
+
1465
+ CHM_INDEX_ENCODING =
1466
+
1467
+ # The BINARY_TOC flag controls whether a binary table of contents is generated
1468
+ # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
1469
+ # enables the Previous and Next buttons.
1470
+ # The default value is: NO.
1471
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1472
+
1473
+ BINARY_TOC = NO
1474
+
1475
+ # The TOC_EXPAND flag can be set to YES to add extra items for group members to
1476
+ # the table of contents of the HTML help documentation and to the tree view.
1477
+ # The default value is: NO.
1478
+ # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1479
+
1480
+ TOC_EXPAND = NO
1481
+
1482
+ # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
1483
+ # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
1484
+ # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
1485
+ # (.qch) of the generated HTML documentation.
1486
+ # The default value is: NO.
1487
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1488
+
1489
+ GENERATE_QHP = NO
1490
+
1491
+ # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
1492
+ # the file name of the resulting .qch file. The path specified is relative to
1493
+ # the HTML output folder.
1494
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1495
+
1496
+ QCH_FILE =
1497
+
1498
+ # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
1499
+ # Project output. For more information please see Qt Help Project / Namespace
1500
+ # (see:
1501
+ # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
1502
+ # The default value is: org.doxygen.Project.
1503
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1504
+
1505
+ QHP_NAMESPACE = org.doxygen.Project
1506
+
1507
+ # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
1508
+ # Help Project output. For more information please see Qt Help Project / Virtual
1509
+ # Folders (see:
1510
+ # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
1511
+ # The default value is: doc.
1512
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1513
+
1514
+ QHP_VIRTUAL_FOLDER = doc
1515
+
1516
+ # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
1517
+ # filter to add. For more information please see Qt Help Project / Custom
1518
+ # Filters (see:
1519
+ # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
1520
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1521
+
1522
+ QHP_CUST_FILTER_NAME =
1523
+
1524
+ # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
1525
+ # custom filter to add. For more information please see Qt Help Project / Custom
1526
+ # Filters (see:
1527
+ # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
1528
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1529
+
1530
+ QHP_CUST_FILTER_ATTRS =
1531
+
1532
+ # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
1533
+ # project's filter section matches. Qt Help Project / Filter Attributes (see:
1534
+ # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
1535
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1536
+
1537
+ QHP_SECT_FILTER_ATTRS =
1538
+
1539
+ # The QHG_LOCATION tag can be used to specify the location (absolute path
1540
+ # including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to
1541
+ # run qhelpgenerator on the generated .qhp file.
1542
+ # This tag requires that the tag GENERATE_QHP is set to YES.
1543
+
1544
+ QHG_LOCATION =
1545
+
1546
+ # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
1547
+ # generated, together with the HTML files, they form an Eclipse help plugin. To
1548
+ # install this plugin and make it available under the help contents menu in
1549
+ # Eclipse, the contents of the directory containing the HTML and XML files needs
1550
+ # to be copied into the plugins directory of eclipse. The name of the directory
1551
+ # within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
1552
+ # After copying Eclipse needs to be restarted before the help appears.
1553
+ # The default value is: NO.
1554
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1555
+
1556
+ GENERATE_ECLIPSEHELP = NO
1557
+
1558
+ # A unique identifier for the Eclipse help plugin. When installing the plugin
1559
+ # the directory name containing the HTML and XML files should also have this
1560
+ # name. Each documentation set should have its own identifier.
1561
+ # The default value is: org.doxygen.Project.
1562
+ # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
1563
+
1564
+ ECLIPSE_DOC_ID = org.doxygen.Project
1565
+
1566
+ # If you want full control over the layout of the generated HTML pages it might
1567
+ # be necessary to disable the index and replace it with your own. The
1568
+ # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
1569
+ # of each HTML page. A value of NO enables the index and the value YES disables
1570
+ # it. Since the tabs in the index contain the same information as the navigation
1571
+ # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
1572
+ # The default value is: NO.
1573
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1574
+
1575
+ DISABLE_INDEX = NO
1576
+
1577
+ # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
1578
+ # structure should be generated to display hierarchical information. If the tag
1579
+ # value is set to YES, a side panel will be generated containing a tree-like
1580
+ # index structure (just like the one that is generated for HTML Help). For this
1581
+ # to work a browser that supports JavaScript, DHTML, CSS and frames is required
1582
+ # (i.e. any modern browser). Windows users are probably better off using the
1583
+ # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
1584
+ # further fine-tune the look of the index. As an example, the default style
1585
+ # sheet generated by doxygen has an example that shows how to put an image at
1586
+ # the root of the tree instead of the PROJECT_NAME. Since the tree basically has
1587
+ # the same information as the tab index, you could consider setting
1588
+ # DISABLE_INDEX to YES when enabling this option.
1589
+ # The default value is: NO.
1590
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1591
+
1592
+ GENERATE_TREEVIEW = YES
1593
+
1594
+ # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
1595
+ # doxygen will group on one line in the generated HTML documentation.
1596
+ #
1597
+ # Note that a value of 0 will completely suppress the enum values from appearing
1598
+ # in the overview section.
1599
+ # Minimum value: 0, maximum value: 20, default value: 4.
1600
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1601
+
1602
+ ENUM_VALUES_PER_LINE = 4
1603
+
1604
+ # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
1605
+ # to set the initial width (in pixels) of the frame in which the tree is shown.
1606
+ # Minimum value: 0, maximum value: 1500, default value: 250.
1607
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1608
+
1609
+ TREEVIEW_WIDTH = 250
1610
+
1611
+ # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
1612
+ # external symbols imported via tag files in a separate window.
1613
+ # The default value is: NO.
1614
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1615
+
1616
+ EXT_LINKS_IN_WINDOW = NO
1617
+
1618
+ # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg
1619
+ # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
1620
+ # https://inkscape.org) to generate formulas as SVG images instead of PNGs for
1621
+ # the HTML output. These images will generally look nicer at scaled resolutions.
1622
+ # Possible values are: png (the default) and svg (looks nicer but requires the
1623
+ # pdf2svg or inkscape tool).
1624
+ # The default value is: png.
1625
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1626
+
1627
+ HTML_FORMULA_FORMAT = png
1628
+
1629
+ # Use this tag to change the font size of LaTeX formulas included as images in
1630
+ # the HTML documentation. When you change the font size after a successful
1631
+ # doxygen run you need to manually remove any form_*.png images from the HTML
1632
+ # output directory to force them to be regenerated.
1633
+ # Minimum value: 8, maximum value: 50, default value: 10.
1634
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1635
+
1636
+ FORMULA_FONTSIZE = 10
1637
+
1638
+ # Use the FORMULA_TRANSPARENT tag to determine whether or not the images
1639
+ # generated for formulas are transparent PNGs. Transparent PNGs are not
1640
+ # supported properly for IE 6.0, but are supported on all modern browsers.
1641
+ #
1642
+ # Note that when changing this option you need to delete any form_*.png files in
1643
+ # the HTML output directory before the changes have effect.
1644
+ # The default value is: YES.
1645
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1646
+
1647
+ FORMULA_TRANSPARENT = YES
1648
+
1649
+ # The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
1650
+ # to create new LaTeX commands to be used in formulas as building blocks. See
1651
+ # the section "Including formulas" for details.
1652
+
1653
+ FORMULA_MACROFILE =
1654
+
1655
+ # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
1656
+ # https://www.mathjax.org) which uses client side JavaScript for the rendering
1657
+ # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
1658
+ # installed or if you want to formulas look prettier in the HTML output. When
1659
+ # enabled you may also need to install MathJax separately and configure the path
1660
+ # to it using the MATHJAX_RELPATH option.
1661
+ # The default value is: NO.
1662
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1663
+
1664
+ USE_MATHJAX = NO
1665
+
1666
+ # When MathJax is enabled you can set the default output format to be used for
1667
+ # the MathJax output. See the MathJax site (see:
1668
+ # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details.
1669
+ # Possible values are: HTML-CSS (which is slower, but has the best
1670
+ # compatibility), NativeMML (i.e. MathML) and SVG.
1671
+ # The default value is: HTML-CSS.
1672
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1673
+
1674
+ MATHJAX_FORMAT = HTML-CSS
1675
+
1676
+ # When MathJax is enabled you need to specify the location relative to the HTML
1677
+ # output directory using the MATHJAX_RELPATH option. The destination directory
1678
+ # should contain the MathJax.js script. For instance, if the mathjax directory
1679
+ # is located at the same level as the HTML output directory, then
1680
+ # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
1681
+ # Content Delivery Network so you can quickly see the result without installing
1682
+ # MathJax. However, it is strongly recommended to install a local copy of
1683
+ # MathJax from https://www.mathjax.org before deployment.
1684
+ # The default value is: https://cdn.jsdelivr.net/npm/mathjax@2.
1685
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1686
+
1687
+ MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2
1688
+
1689
+ # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
1690
+ # extension names that should be enabled during MathJax rendering. For example
1691
+ # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
1692
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1693
+
1694
+ MATHJAX_EXTENSIONS =
1695
+
1696
+ # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
1697
+ # of code that will be used on startup of the MathJax code. See the MathJax site
1698
+ # (see:
1699
+ # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
1700
+ # example see the documentation.
1701
+ # This tag requires that the tag USE_MATHJAX is set to YES.
1702
+
1703
+ MATHJAX_CODEFILE =
1704
+
1705
+ # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1706
+ # the HTML output. The underlying search engine uses javascript and DHTML and
1707
+ # should work on any modern browser. Note that when using HTML help
1708
+ # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
1709
+ # there is already a search function so this one should typically be disabled.
1710
+ # For large projects the javascript based search engine can be slow, then
1711
+ # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
1712
+ # search using the keyboard; to jump to the search box use <access key> + S
1713
+ # (what the <access key> is depends on the OS and browser, but it is typically
1714
+ # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
1715
+ # key> to jump into the search results window, the results can be navigated
1716
+ # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
1717
+ # the search. The filter options can be selected when the cursor is inside the
1718
+ # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
1719
+ # to select a filter and <Enter> or <escape> to activate or cancel the filter
1720
+ # option.
1721
+ # The default value is: YES.
1722
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1723
+
1724
+ SEARCHENGINE = YES
1725
+
1726
+ # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1727
+ # implemented using a web server instead of a web client using JavaScript. There
1728
+ # are two flavors of web server based searching depending on the EXTERNAL_SEARCH
1729
+ # setting. When disabled, doxygen will generate a PHP script for searching and
1730
+ # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
1731
+ # and searching needs to be provided by external tools. See the section
1732
+ # "External Indexing and Searching" for details.
1733
+ # The default value is: NO.
1734
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1735
+
1736
+ SERVER_BASED_SEARCH = NO
1737
+
1738
+ # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1739
+ # script for searching. Instead the search results are written to an XML file
1740
+ # which needs to be processed by an external indexer. Doxygen will invoke an
1741
+ # external search engine pointed to by the SEARCHENGINE_URL option to obtain the
1742
+ # search results.
1743
+ #
1744
+ # Doxygen ships with an example indexer (doxyindexer) and search engine
1745
+ # (doxysearch.cgi) which are based on the open source search engine library
1746
+ # Xapian (see:
1747
+ # https://xapian.org/).
1748
+ #
1749
+ # See the section "External Indexing and Searching" for details.
1750
+ # The default value is: NO.
1751
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1752
+
1753
+ EXTERNAL_SEARCH = NO
1754
+
1755
+ # The SEARCHENGINE_URL should point to a search engine hosted by a web server
1756
+ # which will return the search results when EXTERNAL_SEARCH is enabled.
1757
+ #
1758
+ # Doxygen ships with an example indexer (doxyindexer) and search engine
1759
+ # (doxysearch.cgi) which are based on the open source search engine library
1760
+ # Xapian (see:
1761
+ # https://xapian.org/). See the section "External Indexing and Searching" for
1762
+ # details.
1763
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1764
+
1765
+ SEARCHENGINE_URL =
1766
+
1767
+ # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
1768
+ # search data is written to a file for indexing by an external tool. With the
1769
+ # SEARCHDATA_FILE tag the name of this file can be specified.
1770
+ # The default file is: searchdata.xml.
1771
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1772
+
1773
+ SEARCHDATA_FILE = searchdata.xml
1774
+
1775
+ # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
1776
+ # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
1777
+ # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
1778
+ # projects and redirect the results back to the right project.
1779
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1780
+
1781
+ EXTERNAL_SEARCH_ID =
1782
+
1783
+ # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
1784
+ # projects other than the one defined by this configuration file, but that are
1785
+ # all added to the same external search index. Each project needs to have a
1786
+ # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
1787
+ # to a relative location where the documentation can be found. The format is:
1788
+ # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
1789
+ # This tag requires that the tag SEARCHENGINE is set to YES.
1790
+
1791
+ EXTRA_SEARCH_MAPPINGS =
1792
+
1793
+ #---------------------------------------------------------------------------
1794
+ # Configuration options related to the LaTeX output
1795
+ #---------------------------------------------------------------------------
1796
+
1797
+ # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
1798
+ # The default value is: YES.
1799
+
1800
+ GENERATE_LATEX = YES
1801
+
1802
+ # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
1803
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1804
+ # it.
1805
+ # The default directory is: latex.
1806
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1807
+
1808
+ LATEX_OUTPUT = latex
1809
+
1810
+ # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1811
+ # invoked.
1812
+ #
1813
+ # Note that when not enabling USE_PDFLATEX the default is latex when enabling
1814
+ # USE_PDFLATEX the default is pdflatex and when in the later case latex is
1815
+ # chosen this is overwritten by pdflatex. For specific output languages the
1816
+ # default can have been set differently, this depends on the implementation of
1817
+ # the output language.
1818
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1819
+
1820
+ LATEX_CMD_NAME =
1821
+
1822
+ # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
1823
+ # index for LaTeX.
1824
+ # Note: This tag is used in the Makefile / make.bat.
1825
+ # See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
1826
+ # (.tex).
1827
+ # The default file is: makeindex.
1828
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1829
+
1830
+ MAKEINDEX_CMD_NAME = makeindex
1831
+
1832
+ # The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
1833
+ # generate index for LaTeX. In case there is no backslash (\) as first character
1834
+ # it will be automatically added in the LaTeX code.
1835
+ # Note: This tag is used in the generated output file (.tex).
1836
+ # See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
1837
+ # The default value is: makeindex.
1838
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1839
+
1840
+ LATEX_MAKEINDEX_CMD = makeindex
1841
+
1842
+ # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
1843
+ # documents. This may be useful for small projects and may help to save some
1844
+ # trees in general.
1845
+ # The default value is: NO.
1846
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1847
+
1848
+ COMPACT_LATEX = NO
1849
+
1850
+ # The PAPER_TYPE tag can be used to set the paper type that is used by the
1851
+ # printer.
1852
+ # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
1853
+ # 14 inches) and executive (7.25 x 10.5 inches).
1854
+ # The default value is: a4.
1855
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1856
+
1857
+ PAPER_TYPE = a4
1858
+
1859
+ # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
1860
+ # that should be included in the LaTeX output. The package can be specified just
1861
+ # by its name or with the correct syntax as to be used with the LaTeX
1862
+ # \usepackage command. To get the times font for instance you can specify :
1863
+ # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
1864
+ # To use the option intlimits with the amsmath package you can specify:
1865
+ # EXTRA_PACKAGES=[intlimits]{amsmath}
1866
+ # If left blank no extra packages will be included.
1867
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1868
+
1869
+ EXTRA_PACKAGES =
1870
+
1871
+ # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
1872
+ # generated LaTeX document. The header should contain everything until the first
1873
+ # chapter. If it is left blank doxygen will generate a standard header. See
1874
+ # section "Doxygen usage" for information on how to let doxygen write the
1875
+ # default header to a separate file.
1876
+ #
1877
+ # Note: Only use a user-defined header if you know what you are doing! The
1878
+ # following commands have a special meaning inside the header: $title,
1879
+ # $datetime, $date, $doxygenversion, $projectname, $projectnumber,
1880
+ # $projectbrief, $projectlogo. Doxygen will replace $title with the empty
1881
+ # string, for the replacement values of the other commands the user is referred
1882
+ # to HTML_HEADER.
1883
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1884
+
1885
+ LATEX_HEADER =
1886
+
1887
+ # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
1888
+ # generated LaTeX document. The footer should contain everything after the last
1889
+ # chapter. If it is left blank doxygen will generate a standard footer. See
1890
+ # LATEX_HEADER for more information on how to generate a default footer and what
1891
+ # special commands can be used inside the footer.
1892
+ #
1893
+ # Note: Only use a user-defined footer if you know what you are doing!
1894
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1895
+
1896
+ LATEX_FOOTER =
1897
+
1898
+ # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
1899
+ # LaTeX style sheets that are included after the standard style sheets created
1900
+ # by doxygen. Using this option one can overrule certain style aspects. Doxygen
1901
+ # will copy the style sheet files to the output directory.
1902
+ # Note: The order of the extra style sheet files is of importance (e.g. the last
1903
+ # style sheet in the list overrules the setting of the previous ones in the
1904
+ # list).
1905
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1906
+
1907
+ LATEX_EXTRA_STYLESHEET =
1908
+
1909
+ # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
1910
+ # other source files which should be copied to the LATEX_OUTPUT output
1911
+ # directory. Note that the files will be copied as-is; there are no commands or
1912
+ # markers available.
1913
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1914
+
1915
+ LATEX_EXTRA_FILES =
1916
+
1917
+ # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
1918
+ # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
1919
+ # contain links (just like the HTML output) instead of page references. This
1920
+ # makes the output suitable for online browsing using a PDF viewer.
1921
+ # The default value is: YES.
1922
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1923
+
1924
+ PDF_HYPERLINKS = YES
1925
+
1926
+ # If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as
1927
+ # specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
1928
+ # files. Set this option to YES, to get a higher quality PDF documentation.
1929
+ #
1930
+ # See also section LATEX_CMD_NAME for selecting the engine.
1931
+ # The default value is: YES.
1932
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1933
+
1934
+ USE_PDFLATEX = YES
1935
+
1936
+ # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
1937
+ # command to the generated LaTeX files. This will instruct LaTeX to keep running
1938
+ # if errors occur, instead of asking the user for help. This option is also used
1939
+ # when generating formulas in HTML.
1940
+ # The default value is: NO.
1941
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1942
+
1943
+ LATEX_BATCHMODE = NO
1944
+
1945
+ # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
1946
+ # index chapters (such as File Index, Compound Index, etc.) in the output.
1947
+ # The default value is: NO.
1948
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1949
+
1950
+ LATEX_HIDE_INDICES = NO
1951
+
1952
+ # If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
1953
+ # code with syntax highlighting in the LaTeX output.
1954
+ #
1955
+ # Note that which sources are shown also depends on other settings such as
1956
+ # SOURCE_BROWSER.
1957
+ # The default value is: NO.
1958
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1959
+
1960
+ LATEX_SOURCE_CODE = NO
1961
+
1962
+ # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
1963
+ # bibliography, e.g. plainnat, or ieeetr. See
1964
+ # https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
1965
+ # The default value is: plain.
1966
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1967
+
1968
+ LATEX_BIB_STYLE = plain
1969
+
1970
+ # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1971
+ # page will contain the date and time when the page was generated. Setting this
1972
+ # to NO can help when comparing the output of multiple runs.
1973
+ # The default value is: NO.
1974
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1975
+
1976
+ LATEX_TIMESTAMP = NO
1977
+
1978
+ # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
1979
+ # path from which the emoji images will be read. If a relative path is entered,
1980
+ # it will be relative to the LATEX_OUTPUT directory. If left blank the
1981
+ # LATEX_OUTPUT directory will be used.
1982
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1983
+
1984
+ LATEX_EMOJI_DIRECTORY =
1985
+
1986
+ #---------------------------------------------------------------------------
1987
+ # Configuration options related to the RTF output
1988
+ #---------------------------------------------------------------------------
1989
+
1990
+ # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
1991
+ # RTF output is optimized for Word 97 and may not look too pretty with other RTF
1992
+ # readers/editors.
1993
+ # The default value is: NO.
1994
+
1995
+ GENERATE_RTF = NO
1996
+
1997
+ # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
1998
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1999
+ # it.
2000
+ # The default directory is: rtf.
2001
+ # This tag requires that the tag GENERATE_RTF is set to YES.
2002
+
2003
+ RTF_OUTPUT = rtf
2004
+
2005
+ # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
2006
+ # documents. This may be useful for small projects and may help to save some
2007
+ # trees in general.
2008
+ # The default value is: NO.
2009
+ # This tag requires that the tag GENERATE_RTF is set to YES.
2010
+
2011
+ COMPACT_RTF = NO
2012
+
2013
+ # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
2014
+ # contain hyperlink fields. The RTF file will contain links (just like the HTML
2015
+ # output) instead of page references. This makes the output suitable for online
2016
+ # browsing using Word or some other Word compatible readers that support those
2017
+ # fields.
2018
+ #
2019
+ # Note: WordPad (write) and others do not support links.
2020
+ # The default value is: NO.
2021
+ # This tag requires that the tag GENERATE_RTF is set to YES.
2022
+
2023
+ RTF_HYPERLINKS = NO
2024
+
2025
+ # Load stylesheet definitions from file. Syntax is similar to doxygen's
2026
+ # configuration file, i.e. a series of assignments. You only have to provide
2027
+ # replacements, missing definitions are set to their default value.
2028
+ #
2029
+ # See also section "Doxygen usage" for information on how to generate the
2030
+ # default style sheet that doxygen normally uses.
2031
+ # This tag requires that the tag GENERATE_RTF is set to YES.
2032
+
2033
+ RTF_STYLESHEET_FILE =
2034
+
2035
+ # Set optional variables used in the generation of an RTF document. Syntax is
2036
+ # similar to doxygen's configuration file. A template extensions file can be
2037
+ # generated using doxygen -e rtf extensionFile.
2038
+ # This tag requires that the tag GENERATE_RTF is set to YES.
2039
+
2040
+ RTF_EXTENSIONS_FILE =
2041
+
2042
+ # If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code
2043
+ # with syntax highlighting in the RTF output.
2044
+ #
2045
+ # Note that which sources are shown also depends on other settings such as
2046
+ # SOURCE_BROWSER.
2047
+ # The default value is: NO.
2048
+ # This tag requires that the tag GENERATE_RTF is set to YES.
2049
+
2050
+ RTF_SOURCE_CODE = NO
2051
+
2052
+ #---------------------------------------------------------------------------
2053
+ # Configuration options related to the man page output
2054
+ #---------------------------------------------------------------------------
2055
+
2056
+ # If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
2057
+ # classes and files.
2058
+ # The default value is: NO.
2059
+
2060
+ GENERATE_MAN = NO
2061
+
2062
+ # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
2063
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
2064
+ # it. A directory man3 will be created inside the directory specified by
2065
+ # MAN_OUTPUT.
2066
+ # The default directory is: man.
2067
+ # This tag requires that the tag GENERATE_MAN is set to YES.
2068
+
2069
+ MAN_OUTPUT = man
2070
+
2071
+ # The MAN_EXTENSION tag determines the extension that is added to the generated
2072
+ # man pages. In case the manual section does not start with a number, the number
2073
+ # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
2074
+ # optional.
2075
+ # The default value is: .3.
2076
+ # This tag requires that the tag GENERATE_MAN is set to YES.
2077
+
2078
+ MAN_EXTENSION = .3
2079
+
2080
+ # The MAN_SUBDIR tag determines the name of the directory created within
2081
+ # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
2082
+ # MAN_EXTENSION with the initial . removed.
2083
+ # This tag requires that the tag GENERATE_MAN is set to YES.
2084
+
2085
+ MAN_SUBDIR =
2086
+
2087
+ # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
2088
+ # will generate one additional man file for each entity documented in the real
2089
+ # man page(s). These additional files only source the real man page, but without
2090
+ # them the man command would be unable to find the correct page.
2091
+ # The default value is: NO.
2092
+ # This tag requires that the tag GENERATE_MAN is set to YES.
2093
+
2094
+ MAN_LINKS = NO
2095
+
2096
+ #---------------------------------------------------------------------------
2097
+ # Configuration options related to the XML output
2098
+ #---------------------------------------------------------------------------
2099
+
2100
+ # If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
2101
+ # captures the structure of the code including all documentation.
2102
+ # The default value is: NO.
2103
+
2104
+ GENERATE_XML = NO
2105
+
2106
+ # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
2107
+ # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
2108
+ # it.
2109
+ # The default directory is: xml.
2110
+ # This tag requires that the tag GENERATE_XML is set to YES.
2111
+
2112
+ XML_OUTPUT = xml
2113
+
2114
+ # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
2115
+ # listings (including syntax highlighting and cross-referencing information) to
2116
+ # the XML output. Note that enabling this will significantly increase the size
2117
+ # of the XML output.
2118
+ # The default value is: YES.
2119
+ # This tag requires that the tag GENERATE_XML is set to YES.
2120
+
2121
+ XML_PROGRAMLISTING = YES
2122
+
2123
+ # If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include
2124
+ # namespace members in file scope as well, matching the HTML output.
2125
+ # The default value is: NO.
2126
+ # This tag requires that the tag GENERATE_XML is set to YES.
2127
+
2128
+ XML_NS_MEMB_FILE_SCOPE = NO
2129
+
2130
+ #---------------------------------------------------------------------------
2131
+ # Configuration options related to the DOCBOOK output
2132
+ #---------------------------------------------------------------------------
2133
+
2134
+ # If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
2135
+ # that can be used to generate PDF.
2136
+ # The default value is: NO.
2137
+
2138
+ GENERATE_DOCBOOK = NO
2139
+
2140
+ # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
2141
+ # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
2142
+ # front of it.
2143
+ # The default directory is: docbook.
2144
+ # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
2145
+
2146
+ DOCBOOK_OUTPUT = docbook
2147
+
2148
+ # If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the
2149
+ # program listings (including syntax highlighting and cross-referencing
2150
+ # information) to the DOCBOOK output. Note that enabling this will significantly
2151
+ # increase the size of the DOCBOOK output.
2152
+ # The default value is: NO.
2153
+ # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
2154
+
2155
+ DOCBOOK_PROGRAMLISTING = NO
2156
+
2157
+ #---------------------------------------------------------------------------
2158
+ # Configuration options for the AutoGen Definitions output
2159
+ #---------------------------------------------------------------------------
2160
+
2161
+ # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
2162
+ # AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
2163
+ # the structure of the code including all documentation. Note that this feature
2164
+ # is still experimental and incomplete at the moment.
2165
+ # The default value is: NO.
2166
+
2167
+ GENERATE_AUTOGEN_DEF = NO
2168
+
2169
+ #---------------------------------------------------------------------------
2170
+ # Configuration options related to the Perl module output
2171
+ #---------------------------------------------------------------------------
2172
+
2173
+ # If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
2174
+ # file that captures the structure of the code including all documentation.
2175
+ #
2176
+ # Note that this feature is still experimental and incomplete at the moment.
2177
+ # The default value is: NO.
2178
+
2179
+ GENERATE_PERLMOD = NO
2180
+
2181
+ # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
2182
+ # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
2183
+ # output from the Perl module output.
2184
+ # The default value is: NO.
2185
+ # This tag requires that the tag GENERATE_PERLMOD is set to YES.
2186
+
2187
+ PERLMOD_LATEX = NO
2188
+
2189
+ # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
2190
+ # formatted so it can be parsed by a human reader. This is useful if you want to
2191
+ # understand what is going on. On the other hand, if this tag is set to NO, the
2192
+ # size of the Perl module output will be much smaller and Perl will parse it
2193
+ # just the same.
2194
+ # The default value is: YES.
2195
+ # This tag requires that the tag GENERATE_PERLMOD is set to YES.
2196
+
2197
+ PERLMOD_PRETTY = YES
2198
+
2199
+ # The names of the make variables in the generated doxyrules.make file are
2200
+ # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
2201
+ # so different doxyrules.make files included by the same Makefile don't
2202
+ # overwrite each other's variables.
2203
+ # This tag requires that the tag GENERATE_PERLMOD is set to YES.
2204
+
2205
+ PERLMOD_MAKEVAR_PREFIX =
2206
+
2207
+ #---------------------------------------------------------------------------
2208
+ # Configuration options related to the preprocessor
2209
+ #---------------------------------------------------------------------------
2210
+
2211
+ # If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
2212
+ # C-preprocessor directives found in the sources and include files.
2213
+ # The default value is: YES.
2214
+
2215
+ ENABLE_PREPROCESSING = YES
2216
+
2217
+ # If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
2218
+ # in the source code. If set to NO, only conditional compilation will be
2219
+ # performed. Macro expansion can be done in a controlled way by setting
2220
+ # EXPAND_ONLY_PREDEF to YES.
2221
+ # The default value is: NO.
2222
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2223
+
2224
+ MACRO_EXPANSION = NO
2225
+
2226
+ # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
2227
+ # the macro expansion is limited to the macros specified with the PREDEFINED and
2228
+ # EXPAND_AS_DEFINED tags.
2229
+ # The default value is: NO.
2230
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2231
+
2232
+ EXPAND_ONLY_PREDEF = NO
2233
+
2234
+ # If the SEARCH_INCLUDES tag is set to YES, the include files in the
2235
+ # INCLUDE_PATH will be searched if a #include is found.
2236
+ # The default value is: YES.
2237
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2238
+
2239
+ SEARCH_INCLUDES = YES
2240
+
2241
+ # The INCLUDE_PATH tag can be used to specify one or more directories that
2242
+ # contain include files that are not input files but should be processed by the
2243
+ # preprocessor.
2244
+ # This tag requires that the tag SEARCH_INCLUDES is set to YES.
2245
+
2246
+ INCLUDE_PATH =
2247
+
2248
+ # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
2249
+ # patterns (like *.h and *.hpp) to filter out the header-files in the
2250
+ # directories. If left blank, the patterns specified with FILE_PATTERNS will be
2251
+ # used.
2252
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2253
+
2254
+ INCLUDE_FILE_PATTERNS =
2255
+
2256
+ # The PREDEFINED tag can be used to specify one or more macro names that are
2257
+ # defined before the preprocessor is started (similar to the -D option of e.g.
2258
+ # gcc). The argument of the tag is a list of macros of the form: name or
2259
+ # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
2260
+ # is assumed. To prevent a macro definition from being undefined via #undef or
2261
+ # recursively expanded use the := operator instead of the = operator.
2262
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2263
+
2264
+ PREDEFINED = COUCHBASE_CXX_CLIENT_DOXYGEN
2265
+
2266
+ # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
2267
+ # tag can be used to specify a list of macro names that should be expanded. The
2268
+ # macro definition that is found in the sources will be used. Use the PREDEFINED
2269
+ # tag if you want to use a different macro definition that overrules the
2270
+ # definition found in the source code.
2271
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2272
+
2273
+ EXPAND_AS_DEFINED =
2274
+
2275
+ # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
2276
+ # remove all references to function-like macros that are alone on a line, have
2277
+ # an all uppercase name, and do not end with a semicolon. Such function macros
2278
+ # are typically used for boiler-plate code, and will confuse the parser if not
2279
+ # removed.
2280
+ # The default value is: YES.
2281
+ # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2282
+
2283
+ SKIP_FUNCTION_MACROS = YES
2284
+
2285
+ #---------------------------------------------------------------------------
2286
+ # Configuration options related to external references
2287
+ #---------------------------------------------------------------------------
2288
+
2289
+ # The TAGFILES tag can be used to specify one or more tag files. For each tag
2290
+ # file the location of the external documentation should be added. The format of
2291
+ # a tag file without this location is as follows:
2292
+ # TAGFILES = file1 file2 ...
2293
+ # Adding location for the tag files is done as follows:
2294
+ # TAGFILES = file1=loc1 "file2 = loc2" ...
2295
+ # where loc1 and loc2 can be relative or absolute paths or URLs. See the
2296
+ # section "Linking to external documentation" for more information about the use
2297
+ # of tag files.
2298
+ # Note: Each tag file must have a unique name (where the name does NOT include
2299
+ # the path). If a tag file is not located in the directory in which doxygen is
2300
+ # run, you must also specify the path to the tagfile here.
2301
+
2302
+ TAGFILES =
2303
+
2304
+ # When a file name is specified after GENERATE_TAGFILE, doxygen will create a
2305
+ # tag file that is based on the input files it reads. See section "Linking to
2306
+ # external documentation" for more information about the usage of tag files.
2307
+
2308
+ GENERATE_TAGFILE =
2309
+
2310
+ # If the ALLEXTERNALS tag is set to YES, all external class will be listed in
2311
+ # the class index. If set to NO, only the inherited external classes will be
2312
+ # listed.
2313
+ # The default value is: NO.
2314
+
2315
+ ALLEXTERNALS = NO
2316
+
2317
+ # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
2318
+ # in the modules index. If set to NO, only the current project's groups will be
2319
+ # listed.
2320
+ # The default value is: YES.
2321
+
2322
+ EXTERNAL_GROUPS = YES
2323
+
2324
+ # If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
2325
+ # the related pages index. If set to NO, only the current project's pages will
2326
+ # be listed.
2327
+ # The default value is: YES.
2328
+
2329
+ EXTERNAL_PAGES = YES
2330
+
2331
+ #---------------------------------------------------------------------------
2332
+ # Configuration options related to the dot tool
2333
+ #---------------------------------------------------------------------------
2334
+
2335
+ # If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
2336
+ # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
2337
+ # NO turns the diagrams off. Note that this option also works with HAVE_DOT
2338
+ # disabled, but it is recommended to install and use dot, since it yields more
2339
+ # powerful graphs.
2340
+ # The default value is: YES.
2341
+
2342
+ CLASS_DIAGRAMS = YES
2343
+
2344
+ # You can include diagrams made with dia in doxygen documentation. Doxygen will
2345
+ # then run dia to produce the diagram and insert it in the documentation. The
2346
+ # DIA_PATH tag allows you to specify the directory where the dia binary resides.
2347
+ # If left empty dia is assumed to be found in the default search path.
2348
+
2349
+ DIA_PATH =
2350
+
2351
+ # If set to YES the inheritance and collaboration graphs will hide inheritance
2352
+ # and usage relations if the target is undocumented or is not a class.
2353
+ # The default value is: YES.
2354
+
2355
+ HIDE_UNDOC_RELATIONS = YES
2356
+
2357
+ # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
2358
+ # available from the path. This tool is part of Graphviz (see:
2359
+ # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2360
+ # Bell Labs. The other options in this section have no effect if this option is
2361
+ # set to NO
2362
+ # The default value is: NO.
2363
+
2364
+ HAVE_DOT = YES
2365
+
2366
+ # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
2367
+ # to run in parallel. When set to 0 doxygen will base this on the number of
2368
+ # processors available in the system. You can set it explicitly to a value
2369
+ # larger than 0 to get control over the balance between CPU load and processing
2370
+ # speed.
2371
+ # Minimum value: 0, maximum value: 32, default value: 0.
2372
+ # This tag requires that the tag HAVE_DOT is set to YES.
2373
+
2374
+ DOT_NUM_THREADS = 0
2375
+
2376
+ # When you want a differently looking font in the dot files that doxygen
2377
+ # generates you can specify the font name using DOT_FONTNAME. You need to make
2378
+ # sure dot is able to find the font, which can be done by putting it in a
2379
+ # standard location or by setting the DOTFONTPATH environment variable or by
2380
+ # setting DOT_FONTPATH to the directory containing the font.
2381
+ # The default value is: Helvetica.
2382
+ # This tag requires that the tag HAVE_DOT is set to YES.
2383
+
2384
+ DOT_FONTNAME = Helvetica
2385
+
2386
+ # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2387
+ # dot graphs.
2388
+ # Minimum value: 4, maximum value: 24, default value: 10.
2389
+ # This tag requires that the tag HAVE_DOT is set to YES.
2390
+
2391
+ DOT_FONTSIZE = 10
2392
+
2393
+ # By default doxygen will tell dot to use the default font as specified with
2394
+ # DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
2395
+ # the path where dot can find it using this tag.
2396
+ # This tag requires that the tag HAVE_DOT is set to YES.
2397
+
2398
+ DOT_FONTPATH =
2399
+
2400
+ # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
2401
+ # each documented class showing the direct and indirect inheritance relations.
2402
+ # Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
2403
+ # The default value is: YES.
2404
+ # This tag requires that the tag HAVE_DOT is set to YES.
2405
+
2406
+ CLASS_GRAPH = YES
2407
+
2408
+ # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
2409
+ # graph for each documented class showing the direct and indirect implementation
2410
+ # dependencies (inheritance, containment, and class references variables) of the
2411
+ # class with other documented classes.
2412
+ # The default value is: YES.
2413
+ # This tag requires that the tag HAVE_DOT is set to YES.
2414
+
2415
+ COLLABORATION_GRAPH = NO
2416
+
2417
+ # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
2418
+ # groups, showing the direct groups dependencies.
2419
+ # The default value is: YES.
2420
+ # This tag requires that the tag HAVE_DOT is set to YES.
2421
+
2422
+ GROUP_GRAPHS = YES
2423
+
2424
+ # If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
2425
+ # collaboration diagrams in a style similar to the OMG's Unified Modeling
2426
+ # Language.
2427
+ # The default value is: NO.
2428
+ # This tag requires that the tag HAVE_DOT is set to YES.
2429
+
2430
+ UML_LOOK = YES
2431
+
2432
+ # If the UML_LOOK tag is enabled, the fields and methods are shown inside the
2433
+ # class node. If there are many fields or methods and many nodes the graph may
2434
+ # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
2435
+ # number of items for each type to make the size more manageable. Set this to 0
2436
+ # for no limit. Note that the threshold may be exceeded by 50% before the limit
2437
+ # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
2438
+ # but if the number exceeds 15, the total amount of fields shown is limited to
2439
+ # 10.
2440
+ # Minimum value: 0, maximum value: 100, default value: 10.
2441
+ # This tag requires that the tag UML_LOOK is set to YES.
2442
+
2443
+ UML_LIMIT_NUM_FIELDS = 10
2444
+
2445
+ # If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and
2446
+ # methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
2447
+ # tag is set to YES, doxygen will add type and arguments for attributes and
2448
+ # methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen
2449
+ # will not generate fields with class member information in the UML graphs. The
2450
+ # class diagrams will look similar to the default class diagrams but using UML
2451
+ # notation for the relationships.
2452
+ # Possible values are: NO, YES and NONE.
2453
+ # The default value is: NO.
2454
+ # This tag requires that the tag UML_LOOK is set to YES.
2455
+
2456
+ DOT_UML_DETAILS = NO
2457
+
2458
+ # The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
2459
+ # to display on a single line. If the actual line length exceeds this threshold
2460
+ # significantly it will wrapped across multiple lines. Some heuristics are apply
2461
+ # to avoid ugly line breaks.
2462
+ # Minimum value: 0, maximum value: 1000, default value: 17.
2463
+ # This tag requires that the tag HAVE_DOT is set to YES.
2464
+
2465
+ DOT_WRAP_THRESHOLD = 17
2466
+
2467
+ # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
2468
+ # collaboration graphs will show the relations between templates and their
2469
+ # instances.
2470
+ # The default value is: NO.
2471
+ # This tag requires that the tag HAVE_DOT is set to YES.
2472
+
2473
+ TEMPLATE_RELATIONS = NO
2474
+
2475
+ # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
2476
+ # YES then doxygen will generate a graph for each documented file showing the
2477
+ # direct and indirect include dependencies of the file with other documented
2478
+ # files.
2479
+ # The default value is: YES.
2480
+ # This tag requires that the tag HAVE_DOT is set to YES.
2481
+
2482
+ INCLUDE_GRAPH = YES
2483
+
2484
+ # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
2485
+ # set to YES then doxygen will generate a graph for each documented file showing
2486
+ # the direct and indirect include dependencies of the file with other documented
2487
+ # files.
2488
+ # The default value is: YES.
2489
+ # This tag requires that the tag HAVE_DOT is set to YES.
2490
+
2491
+ INCLUDED_BY_GRAPH = YES
2492
+
2493
+ # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
2494
+ # dependency graph for every global function or class method.
2495
+ #
2496
+ # Note that enabling this option will significantly increase the time of a run.
2497
+ # So in most cases it will be better to enable call graphs for selected
2498
+ # functions only using the \callgraph command. Disabling a call graph can be
2499
+ # accomplished by means of the command \hidecallgraph.
2500
+ # The default value is: NO.
2501
+ # This tag requires that the tag HAVE_DOT is set to YES.
2502
+
2503
+ CALL_GRAPH = NO
2504
+
2505
+ # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
2506
+ # dependency graph for every global function or class method.
2507
+ #
2508
+ # Note that enabling this option will significantly increase the time of a run.
2509
+ # So in most cases it will be better to enable caller graphs for selected
2510
+ # functions only using the \callergraph command. Disabling a caller graph can be
2511
+ # accomplished by means of the command \hidecallergraph.
2512
+ # The default value is: NO.
2513
+ # This tag requires that the tag HAVE_DOT is set to YES.
2514
+
2515
+ CALLER_GRAPH = NO
2516
+
2517
+ # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
2518
+ # hierarchy of all classes instead of a textual one.
2519
+ # The default value is: YES.
2520
+ # This tag requires that the tag HAVE_DOT is set to YES.
2521
+
2522
+ GRAPHICAL_HIERARCHY = YES
2523
+
2524
+ # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
2525
+ # dependencies a directory has on other directories in a graphical way. The
2526
+ # dependency relations are determined by the #include relations between the
2527
+ # files in the directories.
2528
+ # The default value is: YES.
2529
+ # This tag requires that the tag HAVE_DOT is set to YES.
2530
+
2531
+ DIRECTORY_GRAPH = YES
2532
+
2533
+ # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
2534
+ # generated by dot. For an explanation of the image formats see the section
2535
+ # output formats in the documentation of the dot tool (Graphviz (see:
2536
+ # http://www.graphviz.org/)).
2537
+ # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2538
+ # to make the SVG files visible in IE 9+ (other browsers do not have this
2539
+ # requirement).
2540
+ # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
2541
+ # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
2542
+ # png:gdiplus:gdiplus.
2543
+ # The default value is: png.
2544
+ # This tag requires that the tag HAVE_DOT is set to YES.
2545
+
2546
+ DOT_IMAGE_FORMAT = png
2547
+
2548
+ # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2549
+ # enable generation of interactive SVG images that allow zooming and panning.
2550
+ #
2551
+ # Note that this requires a modern browser other than Internet Explorer. Tested
2552
+ # and working are Firefox, Chrome, Safari, and Opera.
2553
+ # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
2554
+ # the SVG files visible. Older versions of IE do not have SVG support.
2555
+ # The default value is: NO.
2556
+ # This tag requires that the tag HAVE_DOT is set to YES.
2557
+
2558
+ INTERACTIVE_SVG = NO
2559
+
2560
+ # The DOT_PATH tag can be used to specify the path where the dot tool can be
2561
+ # found. If left blank, it is assumed the dot tool can be found in the path.
2562
+ # This tag requires that the tag HAVE_DOT is set to YES.
2563
+
2564
+ DOT_PATH =
2565
+
2566
+ # The DOTFILE_DIRS tag can be used to specify one or more directories that
2567
+ # contain dot files that are included in the documentation (see the \dotfile
2568
+ # command).
2569
+ # This tag requires that the tag HAVE_DOT is set to YES.
2570
+
2571
+ DOTFILE_DIRS =
2572
+
2573
+ # The MSCFILE_DIRS tag can be used to specify one or more directories that
2574
+ # contain msc files that are included in the documentation (see the \mscfile
2575
+ # command).
2576
+
2577
+ MSCFILE_DIRS =
2578
+
2579
+ # The DIAFILE_DIRS tag can be used to specify one or more directories that
2580
+ # contain dia files that are included in the documentation (see the \diafile
2581
+ # command).
2582
+
2583
+ DIAFILE_DIRS =
2584
+
2585
+ # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
2586
+ # path where java can find the plantuml.jar file. If left blank, it is assumed
2587
+ # PlantUML is not used or called during a preprocessing step. Doxygen will
2588
+ # generate a warning when it encounters a \startuml command in this case and
2589
+ # will not generate output for the diagram.
2590
+
2591
+ PLANTUML_JAR_PATH = ${PLANTUML_JAR_PATH}
2592
+
2593
+ # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
2594
+ # configuration file for plantuml.
2595
+
2596
+ PLANTUML_CFG_FILE =
2597
+
2598
+ # When using plantuml, the specified paths are searched for files specified by
2599
+ # the !include statement in a plantuml block.
2600
+
2601
+ PLANTUML_INCLUDE_PATH =
2602
+
2603
+ # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
2604
+ # that will be shown in the graph. If the number of nodes in a graph becomes
2605
+ # larger than this value, doxygen will truncate the graph, which is visualized
2606
+ # by representing a node as a red box. Note that doxygen if the number of direct
2607
+ # children of the root node in a graph is already larger than
2608
+ # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
2609
+ # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
2610
+ # Minimum value: 0, maximum value: 10000, default value: 50.
2611
+ # This tag requires that the tag HAVE_DOT is set to YES.
2612
+
2613
+ DOT_GRAPH_MAX_NODES = 50
2614
+
2615
+ # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2616
+ # generated by dot. A depth value of 3 means that only nodes reachable from the
2617
+ # root by following a path via at most 3 edges will be shown. Nodes that lay
2618
+ # further from the root node will be omitted. Note that setting this option to 1
2619
+ # or 2 may greatly reduce the computation time needed for large code bases. Also
2620
+ # note that the size of a graph can be further restricted by
2621
+ # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
2622
+ # Minimum value: 0, maximum value: 1000, default value: 0.
2623
+ # This tag requires that the tag HAVE_DOT is set to YES.
2624
+
2625
+ MAX_DOT_GRAPH_DEPTH = 0
2626
+
2627
+ # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
2628
+ # background. This is disabled by default, because dot on Windows does not seem
2629
+ # to support this out of the box.
2630
+ #
2631
+ # Warning: Depending on the platform used, enabling this option may lead to
2632
+ # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
2633
+ # read).
2634
+ # The default value is: NO.
2635
+ # This tag requires that the tag HAVE_DOT is set to YES.
2636
+
2637
+ DOT_TRANSPARENT = NO
2638
+
2639
+ # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
2640
+ # files in one run (i.e. multiple -o and -T options on the command line). This
2641
+ # makes dot run faster, but since only newer versions of dot (>1.8.10) support
2642
+ # this, this feature is disabled by default.
2643
+ # The default value is: NO.
2644
+ # This tag requires that the tag HAVE_DOT is set to YES.
2645
+
2646
+ DOT_MULTI_TARGETS = NO
2647
+
2648
+ # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
2649
+ # explaining the meaning of the various boxes and arrows in the dot generated
2650
+ # graphs.
2651
+ # The default value is: YES.
2652
+ # This tag requires that the tag HAVE_DOT is set to YES.
2653
+
2654
+ GENERATE_LEGEND = YES
2655
+
2656
+ # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate
2657
+ # files that are used to generate the various graphs.
2658
+ #
2659
+ # Note: This setting is not only used for dot files but also for msc and
2660
+ # plantuml temporary files.
2661
+ # The default value is: YES.
2662
+
2663
+ DOT_CLEANUP = YES