couchbase 3.3.0 → 3.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +37 -13
- data/ext/couchbase/CMakeLists.txt +367 -86
- data/ext/couchbase/cmake/CompilerWarnings.cmake +11 -4
- data/ext/couchbase/cmake/Documentation.cmake +35 -0
- data/ext/couchbase/cmake/OpenSSL.cmake +23 -0
- data/ext/couchbase/cmake/Testing.cmake +61 -0
- data/ext/couchbase/cmake/ThirdPartyDependencies.cmake +1 -0
- data/ext/couchbase/cmake/VersionInfo.cmake +13 -1
- data/ext/couchbase/cmake/build_version.hxx.in +3 -0
- data/ext/couchbase/core/CMakeLists.txt +0 -0
- data/ext/couchbase/core/agent.cxx +556 -0
- data/ext/couchbase/core/agent.hxx +165 -0
- data/ext/couchbase/core/agent_config.cxx +36 -0
- data/ext/couchbase/core/agent_config.hxx +44 -0
- data/ext/couchbase/core/agent_group.cxx +219 -0
- data/ext/couchbase/core/agent_group.hxx +79 -0
- data/ext/couchbase/core/agent_group_config.cxx +35 -0
- data/ext/couchbase/core/agent_group_config.hxx +45 -0
- data/ext/couchbase/core/agent_unit_test_api.hxx +37 -0
- data/ext/couchbase/core/analytics_query_options.cxx +72 -0
- data/ext/couchbase/core/analytics_query_options.hxx +74 -0
- data/ext/couchbase/core/analytics_scan_consistency.hxx +26 -0
- data/ext/couchbase/core/bucket.cxx +891 -0
- data/ext/couchbase/core/bucket.hxx +172 -0
- data/ext/couchbase/core/capella_ca.hxx +43 -0
- data/ext/couchbase/core/cluster.cxx +181 -0
- data/ext/couchbase/core/cluster.hxx +496 -0
- data/ext/couchbase/core/cluster_agent.cxx +36 -0
- data/ext/couchbase/core/cluster_agent.hxx +34 -0
- data/ext/couchbase/core/cluster_agent_config.cxx +35 -0
- data/ext/couchbase/core/cluster_agent_config.hxx +43 -0
- data/ext/couchbase/core/cluster_options.cxx +50 -0
- data/ext/couchbase/core/cluster_options.hxx +93 -0
- data/ext/couchbase/core/cluster_state.hxx +25 -0
- data/ext/couchbase/core/collection_id_cache_entry.hxx +37 -0
- data/ext/couchbase/core/collections_component.cxx +439 -0
- data/ext/couchbase/core/collections_component.hxx +81 -0
- data/ext/couchbase/core/collections_component_unit_test_api.hxx +36 -0
- data/ext/couchbase/core/collections_options.hxx +87 -0
- data/ext/couchbase/core/config_listener.hxx +31 -0
- data/ext/couchbase/core/config_profile.cxx +25 -0
- data/ext/couchbase/core/config_profile.hxx +92 -0
- data/ext/couchbase/core/core_sdk_shim.cxx +28 -0
- data/ext/couchbase/core/core_sdk_shim.hxx +30 -0
- data/ext/couchbase/core/crud_component.cxx +367 -0
- data/ext/couchbase/core/crud_component.hxx +60 -0
- data/ext/couchbase/core/crud_options.hxx +574 -0
- data/ext/couchbase/core/crypto/CMakeLists.txt +12 -0
- data/ext/couchbase/core/crypto/cbcrypto.cc +897 -0
- data/ext/couchbase/core/crypto/cbcrypto.h +88 -0
- data/ext/couchbase/core/design_document_namespace.hxx +26 -0
- data/ext/couchbase/core/design_document_namespace_fmt.hxx +47 -0
- data/ext/couchbase/core/diagnostics.hxx +97 -0
- data/ext/couchbase/core/diagnostics_fmt.hxx +113 -0
- data/ext/couchbase/core/diagnostics_json.hxx +100 -0
- data/ext/couchbase/core/diagntostics_options.hxx +55 -0
- data/ext/couchbase/core/dispatcher.cxx +37 -0
- data/ext/couchbase/core/dispatcher.hxx +43 -0
- data/ext/couchbase/core/document_id.cxx +102 -0
- data/ext/couchbase/core/document_id.hxx +119 -0
- data/ext/couchbase/core/document_id_fmt.hxx +37 -0
- data/ext/couchbase/core/durability_options.hxx +110 -0
- data/ext/couchbase/core/error_context/analytics.hxx +52 -0
- data/ext/couchbase/core/error_context/http.hxx +48 -0
- data/ext/couchbase/core/error_context/key_value.cxx +58 -0
- data/ext/couchbase/core/error_context/key_value.hxx +83 -0
- data/ext/couchbase/core/error_context/query.hxx +52 -0
- data/ext/couchbase/core/error_context/search.hxx +51 -0
- data/ext/couchbase/core/error_context/view.hxx +52 -0
- data/ext/couchbase/core/free_form_http_request.cxx +81 -0
- data/ext/couchbase/core/free_form_http_request.hxx +90 -0
- data/ext/couchbase/core/impl/analytics_error_category.cxx +62 -0
- data/ext/couchbase/core/impl/append.cxx +87 -0
- data/ext/couchbase/core/impl/best_effort_retry_strategy.cxx +109 -0
- data/ext/couchbase/core/impl/bootstrap_state_listener.hxx +39 -0
- data/ext/couchbase/core/impl/build_deferred_query_indexes.cxx +92 -0
- data/ext/couchbase/core/impl/cluster.cxx +185 -0
- data/ext/couchbase/core/impl/collection_query_index_manager.cxx +93 -0
- data/ext/couchbase/core/impl/common_error_category.cxx +88 -0
- data/ext/couchbase/core/impl/configuration_profiles_registry.cxx +73 -0
- data/ext/couchbase/core/impl/create_query_index.cxx +119 -0
- data/ext/couchbase/core/impl/decrement.cxx +96 -0
- data/ext/couchbase/core/impl/dns_srv_tracker.cxx +147 -0
- data/ext/couchbase/core/impl/dns_srv_tracker.hxx +68 -0
- data/ext/couchbase/core/impl/drop_query_index.cxx +108 -0
- data/ext/couchbase/core/impl/exists.cxx +47 -0
- data/ext/couchbase/core/impl/expiry.cxx +99 -0
- data/ext/couchbase/core/impl/fail_fast_retry_strategy.cxx +41 -0
- data/ext/couchbase/core/impl/field_level_encryption_error_category.cxx +63 -0
- data/ext/couchbase/core/impl/get.cxx +68 -0
- data/ext/couchbase/core/impl/get_all_query_indexes.cxx +76 -0
- data/ext/couchbase/core/impl/get_all_replicas.cxx +145 -0
- data/ext/couchbase/core/impl/get_all_replicas.hxx +79 -0
- data/ext/couchbase/core/impl/get_and_lock.cxx +49 -0
- data/ext/couchbase/core/impl/get_and_touch.cxx +49 -0
- data/ext/couchbase/core/impl/get_any_replica.cxx +134 -0
- data/ext/couchbase/core/impl/get_any_replica.hxx +76 -0
- data/ext/couchbase/core/impl/get_replica.cxx +44 -0
- data/ext/couchbase/core/impl/get_replica.hxx +52 -0
- data/ext/couchbase/core/impl/increment.cxx +96 -0
- data/ext/couchbase/core/impl/insert.cxx +90 -0
- data/ext/couchbase/core/impl/key_value_error_category.cxx +105 -0
- data/ext/couchbase/core/impl/lookup_in.cxx +68 -0
- data/ext/couchbase/core/impl/management_error_category.cxx +75 -0
- data/ext/couchbase/core/impl/mutate_in.cxx +125 -0
- data/ext/couchbase/core/impl/network_error_category.cxx +73 -0
- data/ext/couchbase/core/impl/observe_poll.cxx +355 -0
- data/ext/couchbase/core/impl/observe_poll.hxx +49 -0
- data/ext/couchbase/core/impl/observe_seqno.cxx +47 -0
- data/ext/couchbase/core/impl/observe_seqno.hxx +63 -0
- data/ext/couchbase/core/impl/prepend.cxx +87 -0
- data/ext/couchbase/core/impl/query.cxx +245 -0
- data/ext/couchbase/core/impl/query_error_category.cxx +55 -0
- data/ext/couchbase/core/impl/remove.cxx +86 -0
- data/ext/couchbase/core/impl/replace.cxx +102 -0
- data/ext/couchbase/core/impl/retry_action.cxx +39 -0
- data/ext/couchbase/core/impl/retry_reason.cxx +85 -0
- data/ext/couchbase/core/impl/search_error_category.cxx +51 -0
- data/ext/couchbase/core/impl/streaming_json_lexter_error_category.cxx +102 -0
- data/ext/couchbase/core/impl/subdoc/array_add_unique.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/array_append.cxx +37 -0
- data/ext/couchbase/core/impl/subdoc/array_insert.cxx +37 -0
- data/ext/couchbase/core/impl/subdoc/array_prepend.cxx +37 -0
- data/ext/couchbase/core/impl/subdoc/command.hxx +41 -0
- data/ext/couchbase/core/impl/subdoc/command_bundle.hxx +42 -0
- data/ext/couchbase/core/impl/subdoc/count.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/counter.cxx +37 -0
- data/ext/couchbase/core/impl/subdoc/exists.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/get.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/insert.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/join_values.cxx +56 -0
- data/ext/couchbase/core/impl/subdoc/join_values.hxx +27 -0
- data/ext/couchbase/core/impl/subdoc/lookup_in_macro.cxx +117 -0
- data/ext/couchbase/core/impl/subdoc/lookup_in_specs.cxx +42 -0
- data/ext/couchbase/core/impl/subdoc/mutate_in_macro.cxx +77 -0
- data/ext/couchbase/core/impl/subdoc/mutate_in_specs.cxx +42 -0
- data/ext/couchbase/core/impl/subdoc/opcode.hxx +47 -0
- data/ext/couchbase/core/impl/subdoc/path_flags.hxx +77 -0
- data/ext/couchbase/core/impl/subdoc/remove.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/replace.cxx +36 -0
- data/ext/couchbase/core/impl/subdoc/upsert.cxx +36 -0
- data/ext/couchbase/core/impl/touch.cxx +49 -0
- data/ext/couchbase/core/impl/transaction_error_category.cxx +54 -0
- data/ext/couchbase/core/impl/transaction_op_error_category.cxx +90 -0
- data/ext/couchbase/core/impl/unlock.cxx +47 -0
- data/ext/couchbase/core/impl/upsert.cxx +100 -0
- data/ext/couchbase/core/impl/view_error_category.cxx +50 -0
- data/ext/couchbase/core/impl/watch_query_indexes.cxx +168 -0
- data/ext/couchbase/core/impl/with_legacy_durability.hxx +65 -0
- data/ext/couchbase/core/io/dns_client.hxx +224 -0
- data/ext/couchbase/core/io/dns_codec.hxx +207 -0
- data/ext/couchbase/core/io/dns_config.cxx +157 -0
- data/ext/couchbase/core/io/dns_config.hxx +68 -0
- data/ext/couchbase/core/io/dns_message.hxx +555 -0
- data/ext/couchbase/core/io/http_command.hxx +182 -0
- data/ext/couchbase/core/io/http_context.hxx +40 -0
- data/ext/couchbase/core/io/http_message.hxx +116 -0
- data/ext/couchbase/core/io/http_parser.cxx +141 -0
- data/ext/couchbase/core/io/http_parser.hxx +55 -0
- data/ext/couchbase/core/io/http_session.hxx +552 -0
- data/ext/couchbase/core/io/http_session_manager.hxx +388 -0
- data/ext/couchbase/core/io/http_traits.hxx +38 -0
- data/ext/couchbase/core/io/ip_protocol.hxx +28 -0
- data/ext/couchbase/core/io/mcbp_command.hxx +317 -0
- data/ext/couchbase/core/io/mcbp_context.hxx +40 -0
- data/ext/couchbase/core/io/mcbp_message.cxx +39 -0
- data/ext/couchbase/core/io/mcbp_message.hxx +60 -0
- data/ext/couchbase/core/io/mcbp_parser.cxx +88 -0
- data/ext/couchbase/core/io/mcbp_parser.hxx +45 -0
- data/ext/couchbase/core/io/mcbp_session.cxx +1690 -0
- data/ext/couchbase/core/io/mcbp_session.hxx +130 -0
- data/ext/couchbase/core/io/mcbp_traits.hxx +38 -0
- data/ext/couchbase/core/io/query_cache.hxx +71 -0
- data/ext/couchbase/core/io/retry_context.hxx +89 -0
- data/ext/couchbase/core/io/retry_orchestrator.hxx +97 -0
- data/ext/couchbase/core/io/streams.hxx +258 -0
- data/ext/couchbase/core/json_string.hxx +82 -0
- data/ext/couchbase/core/key_value_config.cxx +35 -0
- data/ext/couchbase/core/key_value_config.hxx +40 -0
- data/ext/couchbase/core/logger/CMakeLists.txt +9 -0
- data/ext/couchbase/core/logger/configuration.hxx +60 -0
- data/ext/couchbase/core/logger/custom_rotating_file_sink.cxx +157 -0
- data/ext/couchbase/{couchbase → core}/logger/custom_rotating_file_sink.hxx +0 -0
- data/ext/couchbase/core/logger/level.hxx +21 -0
- data/ext/couchbase/core/logger/logger.cxx +340 -0
- data/ext/couchbase/core/logger/logger.hxx +240 -0
- data/ext/couchbase/core/management/analytics_dataset.hxx +30 -0
- data/ext/couchbase/core/management/analytics_index.hxx +30 -0
- data/ext/couchbase/core/management/analytics_link.hxx +22 -0
- data/ext/couchbase/core/management/analytics_link_azure_blob_external.cxx +68 -0
- data/ext/couchbase/core/management/analytics_link_azure_blob_external.hxx +76 -0
- data/ext/couchbase/core/management/analytics_link_azure_blob_external_json.hxx +52 -0
- data/ext/couchbase/core/management/analytics_link_couchbase_remote.cxx +105 -0
- data/ext/couchbase/core/management/analytics_link_couchbase_remote.hxx +107 -0
- data/ext/couchbase/core/management/analytics_link_couchbase_remote_json.hxx +63 -0
- data/ext/couchbase/core/management/analytics_link_s3_external.cxx +58 -0
- data/ext/couchbase/core/management/analytics_link_s3_external.hxx +69 -0
- data/ext/couchbase/core/management/analytics_link_s3_external_json.hxx +47 -0
- data/ext/couchbase/core/management/bucket_settings.hxx +134 -0
- data/ext/couchbase/core/management/bucket_settings_json.hxx +123 -0
- data/ext/couchbase/core/management/design_document.hxx +41 -0
- data/ext/couchbase/core/management/eventing_function.hxx +188 -0
- data/ext/couchbase/core/management/eventing_function_json.hxx +212 -0
- data/ext/couchbase/core/management/eventing_status.hxx +84 -0
- data/ext/couchbase/core/management/eventing_status_json.hxx +77 -0
- data/ext/couchbase/core/management/rbac.hxx +77 -0
- data/ext/couchbase/core/management/rbac_fmt.hxx +49 -0
- data/ext/couchbase/core/management/rbac_json.hxx +179 -0
- data/ext/couchbase/core/management/search_index.hxx +38 -0
- data/ext/couchbase/core/management/search_index_json.hxx +58 -0
- data/ext/couchbase/core/mcbp/barrier_frame.hxx +27 -0
- data/ext/couchbase/core/mcbp/big_endian.cxx +73 -0
- data/ext/couchbase/core/mcbp/big_endian.hxx +46 -0
- data/ext/couchbase/core/mcbp/buffer_writer.cxx +78 -0
- data/ext/couchbase/core/mcbp/buffer_writer.hxx +38 -0
- data/ext/couchbase/core/mcbp/codec.cxx +501 -0
- data/ext/couchbase/core/mcbp/codec.hxx +52 -0
- data/ext/couchbase/core/mcbp/command_code.cxx +77 -0
- data/ext/couchbase/core/mcbp/command_code.hxx +33 -0
- data/ext/couchbase/core/mcbp/completion_token.hxx +69 -0
- data/ext/couchbase/core/mcbp/datatype.hxx +40 -0
- data/ext/couchbase/core/mcbp/durability_level.hxx +35 -0
- data/ext/couchbase/core/mcbp/durability_level_frame.hxx +28 -0
- data/ext/couchbase/core/mcbp/durability_timeout_frame.hxx +29 -0
- data/ext/couchbase/core/mcbp/frame_type.hxx +41 -0
- data/ext/couchbase/core/mcbp/open_tracing_frame.hxx +29 -0
- data/ext/couchbase/core/mcbp/operation_consumer.cxx +47 -0
- data/ext/couchbase/core/mcbp/operation_consumer.hxx +42 -0
- data/ext/couchbase/core/mcbp/operation_queue.cxx +158 -0
- data/ext/couchbase/core/mcbp/operation_queue.hxx +57 -0
- data/ext/couchbase/core/mcbp/packet.cxx +92 -0
- data/ext/couchbase/core/mcbp/packet.hxx +71 -0
- data/ext/couchbase/core/mcbp/preserve_expiry_frame.hxx +26 -0
- data/ext/couchbase/core/mcbp/queue_callback.hxx +34 -0
- data/ext/couchbase/core/mcbp/queue_request.cxx +174 -0
- data/ext/couchbase/core/mcbp/queue_request.hxx +120 -0
- data/ext/couchbase/core/mcbp/queue_request_connection_info.hxx +29 -0
- data/ext/couchbase/core/mcbp/queue_response.hxx +37 -0
- data/ext/couchbase/core/mcbp/read_units_frame.hxx +28 -0
- data/ext/couchbase/core/mcbp/server_duration.cxx +40 -0
- data/ext/couchbase/core/mcbp/server_duration.hxx +32 -0
- data/ext/couchbase/core/mcbp/server_duration_frame.hxx +28 -0
- data/ext/couchbase/core/mcbp/stream_id_frame.hxx +28 -0
- data/ext/couchbase/core/mcbp/unsupported_frame.hxx +32 -0
- data/ext/couchbase/core/mcbp/user_impersonation_frame.hxx +30 -0
- data/ext/couchbase/core/mcbp/write_units_frame.hxx +29 -0
- data/ext/couchbase/core/meta/CMakeLists.txt +17 -0
- data/ext/couchbase/core/meta/features.hxx +31 -0
- data/ext/couchbase/core/meta/version.cxx +264 -0
- data/ext/couchbase/core/meta/version.hxx +56 -0
- data/ext/couchbase/core/metrics/CMakeLists.txt +13 -0
- data/ext/couchbase/core/metrics/logging_meter.cxx +235 -0
- data/ext/couchbase/core/metrics/logging_meter.hxx +60 -0
- data/ext/couchbase/core/metrics/logging_meter_options.hxx +28 -0
- data/ext/couchbase/core/metrics/noop_meter.hxx +47 -0
- data/ext/couchbase/core/n1ql_query_options.cxx +94 -0
- data/ext/couchbase/core/n1ql_query_options.hxx +78 -0
- data/ext/couchbase/core/operation_map.hxx +36 -0
- data/ext/couchbase/core/operations/document_analytics.cxx +221 -0
- data/ext/couchbase/core/operations/document_analytics.hxx +113 -0
- data/ext/couchbase/core/operations/document_append.cxx +45 -0
- data/ext/couchbase/core/operations/document_append.hxx +78 -0
- data/ext/couchbase/core/operations/document_decrement.cxx +53 -0
- data/ext/couchbase/core/operations/document_decrement.hxx +81 -0
- data/ext/couchbase/core/operations/document_exists.cxx +50 -0
- data/ext/couchbase/core/operations/document_exists.hxx +72 -0
- data/ext/couchbase/core/operations/document_get.cxx +44 -0
- data/ext/couchbase/core/operations/document_get.hxx +62 -0
- data/ext/couchbase/core/operations/document_get_all_replicas.hxx +143 -0
- data/ext/couchbase/core/operations/document_get_and_lock.cxx +45 -0
- data/ext/couchbase/core/operations/document_get_and_lock.hxx +64 -0
- data/ext/couchbase/core/operations/document_get_and_touch.cxx +45 -0
- data/ext/couchbase/core/operations/document_get_and_touch.hxx +65 -0
- data/ext/couchbase/core/operations/document_get_any_replica.hxx +133 -0
- data/ext/couchbase/core/operations/document_get_projected.cxx +238 -0
- data/ext/couchbase/core/operations/document_get_projected.hxx +68 -0
- data/ext/couchbase/core/operations/document_increment.cxx +53 -0
- data/ext/couchbase/core/operations/document_increment.hxx +81 -0
- data/ext/couchbase/core/operations/document_insert.cxx +51 -0
- data/ext/couchbase/core/operations/document_insert.hxx +80 -0
- data/ext/couchbase/core/operations/document_lookup_in.cxx +97 -0
- data/ext/couchbase/core/operations/document_lookup_in.hxx +77 -0
- data/ext/couchbase/core/operations/document_mutate_in.cxx +118 -0
- data/ext/couchbase/core/operations/document_mutate_in.hxx +95 -0
- data/ext/couchbase/core/operations/document_prepend.cxx +45 -0
- data/ext/couchbase/core/operations/document_prepend.hxx +78 -0
- data/ext/couchbase/core/operations/document_query.cxx +386 -0
- data/ext/couchbase/core/operations/document_query.hxx +128 -0
- data/ext/couchbase/core/operations/document_remove.cxx +45 -0
- data/ext/couchbase/core/operations/document_remove.hxx +78 -0
- data/ext/couchbase/core/operations/document_replace.cxx +55 -0
- data/ext/couchbase/core/operations/document_replace.hxx +82 -0
- data/ext/couchbase/core/operations/document_search.cxx +312 -0
- data/ext/couchbase/core/operations/document_search.hxx +163 -0
- data/ext/couchbase/core/operations/document_touch.cxx +43 -0
- data/ext/couchbase/core/operations/document_touch.hxx +61 -0
- data/ext/couchbase/core/operations/document_unlock.cxx +43 -0
- data/ext/couchbase/core/operations/document_unlock.hxx +61 -0
- data/ext/couchbase/core/operations/document_upsert.cxx +54 -0
- data/ext/couchbase/core/operations/document_upsert.hxx +81 -0
- data/ext/couchbase/core/operations/document_view.cxx +197 -0
- data/ext/couchbase/core/operations/document_view.hxx +109 -0
- data/ext/couchbase/core/operations/http_noop.cxx +64 -0
- data/ext/couchbase/core/operations/http_noop.hxx +48 -0
- data/ext/couchbase/core/operations/management/CMakeLists.txt +80 -0
- data/ext/couchbase/core/operations/management/analytics.hxx +34 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_create.cxx +93 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_create.hxx +57 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_drop.cxx +82 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_drop.hxx +54 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_get_all.cxx +78 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_get_all.hxx +52 -0
- data/ext/couchbase/core/operations/management/analytics_dataverse_create.cxx +81 -0
- data/ext/couchbase/core/operations/management/analytics_dataverse_create.hxx +53 -0
- data/ext/couchbase/core/operations/management/analytics_dataverse_drop.cxx +81 -0
- data/ext/couchbase/core/operations/management/analytics_dataverse_drop.hxx +53 -0
- data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.cxx +69 -0
- data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.hxx +52 -0
- data/ext/couchbase/core/operations/management/analytics_index_create.cxx +105 -0
- data/ext/couchbase/core/operations/management/analytics_index_create.hxx +56 -0
- data/ext/couchbase/core/operations/management/analytics_index_drop.cxx +89 -0
- data/ext/couchbase/core/operations/management/analytics_index_drop.hxx +55 -0
- data/ext/couchbase/core/operations/management/analytics_index_get_all.cxx +79 -0
- data/ext/couchbase/core/operations/management/analytics_index_get_all.hxx +52 -0
- data/ext/couchbase/core/operations/management/analytics_link_connect.cxx +81 -0
- data/ext/couchbase/core/operations/management/analytics_link_connect.hxx +57 -0
- data/ext/couchbase/core/operations/management/analytics_link_create.cxx +86 -0
- data/ext/couchbase/core/operations/management/analytics_link_create.hxx +77 -0
- data/ext/couchbase/core/operations/management/analytics_link_disconnect.cxx +79 -0
- data/ext/couchbase/core/operations/management/analytics_link_disconnect.hxx +56 -0
- data/ext/couchbase/core/operations/management/analytics_link_drop.cxx +102 -0
- data/ext/couchbase/core/operations/management/analytics_link_drop.hxx +56 -0
- data/ext/couchbase/core/operations/management/analytics_link_get_all.cxx +128 -0
- data/ext/couchbase/core/operations/management/analytics_link_get_all.hxx +63 -0
- data/ext/couchbase/core/operations/management/analytics_link_replace.cxx +86 -0
- data/ext/couchbase/core/operations/management/analytics_link_replace.hxx +78 -0
- data/ext/couchbase/core/operations/management/analytics_link_utils.hxx +37 -0
- data/ext/couchbase/core/operations/management/analytics_problem.hxx +31 -0
- data/ext/couchbase/core/operations/management/bucket.hxx +25 -0
- data/ext/couchbase/core/operations/management/bucket_create.cxx +171 -0
- data/ext/couchbase/core/operations/management/bucket_create.hxx +52 -0
- data/ext/couchbase/core/operations/management/bucket_describe.cxx +98 -0
- data/ext/couchbase/core/operations/management/bucket_describe.hxx +64 -0
- data/ext/couchbase/core/operations/management/bucket_drop.cxx +51 -0
- data/ext/couchbase/core/operations/management/bucket_drop.hxx +49 -0
- data/ext/couchbase/core/operations/management/bucket_flush.cxx +58 -0
- data/ext/couchbase/core/operations/management/bucket_flush.hxx +49 -0
- data/ext/couchbase/core/operations/management/bucket_get.cxx +58 -0
- data/ext/couchbase/core/operations/management/bucket_get.hxx +51 -0
- data/ext/couchbase/core/operations/management/bucket_get_all.cxx +58 -0
- data/ext/couchbase/core/operations/management/bucket_get_all.hxx +49 -0
- data/ext/couchbase/core/operations/management/bucket_update.cxx +130 -0
- data/ext/couchbase/core/operations/management/bucket_update.hxx +52 -0
- data/ext/couchbase/core/operations/management/change_password.cxx +55 -0
- data/ext/couchbase/core/operations/management/change_password.hxx +50 -0
- data/ext/couchbase/core/operations/management/cluster_describe.cxx +89 -0
- data/ext/couchbase/core/operations/management/cluster_describe.hxx +72 -0
- data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.cxx +43 -0
- data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.hxx +48 -0
- data/ext/couchbase/core/operations/management/collection_create.cxx +82 -0
- data/ext/couchbase/core/operations/management/collection_create.hxx +53 -0
- data/ext/couchbase/core/operations/management/collection_drop.cxx +72 -0
- data/ext/couchbase/core/operations/management/collection_drop.hxx +52 -0
- data/ext/couchbase/core/operations/management/collections.hxx +25 -0
- data/ext/couchbase/core/operations/management/collections_manifest_get.cxx +40 -0
- data/ext/couchbase/core/operations/management/collections_manifest_get.hxx +53 -0
- data/ext/couchbase/core/operations/management/error_utils.cxx +267 -0
- data/ext/couchbase/core/operations/management/error_utils.hxx +49 -0
- data/ext/couchbase/core/operations/management/eventing.hxx +28 -0
- data/ext/couchbase/core/operations/management/eventing_deploy_function.cxx +55 -0
- data/ext/couchbase/core/operations/management/eventing_deploy_function.hxx +52 -0
- data/ext/couchbase/core/operations/management/eventing_drop_function.cxx +56 -0
- data/ext/couchbase/core/operations/management/eventing_drop_function.hxx +52 -0
- data/ext/couchbase/core/operations/management/eventing_get_all_functions.cxx +63 -0
- data/ext/couchbase/core/operations/management/eventing_get_all_functions.hxx +51 -0
- data/ext/couchbase/core/operations/management/eventing_get_function.cxx +55 -0
- data/ext/couchbase/core/operations/management/eventing_get_function.hxx +53 -0
- data/ext/couchbase/core/operations/management/eventing_get_status.cxx +55 -0
- data/ext/couchbase/core/operations/management/eventing_get_status.hxx +53 -0
- data/ext/couchbase/core/operations/management/eventing_pause_function.cxx +55 -0
- data/ext/couchbase/core/operations/management/eventing_pause_function.hxx +52 -0
- data/ext/couchbase/core/operations/management/eventing_problem.hxx +32 -0
- data/ext/couchbase/core/operations/management/eventing_resume_function.cxx +55 -0
- data/ext/couchbase/core/operations/management/eventing_resume_function.hxx +52 -0
- data/ext/couchbase/core/operations/management/eventing_undeploy_function.cxx +55 -0
- data/ext/couchbase/core/operations/management/eventing_undeploy_function.hxx +52 -0
- data/ext/couchbase/core/operations/management/eventing_upsert_function.cxx +340 -0
- data/ext/couchbase/core/operations/management/eventing_upsert_function.hxx +52 -0
- data/ext/couchbase/core/operations/management/freeform.cxx +54 -0
- data/ext/couchbase/core/operations/management/freeform.hxx +55 -0
- data/ext/couchbase/core/operations/management/group_drop.cxx +50 -0
- data/ext/couchbase/core/operations/management/group_drop.hxx +49 -0
- data/ext/couchbase/core/operations/management/group_get.cxx +59 -0
- data/ext/couchbase/core/operations/management/group_get.hxx +50 -0
- data/ext/couchbase/core/operations/management/group_get_all.cxx +57 -0
- data/ext/couchbase/core/operations/management/group_get_all.hxx +49 -0
- data/ext/couchbase/core/operations/management/group_upsert.cxx +95 -0
- data/ext/couchbase/core/operations/management/group_upsert.hxx +51 -0
- data/ext/couchbase/core/operations/management/query.hxx +25 -0
- data/ext/couchbase/core/operations/management/query_index_build.cxx +92 -0
- data/ext/couchbase/core/operations/management/query_index_build.hxx +62 -0
- data/ext/couchbase/core/operations/management/query_index_build_deferred.hxx +116 -0
- data/ext/couchbase/core/operations/management/query_index_create.cxx +146 -0
- data/ext/couchbase/core/operations/management/query_index_create.hxx +67 -0
- data/ext/couchbase/core/operations/management/query_index_drop.cxx +127 -0
- data/ext/couchbase/core/operations/management/query_index_drop.hxx +63 -0
- data/ext/couchbase/core/operations/management/query_index_get_all.cxx +129 -0
- data/ext/couchbase/core/operations/management/query_index_get_all.hxx +56 -0
- data/ext/couchbase/core/operations/management/query_index_get_all_deferred.cxx +96 -0
- data/ext/couchbase/core/operations/management/query_index_get_all_deferred.hxx +57 -0
- data/ext/couchbase/core/operations/management/role_get_all.cxx +57 -0
- data/ext/couchbase/core/operations/management/role_get_all.hxx +49 -0
- data/ext/couchbase/core/operations/management/scope_create.cxx +74 -0
- data/ext/couchbase/core/operations/management/scope_create.hxx +51 -0
- data/ext/couchbase/core/operations/management/scope_drop.cxx +69 -0
- data/ext/couchbase/core/operations/management/scope_drop.hxx +51 -0
- data/ext/couchbase/core/operations/management/scope_get_all.cxx +61 -0
- data/ext/couchbase/core/operations/management/scope_get_all.hxx +51 -0
- data/ext/couchbase/core/operations/management/search.hxx +30 -0
- data/ext/couchbase/core/operations/management/search_get_stats.cxx +41 -0
- data/ext/couchbase/core/operations/management/search_get_stats.hxx +48 -0
- data/ext/couchbase/core/operations/management/search_index_analyze_document.cxx +84 -0
- data/ext/couchbase/core/operations/management/search_index_analyze_document.hxx +54 -0
- data/ext/couchbase/core/operations/management/search_index_control_ingest.cxx +72 -0
- data/ext/couchbase/core/operations/management/search_index_control_ingest.hxx +52 -0
- data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.cxx +72 -0
- data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.hxx +57 -0
- data/ext/couchbase/core/operations/management/search_index_control_query.cxx +72 -0
- data/ext/couchbase/core/operations/management/search_index_control_query.hxx +52 -0
- data/ext/couchbase/core/operations/management/search_index_drop.cxx +71 -0
- data/ext/couchbase/core/operations/management/search_index_drop.hxx +51 -0
- data/ext/couchbase/core/operations/management/search_index_get.cxx +74 -0
- data/ext/couchbase/core/operations/management/search_index_get.hxx +54 -0
- data/ext/couchbase/core/operations/management/search_index_get_all.cxx +66 -0
- data/ext/couchbase/core/operations/management/search_index_get_all.hxx +51 -0
- data/ext/couchbase/core/operations/management/search_index_get_documents_count.cxx +78 -0
- data/ext/couchbase/core/operations/management/search_index_get_documents_count.hxx +53 -0
- data/ext/couchbase/core/operations/management/search_index_get_stats.cxx +70 -0
- data/ext/couchbase/core/operations/management/search_index_get_stats.hxx +52 -0
- data/ext/couchbase/core/operations/management/search_index_upsert.cxx +114 -0
- data/ext/couchbase/core/operations/management/search_index_upsert.hxx +54 -0
- data/ext/couchbase/core/operations/management/user.hxx +29 -0
- data/ext/couchbase/core/operations/management/user_drop.cxx +51 -0
- data/ext/couchbase/core/operations/management/user_drop.hxx +51 -0
- data/ext/couchbase/core/operations/management/user_get.cxx +60 -0
- data/ext/couchbase/core/operations/management/user_get.hxx +52 -0
- data/ext/couchbase/core/operations/management/user_get_all.cxx +58 -0
- data/ext/couchbase/core/operations/management/user_get_all.hxx +51 -0
- data/ext/couchbase/core/operations/management/user_upsert.cxx +100 -0
- data/ext/couchbase/core/operations/management/user_upsert.hxx +52 -0
- data/ext/couchbase/core/operations/management/view.hxx +23 -0
- data/ext/couchbase/core/operations/management/view_index_drop.cxx +45 -0
- data/ext/couchbase/core/operations/management/view_index_drop.hxx +52 -0
- data/ext/couchbase/core/operations/management/view_index_get.cxx +73 -0
- data/ext/couchbase/core/operations/management/view_index_get.hxx +53 -0
- data/ext/couchbase/core/operations/management/view_index_get_all.cxx +107 -0
- data/ext/couchbase/core/operations/management/view_index_get_all.hxx +52 -0
- data/ext/couchbase/core/operations/management/view_index_upsert.cxx +70 -0
- data/ext/couchbase/core/operations/management/view_index_upsert.hxx +51 -0
- data/ext/couchbase/core/operations/mcbp_noop.cxx +38 -0
- data/ext/couchbase/core/operations/mcbp_noop.hxx +49 -0
- data/ext/couchbase/core/operations/operation_traits.hxx +31 -0
- data/ext/couchbase/core/operations.hxx +44 -0
- data/ext/couchbase/core/origin.hxx +195 -0
- data/ext/couchbase/core/pending_operation.hxx +26 -0
- data/ext/couchbase/core/ping_collector.hxx +32 -0
- data/ext/couchbase/core/ping_options.hxx +86 -0
- data/ext/couchbase/core/ping_reporter.hxx +30 -0
- data/ext/couchbase/core/platform/CMakeLists.txt +16 -0
- data/ext/couchbase/core/platform/backtrace.c +189 -0
- data/ext/couchbase/{couchbase → core}/platform/backtrace.h +0 -0
- data/ext/couchbase/core/platform/base64.cc +253 -0
- data/ext/couchbase/core/platform/base64.h +52 -0
- data/ext/couchbase/core/platform/dirutils.cc +123 -0
- data/ext/couchbase/core/platform/dirutils.h +43 -0
- data/ext/couchbase/core/platform/random.cc +120 -0
- data/ext/couchbase/core/platform/random.h +39 -0
- data/ext/couchbase/core/platform/string_hex.cc +101 -0
- data/ext/couchbase/core/platform/string_hex.h +50 -0
- data/ext/couchbase/core/platform/terminate_handler.cc +125 -0
- data/ext/couchbase/core/platform/terminate_handler.h +36 -0
- data/ext/couchbase/core/platform/uuid.cc +102 -0
- data/ext/couchbase/core/platform/uuid.h +56 -0
- data/ext/couchbase/core/protocol/client_opcode.hxx +369 -0
- data/ext/couchbase/core/protocol/client_opcode_fmt.hxx +325 -0
- data/ext/couchbase/core/protocol/client_request.cxx +38 -0
- data/ext/couchbase/core/protocol/client_request.hxx +167 -0
- data/ext/couchbase/core/protocol/client_response.cxx +75 -0
- data/ext/couchbase/core/protocol/client_response.hxx +210 -0
- data/ext/couchbase/core/protocol/cmd_append.cxx +74 -0
- data/ext/couchbase/core/protocol/cmd_append.hxx +107 -0
- data/ext/couchbase/core/protocol/cmd_cluster_map_change_notification.cxx +53 -0
- data/ext/couchbase/core/protocol/cmd_cluster_map_change_notification.hxx +57 -0
- data/ext/couchbase/core/protocol/cmd_decrement.cxx +96 -0
- data/ext/couchbase/core/protocol/cmd_decrement.hxx +130 -0
- data/ext/couchbase/core/protocol/cmd_get.cxx +59 -0
- data/ext/couchbase/core/protocol/cmd_get.hxx +96 -0
- data/ext/couchbase/core/protocol/cmd_get_and_lock.cxx +66 -0
- data/ext/couchbase/core/protocol/cmd_get_and_lock.hxx +112 -0
- data/ext/couchbase/core/protocol/cmd_get_and_touch.cxx +66 -0
- data/ext/couchbase/core/protocol/cmd_get_and_touch.hxx +112 -0
- data/ext/couchbase/core/protocol/cmd_get_cluster_config.cxx +85 -0
- data/ext/couchbase/core/protocol/cmd_get_cluster_config.hxx +89 -0
- data/ext/couchbase/core/protocol/cmd_get_collection_id.cxx +60 -0
- data/ext/couchbase/core/protocol/cmd_get_collection_id.hxx +95 -0
- data/ext/couchbase/core/protocol/cmd_get_collections_manifest.cxx +51 -0
- data/ext/couchbase/core/protocol/cmd_get_collections_manifest.hxx +84 -0
- data/ext/couchbase/core/protocol/cmd_get_error_map.cxx +61 -0
- data/ext/couchbase/core/protocol/cmd_get_error_map.hxx +103 -0
- data/ext/couchbase/core/protocol/cmd_get_meta.cxx +70 -0
- data/ext/couchbase/core/protocol/cmd_get_meta.hxx +117 -0
- data/ext/couchbase/core/protocol/cmd_get_replica.cxx +71 -0
- data/ext/couchbase/core/protocol/cmd_get_replica.hxx +88 -0
- data/ext/couchbase/core/protocol/cmd_hello.cxx +76 -0
- data/ext/couchbase/core/protocol/cmd_hello.hxx +140 -0
- data/ext/couchbase/core/protocol/cmd_increment.cxx +98 -0
- data/ext/couchbase/core/protocol/cmd_increment.hxx +130 -0
- data/ext/couchbase/core/protocol/cmd_info.hxx +30 -0
- data/ext/couchbase/core/protocol/cmd_insert.cxx +83 -0
- data/ext/couchbase/core/protocol/cmd_insert.hxx +124 -0
- data/ext/couchbase/core/protocol/cmd_lookup_in.cxx +108 -0
- data/ext/couchbase/core/protocol/cmd_lookup_in.hxx +139 -0
- data/ext/couchbase/core/protocol/cmd_mutate_in.cxx +163 -0
- data/ext/couchbase/core/protocol/cmd_mutate_in.hxx +216 -0
- data/ext/couchbase/core/protocol/cmd_noop.cxx +36 -0
- data/ext/couchbase/core/protocol/cmd_noop.hxx +75 -0
- data/ext/couchbase/core/protocol/cmd_observe_seqno.cxx +92 -0
- data/ext/couchbase/core/protocol/cmd_observe_seqno.hxx +132 -0
- data/ext/couchbase/core/protocol/cmd_prepend.cxx +73 -0
- data/ext/couchbase/core/protocol/cmd_prepend.hxx +103 -0
- data/ext/couchbase/core/protocol/cmd_remove.cxx +74 -0
- data/ext/couchbase/core/protocol/cmd_remove.hxx +94 -0
- data/ext/couchbase/core/protocol/cmd_replace.cxx +92 -0
- data/ext/couchbase/core/protocol/cmd_replace.hxx +131 -0
- data/ext/couchbase/core/protocol/cmd_sasl_auth.cxx +61 -0
- data/ext/couchbase/core/protocol/cmd_sasl_auth.hxx +91 -0
- data/ext/couchbase/core/protocol/cmd_sasl_list_mechs.cxx +53 -0
- data/ext/couchbase/core/protocol/cmd_sasl_list_mechs.hxx +82 -0
- data/ext/couchbase/core/protocol/cmd_sasl_step.cxx +61 -0
- data/ext/couchbase/core/protocol/cmd_sasl_step.hxx +91 -0
- data/ext/couchbase/core/protocol/cmd_select_bucket.cxx +45 -0
- data/ext/couchbase/core/protocol/cmd_select_bucket.hxx +79 -0
- data/ext/couchbase/core/protocol/cmd_touch.cxx +53 -0
- data/ext/couchbase/core/protocol/cmd_touch.hxx +84 -0
- data/ext/couchbase/core/protocol/cmd_unlock.cxx +44 -0
- data/ext/couchbase/core/protocol/cmd_unlock.hxx +81 -0
- data/ext/couchbase/core/protocol/cmd_upsert.cxx +92 -0
- data/ext/couchbase/core/protocol/cmd_upsert.hxx +126 -0
- data/ext/couchbase/core/protocol/datatype.hxx +48 -0
- data/ext/couchbase/core/protocol/enhanced_error_info.hxx +23 -0
- data/ext/couchbase/core/protocol/frame_info_id.hxx +142 -0
- data/ext/couchbase/core/protocol/frame_info_id_fmt.hxx +79 -0
- data/ext/couchbase/core/protocol/frame_info_utils.cxx +59 -0
- data/ext/couchbase/core/protocol/frame_info_utils.hxx +52 -0
- data/ext/couchbase/core/protocol/hello_feature.hxx +193 -0
- data/ext/couchbase/core/protocol/hello_feature_fmt.hxx +112 -0
- data/ext/couchbase/core/protocol/magic.hxx +53 -0
- data/ext/couchbase/core/protocol/magic_fmt.hxx +58 -0
- data/ext/couchbase/core/protocol/server_opcode.hxx +39 -0
- data/ext/couchbase/core/protocol/server_opcode_fmt.hxx +46 -0
- data/ext/couchbase/core/protocol/server_request.hxx +121 -0
- data/ext/couchbase/core/protocol/status.cxx +202 -0
- data/ext/couchbase/core/protocol/status.hxx +118 -0
- data/ext/couchbase/core/query_context.hxx +79 -0
- data/ext/couchbase/core/range_scan_options.cxx +57 -0
- data/ext/couchbase/core/range_scan_options.hxx +139 -0
- data/ext/couchbase/core/range_scan_orchestrator.cxx +495 -0
- data/ext/couchbase/core/range_scan_orchestrator.hxx +54 -0
- data/ext/couchbase/core/range_scan_orchestrator_options.hxx +54 -0
- data/ext/couchbase/core/resource_units.hxx +26 -0
- data/ext/couchbase/core/response_handler.hxx +49 -0
- data/ext/couchbase/core/retry_orchestrator.cxx +52 -0
- data/ext/couchbase/core/retry_orchestrator.hxx +35 -0
- data/ext/couchbase/core/sasl/CMakeLists.txt +16 -0
- data/ext/couchbase/core/sasl/client.cc +50 -0
- data/ext/couchbase/core/sasl/client.h +127 -0
- data/ext/couchbase/core/sasl/context.cc +34 -0
- data/ext/couchbase/core/sasl/context.h +52 -0
- data/ext/couchbase/core/sasl/error.h +28 -0
- data/ext/couchbase/core/sasl/error_fmt.h +70 -0
- data/ext/couchbase/core/sasl/mechanism.cc +45 -0
- data/ext/couchbase/core/sasl/mechanism.h +52 -0
- data/ext/couchbase/core/sasl/plain/plain.cc +39 -0
- data/ext/couchbase/core/sasl/plain/plain.h +54 -0
- data/ext/couchbase/core/sasl/scram-sha/scram-sha.cc +372 -0
- data/ext/couchbase/core/sasl/scram-sha/scram-sha.h +184 -0
- data/ext/couchbase/core/sasl/scram-sha/stringutils.cc +82 -0
- data/ext/couchbase/core/sasl/scram-sha/stringutils.h +48 -0
- data/ext/couchbase/core/scan_options.hxx +63 -0
- data/ext/couchbase/core/scan_result.cxx +71 -0
- data/ext/couchbase/core/scan_result.hxx +59 -0
- data/ext/couchbase/core/search_highlight_style.hxx +23 -0
- data/ext/couchbase/core/search_query_options.cxx +72 -0
- data/ext/couchbase/core/search_query_options.hxx +74 -0
- data/ext/couchbase/core/search_scan_consistency.hxx +23 -0
- data/ext/couchbase/core/seed_config.cxx +39 -0
- data/ext/couchbase/core/seed_config.hxx +39 -0
- data/ext/couchbase/core/service_type.hxx +31 -0
- data/ext/couchbase/core/service_type_fmt.hxx +61 -0
- data/ext/couchbase/core/stats_options.hxx +61 -0
- data/ext/couchbase/core/subdoc_options.hxx +124 -0
- data/ext/couchbase/core/timeout_defaults.hxx +45 -0
- data/ext/couchbase/core/topology/capabilities.hxx +43 -0
- data/ext/couchbase/core/topology/capabilities_fmt.hxx +106 -0
- data/ext/couchbase/core/topology/collections_manifest.hxx +43 -0
- data/ext/couchbase/core/topology/collections_manifest_fmt.hxx +52 -0
- data/ext/couchbase/core/topology/collections_manifest_json.hxx +53 -0
- data/ext/couchbase/core/topology/configuration.cxx +256 -0
- data/ext/couchbase/core/topology/configuration.hxx +144 -0
- data/ext/couchbase/core/topology/configuration_fmt.hxx +166 -0
- data/ext/couchbase/core/topology/configuration_json.hxx +259 -0
- data/ext/couchbase/core/topology/error_map.hxx +35 -0
- data/ext/couchbase/core/topology/error_map_fmt.hxx +94 -0
- data/ext/couchbase/core/topology/error_map_json.hxx +89 -0
- data/ext/couchbase/core/tracing/CMakeLists.txt +11 -0
- data/ext/couchbase/core/tracing/constants.hxx +286 -0
- data/ext/couchbase/core/tracing/noop_tracer.hxx +56 -0
- data/ext/couchbase/core/tracing/threshold_logging_options.hxx +68 -0
- data/ext/couchbase/core/tracing/threshold_logging_tracer.cxx +438 -0
- data/ext/couchbase/core/tracing/threshold_logging_tracer.hxx +52 -0
- data/ext/couchbase/core/transactions/active_transaction_record.hxx +180 -0
- data/ext/couchbase/core/transactions/async_attempt_context.hxx +175 -0
- data/ext/couchbase/core/transactions/atr_cleanup_entry.cxx +460 -0
- data/ext/couchbase/core/transactions/atr_ids.cxx +225 -0
- data/ext/couchbase/core/transactions/atr_ids.hxx +32 -0
- data/ext/couchbase/core/transactions/attempt_context.hxx +195 -0
- data/ext/couchbase/core/transactions/attempt_context_impl.cxx +2382 -0
- data/ext/couchbase/core/transactions/attempt_context_impl.hxx +608 -0
- data/ext/couchbase/core/transactions/attempt_context_testing_hooks.hxx +145 -0
- data/ext/couchbase/core/transactions/attempt_state.hxx +112 -0
- data/ext/couchbase/core/transactions/binary.cxx +26 -0
- data/ext/couchbase/core/transactions/cleanup_testing_hooks.hxx +69 -0
- data/ext/couchbase/core/transactions/document_metadata.hxx +106 -0
- data/ext/couchbase/core/transactions/durability_level.hxx +91 -0
- data/ext/couchbase/core/transactions/error_class.hxx +35 -0
- data/ext/couchbase/core/transactions/error_list.hxx +54 -0
- data/ext/couchbase/core/transactions/exceptions.cxx +160 -0
- data/ext/couchbase/core/transactions/exceptions.hxx +209 -0
- data/ext/couchbase/core/transactions/forward_compat.hxx +250 -0
- data/ext/couchbase/core/transactions/internal/atr_cleanup_entry.hxx +164 -0
- data/ext/couchbase/core/transactions/internal/atr_entry.hxx +178 -0
- data/ext/couchbase/core/transactions/internal/binary.hxx +26 -0
- data/ext/couchbase/core/transactions/internal/client_record.hxx +85 -0
- data/ext/couchbase/core/transactions/internal/doc_record.hxx +99 -0
- data/ext/couchbase/core/transactions/internal/exceptions_internal.hxx +393 -0
- data/ext/couchbase/core/transactions/internal/logging.hxx +62 -0
- data/ext/couchbase/core/transactions/internal/transaction_attempt.hxx +30 -0
- data/ext/couchbase/core/transactions/internal/transaction_context.hxx +197 -0
- data/ext/couchbase/core/transactions/internal/transaction_fields.hxx +71 -0
- data/ext/couchbase/core/transactions/internal/transactions_cleanup.hxx +159 -0
- data/ext/couchbase/core/transactions/internal/utils.hxx +311 -0
- data/ext/couchbase/core/transactions/result.cxx +79 -0
- data/ext/couchbase/core/transactions/result.hxx +296 -0
- data/ext/couchbase/core/transactions/staged_mutation.cxx +416 -0
- data/ext/couchbase/core/transactions/staged_mutation.hxx +126 -0
- data/ext/couchbase/core/transactions/transaction_attempt.cxx +29 -0
- data/ext/couchbase/core/transactions/transaction_context.cxx +307 -0
- data/ext/couchbase/core/transactions/transaction_get_result.cxx +218 -0
- data/ext/couchbase/core/transactions/transaction_get_result.hxx +289 -0
- data/ext/couchbase/core/transactions/transaction_links.cxx +27 -0
- data/ext/couchbase/core/transactions/transaction_links.hxx +252 -0
- data/ext/couchbase/core/transactions/transaction_options.cxx +38 -0
- data/ext/couchbase/core/transactions/transactions.cxx +184 -0
- data/ext/couchbase/core/transactions/transactions_cleanup.cxx +592 -0
- data/ext/couchbase/core/transactions/transactions_config.cxx +81 -0
- data/ext/couchbase/core/transactions/uid_generator.cxx +27 -0
- data/ext/couchbase/core/transactions/uid_generator.hxx +29 -0
- data/ext/couchbase/core/transactions/utils.cxx +123 -0
- data/ext/couchbase/core/transactions/waitable_op_list.hxx +189 -0
- data/ext/couchbase/core/transactions.hxx +255 -0
- data/ext/couchbase/core/utils/binary.cxx +27 -0
- data/ext/couchbase/core/utils/binary.hxx +57 -0
- data/ext/couchbase/core/utils/byteswap.hxx +49 -0
- data/ext/couchbase/core/utils/connection_string.cxx +430 -0
- data/ext/couchbase/core/utils/connection_string.hxx +76 -0
- data/ext/couchbase/core/utils/crc32.hxx +56 -0
- data/ext/couchbase/core/utils/duration_parser.cxx +193 -0
- data/ext/couchbase/core/utils/duration_parser.hxx +45 -0
- data/ext/couchbase/core/utils/join_strings.hxx +65 -0
- data/ext/couchbase/core/utils/json.cxx +291 -0
- data/ext/couchbase/core/utils/json.hxx +43 -0
- data/ext/couchbase/core/utils/json_stream_control.hxx +32 -0
- data/ext/couchbase/core/utils/json_streaming_lexer.cxx +398 -0
- data/ext/couchbase/core/utils/json_streaming_lexer.hxx +60 -0
- data/ext/couchbase/core/utils/keyspace.hxx +55 -0
- data/ext/couchbase/core/utils/movable_function.hxx +121 -0
- data/ext/couchbase/core/utils/mutation_token.cxx +33 -0
- data/ext/couchbase/core/utils/mutation_token.hxx +29 -0
- data/ext/couchbase/core/utils/name_codec.hxx +41 -0
- data/ext/couchbase/core/utils/split_string.cxx +35 -0
- data/ext/couchbase/core/utils/split_string.hxx +27 -0
- data/ext/couchbase/core/utils/unsigned_leb128.hxx +183 -0
- data/ext/couchbase/core/utils/url_codec.cxx +405 -0
- data/ext/couchbase/core/utils/url_codec.hxx +72 -0
- data/ext/couchbase/core/view_on_error.hxx +27 -0
- data/ext/couchbase/core/view_query_options.cxx +72 -0
- data/ext/couchbase/core/view_query_options.hxx +78 -0
- data/ext/couchbase/core/view_scan_consistency.hxx +27 -0
- data/ext/couchbase/core/view_sort_order.hxx +23 -0
- data/ext/couchbase/core/wait_until_ready_options.hxx +52 -0
- data/ext/couchbase/couchbase/append_options.hxx +123 -0
- data/ext/couchbase/couchbase/behavior_options.hxx +79 -0
- data/ext/couchbase/couchbase/best_effort_retry_strategy.hxx +64 -0
- data/ext/couchbase/couchbase/binary_collection.hxx +327 -0
- data/ext/couchbase/couchbase/bucket.hxx +55 -494
- data/ext/couchbase/couchbase/build_query_index_options.hxx +99 -0
- data/ext/couchbase/couchbase/cas.hxx +74 -8
- data/ext/couchbase/couchbase/certificate_authenticator.hxx +39 -0
- data/ext/couchbase/couchbase/cluster.hxx +156 -370
- data/ext/couchbase/couchbase/cluster_options.hxx +315 -51
- data/ext/couchbase/couchbase/codec/binary_noop_serializer.hxx +47 -0
- data/ext/couchbase/couchbase/codec/codec_flags.hxx +145 -0
- data/ext/couchbase/couchbase/codec/default_json_transcoder.hxx +36 -0
- data/ext/couchbase/couchbase/codec/encoded_value.hxx +31 -0
- data/ext/couchbase/couchbase/codec/json_transcoder.hxx +49 -0
- data/ext/couchbase/couchbase/codec/raw_binary_transcoder.hxx +54 -0
- data/ext/couchbase/couchbase/codec/serializer_traits.hxx +31 -0
- data/ext/couchbase/couchbase/codec/tao_json_serializer.hxx +81 -0
- data/ext/couchbase/couchbase/codec/transcoder_traits.hxx +31 -0
- data/ext/couchbase/couchbase/collection.hxx +1031 -0
- data/ext/couchbase/couchbase/collection_query_index_manager.hxx +218 -0
- data/ext/couchbase/couchbase/common_durability_options.hxx +108 -0
- data/ext/couchbase/couchbase/common_options.hxx +112 -0
- data/ext/couchbase/couchbase/compression_options.hxx +65 -0
- data/ext/couchbase/couchbase/configuration_profile.hxx +44 -0
- data/ext/couchbase/couchbase/configuration_profiles_registry.hxx +61 -0
- data/ext/couchbase/couchbase/counter_result.hxx +73 -0
- data/ext/couchbase/couchbase/create_primary_query_index_options.hxx +166 -0
- data/ext/couchbase/couchbase/create_query_index_options.hxx +172 -0
- data/ext/couchbase/couchbase/decrement_options.hxx +166 -0
- data/ext/couchbase/couchbase/dns_options.hxx +65 -0
- data/ext/couchbase/couchbase/drop_primary_query_index_options.hxx +129 -0
- data/ext/couchbase/couchbase/drop_query_index_options.hxx +116 -0
- data/ext/couchbase/couchbase/durability_level.hxx +64 -0
- data/ext/couchbase/couchbase/error_codes.hxx +1223 -0
- data/ext/couchbase/couchbase/error_context.hxx +173 -0
- data/ext/couchbase/couchbase/exists_options.hxx +97 -0
- data/ext/couchbase/couchbase/exists_result.hxx +72 -0
- data/ext/couchbase/couchbase/expiry.hxx +55 -0
- data/ext/couchbase/couchbase/fail_fast_retry_strategy.hxx +37 -0
- data/ext/couchbase/couchbase/fmt/cas.hxx +37 -0
- data/ext/couchbase/couchbase/fmt/durability_level.hxx +52 -0
- data/ext/couchbase/couchbase/fmt/key_value_extended_error_info.hxx +46 -0
- data/ext/couchbase/couchbase/fmt/key_value_status_code.hxx +258 -0
- data/ext/couchbase/couchbase/fmt/mutation_token.hxx +38 -0
- data/ext/couchbase/couchbase/fmt/query_scan_consistency.hxx +46 -0
- data/ext/couchbase/couchbase/fmt/query_status.hxx +70 -0
- data/ext/couchbase/couchbase/fmt/retry_reason.hxx +103 -0
- data/ext/couchbase/couchbase/fmt/tls_verify_mode.hxx +46 -0
- data/ext/couchbase/couchbase/get_all_query_indexes_options.hxx +100 -0
- data/ext/couchbase/couchbase/get_all_replicas_options.hxx +102 -0
- data/ext/couchbase/couchbase/get_and_lock_options.hxx +94 -0
- data/ext/couchbase/couchbase/get_and_touch_options.hxx +94 -0
- data/ext/couchbase/couchbase/get_any_replica_options.hxx +93 -0
- data/ext/couchbase/couchbase/get_options.hxx +137 -0
- data/ext/couchbase/couchbase/get_replica_result.hxx +117 -0
- data/ext/couchbase/couchbase/get_result.hxx +126 -0
- data/ext/couchbase/couchbase/increment_options.hxx +166 -0
- data/ext/couchbase/couchbase/insert_options.hxx +136 -0
- data/ext/couchbase/couchbase/ip_protocol.hxx +27 -0
- data/ext/couchbase/couchbase/key_value_error_context.hxx +224 -0
- data/ext/couchbase/couchbase/key_value_error_map_attribute.hxx +124 -0
- data/ext/couchbase/couchbase/key_value_error_map_info.hxx +138 -0
- data/ext/couchbase/couchbase/key_value_extended_error_info.hxx +86 -0
- data/ext/couchbase/couchbase/key_value_status_code.hxx +107 -0
- data/ext/couchbase/couchbase/lookup_in_options.hxx +119 -0
- data/ext/couchbase/couchbase/lookup_in_result.hxx +255 -0
- data/ext/couchbase/couchbase/lookup_in_specs.hxx +147 -0
- data/ext/couchbase/couchbase/manager_error_context.hxx +136 -0
- data/ext/couchbase/couchbase/metrics/meter.hxx +16 -0
- data/ext/couchbase/couchbase/metrics/otel_meter.hxx +131 -0
- data/ext/couchbase/couchbase/metrics_options.hxx +71 -0
- data/ext/couchbase/couchbase/mutate_in_options.hxx +233 -0
- data/ext/couchbase/couchbase/mutate_in_result.hxx +173 -0
- data/ext/couchbase/couchbase/mutate_in_specs.hxx +528 -0
- data/ext/couchbase/couchbase/mutation_result.hxx +73 -0
- data/ext/couchbase/couchbase/mutation_state.hxx +73 -0
- data/ext/couchbase/couchbase/mutation_token.hxx +93 -6
- data/ext/couchbase/couchbase/network_options.hxx +114 -0
- data/ext/couchbase/couchbase/password_authenticator.hxx +47 -0
- data/ext/couchbase/couchbase/persist_to.hxx +73 -0
- data/ext/couchbase/couchbase/prepend_options.hxx +124 -0
- data/ext/couchbase/couchbase/query_error_context.hxx +143 -0
- data/ext/couchbase/couchbase/query_index_manager.hxx +254 -0
- data/ext/couchbase/couchbase/query_meta_data.hxx +171 -0
- data/ext/couchbase/couchbase/query_metrics.hxx +179 -0
- data/ext/couchbase/couchbase/query_options.hxx +575 -0
- data/ext/couchbase/couchbase/query_profile.hxx +52 -0
- data/ext/couchbase/couchbase/query_result.hxx +102 -0
- data/ext/couchbase/couchbase/query_scan_consistency.hxx +25 -2
- data/ext/couchbase/couchbase/query_status.hxx +42 -0
- data/ext/couchbase/couchbase/query_warning.hxx +115 -0
- data/ext/couchbase/couchbase/remove_options.hxx +123 -0
- data/ext/couchbase/couchbase/replace_options.hxx +184 -0
- data/ext/couchbase/couchbase/replicate_to.hxx +55 -0
- data/ext/couchbase/couchbase/result.hxx +66 -0
- data/ext/couchbase/couchbase/retry_action.hxx +41 -0
- data/ext/couchbase/couchbase/retry_reason.hxx +107 -0
- data/ext/couchbase/couchbase/retry_request.hxx +39 -0
- data/ext/couchbase/couchbase/retry_strategy.hxx +35 -0
- data/ext/couchbase/couchbase/scope.hxx +149 -0
- data/ext/couchbase/couchbase/security_options.hxx +68 -0
- data/ext/couchbase/couchbase/store_semantics.hxx +63 -0
- data/ext/couchbase/couchbase/subdoc/array_add_unique.hxx +105 -0
- data/ext/couchbase/couchbase/subdoc/array_append.hxx +89 -0
- data/ext/couchbase/couchbase/subdoc/array_insert.hxx +90 -0
- data/ext/couchbase/couchbase/subdoc/array_prepend.hxx +90 -0
- data/ext/couchbase/couchbase/subdoc/count.hxx +70 -0
- data/ext/couchbase/couchbase/subdoc/counter.hxx +88 -0
- data/ext/couchbase/couchbase/subdoc/exists.hxx +70 -0
- data/ext/couchbase/couchbase/subdoc/fwd/command.hxx +25 -0
- data/ext/couchbase/couchbase/subdoc/fwd/command_bundle.hxx +25 -0
- data/ext/couchbase/couchbase/subdoc/get.hxx +78 -0
- data/ext/couchbase/couchbase/subdoc/insert.hxx +105 -0
- data/ext/couchbase/couchbase/subdoc/lookup_in_macro.hxx +66 -0
- data/ext/couchbase/couchbase/subdoc/mutate_in_macro.hxx +54 -0
- data/ext/couchbase/couchbase/subdoc/remove.hxx +70 -0
- data/ext/couchbase/couchbase/subdoc/replace.hxx +89 -0
- data/ext/couchbase/couchbase/subdoc/upsert.hxx +105 -0
- data/ext/couchbase/couchbase/subdocument_error_context.hxx +144 -0
- data/ext/couchbase/couchbase/timeout_options.hxx +141 -0
- data/ext/couchbase/couchbase/tls_verify_mode.hxx +26 -0
- data/ext/couchbase/couchbase/touch_options.hxx +94 -0
- data/ext/couchbase/couchbase/tracing/otel_tracer.hxx +85 -0
- data/ext/couchbase/couchbase/tracing/request_tracer.hxx +17 -2
- data/ext/couchbase/couchbase/tracing_options.hxx +174 -0
- data/ext/couchbase/couchbase/transaction_error_context.hxx +49 -0
- data/ext/couchbase/couchbase/transaction_op_error_context.hxx +76 -0
- data/ext/couchbase/couchbase/transactions/async_attempt_context.hxx +78 -0
- data/ext/couchbase/couchbase/transactions/attempt_context.hxx +79 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_result.hxx +133 -0
- data/ext/couchbase/couchbase/transactions/transaction_keyspace.hxx +101 -0
- data/ext/couchbase/couchbase/transactions/transaction_options.hxx +115 -0
- data/ext/couchbase/couchbase/transactions/transaction_query_options.hxx +159 -0
- data/ext/couchbase/couchbase/transactions/transaction_query_result.hxx +36 -0
- data/ext/couchbase/couchbase/transactions/transaction_result.hxx +34 -0
- data/ext/couchbase/couchbase/transactions/transactions_cleanup_config.hxx +140 -0
- data/ext/couchbase/couchbase/transactions/transactions_config.hxx +255 -0
- data/ext/couchbase/couchbase/transactions/transactions_query_config.hxx +61 -0
- data/ext/couchbase/couchbase/transactions.hxx +43 -0
- data/ext/couchbase/couchbase/unlock_options.hxx +97 -0
- data/ext/couchbase/couchbase/upsert_options.hxx +158 -0
- data/ext/couchbase/couchbase/wan_development_configuration_profile.hxx +44 -0
- data/ext/couchbase/couchbase/watch_query_indexes_options.hxx +115 -0
- data/ext/couchbase/test/CMakeLists.txt +19 -0
- data/ext/couchbase/test/another_simple_object.hxx +50 -0
- data/ext/couchbase/test/benchmark_integration_get.cxx +5 -6
- data/ext/couchbase/test/profile.hxx +62 -0
- data/ext/couchbase/test/simple_object.hxx +53 -0
- data/ext/couchbase/test/test_helper.hxx +8 -0
- data/ext/couchbase/test/test_helper_integration.hxx +1 -1
- data/ext/couchbase/test/test_integration_analytics.cxx +261 -0
- data/ext/couchbase/test/test_integration_arithmetic.cxx +119 -20
- data/ext/couchbase/test/test_integration_binary_operations.cxx +26 -39
- data/ext/couchbase/test/test_integration_collections.cxx +43 -45
- data/ext/couchbase/test/test_integration_connect.cxx +35 -25
- data/ext/couchbase/test/test_integration_crud.cxx +403 -187
- data/ext/couchbase/test/test_integration_diagnostics.cxx +119 -48
- data/ext/couchbase/test/test_integration_durability.cxx +171 -26
- data/ext/couchbase/test/test_integration_management.cxx +1474 -849
- data/ext/couchbase/test/test_integration_meter.cxx +182 -0
- data/ext/couchbase/test/test_integration_query.cxx +266 -86
- data/ext/couchbase/test/test_integration_range_scan.cxx +1067 -0
- data/ext/couchbase/test/test_integration_read_replica.cxx +232 -0
- data/ext/couchbase/test/test_integration_subdoc.cxx +337 -306
- data/ext/couchbase/test/test_integration_tracer.cxx +306 -0
- data/ext/couchbase/test/test_integration_transcoders.cxx +588 -0
- data/ext/couchbase/test/test_transaction_transaction_context.cxx +550 -0
- data/ext/couchbase/test/test_transaction_transaction_public_async_api.cxx +393 -0
- data/ext/couchbase/test/test_transaction_transaction_public_blocking_api.cxx +653 -0
- data/ext/couchbase/test/test_transaction_transaction_simple.cxx +899 -0
- data/ext/couchbase/test/test_transaction_transaction_simple_async.cxx +972 -0
- data/ext/couchbase/test/test_unit_config_profiles.cxx +132 -0
- data/ext/couchbase/test/test_unit_connection_string.cxx +170 -165
- data/ext/couchbase/test/test_unit_json_streaming_lexer.cxx +129 -9
- data/ext/couchbase/test/test_unit_json_transcoder.cxx +212 -0
- data/ext/couchbase/test/test_unit_jsonsl.cxx +1 -1
- data/ext/couchbase/test/test_unit_options.cxx +57 -0
- data/ext/couchbase/test/test_unit_transaction_logging.cxx +130 -0
- data/ext/couchbase/test/test_unit_transaction_utils.cxx +261 -0
- data/ext/couchbase/test/test_unit_utils.cxx +166 -29
- data/ext/couchbase/test/test_unit_waitable_op_list.cxx +132 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/any_io_executor.hpp +4 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/append.hpp +78 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/as_tuple.hpp +139 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/associated_allocator.hpp +4 -4
- data/ext/couchbase/third_party/asio/asio/include/asio/associated_cancellation_slot.hpp +4 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/associated_executor.hpp +4 -4
- data/ext/couchbase/third_party/asio/asio/include/asio/associator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/async_result.hpp +357 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/awaitable.hpp +10 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_datagram_socket.hpp +208 -115
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_deadline_timer.hpp +28 -16
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_file.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_io_object.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_random_access_file.hpp +51 -27
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_raw_socket.hpp +210 -117
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_readable_pipe.hpp +127 -15
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_seq_packet_socket.hpp +84 -47
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_serial_port.hpp +120 -27
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_signal_set.hpp +36 -14
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_socket.hpp +50 -26
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_socket_acceptor.hpp +295 -150
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_socket_iostream.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_socket_streambuf.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_stream_file.hpp +51 -27
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_stream_socket.hpp +153 -84
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_streambuf.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_streambuf_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_waitable_timer.hpp +28 -16
- data/ext/couchbase/third_party/asio/asio/include/asio/basic_writable_pipe.hpp +127 -15
- data/ext/couchbase/third_party/asio/asio/include/asio/bind_allocator.hpp +722 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/bind_cancellation_slot.hpp +11 -8
- data/ext/couchbase/third_party/asio/asio/include/asio/bind_executor.hpp +36 -20
- data/ext/couchbase/third_party/asio/asio/include/asio/buffer.hpp +222 -42
- data/ext/couchbase/third_party/asio/asio/include/asio/buffer_registration.hpp +2 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/buffered_read_stream.hpp +38 -6
- data/ext/couchbase/third_party/asio/asio/include/asio/buffered_read_stream_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/buffered_stream.hpp +34 -5
- data/ext/couchbase/third_party/asio/asio/include/asio/buffered_stream_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/buffered_write_stream.hpp +38 -6
- data/ext/couchbase/third_party/asio/asio/include/asio/buffered_write_stream_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/buffers_iterator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/cancellation_signal.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/cancellation_state.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/cancellation_type.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/co_spawn.hpp +33 -9
- data/ext/couchbase/third_party/asio/asio/include/asio/completion_condition.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/compose.hpp +682 -12
- data/ext/couchbase/third_party/asio/asio/include/asio/connect.hpp +132 -61
- data/ext/couchbase/third_party/asio/asio/include/asio/connect_pipe.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/coroutine.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/deadline_timer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/defer.hpp +128 -42
- data/ext/couchbase/third_party/asio/asio/include/asio/deferred.hpp +675 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/detached.hpp +6 -5
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/array.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/array_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/assert.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/atomic_count.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/base_from_cancellation_state.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/base_from_completion_cond.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/bind_handler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/blocking_executor_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/buffer_resize_guard.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/buffer_sequence_adapter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/buffered_stream_storage.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/bulk_executor_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/call_stack.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/chrono.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/chrono_time_traits.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/completion_handler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/concurrency_hint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/conditionally_enabled_event.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/conditionally_enabled_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/config.hpp +201 -11
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/consuming_buffers.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/cstddef.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/cstdint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/date_time_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/deadline_timer_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/dependent_type.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/descriptor_ops.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/descriptor_read_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/descriptor_write_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/dev_poll_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/epoll_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/event.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/eventfd_select_interrupter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/exception.hpp +40 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/executor_function.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/executor_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/fd_set_adapter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/functional.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/future.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/gcc_arm_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/gcc_sync_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/gcc_x86_fenced_block.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/global.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/handler_alloc_helpers.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/handler_cont_helpers.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/handler_invoke_helpers.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/handler_tracking.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/handler_type_requirements.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/handler_work.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/hash_map.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/descriptor_ops.ipp +9 -9
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/dev_poll_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/dev_poll_reactor.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/epoll_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/epoll_reactor.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/eventfd_select_interrupter.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/handler_tracking.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/io_uring_descriptor_service.ipp +4 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/io_uring_file_service.ipp +10 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/io_uring_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/io_uring_service.ipp +8 -7
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/io_uring_socket_service_base.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/kqueue_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/kqueue_reactor.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/null_event.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/posix_event.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/posix_mutex.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/posix_serial_port_service.ipp +21 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/posix_thread.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/posix_tss_ptr.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/reactive_descriptor_service.ipp +6 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/reactive_socket_service_base.ipp +3 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/resolver_service_base.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/scheduler.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/select_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/select_reactor.ipp +36 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/service_registry.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/service_registry.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/signal_set_service.ipp +28 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/socket_ops.ipp +126 -121
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/socket_select_interrupter.ipp +4 -4
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/strand_executor_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/strand_executor_service.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/strand_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/strand_service.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/thread_context.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/throw_error.ipp +13 -9
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/timer_queue_ptime.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/timer_queue_set.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_event.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_iocp_file_service.ipp +21 -7
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_iocp_handle_service.ipp +94 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_iocp_io_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_iocp_io_context.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_iocp_serial_port_service.ipp +9 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_iocp_socket_service_base.ipp +11 -11
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_mutex.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_object_handle_service.ipp +5 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_static_mutex.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_thread.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/win_tss_ptr.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/winrt_ssocket_service_base.ipp +4 -4
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/winrt_timer_scheduler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/winrt_timer_scheduler.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/impl/winsock_init.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_control.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_object_impl.hpp +11 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_descriptor_read_at_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_descriptor_read_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_descriptor_service.hpp +26 -8
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_descriptor_write_at_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_descriptor_write_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_file_service.hpp +12 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_null_buffers_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_operation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_service.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_accept_op.hpp +5 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_connect_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_recv_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_recvfrom_op.hpp +4 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_recvmsg_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_send_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_sendto_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_service.hpp +31 -13
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_socket_service_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/io_uring_wait_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/is_buffer_sequence.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/is_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/keyword_tss_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/kqueue_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/local_free_on_block_exit.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/macos_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/memory.hpp +17 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/non_const_lvalue.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/noncopyable.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_event.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_global.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_signal_blocker.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_socket_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_static_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/null_tss_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/object_pool.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/old_win_sdk_compat.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/op_queue.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/operation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/pipe_select_interrupter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/pop_options.hpp +5 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_event.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_fd_set_adapter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_global.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_serial_port_service.hpp +2 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_signal_blocker.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_static_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/posix_tss_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/push_options.hpp +11 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_descriptor_service.hpp +26 -7
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_null_buffers_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_accept_op.hpp +5 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_connect_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_recv_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_recvfrom_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_recvmsg_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_send_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_sendto_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_service.hpp +38 -12
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_socket_service_base.hpp +2 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactive_wait_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactor_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/reactor_op_queue.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/recycling_allocator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/regex_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/resolve_endpoint_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/resolve_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/resolve_query_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/resolver_service.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/resolver_service_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/scheduler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/scheduler_operation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/scheduler_task.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/scheduler_thread_info.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/scoped_lock.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/scoped_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/select_interrupter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/select_reactor.hpp +23 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/service_registry.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/signal_blocker.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/signal_handler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/signal_init.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/signal_op.hpp +5 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/signal_set_service.hpp +43 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/socket_holder.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/socket_ops.hpp +37 -45
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/socket_option.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/socket_select_interrupter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/socket_types.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/solaris_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/source_location.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/static_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/std_event.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/std_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/std_global.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/std_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/std_static_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/std_thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/strand_executor_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/strand_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/string_view.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/thread_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/thread_group.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/thread_info_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/throw_error.hpp +18 -9
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/throw_exception.hpp +7 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/timer_queue.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/timer_queue_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/timer_queue_ptime.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/timer_queue_set.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/timer_scheduler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/timer_scheduler_fwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/tss_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/type_traits.hpp +9 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/utility.hpp +84 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/variadic_templates.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/wait_handler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/wait_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_event.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_fd_set_adapter.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_fenced_block.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_global.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_file_service.hpp +8 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_handle_read_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_handle_service.hpp +29 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_handle_write_op.hpp +6 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_io_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_null_buffers_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_operation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_overlapped_op.hpp +6 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_overlapped_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_serial_port_service.hpp +2 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_accept_op.hpp +5 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_connect_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_recv_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_recvfrom_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_recvmsg_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_send_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_service.hpp +32 -8
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_socket_service_base.hpp +6 -8
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_thread_info.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_iocp_wait_op.hpp +3 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_object_handle_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_static_mutex.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/win_tss_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winapp_thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/wince_thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_async_manager.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_async_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_resolve_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_resolver_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_socket_connect_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_socket_recv_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_socket_send_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_ssocket_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_ssocket_service_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_timer_scheduler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winrt_utils.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/winsock_init.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/work_dispatcher.hpp +4 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/detail/wrapped_handler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/dispatch.hpp +126 -42
- data/ext/couchbase/third_party/asio/asio/include/asio/error.hpp +36 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/error_code.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/allocator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/any_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/bad_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/blocking.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/blocking_adaptation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/bulk_execute.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/bulk_guarantee.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/connect.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/context_as.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/detail/as_invocable.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/detail/as_operation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/detail/as_receiver.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/detail/bulk_sender.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/detail/submit_receiver.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/detail/void_receiver.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/execute.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/impl/bad_executor.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/impl/receiver_invocation_error.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/invocable_archetype.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/mapping.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/occupancy.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/operation_state.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/outstanding_work.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/prefer_only.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/receiver.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/receiver_invocation_error.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/relationship.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/schedule.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/scheduler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/sender.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/set_done.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/set_error.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/set_value.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/start.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution/submit.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/execution_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/executor_work_guard.hpp +100 -32
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/append.hpp +6 -41
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/as_single.hpp +6 -5
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/as_tuple.hpp +6 -101
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/awaitable_operators.hpp +14 -14
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/basic_channel.hpp +78 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/basic_concurrent_channel.hpp +69 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/cancellation_condition.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/channel.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/channel_error.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/channel_traits.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/co_spawn.hpp +12 -16
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/concurrent_channel.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/coro.hpp +4 -4
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/coro_traits.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/deferred.hpp +6 -575
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_handler.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_message.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_operation.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_payload.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_receive_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_send_functions.hpp +2 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_send_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/channel_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/completion_handler_erasure.hpp +82 -46
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/coro_promise_allocator.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/has_signature.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/impl/channel_service.hpp +6 -8
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/detail/partial_promise.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/as_single.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/channel_error.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/coro.hpp +47 -56
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/parallel_group.hpp +14 -28
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/promise.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/use_coro.hpp +3 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/parallel_group.hpp +27 -37
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/prepend.hpp +6 -41
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/promise.hpp +23 -405
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/use_coro.hpp +5 -5
- data/ext/couchbase/third_party/asio/asio/include/asio/file_base.hpp +9 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/basic_endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/datagram_protocol.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/detail/endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/detail/impl/endpoint.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/raw_protocol.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/seq_packet_protocol.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/generic/stream_protocol.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/handler_alloc_hook.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/handler_continuation_hook.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/handler_invoke_hook.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/high_resolution_timer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/any_io_executor.ipp +6 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/append.hpp +216 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/as_tuple.hpp +244 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/awaitable.hpp +400 -5
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/buffered_read_stream.hpp +13 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/buffered_write_stream.hpp +13 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/cancellation_signal.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/co_spawn.hpp +71 -7
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/connect.hpp +63 -31
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/connect_pipe.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/connect_pipe.ipp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/defer.hpp +23 -13
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/deferred.hpp +95 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/detached.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/dispatch.hpp +23 -13
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/error.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/error_code.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/execution_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/execution_context.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/executor.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/handler_alloc_hook.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/io_context.hpp +9 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/io_context.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/multiple_exceptions.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/post.hpp +23 -13
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/prepend.hpp +216 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/read.hpp +97 -51
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/read_at.hpp +51 -31
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/read_until.hpp +119 -59
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/redirect_error.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/serial_port_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/serial_port_base.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/spawn.hpp +1321 -277
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/src.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/system_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/system_context.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/system_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/thread_pool.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/thread_pool.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/use_awaitable.hpp +18 -8
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/use_future.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/write.hpp +95 -50
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/write_at.hpp +53 -31
- data/ext/couchbase/third_party/asio/asio/include/asio/io_context.hpp +25 -38
- data/ext/couchbase/third_party/asio/asio/include/asio/io_context_strand.hpp +15 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/io_service.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/io_service_strand.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address_v4.hpp +75 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address_v4_iterator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address_v4_range.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address_v6.hpp +35 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address_v6_iterator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/address_v6_range.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/bad_address_cast.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/basic_endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/basic_resolver.hpp +130 -64
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/basic_resolver_entry.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/basic_resolver_iterator.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/basic_resolver_query.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/basic_resolver_results.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/detail/endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/detail/impl/endpoint.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/detail/socket_option.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/host_name.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/icmp.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/address.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/address.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/address_v4.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/address_v4.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/address_v6.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/address_v6.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/basic_endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/host_name.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/network_v4.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/network_v4.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/network_v6.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/impl/network_v6.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/multicast.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/network_v4.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/network_v6.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/resolver_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/resolver_query_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/tcp.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/udp.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/unicast.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ip/v6_only.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/is_applicable_property.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/is_contiguous_iterator.hpp +45 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/is_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/is_read_buffered.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/is_write_buffered.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/local/basic_endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/local/connect_pair.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/local/datagram_protocol.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/local/detail/endpoint.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/local/detail/impl/endpoint.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/local/stream_protocol.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/multiple_exceptions.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/packaged_task.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/placeholders.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/posix/basic_descriptor.hpp +74 -13
- data/ext/couchbase/third_party/asio/asio/include/asio/posix/basic_stream_descriptor.hpp +95 -27
- data/ext/couchbase/third_party/asio/asio/include/asio/posix/descriptor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/posix/descriptor_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/posix/stream_descriptor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/post.hpp +128 -42
- data/ext/couchbase/third_party/asio/asio/include/asio/prefer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/prepend.hpp +78 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/query.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/random_access_file.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/read.hpp +245 -153
- data/ext/couchbase/third_party/asio/asio/include/asio/read_at.hpp +110 -53
- data/ext/couchbase/third_party/asio/asio/include/asio/read_until.hpp +301 -166
- data/ext/couchbase/third_party/asio/asio/include/asio/readable_pipe.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/recycling_allocator.hpp +138 -0
- data/ext/couchbase/third_party/asio/asio/include/asio/redirect_error.hpp +3 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/registered_buffer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/require.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/require_concept.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/serial_port.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/serial_port_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/signal_set.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/socket_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/spawn.hpp +647 -87
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/context.hpp +4 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/context_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/engine.hpp +4 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/handshake_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/impl/engine.ipp +19 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/impl/openssl_init.ipp +7 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/io.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/openssl_init.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/openssl_types.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/password_callback.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/read_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/shutdown_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/stream_core.hpp +16 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/verify_callback.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/detail/write_op.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/error.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/host_name_verification.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/impl/context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/impl/context.ipp +140 -64
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/impl/error.ipp +25 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/impl/host_name_verification.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/impl/rfc2818_verification.ipp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/impl/src.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/rfc2818_verification.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/stream.hpp +154 -53
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/stream_base.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/verify_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl/verify_mode.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ssl.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/static_thread_pool.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/steady_timer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/strand.hpp +12 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/stream_file.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/streambuf.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/system_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/system_error.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/system_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/system_timer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/this_coro.hpp +4 -4
- data/ext/couchbase/third_party/asio/asio/include/asio/thread.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/thread_pool.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/time_traits.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/bulk_execute_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/bulk_execute_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/connect_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/connect_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/equality_comparable.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/execute_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/execute_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/prefer_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/prefer_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/query_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/query_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/query_static_constexpr_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/require_concept_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/require_concept_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/require_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/require_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/schedule_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/schedule_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/set_done_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/set_done_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/set_error_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/set_error_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/set_value_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/set_value_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/start_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/start_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/static_query.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/static_require.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/static_require_concept.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/submit_free.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/traits/submit_member.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/buffer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/internet.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/io_context.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/net.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/netfwd.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/socket.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/ts/timer.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/unyield.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/use_awaitable.hpp +4 -3
- data/ext/couchbase/third_party/asio/asio/include/asio/use_future.hpp +10 -7
- data/ext/couchbase/third_party/asio/asio/include/asio/uses_executor.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/version.hpp +2 -2
- data/ext/couchbase/third_party/asio/asio/include/asio/wait_traits.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/basic_object_handle.hpp +70 -12
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/basic_overlapped_handle.hpp +100 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/basic_random_access_handle.hpp +98 -29
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/basic_stream_handle.hpp +95 -28
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/object_handle.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/overlapped_handle.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/overlapped_ptr.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/random_access_handle.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/windows/stream_handle.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/writable_pipe.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio/write.hpp +242 -150
- data/ext/couchbase/third_party/asio/asio/include/asio/write_at.hpp +112 -53
- data/ext/couchbase/third_party/asio/asio/include/asio/yield.hpp +1 -1
- data/ext/couchbase/third_party/asio/asio/include/asio.hpp +8 -1
- data/ext/couchbase/third_party/expected/COPYING +121 -0
- data/ext/couchbase/third_party/expected/include/tl/expected.hpp +2571 -0
- data/ext/couchbase/third_party/json/CMakeLists.txt +3 -0
- data/ext/couchbase/third_party/json/external/PEGTL/LICENSE +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/apply_mode.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/argv_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/ascii.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/buffer_input.hpp +2 -2
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/change_action.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/change_action_and_state.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/change_action_and_states.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/change_control.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/change_state.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/change_states.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/config.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/abnf.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/add_state.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/alphabet.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/analyze.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/analyze_traits.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/check_bytes.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/control_action.hpp +13 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/coverage.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/forward.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/function.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/http.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/icu/internal.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/icu/utf16.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/icu/utf32.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/icu/utf8.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/if_then.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/instantiate.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/integer.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/endian.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/endian_gcc.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/endian_win.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/peek_mask_uint.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/peek_mask_uint8.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/peek_uint.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/peek_uint8.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/peek_utf16.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/peek_utf32.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/read_uint.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/set_stack_guard.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/internal/vector_stack_guard.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/iri.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/json.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/json_pointer.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/limit_bytes.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/limit_depth.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/parse_tree.hpp +17 -8
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/parse_tree_to_dot.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/peg.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/predicates.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/print.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/print_coverage.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/proto3.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/raw_string.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/remove_first_state.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/remove_last_states.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/rep_one_min_max.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/rep_string.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/separated_seq.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/shuffle_states.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/state_control.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/to_string.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/trace.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/uint16.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/uint32.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/uint64.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/uint8.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/unescape.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/uri.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/utf16.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/contrib/utf32.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/cstream_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/demangle.hpp +19 -11
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/disable_action.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/discard_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/discard_input_on_failure.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/discard_input_on_success.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/enable_action.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/eol_pair.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/file_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/action.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/action_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/any.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/apply.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/apply0.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/apply0_single.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/apply_single.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/at.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/bof.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/bol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/bump.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/bump_help.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/bytes.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/control.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/cr_crlf_eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/cr_eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/crlf_eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/cstream_reader.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/cstring_reader.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/dependent_false.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/disable.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/discard.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/enable.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/enable_control.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/eof.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/eolf.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/failure.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/file_mapper_posix.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/file_mapper_win32.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/file_reader.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/filesystem.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/has_apply.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/has_apply0.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/has_match.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/has_unwind.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/identifier.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/if_apply.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/if_must.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/if_must_else.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/if_then_else.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/input_pair.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/istream_reader.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/istring.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/iterator.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/lf_crlf_eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/lf_eol.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/list.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/list_must.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/list_tail.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/list_tail_pad.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/marker.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/minus.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/missing_apply.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/missing_apply0.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/must.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/not_at.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/one.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/opt.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/pad.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/pad_opt.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/path_to_string.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/peek_char.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/peek_utf8.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/pegtl_string.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/plus.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/raise.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/range.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/ranges.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/rematch.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/rep.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/rep_min.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/rep_min_max.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/rep_opt.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/require.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/result_on_found.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/rules.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/seq.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/sor.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/star.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/star_must.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/state.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/string.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/success.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/try_catch_type.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/until.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/istream_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/match.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/memory_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/mmap_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/must_if.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/normal.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/nothing.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/parse.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/parse_error.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/position.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/read_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/require_apply.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/require_apply0.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/rewind_mode.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/rules.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/string_input.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/tracking_mode.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/type_list.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/utf8.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/version.hpp +2 -2
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/visit.hpp +1 -1
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl.hpp +1 -1
- data/ext/couchbase/third_party/json/include/tao/json/binary_view.hpp +14 -0
- data/ext/couchbase/third_party/json/include/tao/json/contrib/from_nlohmann.hpp +67 -0
- data/ext/couchbase/third_party/json/include/tao/json/contrib/to_nlohmann.hpp +122 -0
- data/ext/couchbase/third_party/json/include/tao/json/events/capture.hpp +482 -0
- data/ext/couchbase/third_party/json/include/tao/json/events/from_value.hpp +3 -3
- data/ext/couchbase/third_party/json/include/tao/json/events/produce.hpp +3 -95
- data/ext/couchbase/third_party/json/include/tao/json/events/set_value.hpp +142 -0
- data/ext/couchbase/third_party/json/include/tao/json/events/to_value.hpp +5 -112
- data/ext/couchbase/third_party/json/include/tao/json/events/virtualize.hpp +27 -0
- data/ext/couchbase/third_party/json/include/tao/json/events.hpp +3 -0
- data/ext/couchbase/third_party/json/include/tao/json/traits.hpp +1 -1
- data/ext/couchbase.cxx +2391 -1597
- data/ext/extconf.rb +2 -0
- data/ext/revisions.rb +2 -2
- data/lib/couchbase/bucket.rb +2 -2
- data/lib/couchbase/cluster.rb +12 -6
- data/lib/couchbase/cluster_registry.rb +44 -0
- data/lib/couchbase/collection.rb +61 -35
- data/lib/couchbase/collection_options.rb +51 -95
- data/lib/couchbase/config_profiles.rb +55 -0
- data/lib/couchbase/logger.rb +44 -1
- data/lib/couchbase/management/analytics_index_manager.rb +12 -12
- data/lib/couchbase/management/query_index_manager.rb +5 -7
- data/lib/couchbase/management/user_manager.rb +19 -0
- data/lib/couchbase/options.rb +404 -56
- data/lib/couchbase/query_options.rb +4 -4
- data/lib/couchbase/scope.rb +3 -3
- data/lib/couchbase/search_options.rb +7 -8
- data/lib/couchbase/utils/generic_logger_adapter.rb +38 -0
- data/lib/couchbase/utils/stdlib_logger_adapter.rb +65 -0
- data/lib/couchbase/utils/time.rb +6 -6
- data/lib/couchbase/version.rb +4 -18
- metadata +880 -464
- data/ext/couchbase/couchbase/analytics_scan_consistency.hxx +0 -26
- data/ext/couchbase/couchbase/capella_ca.hxx +0 -43
- data/ext/couchbase/couchbase/cas_fmt.hxx +0 -37
- data/ext/couchbase/couchbase/cluster.cxx +0 -111
- data/ext/couchbase/couchbase/cluster_options.cxx +0 -45
- data/ext/couchbase/couchbase/crypto/CMakeLists.txt +0 -12
- data/ext/couchbase/couchbase/crypto/cbcrypto.cc +0 -887
- data/ext/couchbase/couchbase/crypto/cbcrypto.h +0 -88
- data/ext/couchbase/couchbase/design_document_namespace.hxx +0 -26
- data/ext/couchbase/couchbase/design_document_namespace_fmt.hxx +0 -47
- data/ext/couchbase/couchbase/diagnostics.hxx +0 -97
- data/ext/couchbase/couchbase/diagnostics_fmt.hxx +0 -113
- data/ext/couchbase/couchbase/diagnostics_json.hxx +0 -100
- data/ext/couchbase/couchbase/document_id.cxx +0 -89
- data/ext/couchbase/couchbase/document_id.hxx +0 -102
- data/ext/couchbase/couchbase/document_id_fmt.hxx +0 -37
- data/ext/couchbase/couchbase/error_context/analytics.hxx +0 -51
- data/ext/couchbase/couchbase/error_context/http.hxx +0 -47
- data/ext/couchbase/couchbase/error_context/key_value.hxx +0 -50
- data/ext/couchbase/couchbase/error_context/query.hxx +0 -51
- data/ext/couchbase/couchbase/error_context/search.hxx +0 -50
- data/ext/couchbase/couchbase/error_context/view.hxx +0 -51
- data/ext/couchbase/couchbase/errors.hxx +0 -1038
- data/ext/couchbase/couchbase/io/CMakeLists.txt +0 -12
- data/ext/couchbase/couchbase/io/dns_client.hxx +0 -217
- data/ext/couchbase/couchbase/io/dns_codec.hxx +0 -206
- data/ext/couchbase/couchbase/io/dns_config.hxx +0 -115
- data/ext/couchbase/couchbase/io/dns_message.hxx +0 -555
- data/ext/couchbase/couchbase/io/http_command.hxx +0 -174
- data/ext/couchbase/couchbase/io/http_context.hxx +0 -40
- data/ext/couchbase/couchbase/io/http_message.hxx +0 -116
- data/ext/couchbase/couchbase/io/http_parser.cxx +0 -141
- data/ext/couchbase/couchbase/io/http_parser.hxx +0 -55
- data/ext/couchbase/couchbase/io/http_session.hxx +0 -544
- data/ext/couchbase/couchbase/io/http_session_manager.hxx +0 -377
- data/ext/couchbase/couchbase/io/http_traits.hxx +0 -30
- data/ext/couchbase/couchbase/io/ip_protocol.hxx +0 -28
- data/ext/couchbase/couchbase/io/mcbp_command.hxx +0 -300
- data/ext/couchbase/couchbase/io/mcbp_context.hxx +0 -39
- data/ext/couchbase/couchbase/io/mcbp_message.cxx +0 -39
- data/ext/couchbase/couchbase/io/mcbp_message.hxx +0 -55
- data/ext/couchbase/couchbase/io/mcbp_parser.cxx +0 -86
- data/ext/couchbase/couchbase/io/mcbp_parser.hxx +0 -45
- data/ext/couchbase/couchbase/io/mcbp_session.hxx +0 -1317
- data/ext/couchbase/couchbase/io/mcbp_traits.hxx +0 -30
- data/ext/couchbase/couchbase/io/query_cache.hxx +0 -61
- data/ext/couchbase/couchbase/io/retry_action.hxx +0 -30
- data/ext/couchbase/couchbase/io/retry_context.hxx +0 -38
- data/ext/couchbase/couchbase/io/retry_orchestrator.hxx +0 -112
- data/ext/couchbase/couchbase/io/retry_reason.hxx +0 -158
- data/ext/couchbase/couchbase/io/retry_reason_fmt.hxx +0 -103
- data/ext/couchbase/couchbase/io/retry_strategy.hxx +0 -152
- data/ext/couchbase/couchbase/io/streams.hxx +0 -253
- data/ext/couchbase/couchbase/json_string.hxx +0 -48
- data/ext/couchbase/couchbase/logger/CMakeLists.txt +0 -9
- data/ext/couchbase/couchbase/logger/configuration.hxx +0 -52
- data/ext/couchbase/couchbase/logger/custom_rotating_file_sink.cxx +0 -157
- data/ext/couchbase/couchbase/logger/logger.cxx +0 -337
- data/ext/couchbase/couchbase/logger/logger.hxx +0 -235
- data/ext/couchbase/couchbase/management/CMakeLists.txt +0 -13
- data/ext/couchbase/couchbase/management/analytics_dataset.hxx +0 -30
- data/ext/couchbase/couchbase/management/analytics_index.hxx +0 -30
- data/ext/couchbase/couchbase/management/analytics_link.hxx +0 -22
- data/ext/couchbase/couchbase/management/analytics_link_azure_blob_external.cxx +0 -67
- data/ext/couchbase/couchbase/management/analytics_link_azure_blob_external.hxx +0 -76
- data/ext/couchbase/couchbase/management/analytics_link_azure_blob_external_json.hxx +0 -52
- data/ext/couchbase/couchbase/management/analytics_link_couchbase_remote.cxx +0 -104
- data/ext/couchbase/couchbase/management/analytics_link_couchbase_remote.hxx +0 -107
- data/ext/couchbase/couchbase/management/analytics_link_couchbase_remote_json.hxx +0 -63
- data/ext/couchbase/couchbase/management/analytics_link_s3_external.cxx +0 -57
- data/ext/couchbase/couchbase/management/analytics_link_s3_external.hxx +0 -69
- data/ext/couchbase/couchbase/management/analytics_link_s3_external_json.hxx +0 -47
- data/ext/couchbase/couchbase/management/bucket_settings.hxx +0 -134
- data/ext/couchbase/couchbase/management/bucket_settings_json.hxx +0 -123
- data/ext/couchbase/couchbase/management/design_document.hxx +0 -41
- data/ext/couchbase/couchbase/management/eventing_function.hxx +0 -188
- data/ext/couchbase/couchbase/management/eventing_function_json.hxx +0 -212
- data/ext/couchbase/couchbase/management/eventing_status.hxx +0 -84
- data/ext/couchbase/couchbase/management/eventing_status_json.hxx +0 -77
- data/ext/couchbase/couchbase/management/rbac.hxx +0 -77
- data/ext/couchbase/couchbase/management/rbac_fmt.hxx +0 -49
- data/ext/couchbase/couchbase/management/rbac_json.hxx +0 -179
- data/ext/couchbase/couchbase/management/search_index.hxx +0 -38
- data/ext/couchbase/couchbase/management/search_index_json.hxx +0 -58
- data/ext/couchbase/couchbase/meta/CMakeLists.txt +0 -15
- data/ext/couchbase/couchbase/meta/version.cxx +0 -181
- data/ext/couchbase/couchbase/meta/version.hxx +0 -45
- data/ext/couchbase/couchbase/metrics/CMakeLists.txt +0 -11
- data/ext/couchbase/couchbase/metrics/logging_meter.cxx +0 -194
- data/ext/couchbase/couchbase/metrics/logging_meter.hxx +0 -74
- data/ext/couchbase/couchbase/metrics/logging_meter_options.hxx +0 -28
- data/ext/couchbase/couchbase/metrics/noop_meter.hxx +0 -47
- data/ext/couchbase/couchbase/mutation_token_fmt.hxx +0 -37
- data/ext/couchbase/couchbase/operations/CMakeLists.txt +0 -35
- data/ext/couchbase/couchbase/operations/document_analytics.cxx +0 -195
- data/ext/couchbase/couchbase/operations/document_analytics.hxx +0 -92
- data/ext/couchbase/couchbase/operations/document_append.cxx +0 -46
- data/ext/couchbase/couchbase/operations/document_append.hxx +0 -63
- data/ext/couchbase/couchbase/operations/document_decrement.cxx +0 -57
- data/ext/couchbase/couchbase/operations/document_decrement.hxx +0 -67
- data/ext/couchbase/couchbase/operations/document_exists.cxx +0 -49
- data/ext/couchbase/couchbase/operations/document_exists.hxx +0 -61
- data/ext/couchbase/couchbase/operations/document_get.cxx +0 -44
- data/ext/couchbase/couchbase/operations/document_get.hxx +0 -53
- data/ext/couchbase/couchbase/operations/document_get_and_lock.cxx +0 -45
- data/ext/couchbase/couchbase/operations/document_get_and_lock.hxx +0 -54
- data/ext/couchbase/couchbase/operations/document_get_and_touch.cxx +0 -45
- data/ext/couchbase/couchbase/operations/document_get_and_touch.hxx +0 -54
- data/ext/couchbase/couchbase/operations/document_get_projected.cxx +0 -227
- data/ext/couchbase/couchbase/operations/document_get_projected.hxx +0 -58
- data/ext/couchbase/couchbase/operations/document_increment.cxx +0 -57
- data/ext/couchbase/couchbase/operations/document_increment.hxx +0 -67
- data/ext/couchbase/couchbase/operations/document_insert.cxx +0 -48
- data/ext/couchbase/couchbase/operations/document_insert.hxx +0 -65
- data/ext/couchbase/couchbase/operations/document_lookup_in.cxx +0 -81
- data/ext/couchbase/couchbase/operations/document_lookup_in.hxx +0 -64
- data/ext/couchbase/couchbase/operations/document_mutate_in.cxx +0 -104
- data/ext/couchbase/couchbase/operations/document_mutate_in.hxx +0 -82
- data/ext/couchbase/couchbase/operations/document_prepend.cxx +0 -46
- data/ext/couchbase/couchbase/operations/document_prepend.hxx +0 -63
- data/ext/couchbase/couchbase/operations/document_query.cxx +0 -370
- data/ext/couchbase/couchbase/operations/document_query.hxx +0 -123
- data/ext/couchbase/couchbase/operations/document_remove.cxx +0 -46
- data/ext/couchbase/couchbase/operations/document_remove.hxx +0 -63
- data/ext/couchbase/couchbase/operations/document_replace.cxx +0 -52
- data/ext/couchbase/couchbase/operations/document_replace.hxx +0 -67
- data/ext/couchbase/couchbase/operations/document_search.cxx +0 -311
- data/ext/couchbase/couchbase/operations/document_search.hxx +0 -153
- data/ext/couchbase/couchbase/operations/document_touch.cxx +0 -43
- data/ext/couchbase/couchbase/operations/document_touch.hxx +0 -52
- data/ext/couchbase/couchbase/operations/document_unlock.cxx +0 -43
- data/ext/couchbase/couchbase/operations/document_unlock.hxx +0 -52
- data/ext/couchbase/couchbase/operations/document_upsert.cxx +0 -52
- data/ext/couchbase/couchbase/operations/document_upsert.hxx +0 -66
- data/ext/couchbase/couchbase/operations/document_view.cxx +0 -183
- data/ext/couchbase/couchbase/operations/document_view.hxx +0 -97
- data/ext/couchbase/couchbase/operations/http_noop.cxx +0 -60
- data/ext/couchbase/couchbase/operations/http_noop.hxx +0 -48
- data/ext/couchbase/couchbase/operations/management/CMakeLists.txt +0 -79
- data/ext/couchbase/couchbase/operations/management/analytics.hxx +0 -34
- data/ext/couchbase/couchbase/operations/management/analytics_dataset_create.cxx +0 -94
- data/ext/couchbase/couchbase/operations/management/analytics_dataset_create.hxx +0 -57
- data/ext/couchbase/couchbase/operations/management/analytics_dataset_drop.cxx +0 -83
- data/ext/couchbase/couchbase/operations/management/analytics_dataset_drop.hxx +0 -54
- data/ext/couchbase/couchbase/operations/management/analytics_dataset_get_all.cxx +0 -80
- data/ext/couchbase/couchbase/operations/management/analytics_dataset_get_all.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/analytics_dataverse_create.cxx +0 -82
- data/ext/couchbase/couchbase/operations/management/analytics_dataverse_create.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/analytics_dataverse_drop.cxx +0 -82
- data/ext/couchbase/couchbase/operations/management/analytics_dataverse_drop.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/analytics_get_pending_mutations.cxx +0 -70
- data/ext/couchbase/couchbase/operations/management/analytics_get_pending_mutations.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/analytics_index_create.cxx +0 -106
- data/ext/couchbase/couchbase/operations/management/analytics_index_create.hxx +0 -56
- data/ext/couchbase/couchbase/operations/management/analytics_index_drop.cxx +0 -90
- data/ext/couchbase/couchbase/operations/management/analytics_index_drop.hxx +0 -55
- data/ext/couchbase/couchbase/operations/management/analytics_index_get_all.cxx +0 -80
- data/ext/couchbase/couchbase/operations/management/analytics_index_get_all.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/analytics_link_connect.cxx +0 -82
- data/ext/couchbase/couchbase/operations/management/analytics_link_connect.hxx +0 -57
- data/ext/couchbase/couchbase/operations/management/analytics_link_create.cxx +0 -87
- data/ext/couchbase/couchbase/operations/management/analytics_link_create.hxx +0 -77
- data/ext/couchbase/couchbase/operations/management/analytics_link_disconnect.cxx +0 -80
- data/ext/couchbase/couchbase/operations/management/analytics_link_disconnect.hxx +0 -56
- data/ext/couchbase/couchbase/operations/management/analytics_link_drop.cxx +0 -103
- data/ext/couchbase/couchbase/operations/management/analytics_link_drop.hxx +0 -56
- data/ext/couchbase/couchbase/operations/management/analytics_link_get_all.cxx +0 -130
- data/ext/couchbase/couchbase/operations/management/analytics_link_get_all.hxx +0 -63
- data/ext/couchbase/couchbase/operations/management/analytics_link_replace.cxx +0 -87
- data/ext/couchbase/couchbase/operations/management/analytics_link_replace.hxx +0 -78
- data/ext/couchbase/couchbase/operations/management/analytics_link_utils.hxx +0 -37
- data/ext/couchbase/couchbase/operations/management/analytics_problem.hxx +0 -30
- data/ext/couchbase/couchbase/operations/management/bucket.hxx +0 -25
- data/ext/couchbase/couchbase/operations/management/bucket_create.cxx +0 -171
- data/ext/couchbase/couchbase/operations/management/bucket_create.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/bucket_describe.cxx +0 -67
- data/ext/couchbase/couchbase/operations/management/bucket_describe.hxx +0 -61
- data/ext/couchbase/couchbase/operations/management/bucket_drop.cxx +0 -52
- data/ext/couchbase/couchbase/operations/management/bucket_drop.hxx +0 -49
- data/ext/couchbase/couchbase/operations/management/bucket_flush.cxx +0 -59
- data/ext/couchbase/couchbase/operations/management/bucket_flush.hxx +0 -49
- data/ext/couchbase/couchbase/operations/management/bucket_get.cxx +0 -59
- data/ext/couchbase/couchbase/operations/management/bucket_get.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/bucket_get_all.cxx +0 -59
- data/ext/couchbase/couchbase/operations/management/bucket_get_all.hxx +0 -49
- data/ext/couchbase/couchbase/operations/management/bucket_update.cxx +0 -130
- data/ext/couchbase/couchbase/operations/management/bucket_update.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/cluster_describe.cxx +0 -90
- data/ext/couchbase/couchbase/operations/management/cluster_describe.hxx +0 -72
- data/ext/couchbase/couchbase/operations/management/cluster_developer_preview_enable.cxx +0 -44
- data/ext/couchbase/couchbase/operations/management/cluster_developer_preview_enable.hxx +0 -48
- data/ext/couchbase/couchbase/operations/management/collection_create.cxx +0 -83
- data/ext/couchbase/couchbase/operations/management/collection_create.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/collection_drop.cxx +0 -73
- data/ext/couchbase/couchbase/operations/management/collection_drop.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/collections.hxx +0 -25
- data/ext/couchbase/couchbase/operations/management/collections_manifest_get.cxx +0 -40
- data/ext/couchbase/couchbase/operations/management/collections_manifest_get.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/error_utils.cxx +0 -265
- data/ext/couchbase/couchbase/operations/management/error_utils.hxx +0 -48
- data/ext/couchbase/couchbase/operations/management/eventing.hxx +0 -28
- data/ext/couchbase/couchbase/operations/management/eventing_deploy_function.cxx +0 -56
- data/ext/couchbase/couchbase/operations/management/eventing_deploy_function.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/eventing_drop_function.cxx +0 -57
- data/ext/couchbase/couchbase/operations/management/eventing_drop_function.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/eventing_get_all_functions.cxx +0 -64
- data/ext/couchbase/couchbase/operations/management/eventing_get_all_functions.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/eventing_get_function.cxx +0 -56
- data/ext/couchbase/couchbase/operations/management/eventing_get_function.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/eventing_get_status.cxx +0 -56
- data/ext/couchbase/couchbase/operations/management/eventing_get_status.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/eventing_pause_function.cxx +0 -56
- data/ext/couchbase/couchbase/operations/management/eventing_pause_function.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/eventing_problem.hxx +0 -31
- data/ext/couchbase/couchbase/operations/management/eventing_resume_function.cxx +0 -56
- data/ext/couchbase/couchbase/operations/management/eventing_resume_function.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/eventing_undeploy_function.cxx +0 -56
- data/ext/couchbase/couchbase/operations/management/eventing_undeploy_function.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/eventing_upsert_function.cxx +0 -341
- data/ext/couchbase/couchbase/operations/management/eventing_upsert_function.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/freeform.cxx +0 -55
- data/ext/couchbase/couchbase/operations/management/freeform.hxx +0 -55
- data/ext/couchbase/couchbase/operations/management/group_drop.cxx +0 -51
- data/ext/couchbase/couchbase/operations/management/group_drop.hxx +0 -49
- data/ext/couchbase/couchbase/operations/management/group_get.cxx +0 -60
- data/ext/couchbase/couchbase/operations/management/group_get.hxx +0 -50
- data/ext/couchbase/couchbase/operations/management/group_get_all.cxx +0 -58
- data/ext/couchbase/couchbase/operations/management/group_get_all.hxx +0 -49
- data/ext/couchbase/couchbase/operations/management/group_upsert.cxx +0 -96
- data/ext/couchbase/couchbase/operations/management/group_upsert.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/query.hxx +0 -23
- data/ext/couchbase/couchbase/operations/management/query_index_build_deferred.cxx +0 -88
- data/ext/couchbase/couchbase/operations/management/query_index_build_deferred.hxx +0 -61
- data/ext/couchbase/couchbase/operations/management/query_index_create.cxx +0 -149
- data/ext/couchbase/couchbase/operations/management/query_index_create.hxx +0 -65
- data/ext/couchbase/couchbase/operations/management/query_index_drop.cxx +0 -128
- data/ext/couchbase/couchbase/operations/management/query_index_drop.hxx +0 -61
- data/ext/couchbase/couchbase/operations/management/query_index_get_all.cxx +0 -126
- data/ext/couchbase/couchbase/operations/management/query_index_get_all.hxx +0 -54
- data/ext/couchbase/couchbase/operations/management/role_get_all.cxx +0 -58
- data/ext/couchbase/couchbase/operations/management/role_get_all.hxx +0 -49
- data/ext/couchbase/couchbase/operations/management/scope_create.cxx +0 -75
- data/ext/couchbase/couchbase/operations/management/scope_create.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/scope_drop.cxx +0 -70
- data/ext/couchbase/couchbase/operations/management/scope_drop.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/scope_get_all.cxx +0 -62
- data/ext/couchbase/couchbase/operations/management/scope_get_all.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/search.hxx +0 -30
- data/ext/couchbase/couchbase/operations/management/search_get_stats.cxx +0 -41
- data/ext/couchbase/couchbase/operations/management/search_get_stats.hxx +0 -48
- data/ext/couchbase/couchbase/operations/management/search_index_analyze_document.cxx +0 -85
- data/ext/couchbase/couchbase/operations/management/search_index_analyze_document.hxx +0 -54
- data/ext/couchbase/couchbase/operations/management/search_index_control_ingest.cxx +0 -73
- data/ext/couchbase/couchbase/operations/management/search_index_control_ingest.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/search_index_control_plan_freeze.cxx +0 -73
- data/ext/couchbase/couchbase/operations/management/search_index_control_plan_freeze.hxx +0 -57
- data/ext/couchbase/couchbase/operations/management/search_index_control_query.cxx +0 -73
- data/ext/couchbase/couchbase/operations/management/search_index_control_query.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/search_index_drop.cxx +0 -72
- data/ext/couchbase/couchbase/operations/management/search_index_drop.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/search_index_get.cxx +0 -75
- data/ext/couchbase/couchbase/operations/management/search_index_get.hxx +0 -54
- data/ext/couchbase/couchbase/operations/management/search_index_get_all.cxx +0 -67
- data/ext/couchbase/couchbase/operations/management/search_index_get_all.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/search_index_get_documents_count.cxx +0 -79
- data/ext/couchbase/couchbase/operations/management/search_index_get_documents_count.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/search_index_get_stats.cxx +0 -71
- data/ext/couchbase/couchbase/operations/management/search_index_get_stats.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/search_index_upsert.cxx +0 -108
- data/ext/couchbase/couchbase/operations/management/search_index_upsert.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/user.hxx +0 -28
- data/ext/couchbase/couchbase/operations/management/user_drop.cxx +0 -52
- data/ext/couchbase/couchbase/operations/management/user_drop.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/user_get.cxx +0 -61
- data/ext/couchbase/couchbase/operations/management/user_get.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/user_get_all.cxx +0 -59
- data/ext/couchbase/couchbase/operations/management/user_get_all.hxx +0 -51
- data/ext/couchbase/couchbase/operations/management/user_upsert.cxx +0 -101
- data/ext/couchbase/couchbase/operations/management/user_upsert.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/view.hxx +0 -23
- data/ext/couchbase/couchbase/operations/management/view_index_drop.cxx +0 -46
- data/ext/couchbase/couchbase/operations/management/view_index_drop.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/view_index_get.cxx +0 -74
- data/ext/couchbase/couchbase/operations/management/view_index_get.hxx +0 -53
- data/ext/couchbase/couchbase/operations/management/view_index_get_all.cxx +0 -108
- data/ext/couchbase/couchbase/operations/management/view_index_get_all.hxx +0 -52
- data/ext/couchbase/couchbase/operations/management/view_index_upsert.cxx +0 -71
- data/ext/couchbase/couchbase/operations/management/view_index_upsert.hxx +0 -51
- data/ext/couchbase/couchbase/operations/mcbp_noop.cxx +0 -38
- data/ext/couchbase/couchbase/operations/mcbp_noop.hxx +0 -49
- data/ext/couchbase/couchbase/operations.hxx +0 -42
- data/ext/couchbase/couchbase/origin.hxx +0 -185
- data/ext/couchbase/couchbase/platform/CMakeLists.txt +0 -16
- data/ext/couchbase/couchbase/platform/backtrace.c +0 -189
- data/ext/couchbase/couchbase/platform/base64.cc +0 -234
- data/ext/couchbase/couchbase/platform/base64.h +0 -44
- data/ext/couchbase/couchbase/platform/dirutils.cc +0 -123
- data/ext/couchbase/couchbase/platform/dirutils.h +0 -43
- data/ext/couchbase/couchbase/platform/random.cc +0 -120
- data/ext/couchbase/couchbase/platform/random.h +0 -39
- data/ext/couchbase/couchbase/platform/string_hex.cc +0 -99
- data/ext/couchbase/couchbase/platform/string_hex.h +0 -50
- data/ext/couchbase/couchbase/platform/terminate_handler.cc +0 -125
- data/ext/couchbase/couchbase/platform/terminate_handler.h +0 -36
- data/ext/couchbase/couchbase/platform/uuid.cc +0 -98
- data/ext/couchbase/couchbase/platform/uuid.h +0 -56
- data/ext/couchbase/couchbase/protocol/CMakeLists.txt +0 -42
- data/ext/couchbase/couchbase/protocol/client_opcode.hxx +0 -359
- data/ext/couchbase/couchbase/protocol/client_opcode_fmt.hxx +0 -316
- data/ext/couchbase/couchbase/protocol/client_request.cxx +0 -37
- data/ext/couchbase/couchbase/protocol/client_request.hxx +0 -157
- data/ext/couchbase/couchbase/protocol/client_response.cxx +0 -74
- data/ext/couchbase/couchbase/protocol/client_response.hxx +0 -211
- data/ext/couchbase/couchbase/protocol/cmd_append.cxx +0 -82
- data/ext/couchbase/couchbase/protocol/cmd_append.hxx +0 -107
- data/ext/couchbase/couchbase/protocol/cmd_cluster_map_change_notification.cxx +0 -51
- data/ext/couchbase/couchbase/protocol/cmd_cluster_map_change_notification.hxx +0 -57
- data/ext/couchbase/couchbase/protocol/cmd_decrement.cxx +0 -112
- data/ext/couchbase/couchbase/protocol/cmd_decrement.hxx +0 -131
- data/ext/couchbase/couchbase/protocol/cmd_exists.cxx +0 -92
- data/ext/couchbase/couchbase/protocol/cmd_exists.hxx +0 -121
- data/ext/couchbase/couchbase/protocol/cmd_get.cxx +0 -63
- data/ext/couchbase/couchbase/protocol/cmd_get.hxx +0 -101
- data/ext/couchbase/couchbase/protocol/cmd_get_and_lock.cxx +0 -68
- data/ext/couchbase/couchbase/protocol/cmd_get_and_lock.hxx +0 -117
- data/ext/couchbase/couchbase/protocol/cmd_get_and_touch.cxx +0 -70
- data/ext/couchbase/couchbase/protocol/cmd_get_and_touch.hxx +0 -117
- data/ext/couchbase/couchbase/protocol/cmd_get_cluster_config.cxx +0 -84
- data/ext/couchbase/couchbase/protocol/cmd_get_cluster_config.hxx +0 -89
- data/ext/couchbase/couchbase/protocol/cmd_get_collection_id.cxx +0 -50
- data/ext/couchbase/couchbase/protocol/cmd_get_collection_id.hxx +0 -98
- data/ext/couchbase/couchbase/protocol/cmd_get_collections_manifest.cxx +0 -44
- data/ext/couchbase/couchbase/protocol/cmd_get_collections_manifest.hxx +0 -84
- data/ext/couchbase/couchbase/protocol/cmd_get_error_map.cxx +0 -59
- data/ext/couchbase/couchbase/protocol/cmd_get_error_map.hxx +0 -103
- data/ext/couchbase/couchbase/protocol/cmd_get_meta.cxx +0 -74
- data/ext/couchbase/couchbase/protocol/cmd_get_meta.hxx +0 -119
- data/ext/couchbase/couchbase/protocol/cmd_hello.cxx +0 -66
- data/ext/couchbase/couchbase/protocol/cmd_hello.hxx +0 -144
- data/ext/couchbase/couchbase/protocol/cmd_increment.cxx +0 -117
- data/ext/couchbase/couchbase/protocol/cmd_increment.hxx +0 -131
- data/ext/couchbase/couchbase/protocol/cmd_info.hxx +0 -29
- data/ext/couchbase/couchbase/protocol/cmd_insert.cxx +0 -92
- data/ext/couchbase/couchbase/protocol/cmd_insert.hxx +0 -123
- data/ext/couchbase/couchbase/protocol/cmd_lookup_in.cxx +0 -109
- data/ext/couchbase/couchbase/protocol/cmd_lookup_in.hxx +0 -165
- data/ext/couchbase/couchbase/protocol/cmd_mutate_in.cxx +0 -174
- data/ext/couchbase/couchbase/protocol/cmd_mutate_in.hxx +0 -311
- data/ext/couchbase/couchbase/protocol/cmd_noop.cxx +0 -36
- data/ext/couchbase/couchbase/protocol/cmd_noop.hxx +0 -75
- data/ext/couchbase/couchbase/protocol/cmd_prepend.cxx +0 -82
- data/ext/couchbase/couchbase/protocol/cmd_prepend.hxx +0 -102
- data/ext/couchbase/couchbase/protocol/cmd_remove.cxx +0 -83
- data/ext/couchbase/couchbase/protocol/cmd_remove.hxx +0 -93
- data/ext/couchbase/couchbase/protocol/cmd_replace.cxx +0 -105
- data/ext/couchbase/couchbase/protocol/cmd_replace.hxx +0 -130
- data/ext/couchbase/couchbase/protocol/cmd_sasl_auth.cxx +0 -40
- data/ext/couchbase/couchbase/protocol/cmd_sasl_auth.hxx +0 -97
- data/ext/couchbase/couchbase/protocol/cmd_sasl_list_mechs.cxx +0 -48
- data/ext/couchbase/couchbase/protocol/cmd_sasl_list_mechs.hxx +0 -82
- data/ext/couchbase/couchbase/protocol/cmd_sasl_step.cxx +0 -40
- data/ext/couchbase/couchbase/protocol/cmd_sasl_step.hxx +0 -97
- data/ext/couchbase/couchbase/protocol/cmd_select_bucket.cxx +0 -36
- data/ext/couchbase/couchbase/protocol/cmd_select_bucket.hxx +0 -82
- data/ext/couchbase/couchbase/protocol/cmd_touch.cxx +0 -57
- data/ext/couchbase/couchbase/protocol/cmd_touch.hxx +0 -84
- data/ext/couchbase/couchbase/protocol/cmd_unlock.cxx +0 -48
- data/ext/couchbase/couchbase/protocol/cmd_unlock.hxx +0 -81
- data/ext/couchbase/couchbase/protocol/cmd_upsert.cxx +0 -104
- data/ext/couchbase/couchbase/protocol/cmd_upsert.hxx +0 -125
- data/ext/couchbase/couchbase/protocol/datatype.hxx +0 -48
- data/ext/couchbase/couchbase/protocol/durability_level.hxx +0 -59
- data/ext/couchbase/couchbase/protocol/durability_level_fmt.hxx +0 -52
- data/ext/couchbase/couchbase/protocol/enhanced_error_info.hxx +0 -28
- data/ext/couchbase/couchbase/protocol/enhanced_error_info_fmt.hxx +0 -44
- data/ext/couchbase/couchbase/protocol/frame_info_id.hxx +0 -142
- data/ext/couchbase/couchbase/protocol/frame_info_id_fmt.hxx +0 -79
- data/ext/couchbase/couchbase/protocol/hello_feature.hxx +0 -186
- data/ext/couchbase/couchbase/protocol/hello_feature_fmt.hxx +0 -106
- data/ext/couchbase/couchbase/protocol/magic.hxx +0 -53
- data/ext/couchbase/couchbase/protocol/magic_fmt.hxx +0 -58
- data/ext/couchbase/couchbase/protocol/server_opcode.hxx +0 -39
- data/ext/couchbase/couchbase/protocol/server_opcode_fmt.hxx +0 -46
- data/ext/couchbase/couchbase/protocol/server_request.hxx +0 -121
- data/ext/couchbase/couchbase/protocol/status.cxx +0 -187
- data/ext/couchbase/couchbase/protocol/status.hxx +0 -180
- data/ext/couchbase/couchbase/protocol/status_fmt.hxx +0 -241
- data/ext/couchbase/couchbase/query_profile_mode.hxx +0 -27
- data/ext/couchbase/couchbase/sasl/CMakeLists.txt +0 -16
- data/ext/couchbase/couchbase/sasl/client.cc +0 -50
- data/ext/couchbase/couchbase/sasl/client.h +0 -128
- data/ext/couchbase/couchbase/sasl/context.cc +0 -34
- data/ext/couchbase/couchbase/sasl/context.h +0 -52
- data/ext/couchbase/couchbase/sasl/error.h +0 -28
- data/ext/couchbase/couchbase/sasl/error_fmt.h +0 -70
- data/ext/couchbase/couchbase/sasl/mechanism.cc +0 -45
- data/ext/couchbase/couchbase/sasl/mechanism.h +0 -52
- data/ext/couchbase/couchbase/sasl/plain/plain.cc +0 -39
- data/ext/couchbase/couchbase/sasl/plain/plain.h +0 -54
- data/ext/couchbase/couchbase/sasl/scram-sha/scram-sha.cc +0 -372
- data/ext/couchbase/couchbase/sasl/scram-sha/scram-sha.h +0 -184
- data/ext/couchbase/couchbase/sasl/scram-sha/stringutils.cc +0 -82
- data/ext/couchbase/couchbase/sasl/scram-sha/stringutils.h +0 -48
- data/ext/couchbase/couchbase/search_highlight_style.hxx +0 -23
- data/ext/couchbase/couchbase/search_scan_consistency.hxx +0 -23
- data/ext/couchbase/couchbase/service_type.hxx +0 -31
- data/ext/couchbase/couchbase/service_type_fmt.hxx +0 -61
- data/ext/couchbase/couchbase/timeout_defaults.hxx +0 -42
- data/ext/couchbase/couchbase/topology/CMakeLists.txt +0 -9
- data/ext/couchbase/couchbase/topology/capabilities.hxx +0 -43
- data/ext/couchbase/couchbase/topology/capabilities_fmt.hxx +0 -106
- data/ext/couchbase/couchbase/topology/collections_manifest.hxx +0 -42
- data/ext/couchbase/couchbase/topology/collections_manifest_fmt.hxx +0 -52
- data/ext/couchbase/couchbase/topology/collections_manifest_json.hxx +0 -50
- data/ext/couchbase/couchbase/topology/configuration.cxx +0 -223
- data/ext/couchbase/couchbase/topology/configuration.hxx +0 -120
- data/ext/couchbase/couchbase/topology/configuration_fmt.hxx +0 -166
- data/ext/couchbase/couchbase/topology/configuration_json.hxx +0 -259
- data/ext/couchbase/couchbase/topology/error_map.hxx +0 -149
- data/ext/couchbase/couchbase/topology/error_map_fmt.hxx +0 -94
- data/ext/couchbase/couchbase/topology/error_map_json.hxx +0 -88
- data/ext/couchbase/couchbase/tracing/CMakeLists.txt +0 -9
- data/ext/couchbase/couchbase/tracing/constants.hxx +0 -274
- data/ext/couchbase/couchbase/tracing/noop_tracer.hxx +0 -55
- data/ext/couchbase/couchbase/tracing/threshold_logging_options.hxx +0 -68
- data/ext/couchbase/couchbase/tracing/threshold_logging_tracer.cxx +0 -422
- data/ext/couchbase/couchbase/tracing/threshold_logging_tracer.hxx +0 -49
- data/ext/couchbase/couchbase/utils/CMakeLists.txt +0 -17
- data/ext/couchbase/couchbase/utils/byteswap.cxx +0 -45
- data/ext/couchbase/couchbase/utils/byteswap.hxx +0 -49
- data/ext/couchbase/couchbase/utils/connection_string.cxx +0 -420
- data/ext/couchbase/couchbase/utils/connection_string.hxx +0 -76
- data/ext/couchbase/couchbase/utils/crc32.hxx +0 -48
- data/ext/couchbase/couchbase/utils/duration_parser.cxx +0 -193
- data/ext/couchbase/couchbase/utils/duration_parser.hxx +0 -45
- data/ext/couchbase/couchbase/utils/join_strings.hxx +0 -65
- data/ext/couchbase/couchbase/utils/json.cxx +0 -71
- data/ext/couchbase/couchbase/utils/json.hxx +0 -37
- data/ext/couchbase/couchbase/utils/json_stream_control.hxx +0 -32
- data/ext/couchbase/couchbase/utils/json_streaming_lexer.cxx +0 -394
- data/ext/couchbase/couchbase/utils/json_streaming_lexer.hxx +0 -58
- data/ext/couchbase/couchbase/utils/movable_function.hxx +0 -110
- data/ext/couchbase/couchbase/utils/name_codec.hxx +0 -41
- data/ext/couchbase/couchbase/utils/unsigned_leb128.hxx +0 -181
- data/ext/couchbase/couchbase/utils/url_codec.cxx +0 -404
- data/ext/couchbase/couchbase/utils/url_codec.hxx +0 -72
- data/ext/couchbase/couchbase/view_scan_consistency.hxx +0 -27
- data/ext/couchbase/couchbase/view_sort_order.hxx +0 -23
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/append.hpp +0 -217
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/as_tuple.hpp +0 -246
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/deferred.hpp +0 -104
- data/ext/couchbase/third_party/asio/asio/include/asio/experimental/impl/prepend.hpp +0 -217
- data/ext/couchbase/third_party/asio/asio/include/asio/impl/compose.hpp +0 -707
- data/ext/couchbase/third_party/json/external/PEGTL/include/tao/pegtl/internal/dependent_true.hpp +0 -16
@@ -2,7 +2,7 @@
|
|
2
2
|
// impl/spawn.hpp
|
3
3
|
// ~~~~~~~~~~~~~~
|
4
4
|
//
|
5
|
-
// Copyright (c) 2003-
|
5
|
+
// Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
6
|
//
|
7
7
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
8
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -17,6 +17,7 @@
|
|
17
17
|
|
18
18
|
#include "asio/detail/config.hpp"
|
19
19
|
#include "asio/associated_allocator.hpp"
|
20
|
+
#include "asio/associated_cancellation_slot.hpp"
|
20
21
|
#include "asio/associated_executor.hpp"
|
21
22
|
#include "asio/async_result.hpp"
|
22
23
|
#include "asio/bind_executor.hpp"
|
@@ -27,384 +28,1428 @@
|
|
27
28
|
#include "asio/detail/memory.hpp"
|
28
29
|
#include "asio/detail/noncopyable.hpp"
|
29
30
|
#include "asio/detail/type_traits.hpp"
|
31
|
+
#include "asio/detail/utility.hpp"
|
32
|
+
#include "asio/detail/variadic_templates.hpp"
|
30
33
|
#include "asio/system_error.hpp"
|
31
34
|
|
35
|
+
#if defined(ASIO_HAS_STD_TUPLE)
|
36
|
+
# include <tuple>
|
37
|
+
#endif // defined(ASIO_HAS_STD_TUPLE)
|
38
|
+
|
39
|
+
#if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
40
|
+
# include <boost/context/fiber.hpp>
|
41
|
+
#endif // defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
42
|
+
|
32
43
|
#include "asio/detail/push_options.hpp"
|
33
44
|
|
34
45
|
namespace asio {
|
35
46
|
namespace detail {
|
36
47
|
|
37
|
-
|
38
|
-
|
48
|
+
#if defined(ASIO_HAS_BOOST_COROUTINE)
|
49
|
+
|
50
|
+
// Spawned thread implementation using Boost.Coroutine.
|
51
|
+
class spawned_coroutine_thread : public spawned_thread_base
|
52
|
+
{
|
53
|
+
public:
|
54
|
+
#if defined(BOOST_COROUTINES_UNIDIRECT) || defined(BOOST_COROUTINES_V2)
|
55
|
+
typedef boost::coroutines::pull_coroutine<void> callee_type;
|
56
|
+
typedef boost::coroutines::push_coroutine<void> caller_type;
|
57
|
+
#else
|
58
|
+
typedef boost::coroutines::coroutine<void()> callee_type;
|
59
|
+
typedef boost::coroutines::coroutine<void()> caller_type;
|
60
|
+
#endif
|
61
|
+
|
62
|
+
spawned_coroutine_thread(caller_type& caller)
|
63
|
+
: caller_(caller),
|
64
|
+
on_suspend_fn_(0),
|
65
|
+
on_suspend_arg_(0)
|
39
66
|
{
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
67
|
+
}
|
68
|
+
|
69
|
+
template <typename F>
|
70
|
+
static spawned_thread_base* spawn(ASIO_MOVE_ARG(F) f,
|
71
|
+
const boost::coroutines::attributes& attributes,
|
72
|
+
cancellation_slot parent_cancel_slot = cancellation_slot(),
|
73
|
+
cancellation_state cancel_state = cancellation_state())
|
74
|
+
{
|
75
|
+
spawned_coroutine_thread* spawned_thread = 0;
|
76
|
+
callee_type callee(entry_point<typename decay<F>::type>(
|
77
|
+
ASIO_MOVE_CAST(F)(f), &spawned_thread), attributes);
|
78
|
+
spawned_thread->callee_.swap(callee);
|
79
|
+
spawned_thread->parent_cancellation_slot_ = parent_cancel_slot;
|
80
|
+
spawned_thread->cancellation_state_ = cancel_state;
|
81
|
+
return spawned_thread;
|
82
|
+
}
|
83
|
+
|
84
|
+
template <typename F>
|
85
|
+
static spawned_thread_base* spawn(ASIO_MOVE_ARG(F) f,
|
86
|
+
cancellation_slot parent_cancel_slot = cancellation_slot(),
|
87
|
+
cancellation_state cancel_state = cancellation_state())
|
88
|
+
{
|
89
|
+
return spawn(ASIO_MOVE_CAST(F)(f), boost::coroutines::attributes(),
|
90
|
+
parent_cancel_slot, cancel_state);
|
91
|
+
}
|
92
|
+
|
93
|
+
void resume()
|
94
|
+
{
|
95
|
+
callee_();
|
96
|
+
if (on_suspend_fn_)
|
48
97
|
{
|
98
|
+
void (*fn)(void*) = on_suspend_fn_;
|
99
|
+
void* arg = on_suspend_arg_;
|
100
|
+
on_suspend_fn_ = 0;
|
101
|
+
fn(arg);
|
49
102
|
}
|
103
|
+
}
|
50
104
|
|
51
|
-
|
105
|
+
void suspend_with(void (*fn)(void*), void* arg)
|
106
|
+
{
|
107
|
+
if (throw_if_cancelled_)
|
108
|
+
if (!!cancellation_state_.cancelled())
|
109
|
+
throw_error(asio::error::operation_aborted, "yield");
|
110
|
+
has_context_switched_ = true;
|
111
|
+
on_suspend_fn_ = fn;
|
112
|
+
on_suspend_arg_ = arg;
|
113
|
+
caller_();
|
114
|
+
}
|
115
|
+
|
116
|
+
void destroy()
|
117
|
+
{
|
118
|
+
callee_type callee;
|
119
|
+
callee.swap(callee_);
|
120
|
+
}
|
121
|
+
|
122
|
+
private:
|
123
|
+
template <typename Function>
|
124
|
+
class entry_point
|
125
|
+
{
|
126
|
+
public:
|
127
|
+
template <typename F>
|
128
|
+
entry_point(ASIO_MOVE_ARG(F) f,
|
129
|
+
spawned_coroutine_thread** spawned_thread_out)
|
130
|
+
: function_(ASIO_MOVE_CAST(F)(f)),
|
131
|
+
spawned_thread_out_(spawned_thread_out)
|
52
132
|
{
|
53
|
-
*ec_ = asio::error_code();
|
54
|
-
*value_ = ASIO_MOVE_CAST(T)(value);
|
55
|
-
if (--*ready_ == 0)
|
56
|
-
(*coro_)();
|
57
133
|
}
|
58
134
|
|
59
|
-
void operator()(
|
135
|
+
void operator()(caller_type& caller)
|
60
136
|
{
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
137
|
+
Function function(ASIO_MOVE_CAST(Function)(function_));
|
138
|
+
spawned_coroutine_thread spawned_thread(caller);
|
139
|
+
*spawned_thread_out_ = &spawned_thread;
|
140
|
+
spawned_thread_out_ = 0;
|
141
|
+
spawned_thread.suspend();
|
142
|
+
function(&spawned_thread);
|
143
|
+
spawned_thread.suspend();
|
65
144
|
}
|
66
145
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
Handler handler_;
|
71
|
-
atomic_count* ready_;
|
72
|
-
asio::error_code* ec_;
|
73
|
-
T* value_;
|
146
|
+
private:
|
147
|
+
Function function_;
|
148
|
+
spawned_coroutine_thread** spawned_thread_out_;
|
74
149
|
};
|
75
150
|
|
76
|
-
|
77
|
-
|
151
|
+
caller_type& caller_;
|
152
|
+
callee_type callee_;
|
153
|
+
void (*on_suspend_fn_)(void*);
|
154
|
+
void* on_suspend_arg_;
|
155
|
+
};
|
156
|
+
|
157
|
+
#endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
158
|
+
|
159
|
+
#if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
160
|
+
|
161
|
+
// Spawned thread implementation using Boost.Context's fiber.
|
162
|
+
class spawned_fiber_thread : public spawned_thread_base
|
163
|
+
{
|
164
|
+
public:
|
165
|
+
typedef boost::context::fiber fiber_type;
|
166
|
+
|
167
|
+
spawned_fiber_thread(ASIO_MOVE_ARG(fiber_type) caller)
|
168
|
+
: caller_(ASIO_MOVE_CAST(fiber_type)(caller)),
|
169
|
+
on_suspend_fn_(0),
|
170
|
+
on_suspend_arg_(0)
|
78
171
|
{
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
172
|
+
}
|
173
|
+
|
174
|
+
template <typename StackAllocator, typename F>
|
175
|
+
static spawned_thread_base* spawn(allocator_arg_t,
|
176
|
+
ASIO_MOVE_ARG(StackAllocator) stack_allocator,
|
177
|
+
ASIO_MOVE_ARG(F) f,
|
178
|
+
cancellation_slot parent_cancel_slot = cancellation_slot(),
|
179
|
+
cancellation_state cancel_state = cancellation_state())
|
180
|
+
{
|
181
|
+
spawned_fiber_thread* spawned_thread = 0;
|
182
|
+
fiber_type callee(allocator_arg_t(),
|
183
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
184
|
+
entry_point<typename decay<F>::type>(
|
185
|
+
ASIO_MOVE_CAST(F)(f), &spawned_thread));
|
186
|
+
callee = fiber_type(ASIO_MOVE_CAST(fiber_type)(callee)).resume();
|
187
|
+
spawned_thread->callee_ = ASIO_MOVE_CAST(fiber_type)(callee);
|
188
|
+
spawned_thread->parent_cancellation_slot_ = parent_cancel_slot;
|
189
|
+
spawned_thread->cancellation_state_ = cancel_state;
|
190
|
+
return spawned_thread;
|
191
|
+
}
|
192
|
+
|
193
|
+
template <typename F>
|
194
|
+
static spawned_thread_base* spawn(ASIO_MOVE_ARG(F) f,
|
195
|
+
cancellation_slot parent_cancel_slot = cancellation_slot(),
|
196
|
+
cancellation_state cancel_state = cancellation_state())
|
197
|
+
{
|
198
|
+
return spawn(allocator_arg_t(), boost::context::fixedsize_stack(),
|
199
|
+
ASIO_MOVE_CAST(F)(f), parent_cancel_slot, cancel_state);
|
200
|
+
}
|
201
|
+
|
202
|
+
void resume()
|
203
|
+
{
|
204
|
+
callee_ = fiber_type(ASIO_MOVE_CAST(fiber_type)(callee_)).resume();
|
205
|
+
if (on_suspend_fn_)
|
86
206
|
{
|
207
|
+
void (*fn)(void*) = on_suspend_fn_;
|
208
|
+
void* arg = on_suspend_arg_;
|
209
|
+
on_suspend_fn_ = 0;
|
210
|
+
fn(arg);
|
87
211
|
}
|
212
|
+
}
|
88
213
|
|
89
|
-
|
214
|
+
void suspend_with(void (*fn)(void*), void* arg)
|
215
|
+
{
|
216
|
+
if (throw_if_cancelled_)
|
217
|
+
if (!!cancellation_state_.cancelled())
|
218
|
+
throw_error(asio::error::operation_aborted, "yield");
|
219
|
+
has_context_switched_ = true;
|
220
|
+
on_suspend_fn_ = fn;
|
221
|
+
on_suspend_arg_ = arg;
|
222
|
+
caller_ = fiber_type(ASIO_MOVE_CAST(fiber_type)(caller_)).resume();
|
223
|
+
}
|
224
|
+
|
225
|
+
void destroy()
|
226
|
+
{
|
227
|
+
fiber_type callee = ASIO_MOVE_CAST(fiber_type)(callee_);
|
228
|
+
(void)callee;
|
229
|
+
}
|
230
|
+
|
231
|
+
private:
|
232
|
+
template <typename Function>
|
233
|
+
class entry_point
|
234
|
+
{
|
235
|
+
public:
|
236
|
+
template <typename F>
|
237
|
+
entry_point(ASIO_MOVE_ARG(F) f,
|
238
|
+
spawned_fiber_thread** spawned_thread_out)
|
239
|
+
: function_(ASIO_MOVE_CAST(F)(f)),
|
240
|
+
spawned_thread_out_(spawned_thread_out)
|
90
241
|
{
|
91
|
-
*ec_ = asio::error_code();
|
92
|
-
if (--*ready_ == 0)
|
93
|
-
(*coro_)();
|
94
242
|
}
|
95
243
|
|
96
|
-
|
244
|
+
fiber_type operator()(ASIO_MOVE_ARG(fiber_type) caller)
|
97
245
|
{
|
98
|
-
|
99
|
-
|
100
|
-
|
246
|
+
Function function(ASIO_MOVE_CAST(Function)(function_));
|
247
|
+
spawned_fiber_thread spawned_thread(
|
248
|
+
ASIO_MOVE_CAST(fiber_type)(caller));
|
249
|
+
*spawned_thread_out_ = &spawned_thread;
|
250
|
+
spawned_thread_out_ = 0;
|
251
|
+
spawned_thread.suspend();
|
252
|
+
function(&spawned_thread);
|
253
|
+
spawned_thread.suspend();
|
254
|
+
return {};
|
101
255
|
}
|
102
256
|
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
Handler handler_;
|
107
|
-
atomic_count* ready_;
|
108
|
-
asio::error_code* ec_;
|
257
|
+
private:
|
258
|
+
Function function_;
|
259
|
+
spawned_fiber_thread** spawned_thread_out_;
|
109
260
|
};
|
110
261
|
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
262
|
+
fiber_type caller_;
|
263
|
+
fiber_type callee_;
|
264
|
+
void (*on_suspend_fn_)(void*);
|
265
|
+
void* on_suspend_arg_;
|
266
|
+
};
|
267
|
+
|
268
|
+
#endif // defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
269
|
+
|
270
|
+
#if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
271
|
+
typedef spawned_fiber_thread default_spawned_thread_type;
|
272
|
+
#elif defined(ASIO_HAS_BOOST_COROUTINE)
|
273
|
+
typedef spawned_coroutine_thread default_spawned_thread_type;
|
274
|
+
#else
|
275
|
+
# error No spawn() implementation available
|
276
|
+
#endif
|
277
|
+
|
278
|
+
// Helper class to perform the initial resume on the correct executor.
|
279
|
+
class spawned_thread_resumer
|
280
|
+
{
|
281
|
+
public:
|
282
|
+
explicit spawned_thread_resumer(spawned_thread_base* spawned_thread)
|
283
|
+
: spawned_thread_(spawned_thread)
|
115
284
|
{
|
116
|
-
#if defined(
|
117
|
-
|
118
|
-
|
119
|
-
#
|
120
|
-
return asio_handler_alloc_helpers::allocate(
|
121
|
-
size, this_handler->handler_);
|
122
|
-
#endif // defined(ASIO_NO_DEPRECATED)
|
285
|
+
#if !defined(ASIO_HAS_MOVE)
|
286
|
+
spawned_thread->detach();
|
287
|
+
spawned_thread->attach(&spawned_thread_);
|
288
|
+
#endif // !defined(ASIO_HAS_MOVE)
|
123
289
|
}
|
124
290
|
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
291
|
+
#if defined(ASIO_HAS_MOVE)
|
292
|
+
|
293
|
+
spawned_thread_resumer(spawned_thread_resumer&& other) ASIO_NOEXCEPT
|
294
|
+
: spawned_thread_(other.spawned_thread_)
|
129
295
|
{
|
130
|
-
|
131
|
-
pointer, size, this_handler->handler_);
|
132
|
-
#if defined(ASIO_NO_DEPRECATED)
|
133
|
-
return asio_handler_deallocate_is_no_longer_used();
|
134
|
-
#endif // defined(ASIO_NO_DEPRECATED)
|
296
|
+
other.spawned_thread_ = 0;
|
135
297
|
}
|
136
298
|
|
137
|
-
|
138
|
-
|
299
|
+
#else // defined(ASIO_HAS_MOVE)
|
300
|
+
|
301
|
+
spawned_thread_resumer(
|
302
|
+
const spawned_thread_resumer& other) ASIO_NOEXCEPT
|
303
|
+
: spawned_thread_(other.spawned_thread_)
|
139
304
|
{
|
140
|
-
|
305
|
+
spawned_thread_->detach();
|
306
|
+
spawned_thread_->attach(&spawned_thread_);
|
141
307
|
}
|
142
308
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
coro_handler<Handler, T>* this_handler)
|
309
|
+
#endif // defined(ASIO_HAS_MOVE)
|
310
|
+
|
311
|
+
~spawned_thread_resumer()
|
147
312
|
{
|
148
|
-
|
149
|
-
|
150
|
-
#if defined(ASIO_NO_DEPRECATED)
|
151
|
-
return asio_handler_invoke_is_no_longer_used();
|
152
|
-
#endif // defined(ASIO_NO_DEPRECATED)
|
313
|
+
if (spawned_thread_)
|
314
|
+
spawned_thread_->destroy();
|
153
315
|
}
|
154
316
|
|
155
|
-
|
156
|
-
inline asio_handler_invoke_is_deprecated
|
157
|
-
asio_handler_invoke(const Function& function,
|
158
|
-
coro_handler<Handler, T>* this_handler)
|
317
|
+
void operator()()
|
159
318
|
{
|
160
|
-
|
161
|
-
|
162
|
-
#
|
163
|
-
|
164
|
-
#endif // defined(ASIO_NO_DEPRECATED)
|
319
|
+
#if defined(ASIO_HAS_MOVE)
|
320
|
+
spawned_thread_->attach(&spawned_thread_);
|
321
|
+
#endif // defined(ASIO_HAS_MOVE)
|
322
|
+
spawned_thread_->resume();
|
165
323
|
}
|
166
324
|
|
167
|
-
|
168
|
-
|
325
|
+
private:
|
326
|
+
spawned_thread_base* spawned_thread_;
|
327
|
+
};
|
328
|
+
|
329
|
+
// Helper class to ensure spawned threads are destroyed on the correct executor.
|
330
|
+
class spawned_thread_destroyer
|
331
|
+
{
|
332
|
+
public:
|
333
|
+
explicit spawned_thread_destroyer(spawned_thread_base* spawned_thread)
|
334
|
+
: spawned_thread_(spawned_thread)
|
169
335
|
{
|
170
|
-
|
171
|
-
|
172
|
-
|
336
|
+
spawned_thread->detach();
|
337
|
+
#if !defined(ASIO_HAS_MOVE)
|
338
|
+
spawned_thread->attach(&spawned_thread_);
|
339
|
+
#endif // !defined(ASIO_HAS_MOVE)
|
340
|
+
}
|
173
341
|
|
174
|
-
|
175
|
-
: handler_(h),
|
176
|
-
ca_(h.ca_),
|
177
|
-
ready_(2)
|
178
|
-
{
|
179
|
-
h.ready_ = &ready_;
|
180
|
-
out_ec_ = h.ec_;
|
181
|
-
if (!out_ec_) h.ec_ = &ec_;
|
182
|
-
h.value_ = &value_;
|
183
|
-
}
|
342
|
+
#if defined(ASIO_HAS_MOVE)
|
184
343
|
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
344
|
+
spawned_thread_destroyer(spawned_thread_destroyer&& other) ASIO_NOEXCEPT
|
345
|
+
: spawned_thread_(other.spawned_thread_)
|
346
|
+
{
|
347
|
+
other.spawned_thread_ = 0;
|
348
|
+
}
|
189
349
|
|
190
|
-
|
191
|
-
ca_();
|
192
|
-
if (!out_ec_ && ec_) throw asio::system_error(ec_);
|
193
|
-
return ASIO_MOVE_CAST(return_type)(value_);
|
194
|
-
}
|
350
|
+
#else // defined(ASIO_HAS_MOVE)
|
195
351
|
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
352
|
+
spawned_thread_destroyer(
|
353
|
+
const spawned_thread_destroyer& other) ASIO_NOEXCEPT
|
354
|
+
: spawned_thread_(other.spawned_thread_)
|
355
|
+
{
|
356
|
+
spawned_thread_->detach();
|
357
|
+
spawned_thread_->attach(&spawned_thread_);
|
358
|
+
}
|
359
|
+
|
360
|
+
#endif // defined(ASIO_HAS_MOVE)
|
204
361
|
|
205
|
-
|
206
|
-
class coro_async_result<Handler, void>
|
362
|
+
~spawned_thread_destroyer()
|
207
363
|
{
|
208
|
-
|
209
|
-
|
210
|
-
|
364
|
+
if (spawned_thread_)
|
365
|
+
spawned_thread_->destroy();
|
366
|
+
}
|
211
367
|
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
ready_(2)
|
368
|
+
void operator()()
|
369
|
+
{
|
370
|
+
if (spawned_thread_)
|
216
371
|
{
|
217
|
-
|
218
|
-
|
219
|
-
if (!out_ec_) h.ec_ = &ec_;
|
372
|
+
spawned_thread_->destroy();
|
373
|
+
spawned_thread_ = 0;
|
220
374
|
}
|
375
|
+
}
|
221
376
|
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
handler_.coro_.reset();
|
377
|
+
private:
|
378
|
+
spawned_thread_base* spawned_thread_;
|
379
|
+
};
|
226
380
|
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
381
|
+
// Base class for all completion handlers associated with a spawned thread.
|
382
|
+
template <typename Executor>
|
383
|
+
class spawn_handler_base
|
384
|
+
{
|
385
|
+
public:
|
386
|
+
typedef Executor executor_type;
|
387
|
+
typedef cancellation_slot cancellation_slot_type;
|
231
388
|
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
389
|
+
spawn_handler_base(const basic_yield_context<Executor>& yield)
|
390
|
+
: yield_(yield),
|
391
|
+
spawned_thread_(yield.spawned_thread_)
|
392
|
+
{
|
393
|
+
spawned_thread_->detach();
|
394
|
+
#if !defined(ASIO_HAS_MOVE)
|
395
|
+
spawned_thread_->attach(&spawned_thread_);
|
396
|
+
#endif // !defined(ASIO_HAS_MOVE)
|
397
|
+
}
|
239
398
|
|
240
|
-
|
399
|
+
#if defined(ASIO_HAS_MOVE)
|
400
|
+
|
401
|
+
spawn_handler_base(spawn_handler_base&& other) ASIO_NOEXCEPT
|
402
|
+
: yield_(other.yield_),
|
403
|
+
spawned_thread_(other.spawned_thread_)
|
404
|
+
|
405
|
+
{
|
406
|
+
other.spawned_thread_ = 0;
|
407
|
+
}
|
241
408
|
|
242
|
-
#
|
409
|
+
#else // defined(ASIO_HAS_MOVE)
|
243
410
|
|
244
|
-
|
245
|
-
|
246
|
-
|
411
|
+
spawn_handler_base(const spawn_handler_base& other) ASIO_NOEXCEPT
|
412
|
+
: yield_(other.yield_),
|
413
|
+
spawned_thread_(other.spawned_thread_)
|
414
|
+
{
|
415
|
+
spawned_thread_->detach();
|
416
|
+
spawned_thread_->attach(&spawned_thread_);
|
417
|
+
}
|
418
|
+
|
419
|
+
#endif // defined(ASIO_HAS_MOVE)
|
420
|
+
|
421
|
+
~spawn_handler_base()
|
422
|
+
{
|
423
|
+
if (spawned_thread_)
|
424
|
+
(post)(yield_.executor_, spawned_thread_destroyer(spawned_thread_));
|
425
|
+
}
|
426
|
+
|
427
|
+
executor_type get_executor() const ASIO_NOEXCEPT
|
428
|
+
{
|
429
|
+
return yield_.executor_;
|
430
|
+
}
|
431
|
+
|
432
|
+
cancellation_slot_type get_cancellation_slot() const ASIO_NOEXCEPT
|
433
|
+
{
|
434
|
+
return spawned_thread_->get_cancellation_slot();
|
435
|
+
}
|
436
|
+
|
437
|
+
void resume()
|
438
|
+
{
|
439
|
+
spawned_thread_resumer resumer(spawned_thread_);
|
440
|
+
spawned_thread_ = 0;
|
441
|
+
resumer();
|
442
|
+
}
|
443
|
+
|
444
|
+
protected:
|
445
|
+
const basic_yield_context<Executor>& yield_;
|
446
|
+
spawned_thread_base* spawned_thread_;
|
447
|
+
};
|
448
|
+
|
449
|
+
// Completion handlers for when basic_yield_context is used as a token.
|
450
|
+
template <typename Executor, typename Signature>
|
451
|
+
class spawn_handler;
|
452
|
+
|
453
|
+
template <typename Executor, typename R>
|
454
|
+
class spawn_handler<Executor, R()>
|
455
|
+
: public spawn_handler_base<Executor>
|
456
|
+
{
|
457
|
+
public:
|
458
|
+
typedef void return_type;
|
459
|
+
|
460
|
+
struct result_type {};
|
461
|
+
|
462
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type&)
|
463
|
+
: spawn_handler_base<Executor>(yield)
|
464
|
+
{
|
465
|
+
}
|
466
|
+
|
467
|
+
void operator()()
|
468
|
+
{
|
469
|
+
this->resume();
|
470
|
+
}
|
471
|
+
|
472
|
+
static return_type on_resume(result_type&)
|
473
|
+
{
|
474
|
+
}
|
475
|
+
};
|
476
|
+
|
477
|
+
template <typename Executor, typename R>
|
478
|
+
class spawn_handler<Executor, R(asio::error_code)>
|
479
|
+
: public spawn_handler_base<Executor>
|
247
480
|
{
|
248
481
|
public:
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
482
|
+
typedef void return_type;
|
483
|
+
typedef asio::error_code* result_type;
|
484
|
+
|
485
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
486
|
+
: spawn_handler_base<Executor>(yield),
|
487
|
+
result_(result)
|
253
488
|
{
|
254
489
|
}
|
490
|
+
|
491
|
+
void operator()(asio::error_code ec)
|
492
|
+
{
|
493
|
+
if (this->yield_.ec_)
|
494
|
+
{
|
495
|
+
*this->yield_.ec_ = ec;
|
496
|
+
result_ = 0;
|
497
|
+
}
|
498
|
+
else
|
499
|
+
result_ = &ec;
|
500
|
+
this->resume();
|
501
|
+
}
|
502
|
+
|
503
|
+
static return_type on_resume(result_type& result)
|
504
|
+
{
|
505
|
+
if (result)
|
506
|
+
throw_error(*result);
|
507
|
+
}
|
508
|
+
|
509
|
+
private:
|
510
|
+
result_type& result_;
|
255
511
|
};
|
256
512
|
|
257
|
-
template <typename
|
258
|
-
class
|
259
|
-
: public
|
513
|
+
template <typename Executor, typename R>
|
514
|
+
class spawn_handler<Executor, R(exception_ptr)>
|
515
|
+
: public spawn_handler_base<Executor>
|
260
516
|
{
|
261
517
|
public:
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
518
|
+
typedef void return_type;
|
519
|
+
typedef exception_ptr* result_type;
|
520
|
+
|
521
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
522
|
+
: spawn_handler_base<Executor>(yield),
|
523
|
+
result_(result)
|
524
|
+
{
|
525
|
+
}
|
526
|
+
|
527
|
+
void operator()(exception_ptr ex)
|
528
|
+
{
|
529
|
+
result_ = &ex;
|
530
|
+
this->resume();
|
531
|
+
}
|
532
|
+
|
533
|
+
static return_type on_resume(result_type& result)
|
266
534
|
{
|
535
|
+
if (result)
|
536
|
+
rethrow_exception(*result);
|
267
537
|
}
|
538
|
+
|
539
|
+
private:
|
540
|
+
result_type& result_;
|
268
541
|
};
|
269
542
|
|
270
|
-
template <typename
|
271
|
-
class
|
272
|
-
|
273
|
-
: public detail::coro_async_result<Handler, void>
|
543
|
+
template <typename Executor, typename R, typename T>
|
544
|
+
class spawn_handler<Executor, R(T)>
|
545
|
+
: public spawn_handler_base<Executor>
|
274
546
|
{
|
275
547
|
public:
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
548
|
+
typedef T return_type;
|
549
|
+
typedef return_type* result_type;
|
550
|
+
|
551
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
552
|
+
: spawn_handler_base<Executor>(yield),
|
553
|
+
result_(result)
|
280
554
|
{
|
281
555
|
}
|
556
|
+
|
557
|
+
void operator()(T value)
|
558
|
+
{
|
559
|
+
result_ = &value;
|
560
|
+
this->resume();
|
561
|
+
}
|
562
|
+
|
563
|
+
static return_type on_resume(result_type& result)
|
564
|
+
{
|
565
|
+
return ASIO_MOVE_CAST(return_type)(*result);
|
566
|
+
}
|
567
|
+
|
568
|
+
private:
|
569
|
+
result_type& result_;
|
282
570
|
};
|
283
571
|
|
284
|
-
template <typename
|
285
|
-
class
|
286
|
-
|
287
|
-
: public detail::coro_async_result<Handler, typename decay<Arg2>::type>
|
572
|
+
template <typename Executor, typename R, typename T>
|
573
|
+
class spawn_handler<Executor, R(asio::error_code, T)>
|
574
|
+
: public spawn_handler_base<Executor>
|
288
575
|
{
|
289
576
|
public:
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
: detail::coro_async_result<Handler, typename decay<Arg2>::type>(h)
|
577
|
+
typedef T return_type;
|
578
|
+
|
579
|
+
struct result_type
|
294
580
|
{
|
581
|
+
asio::error_code* ec_;
|
582
|
+
return_type* value_;
|
583
|
+
};
|
584
|
+
|
585
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
586
|
+
: spawn_handler_base<Executor>(yield),
|
587
|
+
result_(result)
|
588
|
+
{
|
589
|
+
}
|
590
|
+
|
591
|
+
void operator()(asio::error_code ec, T value)
|
592
|
+
{
|
593
|
+
if (this->yield_.ec_)
|
594
|
+
{
|
595
|
+
*this->yield_.ec_ = ec;
|
596
|
+
result_.ec_ = 0;
|
597
|
+
}
|
598
|
+
else
|
599
|
+
result_.ec_ = &ec;
|
600
|
+
result_.value_ = &value;
|
601
|
+
this->resume();
|
295
602
|
}
|
603
|
+
|
604
|
+
static return_type on_resume(result_type& result)
|
605
|
+
{
|
606
|
+
if (result.ec_)
|
607
|
+
throw_error(*result.ec_);
|
608
|
+
return ASIO_MOVE_CAST(return_type)(*result.value_);
|
609
|
+
}
|
610
|
+
|
611
|
+
private:
|
612
|
+
result_type& result_;
|
296
613
|
};
|
297
614
|
|
298
|
-
template <
|
299
|
-
|
300
|
-
|
301
|
-
detail::coro_handler<Handler, T>,
|
302
|
-
DefaultCandidate>
|
303
|
-
: Associator<Handler, DefaultCandidate>
|
615
|
+
template <typename Executor, typename R, typename T>
|
616
|
+
class spawn_handler<Executor, R(exception_ptr, T)>
|
617
|
+
: public spawn_handler_base<Executor>
|
304
618
|
{
|
305
|
-
|
306
|
-
|
307
|
-
|
619
|
+
public:
|
620
|
+
typedef T return_type;
|
621
|
+
|
622
|
+
struct result_type
|
623
|
+
{
|
624
|
+
exception_ptr ex_;
|
625
|
+
return_type* value_;
|
626
|
+
};
|
627
|
+
|
628
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
629
|
+
: spawn_handler_base<Executor>(yield),
|
630
|
+
result_(result)
|
308
631
|
{
|
309
|
-
return Associator<Handler, DefaultCandidate>::get(h.handler_, c);
|
310
632
|
}
|
633
|
+
|
634
|
+
void operator()(exception_ptr ex, T value)
|
635
|
+
{
|
636
|
+
result_.ex_ = &ex;
|
637
|
+
result_.value_ = &value;
|
638
|
+
this->resume();
|
639
|
+
}
|
640
|
+
|
641
|
+
static return_type on_resume(result_type& result)
|
642
|
+
{
|
643
|
+
if (result.ex_)
|
644
|
+
rethrow_exception(*result.ex_);
|
645
|
+
return ASIO_MOVE_CAST(return_type)(*result.value_);
|
646
|
+
}
|
647
|
+
|
648
|
+
private:
|
649
|
+
result_type& result_;
|
311
650
|
};
|
312
651
|
|
313
|
-
|
652
|
+
#if defined(ASIO_HAS_VARIADIC_TEMPLATES) \
|
653
|
+
&& defined(ASIO_HAS_STD_TUPLE)
|
654
|
+
|
655
|
+
template <typename Executor, typename R, typename... Ts>
|
656
|
+
class spawn_handler<Executor, R(Ts...)>
|
657
|
+
: public spawn_handler_base<Executor>
|
658
|
+
{
|
659
|
+
public:
|
660
|
+
typedef std::tuple<Ts...> return_type;
|
661
|
+
|
662
|
+
typedef return_type* result_type;
|
663
|
+
|
664
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
665
|
+
: spawn_handler_base<Executor>(yield),
|
666
|
+
result_(result)
|
667
|
+
{
|
668
|
+
}
|
669
|
+
|
670
|
+
template <typename... Args>
|
671
|
+
void operator()(ASIO_MOVE_ARG(Args)... args)
|
672
|
+
{
|
673
|
+
return_type value(ASIO_MOVE_CAST(Args)(args)...);
|
674
|
+
result_ = &value;
|
675
|
+
this->resume();
|
676
|
+
}
|
677
|
+
|
678
|
+
static return_type on_resume(result_type& result)
|
679
|
+
{
|
680
|
+
return ASIO_MOVE_CAST(return_type)(*result);
|
681
|
+
}
|
682
|
+
|
683
|
+
private:
|
684
|
+
result_type& result_;
|
685
|
+
};
|
686
|
+
|
687
|
+
template <typename Executor, typename R, typename... Ts>
|
688
|
+
class spawn_handler<Executor, R(asio::error_code, Ts...)>
|
689
|
+
: public spawn_handler_base<Executor>
|
690
|
+
{
|
691
|
+
public:
|
692
|
+
typedef std::tuple<Ts...> return_type;
|
314
693
|
|
315
|
-
|
316
|
-
struct spawn_data : private noncopyable
|
694
|
+
struct result_type
|
317
695
|
{
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
696
|
+
asio::error_code* ec_;
|
697
|
+
return_type* value_;
|
698
|
+
};
|
699
|
+
|
700
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
701
|
+
: spawn_handler_base<Executor>(yield),
|
702
|
+
result_(result)
|
703
|
+
{
|
704
|
+
}
|
705
|
+
|
706
|
+
template <typename... Args>
|
707
|
+
void operator()(asio::error_code ec,
|
708
|
+
ASIO_MOVE_ARG(Args)... args)
|
709
|
+
{
|
710
|
+
return_type value(ASIO_MOVE_CAST(Args)(args)...);
|
711
|
+
if (this->yield_.ec_)
|
324
712
|
{
|
713
|
+
*this->yield_.ec_ = ec;
|
714
|
+
result_.ec_ = 0;
|
325
715
|
}
|
716
|
+
else
|
717
|
+
result_.ec_ = &ec;
|
718
|
+
result_.value_ = &value;
|
719
|
+
this->resume();
|
720
|
+
}
|
326
721
|
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
722
|
+
static return_type on_resume(result_type& result)
|
723
|
+
{
|
724
|
+
if (result.ec_)
|
725
|
+
throw_error(*result.ec_);
|
726
|
+
return ASIO_MOVE_CAST(return_type)(*result.value_);
|
727
|
+
}
|
728
|
+
|
729
|
+
private:
|
730
|
+
result_type& result_;
|
731
|
+
};
|
732
|
+
|
733
|
+
template <typename Executor, typename R, typename... Ts>
|
734
|
+
class spawn_handler<Executor, R(exception_ptr, Ts...)>
|
735
|
+
: public spawn_handler_base<Executor>
|
736
|
+
{
|
737
|
+
public:
|
738
|
+
typedef std::tuple<Ts...> return_type;
|
739
|
+
|
740
|
+
struct result_type
|
741
|
+
{
|
742
|
+
exception_ptr ex_;
|
743
|
+
return_type* value_;
|
331
744
|
};
|
332
745
|
|
333
|
-
|
334
|
-
|
746
|
+
spawn_handler(const basic_yield_context<Executor>& yield, result_type& result)
|
747
|
+
: spawn_handler_base<Executor>(yield),
|
748
|
+
result_(result)
|
749
|
+
{
|
750
|
+
}
|
751
|
+
|
752
|
+
template <typename... Args>
|
753
|
+
void operator()(exception_ptr ex, ASIO_MOVE_ARG(Args)... args)
|
335
754
|
{
|
336
|
-
|
755
|
+
return_type value(ASIO_MOVE_CAST(Args)(args)...);
|
756
|
+
result_.ex_ = &ex;
|
757
|
+
result_.value_ = &value;
|
758
|
+
this->resume();
|
759
|
+
}
|
760
|
+
|
761
|
+
static return_type on_resume(result_type& result)
|
762
|
+
{
|
763
|
+
if (result.ex_)
|
764
|
+
rethrow_exception(*result.ex_);
|
765
|
+
return ASIO_MOVE_CAST(return_type)(*result.value_);
|
766
|
+
}
|
767
|
+
|
768
|
+
private:
|
769
|
+
result_type& result_;
|
770
|
+
};
|
771
|
+
|
772
|
+
#endif // defined(ASIO_HAS_VARIADIC_TEMPLATES)
|
773
|
+
// && defined(ASIO_HAS_STD_TUPLE)
|
774
|
+
|
775
|
+
template <typename Executor, typename Signature>
|
776
|
+
inline bool asio_handler_is_continuation(spawn_handler<Executor, Signature>*)
|
777
|
+
{
|
778
|
+
return true;
|
779
|
+
}
|
780
|
+
|
781
|
+
} // namespace detail
|
782
|
+
|
783
|
+
template <typename Executor, typename Signature>
|
784
|
+
class async_result<basic_yield_context<Executor>, Signature>
|
785
|
+
{
|
786
|
+
public:
|
787
|
+
typedef typename detail::spawn_handler<Executor, Signature> handler_type;
|
788
|
+
typedef typename handler_type::return_type return_type;
|
789
|
+
|
790
|
+
#if defined(ASIO_HAS_VARIADIC_TEMPLATES)
|
791
|
+
# if defined(ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
792
|
+
|
793
|
+
template <typename Initiation, typename... InitArgs>
|
794
|
+
static return_type initiate(ASIO_MOVE_ARG(Initiation) init,
|
795
|
+
const basic_yield_context<Executor>& yield,
|
796
|
+
ASIO_MOVE_ARG(InitArgs)... init_args)
|
797
|
+
{
|
798
|
+
typename handler_type::result_type result
|
799
|
+
= typename handler_type::result_type();
|
800
|
+
|
801
|
+
yield.spawned_thread_->suspend_with(
|
802
|
+
[&]()
|
803
|
+
{
|
804
|
+
ASIO_MOVE_CAST(Initiation)(init)(
|
805
|
+
handler_type(yield, result),
|
806
|
+
ASIO_MOVE_CAST(InitArgs)(init_args)...);
|
807
|
+
});
|
808
|
+
|
809
|
+
return handler_type::on_resume(result);
|
810
|
+
}
|
811
|
+
|
812
|
+
# else // defined(ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
813
|
+
|
814
|
+
template <typename Initiation, typename... InitArgs>
|
815
|
+
struct suspend_with_helper
|
816
|
+
{
|
817
|
+
typename handler_type::result_type& result_;
|
818
|
+
ASIO_MOVE_ARG(Initiation) init_;
|
819
|
+
const basic_yield_context<Executor>& yield_;
|
820
|
+
std::tuple<ASIO_MOVE_ARG(InitArgs)...> init_args_;
|
821
|
+
|
822
|
+
template <std::size_t... I>
|
823
|
+
void do_invoke(detail::index_sequence<I...>)
|
337
824
|
{
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
#endif // !defined(BOOST_COROUTINES_UNIDIRECT) && !defined(BOOST_COROUTINES_V2)
|
342
|
-
const basic_yield_context<Handler> yield(
|
343
|
-
data->coro_, ca, data->handler_);
|
344
|
-
|
345
|
-
(data->function_)(yield);
|
346
|
-
if (data->call_handler_)
|
347
|
-
ASIO_MOVE_OR_LVALUE(Handler)(data->handler_)();
|
825
|
+
ASIO_MOVE_CAST(Initiation)(init_)(
|
826
|
+
handler_type(yield_, result_),
|
827
|
+
ASIO_MOVE_CAST(InitArgs)(std::get<I>(init_args_))...);
|
348
828
|
}
|
349
829
|
|
350
|
-
|
830
|
+
void operator()()
|
831
|
+
{
|
832
|
+
this->do_invoke(detail::make_index_sequence<sizeof...(InitArgs)>());
|
833
|
+
}
|
351
834
|
};
|
352
835
|
|
353
|
-
template <typename
|
354
|
-
|
836
|
+
template <typename Initiation, typename... InitArgs>
|
837
|
+
static return_type initiate(ASIO_MOVE_ARG(Initiation) init,
|
838
|
+
const basic_yield_context<Executor>& yield,
|
839
|
+
ASIO_MOVE_ARG(InitArgs)... init_args)
|
355
840
|
{
|
356
|
-
|
841
|
+
typename handler_type::result_type result
|
842
|
+
= typename handler_type::result_type();
|
357
843
|
|
358
|
-
|
844
|
+
yield.spawned_thread_->suspend_with(
|
845
|
+
suspend_with_helper<Initiation, InitArgs...>{
|
846
|
+
result, ASIO_MOVE_CAST(Initiation)(init), yield,
|
847
|
+
std::tuple<ASIO_MOVE_ARG(InitArgs)...>(
|
848
|
+
ASIO_MOVE_CAST(InitArgs)(init_args)...)});
|
849
|
+
|
850
|
+
return handler_type::on_resume(result);
|
851
|
+
}
|
852
|
+
|
853
|
+
# endif // defined(ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
854
|
+
#else // defined(ASIO_HAS_VARIADIC_TEMPLATES)
|
855
|
+
|
856
|
+
template <typename Initiation>
|
857
|
+
static return_type initiate(Initiation init,
|
858
|
+
const basic_yield_context<Executor>& yield)
|
859
|
+
{
|
860
|
+
typename handler_type::result_type result
|
861
|
+
= typename handler_type::result_type();
|
862
|
+
|
863
|
+
struct on_suspend
|
359
864
|
{
|
360
|
-
|
361
|
-
|
865
|
+
Initiation& init_;
|
866
|
+
const basic_yield_context<Executor>& yield_;
|
867
|
+
typename handler_type::result_type& result_;
|
362
868
|
|
363
|
-
|
869
|
+
void do_call()
|
870
|
+
{
|
871
|
+
ASIO_MOVE_CAST(Initiation)(init_)(
|
872
|
+
handler_type(yield_, result_));
|
873
|
+
}
|
874
|
+
|
875
|
+
static void call(void* arg)
|
876
|
+
{
|
877
|
+
static_cast<on_suspend*>(arg)->do_call();
|
878
|
+
}
|
879
|
+
} o = { init, yield, result };
|
880
|
+
|
881
|
+
yield.spawned_thread_->suspend_with(&on_suspend::call, &o);
|
882
|
+
|
883
|
+
return handler_type::on_resume(result);
|
884
|
+
}
|
885
|
+
|
886
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS(n) \
|
887
|
+
ASIO_PRIVATE_ON_SUSPEND_MEMBERS_##n
|
888
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_1 \
|
889
|
+
T1& x1;
|
890
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_2 \
|
891
|
+
T1& x1; T2& x2;
|
892
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_3 \
|
893
|
+
T1& x1; T2& x2; T3& x3;
|
894
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_4 \
|
895
|
+
T1& x1; T2& x2; T3& x3; T4& x4;
|
896
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_5 \
|
897
|
+
T1& x1; T2& x2; T3& x3; T4& x4; T5& x5;
|
898
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_6 \
|
899
|
+
T1& x1; T2& x2; T3& x3; T4& x4; T5& x5; T6& x6;
|
900
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_7 \
|
901
|
+
T1& x1; T2& x2; T3& x3; T4& x4; T5& x5; T6& x6; T7& x7;
|
902
|
+
#define ASIO_PRIVATE_ON_SUSPEND_MEMBERS_8 \
|
903
|
+
T1& x1; T2& x2; T3& x3; T4& x4; T5& x5; T6& x6; T7& x7; T8& x8;
|
904
|
+
|
905
|
+
#define ASIO_PRIVATE_INITIATE_DEF(n) \
|
906
|
+
template <typename Initiation, ASIO_VARIADIC_TPARAMS(n)> \
|
907
|
+
static return_type initiate(Initiation init, \
|
908
|
+
const basic_yield_context<Executor>& yield, \
|
909
|
+
ASIO_VARIADIC_BYVAL_PARAMS(n)) \
|
910
|
+
{ \
|
911
|
+
typename handler_type::result_type result \
|
912
|
+
= typename handler_type::result_type(); \
|
913
|
+
\
|
914
|
+
struct on_suspend \
|
915
|
+
{ \
|
916
|
+
Initiation& init; \
|
917
|
+
const basic_yield_context<Executor>& yield; \
|
918
|
+
typename handler_type::result_type& result; \
|
919
|
+
ASIO_PRIVATE_ON_SUSPEND_MEMBERS(n) \
|
920
|
+
\
|
921
|
+
void do_call() \
|
922
|
+
{ \
|
923
|
+
ASIO_MOVE_CAST(Initiation)(init)( \
|
924
|
+
handler_type(yield, result), \
|
925
|
+
ASIO_VARIADIC_MOVE_ARGS(n)); \
|
926
|
+
} \
|
927
|
+
\
|
928
|
+
static void call(void* arg) \
|
929
|
+
{ \
|
930
|
+
static_cast<on_suspend*>(arg)->do_call(); \
|
931
|
+
} \
|
932
|
+
} o = { init, yield, result, ASIO_VARIADIC_BYVAL_ARGS(n) }; \
|
933
|
+
\
|
934
|
+
yield.spawned_thread_->suspend_with(&on_suspend::call, &o); \
|
935
|
+
\
|
936
|
+
return handler_type::on_resume(result); \
|
937
|
+
} \
|
938
|
+
/**/
|
939
|
+
ASIO_VARIADIC_GENERATE(ASIO_PRIVATE_INITIATE_DEF)
|
940
|
+
#undef ASIO_PRIVATE_INITIATE_DEF
|
941
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS
|
942
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_1
|
943
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_2
|
944
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_3
|
945
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_4
|
946
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_5
|
947
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_6
|
948
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_7
|
949
|
+
#undef ASIO_PRIVATE_ON_SUSPEND_MEMBERS_8
|
950
|
+
|
951
|
+
#endif // defined(ASIO_HAS_VARIADIC_TEMPLATES)
|
952
|
+
};
|
364
953
|
|
365
|
-
|
954
|
+
namespace detail {
|
955
|
+
|
956
|
+
template <typename Executor, typename Function, typename Handler>
|
957
|
+
class spawn_entry_point
|
958
|
+
{
|
959
|
+
public:
|
960
|
+
template <typename F, typename H>
|
961
|
+
spawn_entry_point(const Executor& ex,
|
962
|
+
ASIO_MOVE_ARG(F) f, ASIO_MOVE_ARG(H) h)
|
963
|
+
: executor_(ex),
|
964
|
+
function_(ASIO_MOVE_CAST(F)(f)),
|
965
|
+
handler_(ASIO_MOVE_CAST(H)(h))
|
966
|
+
{
|
967
|
+
}
|
968
|
+
|
969
|
+
void operator()(spawned_thread_base* spawned_thread)
|
970
|
+
{
|
971
|
+
const basic_yield_context<Executor> yield(spawned_thread, executor_);
|
972
|
+
this->call(yield,
|
973
|
+
void_type<typename result_of<Function(
|
974
|
+
basic_yield_context<Executor>)>::type>());
|
975
|
+
}
|
976
|
+
|
977
|
+
private:
|
978
|
+
void call(const basic_yield_context<Executor>& yield, void_type<void>)
|
979
|
+
{
|
980
|
+
#if !defined(ASIO_NO_EXCEPTIONS)
|
981
|
+
try
|
982
|
+
#endif // !defined(ASIO_NO_EXCEPTIONS)
|
983
|
+
{
|
984
|
+
function_(yield);
|
985
|
+
if (!yield.spawned_thread_->has_context_switched())
|
986
|
+
(post)(yield);
|
987
|
+
ASIO_MOVE_OR_LVALUE(Handler)(handler_)(exception_ptr());
|
988
|
+
}
|
989
|
+
#if !defined(ASIO_NO_EXCEPTIONS)
|
990
|
+
# if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
991
|
+
catch (const boost::context::detail::forced_unwind&)
|
992
|
+
{
|
993
|
+
throw;
|
994
|
+
}
|
995
|
+
# endif // defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
996
|
+
# if defined(ASIO_HAS_BOOST_COROUTINE)
|
997
|
+
catch (const boost::coroutines::detail::forced_unwind&)
|
366
998
|
{
|
367
|
-
|
999
|
+
throw;
|
368
1000
|
}
|
1001
|
+
# endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
1002
|
+
catch (...)
|
1003
|
+
{
|
1004
|
+
exception_ptr ex = current_exception();
|
1005
|
+
if (!yield.spawned_thread_->has_context_switched())
|
1006
|
+
(post)(yield);
|
1007
|
+
ASIO_MOVE_OR_LVALUE(Handler)(handler_)(ex);
|
1008
|
+
}
|
1009
|
+
#endif // !defined(ASIO_NO_EXCEPTIONS)
|
1010
|
+
}
|
369
1011
|
|
370
|
-
|
1012
|
+
template <typename T>
|
1013
|
+
void call(const basic_yield_context<Executor>& yield, void_type<T>)
|
1014
|
+
{
|
1015
|
+
#if !defined(ASIO_NO_EXCEPTIONS)
|
1016
|
+
try
|
1017
|
+
#endif // !defined(ASIO_NO_EXCEPTIONS)
|
1018
|
+
{
|
1019
|
+
T result(function_(yield));
|
1020
|
+
if (!yield.spawned_thread_->has_context_switched())
|
1021
|
+
(post)(yield);
|
1022
|
+
ASIO_MOVE_OR_LVALUE(Handler)(handler_)(
|
1023
|
+
exception_ptr(), ASIO_MOVE_CAST(T)(result));
|
1024
|
+
}
|
1025
|
+
#if !defined(ASIO_NO_EXCEPTIONS)
|
1026
|
+
# if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
1027
|
+
catch (const boost::context::detail::forced_unwind&)
|
371
1028
|
{
|
372
|
-
|
373
|
-
coro_entry_point<Handler, Function> entry_point = { data_ };
|
374
|
-
shared_ptr<callee_type> coro(new callee_type(entry_point, attributes_));
|
375
|
-
data_->coro_ = coro;
|
376
|
-
(*coro)();
|
1029
|
+
throw;
|
377
1030
|
}
|
1031
|
+
# endif // defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
1032
|
+
# if defined(ASIO_HAS_BOOST_COROUTINE)
|
1033
|
+
catch (const boost::coroutines::detail::forced_unwind&)
|
1034
|
+
{
|
1035
|
+
throw;
|
1036
|
+
}
|
1037
|
+
# endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
1038
|
+
catch (...)
|
1039
|
+
{
|
1040
|
+
exception_ptr ex = current_exception();
|
1041
|
+
if (!yield.spawned_thread_->has_context_switched())
|
1042
|
+
(post)(yield);
|
1043
|
+
ASIO_MOVE_OR_LVALUE(Handler)(handler_)(ex, T());
|
1044
|
+
}
|
1045
|
+
#endif // !defined(ASIO_NO_EXCEPTIONS)
|
1046
|
+
}
|
378
1047
|
|
379
|
-
|
380
|
-
|
381
|
-
|
1048
|
+
Executor executor_;
|
1049
|
+
Function function_;
|
1050
|
+
Handler handler_;
|
1051
|
+
};
|
1052
|
+
|
1053
|
+
struct spawn_cancellation_signal_emitter
|
1054
|
+
{
|
1055
|
+
cancellation_signal* signal_;
|
1056
|
+
cancellation_type_t type_;
|
382
1057
|
|
383
|
-
|
384
|
-
inline asio_handler_invoke_is_deprecated
|
385
|
-
asio_handler_invoke(Function& function,
|
386
|
-
spawn_helper<Handler, Function1>* this_handler)
|
1058
|
+
void operator()()
|
387
1059
|
{
|
388
|
-
|
389
|
-
function, this_handler->data_->handler_);
|
390
|
-
#if defined(ASIO_NO_DEPRECATED)
|
391
|
-
return asio_handler_invoke_is_no_longer_used();
|
392
|
-
#endif // defined(ASIO_NO_DEPRECATED)
|
1060
|
+
signal_->emit(type_);
|
393
1061
|
}
|
1062
|
+
};
|
394
1063
|
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
1064
|
+
template <typename Handler, typename Executor, typename = void>
|
1065
|
+
class spawn_cancellation_handler
|
1066
|
+
{
|
1067
|
+
public:
|
1068
|
+
spawn_cancellation_handler(const Handler& handler, const Executor& ex)
|
1069
|
+
: ex_(asio::get_associated_executor(handler, ex))
|
399
1070
|
{
|
400
|
-
asio_handler_invoke_helpers::invoke(
|
401
|
-
function, this_handler->data_->handler_);
|
402
|
-
#if defined(ASIO_NO_DEPRECATED)
|
403
|
-
return asio_handler_invoke_is_no_longer_used();
|
404
|
-
#endif // defined(ASIO_NO_DEPRECATED)
|
405
1071
|
}
|
406
1072
|
|
407
|
-
|
1073
|
+
cancellation_slot slot()
|
1074
|
+
{
|
1075
|
+
return signal_.slot();
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
void operator()(cancellation_type_t type)
|
1079
|
+
{
|
1080
|
+
spawn_cancellation_signal_emitter emitter = { &signal_, type };
|
1081
|
+
(dispatch)(ex_, emitter);
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
private:
|
1085
|
+
cancellation_signal signal_;
|
1086
|
+
typename associated_executor<Handler, Executor>::type ex_;
|
1087
|
+
};
|
1088
|
+
|
1089
|
+
|
1090
|
+
template <typename Handler, typename Executor>
|
1091
|
+
class spawn_cancellation_handler<Handler, Executor,
|
1092
|
+
typename enable_if<
|
1093
|
+
is_same<
|
1094
|
+
typename associated_executor<Handler,
|
1095
|
+
Executor>::asio_associated_executor_is_unspecialised,
|
1096
|
+
void
|
1097
|
+
>::value
|
1098
|
+
>::type>
|
1099
|
+
{
|
1100
|
+
public:
|
1101
|
+
spawn_cancellation_handler(const Handler&, const Executor&)
|
1102
|
+
{
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
cancellation_slot slot()
|
1106
|
+
{
|
1107
|
+
return signal_.slot();
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
void operator()(cancellation_type_t type)
|
1111
|
+
{
|
1112
|
+
signal_.emit(type);
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
private:
|
1116
|
+
cancellation_signal signal_;
|
1117
|
+
};
|
1118
|
+
|
1119
|
+
template <typename Executor>
|
1120
|
+
class initiate_spawn
|
1121
|
+
{
|
1122
|
+
public:
|
1123
|
+
typedef Executor executor_type;
|
1124
|
+
|
1125
|
+
explicit initiate_spawn(const executor_type& ex)
|
1126
|
+
: executor_(ex)
|
1127
|
+
{
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
executor_type get_executor() const ASIO_NOEXCEPT
|
1131
|
+
{
|
1132
|
+
return executor_;
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
template <typename Handler, typename F>
|
1136
|
+
void operator()(ASIO_MOVE_ARG(Handler) handler,
|
1137
|
+
ASIO_MOVE_ARG(F) f) const
|
1138
|
+
{
|
1139
|
+
typedef typename decay<Handler>::type handler_type;
|
1140
|
+
typedef typename decay<F>::type function_type;
|
1141
|
+
typedef spawn_cancellation_handler<
|
1142
|
+
handler_type, Executor> cancel_handler_type;
|
1143
|
+
|
1144
|
+
typename associated_cancellation_slot<handler_type>::type slot
|
1145
|
+
= asio::get_associated_cancellation_slot(handler);
|
1146
|
+
|
1147
|
+
cancel_handler_type* cancel_handler = slot.is_connected()
|
1148
|
+
? &slot.template emplace<cancel_handler_type>(handler, executor_)
|
1149
|
+
: 0;
|
1150
|
+
|
1151
|
+
cancellation_slot proxy_slot(
|
1152
|
+
cancel_handler
|
1153
|
+
? cancel_handler->slot()
|
1154
|
+
: cancellation_slot());
|
1155
|
+
|
1156
|
+
cancellation_state cancel_state(proxy_slot);
|
1157
|
+
|
1158
|
+
(dispatch)(executor_,
|
1159
|
+
spawned_thread_resumer(
|
1160
|
+
default_spawned_thread_type::spawn(
|
1161
|
+
spawn_entry_point<Executor, function_type, handler_type>(
|
1162
|
+
executor_, ASIO_MOVE_CAST(F)(f),
|
1163
|
+
ASIO_MOVE_CAST(Handler)(handler)),
|
1164
|
+
proxy_slot, cancel_state)));
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
#if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
1168
|
+
|
1169
|
+
template <typename Handler, typename StackAllocator, typename F>
|
1170
|
+
void operator()(ASIO_MOVE_ARG(Handler) handler, allocator_arg_t,
|
1171
|
+
ASIO_MOVE_ARG(StackAllocator) stack_allocator,
|
1172
|
+
ASIO_MOVE_ARG(F) f) const
|
1173
|
+
{
|
1174
|
+
typedef typename decay<Handler>::type handler_type;
|
1175
|
+
typedef typename decay<F>::type function_type;
|
1176
|
+
typedef spawn_cancellation_handler<
|
1177
|
+
handler_type, Executor> cancel_handler_type;
|
1178
|
+
|
1179
|
+
typename associated_cancellation_slot<handler_type>::type slot
|
1180
|
+
= asio::get_associated_cancellation_slot(handler);
|
1181
|
+
|
1182
|
+
cancel_handler_type* cancel_handler = slot.is_connected()
|
1183
|
+
? &slot.template emplace<cancel_handler_type>(handler, executor_)
|
1184
|
+
: 0;
|
1185
|
+
|
1186
|
+
cancellation_slot proxy_slot(
|
1187
|
+
cancel_handler
|
1188
|
+
? cancel_handler->slot()
|
1189
|
+
: cancellation_slot());
|
1190
|
+
|
1191
|
+
cancellation_state cancel_state(proxy_slot);
|
1192
|
+
|
1193
|
+
(dispatch)(executor_,
|
1194
|
+
spawned_thread_resumer(
|
1195
|
+
spawned_fiber_thread::spawn(allocator_arg_t(),
|
1196
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1197
|
+
spawn_entry_point<Executor, function_type, handler_type>(
|
1198
|
+
executor_, ASIO_MOVE_CAST(F)(f),
|
1199
|
+
ASIO_MOVE_CAST(Handler)(handler)),
|
1200
|
+
proxy_slot, cancel_state)));
|
1201
|
+
}
|
1202
|
+
|
1203
|
+
#endif // defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
1204
|
+
|
1205
|
+
private:
|
1206
|
+
executor_type executor_;
|
1207
|
+
};
|
1208
|
+
|
1209
|
+
} // namespace detail
|
1210
|
+
|
1211
|
+
template <typename Executor, typename F,
|
1212
|
+
ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
1213
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1214
|
+
CompletionToken>
|
1215
|
+
inline ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(CompletionToken,
|
1216
|
+
typename detail::spawn_signature<
|
1217
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1218
|
+
spawn(const Executor& ex, ASIO_MOVE_ARG(F) function,
|
1219
|
+
ASIO_MOVE_ARG(CompletionToken) token,
|
1220
|
+
#if defined(ASIO_HAS_BOOST_COROUTINE)
|
1221
|
+
typename constraint<
|
1222
|
+
!is_same<
|
1223
|
+
typename decay<CompletionToken>::type,
|
1224
|
+
boost::coroutines::attributes
|
1225
|
+
>::value
|
1226
|
+
>::type,
|
1227
|
+
#endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
1228
|
+
typename constraint<
|
1229
|
+
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
1230
|
+
>::type)
|
1231
|
+
ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1232
|
+
async_initiate<CompletionToken,
|
1233
|
+
typename detail::spawn_signature<
|
1234
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type>(
|
1235
|
+
declval<detail::initiate_spawn<Executor> >(),
|
1236
|
+
token, ASIO_MOVE_CAST(F)(function))))
|
1237
|
+
{
|
1238
|
+
return async_initiate<CompletionToken,
|
1239
|
+
typename detail::spawn_signature<
|
1240
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type>(
|
1241
|
+
detail::initiate_spawn<Executor>(ex),
|
1242
|
+
token, ASIO_MOVE_CAST(F)(function));
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
template <typename ExecutionContext, typename F,
|
1246
|
+
ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
1247
|
+
typename result_of<F(basic_yield_context<
|
1248
|
+
typename ExecutionContext::executor_type>)>::type>::type)
|
1249
|
+
CompletionToken>
|
1250
|
+
inline ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(CompletionToken,
|
1251
|
+
typename detail::spawn_signature<
|
1252
|
+
typename result_of<F(basic_yield_context<
|
1253
|
+
typename ExecutionContext::executor_type>)>::type>::type)
|
1254
|
+
spawn(ExecutionContext& ctx, ASIO_MOVE_ARG(F) function,
|
1255
|
+
ASIO_MOVE_ARG(CompletionToken) token,
|
1256
|
+
#if defined(ASIO_HAS_BOOST_COROUTINE)
|
1257
|
+
typename constraint<
|
1258
|
+
!is_same<
|
1259
|
+
typename decay<CompletionToken>::type,
|
1260
|
+
boost::coroutines::attributes
|
1261
|
+
>::value
|
1262
|
+
>::type,
|
1263
|
+
#endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
1264
|
+
typename constraint<
|
1265
|
+
is_convertible<ExecutionContext&, execution_context&>::value
|
1266
|
+
>::type)
|
1267
|
+
ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1268
|
+
async_initiate<CompletionToken,
|
1269
|
+
typename detail::spawn_signature<
|
1270
|
+
typename result_of<F(basic_yield_context<
|
1271
|
+
typename ExecutionContext::executor_type>)>::type>::type>(
|
1272
|
+
declval<detail::initiate_spawn<
|
1273
|
+
typename ExecutionContext::executor_type> >(),
|
1274
|
+
token, ASIO_MOVE_CAST(F)(function))))
|
1275
|
+
{
|
1276
|
+
return (spawn)(ctx.get_executor(), ASIO_MOVE_CAST(F)(function),
|
1277
|
+
ASIO_MOVE_CAST(CompletionToken)(token));
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
template <typename Executor, typename F,
|
1281
|
+
ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
1282
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1283
|
+
CompletionToken>
|
1284
|
+
inline ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(CompletionToken,
|
1285
|
+
typename detail::spawn_signature<
|
1286
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1287
|
+
spawn(const basic_yield_context<Executor>& ctx,
|
1288
|
+
ASIO_MOVE_ARG(F) function,
|
1289
|
+
ASIO_MOVE_ARG(CompletionToken) token,
|
1290
|
+
#if defined(ASIO_HAS_BOOST_COROUTINE)
|
1291
|
+
typename constraint<
|
1292
|
+
!is_same<
|
1293
|
+
typename decay<CompletionToken>::type,
|
1294
|
+
boost::coroutines::attributes
|
1295
|
+
>::value
|
1296
|
+
>::type,
|
1297
|
+
#endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
1298
|
+
typename constraint<
|
1299
|
+
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
1300
|
+
>::type)
|
1301
|
+
ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1302
|
+
async_initiate<CompletionToken,
|
1303
|
+
typename detail::spawn_signature<
|
1304
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type>(
|
1305
|
+
declval<detail::initiate_spawn<Executor> >(),
|
1306
|
+
token, ASIO_MOVE_CAST(F)(function))))
|
1307
|
+
{
|
1308
|
+
return (spawn)(ctx.get_executor(), ASIO_MOVE_CAST(F)(function),
|
1309
|
+
ASIO_MOVE_CAST(CompletionToken)(token));
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
#if defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
1313
|
+
|
1314
|
+
template <typename Executor, typename StackAllocator, typename F,
|
1315
|
+
ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
1316
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1317
|
+
CompletionToken>
|
1318
|
+
inline ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(CompletionToken,
|
1319
|
+
typename detail::spawn_signature<
|
1320
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1321
|
+
spawn(const Executor& ex, allocator_arg_t,
|
1322
|
+
ASIO_MOVE_ARG(StackAllocator) stack_allocator,
|
1323
|
+
ASIO_MOVE_ARG(F) function,
|
1324
|
+
ASIO_MOVE_ARG(CompletionToken) token,
|
1325
|
+
typename constraint<
|
1326
|
+
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
1327
|
+
>::type)
|
1328
|
+
ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1329
|
+
async_initiate<CompletionToken,
|
1330
|
+
typename detail::spawn_signature<
|
1331
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type>(
|
1332
|
+
declval<detail::initiate_spawn<Executor> >(),
|
1333
|
+
token, allocator_arg_t(),
|
1334
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1335
|
+
ASIO_MOVE_CAST(F)(function))))
|
1336
|
+
{
|
1337
|
+
return async_initiate<CompletionToken,
|
1338
|
+
typename detail::spawn_signature<
|
1339
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type>(
|
1340
|
+
detail::initiate_spawn<Executor>(ex), token, allocator_arg_t(),
|
1341
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1342
|
+
ASIO_MOVE_CAST(F)(function));
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
template <typename ExecutionContext, typename StackAllocator, typename F,
|
1346
|
+
ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
1347
|
+
typename result_of<F(basic_yield_context<
|
1348
|
+
typename ExecutionContext::executor_type>)>::type>::type)
|
1349
|
+
CompletionToken>
|
1350
|
+
inline ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(CompletionToken,
|
1351
|
+
typename detail::spawn_signature<
|
1352
|
+
typename result_of<F(basic_yield_context<
|
1353
|
+
typename ExecutionContext::executor_type>)>::type>::type)
|
1354
|
+
spawn(ExecutionContext& ctx, allocator_arg_t,
|
1355
|
+
ASIO_MOVE_ARG(StackAllocator) stack_allocator,
|
1356
|
+
ASIO_MOVE_ARG(F) function,
|
1357
|
+
ASIO_MOVE_ARG(CompletionToken) token,
|
1358
|
+
typename constraint<
|
1359
|
+
is_convertible<ExecutionContext&, execution_context&>::value
|
1360
|
+
>::type)
|
1361
|
+
ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1362
|
+
async_initiate<CompletionToken,
|
1363
|
+
typename detail::spawn_signature<
|
1364
|
+
typename result_of<F(basic_yield_context<
|
1365
|
+
typename ExecutionContext::executor_type>)>::type>::type>(
|
1366
|
+
declval<detail::initiate_spawn<
|
1367
|
+
typename ExecutionContext::executor_type> >(),
|
1368
|
+
token, allocator_arg_t(),
|
1369
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1370
|
+
ASIO_MOVE_CAST(F)(function))))
|
1371
|
+
{
|
1372
|
+
return (spawn)(ctx.get_executor(), allocator_arg_t(),
|
1373
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1374
|
+
ASIO_MOVE_CAST(F)(function),
|
1375
|
+
ASIO_MOVE_CAST(CompletionToken)(token));
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
template <typename Executor, typename StackAllocator, typename F,
|
1379
|
+
ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
1380
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1381
|
+
CompletionToken>
|
1382
|
+
inline ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(CompletionToken,
|
1383
|
+
typename detail::spawn_signature<
|
1384
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type)
|
1385
|
+
spawn(const basic_yield_context<Executor>& ctx, allocator_arg_t,
|
1386
|
+
ASIO_MOVE_ARG(StackAllocator) stack_allocator,
|
1387
|
+
ASIO_MOVE_ARG(F) function,
|
1388
|
+
ASIO_MOVE_ARG(CompletionToken) token,
|
1389
|
+
typename constraint<
|
1390
|
+
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
1391
|
+
>::type)
|
1392
|
+
ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1393
|
+
async_initiate<CompletionToken,
|
1394
|
+
typename detail::spawn_signature<
|
1395
|
+
typename result_of<F(basic_yield_context<Executor>)>::type>::type>(
|
1396
|
+
declval<detail::initiate_spawn<Executor> >(),
|
1397
|
+
token, allocator_arg_t(),
|
1398
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1399
|
+
ASIO_MOVE_CAST(F)(function))))
|
1400
|
+
{
|
1401
|
+
return (spawn)(ctx.get_executor(), allocator_arg_t(),
|
1402
|
+
ASIO_MOVE_CAST(StackAllocator)(stack_allocator),
|
1403
|
+
ASIO_MOVE_CAST(F)(function),
|
1404
|
+
ASIO_MOVE_CAST(CompletionToken)(token));
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
#endif // defined(ASIO_HAS_BOOST_CONTEXT_FIBER)
|
1408
|
+
|
1409
|
+
#if defined(ASIO_HAS_BOOST_COROUTINE)
|
1410
|
+
|
1411
|
+
namespace detail {
|
1412
|
+
|
1413
|
+
template <typename Executor, typename Function, typename Handler>
|
1414
|
+
class old_spawn_entry_point
|
1415
|
+
{
|
1416
|
+
public:
|
1417
|
+
template <typename F, typename H>
|
1418
|
+
old_spawn_entry_point(const Executor& ex,
|
1419
|
+
ASIO_MOVE_ARG(F) f, ASIO_MOVE_ARG(H) h)
|
1420
|
+
: executor_(ex),
|
1421
|
+
function_(ASIO_MOVE_CAST(F)(f)),
|
1422
|
+
handler_(ASIO_MOVE_CAST(H)(h))
|
1423
|
+
{
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
void operator()(spawned_thread_base* spawned_thread)
|
1427
|
+
{
|
1428
|
+
const basic_yield_context<Executor> yield(spawned_thread, executor_);
|
1429
|
+
this->call(yield,
|
1430
|
+
void_type<typename result_of<Function(
|
1431
|
+
basic_yield_context<Executor>)>::type>());
|
1432
|
+
}
|
1433
|
+
|
1434
|
+
private:
|
1435
|
+
void call(const basic_yield_context<Executor>& yield, void_type<void>)
|
1436
|
+
{
|
1437
|
+
function_(yield);
|
1438
|
+
ASIO_MOVE_OR_LVALUE(Handler)(handler_)();
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
template <typename T>
|
1442
|
+
void call(const basic_yield_context<Executor>& yield, void_type<T>)
|
1443
|
+
{
|
1444
|
+
ASIO_MOVE_OR_LVALUE(Handler)(handler_)(function_(yield));
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
Executor executor_;
|
1448
|
+
Function function_;
|
1449
|
+
Handler handler_;
|
1450
|
+
};
|
1451
|
+
|
1452
|
+
inline void default_spawn_handler() {}
|
408
1453
|
|
409
1454
|
} // namespace detail
|
410
1455
|
|
@@ -431,34 +1476,33 @@ void spawn(ASIO_MOVE_ARG(Handler) handler,
|
|
431
1476
|
{
|
432
1477
|
typedef typename decay<Handler>::type handler_type;
|
433
1478
|
typedef typename decay<Function>::type function_type;
|
1479
|
+
typedef typename associated_executor<handler_type>::type executor_type;
|
434
1480
|
|
435
|
-
|
436
|
-
helper.data_.reset(
|
437
|
-
new detail::spawn_data<handler_type, function_type>(
|
438
|
-
ASIO_MOVE_CAST(Handler)(handler), true,
|
439
|
-
ASIO_MOVE_CAST(Function)(function)));
|
440
|
-
helper.attributes_ = attributes;
|
1481
|
+
executor_type ex((get_associated_executor)(handler));
|
441
1482
|
|
442
|
-
|
1483
|
+
(dispatch)(ex,
|
1484
|
+
detail::spawned_thread_resumer(
|
1485
|
+
detail::spawned_coroutine_thread::spawn(
|
1486
|
+
detail::old_spawn_entry_point<executor_type,
|
1487
|
+
function_type, void (*)()>(
|
1488
|
+
ex, ASIO_MOVE_CAST(Function)(function),
|
1489
|
+
&detail::default_spawn_handler), attributes)));
|
443
1490
|
}
|
444
1491
|
|
445
|
-
template <typename
|
446
|
-
void spawn(basic_yield_context<
|
1492
|
+
template <typename Executor, typename Function>
|
1493
|
+
void spawn(basic_yield_context<Executor> ctx,
|
447
1494
|
ASIO_MOVE_ARG(Function) function,
|
448
1495
|
const boost::coroutines::attributes& attributes)
|
449
1496
|
{
|
450
1497
|
typedef typename decay<Function>::type function_type;
|
451
1498
|
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
helper.attributes_ = attributes;
|
460
|
-
|
461
|
-
asio::dispatch(helper);
|
1499
|
+
(dispatch)(ctx.get_executor(),
|
1500
|
+
detail::spawned_thread_resumer(
|
1501
|
+
detail::spawned_coroutine_thread::spawn(
|
1502
|
+
detail::old_spawn_entry_point<Executor,
|
1503
|
+
function_type, void (*)()>(ctx.get_executor(),
|
1504
|
+
ASIO_MOVE_CAST(Function)(function),
|
1505
|
+
&detail::default_spawn_handler), attributes)));
|
462
1506
|
}
|
463
1507
|
|
464
1508
|
template <typename Function, typename Executor>
|
@@ -508,7 +1552,7 @@ inline void spawn(ExecutionContext& ctx,
|
|
508
1552
|
ASIO_MOVE_CAST(Function)(function), attributes);
|
509
1553
|
}
|
510
1554
|
|
511
|
-
#endif //
|
1555
|
+
#endif // defined(ASIO_HAS_BOOST_COROUTINE)
|
512
1556
|
|
513
1557
|
} // namespace asio
|
514
1558
|
|