couchbase 4.2.8 → 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-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
@@ -1,69 +0,0 @@
|
|
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
|
-
#include <couchbase/manager_error_context.hxx>
|
19
|
-
#include <utility>
|
20
|
-
|
21
|
-
#include "core/cluster.hxx"
|
22
|
-
#include "core/operations/management/scope_create.hxx"
|
23
|
-
#include "couchbase/collection_manager.hxx"
|
24
|
-
|
25
|
-
namespace couchbase
|
26
|
-
{
|
27
|
-
template<typename Response>
|
28
|
-
static manager_error_context
|
29
|
-
build_context(Response& resp)
|
30
|
-
{
|
31
|
-
return manager_error_context(internal_manager_error_context{ resp.ctx.ec,
|
32
|
-
resp.ctx.last_dispatched_to,
|
33
|
-
resp.ctx.last_dispatched_from,
|
34
|
-
resp.ctx.retry_attempts,
|
35
|
-
std::move(resp.ctx.retry_reasons),
|
36
|
-
std::move(resp.ctx.client_context_id),
|
37
|
-
resp.ctx.http_status,
|
38
|
-
std::move(resp.ctx.http_body),
|
39
|
-
std::move(resp.ctx.path) });
|
40
|
-
}
|
41
|
-
|
42
|
-
static core::operations::management::scope_create_request
|
43
|
-
build_scope_create_request(std::string bucket_name, std::string scope_name, const create_scope_options::built& options)
|
44
|
-
{
|
45
|
-
core::operations::management::scope_create_request request{ std::move(bucket_name), std::move(scope_name), {}, options.timeout };
|
46
|
-
return request;
|
47
|
-
}
|
48
|
-
|
49
|
-
void
|
50
|
-
collection_manager::create_scope(std::string scope_name,
|
51
|
-
const couchbase::create_scope_options& options,
|
52
|
-
couchbase::create_scope_handler&& handler) const
|
53
|
-
{
|
54
|
-
auto request = build_scope_create_request(bucket_name_, std::move(scope_name), options.build());
|
55
|
-
|
56
|
-
core_->execute(std::move(request), [handler = std::move(handler)](core::operations::management::scope_create_response resp) mutable {
|
57
|
-
return handler(build_context(resp));
|
58
|
-
});
|
59
|
-
}
|
60
|
-
|
61
|
-
auto
|
62
|
-
collection_manager::create_scope(std::string scope_name, const couchbase::create_scope_options& options) const
|
63
|
-
-> std::future<manager_error_context>
|
64
|
-
{
|
65
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
66
|
-
create_scope(std::move(scope_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
67
|
-
return barrier->get_future();
|
68
|
-
}
|
69
|
-
} // namespace couchbase
|
@@ -1,96 +0,0 @@
|
|
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
|
-
#include "core/cluster.hxx"
|
19
|
-
#include "core/error_context/key_value.hxx"
|
20
|
-
#include "core/impl/observe_poll.hxx"
|
21
|
-
#include "core/impl/observe_seqno.hxx"
|
22
|
-
#include "core/operations/document_decrement.hxx"
|
23
|
-
|
24
|
-
#include <couchbase/decrement_options.hxx>
|
25
|
-
|
26
|
-
namespace couchbase::core::impl
|
27
|
-
{
|
28
|
-
void
|
29
|
-
initiate_decrement_operation(std::shared_ptr<couchbase::core::cluster> core,
|
30
|
-
std::string bucket_name,
|
31
|
-
std::string scope_name,
|
32
|
-
std::string collection_name,
|
33
|
-
std::string document_key,
|
34
|
-
decrement_options::built options,
|
35
|
-
decrement_handler&& handler)
|
36
|
-
{
|
37
|
-
auto id = document_id{
|
38
|
-
std::move(bucket_name),
|
39
|
-
std::move(scope_name),
|
40
|
-
std::move(collection_name),
|
41
|
-
std::move(document_key),
|
42
|
-
};
|
43
|
-
if (options.persist_to == persist_to::none && options.replicate_to == replicate_to::none) {
|
44
|
-
return core->execute(
|
45
|
-
operations::decrement_request{
|
46
|
-
std::move(id),
|
47
|
-
{},
|
48
|
-
{},
|
49
|
-
options.expiry,
|
50
|
-
options.delta,
|
51
|
-
options.initial_value,
|
52
|
-
options.durability_level,
|
53
|
-
options.timeout,
|
54
|
-
{ options.retry_strategy },
|
55
|
-
},
|
56
|
-
[handler = std::move(handler)](operations::decrement_response&& resp) mutable {
|
57
|
-
if (resp.ctx.ec()) {
|
58
|
-
return handler(std::move(resp.ctx), counter_result{});
|
59
|
-
}
|
60
|
-
return handler(std::move(resp.ctx), counter_result{ resp.cas, std::move(resp.token), resp.content });
|
61
|
-
});
|
62
|
-
}
|
63
|
-
|
64
|
-
operations::decrement_request request{
|
65
|
-
id,
|
66
|
-
{},
|
67
|
-
{},
|
68
|
-
options.expiry,
|
69
|
-
options.delta,
|
70
|
-
options.initial_value,
|
71
|
-
durability_level::none,
|
72
|
-
options.timeout,
|
73
|
-
{ options.retry_strategy },
|
74
|
-
};
|
75
|
-
return core->execute(
|
76
|
-
std::move(request), [core, id = std::move(id), options, handler = std::move(handler)](operations::decrement_response&& resp) mutable {
|
77
|
-
if (resp.ctx.ec()) {
|
78
|
-
return handler(std::move(resp.ctx), counter_result{ resp.cas, std::move(resp.token), resp.content });
|
79
|
-
}
|
80
|
-
|
81
|
-
initiate_observe_poll(core,
|
82
|
-
std::move(id),
|
83
|
-
resp.token,
|
84
|
-
options.timeout,
|
85
|
-
options.persist_to,
|
86
|
-
options.replicate_to,
|
87
|
-
[resp = std::move(resp), handler = std::move(handler)](std::error_code ec) mutable {
|
88
|
-
if (ec) {
|
89
|
-
resp.ctx.override_ec(ec);
|
90
|
-
return handler(std::move(resp.ctx), counter_result{});
|
91
|
-
}
|
92
|
-
return handler(std::move(resp.ctx), counter_result{ resp.cas, std::move(resp.token), resp.content });
|
93
|
-
});
|
94
|
-
});
|
95
|
-
}
|
96
|
-
} // namespace couchbase::core::impl
|
@@ -1,66 +0,0 @@
|
|
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
|
-
#include <couchbase/manager_error_context.hxx>
|
19
|
-
#include <utility>
|
20
|
-
|
21
|
-
#include "core/cluster.hxx"
|
22
|
-
#include "core/operations/management/bucket_drop.hxx"
|
23
|
-
#include "couchbase/bucket_manager.hxx"
|
24
|
-
|
25
|
-
namespace couchbase
|
26
|
-
{
|
27
|
-
template<typename Response>
|
28
|
-
static manager_error_context
|
29
|
-
build_context(Response& resp)
|
30
|
-
{
|
31
|
-
return manager_error_context(internal_manager_error_context{ resp.ctx.ec,
|
32
|
-
resp.ctx.last_dispatched_to,
|
33
|
-
resp.ctx.last_dispatched_from,
|
34
|
-
resp.ctx.retry_attempts,
|
35
|
-
std::move(resp.ctx.retry_reasons),
|
36
|
-
std::move(resp.ctx.client_context_id),
|
37
|
-
resp.ctx.http_status,
|
38
|
-
std::move(resp.ctx.http_body),
|
39
|
-
std::move(resp.ctx.path) });
|
40
|
-
}
|
41
|
-
|
42
|
-
static core::operations::management::bucket_drop_request
|
43
|
-
build_drop_bucket_request(std::string bucket_name, const drop_bucket_options::built& options)
|
44
|
-
{
|
45
|
-
core::operations::management::bucket_drop_request request{ std::move(bucket_name), {}, options.timeout };
|
46
|
-
return request;
|
47
|
-
}
|
48
|
-
|
49
|
-
void
|
50
|
-
bucket_manager::drop_bucket(std::string bucket_name, const drop_bucket_options& options, drop_bucket_handler&& handler) const
|
51
|
-
{
|
52
|
-
auto request = build_drop_bucket_request(std::move(bucket_name), options.build());
|
53
|
-
|
54
|
-
core_->execute(std::move(request), [handler = std::move(handler)](core::operations::management::bucket_drop_response resp) mutable {
|
55
|
-
return handler(build_context(resp));
|
56
|
-
});
|
57
|
-
}
|
58
|
-
|
59
|
-
auto
|
60
|
-
bucket_manager::drop_bucket(std::string bucket_name, const drop_bucket_options& options) const -> std::future<manager_error_context>
|
61
|
-
{
|
62
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
63
|
-
drop_bucket(std::move(bucket_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
64
|
-
return barrier->get_future();
|
65
|
-
}
|
66
|
-
} // namespace couchbase
|
@@ -1,76 +0,0 @@
|
|
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
|
-
#include <couchbase/manager_error_context.hxx>
|
19
|
-
|
20
|
-
#include "core/cluster.hxx"
|
21
|
-
#include "core/operations/management/collection_drop.hxx"
|
22
|
-
#include "couchbase/collection_manager.hxx"
|
23
|
-
|
24
|
-
namespace couchbase
|
25
|
-
{
|
26
|
-
template<typename Response>
|
27
|
-
static manager_error_context
|
28
|
-
build_context(Response& resp)
|
29
|
-
{
|
30
|
-
return manager_error_context(internal_manager_error_context{ resp.ctx.ec,
|
31
|
-
resp.ctx.last_dispatched_to,
|
32
|
-
resp.ctx.last_dispatched_from,
|
33
|
-
resp.ctx.retry_attempts,
|
34
|
-
std::move(resp.ctx.retry_reasons),
|
35
|
-
std::move(resp.ctx.client_context_id),
|
36
|
-
resp.ctx.http_status,
|
37
|
-
std::move(resp.ctx.http_body),
|
38
|
-
std::move(resp.ctx.path) });
|
39
|
-
}
|
40
|
-
|
41
|
-
static core::operations::management::collection_drop_request
|
42
|
-
build_collection_drop_request(std::string bucket_name,
|
43
|
-
std::string scope_name,
|
44
|
-
std::string collection_name,
|
45
|
-
const drop_collection_options::built& options)
|
46
|
-
{
|
47
|
-
core::operations::management::collection_drop_request request{
|
48
|
-
std::move(bucket_name), std::move(scope_name), std::move(collection_name), {}, options.timeout
|
49
|
-
};
|
50
|
-
return request;
|
51
|
-
}
|
52
|
-
|
53
|
-
void
|
54
|
-
collection_manager::drop_collection(std::string scope_name,
|
55
|
-
std::string collection_name,
|
56
|
-
const couchbase::drop_collection_options& options,
|
57
|
-
couchbase::drop_collection_handler&& handler) const
|
58
|
-
{
|
59
|
-
auto request = build_collection_drop_request(bucket_name_, std::move(scope_name), std::move(collection_name), options.build());
|
60
|
-
|
61
|
-
core_->execute(std::move(request), [handler = std::move(handler)](core::operations::management::collection_drop_response resp) mutable {
|
62
|
-
return handler(build_context(resp));
|
63
|
-
});
|
64
|
-
}
|
65
|
-
|
66
|
-
auto
|
67
|
-
collection_manager::drop_collection(std::string scope_name,
|
68
|
-
std::string collection_name,
|
69
|
-
const couchbase::drop_collection_options& options) const -> std::future<manager_error_context>
|
70
|
-
{
|
71
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
72
|
-
drop_collection(
|
73
|
-
std::move(scope_name), std::move(collection_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
74
|
-
return barrier->get_future();
|
75
|
-
}
|
76
|
-
} // namespace couchbase
|
@@ -1,187 +0,0 @@
|
|
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
|
-
#include "couchbase/error_codes.hxx"
|
19
|
-
#include "couchbase/query_index_manager.hxx"
|
20
|
-
|
21
|
-
#include "core/cluster.hxx"
|
22
|
-
#include "core/operations/management/query_index_drop.hxx"
|
23
|
-
|
24
|
-
namespace couchbase
|
25
|
-
{
|
26
|
-
template<typename Response>
|
27
|
-
static manager_error_context
|
28
|
-
build_context(Response& resp)
|
29
|
-
{
|
30
|
-
return manager_error_context(internal_manager_error_context{ resp.ctx.ec,
|
31
|
-
resp.ctx.last_dispatched_to,
|
32
|
-
resp.ctx.last_dispatched_from,
|
33
|
-
resp.ctx.retry_attempts,
|
34
|
-
std::move(resp.ctx.retry_reasons),
|
35
|
-
std::move(resp.ctx.client_context_id),
|
36
|
-
resp.ctx.http_status,
|
37
|
-
std::move(resp.ctx.http_body),
|
38
|
-
std::move(resp.ctx.path) });
|
39
|
-
}
|
40
|
-
|
41
|
-
static core::operations::management::query_index_drop_request
|
42
|
-
build_drop_primary_index_request(std::string bucket_name, const drop_primary_query_index_options::built& options)
|
43
|
-
{
|
44
|
-
core::operations::management::query_index_drop_request request{
|
45
|
-
std::move(bucket_name), "", "", options.index_name.value_or(""), {}, true, options.ignore_if_not_exists, {}, options.timeout,
|
46
|
-
};
|
47
|
-
return request;
|
48
|
-
}
|
49
|
-
|
50
|
-
static core::operations::management::query_index_drop_request
|
51
|
-
build_drop_index_request(std::string bucket_name, std::string index_name, const drop_query_index_options::built& options)
|
52
|
-
{
|
53
|
-
core::operations::management::query_index_drop_request request{
|
54
|
-
std::move(bucket_name), "", "", std::move(index_name), {}, false, options.ignore_if_not_exists, {}, options.timeout,
|
55
|
-
};
|
56
|
-
return request;
|
57
|
-
}
|
58
|
-
|
59
|
-
static core::operations::management::query_index_drop_request
|
60
|
-
build_drop_primary_index_request(std::string bucket_name,
|
61
|
-
std::string scope_name,
|
62
|
-
std::string collection_name,
|
63
|
-
const drop_primary_query_index_options::built& options)
|
64
|
-
{
|
65
|
-
core::operations::management::query_index_drop_request request{
|
66
|
-
"",
|
67
|
-
"",
|
68
|
-
std::move(collection_name),
|
69
|
-
options.index_name.value_or(""),
|
70
|
-
core::query_context(std::move(bucket_name), std::move(scope_name)),
|
71
|
-
true,
|
72
|
-
options.ignore_if_not_exists,
|
73
|
-
{},
|
74
|
-
options.timeout,
|
75
|
-
};
|
76
|
-
return request;
|
77
|
-
}
|
78
|
-
|
79
|
-
static core::operations::management::query_index_drop_request
|
80
|
-
build_drop_index_request(std::string bucket_name,
|
81
|
-
std::string scope_name,
|
82
|
-
std::string collection_name,
|
83
|
-
std::string index_name,
|
84
|
-
const drop_query_index_options::built& options)
|
85
|
-
{
|
86
|
-
core::operations::management::query_index_drop_request request{
|
87
|
-
"",
|
88
|
-
"",
|
89
|
-
std::move(collection_name),
|
90
|
-
std::move(index_name),
|
91
|
-
core::query_context(std::move(bucket_name), std::move(scope_name)),
|
92
|
-
false,
|
93
|
-
options.ignore_if_not_exists,
|
94
|
-
{},
|
95
|
-
options.timeout,
|
96
|
-
};
|
97
|
-
return request;
|
98
|
-
}
|
99
|
-
|
100
|
-
void
|
101
|
-
query_index_manager::drop_primary_index(std::string bucket_name,
|
102
|
-
const couchbase::drop_primary_query_index_options& options,
|
103
|
-
couchbase::drop_query_index_handler&& handler)
|
104
|
-
{
|
105
|
-
auto request = build_drop_primary_index_request(std::move(bucket_name), options.build());
|
106
|
-
|
107
|
-
core_->execute(std::move(request),
|
108
|
-
[handler = std::move(handler)](core::operations::management::query_index_drop_response resp) mutable {
|
109
|
-
return handler(build_context(resp));
|
110
|
-
});
|
111
|
-
}
|
112
|
-
|
113
|
-
auto
|
114
|
-
query_index_manager::drop_primary_index(std::string bucket_name, const couchbase::drop_primary_query_index_options& options)
|
115
|
-
-> std::future<manager_error_context>
|
116
|
-
{
|
117
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
118
|
-
drop_primary_index(std::move(bucket_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
119
|
-
return barrier->get_future();
|
120
|
-
}
|
121
|
-
|
122
|
-
void
|
123
|
-
query_index_manager::drop_index(std::string bucket_name,
|
124
|
-
std::string index_name,
|
125
|
-
const couchbase::drop_query_index_options& options,
|
126
|
-
couchbase::drop_query_index_handler&& handler)
|
127
|
-
{
|
128
|
-
auto request = build_drop_index_request(std::move(bucket_name), std::move(index_name), options.build());
|
129
|
-
|
130
|
-
core_->execute(std::move(request),
|
131
|
-
[handler = std::move(handler)](core::operations::management::query_index_drop_response resp) mutable {
|
132
|
-
return handler(build_context(resp));
|
133
|
-
});
|
134
|
-
}
|
135
|
-
|
136
|
-
auto
|
137
|
-
query_index_manager::drop_index(std::string bucket_name, std::string index_name, const couchbase::drop_query_index_options& options)
|
138
|
-
-> std::future<manager_error_context>
|
139
|
-
{
|
140
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
141
|
-
drop_index(std::move(bucket_name), std::move(index_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
142
|
-
return barrier->get_future();
|
143
|
-
}
|
144
|
-
|
145
|
-
void
|
146
|
-
collection_query_index_manager::drop_primary_index(const drop_primary_query_index_options& options,
|
147
|
-
drop_query_index_handler&& handler) const
|
148
|
-
{
|
149
|
-
auto request = build_drop_primary_index_request(bucket_name_, scope_name_, collection_name_, options.build());
|
150
|
-
|
151
|
-
core_->execute(std::move(request),
|
152
|
-
[handler = std::move(handler)](core::operations::management::query_index_drop_response resp) mutable {
|
153
|
-
return handler(build_context(resp));
|
154
|
-
});
|
155
|
-
}
|
156
|
-
|
157
|
-
auto
|
158
|
-
collection_query_index_manager::drop_primary_index(const couchbase::drop_primary_query_index_options& options) const
|
159
|
-
-> std::future<manager_error_context>
|
160
|
-
{
|
161
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
162
|
-
drop_primary_index(options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
163
|
-
return barrier->get_future();
|
164
|
-
}
|
165
|
-
|
166
|
-
void
|
167
|
-
collection_query_index_manager::drop_index(std::string index_name,
|
168
|
-
const drop_query_index_options& options,
|
169
|
-
drop_query_index_handler&& handler) const
|
170
|
-
{
|
171
|
-
auto request = build_drop_index_request(bucket_name_, scope_name_, collection_name_, std::move(index_name), options.build());
|
172
|
-
|
173
|
-
core_->execute(std::move(request),
|
174
|
-
[handler = std::move(handler)](core::operations::management::query_index_drop_response resp) mutable {
|
175
|
-
return handler(build_context(resp));
|
176
|
-
});
|
177
|
-
}
|
178
|
-
|
179
|
-
auto
|
180
|
-
collection_query_index_manager::drop_index(std::string index_name, const couchbase::drop_query_index_options& options)
|
181
|
-
-> std::future<manager_error_context>
|
182
|
-
{
|
183
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
184
|
-
drop_index(std::move(index_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
185
|
-
return barrier->get_future();
|
186
|
-
}
|
187
|
-
} // namespace couchbase
|
@@ -1,68 +0,0 @@
|
|
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
|
-
#include <couchbase/manager_error_context.hxx>
|
19
|
-
|
20
|
-
#include "core/cluster.hxx"
|
21
|
-
#include "core/operations/management/scope_drop.hxx"
|
22
|
-
#include "couchbase/collection_manager.hxx"
|
23
|
-
|
24
|
-
namespace couchbase
|
25
|
-
{
|
26
|
-
template<typename Response>
|
27
|
-
static manager_error_context
|
28
|
-
build_context(Response& resp)
|
29
|
-
{
|
30
|
-
return manager_error_context(internal_manager_error_context{ resp.ctx.ec,
|
31
|
-
resp.ctx.last_dispatched_to,
|
32
|
-
resp.ctx.last_dispatched_from,
|
33
|
-
resp.ctx.retry_attempts,
|
34
|
-
std::move(resp.ctx.retry_reasons),
|
35
|
-
std::move(resp.ctx.client_context_id),
|
36
|
-
resp.ctx.http_status,
|
37
|
-
std::move(resp.ctx.http_body),
|
38
|
-
std::move(resp.ctx.path) });
|
39
|
-
}
|
40
|
-
|
41
|
-
static core::operations::management::scope_drop_request
|
42
|
-
build_drop_scope_request(std::string bucket_name, std::string scope_name, const drop_scope_options::built& options)
|
43
|
-
{
|
44
|
-
core::operations::management::scope_drop_request request{ std::move(bucket_name), std::move(scope_name), {}, options.timeout };
|
45
|
-
return request;
|
46
|
-
}
|
47
|
-
|
48
|
-
void
|
49
|
-
collection_manager::drop_scope(std::string scope_name,
|
50
|
-
const couchbase::drop_scope_options& options,
|
51
|
-
couchbase::drop_scope_handler&& handler) const
|
52
|
-
{
|
53
|
-
auto request = build_drop_scope_request(bucket_name_, std::move(scope_name), options.build());
|
54
|
-
|
55
|
-
core_->execute(std::move(request), [handler = std::move(handler)](core::operations::management::scope_drop_response resp) mutable {
|
56
|
-
return handler(build_context(resp));
|
57
|
-
});
|
58
|
-
}
|
59
|
-
|
60
|
-
auto
|
61
|
-
collection_manager::drop_scope(std::string scope_name, const couchbase::drop_scope_options& options) const
|
62
|
-
-> std::future<manager_error_context>
|
63
|
-
{
|
64
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
65
|
-
drop_scope(std::move(scope_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
66
|
-
return barrier->get_future();
|
67
|
-
}
|
68
|
-
} // namespace couchbase
|
@@ -1,47 +0,0 @@
|
|
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
|
-
#include "core/cluster.hxx"
|
19
|
-
#include "core/error_context/key_value.hxx"
|
20
|
-
#include "core/operations/document_exists.hxx"
|
21
|
-
|
22
|
-
#include <couchbase/exists_options.hxx>
|
23
|
-
|
24
|
-
namespace couchbase::core::impl
|
25
|
-
{
|
26
|
-
void
|
27
|
-
initiate_exists_operation(std::shared_ptr<couchbase::core::cluster> core,
|
28
|
-
std::string bucket_name,
|
29
|
-
std::string scope_name,
|
30
|
-
std::string collection_name,
|
31
|
-
std::string document_key,
|
32
|
-
exists_options::built options,
|
33
|
-
exists_handler&& handler)
|
34
|
-
{
|
35
|
-
core->execute(
|
36
|
-
operations::exists_request{
|
37
|
-
document_id{ std::move(bucket_name), std::move(scope_name), std::move(collection_name), std::move(document_key) },
|
38
|
-
{},
|
39
|
-
{},
|
40
|
-
options.timeout,
|
41
|
-
{ options.retry_strategy },
|
42
|
-
},
|
43
|
-
[handler = std::move(handler)](operations::exists_response&& resp) mutable {
|
44
|
-
return handler(std::move(resp.ctx), exists_result{ resp.cas, resp.exists() });
|
45
|
-
});
|
46
|
-
}
|
47
|
-
} // namespace couchbase::core::impl
|
@@ -1,66 +0,0 @@
|
|
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
|
-
#include <couchbase/manager_error_context.hxx>
|
19
|
-
#include <utility>
|
20
|
-
|
21
|
-
#include "core/cluster.hxx"
|
22
|
-
#include "core/operations/management/bucket_flush.hxx"
|
23
|
-
#include "couchbase/bucket_manager.hxx"
|
24
|
-
|
25
|
-
namespace couchbase
|
26
|
-
{
|
27
|
-
template<typename Response>
|
28
|
-
static manager_error_context
|
29
|
-
build_context(Response& resp)
|
30
|
-
{
|
31
|
-
return manager_error_context(internal_manager_error_context{ resp.ctx.ec,
|
32
|
-
resp.ctx.last_dispatched_to,
|
33
|
-
resp.ctx.last_dispatched_from,
|
34
|
-
resp.ctx.retry_attempts,
|
35
|
-
std::move(resp.ctx.retry_reasons),
|
36
|
-
std::move(resp.ctx.client_context_id),
|
37
|
-
resp.ctx.http_status,
|
38
|
-
std::move(resp.ctx.http_body),
|
39
|
-
std::move(resp.ctx.path) });
|
40
|
-
}
|
41
|
-
|
42
|
-
static core::operations::management::bucket_flush_request
|
43
|
-
build_flush_bucket_request(std::string bucket_name, const flush_bucket_options::built& options)
|
44
|
-
{
|
45
|
-
core::operations::management::bucket_flush_request request{ std::move(bucket_name), {}, options.timeout };
|
46
|
-
return request;
|
47
|
-
}
|
48
|
-
|
49
|
-
void
|
50
|
-
bucket_manager::flush_bucket(std::string bucket_name, const flush_bucket_options& options, flush_bucket_handler&& handler) const
|
51
|
-
{
|
52
|
-
auto request = build_flush_bucket_request(std::move(bucket_name), options.build());
|
53
|
-
|
54
|
-
core_->execute(std::move(request), [handler = std::move(handler)](core::operations::management::bucket_flush_response resp) mutable {
|
55
|
-
return handler(build_context(resp));
|
56
|
-
});
|
57
|
-
}
|
58
|
-
|
59
|
-
auto
|
60
|
-
bucket_manager::flush_bucket(std::string bucket_name, const flush_bucket_options& options) const -> std::future<manager_error_context>
|
61
|
-
{
|
62
|
-
auto barrier = std::make_shared<std::promise<manager_error_context>>();
|
63
|
-
flush_bucket(std::move(bucket_name), options, [barrier](auto ctx) mutable { barrier->set_value(std::move(ctx)); });
|
64
|
-
return barrier->get_future();
|
65
|
-
}
|
66
|
-
} // namespace couchbase
|