couchbase 4.2.8-dev.1 → 4.2.9
Sign up to get free protection for your applications and to get access to all the features.
- package/CMakeLists.txt +1 -1
- package/deps/couchbase-cxx-cache/mozilla-ca-bundle.crt +139 -56
- package/deps/couchbase-cxx-cache/mozilla-ca-bundle.sha256 +1 -1
- package/deps/couchbase-cxx-client/CMakeLists.txt +397 -424
- package/deps/couchbase-cxx-client/core/agent_config.hxx +1 -1
- package/deps/couchbase-cxx-client/core/agent_group.cxx +0 -1
- package/deps/couchbase-cxx-client/core/agent_group.hxx +9 -0
- package/deps/couchbase-cxx-client/core/agent_group_config.hxx +1 -1
- package/deps/couchbase-cxx-client/core/bucket.cxx +22 -8
- package/deps/couchbase-cxx-client/core/bucket.hxx +3 -1
- package/deps/couchbase-cxx-client/core/cluster.cxx +1453 -108
- package/deps/couchbase-cxx-client/core/cluster.hxx +183 -473
- package/deps/couchbase-cxx-client/core/cluster_agent_config.hxx +1 -1
- package/deps/couchbase-cxx-client/core/cluster_options.cxx +12 -2
- package/deps/couchbase-cxx-client/core/cluster_options.hxx +9 -8
- package/deps/couchbase-cxx-client/core/config_profiles.cxx +2 -2
- package/deps/couchbase-cxx-client/core/config_profiles.hxx +1 -1
- package/deps/couchbase-cxx-client/core/core_sdk_shim.cxx +1 -2
- package/deps/couchbase-cxx-client/core/core_sdk_shim.hxx +3 -2
- package/deps/couchbase-cxx-client/core/diagnostics.hxx +0 -1
- package/deps/couchbase-cxx-client/core/dispatcher.cxx +2 -2
- package/deps/couchbase-cxx-client/core/impl/analytics.cxx +38 -76
- package/deps/couchbase-cxx-client/core/impl/analytics.hxx +40 -0
- package/deps/couchbase-cxx-client/core/impl/analytics_index_manager.cxx +820 -0
- package/deps/couchbase-cxx-client/core/impl/binary_collection.cxx +403 -0
- package/deps/couchbase-cxx-client/core/impl/bucket.cxx +78 -0
- package/deps/couchbase-cxx-client/core/impl/bucket_manager.cxx +433 -0
- package/deps/couchbase-cxx-client/core/impl/cluster.cxx +226 -44
- package/deps/couchbase-cxx-client/core/impl/collection.cxx +1384 -0
- package/deps/couchbase-cxx-client/core/impl/collection_manager.cxx +306 -0
- package/deps/couchbase-cxx-client/core/impl/configuration_profiles_registry.cxx +3 -1
- package/deps/couchbase-cxx-client/core/impl/dns_srv_tracker.cxx +2 -0
- package/deps/couchbase-cxx-client/core/{operations/mcbp_noop.cxx → impl/doc_id_query.cxx} +19 -15
- package/deps/couchbase-cxx-client/core/impl/key_value_error_category.cxx +4 -2
- package/deps/couchbase-cxx-client/core/impl/lookup_in_all_replicas.hxx +0 -10
- package/deps/couchbase-cxx-client/core/impl/lookup_in_any_replica.hxx +0 -10
- package/deps/couchbase-cxx-client/core/impl/observe_poll.cxx +24 -17
- package/deps/couchbase-cxx-client/core/impl/observe_poll.hxx +1 -1
- package/deps/couchbase-cxx-client/core/impl/query.cxx +45 -68
- package/deps/couchbase-cxx-client/core/impl/query.hxx +34 -0
- package/deps/couchbase-cxx-client/core/impl/query_index_manager.cxx +628 -0
- package/deps/couchbase-cxx-client/core/impl/scope.cxx +172 -0
- package/deps/couchbase-cxx-client/core/impl/search.cxx +12 -61
- package/deps/couchbase-cxx-client/core/impl/search.hxx +37 -0
- package/deps/couchbase-cxx-client/core/impl/search_index_manager.cxx +469 -0
- package/deps/couchbase-cxx-client/core/impl/search_row_location.cxx +12 -0
- package/deps/couchbase-cxx-client/core/impl/search_sort_geo_distance.cxx +87 -0
- package/deps/couchbase-cxx-client/core/impl/with_legacy_durability.hxx +23 -25
- package/deps/couchbase-cxx-client/core/io/dns_config.cxx +28 -0
- package/deps/couchbase-cxx-client/core/io/dns_config.hxx +6 -25
- package/deps/couchbase-cxx-client/core/io/http_session_manager.hxx +9 -1
- package/deps/couchbase-cxx-client/core/io/mcbp_command.hxx +1 -1
- package/deps/couchbase-cxx-client/core/io/mcbp_message.hxx +3 -2
- package/deps/couchbase-cxx-client/core/io/mcbp_session.cxx +51 -21
- package/deps/couchbase-cxx-client/core/io/mcbp_session.hxx +2 -1
- package/deps/couchbase-cxx-client/core/logger/logger.hxx +4 -4
- package/deps/couchbase-cxx-client/core/management/bucket_settings.hxx +1 -1
- package/deps/couchbase-cxx-client/core/mcbp/packet.cxx +1 -1
- package/deps/couchbase-cxx-client/core/mcbp/queue_callback.hxx +1 -1
- package/deps/couchbase-cxx-client/core/meta/features.hxx +28 -0
- package/deps/couchbase-cxx-client/core/operations/document_query.cxx +17 -1
- package/deps/couchbase-cxx-client/core/operations/document_query.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_create.cxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/management/bucket_describe.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_flush.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_get.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/change_password.cxx +3 -1
- package/deps/couchbase-cxx-client/core/operations/management/collection_create.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/collection_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/collection_update.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/error_utils.cxx +6 -5
- package/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_get.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_get_all.cxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/management/query_index_build_deferred.hxx +2 -2
- package/deps/couchbase-cxx-client/core/operations/management/query_index_create.cxx +4 -1
- package/deps/couchbase-cxx-client/core/operations/management/query_index_drop.cxx +4 -1
- package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.cxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/management/scope_create.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/scope_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/scope_get_all.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_get_stats.cxx +4 -4
- package/deps/couchbase-cxx-client/core/operations/management/search_get_stats.hxx +4 -4
- package/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.cxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_drop.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_get.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations.hxx +0 -1
- package/deps/couchbase-cxx-client/core/operations_fwd.hxx +260 -0
- package/deps/couchbase-cxx-client/core/origin.cxx +146 -5
- package/deps/couchbase-cxx-client/core/origin.hxx +30 -140
- package/deps/couchbase-cxx-client/core/protocol/cmd_cluster_map_change_notification.hxx +3 -3
- package/deps/couchbase-cxx-client/core/protocol/cmd_hello.hxx +5 -0
- package/deps/couchbase-cxx-client/core/protocol/cmd_observe_seqno.hxx +4 -4
- package/deps/couchbase-cxx-client/core/protocol/hello_feature.hxx +6 -0
- package/deps/couchbase-cxx-client/core/protocol/hello_feature_fmt.hxx +3 -0
- package/deps/couchbase-cxx-client/core/protocol/status.cxx +6 -0
- package/deps/couchbase-cxx-client/core/protocol/status.hxx +1 -0
- package/deps/couchbase-cxx-client/core/query_context.hxx +11 -7
- package/deps/couchbase-cxx-client/core/range_scan_orchestrator.cxx +1 -1
- package/deps/couchbase-cxx-client/core/topology/configuration.cxx +23 -0
- package/deps/couchbase-cxx-client/core/topology/configuration.hxx +8 -12
- package/deps/couchbase-cxx-client/core/topology/configuration_fmt.hxx +3 -3
- package/deps/couchbase-cxx-client/core/topology/configuration_json.hxx +2 -0
- package/deps/couchbase-cxx-client/core/topology/error_map.hxx +2 -2
- package/deps/couchbase-cxx-client/core/topology/error_map_json.hxx +4 -0
- package/deps/couchbase-cxx-client/core/transactions/active_transaction_record.cxx +58 -0
- package/deps/couchbase-cxx-client/core/transactions/active_transaction_record.hxx +5 -40
- package/deps/couchbase-cxx-client/core/transactions/async_attempt_context.cxx +30 -0
- package/deps/couchbase-cxx-client/core/transactions/atr_cleanup_entry.cxx +18 -18
- package/deps/couchbase-cxx-client/core/transactions/attempt_context.cxx +36 -0
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.cxx +39 -41
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.hxx +2 -2
- package/deps/couchbase-cxx-client/core/transactions/internal/atr_cleanup_entry.hxx +3 -1
- package/deps/couchbase-cxx-client/core/transactions/internal/atr_entry.hxx +2 -0
- package/deps/couchbase-cxx-client/core/transactions/internal/doc_record.cxx +32 -0
- package/deps/couchbase-cxx-client/core/transactions/internal/doc_record.hxx +4 -30
- package/deps/couchbase-cxx-client/core/transactions/internal/doc_record_fmt.hxx +41 -0
- package/deps/couchbase-cxx-client/core/transactions/internal/logging.hxx +17 -15
- package/deps/couchbase-cxx-client/core/transactions/internal/transaction_context.hxx +1 -1
- package/deps/couchbase-cxx-client/core/transactions/internal/transactions_cleanup.hxx +4 -4
- package/deps/couchbase-cxx-client/core/transactions/internal/utils.hxx +1 -13
- package/deps/couchbase-cxx-client/core/transactions/result.hxx +0 -26
- package/deps/couchbase-cxx-client/core/transactions/result_fmt.hxx +46 -0
- package/deps/couchbase-cxx-client/core/transactions/staged_mutation.cxx +16 -14
- package/deps/couchbase-cxx-client/core/transactions/transaction_context.cxx +6 -6
- package/deps/couchbase-cxx-client/core/transactions/transaction_keyspace.cxx +48 -0
- package/deps/couchbase-cxx-client/core/transactions/transaction_links.hxx +1 -0
- package/deps/couchbase-cxx-client/core/transactions/transaction_options.cxx +61 -4
- package/deps/couchbase-cxx-client/core/transactions/transactions.cxx +9 -8
- package/deps/couchbase-cxx-client/core/transactions/transactions_cleanup.cxx +9 -16
- package/deps/couchbase-cxx-client/core/transactions/transactions_config.cxx +7 -6
- package/deps/couchbase-cxx-client/core/transactions.hxx +6 -5
- package/deps/couchbase-cxx-client/core/utils/join_strings.hxx +4 -3
- package/deps/couchbase-cxx-client/core/utils/keyspace.hxx +4 -4
- package/deps/couchbase-cxx-client/couchbase/allow_querying_search_index_options.hxx +44 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_index_manager.hxx +463 -0
- package/deps/couchbase-cxx-client/couchbase/analyze_document_options.hxx +44 -0
- package/deps/couchbase-cxx-client/couchbase/append_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/behavior_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/binary_collection.hxx +19 -115
- package/deps/couchbase-cxx-client/couchbase/bucket.hxx +13 -30
- package/deps/couchbase-cxx-client/couchbase/bucket_manager.hxx +8 -7
- package/deps/couchbase-cxx-client/couchbase/build_query_index_options.hxx +0 -1
- package/deps/couchbase-cxx-client/couchbase/cluster.hxx +41 -73
- package/deps/couchbase-cxx-client/couchbase/cluster_options.hxx +1 -27
- package/deps/couchbase-cxx-client/couchbase/collection.hxx +176 -386
- package/deps/couchbase-cxx-client/couchbase/collection_manager.hxx +8 -9
- package/deps/couchbase-cxx-client/couchbase/collection_query_index_manager.hxx +21 -24
- package/deps/couchbase-cxx-client/couchbase/connect_link_analytics_options.hxx +116 -0
- package/deps/couchbase-cxx-client/couchbase/create_bucket_options.hxx +3 -3
- package/deps/couchbase-cxx-client/couchbase/create_collection_options.hxx +3 -2
- package/deps/couchbase-cxx-client/couchbase/create_dataset_analytics_options.hxx +120 -0
- package/deps/couchbase-cxx-client/couchbase/create_dataverse_analytics_options.hxx +85 -0
- package/deps/couchbase-cxx-client/couchbase/create_index_analytics_options.hxx +103 -0
- package/deps/couchbase-cxx-client/couchbase/create_link_analytics_options.hxx +63 -0
- package/deps/couchbase-cxx-client/couchbase/decrement_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/disallow_querying_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/disconnect_link_analytics_options.hxx +105 -0
- package/deps/couchbase-cxx-client/couchbase/drop_dataset_analytics_options.hxx +103 -0
- package/deps/couchbase-cxx-client/couchbase/drop_dataverse_analytics_options.hxx +84 -0
- package/deps/couchbase-cxx-client/couchbase/drop_index_analytics_options.hxx +103 -0
- package/deps/couchbase-cxx-client/couchbase/drop_link_analytics_options.hxx +63 -0
- package/deps/couchbase-cxx-client/couchbase/drop_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/error_codes.hxx +22 -1
- package/deps/couchbase-cxx-client/couchbase/exists_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/fmt/key_value_error_map_attribute.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/key_value_status_code.hxx +3 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/transaction_keyspace.hxx +37 -0
- package/deps/couchbase-cxx-client/couchbase/freeze_plan_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/get_all_datasets_analytics_options.hxx +66 -0
- package/deps/couchbase-cxx-client/couchbase/get_all_indexes_analytics_options.hxx +65 -0
- package/deps/couchbase-cxx-client/couchbase/get_all_query_indexes_options.hxx +1 -4
- package/deps/couchbase-cxx-client/couchbase/get_all_replicas_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/get_all_search_indexes_options.hxx +45 -0
- package/deps/couchbase-cxx-client/couchbase/get_and_lock_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/get_and_touch_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/get_any_replica_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/get_indexed_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/get_links_analytics_options.hxx +121 -0
- package/deps/couchbase-cxx-client/couchbase/get_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/get_pending_mutations_analytics_options.hxx +67 -0
- package/deps/couchbase-cxx-client/couchbase/get_search_index_options.hxx +44 -0
- package/deps/couchbase-cxx-client/couchbase/increment_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/insert_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/key_value_error_map_attribute.hxx +12 -0
- package/deps/couchbase-cxx-client/couchbase/key_value_status_code.hxx +1 -0
- package/deps/couchbase-cxx-client/couchbase/lookup_in_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/management/analytics_dataset.hxx +48 -0
- package/deps/couchbase-cxx-client/couchbase/management/analytics_index.hxx +48 -0
- package/deps/couchbase-cxx-client/couchbase/management/analytics_link.hxx +239 -0
- package/deps/couchbase-cxx-client/couchbase/management/query_index.hxx +3 -3
- package/deps/couchbase-cxx-client/couchbase/management/search_index.hxx +40 -0
- package/deps/couchbase-cxx-client/couchbase/manager_error_context.hxx +0 -1
- package/deps/couchbase-cxx-client/couchbase/mutate_in_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/network_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/pause_ingest_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/phrase_query.hxx +19 -0
- package/deps/couchbase-cxx-client/couchbase/prepend_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/query_index_manager.hxx +99 -20
- package/deps/couchbase-cxx-client/couchbase/query_options.hxx +0 -21
- package/deps/couchbase-cxx-client/couchbase/remove_options.hxx +0 -23
- package/deps/couchbase-cxx-client/couchbase/replace_link_analytics_options.hxx +63 -0
- package/deps/couchbase-cxx-client/couchbase/replace_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/resume_ingest_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/scope.hxx +13 -45
- package/deps/couchbase-cxx-client/couchbase/search_facet_result.hxx +1 -7
- package/deps/couchbase-cxx-client/couchbase/search_geo_distance_units.hxx +26 -0
- package/deps/couchbase-cxx-client/couchbase/search_index_manager.hxx +292 -0
- package/deps/couchbase-cxx-client/couchbase/search_row_location.hxx +10 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_geo_distance.hxx +84 -0
- package/deps/couchbase-cxx-client/couchbase/security_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/touch_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/tracing/request_tracer.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/transactions/async_attempt_context.hxx +10 -7
- package/deps/couchbase-cxx-client/couchbase/transactions/attempt_context.hxx +10 -10
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_keyspace.hxx +8 -58
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_options.hxx +28 -70
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_query_options.hxx +7 -2
- package/deps/couchbase-cxx-client/couchbase/transactions/transactions_cleanup_config.hxx +2 -1
- package/deps/couchbase-cxx-client/couchbase/transactions/transactions_config.hxx +11 -38
- package/deps/couchbase-cxx-client/couchbase/unfreeze_plan_search_index_options.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/unlock_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/upsert_options.hxx +0 -24
- package/deps/couchbase-cxx-client/couchbase/upsert_search_index_options.hxx +41 -0
- package/dist/binding.d.ts +7 -9
- package/dist/bindingutilities.js +2 -0
- package/dist/collection.js +3 -3
- package/dist/errors.d.ts +9 -0
- package/dist/errors.js +14 -2
- package/dist/transactions.d.ts +2 -0
- package/dist/transactions.js +2 -3
- package/dist/usermanager.js +1 -1
- package/package.json +7 -7
- package/src/binding.cpp +1 -0
- package/src/connection.cpp +12 -9
- package/src/connection.hpp +3 -3
- package/src/connection_autogen.cpp +7 -5
- package/src/constants.cpp +3 -0
- package/src/instance.cpp +2 -2
- package/src/instance.hpp +1 -1
- package/src/jstocbpp_autogen.hpp +21 -38
- package/src/jstocbpp_basic.hpp +2 -0
- package/src/jstocbpp_errors.hpp +1 -0
- package/src/jstocbpp_transactions.hpp +6 -22
- package/src/mutationtoken.hpp +1 -0
- package/tools/gen-bindings-json.py +39 -16
- package/deps/couchbase-cxx-cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/example/CMakeLists.txt +0 -23
- package/deps/couchbase-cxx-cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/example/example.cpp +0 -398
- package/deps/couchbase-cxx-client/core/impl/append.cxx +0 -87
- package/deps/couchbase-cxx-client/core/impl/build_deferred_query_indexes.cxx +0 -157
- package/deps/couchbase-cxx-client/core/impl/create_bucket.cxx +0 -158
- package/deps/couchbase-cxx-client/core/impl/create_collection.cxx +0 -83
- package/deps/couchbase-cxx-client/core/impl/create_query_index.cxx +0 -232
- package/deps/couchbase-cxx-client/core/impl/create_scope.cxx +0 -69
- package/deps/couchbase-cxx-client/core/impl/decrement.cxx +0 -96
- package/deps/couchbase-cxx-client/core/impl/drop_bucket.cxx +0 -66
- package/deps/couchbase-cxx-client/core/impl/drop_collection.cxx +0 -76
- package/deps/couchbase-cxx-client/core/impl/drop_query_index.cxx +0 -187
- package/deps/couchbase-cxx-client/core/impl/drop_scope.cxx +0 -68
- package/deps/couchbase-cxx-client/core/impl/exists.cxx +0 -47
- package/deps/couchbase-cxx-client/core/impl/flush_bucket.cxx +0 -66
- package/deps/couchbase-cxx-client/core/impl/get.cxx +0 -68
- package/deps/couchbase-cxx-client/core/impl/get_all_buckets.cxx +0 -178
- package/deps/couchbase-cxx-client/core/impl/get_all_query_indexes.cxx +0 -106
- package/deps/couchbase-cxx-client/core/impl/get_all_replicas.cxx +0 -145
- package/deps/couchbase-cxx-client/core/impl/get_all_scopes.cxx +0 -94
- package/deps/couchbase-cxx-client/core/impl/get_and_lock.cxx +0 -49
- package/deps/couchbase-cxx-client/core/impl/get_and_touch.cxx +0 -49
- package/deps/couchbase-cxx-client/core/impl/get_any_replica.cxx +0 -134
- package/deps/couchbase-cxx-client/core/impl/get_bucket.cxx +0 -168
- package/deps/couchbase-cxx-client/core/impl/increment.cxx +0 -96
- package/deps/couchbase-cxx-client/core/impl/insert.cxx +0 -90
- package/deps/couchbase-cxx-client/core/impl/lookup_in.cxx +0 -69
- package/deps/couchbase-cxx-client/core/impl/lookup_in_all_replicas.cxx +0 -178
- package/deps/couchbase-cxx-client/core/impl/lookup_in_any_replica.cxx +0 -169
- package/deps/couchbase-cxx-client/core/impl/mutate_in.cxx +0 -125
- package/deps/couchbase-cxx-client/core/impl/prepend.cxx +0 -87
- package/deps/couchbase-cxx-client/core/impl/remove.cxx +0 -86
- package/deps/couchbase-cxx-client/core/impl/replace.cxx +0 -102
- package/deps/couchbase-cxx-client/core/impl/touch.cxx +0 -49
- package/deps/couchbase-cxx-client/core/impl/unlock.cxx +0 -47
- package/deps/couchbase-cxx-client/core/impl/update_bucket.cxx +0 -133
- package/deps/couchbase-cxx-client/core/impl/update_collection.cxx +0 -83
- package/deps/couchbase-cxx-client/core/impl/upsert.cxx +0 -100
- package/deps/couchbase-cxx-client/core/impl/watch_query_indexes.cxx +0 -196
- package/deps/couchbase-cxx-client/core/operations/mcbp_noop.hxx +0 -49
- /package/deps/couchbase-cxx-client/core/impl/{streaming_json_lexter_error_category.cxx → streaming_json_lexer_error_category.cxx} +0 -0
@@ -0,0 +1,463 @@
|
|
1
|
+
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2023-Present Couchbase, Inc.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
|
18
|
+
#pragma once
|
19
|
+
|
20
|
+
#include <couchbase/connect_link_analytics_options.hxx>
|
21
|
+
#include <couchbase/create_dataset_analytics_options.hxx>
|
22
|
+
#include <couchbase/create_dataverse_analytics_options.hxx>
|
23
|
+
#include <couchbase/create_index_analytics_options.hxx>
|
24
|
+
#include <couchbase/create_link_analytics_options.hxx>
|
25
|
+
#include <couchbase/disconnect_link_analytics_options.hxx>
|
26
|
+
#include <couchbase/drop_dataset_analytics_options.hxx>
|
27
|
+
#include <couchbase/drop_dataverse_analytics_options.hxx>
|
28
|
+
#include <couchbase/drop_index_analytics_options.hxx>
|
29
|
+
#include <couchbase/drop_link_analytics_options.hxx>
|
30
|
+
#include <couchbase/get_all_datasets_analytics_options.hxx>
|
31
|
+
#include <couchbase/get_all_indexes_analytics_options.hxx>
|
32
|
+
#include <couchbase/get_links_analytics_options.hxx>
|
33
|
+
#include <couchbase/get_pending_mutations_analytics_options.hxx>
|
34
|
+
#include <couchbase/management/analytics_dataset.hxx>
|
35
|
+
#include <couchbase/management/analytics_index.hxx>
|
36
|
+
#include <couchbase/management/analytics_link.hxx>
|
37
|
+
#include <couchbase/manager_error_context.hxx>
|
38
|
+
#include <couchbase/replace_link_analytics_options.hxx>
|
39
|
+
|
40
|
+
#include <future>
|
41
|
+
#include <string>
|
42
|
+
#include <utility>
|
43
|
+
|
44
|
+
namespace couchbase
|
45
|
+
{
|
46
|
+
#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
|
47
|
+
namespace core
|
48
|
+
{
|
49
|
+
class cluster;
|
50
|
+
} // namespace core
|
51
|
+
class analytics_index_manager_impl;
|
52
|
+
#endif
|
53
|
+
|
54
|
+
class analytics_index_manager
|
55
|
+
{
|
56
|
+
public:
|
57
|
+
/**
|
58
|
+
* Creates a new dataset (analytics scope).
|
59
|
+
*
|
60
|
+
* @param dataverse_name the name of the dataverse to create
|
61
|
+
* @param options optional parameters
|
62
|
+
* @param handler the handler that implements @ref create_dataverse_analytics_handler
|
63
|
+
*
|
64
|
+
* @since 1.0.0
|
65
|
+
* @committed
|
66
|
+
*/
|
67
|
+
void create_dataverse(std::string dataverse_name,
|
68
|
+
const create_dataverse_analytics_options& options,
|
69
|
+
create_dataverse_analytics_handler&& handler) const;
|
70
|
+
|
71
|
+
/**
|
72
|
+
* Creates a new dataset (analytics scope).
|
73
|
+
*
|
74
|
+
* @param dataverse_name the name of the dataverse to create
|
75
|
+
* @param options optional parameters
|
76
|
+
* @return future object that carries the result of the operation
|
77
|
+
*
|
78
|
+
* @since 1.0.0
|
79
|
+
* @committed
|
80
|
+
*/
|
81
|
+
[[nodiscard]] auto create_dataverse(std::string dataverse_name, const create_dataverse_analytics_options& options) const
|
82
|
+
-> std::future<manager_error_context>;
|
83
|
+
|
84
|
+
/**
|
85
|
+
* Drops (deletes) a dataverse.
|
86
|
+
*
|
87
|
+
* @param dataverse_name the name of the dataverse to drop
|
88
|
+
* @param options optional parameters
|
89
|
+
* @param handler the handler that implements @ref drop_dataverse_analytics_handler
|
90
|
+
*
|
91
|
+
* @since 1.0.0
|
92
|
+
* @committed
|
93
|
+
*/
|
94
|
+
void drop_dataverse(std::string dataverse_name,
|
95
|
+
const drop_dataverse_analytics_options& options,
|
96
|
+
drop_dataverse_analytics_handler&& handler) const;
|
97
|
+
|
98
|
+
/**
|
99
|
+
* Drops (deletes) a dataverse.
|
100
|
+
*
|
101
|
+
* @param dataverse_name the name of the dataverse to drop
|
102
|
+
* @param options optional parameters
|
103
|
+
* @return future object that carries the result of the operation
|
104
|
+
*
|
105
|
+
* @since 1.0.0
|
106
|
+
* @committed
|
107
|
+
*/
|
108
|
+
[[nodiscard]] auto drop_dataverse(std::string dataverse_name, const drop_dataverse_analytics_options& options) const
|
109
|
+
-> std::future<manager_error_context>;
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Creates a new dataset (analytics collection).
|
113
|
+
*
|
114
|
+
* @param dataset_name the name of the dataset to create
|
115
|
+
* @param bucket_name the name of the bucket where the dataset should be stored into
|
116
|
+
* @param options optional parameters
|
117
|
+
* @param handler the handler that implements @ref create_dataset_analytics_handler
|
118
|
+
*
|
119
|
+
* @since 1.0.0
|
120
|
+
* @committed
|
121
|
+
*/
|
122
|
+
void create_dataset(std::string dataset_name,
|
123
|
+
std::string bucket_name,
|
124
|
+
const create_dataset_analytics_options& options,
|
125
|
+
create_dataset_analytics_handler&& handler) const;
|
126
|
+
|
127
|
+
/**
|
128
|
+
* Creates a new dataset (analytics collection).
|
129
|
+
*
|
130
|
+
* @param dataset_name the name of the dataset to create
|
131
|
+
* @param bucket_name the name of the bucket where the dataset should be stored into
|
132
|
+
* @param options optional parameters
|
133
|
+
* @return future object that carries the result of the operation
|
134
|
+
*
|
135
|
+
* @since 1.0.0
|
136
|
+
* @committed
|
137
|
+
*/
|
138
|
+
[[nodiscard]] auto create_dataset(std::string dataset_name,
|
139
|
+
std::string bucket_name,
|
140
|
+
const create_dataset_analytics_options& options) const -> std::future<manager_error_context>;
|
141
|
+
|
142
|
+
/**
|
143
|
+
* Drops (deletes) a dataset.
|
144
|
+
*
|
145
|
+
* @param dataset_name the name of the dataset to drop
|
146
|
+
* @param options optional parameters
|
147
|
+
* @param handler the handler that implements @ref drop_dataset_analytics_handler
|
148
|
+
*
|
149
|
+
* @since 1.0.0
|
150
|
+
* @committed
|
151
|
+
*/
|
152
|
+
void drop_dataset(std::string dataset_name,
|
153
|
+
const drop_dataset_analytics_options& options,
|
154
|
+
drop_dataset_analytics_handler&& handler) const;
|
155
|
+
|
156
|
+
/**
|
157
|
+
* Drops (deletes) a dataset.
|
158
|
+
*
|
159
|
+
* @param dataset_name the name of the dataset to drop
|
160
|
+
* @param options optional parameters
|
161
|
+
* @return future object that carries the result of the operation
|
162
|
+
*
|
163
|
+
* @since 1.0.0
|
164
|
+
* @committed
|
165
|
+
*/
|
166
|
+
[[nodiscard]] auto drop_dataset(std::string dataset_name, const drop_dataset_analytics_options& options) const
|
167
|
+
-> std::future<manager_error_context>;
|
168
|
+
|
169
|
+
/**
|
170
|
+
* Fetches all datasets (analytics collections) from the analytics service.
|
171
|
+
*
|
172
|
+
* @param options optional parameters
|
173
|
+
* @param handler the handler that implements @ref get_all_datasets_analytics_handler
|
174
|
+
*
|
175
|
+
* @since 1.0.0
|
176
|
+
* @committed
|
177
|
+
*/
|
178
|
+
void get_all_datasets(const get_all_datasets_analytics_options& options, get_all_datasets_analytics_handler&& handler) const;
|
179
|
+
|
180
|
+
/**
|
181
|
+
* Fetches all datasets (analytics collections) from the analytics service.
|
182
|
+
*
|
183
|
+
* @param options optional parameters
|
184
|
+
* @return future object that carries the result of the operation
|
185
|
+
*
|
186
|
+
* @since 1.0.0
|
187
|
+
* @committed
|
188
|
+
*/
|
189
|
+
[[nodiscard]] auto get_all_datasets(const get_all_datasets_analytics_options& options) const
|
190
|
+
-> std::future<std::pair<manager_error_context, std::vector<management::analytics_dataset>>>;
|
191
|
+
|
192
|
+
/**
|
193
|
+
* Creates a new analytics index.
|
194
|
+
*
|
195
|
+
* @param index_name the name of the index to create
|
196
|
+
* @param dataset_name the name of the dataset where the index should be created
|
197
|
+
* @param fields the fields that should be indexed
|
198
|
+
* @param options optional parameters
|
199
|
+
* @param handler the handler that implements @ref create_index_analytics_handler
|
200
|
+
*
|
201
|
+
* @since 1.0.0
|
202
|
+
* @committed
|
203
|
+
*/
|
204
|
+
void create_index(std::string index_name,
|
205
|
+
std::string dataset_name,
|
206
|
+
std::map<std::string, std::string> fields,
|
207
|
+
const create_index_analytics_options& options,
|
208
|
+
create_index_analytics_handler&& handler) const;
|
209
|
+
|
210
|
+
/**
|
211
|
+
* Creates a new analytics index.
|
212
|
+
*
|
213
|
+
* @param index_name the name of the index to create
|
214
|
+
* @param dataset_name the name of the dataset where the index should be created
|
215
|
+
* @param fields the fields that should be indexed
|
216
|
+
* @param options optional parameters
|
217
|
+
* @return future object that carries the result of the operation
|
218
|
+
*
|
219
|
+
* @since 1.0.0
|
220
|
+
* @committed
|
221
|
+
*/
|
222
|
+
[[nodiscard]] auto create_index(std::string index_name,
|
223
|
+
std::string dataset_name,
|
224
|
+
std::map<std::string, std::string> fields,
|
225
|
+
const create_index_analytics_options& options) const -> std::future<manager_error_context>;
|
226
|
+
|
227
|
+
/**
|
228
|
+
* Drops (removes) an analytics index.
|
229
|
+
*
|
230
|
+
* @param index_name the name of the index to drop
|
231
|
+
* @param dataset_name the dataset where the index exists
|
232
|
+
* @param options optional parameters
|
233
|
+
* @param handler the handler that implements @ref drop_index_analytics_handler
|
234
|
+
*
|
235
|
+
* @since 1.0.0
|
236
|
+
* @committed
|
237
|
+
*/
|
238
|
+
void drop_index(std::string index_name,
|
239
|
+
std::string dataset_name,
|
240
|
+
const drop_index_analytics_options& options,
|
241
|
+
drop_index_analytics_handler&& handler) const;
|
242
|
+
|
243
|
+
/**
|
244
|
+
* Drops (removes) an analytics index.
|
245
|
+
*
|
246
|
+
* @param index_name the name of the index to drop
|
247
|
+
* @param dataset_name the dataset where the index exists
|
248
|
+
* @param options optional parameters
|
249
|
+
* @return future object that carries the result of the operation
|
250
|
+
*
|
251
|
+
* @since 1.0.0
|
252
|
+
* @committed
|
253
|
+
*/
|
254
|
+
[[nodiscard]] auto drop_index(std::string index_name, std::string dataset_name, const drop_index_analytics_options& options) const
|
255
|
+
-> std::future<manager_error_context>;
|
256
|
+
|
257
|
+
/**
|
258
|
+
* Fetches all analytics indexes.
|
259
|
+
*
|
260
|
+
* @param options optional parameters
|
261
|
+
* @param handler the handler that implements @ref get_all_indexes_analytics_handler
|
262
|
+
*
|
263
|
+
* @since 1.0.0
|
264
|
+
* @committed
|
265
|
+
*/
|
266
|
+
void get_all_indexes(const get_all_indexes_analytics_options& options, get_all_indexes_analytics_handler&& handler) const;
|
267
|
+
|
268
|
+
/**
|
269
|
+
* Fetches all analytics indexes.
|
270
|
+
*
|
271
|
+
* @param options optional parameters
|
272
|
+
* @return future object that carries the result of the operation
|
273
|
+
*
|
274
|
+
* @since 1.0.0
|
275
|
+
* @committed
|
276
|
+
*/
|
277
|
+
[[nodiscard]] auto get_all_indexes(const get_all_indexes_analytics_options& options) const
|
278
|
+
-> std::future<std::pair<manager_error_context, std::vector<management::analytics_index>>>;
|
279
|
+
|
280
|
+
/**
|
281
|
+
* Connects a not yet connected link.
|
282
|
+
*
|
283
|
+
* @param options optional parameters
|
284
|
+
* @param handler the handler that implements @ref connect_link_analytics_handler
|
285
|
+
*
|
286
|
+
* @since 1.0.0
|
287
|
+
* @committed
|
288
|
+
*/
|
289
|
+
void connect_link(const connect_link_analytics_options& options, connect_link_analytics_handler&& handler) const;
|
290
|
+
|
291
|
+
/**
|
292
|
+
* Connects a not yet connected link.
|
293
|
+
*
|
294
|
+
* @param options optional parameters
|
295
|
+
* @return future object that carries the result of the operation
|
296
|
+
*
|
297
|
+
* @since 1.0.0
|
298
|
+
* @committed
|
299
|
+
*/
|
300
|
+
[[nodiscard]] auto connect_link(const connect_link_analytics_options& options) const -> std::future<manager_error_context>;
|
301
|
+
|
302
|
+
/**
|
303
|
+
* Disconnects a currently connected link.
|
304
|
+
*
|
305
|
+
* @param options optional parameters
|
306
|
+
* @param handler the handler that implements @ref disconnect_link_analytics_handler
|
307
|
+
*
|
308
|
+
* @since 1.0.0
|
309
|
+
* @committed
|
310
|
+
*/
|
311
|
+
void disconnect_link(const disconnect_link_analytics_options& options, disconnect_link_analytics_handler&& handler) const;
|
312
|
+
|
313
|
+
/**
|
314
|
+
* Disconnects a currently connected link.
|
315
|
+
*
|
316
|
+
* @param options optional parameters
|
317
|
+
* @return future object that carries the result of the operation
|
318
|
+
*
|
319
|
+
* @since 1.0.0
|
320
|
+
* @committed
|
321
|
+
*/
|
322
|
+
[[nodiscard]] auto disconnect_link(const disconnect_link_analytics_options& options) const -> std::future<manager_error_context>;
|
323
|
+
|
324
|
+
/**
|
325
|
+
* Returns the pending mutations for different dataverses.
|
326
|
+
*
|
327
|
+
* @param options optional parameters
|
328
|
+
* @param handler the handler that implements @ref get_pending_mutations_analytics_handler
|
329
|
+
*
|
330
|
+
* @since 1.0.0
|
331
|
+
* @committed
|
332
|
+
*/
|
333
|
+
void get_pending_mutations(const get_pending_mutations_analytics_options& options,
|
334
|
+
get_pending_mutations_analytics_handler&& handler) const;
|
335
|
+
|
336
|
+
/**
|
337
|
+
* Returns the pending mutations for different dataverses.
|
338
|
+
*
|
339
|
+
* @param options optional parameters
|
340
|
+
* @return future object that carries the result of the operation
|
341
|
+
*
|
342
|
+
* @since 1.0.0
|
343
|
+
* @committed
|
344
|
+
*/
|
345
|
+
[[nodiscard]] auto get_pending_mutations(const get_pending_mutations_analytics_options& options) const
|
346
|
+
-> std::future<std::pair<couchbase::manager_error_context, std::map<std::string, std::map<std::string, std::int64_t>>>>;
|
347
|
+
|
348
|
+
/**
|
349
|
+
* Creates a new analytics remote link.
|
350
|
+
*
|
351
|
+
* @param link the settings for the link to be created
|
352
|
+
* @param options optional parameters
|
353
|
+
* @param handler the handler that implements @ref create_link_analytics_handler
|
354
|
+
*
|
355
|
+
* @since 1.0.0
|
356
|
+
* @committed
|
357
|
+
*/
|
358
|
+
void create_link(const management::analytics_link& link,
|
359
|
+
const create_link_analytics_options& options,
|
360
|
+
create_link_analytics_handler&& handler) const;
|
361
|
+
|
362
|
+
/**
|
363
|
+
* Creates a new analytics remote link.
|
364
|
+
*
|
365
|
+
* @param link the settings for the link to be created
|
366
|
+
* @param options optional parameters
|
367
|
+
* @return future object that carries the result of the operation
|
368
|
+
*
|
369
|
+
* @since 1.0.0
|
370
|
+
* @committed
|
371
|
+
*/
|
372
|
+
[[nodiscard]] auto create_link(const management::analytics_link& link, const create_link_analytics_options& options) const
|
373
|
+
-> std::future<manager_error_context>;
|
374
|
+
|
375
|
+
/**
|
376
|
+
* Replaces an existing analytics remote link.
|
377
|
+
*
|
378
|
+
* @param link the settings for the updated link
|
379
|
+
* @param options optional parameters
|
380
|
+
* @param handler the handler that implements @ref replace_link_analytics_handler
|
381
|
+
*
|
382
|
+
* @since 1.0.0
|
383
|
+
* @committed
|
384
|
+
*/
|
385
|
+
void replace_link(const management::analytics_link& link,
|
386
|
+
const replace_link_analytics_options& options,
|
387
|
+
replace_link_analytics_handler&& handler) const;
|
388
|
+
|
389
|
+
/**
|
390
|
+
* Replaces an existing analytics remote link.
|
391
|
+
*
|
392
|
+
* @param link the settings for the updated link
|
393
|
+
* @param options optional parameters
|
394
|
+
* @return future object that carries the result of the operation
|
395
|
+
*
|
396
|
+
* @since 1.0.0
|
397
|
+
* @committed
|
398
|
+
*/
|
399
|
+
[[nodiscard]] auto replace_link(const management::analytics_link& link, const replace_link_analytics_options& options) const
|
400
|
+
-> std::future<manager_error_context>;
|
401
|
+
|
402
|
+
/**
|
403
|
+
* Drops an existing analytics remote link.
|
404
|
+
*
|
405
|
+
* @param link_name the name of the link to drop
|
406
|
+
* @param dataverse_name the name of the dataverse containing the link to be dropped
|
407
|
+
* @param options optional parameters
|
408
|
+
* @param handler the handler that implements @ref drop_link_analytics_handler
|
409
|
+
*
|
410
|
+
* @since 1.0.0
|
411
|
+
* @committed
|
412
|
+
*/
|
413
|
+
void drop_link(std::string link_name,
|
414
|
+
std::string dataverse_name,
|
415
|
+
const drop_link_analytics_options& options,
|
416
|
+
drop_link_analytics_handler&& handler) const;
|
417
|
+
|
418
|
+
/**
|
419
|
+
* Drops an existing analytics remote link.
|
420
|
+
*
|
421
|
+
* @param link_name the name of the link to drop
|
422
|
+
* @param dataverse_name the name of the dataverse containing the link to be dropped
|
423
|
+
* @param options optional parameters
|
424
|
+
* @return future object that carries the result of the operation
|
425
|
+
*
|
426
|
+
* @since 1.0.0
|
427
|
+
* @committed
|
428
|
+
*/
|
429
|
+
[[nodiscard]] auto drop_link(std::string link_name, std::string dataverse_name, const drop_link_analytics_options& options) const
|
430
|
+
-> std::future<manager_error_context>;
|
431
|
+
|
432
|
+
/**
|
433
|
+
* Fetches the existing analytics remote links.
|
434
|
+
*
|
435
|
+
* @param options optional parameters
|
436
|
+
* @param handler the handler that implemenets @ref get_links_analytics_handler
|
437
|
+
*
|
438
|
+
* @since 1.0.0
|
439
|
+
* @committed
|
440
|
+
*/
|
441
|
+
void get_links(const get_links_analytics_options& options, get_links_analytics_handler&& handler) const;
|
442
|
+
|
443
|
+
/**
|
444
|
+
* Fetches the existing analytics remote links.
|
445
|
+
*
|
446
|
+
* @param options optional parameters
|
447
|
+
* @return future object that carries the result of the operation
|
448
|
+
*
|
449
|
+
* @since 1.0.0
|
450
|
+
* @committed
|
451
|
+
*/
|
452
|
+
[[nodiscard]] auto get_links(const get_links_analytics_options& options) const
|
453
|
+
-> std::future<std::pair<manager_error_context, std::vector<std::unique_ptr<management::analytics_link>>>>;
|
454
|
+
|
455
|
+
private:
|
456
|
+
friend class cluster;
|
457
|
+
|
458
|
+
explicit analytics_index_manager(core::cluster core);
|
459
|
+
|
460
|
+
std::shared_ptr<analytics_index_manager_impl> impl_;
|
461
|
+
};
|
462
|
+
|
463
|
+
} // namespace couchbase
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2020-Present Couchbase, Inc.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
|
18
|
+
#pragma once
|
19
|
+
|
20
|
+
#include <couchbase/codec/default_json_transcoder.hxx>
|
21
|
+
#include <couchbase/common_options.hxx>
|
22
|
+
|
23
|
+
#include <functional>
|
24
|
+
#include <memory>
|
25
|
+
#include <optional>
|
26
|
+
#include <string>
|
27
|
+
|
28
|
+
namespace couchbase
|
29
|
+
{
|
30
|
+
struct analyze_document_options : public common_options<analyze_document_options> {
|
31
|
+
public:
|
32
|
+
struct built : public common_options<analyze_document_options>::built {
|
33
|
+
};
|
34
|
+
|
35
|
+
[[nodiscard]] auto build() const -> built
|
36
|
+
{
|
37
|
+
return { build_common_options() };
|
38
|
+
}
|
39
|
+
|
40
|
+
private:
|
41
|
+
};
|
42
|
+
|
43
|
+
using analyze_document_handler = std::function<void(couchbase::manager_error_context, std::vector<std::string>)>;
|
44
|
+
} // namespace couchbase
|
@@ -96,28 +96,4 @@ struct append_options : public common_durability_options<append_options> {
|
|
96
96
|
* @uncommitted
|
97
97
|
*/
|
98
98
|
using append_handler = std::function<void(couchbase::key_value_error_context, mutation_result)>;
|
99
|
-
|
100
|
-
#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
|
101
|
-
namespace core
|
102
|
-
{
|
103
|
-
class cluster;
|
104
|
-
namespace impl
|
105
|
-
{
|
106
|
-
|
107
|
-
/**
|
108
|
-
* @since 1.0.0
|
109
|
-
* @internal
|
110
|
-
*/
|
111
|
-
void
|
112
|
-
initiate_append_operation(std::shared_ptr<couchbase::core::cluster> core,
|
113
|
-
std::string bucket_name,
|
114
|
-
std::string scope_name,
|
115
|
-
std::string collection_name,
|
116
|
-
std::string document_key,
|
117
|
-
std::vector<std::byte> data,
|
118
|
-
append_options::built options,
|
119
|
-
append_handler&& handler);
|
120
|
-
#endif
|
121
|
-
} // namespace impl
|
122
|
-
} // namespace core
|
123
99
|
} // namespace couchbase
|
@@ -96,7 +96,7 @@ class behavior_options
|
|
96
96
|
private:
|
97
97
|
std::string user_agent_extra_{};
|
98
98
|
bool show_queries_{ false };
|
99
|
-
bool enable_clustermap_notification_{
|
99
|
+
bool enable_clustermap_notification_{ true };
|
100
100
|
bool enable_mutation_tokens_{ true };
|
101
101
|
bool enable_unordered_execution_{ true };
|
102
102
|
bool dump_configuration_{ false };
|