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
@@ -0,0 +1,2571 @@
|
|
1
|
+
///
|
2
|
+
// expected - An implementation of std::expected with extensions
|
3
|
+
// Written in 2017 by Simon Brand (simonrbrand@gmail.com, @TartanLlama)
|
4
|
+
//
|
5
|
+
// Documentation available at http://tl.tartanllama.xyz/
|
6
|
+
//
|
7
|
+
// To the extent possible under law, the author(s) have dedicated all
|
8
|
+
// copyright and related and neighboring rights to this software to the
|
9
|
+
// public domain worldwide. This software is distributed without any warranty.
|
10
|
+
//
|
11
|
+
// You should have received a copy of the CC0 Public Domain Dedication
|
12
|
+
// along with this software. If not, see
|
13
|
+
// <http://creativecommons.org/publicdomain/zero/1.0/>.
|
14
|
+
///
|
15
|
+
|
16
|
+
#ifndef TL_EXPECTED_HPP
|
17
|
+
#define TL_EXPECTED_HPP
|
18
|
+
|
19
|
+
#define TL_EXPECTED_VERSION_MAJOR 1
|
20
|
+
#define TL_EXPECTED_VERSION_MINOR 0
|
21
|
+
#define TL_EXPECTED_VERSION_PATCH 1
|
22
|
+
|
23
|
+
#include <exception>
|
24
|
+
#include <functional>
|
25
|
+
#include <type_traits>
|
26
|
+
#include <utility>
|
27
|
+
|
28
|
+
#if defined(__EXCEPTIONS) || defined(_CPPUNWIND)
|
29
|
+
#define TL_EXPECTED_EXCEPTIONS_ENABLED
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#if (defined(_MSC_VER) && _MSC_VER == 1900)
|
33
|
+
#define TL_EXPECTED_MSVC2015
|
34
|
+
#define TL_EXPECTED_MSVC2015_CONSTEXPR
|
35
|
+
#else
|
36
|
+
#define TL_EXPECTED_MSVC2015_CONSTEXPR constexpr
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#if (defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ <= 9 && !defined(__clang__))
|
40
|
+
#define TL_EXPECTED_GCC49
|
41
|
+
#endif
|
42
|
+
|
43
|
+
#if (defined(__GNUC__) && __GNUC__ == 5 && __GNUC_MINOR__ <= 4 && !defined(__clang__))
|
44
|
+
#define TL_EXPECTED_GCC54
|
45
|
+
#endif
|
46
|
+
|
47
|
+
#if (defined(__GNUC__) && __GNUC__ == 5 && __GNUC_MINOR__ <= 5 && !defined(__clang__))
|
48
|
+
#define TL_EXPECTED_GCC55
|
49
|
+
#endif
|
50
|
+
|
51
|
+
#if (defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ <= 9 && !defined(__clang__))
|
52
|
+
// GCC < 5 doesn't support overloading on const&& for member functions
|
53
|
+
|
54
|
+
#define TL_EXPECTED_NO_CONSTRR
|
55
|
+
// GCC < 5 doesn't support some standard C++11 type traits
|
56
|
+
#define TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(T) std::has_trivial_copy_constructor<T>
|
57
|
+
#define TL_EXPECTED_IS_TRIVIALLY_COPY_ASSIGNABLE(T) std::has_trivial_copy_assign<T>
|
58
|
+
|
59
|
+
// This one will be different for GCC 5.7 if it's ever supported
|
60
|
+
#define TL_EXPECTED_IS_TRIVIALLY_DESTRUCTIBLE(T) std::is_trivially_destructible<T>
|
61
|
+
|
62
|
+
// GCC 5 < v < 8 has a bug in is_trivially_copy_constructible which breaks std::vector
|
63
|
+
// for non-copyable types
|
64
|
+
#elif (defined(__GNUC__) && __GNUC__ < 8 && !defined(__clang__))
|
65
|
+
#ifndef TL_GCC_LESS_8_TRIVIALLY_COPY_CONSTRUCTIBLE_MUTEX
|
66
|
+
#define TL_GCC_LESS_8_TRIVIALLY_COPY_CONSTRUCTIBLE_MUTEX
|
67
|
+
namespace tl
|
68
|
+
{
|
69
|
+
namespace detail
|
70
|
+
{
|
71
|
+
template<class T>
|
72
|
+
struct is_trivially_copy_constructible : std::is_trivially_copy_constructible<T> {
|
73
|
+
};
|
74
|
+
#ifdef _GLIBCXX_VECTOR
|
75
|
+
template<class T, class A>
|
76
|
+
struct is_trivially_copy_constructible<std::vector<T, A>> : std::false_type {
|
77
|
+
};
|
78
|
+
#endif
|
79
|
+
} // namespace detail
|
80
|
+
} // namespace tl
|
81
|
+
#endif
|
82
|
+
|
83
|
+
#define TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(T) tl::detail::is_trivially_copy_constructible<T>
|
84
|
+
#define TL_EXPECTED_IS_TRIVIALLY_COPY_ASSIGNABLE(T) std::is_trivially_copy_assignable<T>
|
85
|
+
#define TL_EXPECTED_IS_TRIVIALLY_DESTRUCTIBLE(T) std::is_trivially_destructible<T>
|
86
|
+
#else
|
87
|
+
#define TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(T) std::is_trivially_copy_constructible<T>
|
88
|
+
#define TL_EXPECTED_IS_TRIVIALLY_COPY_ASSIGNABLE(T) std::is_trivially_copy_assignable<T>
|
89
|
+
#define TL_EXPECTED_IS_TRIVIALLY_DESTRUCTIBLE(T) std::is_trivially_destructible<T>
|
90
|
+
#endif
|
91
|
+
|
92
|
+
#if __cplusplus > 201103L
|
93
|
+
#define TL_EXPECTED_CXX14
|
94
|
+
#endif
|
95
|
+
|
96
|
+
#ifdef TL_EXPECTED_GCC49
|
97
|
+
#define TL_EXPECTED_GCC49_CONSTEXPR
|
98
|
+
#else
|
99
|
+
#define TL_EXPECTED_GCC49_CONSTEXPR constexpr
|
100
|
+
#endif
|
101
|
+
|
102
|
+
#if (__cplusplus == 201103L || defined(TL_EXPECTED_MSVC2015) || defined(TL_EXPECTED_GCC49))
|
103
|
+
#define TL_EXPECTED_11_CONSTEXPR
|
104
|
+
#else
|
105
|
+
#define TL_EXPECTED_11_CONSTEXPR constexpr
|
106
|
+
#endif
|
107
|
+
|
108
|
+
namespace tl
|
109
|
+
{
|
110
|
+
template<class T, class E>
|
111
|
+
class expected;
|
112
|
+
|
113
|
+
#ifndef TL_MONOSTATE_INPLACE_MUTEX
|
114
|
+
#define TL_MONOSTATE_INPLACE_MUTEX
|
115
|
+
class monostate
|
116
|
+
{
|
117
|
+
};
|
118
|
+
|
119
|
+
struct in_place_t {
|
120
|
+
explicit in_place_t() = default;
|
121
|
+
};
|
122
|
+
static constexpr in_place_t in_place{};
|
123
|
+
#endif
|
124
|
+
|
125
|
+
template<class E>
|
126
|
+
class unexpected
|
127
|
+
{
|
128
|
+
public:
|
129
|
+
static_assert(!std::is_same<E, void>::value, "E must not be void");
|
130
|
+
|
131
|
+
unexpected() = delete;
|
132
|
+
constexpr explicit unexpected(const E& e)
|
133
|
+
: m_val(e)
|
134
|
+
{
|
135
|
+
}
|
136
|
+
|
137
|
+
constexpr explicit unexpected(E&& e)
|
138
|
+
: m_val(std::move(e))
|
139
|
+
{
|
140
|
+
}
|
141
|
+
|
142
|
+
constexpr const E& value() const&
|
143
|
+
{
|
144
|
+
return m_val;
|
145
|
+
}
|
146
|
+
TL_EXPECTED_11_CONSTEXPR E& value() &
|
147
|
+
{
|
148
|
+
return m_val;
|
149
|
+
}
|
150
|
+
TL_EXPECTED_11_CONSTEXPR E&& value() &&
|
151
|
+
{
|
152
|
+
return std::move(m_val);
|
153
|
+
}
|
154
|
+
constexpr const E&& value() const&&
|
155
|
+
{
|
156
|
+
return std::move(m_val);
|
157
|
+
}
|
158
|
+
|
159
|
+
private:
|
160
|
+
E m_val;
|
161
|
+
};
|
162
|
+
|
163
|
+
template<class E>
|
164
|
+
constexpr bool
|
165
|
+
operator==(const unexpected<E>& lhs, const unexpected<E>& rhs)
|
166
|
+
{
|
167
|
+
return lhs.value() == rhs.value();
|
168
|
+
}
|
169
|
+
template<class E>
|
170
|
+
constexpr bool
|
171
|
+
operator!=(const unexpected<E>& lhs, const unexpected<E>& rhs)
|
172
|
+
{
|
173
|
+
return lhs.value() != rhs.value();
|
174
|
+
}
|
175
|
+
template<class E>
|
176
|
+
constexpr bool
|
177
|
+
operator<(const unexpected<E>& lhs, const unexpected<E>& rhs)
|
178
|
+
{
|
179
|
+
return lhs.value() < rhs.value();
|
180
|
+
}
|
181
|
+
template<class E>
|
182
|
+
constexpr bool
|
183
|
+
operator<=(const unexpected<E>& lhs, const unexpected<E>& rhs)
|
184
|
+
{
|
185
|
+
return lhs.value() <= rhs.value();
|
186
|
+
}
|
187
|
+
template<class E>
|
188
|
+
constexpr bool
|
189
|
+
operator>(const unexpected<E>& lhs, const unexpected<E>& rhs)
|
190
|
+
{
|
191
|
+
return lhs.value() > rhs.value();
|
192
|
+
}
|
193
|
+
template<class E>
|
194
|
+
constexpr bool
|
195
|
+
operator>=(const unexpected<E>& lhs, const unexpected<E>& rhs)
|
196
|
+
{
|
197
|
+
return lhs.value() >= rhs.value();
|
198
|
+
}
|
199
|
+
|
200
|
+
template<class E>
|
201
|
+
unexpected<typename std::decay<E>::type>
|
202
|
+
make_unexpected(E&& e)
|
203
|
+
{
|
204
|
+
return unexpected<typename std::decay<E>::type>(std::forward<E>(e));
|
205
|
+
}
|
206
|
+
|
207
|
+
struct unexpect_t {
|
208
|
+
unexpect_t() = default;
|
209
|
+
};
|
210
|
+
static constexpr unexpect_t unexpect{};
|
211
|
+
|
212
|
+
namespace detail
|
213
|
+
{
|
214
|
+
template<typename E>
|
215
|
+
[[noreturn]] TL_EXPECTED_11_CONSTEXPR void
|
216
|
+
throw_exception(E&& e)
|
217
|
+
{
|
218
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
219
|
+
throw std::forward<E>(e);
|
220
|
+
#else
|
221
|
+
#ifdef _MSC_VER
|
222
|
+
__assume(0);
|
223
|
+
#else
|
224
|
+
__builtin_unreachable();
|
225
|
+
#endif
|
226
|
+
#endif
|
227
|
+
}
|
228
|
+
|
229
|
+
#ifndef TL_TRAITS_MUTEX
|
230
|
+
#define TL_TRAITS_MUTEX
|
231
|
+
// C++14-style aliases for brevity
|
232
|
+
template<class T>
|
233
|
+
using remove_const_t = typename std::remove_const<T>::type;
|
234
|
+
template<class T>
|
235
|
+
using remove_reference_t = typename std::remove_reference<T>::type;
|
236
|
+
template<class T>
|
237
|
+
using decay_t = typename std::decay<T>::type;
|
238
|
+
template<bool E, class T = void>
|
239
|
+
using enable_if_t = typename std::enable_if<E, T>::type;
|
240
|
+
template<bool B, class T, class F>
|
241
|
+
using conditional_t = typename std::conditional<B, T, F>::type;
|
242
|
+
|
243
|
+
// std::conjunction from C++17
|
244
|
+
template<class...>
|
245
|
+
struct conjunction : std::true_type {
|
246
|
+
};
|
247
|
+
template<class B>
|
248
|
+
struct conjunction<B> : B {
|
249
|
+
};
|
250
|
+
template<class B, class... Bs>
|
251
|
+
struct conjunction<B, Bs...> : std::conditional<bool(B::value), conjunction<Bs...>, B>::type {
|
252
|
+
};
|
253
|
+
|
254
|
+
#if defined(_LIBCPP_VERSION) && __cplusplus == 201103L
|
255
|
+
#define TL_TRAITS_LIBCXX_MEM_FN_WORKAROUND
|
256
|
+
#endif
|
257
|
+
|
258
|
+
// In C++11 mode, there's an issue in libc++'s std::mem_fn
|
259
|
+
// which results in a hard-error when using it in a noexcept expression
|
260
|
+
// in some cases. This is a check to workaround the common failing case.
|
261
|
+
#ifdef TL_TRAITS_LIBCXX_MEM_FN_WORKAROUND
|
262
|
+
template<class T>
|
263
|
+
struct is_pointer_to_non_const_member_func : std::false_type {
|
264
|
+
};
|
265
|
+
template<class T, class Ret, class... Args>
|
266
|
+
struct is_pointer_to_non_const_member_func<Ret (T::*)(Args...)> : std::true_type {
|
267
|
+
};
|
268
|
+
template<class T, class Ret, class... Args>
|
269
|
+
struct is_pointer_to_non_const_member_func<Ret (T::*)(Args...)&> : std::true_type {
|
270
|
+
};
|
271
|
+
template<class T, class Ret, class... Args>
|
272
|
+
struct is_pointer_to_non_const_member_func<Ret (T::*)(Args...) &&> : std::true_type {
|
273
|
+
};
|
274
|
+
template<class T, class Ret, class... Args>
|
275
|
+
struct is_pointer_to_non_const_member_func<Ret (T::*)(Args...) volatile> : std::true_type {
|
276
|
+
};
|
277
|
+
template<class T, class Ret, class... Args>
|
278
|
+
struct is_pointer_to_non_const_member_func<Ret (T::*)(Args...) volatile&> : std::true_type {
|
279
|
+
};
|
280
|
+
template<class T, class Ret, class... Args>
|
281
|
+
struct is_pointer_to_non_const_member_func<Ret (T::*)(Args...) volatile&&> : std::true_type {
|
282
|
+
};
|
283
|
+
|
284
|
+
template<class T>
|
285
|
+
struct is_const_or_const_ref : std::false_type {
|
286
|
+
};
|
287
|
+
template<class T>
|
288
|
+
struct is_const_or_const_ref<T const&> : std::true_type {
|
289
|
+
};
|
290
|
+
template<class T>
|
291
|
+
struct is_const_or_const_ref<T const> : std::true_type {
|
292
|
+
};
|
293
|
+
#endif
|
294
|
+
|
295
|
+
// std::invoke from C++17
|
296
|
+
// https://stackoverflow.com/questions/38288042/c11-14-invoke-workaround
|
297
|
+
template<typename Fn,
|
298
|
+
typename... Args,
|
299
|
+
#ifdef TL_TRAITS_LIBCXX_MEM_FN_WORKAROUND
|
300
|
+
typename = enable_if_t<!(is_pointer_to_non_const_member_func<Fn>::value && is_const_or_const_ref<Args...>::value)>,
|
301
|
+
#endif
|
302
|
+
typename = enable_if_t<std::is_member_pointer<decay_t<Fn>>::value>,
|
303
|
+
int = 0>
|
304
|
+
constexpr auto
|
305
|
+
invoke(Fn&& f, Args&&... args) noexcept(noexcept(std::mem_fn(f)(std::forward<Args>(args)...)))
|
306
|
+
-> decltype(std::mem_fn(f)(std::forward<Args>(args)...))
|
307
|
+
{
|
308
|
+
return std::mem_fn(f)(std::forward<Args>(args)...);
|
309
|
+
}
|
310
|
+
|
311
|
+
template<typename Fn, typename... Args, typename = enable_if_t<!std::is_member_pointer<decay_t<Fn>>::value>>
|
312
|
+
constexpr auto
|
313
|
+
invoke(Fn&& f, Args&&... args) noexcept(noexcept(std::forward<Fn>(f)(std::forward<Args>(args)...)))
|
314
|
+
-> decltype(std::forward<Fn>(f)(std::forward<Args>(args)...))
|
315
|
+
{
|
316
|
+
return std::forward<Fn>(f)(std::forward<Args>(args)...);
|
317
|
+
}
|
318
|
+
|
319
|
+
// std::invoke_result from C++17
|
320
|
+
template<class F, class, class... Us>
|
321
|
+
struct invoke_result_impl;
|
322
|
+
|
323
|
+
template<class F, class... Us>
|
324
|
+
struct invoke_result_impl<F, decltype(detail::invoke(std::declval<F>(), std::declval<Us>()...), void()), Us...> {
|
325
|
+
using type = decltype(detail::invoke(std::declval<F>(), std::declval<Us>()...));
|
326
|
+
};
|
327
|
+
|
328
|
+
template<class F, class... Us>
|
329
|
+
using invoke_result = invoke_result_impl<F, void, Us...>;
|
330
|
+
|
331
|
+
template<class F, class... Us>
|
332
|
+
using invoke_result_t = typename invoke_result<F, Us...>::type;
|
333
|
+
|
334
|
+
#if defined(_MSC_VER) && _MSC_VER <= 1900
|
335
|
+
// TODO make a version which works with MSVC 2015
|
336
|
+
template<class T, class U = T>
|
337
|
+
struct is_swappable : std::true_type {
|
338
|
+
};
|
339
|
+
|
340
|
+
template<class T, class U = T>
|
341
|
+
struct is_nothrow_swappable : std::true_type {
|
342
|
+
};
|
343
|
+
#else
|
344
|
+
// https://stackoverflow.com/questions/26744589/what-is-a-proper-way-to-implement-is-swappable-to-test-for-the-swappable-concept
|
345
|
+
namespace swap_adl_tests
|
346
|
+
{
|
347
|
+
// if swap ADL finds this then it would call std::swap otherwise (same
|
348
|
+
// signature)
|
349
|
+
struct tag {
|
350
|
+
};
|
351
|
+
|
352
|
+
template<class T>
|
353
|
+
tag
|
354
|
+
swap(T&, T&);
|
355
|
+
template<class T, std::size_t N>
|
356
|
+
tag swap(T (&a)[N], T (&b)[N]);
|
357
|
+
|
358
|
+
// helper functions to test if an unqualified swap is possible, and if it
|
359
|
+
// becomes std::swap
|
360
|
+
template<class, class>
|
361
|
+
std::false_type
|
362
|
+
can_swap(...) noexcept(false);
|
363
|
+
template<class T, class U, class = decltype(swap(std::declval<T&>(), std::declval<U&>()))>
|
364
|
+
std::true_type
|
365
|
+
can_swap(int) noexcept(noexcept(swap(std::declval<T&>(), std::declval<U&>())));
|
366
|
+
|
367
|
+
template<class, class>
|
368
|
+
std::false_type
|
369
|
+
uses_std(...);
|
370
|
+
template<class T, class U>
|
371
|
+
std::is_same<decltype(swap(std::declval<T&>(), std::declval<U&>())), tag>
|
372
|
+
uses_std(int);
|
373
|
+
|
374
|
+
template<class T>
|
375
|
+
struct is_std_swap_noexcept
|
376
|
+
: std::integral_constant<bool, std::is_nothrow_move_constructible<T>::value && std::is_nothrow_move_assignable<T>::value> {
|
377
|
+
};
|
378
|
+
|
379
|
+
template<class T, std::size_t N>
|
380
|
+
struct is_std_swap_noexcept<T[N]> : is_std_swap_noexcept<T> {
|
381
|
+
};
|
382
|
+
|
383
|
+
template<class T, class U>
|
384
|
+
struct is_adl_swap_noexcept : std::integral_constant<bool, noexcept(can_swap<T, U>(0))> {
|
385
|
+
};
|
386
|
+
} // namespace swap_adl_tests
|
387
|
+
|
388
|
+
template<class T, class U = T>
|
389
|
+
struct is_swappable
|
390
|
+
: std::integral_constant<bool,
|
391
|
+
decltype(detail::swap_adl_tests::can_swap<T, U>(0))::value &&
|
392
|
+
(!decltype(detail::swap_adl_tests::uses_std<T, U>(0))::value ||
|
393
|
+
(std::is_move_assignable<T>::value && std::is_move_constructible<T>::value))> {
|
394
|
+
};
|
395
|
+
|
396
|
+
template<class T, std::size_t N>
|
397
|
+
struct is_swappable<T[N], T[N]>
|
398
|
+
: std::integral_constant<bool,
|
399
|
+
decltype(detail::swap_adl_tests::can_swap<T[N], T[N]>(0))::value &&
|
400
|
+
(!decltype(detail::swap_adl_tests::uses_std<T[N], T[N]>(0))::value || is_swappable<T, T>::value)> {
|
401
|
+
};
|
402
|
+
|
403
|
+
template<class T, class U = T>
|
404
|
+
struct is_nothrow_swappable
|
405
|
+
: std::integral_constant<
|
406
|
+
bool,
|
407
|
+
is_swappable<T, U>::value &&
|
408
|
+
((decltype(detail::swap_adl_tests::uses_std<T, U>(0))::value&& detail::swap_adl_tests::is_std_swap_noexcept<T>::value) ||
|
409
|
+
(!decltype(detail::swap_adl_tests::uses_std<T, U>(0))::value&& detail::swap_adl_tests::is_adl_swap_noexcept<T, U>::value))> {
|
410
|
+
};
|
411
|
+
#endif
|
412
|
+
#endif
|
413
|
+
|
414
|
+
// Trait for checking if a type is a tl::expected
|
415
|
+
template<class T>
|
416
|
+
struct is_expected_impl : std::false_type {
|
417
|
+
};
|
418
|
+
template<class T, class E>
|
419
|
+
struct is_expected_impl<expected<T, E>> : std::true_type {
|
420
|
+
};
|
421
|
+
template<class T>
|
422
|
+
using is_expected = is_expected_impl<decay_t<T>>;
|
423
|
+
|
424
|
+
template<class T, class E, class U>
|
425
|
+
using expected_enable_forward_value =
|
426
|
+
detail::enable_if_t<std::is_constructible<T, U&&>::value && !std::is_same<detail::decay_t<U>, in_place_t>::value &&
|
427
|
+
!std::is_same<expected<T, E>, detail::decay_t<U>>::value && !std::is_same<unexpected<E>, detail::decay_t<U>>::value>;
|
428
|
+
|
429
|
+
template<class T, class E, class U, class G, class UR, class GR>
|
430
|
+
using expected_enable_from_other =
|
431
|
+
detail::enable_if_t<std::is_constructible<T, UR>::value && std::is_constructible<E, GR>::value &&
|
432
|
+
!std::is_constructible<T, expected<U, G>&>::value && !std::is_constructible<T, expected<U, G>&&>::value &&
|
433
|
+
!std::is_constructible<T, const expected<U, G>&>::value && !std::is_constructible<T, const expected<U, G>&&>::value &&
|
434
|
+
!std::is_convertible<expected<U, G>&, T>::value && !std::is_convertible<expected<U, G>&&, T>::value &&
|
435
|
+
!std::is_convertible<const expected<U, G>&, T>::value && !std::is_convertible<const expected<U, G>&&, T>::value>;
|
436
|
+
|
437
|
+
template<class T, class U>
|
438
|
+
using is_void_or = conditional_t<std::is_void<T>::value, std::true_type, U>;
|
439
|
+
|
440
|
+
template<class T>
|
441
|
+
using is_copy_constructible_or_void = is_void_or<T, std::is_copy_constructible<T>>;
|
442
|
+
|
443
|
+
template<class T>
|
444
|
+
using is_move_constructible_or_void = is_void_or<T, std::is_move_constructible<T>>;
|
445
|
+
|
446
|
+
template<class T>
|
447
|
+
using is_copy_assignable_or_void = is_void_or<T, std::is_copy_assignable<T>>;
|
448
|
+
|
449
|
+
template<class T>
|
450
|
+
using is_move_assignable_or_void = is_void_or<T, std::is_move_assignable<T>>;
|
451
|
+
|
452
|
+
} // namespace detail
|
453
|
+
|
454
|
+
namespace detail
|
455
|
+
{
|
456
|
+
struct no_init_t {
|
457
|
+
};
|
458
|
+
static constexpr no_init_t no_init{};
|
459
|
+
|
460
|
+
// Implements the storage of the values, and ensures that the destructor is
|
461
|
+
// trivial if it can be.
|
462
|
+
//
|
463
|
+
// This specialization is for where neither `T` or `E` is trivially
|
464
|
+
// destructible, so the destructors must be called on destruction of the
|
465
|
+
// `expected`
|
466
|
+
template<class T, class E, bool = std::is_trivially_destructible<T>::value, bool = std::is_trivially_destructible<E>::value>
|
467
|
+
struct expected_storage_base {
|
468
|
+
constexpr expected_storage_base()
|
469
|
+
: m_val(T{})
|
470
|
+
, m_has_val(true)
|
471
|
+
{
|
472
|
+
}
|
473
|
+
constexpr expected_storage_base(no_init_t)
|
474
|
+
: m_no_init()
|
475
|
+
, m_has_val(false)
|
476
|
+
{
|
477
|
+
}
|
478
|
+
|
479
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<T, Args&&...>::value>* = nullptr>
|
480
|
+
constexpr expected_storage_base(in_place_t, Args&&... args)
|
481
|
+
: m_val(std::forward<Args>(args)...)
|
482
|
+
, m_has_val(true)
|
483
|
+
{
|
484
|
+
}
|
485
|
+
|
486
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
487
|
+
constexpr expected_storage_base(in_place_t, std::initializer_list<U> il, Args&&... args)
|
488
|
+
: m_val(il, std::forward<Args>(args)...)
|
489
|
+
, m_has_val(true)
|
490
|
+
{
|
491
|
+
}
|
492
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
493
|
+
constexpr explicit expected_storage_base(unexpect_t, Args&&... args)
|
494
|
+
: m_unexpect(std::forward<Args>(args)...)
|
495
|
+
, m_has_val(false)
|
496
|
+
{
|
497
|
+
}
|
498
|
+
|
499
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
500
|
+
constexpr explicit expected_storage_base(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
501
|
+
: m_unexpect(il, std::forward<Args>(args)...)
|
502
|
+
, m_has_val(false)
|
503
|
+
{
|
504
|
+
}
|
505
|
+
|
506
|
+
~expected_storage_base()
|
507
|
+
{
|
508
|
+
if (m_has_val) {
|
509
|
+
m_val.~T();
|
510
|
+
} else {
|
511
|
+
m_unexpect.~unexpected<E>();
|
512
|
+
}
|
513
|
+
}
|
514
|
+
union {
|
515
|
+
T m_val;
|
516
|
+
unexpected<E> m_unexpect;
|
517
|
+
char m_no_init;
|
518
|
+
};
|
519
|
+
bool m_has_val;
|
520
|
+
};
|
521
|
+
|
522
|
+
// This specialization is for when both `T` and `E` are trivially-destructible,
|
523
|
+
// so the destructor of the `expected` can be trivial.
|
524
|
+
template<class T, class E>
|
525
|
+
struct expected_storage_base<T, E, true, true> {
|
526
|
+
constexpr expected_storage_base()
|
527
|
+
: m_val(T{})
|
528
|
+
, m_has_val(true)
|
529
|
+
{
|
530
|
+
}
|
531
|
+
constexpr expected_storage_base(no_init_t)
|
532
|
+
: m_no_init()
|
533
|
+
, m_has_val(false)
|
534
|
+
{
|
535
|
+
}
|
536
|
+
|
537
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<T, Args&&...>::value>* = nullptr>
|
538
|
+
constexpr expected_storage_base(in_place_t, Args&&... args)
|
539
|
+
: m_val(std::forward<Args>(args)...)
|
540
|
+
, m_has_val(true)
|
541
|
+
{
|
542
|
+
}
|
543
|
+
|
544
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
545
|
+
constexpr expected_storage_base(in_place_t, std::initializer_list<U> il, Args&&... args)
|
546
|
+
: m_val(il, std::forward<Args>(args)...)
|
547
|
+
, m_has_val(true)
|
548
|
+
{
|
549
|
+
}
|
550
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
551
|
+
constexpr explicit expected_storage_base(unexpect_t, Args&&... args)
|
552
|
+
: m_unexpect(std::forward<Args>(args)...)
|
553
|
+
, m_has_val(false)
|
554
|
+
{
|
555
|
+
}
|
556
|
+
|
557
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
558
|
+
constexpr explicit expected_storage_base(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
559
|
+
: m_unexpect(il, std::forward<Args>(args)...)
|
560
|
+
, m_has_val(false)
|
561
|
+
{
|
562
|
+
}
|
563
|
+
|
564
|
+
~expected_storage_base() = default;
|
565
|
+
union {
|
566
|
+
T m_val;
|
567
|
+
unexpected<E> m_unexpect;
|
568
|
+
char m_no_init;
|
569
|
+
};
|
570
|
+
bool m_has_val;
|
571
|
+
};
|
572
|
+
|
573
|
+
// T is trivial, E is not.
|
574
|
+
template<class T, class E>
|
575
|
+
struct expected_storage_base<T, E, true, false> {
|
576
|
+
constexpr expected_storage_base()
|
577
|
+
: m_val(T{})
|
578
|
+
, m_has_val(true)
|
579
|
+
{
|
580
|
+
}
|
581
|
+
TL_EXPECTED_MSVC2015_CONSTEXPR expected_storage_base(no_init_t)
|
582
|
+
: m_no_init()
|
583
|
+
, m_has_val(false)
|
584
|
+
{
|
585
|
+
}
|
586
|
+
|
587
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<T, Args&&...>::value>* = nullptr>
|
588
|
+
constexpr expected_storage_base(in_place_t, Args&&... args)
|
589
|
+
: m_val(std::forward<Args>(args)...)
|
590
|
+
, m_has_val(true)
|
591
|
+
{
|
592
|
+
}
|
593
|
+
|
594
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
595
|
+
constexpr expected_storage_base(in_place_t, std::initializer_list<U> il, Args&&... args)
|
596
|
+
: m_val(il, std::forward<Args>(args)...)
|
597
|
+
, m_has_val(true)
|
598
|
+
{
|
599
|
+
}
|
600
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
601
|
+
constexpr explicit expected_storage_base(unexpect_t, Args&&... args)
|
602
|
+
: m_unexpect(std::forward<Args>(args)...)
|
603
|
+
, m_has_val(false)
|
604
|
+
{
|
605
|
+
}
|
606
|
+
|
607
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
608
|
+
constexpr explicit expected_storage_base(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
609
|
+
: m_unexpect(il, std::forward<Args>(args)...)
|
610
|
+
, m_has_val(false)
|
611
|
+
{
|
612
|
+
}
|
613
|
+
|
614
|
+
~expected_storage_base()
|
615
|
+
{
|
616
|
+
if (!m_has_val) {
|
617
|
+
m_unexpect.~unexpected<E>();
|
618
|
+
}
|
619
|
+
}
|
620
|
+
|
621
|
+
union {
|
622
|
+
T m_val;
|
623
|
+
unexpected<E> m_unexpect;
|
624
|
+
char m_no_init;
|
625
|
+
};
|
626
|
+
bool m_has_val;
|
627
|
+
};
|
628
|
+
|
629
|
+
// E is trivial, T is not.
|
630
|
+
template<class T, class E>
|
631
|
+
struct expected_storage_base<T, E, false, true> {
|
632
|
+
constexpr expected_storage_base()
|
633
|
+
: m_val(T{})
|
634
|
+
, m_has_val(true)
|
635
|
+
{
|
636
|
+
}
|
637
|
+
constexpr expected_storage_base(no_init_t)
|
638
|
+
: m_no_init()
|
639
|
+
, m_has_val(false)
|
640
|
+
{
|
641
|
+
}
|
642
|
+
|
643
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<T, Args&&...>::value>* = nullptr>
|
644
|
+
constexpr expected_storage_base(in_place_t, Args&&... args)
|
645
|
+
: m_val(std::forward<Args>(args)...)
|
646
|
+
, m_has_val(true)
|
647
|
+
{
|
648
|
+
}
|
649
|
+
|
650
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
651
|
+
constexpr expected_storage_base(in_place_t, std::initializer_list<U> il, Args&&... args)
|
652
|
+
: m_val(il, std::forward<Args>(args)...)
|
653
|
+
, m_has_val(true)
|
654
|
+
{
|
655
|
+
}
|
656
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
657
|
+
constexpr explicit expected_storage_base(unexpect_t, Args&&... args)
|
658
|
+
: m_unexpect(std::forward<Args>(args)...)
|
659
|
+
, m_has_val(false)
|
660
|
+
{
|
661
|
+
}
|
662
|
+
|
663
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
664
|
+
constexpr explicit expected_storage_base(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
665
|
+
: m_unexpect(il, std::forward<Args>(args)...)
|
666
|
+
, m_has_val(false)
|
667
|
+
{
|
668
|
+
}
|
669
|
+
|
670
|
+
~expected_storage_base()
|
671
|
+
{
|
672
|
+
if (m_has_val) {
|
673
|
+
m_val.~T();
|
674
|
+
}
|
675
|
+
}
|
676
|
+
union {
|
677
|
+
T m_val;
|
678
|
+
unexpected<E> m_unexpect;
|
679
|
+
char m_no_init;
|
680
|
+
};
|
681
|
+
bool m_has_val;
|
682
|
+
};
|
683
|
+
|
684
|
+
// `T` is `void`, `E` is trivially-destructible
|
685
|
+
template<class E>
|
686
|
+
struct expected_storage_base<void, E, false, true> {
|
687
|
+
TL_EXPECTED_MSVC2015_CONSTEXPR expected_storage_base()
|
688
|
+
: m_has_val(true)
|
689
|
+
{
|
690
|
+
}
|
691
|
+
constexpr expected_storage_base(no_init_t)
|
692
|
+
: m_val()
|
693
|
+
, m_has_val(false)
|
694
|
+
{
|
695
|
+
}
|
696
|
+
|
697
|
+
constexpr expected_storage_base(in_place_t)
|
698
|
+
: m_has_val(true)
|
699
|
+
{
|
700
|
+
}
|
701
|
+
|
702
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
703
|
+
constexpr explicit expected_storage_base(unexpect_t, Args&&... args)
|
704
|
+
: m_unexpect(std::forward<Args>(args)...)
|
705
|
+
, m_has_val(false)
|
706
|
+
{
|
707
|
+
}
|
708
|
+
|
709
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
710
|
+
constexpr explicit expected_storage_base(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
711
|
+
: m_unexpect(il, std::forward<Args>(args)...)
|
712
|
+
, m_has_val(false)
|
713
|
+
{
|
714
|
+
}
|
715
|
+
|
716
|
+
~expected_storage_base() = default;
|
717
|
+
struct dummy {
|
718
|
+
};
|
719
|
+
union {
|
720
|
+
unexpected<E> m_unexpect;
|
721
|
+
dummy m_val;
|
722
|
+
};
|
723
|
+
bool m_has_val;
|
724
|
+
};
|
725
|
+
|
726
|
+
// `T` is `void`, `E` is not trivially-destructible
|
727
|
+
template<class E>
|
728
|
+
struct expected_storage_base<void, E, false, false> {
|
729
|
+
constexpr expected_storage_base()
|
730
|
+
: m_dummy()
|
731
|
+
, m_has_val(true)
|
732
|
+
{
|
733
|
+
}
|
734
|
+
constexpr expected_storage_base(no_init_t)
|
735
|
+
: m_dummy()
|
736
|
+
, m_has_val(false)
|
737
|
+
{
|
738
|
+
}
|
739
|
+
|
740
|
+
constexpr expected_storage_base(in_place_t)
|
741
|
+
: m_dummy()
|
742
|
+
, m_has_val(true)
|
743
|
+
{
|
744
|
+
}
|
745
|
+
|
746
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
747
|
+
constexpr explicit expected_storage_base(unexpect_t, Args&&... args)
|
748
|
+
: m_unexpect(std::forward<Args>(args)...)
|
749
|
+
, m_has_val(false)
|
750
|
+
{
|
751
|
+
}
|
752
|
+
|
753
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
754
|
+
constexpr explicit expected_storage_base(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
755
|
+
: m_unexpect(il, std::forward<Args>(args)...)
|
756
|
+
, m_has_val(false)
|
757
|
+
{
|
758
|
+
}
|
759
|
+
|
760
|
+
~expected_storage_base()
|
761
|
+
{
|
762
|
+
if (!m_has_val) {
|
763
|
+
m_unexpect.~unexpected<E>();
|
764
|
+
}
|
765
|
+
}
|
766
|
+
|
767
|
+
union {
|
768
|
+
unexpected<E> m_unexpect;
|
769
|
+
char m_dummy;
|
770
|
+
};
|
771
|
+
bool m_has_val;
|
772
|
+
};
|
773
|
+
|
774
|
+
// This base class provides some handy member functions which can be used in
|
775
|
+
// further derived classes
|
776
|
+
template<class T, class E>
|
777
|
+
struct expected_operations_base : expected_storage_base<T, E> {
|
778
|
+
using expected_storage_base<T, E>::expected_storage_base;
|
779
|
+
|
780
|
+
template<class... Args>
|
781
|
+
void construct(Args&&... args) noexcept
|
782
|
+
{
|
783
|
+
new (std::addressof(this->m_val)) T(std::forward<Args>(args)...);
|
784
|
+
this->m_has_val = true;
|
785
|
+
}
|
786
|
+
|
787
|
+
template<class Rhs>
|
788
|
+
void construct_with(Rhs&& rhs) noexcept
|
789
|
+
{
|
790
|
+
new (std::addressof(this->m_val)) T(std::forward<Rhs>(rhs).get());
|
791
|
+
this->m_has_val = true;
|
792
|
+
}
|
793
|
+
|
794
|
+
template<class... Args>
|
795
|
+
void construct_error(Args&&... args) noexcept
|
796
|
+
{
|
797
|
+
new (std::addressof(this->m_unexpect)) unexpected<E>(std::forward<Args>(args)...);
|
798
|
+
this->m_has_val = false;
|
799
|
+
}
|
800
|
+
|
801
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
802
|
+
|
803
|
+
// These assign overloads ensure that the most efficient assignment
|
804
|
+
// implementation is used while maintaining the strong exception guarantee.
|
805
|
+
// The problematic case is where rhs has a value, but *this does not.
|
806
|
+
//
|
807
|
+
// This overload handles the case where we can just copy-construct `T`
|
808
|
+
// directly into place without throwing.
|
809
|
+
template<class U = T, detail::enable_if_t<std::is_nothrow_copy_constructible<U>::value>* = nullptr>
|
810
|
+
void assign(const expected_operations_base& rhs) noexcept
|
811
|
+
{
|
812
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
813
|
+
geterr().~unexpected<E>();
|
814
|
+
construct(rhs.get());
|
815
|
+
} else {
|
816
|
+
assign_common(rhs);
|
817
|
+
}
|
818
|
+
}
|
819
|
+
|
820
|
+
// This overload handles the case where we can attempt to create a copy of
|
821
|
+
// `T`, then no-throw move it into place if the copy was successful.
|
822
|
+
template<class U = T,
|
823
|
+
detail::enable_if_t<!std::is_nothrow_copy_constructible<U>::value && std::is_nothrow_move_constructible<U>::value>* = nullptr>
|
824
|
+
void assign(const expected_operations_base& rhs) noexcept
|
825
|
+
{
|
826
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
827
|
+
T tmp = rhs.get();
|
828
|
+
geterr().~unexpected<E>();
|
829
|
+
construct(std::move(tmp));
|
830
|
+
} else {
|
831
|
+
assign_common(rhs);
|
832
|
+
}
|
833
|
+
}
|
834
|
+
|
835
|
+
// This overload is the worst-case, where we have to move-construct the
|
836
|
+
// unexpected value into temporary storage, then try to copy the T into place.
|
837
|
+
// If the construction succeeds, then everything is fine, but if it throws,
|
838
|
+
// then we move the old unexpected value back into place before rethrowing the
|
839
|
+
// exception.
|
840
|
+
template<class U = T,
|
841
|
+
detail::enable_if_t<!std::is_nothrow_copy_constructible<U>::value && !std::is_nothrow_move_constructible<U>::value>* = nullptr>
|
842
|
+
void assign(const expected_operations_base& rhs)
|
843
|
+
{
|
844
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
845
|
+
auto tmp = std::move(geterr());
|
846
|
+
geterr().~unexpected<E>();
|
847
|
+
|
848
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
849
|
+
try {
|
850
|
+
construct(rhs.get());
|
851
|
+
} catch (...) {
|
852
|
+
geterr() = std::move(tmp);
|
853
|
+
throw;
|
854
|
+
}
|
855
|
+
#else
|
856
|
+
construct(rhs.get());
|
857
|
+
#endif
|
858
|
+
} else {
|
859
|
+
assign_common(rhs);
|
860
|
+
}
|
861
|
+
}
|
862
|
+
|
863
|
+
// These overloads do the same as above, but for rvalues
|
864
|
+
template<class U = T, detail::enable_if_t<std::is_nothrow_move_constructible<U>::value>* = nullptr>
|
865
|
+
void assign(expected_operations_base&& rhs) noexcept
|
866
|
+
{
|
867
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
868
|
+
geterr().~unexpected<E>();
|
869
|
+
construct(std::move(rhs).get());
|
870
|
+
} else {
|
871
|
+
assign_common(std::move(rhs));
|
872
|
+
}
|
873
|
+
}
|
874
|
+
|
875
|
+
template<class U = T, detail::enable_if_t<!std::is_nothrow_move_constructible<U>::value>* = nullptr>
|
876
|
+
void assign(expected_operations_base&& rhs)
|
877
|
+
{
|
878
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
879
|
+
auto tmp = std::move(geterr());
|
880
|
+
geterr().~unexpected<E>();
|
881
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
882
|
+
try {
|
883
|
+
construct(std::move(rhs).get());
|
884
|
+
} catch (...) {
|
885
|
+
geterr() = std::move(tmp);
|
886
|
+
throw;
|
887
|
+
}
|
888
|
+
#else
|
889
|
+
construct(std::move(rhs).get());
|
890
|
+
#endif
|
891
|
+
} else {
|
892
|
+
assign_common(std::move(rhs));
|
893
|
+
}
|
894
|
+
}
|
895
|
+
|
896
|
+
#else
|
897
|
+
|
898
|
+
// If exceptions are disabled then we can just copy-construct
|
899
|
+
void assign(const expected_operations_base& rhs) noexcept
|
900
|
+
{
|
901
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
902
|
+
geterr().~unexpected<E>();
|
903
|
+
construct(rhs.get());
|
904
|
+
} else {
|
905
|
+
assign_common(rhs);
|
906
|
+
}
|
907
|
+
}
|
908
|
+
|
909
|
+
void assign(expected_operations_base&& rhs) noexcept
|
910
|
+
{
|
911
|
+
if (!this->m_has_val && rhs.m_has_val) {
|
912
|
+
geterr().~unexpected<E>();
|
913
|
+
construct(std::move(rhs).get());
|
914
|
+
} else {
|
915
|
+
assign_common(rhs);
|
916
|
+
}
|
917
|
+
}
|
918
|
+
|
919
|
+
#endif
|
920
|
+
|
921
|
+
// The common part of move/copy assigning
|
922
|
+
template<class Rhs>
|
923
|
+
void assign_common(Rhs&& rhs)
|
924
|
+
{
|
925
|
+
if (this->m_has_val) {
|
926
|
+
if (rhs.m_has_val) {
|
927
|
+
get() = std::forward<Rhs>(rhs).get();
|
928
|
+
} else {
|
929
|
+
destroy_val();
|
930
|
+
construct_error(std::forward<Rhs>(rhs).geterr());
|
931
|
+
}
|
932
|
+
} else {
|
933
|
+
if (!rhs.m_has_val) {
|
934
|
+
geterr() = std::forward<Rhs>(rhs).geterr();
|
935
|
+
}
|
936
|
+
}
|
937
|
+
}
|
938
|
+
|
939
|
+
bool has_value() const
|
940
|
+
{
|
941
|
+
return this->m_has_val;
|
942
|
+
}
|
943
|
+
|
944
|
+
TL_EXPECTED_11_CONSTEXPR T& get() &
|
945
|
+
{
|
946
|
+
return this->m_val;
|
947
|
+
}
|
948
|
+
constexpr const T& get() const&
|
949
|
+
{
|
950
|
+
return this->m_val;
|
951
|
+
}
|
952
|
+
TL_EXPECTED_11_CONSTEXPR T&& get() &&
|
953
|
+
{
|
954
|
+
return std::move(this->m_val);
|
955
|
+
}
|
956
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
957
|
+
constexpr const T&& get() const&&
|
958
|
+
{
|
959
|
+
return std::move(this->m_val);
|
960
|
+
}
|
961
|
+
#endif
|
962
|
+
|
963
|
+
TL_EXPECTED_11_CONSTEXPR unexpected<E>& geterr() &
|
964
|
+
{
|
965
|
+
return this->m_unexpect;
|
966
|
+
}
|
967
|
+
constexpr const unexpected<E>& geterr() const&
|
968
|
+
{
|
969
|
+
return this->m_unexpect;
|
970
|
+
}
|
971
|
+
TL_EXPECTED_11_CONSTEXPR unexpected<E>&& geterr() &&
|
972
|
+
{
|
973
|
+
return std::move(this->m_unexpect);
|
974
|
+
}
|
975
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
976
|
+
constexpr const unexpected<E>&& geterr() const&&
|
977
|
+
{
|
978
|
+
return std::move(this->m_unexpect);
|
979
|
+
}
|
980
|
+
#endif
|
981
|
+
|
982
|
+
TL_EXPECTED_11_CONSTEXPR void destroy_val()
|
983
|
+
{
|
984
|
+
get().~T();
|
985
|
+
}
|
986
|
+
};
|
987
|
+
|
988
|
+
// This base class provides some handy member functions which can be used in
|
989
|
+
// further derived classes
|
990
|
+
template<class E>
|
991
|
+
struct expected_operations_base<void, E> : expected_storage_base<void, E> {
|
992
|
+
using expected_storage_base<void, E>::expected_storage_base;
|
993
|
+
|
994
|
+
template<class... Args>
|
995
|
+
void construct() noexcept
|
996
|
+
{
|
997
|
+
this->m_has_val = true;
|
998
|
+
}
|
999
|
+
|
1000
|
+
// This function doesn't use its argument, but needs it so that code in
|
1001
|
+
// levels above this can work independently of whether T is void
|
1002
|
+
template<class Rhs>
|
1003
|
+
void construct_with(Rhs&&) noexcept
|
1004
|
+
{
|
1005
|
+
this->m_has_val = true;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
template<class... Args>
|
1009
|
+
void construct_error(Args&&... args) noexcept
|
1010
|
+
{
|
1011
|
+
new (std::addressof(this->m_unexpect)) unexpected<E>(std::forward<Args>(args)...);
|
1012
|
+
this->m_has_val = false;
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
template<class Rhs>
|
1016
|
+
void assign(Rhs&& rhs) noexcept
|
1017
|
+
{
|
1018
|
+
if (!this->m_has_val) {
|
1019
|
+
if (rhs.m_has_val) {
|
1020
|
+
geterr().~unexpected<E>();
|
1021
|
+
construct();
|
1022
|
+
} else {
|
1023
|
+
geterr() = std::forward<Rhs>(rhs).geterr();
|
1024
|
+
}
|
1025
|
+
} else {
|
1026
|
+
if (!rhs.m_has_val) {
|
1027
|
+
construct_error(std::forward<Rhs>(rhs).geterr());
|
1028
|
+
}
|
1029
|
+
}
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
bool has_value() const
|
1033
|
+
{
|
1034
|
+
return this->m_has_val;
|
1035
|
+
}
|
1036
|
+
|
1037
|
+
TL_EXPECTED_11_CONSTEXPR unexpected<E>& geterr() &
|
1038
|
+
{
|
1039
|
+
return this->m_unexpect;
|
1040
|
+
}
|
1041
|
+
constexpr const unexpected<E>& geterr() const&
|
1042
|
+
{
|
1043
|
+
return this->m_unexpect;
|
1044
|
+
}
|
1045
|
+
TL_EXPECTED_11_CONSTEXPR unexpected<E>&& geterr() &&
|
1046
|
+
{
|
1047
|
+
return std::move(this->m_unexpect);
|
1048
|
+
}
|
1049
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1050
|
+
constexpr const unexpected<E>&& geterr() const&&
|
1051
|
+
{
|
1052
|
+
return std::move(this->m_unexpect);
|
1053
|
+
}
|
1054
|
+
#endif
|
1055
|
+
|
1056
|
+
TL_EXPECTED_11_CONSTEXPR void destroy_val()
|
1057
|
+
{
|
1058
|
+
// no-op
|
1059
|
+
}
|
1060
|
+
};
|
1061
|
+
|
1062
|
+
// This class manages conditionally having a trivial copy constructor
|
1063
|
+
// This specialization is for when T and E are trivially copy constructible
|
1064
|
+
template<class T,
|
1065
|
+
class E,
|
1066
|
+
bool =
|
1067
|
+
is_void_or<T, TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(T)>::value&& TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(E)::value>
|
1068
|
+
struct expected_copy_base : expected_operations_base<T, E> {
|
1069
|
+
using expected_operations_base<T, E>::expected_operations_base;
|
1070
|
+
};
|
1071
|
+
|
1072
|
+
// This specialization is for when T or E are not trivially copy constructible
|
1073
|
+
template<class T, class E>
|
1074
|
+
struct expected_copy_base<T, E, false> : expected_operations_base<T, E> {
|
1075
|
+
using expected_operations_base<T, E>::expected_operations_base;
|
1076
|
+
|
1077
|
+
expected_copy_base() = default;
|
1078
|
+
expected_copy_base(const expected_copy_base& rhs)
|
1079
|
+
: expected_operations_base<T, E>(no_init)
|
1080
|
+
{
|
1081
|
+
if (rhs.has_value()) {
|
1082
|
+
this->construct_with(rhs);
|
1083
|
+
} else {
|
1084
|
+
this->construct_error(rhs.geterr());
|
1085
|
+
}
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
expected_copy_base(expected_copy_base&& rhs) = default;
|
1089
|
+
expected_copy_base& operator=(const expected_copy_base& rhs) = default;
|
1090
|
+
expected_copy_base& operator=(expected_copy_base&& rhs) = default;
|
1091
|
+
};
|
1092
|
+
|
1093
|
+
// This class manages conditionally having a trivial move constructor
|
1094
|
+
// Unfortunately there's no way to achieve this in GCC < 5 AFAIK, since it
|
1095
|
+
// doesn't implement an analogue to std::is_trivially_move_constructible. We
|
1096
|
+
// have to make do with a non-trivial move constructor even if T is trivially
|
1097
|
+
// move constructible
|
1098
|
+
#ifndef TL_EXPECTED_GCC49
|
1099
|
+
template<class T,
|
1100
|
+
class E,
|
1101
|
+
bool = is_void_or<T, std::is_trivially_move_constructible<T>>::value&& std::is_trivially_move_constructible<E>::value>
|
1102
|
+
struct expected_move_base : expected_copy_base<T, E> {
|
1103
|
+
using expected_copy_base<T, E>::expected_copy_base;
|
1104
|
+
};
|
1105
|
+
#else
|
1106
|
+
template<class T, class E, bool = false>
|
1107
|
+
struct expected_move_base;
|
1108
|
+
#endif
|
1109
|
+
template<class T, class E>
|
1110
|
+
struct expected_move_base<T, E, false> : expected_copy_base<T, E> {
|
1111
|
+
using expected_copy_base<T, E>::expected_copy_base;
|
1112
|
+
|
1113
|
+
expected_move_base() = default;
|
1114
|
+
expected_move_base(const expected_move_base& rhs) = default;
|
1115
|
+
|
1116
|
+
expected_move_base(expected_move_base&& rhs) noexcept(std::is_nothrow_move_constructible<T>::value)
|
1117
|
+
: expected_copy_base<T, E>(no_init)
|
1118
|
+
{
|
1119
|
+
if (rhs.has_value()) {
|
1120
|
+
this->construct_with(std::move(rhs));
|
1121
|
+
} else {
|
1122
|
+
this->construct_error(std::move(rhs.geterr()));
|
1123
|
+
}
|
1124
|
+
}
|
1125
|
+
expected_move_base& operator=(const expected_move_base& rhs) = default;
|
1126
|
+
expected_move_base& operator=(expected_move_base&& rhs) = default;
|
1127
|
+
};
|
1128
|
+
|
1129
|
+
// This class manages conditionally having a trivial copy assignment operator
|
1130
|
+
template<class T,
|
1131
|
+
class E,
|
1132
|
+
bool =
|
1133
|
+
is_void_or<T,
|
1134
|
+
conjunction<TL_EXPECTED_IS_TRIVIALLY_COPY_ASSIGNABLE(T),
|
1135
|
+
TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(T),
|
1136
|
+
TL_EXPECTED_IS_TRIVIALLY_DESTRUCTIBLE(T)>>::value&& TL_EXPECTED_IS_TRIVIALLY_COPY_ASSIGNABLE(E)::value&&
|
1137
|
+
TL_EXPECTED_IS_TRIVIALLY_COPY_CONSTRUCTIBLE(E)::value&& TL_EXPECTED_IS_TRIVIALLY_DESTRUCTIBLE(E)::value>
|
1138
|
+
struct expected_copy_assign_base : expected_move_base<T, E> {
|
1139
|
+
using expected_move_base<T, E>::expected_move_base;
|
1140
|
+
};
|
1141
|
+
|
1142
|
+
template<class T, class E>
|
1143
|
+
struct expected_copy_assign_base<T, E, false> : expected_move_base<T, E> {
|
1144
|
+
using expected_move_base<T, E>::expected_move_base;
|
1145
|
+
|
1146
|
+
expected_copy_assign_base() = default;
|
1147
|
+
expected_copy_assign_base(const expected_copy_assign_base& rhs) = default;
|
1148
|
+
|
1149
|
+
expected_copy_assign_base(expected_copy_assign_base&& rhs) = default;
|
1150
|
+
expected_copy_assign_base& operator=(const expected_copy_assign_base& rhs)
|
1151
|
+
{
|
1152
|
+
this->assign(rhs);
|
1153
|
+
return *this;
|
1154
|
+
}
|
1155
|
+
expected_copy_assign_base& operator=(expected_copy_assign_base&& rhs) = default;
|
1156
|
+
};
|
1157
|
+
|
1158
|
+
// This class manages conditionally having a trivial move assignment operator
|
1159
|
+
// Unfortunately there's no way to achieve this in GCC < 5 AFAIK, since it
|
1160
|
+
// doesn't implement an analogue to std::is_trivially_move_assignable. We have
|
1161
|
+
// to make do with a non-trivial move assignment operator even if T is trivially
|
1162
|
+
// move assignable
|
1163
|
+
#ifndef TL_EXPECTED_GCC49
|
1164
|
+
template<
|
1165
|
+
class T,
|
1166
|
+
class E,
|
1167
|
+
bool = is_void_or<
|
1168
|
+
T,
|
1169
|
+
conjunction<std::is_trivially_destructible<T>, std::is_trivially_move_constructible<T>, std::is_trivially_move_assignable<T>>>::value&&
|
1170
|
+
std::is_trivially_destructible<E>::value&& std::is_trivially_move_constructible<E>::value&& std::is_trivially_move_assignable<E>::value>
|
1171
|
+
struct expected_move_assign_base : expected_copy_assign_base<T, E> {
|
1172
|
+
using expected_copy_assign_base<T, E>::expected_copy_assign_base;
|
1173
|
+
};
|
1174
|
+
#else
|
1175
|
+
template<class T, class E, bool = false>
|
1176
|
+
struct expected_move_assign_base;
|
1177
|
+
#endif
|
1178
|
+
|
1179
|
+
template<class T, class E>
|
1180
|
+
struct expected_move_assign_base<T, E, false> : expected_copy_assign_base<T, E> {
|
1181
|
+
using expected_copy_assign_base<T, E>::expected_copy_assign_base;
|
1182
|
+
|
1183
|
+
expected_move_assign_base() = default;
|
1184
|
+
expected_move_assign_base(const expected_move_assign_base& rhs) = default;
|
1185
|
+
|
1186
|
+
expected_move_assign_base(expected_move_assign_base&& rhs) = default;
|
1187
|
+
|
1188
|
+
expected_move_assign_base& operator=(const expected_move_assign_base& rhs) = default;
|
1189
|
+
|
1190
|
+
expected_move_assign_base& operator=(expected_move_assign_base&& rhs) noexcept(
|
1191
|
+
std::is_nothrow_move_constructible<T>::value&& std::is_nothrow_move_assignable<T>::value)
|
1192
|
+
{
|
1193
|
+
this->assign(std::move(rhs));
|
1194
|
+
return *this;
|
1195
|
+
}
|
1196
|
+
};
|
1197
|
+
|
1198
|
+
// expected_delete_ctor_base will conditionally delete copy and move
|
1199
|
+
// constructors depending on whether T is copy/move constructible
|
1200
|
+
template<class T,
|
1201
|
+
class E,
|
1202
|
+
bool EnableCopy = (is_copy_constructible_or_void<T>::value && std::is_copy_constructible<E>::value),
|
1203
|
+
bool EnableMove = (is_move_constructible_or_void<T>::value && std::is_move_constructible<E>::value)>
|
1204
|
+
struct expected_delete_ctor_base {
|
1205
|
+
expected_delete_ctor_base() = default;
|
1206
|
+
expected_delete_ctor_base(const expected_delete_ctor_base&) = default;
|
1207
|
+
expected_delete_ctor_base(expected_delete_ctor_base&&) noexcept = default;
|
1208
|
+
expected_delete_ctor_base& operator=(const expected_delete_ctor_base&) = default;
|
1209
|
+
expected_delete_ctor_base& operator=(expected_delete_ctor_base&&) noexcept = default;
|
1210
|
+
};
|
1211
|
+
|
1212
|
+
template<class T, class E>
|
1213
|
+
struct expected_delete_ctor_base<T, E, true, false> {
|
1214
|
+
expected_delete_ctor_base() = default;
|
1215
|
+
expected_delete_ctor_base(const expected_delete_ctor_base&) = default;
|
1216
|
+
expected_delete_ctor_base(expected_delete_ctor_base&&) noexcept = delete;
|
1217
|
+
expected_delete_ctor_base& operator=(const expected_delete_ctor_base&) = default;
|
1218
|
+
expected_delete_ctor_base& operator=(expected_delete_ctor_base&&) noexcept = default;
|
1219
|
+
};
|
1220
|
+
|
1221
|
+
template<class T, class E>
|
1222
|
+
struct expected_delete_ctor_base<T, E, false, true> {
|
1223
|
+
expected_delete_ctor_base() = default;
|
1224
|
+
expected_delete_ctor_base(const expected_delete_ctor_base&) = delete;
|
1225
|
+
expected_delete_ctor_base(expected_delete_ctor_base&&) noexcept = default;
|
1226
|
+
expected_delete_ctor_base& operator=(const expected_delete_ctor_base&) = default;
|
1227
|
+
expected_delete_ctor_base& operator=(expected_delete_ctor_base&&) noexcept = default;
|
1228
|
+
};
|
1229
|
+
|
1230
|
+
template<class T, class E>
|
1231
|
+
struct expected_delete_ctor_base<T, E, false, false> {
|
1232
|
+
expected_delete_ctor_base() = default;
|
1233
|
+
expected_delete_ctor_base(const expected_delete_ctor_base&) = delete;
|
1234
|
+
expected_delete_ctor_base(expected_delete_ctor_base&&) noexcept = delete;
|
1235
|
+
expected_delete_ctor_base& operator=(const expected_delete_ctor_base&) = default;
|
1236
|
+
expected_delete_ctor_base& operator=(expected_delete_ctor_base&&) noexcept = default;
|
1237
|
+
};
|
1238
|
+
|
1239
|
+
// expected_delete_assign_base will conditionally delete copy and move
|
1240
|
+
// constructors depending on whether T and E are copy/move constructible +
|
1241
|
+
// assignable
|
1242
|
+
template<class T,
|
1243
|
+
class E,
|
1244
|
+
bool EnableCopy = (is_copy_constructible_or_void<T>::value && std::is_copy_constructible<E>::value &&
|
1245
|
+
is_copy_assignable_or_void<T>::value && std::is_copy_assignable<E>::value),
|
1246
|
+
bool EnableMove = (is_move_constructible_or_void<T>::value && std::is_move_constructible<E>::value &&
|
1247
|
+
is_move_assignable_or_void<T>::value && std::is_move_assignable<E>::value)>
|
1248
|
+
struct expected_delete_assign_base {
|
1249
|
+
expected_delete_assign_base() = default;
|
1250
|
+
expected_delete_assign_base(const expected_delete_assign_base&) = default;
|
1251
|
+
expected_delete_assign_base(expected_delete_assign_base&&) noexcept = default;
|
1252
|
+
expected_delete_assign_base& operator=(const expected_delete_assign_base&) = default;
|
1253
|
+
expected_delete_assign_base& operator=(expected_delete_assign_base&&) noexcept = default;
|
1254
|
+
};
|
1255
|
+
|
1256
|
+
template<class T, class E>
|
1257
|
+
struct expected_delete_assign_base<T, E, true, false> {
|
1258
|
+
expected_delete_assign_base() = default;
|
1259
|
+
expected_delete_assign_base(const expected_delete_assign_base&) = default;
|
1260
|
+
expected_delete_assign_base(expected_delete_assign_base&&) noexcept = default;
|
1261
|
+
expected_delete_assign_base& operator=(const expected_delete_assign_base&) = default;
|
1262
|
+
expected_delete_assign_base& operator=(expected_delete_assign_base&&) noexcept = delete;
|
1263
|
+
};
|
1264
|
+
|
1265
|
+
template<class T, class E>
|
1266
|
+
struct expected_delete_assign_base<T, E, false, true> {
|
1267
|
+
expected_delete_assign_base() = default;
|
1268
|
+
expected_delete_assign_base(const expected_delete_assign_base&) = default;
|
1269
|
+
expected_delete_assign_base(expected_delete_assign_base&&) noexcept = default;
|
1270
|
+
expected_delete_assign_base& operator=(const expected_delete_assign_base&) = delete;
|
1271
|
+
expected_delete_assign_base& operator=(expected_delete_assign_base&&) noexcept = default;
|
1272
|
+
};
|
1273
|
+
|
1274
|
+
template<class T, class E>
|
1275
|
+
struct expected_delete_assign_base<T, E, false, false> {
|
1276
|
+
expected_delete_assign_base() = default;
|
1277
|
+
expected_delete_assign_base(const expected_delete_assign_base&) = default;
|
1278
|
+
expected_delete_assign_base(expected_delete_assign_base&&) noexcept = default;
|
1279
|
+
expected_delete_assign_base& operator=(const expected_delete_assign_base&) = delete;
|
1280
|
+
expected_delete_assign_base& operator=(expected_delete_assign_base&&) noexcept = delete;
|
1281
|
+
};
|
1282
|
+
|
1283
|
+
// This is needed to be able to construct the expected_default_ctor_base which
|
1284
|
+
// follows, while still conditionally deleting the default constructor.
|
1285
|
+
struct default_constructor_tag {
|
1286
|
+
explicit constexpr default_constructor_tag() = default;
|
1287
|
+
};
|
1288
|
+
|
1289
|
+
// expected_default_ctor_base will ensure that expected has a deleted default
|
1290
|
+
// consturctor if T is not default constructible.
|
1291
|
+
// This specialization is for when T is default constructible
|
1292
|
+
template<class T, class E, bool Enable = std::is_default_constructible<T>::value || std::is_void<T>::value>
|
1293
|
+
struct expected_default_ctor_base {
|
1294
|
+
constexpr expected_default_ctor_base() noexcept = default;
|
1295
|
+
constexpr expected_default_ctor_base(expected_default_ctor_base const&) noexcept = default;
|
1296
|
+
constexpr expected_default_ctor_base(expected_default_ctor_base&&) noexcept = default;
|
1297
|
+
expected_default_ctor_base& operator=(expected_default_ctor_base const&) noexcept = default;
|
1298
|
+
expected_default_ctor_base& operator=(expected_default_ctor_base&&) noexcept = default;
|
1299
|
+
|
1300
|
+
constexpr explicit expected_default_ctor_base(default_constructor_tag)
|
1301
|
+
{
|
1302
|
+
}
|
1303
|
+
};
|
1304
|
+
|
1305
|
+
// This specialization is for when T is not default constructible
|
1306
|
+
template<class T, class E>
|
1307
|
+
struct expected_default_ctor_base<T, E, false> {
|
1308
|
+
constexpr expected_default_ctor_base() noexcept = delete;
|
1309
|
+
constexpr expected_default_ctor_base(expected_default_ctor_base const&) noexcept = default;
|
1310
|
+
constexpr expected_default_ctor_base(expected_default_ctor_base&&) noexcept = default;
|
1311
|
+
expected_default_ctor_base& operator=(expected_default_ctor_base const&) noexcept = default;
|
1312
|
+
expected_default_ctor_base& operator=(expected_default_ctor_base&&) noexcept = default;
|
1313
|
+
|
1314
|
+
constexpr explicit expected_default_ctor_base(default_constructor_tag)
|
1315
|
+
{
|
1316
|
+
}
|
1317
|
+
};
|
1318
|
+
} // namespace detail
|
1319
|
+
|
1320
|
+
template<class E>
|
1321
|
+
class bad_expected_access : public std::exception
|
1322
|
+
{
|
1323
|
+
public:
|
1324
|
+
explicit bad_expected_access(E e)
|
1325
|
+
: m_val(std::move(e))
|
1326
|
+
{
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
virtual const char* what() const noexcept override
|
1330
|
+
{
|
1331
|
+
return "Bad expected access";
|
1332
|
+
}
|
1333
|
+
|
1334
|
+
const E& error() const&
|
1335
|
+
{
|
1336
|
+
return m_val;
|
1337
|
+
}
|
1338
|
+
E& error() &
|
1339
|
+
{
|
1340
|
+
return m_val;
|
1341
|
+
}
|
1342
|
+
const E&& error() const&&
|
1343
|
+
{
|
1344
|
+
return std::move(m_val);
|
1345
|
+
}
|
1346
|
+
E&& error() &&
|
1347
|
+
{
|
1348
|
+
return std::move(m_val);
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
private:
|
1352
|
+
E m_val;
|
1353
|
+
};
|
1354
|
+
|
1355
|
+
/// An `expected<T, E>` object is an object that contains the storage for
|
1356
|
+
/// another object and manages the lifetime of this contained object `T`.
|
1357
|
+
/// Alternatively it could contain the storage for another unexpected object
|
1358
|
+
/// `E`. The contained object may not be initialized after the expected object
|
1359
|
+
/// has been initialized, and may not be destroyed before the expected object
|
1360
|
+
/// has been destroyed. The initialization state of the contained object is
|
1361
|
+
/// tracked by the expected object.
|
1362
|
+
template<class T, class E>
|
1363
|
+
class expected
|
1364
|
+
: private detail::expected_move_assign_base<T, E>
|
1365
|
+
, private detail::expected_delete_ctor_base<T, E>
|
1366
|
+
, private detail::expected_delete_assign_base<T, E>
|
1367
|
+
, private detail::expected_default_ctor_base<T, E>
|
1368
|
+
{
|
1369
|
+
static_assert(!std::is_reference<T>::value, "T must not be a reference");
|
1370
|
+
static_assert(!std::is_same<T, std::remove_cv<in_place_t>::type>::value, "T must not be in_place_t");
|
1371
|
+
static_assert(!std::is_same<T, std::remove_cv<unexpect_t>::type>::value, "T must not be unexpect_t");
|
1372
|
+
static_assert(!std::is_same<T, typename std::remove_cv<unexpected<E>>::type>::value, "T must not be unexpected<E>");
|
1373
|
+
static_assert(!std::is_reference<E>::value, "E must not be a reference");
|
1374
|
+
|
1375
|
+
T* valptr()
|
1376
|
+
{
|
1377
|
+
return std::addressof(this->m_val);
|
1378
|
+
}
|
1379
|
+
const T* valptr() const
|
1380
|
+
{
|
1381
|
+
return std::addressof(this->m_val);
|
1382
|
+
}
|
1383
|
+
unexpected<E>* errptr()
|
1384
|
+
{
|
1385
|
+
return std::addressof(this->m_unexpect);
|
1386
|
+
}
|
1387
|
+
const unexpected<E>* errptr() const
|
1388
|
+
{
|
1389
|
+
return std::addressof(this->m_unexpect);
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
1393
|
+
TL_EXPECTED_11_CONSTEXPR U& val()
|
1394
|
+
{
|
1395
|
+
return this->m_val;
|
1396
|
+
}
|
1397
|
+
TL_EXPECTED_11_CONSTEXPR unexpected<E>& err()
|
1398
|
+
{
|
1399
|
+
return this->m_unexpect;
|
1400
|
+
}
|
1401
|
+
|
1402
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
1403
|
+
constexpr const U& val() const
|
1404
|
+
{
|
1405
|
+
return this->m_val;
|
1406
|
+
}
|
1407
|
+
constexpr const unexpected<E>& err() const
|
1408
|
+
{
|
1409
|
+
return this->m_unexpect;
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
using impl_base = detail::expected_move_assign_base<T, E>;
|
1413
|
+
using ctor_base = detail::expected_default_ctor_base<T, E>;
|
1414
|
+
|
1415
|
+
public:
|
1416
|
+
typedef T value_type;
|
1417
|
+
typedef E error_type;
|
1418
|
+
typedef unexpected<E> unexpected_type;
|
1419
|
+
|
1420
|
+
#if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
|
1421
|
+
template<class F>
|
1422
|
+
TL_EXPECTED_11_CONSTEXPR auto and_then(F&& f) &
|
1423
|
+
{
|
1424
|
+
return and_then_impl(*this, std::forward<F>(f));
|
1425
|
+
}
|
1426
|
+
template<class F>
|
1427
|
+
TL_EXPECTED_11_CONSTEXPR auto and_then(F&& f) &&
|
1428
|
+
{
|
1429
|
+
return and_then_impl(std::move(*this), std::forward<F>(f));
|
1430
|
+
}
|
1431
|
+
template<class F>
|
1432
|
+
constexpr auto and_then(F&& f) const&
|
1433
|
+
{
|
1434
|
+
return and_then_impl(*this, std::forward<F>(f));
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1438
|
+
template<class F>
|
1439
|
+
constexpr auto and_then(F&& f) const&&
|
1440
|
+
{
|
1441
|
+
return and_then_impl(std::move(*this), std::forward<F>(f));
|
1442
|
+
}
|
1443
|
+
#endif
|
1444
|
+
|
1445
|
+
#else
|
1446
|
+
template<class F>
|
1447
|
+
TL_EXPECTED_11_CONSTEXPR auto and_then(F&& f) & -> decltype(and_then_impl(std::declval<expected&>(), std::forward<F>(f)))
|
1448
|
+
{
|
1449
|
+
return and_then_impl(*this, std::forward<F>(f));
|
1450
|
+
}
|
1451
|
+
template<class F>
|
1452
|
+
TL_EXPECTED_11_CONSTEXPR auto and_then(F&& f) && -> decltype(and_then_impl(std::declval<expected&&>(), std::forward<F>(f)))
|
1453
|
+
{
|
1454
|
+
return and_then_impl(std::move(*this), std::forward<F>(f));
|
1455
|
+
}
|
1456
|
+
template<class F>
|
1457
|
+
constexpr auto and_then(F&& f) const& -> decltype(and_then_impl(std::declval<expected const&>(), std::forward<F>(f)))
|
1458
|
+
{
|
1459
|
+
return and_then_impl(*this, std::forward<F>(f));
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1463
|
+
template<class F>
|
1464
|
+
constexpr auto and_then(F&& f) const&& -> decltype(and_then_impl(std::declval<expected const&&>(), std::forward<F>(f)))
|
1465
|
+
{
|
1466
|
+
return and_then_impl(std::move(*this), std::forward<F>(f));
|
1467
|
+
}
|
1468
|
+
#endif
|
1469
|
+
#endif
|
1470
|
+
|
1471
|
+
#if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
|
1472
|
+
template<class F>
|
1473
|
+
TL_EXPECTED_11_CONSTEXPR auto map(F&& f) &
|
1474
|
+
{
|
1475
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1476
|
+
}
|
1477
|
+
template<class F>
|
1478
|
+
TL_EXPECTED_11_CONSTEXPR auto map(F&& f) &&
|
1479
|
+
{
|
1480
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1481
|
+
}
|
1482
|
+
template<class F>
|
1483
|
+
constexpr auto map(F&& f) const&
|
1484
|
+
{
|
1485
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1486
|
+
}
|
1487
|
+
template<class F>
|
1488
|
+
constexpr auto map(F&& f) const&&
|
1489
|
+
{
|
1490
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1491
|
+
}
|
1492
|
+
#else
|
1493
|
+
template<class F>
|
1494
|
+
TL_EXPECTED_11_CONSTEXPR decltype(expected_map_impl(std::declval<expected&>(), std::declval<F&&>())) map(F&& f) &
|
1495
|
+
{
|
1496
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1497
|
+
}
|
1498
|
+
template<class F>
|
1499
|
+
TL_EXPECTED_11_CONSTEXPR decltype(expected_map_impl(std::declval<expected>(), std::declval<F&&>())) map(F&& f) &&
|
1500
|
+
{
|
1501
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1502
|
+
}
|
1503
|
+
template<class F>
|
1504
|
+
constexpr decltype(expected_map_impl(std::declval<const expected&>(), std::declval<F&&>())) map(F&& f) const&
|
1505
|
+
{
|
1506
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1510
|
+
template<class F>
|
1511
|
+
constexpr decltype(expected_map_impl(std::declval<const expected&&>(), std::declval<F&&>())) map(F&& f) const&&
|
1512
|
+
{
|
1513
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1514
|
+
}
|
1515
|
+
#endif
|
1516
|
+
#endif
|
1517
|
+
|
1518
|
+
#if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
|
1519
|
+
template<class F>
|
1520
|
+
TL_EXPECTED_11_CONSTEXPR auto transform(F&& f) &
|
1521
|
+
{
|
1522
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1523
|
+
}
|
1524
|
+
template<class F>
|
1525
|
+
TL_EXPECTED_11_CONSTEXPR auto transform(F&& f) &&
|
1526
|
+
{
|
1527
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1528
|
+
}
|
1529
|
+
template<class F>
|
1530
|
+
constexpr auto transform(F&& f) const&
|
1531
|
+
{
|
1532
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1533
|
+
}
|
1534
|
+
template<class F>
|
1535
|
+
constexpr auto transform(F&& f) const&&
|
1536
|
+
{
|
1537
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1538
|
+
}
|
1539
|
+
#else
|
1540
|
+
template<class F>
|
1541
|
+
TL_EXPECTED_11_CONSTEXPR decltype(expected_map_impl(std::declval<expected&>(), std::declval<F&&>())) transform(F&& f) &
|
1542
|
+
{
|
1543
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1544
|
+
}
|
1545
|
+
template<class F>
|
1546
|
+
TL_EXPECTED_11_CONSTEXPR decltype(expected_map_impl(std::declval<expected>(), std::declval<F&&>())) transform(F&& f) &&
|
1547
|
+
{
|
1548
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1549
|
+
}
|
1550
|
+
template<class F>
|
1551
|
+
constexpr decltype(expected_map_impl(std::declval<const expected&>(), std::declval<F&&>())) transform(F&& f) const&
|
1552
|
+
{
|
1553
|
+
return expected_map_impl(*this, std::forward<F>(f));
|
1554
|
+
}
|
1555
|
+
|
1556
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1557
|
+
template<class F>
|
1558
|
+
constexpr decltype(expected_map_impl(std::declval<const expected&&>(), std::declval<F&&>())) transform(F&& f) const&&
|
1559
|
+
{
|
1560
|
+
return expected_map_impl(std::move(*this), std::forward<F>(f));
|
1561
|
+
}
|
1562
|
+
#endif
|
1563
|
+
#endif
|
1564
|
+
|
1565
|
+
#if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
|
1566
|
+
template<class F>
|
1567
|
+
TL_EXPECTED_11_CONSTEXPR auto map_error(F&& f) &
|
1568
|
+
{
|
1569
|
+
return map_error_impl(*this, std::forward<F>(f));
|
1570
|
+
}
|
1571
|
+
template<class F>
|
1572
|
+
TL_EXPECTED_11_CONSTEXPR auto map_error(F&& f) &&
|
1573
|
+
{
|
1574
|
+
return map_error_impl(std::move(*this), std::forward<F>(f));
|
1575
|
+
}
|
1576
|
+
template<class F>
|
1577
|
+
constexpr auto map_error(F&& f) const&
|
1578
|
+
{
|
1579
|
+
return map_error_impl(*this, std::forward<F>(f));
|
1580
|
+
}
|
1581
|
+
template<class F>
|
1582
|
+
constexpr auto map_error(F&& f) const&&
|
1583
|
+
{
|
1584
|
+
return map_error_impl(std::move(*this), std::forward<F>(f));
|
1585
|
+
}
|
1586
|
+
#else
|
1587
|
+
template<class F>
|
1588
|
+
TL_EXPECTED_11_CONSTEXPR decltype(map_error_impl(std::declval<expected&>(), std::declval<F&&>())) map_error(F&& f) &
|
1589
|
+
{
|
1590
|
+
return map_error_impl(*this, std::forward<F>(f));
|
1591
|
+
}
|
1592
|
+
template<class F>
|
1593
|
+
TL_EXPECTED_11_CONSTEXPR decltype(map_error_impl(std::declval<expected&&>(), std::declval<F&&>())) map_error(F&& f) &&
|
1594
|
+
{
|
1595
|
+
return map_error_impl(std::move(*this), std::forward<F>(f));
|
1596
|
+
}
|
1597
|
+
template<class F>
|
1598
|
+
constexpr decltype(map_error_impl(std::declval<const expected&>(), std::declval<F&&>())) map_error(F&& f) const&
|
1599
|
+
{
|
1600
|
+
return map_error_impl(*this, std::forward<F>(f));
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1604
|
+
template<class F>
|
1605
|
+
constexpr decltype(map_error_impl(std::declval<const expected&&>(), std::declval<F&&>())) map_error(F&& f) const&&
|
1606
|
+
{
|
1607
|
+
return map_error_impl(std::move(*this), std::forward<F>(f));
|
1608
|
+
}
|
1609
|
+
#endif
|
1610
|
+
#endif
|
1611
|
+
template<class F>
|
1612
|
+
expected TL_EXPECTED_11_CONSTEXPR or_else(F&& f) &
|
1613
|
+
{
|
1614
|
+
return or_else_impl(*this, std::forward<F>(f));
|
1615
|
+
}
|
1616
|
+
|
1617
|
+
template<class F>
|
1618
|
+
expected TL_EXPECTED_11_CONSTEXPR or_else(F&& f) &&
|
1619
|
+
{
|
1620
|
+
return or_else_impl(std::move(*this), std::forward<F>(f));
|
1621
|
+
}
|
1622
|
+
|
1623
|
+
template<class F>
|
1624
|
+
expected constexpr or_else(F&& f) const&
|
1625
|
+
{
|
1626
|
+
return or_else_impl(*this, std::forward<F>(f));
|
1627
|
+
}
|
1628
|
+
|
1629
|
+
#ifndef TL_EXPECTED_NO_CONSTRR
|
1630
|
+
template<class F>
|
1631
|
+
expected constexpr or_else(F&& f) const&&
|
1632
|
+
{
|
1633
|
+
return or_else_impl(std::move(*this), std::forward<F>(f));
|
1634
|
+
}
|
1635
|
+
#endif
|
1636
|
+
constexpr expected() = default;
|
1637
|
+
constexpr expected(const expected& rhs) = default;
|
1638
|
+
constexpr expected(expected&& rhs) = default;
|
1639
|
+
expected& operator=(const expected& rhs) = default;
|
1640
|
+
expected& operator=(expected&& rhs) = default;
|
1641
|
+
|
1642
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<T, Args&&...>::value>* = nullptr>
|
1643
|
+
constexpr expected(in_place_t, Args&&... args)
|
1644
|
+
: impl_base(in_place, std::forward<Args>(args)...)
|
1645
|
+
, ctor_base(detail::default_constructor_tag{})
|
1646
|
+
{
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
1650
|
+
constexpr expected(in_place_t, std::initializer_list<U> il, Args&&... args)
|
1651
|
+
: impl_base(in_place, il, std::forward<Args>(args)...)
|
1652
|
+
, ctor_base(detail::default_constructor_tag{})
|
1653
|
+
{
|
1654
|
+
}
|
1655
|
+
|
1656
|
+
template<class G = E,
|
1657
|
+
detail::enable_if_t<std::is_constructible<E, const G&>::value>* = nullptr,
|
1658
|
+
detail::enable_if_t<!std::is_convertible<const G&, E>::value>* = nullptr>
|
1659
|
+
explicit constexpr expected(const unexpected<G>& e)
|
1660
|
+
: impl_base(unexpect, e.value())
|
1661
|
+
, ctor_base(detail::default_constructor_tag{})
|
1662
|
+
{
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
template<class G = E,
|
1666
|
+
detail::enable_if_t<std::is_constructible<E, const G&>::value>* = nullptr,
|
1667
|
+
detail::enable_if_t<std::is_convertible<const G&, E>::value>* = nullptr>
|
1668
|
+
constexpr expected(unexpected<G> const& e)
|
1669
|
+
: impl_base(unexpect, e.value())
|
1670
|
+
, ctor_base(detail::default_constructor_tag{})
|
1671
|
+
{
|
1672
|
+
}
|
1673
|
+
|
1674
|
+
template<class G = E,
|
1675
|
+
detail::enable_if_t<std::is_constructible<E, G&&>::value>* = nullptr,
|
1676
|
+
detail::enable_if_t<!std::is_convertible<G&&, E>::value>* = nullptr>
|
1677
|
+
explicit constexpr expected(unexpected<G>&& e) noexcept(std::is_nothrow_constructible<E, G&&>::value)
|
1678
|
+
: impl_base(unexpect, std::move(e.value()))
|
1679
|
+
, ctor_base(detail::default_constructor_tag{})
|
1680
|
+
{
|
1681
|
+
}
|
1682
|
+
|
1683
|
+
template<class G = E,
|
1684
|
+
detail::enable_if_t<std::is_constructible<E, G&&>::value>* = nullptr,
|
1685
|
+
detail::enable_if_t<std::is_convertible<G&&, E>::value>* = nullptr>
|
1686
|
+
constexpr expected(unexpected<G>&& e) noexcept(std::is_nothrow_constructible<E, G&&>::value)
|
1687
|
+
: impl_base(unexpect, std::move(e.value()))
|
1688
|
+
, ctor_base(detail::default_constructor_tag{})
|
1689
|
+
{
|
1690
|
+
}
|
1691
|
+
|
1692
|
+
template<class... Args, detail::enable_if_t<std::is_constructible<E, Args&&...>::value>* = nullptr>
|
1693
|
+
constexpr explicit expected(unexpect_t, Args&&... args)
|
1694
|
+
: impl_base(unexpect, std::forward<Args>(args)...)
|
1695
|
+
, ctor_base(detail::default_constructor_tag{})
|
1696
|
+
{
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
template<class U, class... Args, detail::enable_if_t<std::is_constructible<E, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
1700
|
+
constexpr explicit expected(unexpect_t, std::initializer_list<U> il, Args&&... args)
|
1701
|
+
: impl_base(unexpect, il, std::forward<Args>(args)...)
|
1702
|
+
, ctor_base(detail::default_constructor_tag{})
|
1703
|
+
{
|
1704
|
+
}
|
1705
|
+
|
1706
|
+
template<class U,
|
1707
|
+
class G,
|
1708
|
+
detail::enable_if_t<!(std::is_convertible<U const&, T>::value && std::is_convertible<G const&, E>::value)>* = nullptr,
|
1709
|
+
detail::expected_enable_from_other<T, E, U, G, const U&, const G&>* = nullptr>
|
1710
|
+
explicit TL_EXPECTED_11_CONSTEXPR expected(const expected<U, G>& rhs)
|
1711
|
+
: ctor_base(detail::default_constructor_tag{})
|
1712
|
+
{
|
1713
|
+
if (rhs.has_value()) {
|
1714
|
+
this->construct(*rhs);
|
1715
|
+
} else {
|
1716
|
+
this->construct_error(rhs.error());
|
1717
|
+
}
|
1718
|
+
}
|
1719
|
+
|
1720
|
+
template<class U,
|
1721
|
+
class G,
|
1722
|
+
detail::enable_if_t<(std::is_convertible<U const&, T>::value && std::is_convertible<G const&, E>::value)>* = nullptr,
|
1723
|
+
detail::expected_enable_from_other<T, E, U, G, const U&, const G&>* = nullptr>
|
1724
|
+
TL_EXPECTED_11_CONSTEXPR expected(const expected<U, G>& rhs)
|
1725
|
+
: ctor_base(detail::default_constructor_tag{})
|
1726
|
+
{
|
1727
|
+
if (rhs.has_value()) {
|
1728
|
+
this->construct(*rhs);
|
1729
|
+
} else {
|
1730
|
+
this->construct_error(rhs.error());
|
1731
|
+
}
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
template<class U,
|
1735
|
+
class G,
|
1736
|
+
detail::enable_if_t<!(std::is_convertible<U&&, T>::value && std::is_convertible<G&&, E>::value)>* = nullptr,
|
1737
|
+
detail::expected_enable_from_other<T, E, U, G, U&&, G&&>* = nullptr>
|
1738
|
+
explicit TL_EXPECTED_11_CONSTEXPR expected(expected<U, G>&& rhs)
|
1739
|
+
: ctor_base(detail::default_constructor_tag{})
|
1740
|
+
{
|
1741
|
+
if (rhs.has_value()) {
|
1742
|
+
this->construct(std::move(*rhs));
|
1743
|
+
} else {
|
1744
|
+
this->construct_error(std::move(rhs.error()));
|
1745
|
+
}
|
1746
|
+
}
|
1747
|
+
|
1748
|
+
template<class U,
|
1749
|
+
class G,
|
1750
|
+
detail::enable_if_t<(std::is_convertible<U&&, T>::value && std::is_convertible<G&&, E>::value)>* = nullptr,
|
1751
|
+
detail::expected_enable_from_other<T, E, U, G, U&&, G&&>* = nullptr>
|
1752
|
+
TL_EXPECTED_11_CONSTEXPR expected(expected<U, G>&& rhs)
|
1753
|
+
: ctor_base(detail::default_constructor_tag{})
|
1754
|
+
{
|
1755
|
+
if (rhs.has_value()) {
|
1756
|
+
this->construct(std::move(*rhs));
|
1757
|
+
} else {
|
1758
|
+
this->construct_error(std::move(rhs.error()));
|
1759
|
+
}
|
1760
|
+
}
|
1761
|
+
|
1762
|
+
template<class U = T,
|
1763
|
+
detail::enable_if_t<!std::is_convertible<U&&, T>::value>* = nullptr,
|
1764
|
+
detail::expected_enable_forward_value<T, E, U>* = nullptr>
|
1765
|
+
explicit TL_EXPECTED_MSVC2015_CONSTEXPR expected(U&& v)
|
1766
|
+
: expected(in_place, std::forward<U>(v))
|
1767
|
+
{
|
1768
|
+
}
|
1769
|
+
|
1770
|
+
template<class U = T,
|
1771
|
+
detail::enable_if_t<std::is_convertible<U&&, T>::value>* = nullptr,
|
1772
|
+
detail::expected_enable_forward_value<T, E, U>* = nullptr>
|
1773
|
+
TL_EXPECTED_MSVC2015_CONSTEXPR expected(U&& v)
|
1774
|
+
: expected(in_place, std::forward<U>(v))
|
1775
|
+
{
|
1776
|
+
}
|
1777
|
+
|
1778
|
+
template<class U = T,
|
1779
|
+
class G = T,
|
1780
|
+
detail::enable_if_t<std::is_nothrow_constructible<T, U&&>::value>* = nullptr,
|
1781
|
+
detail::enable_if_t<!std::is_void<G>::value>* = nullptr,
|
1782
|
+
detail::enable_if_t<(!std::is_same<expected<T, E>, detail::decay_t<U>>::value &&
|
1783
|
+
!detail::conjunction<std::is_scalar<T>, std::is_same<T, detail::decay_t<U>>>::value &&
|
1784
|
+
std::is_constructible<T, U>::value && std::is_assignable<G&, U>::value &&
|
1785
|
+
std::is_nothrow_move_constructible<E>::value)>* = nullptr>
|
1786
|
+
expected& operator=(U&& v)
|
1787
|
+
{
|
1788
|
+
if (has_value()) {
|
1789
|
+
val() = std::forward<U>(v);
|
1790
|
+
} else {
|
1791
|
+
err().~unexpected<E>();
|
1792
|
+
::new (valptr()) T(std::forward<U>(v));
|
1793
|
+
this->m_has_val = true;
|
1794
|
+
}
|
1795
|
+
|
1796
|
+
return *this;
|
1797
|
+
}
|
1798
|
+
|
1799
|
+
template<class U = T,
|
1800
|
+
class G = T,
|
1801
|
+
detail::enable_if_t<!std::is_nothrow_constructible<T, U&&>::value>* = nullptr,
|
1802
|
+
detail::enable_if_t<!std::is_void<U>::value>* = nullptr,
|
1803
|
+
detail::enable_if_t<(!std::is_same<expected<T, E>, detail::decay_t<U>>::value &&
|
1804
|
+
!detail::conjunction<std::is_scalar<T>, std::is_same<T, detail::decay_t<U>>>::value &&
|
1805
|
+
std::is_constructible<T, U>::value && std::is_assignable<G&, U>::value &&
|
1806
|
+
std::is_nothrow_move_constructible<E>::value)>* = nullptr>
|
1807
|
+
expected& operator=(U&& v)
|
1808
|
+
{
|
1809
|
+
if (has_value()) {
|
1810
|
+
val() = std::forward<U>(v);
|
1811
|
+
} else {
|
1812
|
+
auto tmp = std::move(err());
|
1813
|
+
err().~unexpected<E>();
|
1814
|
+
|
1815
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
1816
|
+
try {
|
1817
|
+
::new (valptr()) T(std::forward<U>(v));
|
1818
|
+
this->m_has_val = true;
|
1819
|
+
} catch (...) {
|
1820
|
+
err() = std::move(tmp);
|
1821
|
+
throw;
|
1822
|
+
}
|
1823
|
+
#else
|
1824
|
+
::new (valptr()) T(std::forward<U>(v));
|
1825
|
+
this->m_has_val = true;
|
1826
|
+
#endif
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
return *this;
|
1830
|
+
}
|
1831
|
+
|
1832
|
+
template<class G = E, detail::enable_if_t<std::is_nothrow_copy_constructible<G>::value && std::is_assignable<G&, G>::value>* = nullptr>
|
1833
|
+
expected& operator=(const unexpected<G>& rhs)
|
1834
|
+
{
|
1835
|
+
if (!has_value()) {
|
1836
|
+
err() = rhs;
|
1837
|
+
} else {
|
1838
|
+
this->destroy_val();
|
1839
|
+
::new (errptr()) unexpected<E>(rhs);
|
1840
|
+
this->m_has_val = false;
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
return *this;
|
1844
|
+
}
|
1845
|
+
|
1846
|
+
template<class G = E, detail::enable_if_t<std::is_nothrow_move_constructible<G>::value && std::is_move_assignable<G>::value>* = nullptr>
|
1847
|
+
expected& operator=(unexpected<G>&& rhs) noexcept
|
1848
|
+
{
|
1849
|
+
if (!has_value()) {
|
1850
|
+
err() = std::move(rhs);
|
1851
|
+
} else {
|
1852
|
+
this->destroy_val();
|
1853
|
+
::new (errptr()) unexpected<E>(std::move(rhs));
|
1854
|
+
this->m_has_val = false;
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
return *this;
|
1858
|
+
}
|
1859
|
+
|
1860
|
+
template<class... Args, detail::enable_if_t<std::is_nothrow_constructible<T, Args&&...>::value>* = nullptr>
|
1861
|
+
void emplace(Args&&... args)
|
1862
|
+
{
|
1863
|
+
if (has_value()) {
|
1864
|
+
val() = T(std::forward<Args>(args)...);
|
1865
|
+
} else {
|
1866
|
+
err().~unexpected<E>();
|
1867
|
+
::new (valptr()) T(std::forward<Args>(args)...);
|
1868
|
+
this->m_has_val = true;
|
1869
|
+
}
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
template<class... Args, detail::enable_if_t<!std::is_nothrow_constructible<T, Args&&...>::value>* = nullptr>
|
1873
|
+
void emplace(Args&&... args)
|
1874
|
+
{
|
1875
|
+
if (has_value()) {
|
1876
|
+
val() = T(std::forward<Args>(args)...);
|
1877
|
+
} else {
|
1878
|
+
auto tmp = std::move(err());
|
1879
|
+
err().~unexpected<E>();
|
1880
|
+
|
1881
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
1882
|
+
try {
|
1883
|
+
::new (valptr()) T(std::forward<Args>(args)...);
|
1884
|
+
this->m_has_val = true;
|
1885
|
+
} catch (...) {
|
1886
|
+
err() = std::move(tmp);
|
1887
|
+
throw;
|
1888
|
+
}
|
1889
|
+
#else
|
1890
|
+
::new (valptr()) T(std::forward<Args>(args)...);
|
1891
|
+
this->m_has_val = true;
|
1892
|
+
#endif
|
1893
|
+
}
|
1894
|
+
}
|
1895
|
+
|
1896
|
+
template<class U,
|
1897
|
+
class... Args,
|
1898
|
+
detail::enable_if_t<std::is_nothrow_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
1899
|
+
void emplace(std::initializer_list<U> il, Args&&... args)
|
1900
|
+
{
|
1901
|
+
if (has_value()) {
|
1902
|
+
T t(il, std::forward<Args>(args)...);
|
1903
|
+
val() = std::move(t);
|
1904
|
+
} else {
|
1905
|
+
err().~unexpected<E>();
|
1906
|
+
::new (valptr()) T(il, std::forward<Args>(args)...);
|
1907
|
+
this->m_has_val = true;
|
1908
|
+
}
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
template<class U,
|
1912
|
+
class... Args,
|
1913
|
+
detail::enable_if_t<!std::is_nothrow_constructible<T, std::initializer_list<U>&, Args&&...>::value>* = nullptr>
|
1914
|
+
void emplace(std::initializer_list<U> il, Args&&... args)
|
1915
|
+
{
|
1916
|
+
if (has_value()) {
|
1917
|
+
T t(il, std::forward<Args>(args)...);
|
1918
|
+
val() = std::move(t);
|
1919
|
+
} else {
|
1920
|
+
auto tmp = std::move(err());
|
1921
|
+
err().~unexpected<E>();
|
1922
|
+
|
1923
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
1924
|
+
try {
|
1925
|
+
::new (valptr()) T(il, std::forward<Args>(args)...);
|
1926
|
+
this->m_has_val = true;
|
1927
|
+
} catch (...) {
|
1928
|
+
err() = std::move(tmp);
|
1929
|
+
throw;
|
1930
|
+
}
|
1931
|
+
#else
|
1932
|
+
::new (valptr()) T(il, std::forward<Args>(args)...);
|
1933
|
+
this->m_has_val = true;
|
1934
|
+
#endif
|
1935
|
+
}
|
1936
|
+
}
|
1937
|
+
|
1938
|
+
private:
|
1939
|
+
using t_is_void = std::true_type;
|
1940
|
+
using t_is_not_void = std::false_type;
|
1941
|
+
using t_is_nothrow_move_constructible = std::true_type;
|
1942
|
+
using move_constructing_t_can_throw = std::false_type;
|
1943
|
+
using e_is_nothrow_move_constructible = std::true_type;
|
1944
|
+
using move_constructing_e_can_throw = std::false_type;
|
1945
|
+
|
1946
|
+
void swap_where_both_have_value(expected& /*rhs*/, t_is_void) noexcept
|
1947
|
+
{
|
1948
|
+
// swapping void is a no-op
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
void swap_where_both_have_value(expected& rhs, t_is_not_void)
|
1952
|
+
{
|
1953
|
+
using std::swap;
|
1954
|
+
swap(val(), rhs.val());
|
1955
|
+
}
|
1956
|
+
|
1957
|
+
void swap_where_only_one_has_value(expected& rhs, t_is_void) noexcept(std::is_nothrow_move_constructible<E>::value)
|
1958
|
+
{
|
1959
|
+
::new (errptr()) unexpected_type(std::move(rhs.err()));
|
1960
|
+
rhs.err().~unexpected_type();
|
1961
|
+
std::swap(this->m_has_val, rhs.m_has_val);
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
void swap_where_only_one_has_value(expected& rhs, t_is_not_void)
|
1965
|
+
{
|
1966
|
+
swap_where_only_one_has_value_and_t_is_not_void(
|
1967
|
+
rhs, typename std::is_nothrow_move_constructible<T>::type{}, typename std::is_nothrow_move_constructible<E>::type{});
|
1968
|
+
}
|
1969
|
+
|
1970
|
+
void swap_where_only_one_has_value_and_t_is_not_void(expected& rhs,
|
1971
|
+
t_is_nothrow_move_constructible,
|
1972
|
+
e_is_nothrow_move_constructible) noexcept
|
1973
|
+
{
|
1974
|
+
auto temp = std::move(val());
|
1975
|
+
val().~T();
|
1976
|
+
::new (errptr()) unexpected_type(std::move(rhs.err()));
|
1977
|
+
rhs.err().~unexpected_type();
|
1978
|
+
::new (rhs.valptr()) T(std::move(temp));
|
1979
|
+
std::swap(this->m_has_val, rhs.m_has_val);
|
1980
|
+
}
|
1981
|
+
|
1982
|
+
void swap_where_only_one_has_value_and_t_is_not_void(expected& rhs, t_is_nothrow_move_constructible, move_constructing_e_can_throw)
|
1983
|
+
{
|
1984
|
+
auto temp = std::move(val());
|
1985
|
+
val().~T();
|
1986
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
1987
|
+
try {
|
1988
|
+
::new (errptr()) unexpected_type(std::move(rhs.err()));
|
1989
|
+
rhs.err().~unexpected_type();
|
1990
|
+
::new (rhs.valptr()) T(std::move(temp));
|
1991
|
+
std::swap(this->m_has_val, rhs.m_has_val);
|
1992
|
+
} catch (...) {
|
1993
|
+
val() = std::move(temp);
|
1994
|
+
throw;
|
1995
|
+
}
|
1996
|
+
#else
|
1997
|
+
::new (errptr()) unexpected_type(std::move(rhs.err()));
|
1998
|
+
rhs.err().~unexpected_type();
|
1999
|
+
::new (rhs.valptr()) T(std::move(temp));
|
2000
|
+
std::swap(this->m_has_val, rhs.m_has_val);
|
2001
|
+
#endif
|
2002
|
+
}
|
2003
|
+
|
2004
|
+
void swap_where_only_one_has_value_and_t_is_not_void(expected& rhs, move_constructing_t_can_throw, t_is_nothrow_move_constructible)
|
2005
|
+
{
|
2006
|
+
auto temp = std::move(rhs.err());
|
2007
|
+
rhs.err().~unexpected_type();
|
2008
|
+
#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
|
2009
|
+
try {
|
2010
|
+
::new (rhs.valptr()) T(val());
|
2011
|
+
val().~T();
|
2012
|
+
::new (errptr()) unexpected_type(std::move(temp));
|
2013
|
+
std::swap(this->m_has_val, rhs.m_has_val);
|
2014
|
+
} catch (...) {
|
2015
|
+
rhs.err() = std::move(temp);
|
2016
|
+
throw;
|
2017
|
+
}
|
2018
|
+
#else
|
2019
|
+
::new (rhs.valptr()) T(val());
|
2020
|
+
val().~T();
|
2021
|
+
::new (errptr()) unexpected_type(std::move(temp));
|
2022
|
+
std::swap(this->m_has_val, rhs.m_has_val);
|
2023
|
+
#endif
|
2024
|
+
}
|
2025
|
+
|
2026
|
+
public:
|
2027
|
+
template<class OT = T, class OE = E>
|
2028
|
+
detail::enable_if_t<detail::is_swappable<OT>::value && detail::is_swappable<OE>::value &&
|
2029
|
+
(std::is_nothrow_move_constructible<OT>::value || std::is_nothrow_move_constructible<OE>::value)>
|
2030
|
+
swap(expected& rhs) noexcept(std::is_nothrow_move_constructible<T>::value&& detail::is_nothrow_swappable<T>::value&&
|
2031
|
+
std::is_nothrow_move_constructible<E>::value&& detail::is_nothrow_swappable<E>::value)
|
2032
|
+
{
|
2033
|
+
if (has_value() && rhs.has_value()) {
|
2034
|
+
swap_where_both_have_value(rhs, typename std::is_void<T>::type{});
|
2035
|
+
} else if (!has_value() && rhs.has_value()) {
|
2036
|
+
rhs.swap(*this);
|
2037
|
+
} else if (has_value()) {
|
2038
|
+
swap_where_only_one_has_value(rhs, typename std::is_void<T>::type{});
|
2039
|
+
} else {
|
2040
|
+
using std::swap;
|
2041
|
+
swap(err(), rhs.err());
|
2042
|
+
}
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
constexpr const T* operator->() const
|
2046
|
+
{
|
2047
|
+
return valptr();
|
2048
|
+
}
|
2049
|
+
TL_EXPECTED_11_CONSTEXPR T* operator->()
|
2050
|
+
{
|
2051
|
+
return valptr();
|
2052
|
+
}
|
2053
|
+
|
2054
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2055
|
+
constexpr const U& operator*() const&
|
2056
|
+
{
|
2057
|
+
return val();
|
2058
|
+
}
|
2059
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2060
|
+
TL_EXPECTED_11_CONSTEXPR U& operator*() &
|
2061
|
+
{
|
2062
|
+
return val();
|
2063
|
+
}
|
2064
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2065
|
+
constexpr const U&& operator*() const&&
|
2066
|
+
{
|
2067
|
+
return std::move(val());
|
2068
|
+
}
|
2069
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2070
|
+
TL_EXPECTED_11_CONSTEXPR U&& operator*() &&
|
2071
|
+
{
|
2072
|
+
return std::move(val());
|
2073
|
+
}
|
2074
|
+
|
2075
|
+
constexpr bool has_value() const noexcept
|
2076
|
+
{
|
2077
|
+
return this->m_has_val;
|
2078
|
+
}
|
2079
|
+
constexpr explicit operator bool() const noexcept
|
2080
|
+
{
|
2081
|
+
return this->m_has_val;
|
2082
|
+
}
|
2083
|
+
|
2084
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2085
|
+
TL_EXPECTED_11_CONSTEXPR const U& value() const&
|
2086
|
+
{
|
2087
|
+
if (!has_value())
|
2088
|
+
detail::throw_exception(bad_expected_access<E>(err().value()));
|
2089
|
+
return val();
|
2090
|
+
}
|
2091
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2092
|
+
TL_EXPECTED_11_CONSTEXPR U& value() &
|
2093
|
+
{
|
2094
|
+
if (!has_value())
|
2095
|
+
detail::throw_exception(bad_expected_access<E>(err().value()));
|
2096
|
+
return val();
|
2097
|
+
}
|
2098
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2099
|
+
TL_EXPECTED_11_CONSTEXPR const U&& value() const&&
|
2100
|
+
{
|
2101
|
+
if (!has_value())
|
2102
|
+
detail::throw_exception(bad_expected_access<E>(std::move(err()).value()));
|
2103
|
+
return std::move(val());
|
2104
|
+
}
|
2105
|
+
template<class U = T, detail::enable_if_t<!std::is_void<U>::value>* = nullptr>
|
2106
|
+
TL_EXPECTED_11_CONSTEXPR U&& value() &&
|
2107
|
+
{
|
2108
|
+
if (!has_value())
|
2109
|
+
detail::throw_exception(bad_expected_access<E>(std::move(err()).value()));
|
2110
|
+
return std::move(val());
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
constexpr const E& error() const&
|
2114
|
+
{
|
2115
|
+
return err().value();
|
2116
|
+
}
|
2117
|
+
TL_EXPECTED_11_CONSTEXPR E& error() &
|
2118
|
+
{
|
2119
|
+
return err().value();
|
2120
|
+
}
|
2121
|
+
constexpr const E&& error() const&&
|
2122
|
+
{
|
2123
|
+
return std::move(err().value());
|
2124
|
+
}
|
2125
|
+
TL_EXPECTED_11_CONSTEXPR E&& error() &&
|
2126
|
+
{
|
2127
|
+
return std::move(err().value());
|
2128
|
+
}
|
2129
|
+
|
2130
|
+
template<class U>
|
2131
|
+
constexpr T value_or(U&& v) const&
|
2132
|
+
{
|
2133
|
+
static_assert(std::is_copy_constructible<T>::value && std::is_convertible<U&&, T>::value,
|
2134
|
+
"T must be copy-constructible and convertible to from U&&");
|
2135
|
+
return bool(*this) ? **this : static_cast<T>(std::forward<U>(v));
|
2136
|
+
}
|
2137
|
+
template<class U>
|
2138
|
+
TL_EXPECTED_11_CONSTEXPR T value_or(U&& v) &&
|
2139
|
+
{
|
2140
|
+
static_assert(std::is_move_constructible<T>::value && std::is_convertible<U&&, T>::value,
|
2141
|
+
"T must be move-constructible and convertible to from U&&");
|
2142
|
+
return bool(*this) ? std::move(**this) : static_cast<T>(std::forward<U>(v));
|
2143
|
+
}
|
2144
|
+
};
|
2145
|
+
|
2146
|
+
namespace detail
|
2147
|
+
{
|
2148
|
+
template<class Exp>
|
2149
|
+
using exp_t = typename detail::decay_t<Exp>::value_type;
|
2150
|
+
template<class Exp>
|
2151
|
+
using err_t = typename detail::decay_t<Exp>::error_type;
|
2152
|
+
template<class Exp, class Ret>
|
2153
|
+
using ret_t = expected<Ret, err_t<Exp>>;
|
2154
|
+
|
2155
|
+
#ifdef TL_EXPECTED_CXX14
|
2156
|
+
template<class Exp,
|
2157
|
+
class F,
|
2158
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2159
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), *std::declval<Exp>()))>
|
2160
|
+
constexpr auto
|
2161
|
+
and_then_impl(Exp&& exp, F&& f)
|
2162
|
+
{
|
2163
|
+
static_assert(detail::is_expected<Ret>::value, "F must return an expected");
|
2164
|
+
|
2165
|
+
return exp.has_value() ? detail::invoke(std::forward<F>(f), *std::forward<Exp>(exp)) : Ret(unexpect, std::forward<Exp>(exp).error());
|
2166
|
+
}
|
2167
|
+
|
2168
|
+
template<class Exp,
|
2169
|
+
class F,
|
2170
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2171
|
+
class Ret = decltype(detail::invoke(std::declval<F>()))>
|
2172
|
+
constexpr auto
|
2173
|
+
and_then_impl(Exp&& exp, F&& f)
|
2174
|
+
{
|
2175
|
+
static_assert(detail::is_expected<Ret>::value, "F must return an expected");
|
2176
|
+
|
2177
|
+
return exp.has_value() ? detail::invoke(std::forward<F>(f)) : Ret(unexpect, std::forward<Exp>(exp).error());
|
2178
|
+
}
|
2179
|
+
#else
|
2180
|
+
template<class>
|
2181
|
+
struct TC;
|
2182
|
+
template<class Exp,
|
2183
|
+
class F,
|
2184
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), *std::declval<Exp>())),
|
2185
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr>
|
2186
|
+
auto
|
2187
|
+
and_then_impl(Exp&& exp, F&& f) -> Ret
|
2188
|
+
{
|
2189
|
+
static_assert(detail::is_expected<Ret>::value, "F must return an expected");
|
2190
|
+
|
2191
|
+
return exp.has_value() ? detail::invoke(std::forward<F>(f), *std::forward<Exp>(exp)) : Ret(unexpect, std::forward<Exp>(exp).error());
|
2192
|
+
}
|
2193
|
+
|
2194
|
+
template<class Exp,
|
2195
|
+
class F,
|
2196
|
+
class Ret = decltype(detail::invoke(std::declval<F>())),
|
2197
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr>
|
2198
|
+
constexpr auto
|
2199
|
+
and_then_impl(Exp&& exp, F&& f) -> Ret
|
2200
|
+
{
|
2201
|
+
static_assert(detail::is_expected<Ret>::value, "F must return an expected");
|
2202
|
+
|
2203
|
+
return exp.has_value() ? detail::invoke(std::forward<F>(f)) : Ret(unexpect, std::forward<Exp>(exp).error());
|
2204
|
+
}
|
2205
|
+
#endif
|
2206
|
+
|
2207
|
+
#ifdef TL_EXPECTED_CXX14
|
2208
|
+
template<class Exp,
|
2209
|
+
class F,
|
2210
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2211
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), *std::declval<Exp>())),
|
2212
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2213
|
+
constexpr auto
|
2214
|
+
expected_map_impl(Exp&& exp, F&& f)
|
2215
|
+
{
|
2216
|
+
using result = ret_t<Exp, detail::decay_t<Ret>>;
|
2217
|
+
return exp.has_value() ? result(detail::invoke(std::forward<F>(f), *std::forward<Exp>(exp)))
|
2218
|
+
: result(unexpect, std::forward<Exp>(exp).error());
|
2219
|
+
}
|
2220
|
+
|
2221
|
+
template<class Exp,
|
2222
|
+
class F,
|
2223
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2224
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), *std::declval<Exp>())),
|
2225
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2226
|
+
auto
|
2227
|
+
expected_map_impl(Exp&& exp, F&& f)
|
2228
|
+
{
|
2229
|
+
using result = expected<void, err_t<Exp>>;
|
2230
|
+
if (exp.has_value()) {
|
2231
|
+
detail::invoke(std::forward<F>(f), *std::forward<Exp>(exp));
|
2232
|
+
return result();
|
2233
|
+
}
|
2234
|
+
|
2235
|
+
return result(unexpect, std::forward<Exp>(exp).error());
|
2236
|
+
}
|
2237
|
+
|
2238
|
+
template<class Exp,
|
2239
|
+
class F,
|
2240
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2241
|
+
class Ret = decltype(detail::invoke(std::declval<F>())),
|
2242
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2243
|
+
constexpr auto
|
2244
|
+
expected_map_impl(Exp&& exp, F&& f)
|
2245
|
+
{
|
2246
|
+
using result = ret_t<Exp, detail::decay_t<Ret>>;
|
2247
|
+
return exp.has_value() ? result(detail::invoke(std::forward<F>(f))) : result(unexpect, std::forward<Exp>(exp).error());
|
2248
|
+
}
|
2249
|
+
|
2250
|
+
template<class Exp,
|
2251
|
+
class F,
|
2252
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2253
|
+
class Ret = decltype(detail::invoke(std::declval<F>())),
|
2254
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2255
|
+
auto
|
2256
|
+
expected_map_impl(Exp&& exp, F&& f)
|
2257
|
+
{
|
2258
|
+
using result = expected<void, err_t<Exp>>;
|
2259
|
+
if (exp.has_value()) {
|
2260
|
+
detail::invoke(std::forward<F>(f));
|
2261
|
+
return result();
|
2262
|
+
}
|
2263
|
+
|
2264
|
+
return result(unexpect, std::forward<Exp>(exp).error());
|
2265
|
+
}
|
2266
|
+
#else
|
2267
|
+
template<class Exp,
|
2268
|
+
class F,
|
2269
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2270
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), *std::declval<Exp>())),
|
2271
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2272
|
+
|
2273
|
+
constexpr auto
|
2274
|
+
expected_map_impl(Exp&& exp, F&& f) -> ret_t<Exp, detail::decay_t<Ret>>
|
2275
|
+
{
|
2276
|
+
using result = ret_t<Exp, detail::decay_t<Ret>>;
|
2277
|
+
|
2278
|
+
return exp.has_value() ? result(detail::invoke(std::forward<F>(f), *std::forward<Exp>(exp)))
|
2279
|
+
: result(unexpect, std::forward<Exp>(exp).error());
|
2280
|
+
}
|
2281
|
+
|
2282
|
+
template<class Exp,
|
2283
|
+
class F,
|
2284
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2285
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), *std::declval<Exp>())),
|
2286
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2287
|
+
|
2288
|
+
auto
|
2289
|
+
expected_map_impl(Exp&& exp, F&& f) -> expected<void, err_t<Exp>>
|
2290
|
+
{
|
2291
|
+
if (exp.has_value()) {
|
2292
|
+
detail::invoke(std::forward<F>(f), *std::forward<Exp>(exp));
|
2293
|
+
return {};
|
2294
|
+
}
|
2295
|
+
|
2296
|
+
return unexpected<err_t<Exp>>(std::forward<Exp>(exp).error());
|
2297
|
+
}
|
2298
|
+
|
2299
|
+
template<class Exp,
|
2300
|
+
class F,
|
2301
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2302
|
+
class Ret = decltype(detail::invoke(std::declval<F>())),
|
2303
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2304
|
+
|
2305
|
+
constexpr auto
|
2306
|
+
expected_map_impl(Exp&& exp, F&& f) -> ret_t<Exp, detail::decay_t<Ret>>
|
2307
|
+
{
|
2308
|
+
using result = ret_t<Exp, detail::decay_t<Ret>>;
|
2309
|
+
|
2310
|
+
return exp.has_value() ? result(detail::invoke(std::forward<F>(f))) : result(unexpect, std::forward<Exp>(exp).error());
|
2311
|
+
}
|
2312
|
+
|
2313
|
+
template<class Exp,
|
2314
|
+
class F,
|
2315
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2316
|
+
class Ret = decltype(detail::invoke(std::declval<F>())),
|
2317
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2318
|
+
|
2319
|
+
auto
|
2320
|
+
expected_map_impl(Exp&& exp, F&& f) -> expected<void, err_t<Exp>>
|
2321
|
+
{
|
2322
|
+
if (exp.has_value()) {
|
2323
|
+
detail::invoke(std::forward<F>(f));
|
2324
|
+
return {};
|
2325
|
+
}
|
2326
|
+
|
2327
|
+
return unexpected<err_t<Exp>>(std::forward<Exp>(exp).error());
|
2328
|
+
}
|
2329
|
+
#endif
|
2330
|
+
|
2331
|
+
#if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
|
2332
|
+
template<class Exp,
|
2333
|
+
class F,
|
2334
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2335
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2336
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2337
|
+
constexpr auto
|
2338
|
+
map_error_impl(Exp&& exp, F&& f)
|
2339
|
+
{
|
2340
|
+
using result = expected<exp_t<Exp>, detail::decay_t<Ret>>;
|
2341
|
+
return exp.has_value() ? result(*std::forward<Exp>(exp))
|
2342
|
+
: result(unexpect, detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
|
2343
|
+
}
|
2344
|
+
template<class Exp,
|
2345
|
+
class F,
|
2346
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2347
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2348
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2349
|
+
auto
|
2350
|
+
map_error_impl(Exp&& exp, F&& f)
|
2351
|
+
{
|
2352
|
+
using result = expected<exp_t<Exp>, monostate>;
|
2353
|
+
if (exp.has_value()) {
|
2354
|
+
return result(*std::forward<Exp>(exp));
|
2355
|
+
}
|
2356
|
+
|
2357
|
+
detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error());
|
2358
|
+
return result(unexpect, monostate{});
|
2359
|
+
}
|
2360
|
+
template<class Exp,
|
2361
|
+
class F,
|
2362
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2363
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2364
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2365
|
+
constexpr auto
|
2366
|
+
map_error_impl(Exp&& exp, F&& f)
|
2367
|
+
{
|
2368
|
+
using result = expected<exp_t<Exp>, detail::decay_t<Ret>>;
|
2369
|
+
return exp.has_value() ? result() : result(unexpect, detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
|
2370
|
+
}
|
2371
|
+
template<class Exp,
|
2372
|
+
class F,
|
2373
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2374
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2375
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2376
|
+
auto
|
2377
|
+
map_error_impl(Exp&& exp, F&& f)
|
2378
|
+
{
|
2379
|
+
using result = expected<exp_t<Exp>, monostate>;
|
2380
|
+
if (exp.has_value()) {
|
2381
|
+
return result();
|
2382
|
+
}
|
2383
|
+
|
2384
|
+
detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error());
|
2385
|
+
return result(unexpect, monostate{});
|
2386
|
+
}
|
2387
|
+
#else
|
2388
|
+
template<class Exp,
|
2389
|
+
class F,
|
2390
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2391
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2392
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2393
|
+
constexpr auto
|
2394
|
+
map_error_impl(Exp&& exp, F&& f) -> expected<exp_t<Exp>, detail::decay_t<Ret>>
|
2395
|
+
{
|
2396
|
+
using result = expected<exp_t<Exp>, detail::decay_t<Ret>>;
|
2397
|
+
|
2398
|
+
return exp.has_value() ? result(*std::forward<Exp>(exp))
|
2399
|
+
: result(unexpect, detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
|
2400
|
+
}
|
2401
|
+
|
2402
|
+
template<class Exp,
|
2403
|
+
class F,
|
2404
|
+
detail::enable_if_t<!std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2405
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2406
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2407
|
+
auto
|
2408
|
+
map_error_impl(Exp&& exp, F&& f) -> expected<exp_t<Exp>, monostate>
|
2409
|
+
{
|
2410
|
+
using result = expected<exp_t<Exp>, monostate>;
|
2411
|
+
if (exp.has_value()) {
|
2412
|
+
return result(*std::forward<Exp>(exp));
|
2413
|
+
}
|
2414
|
+
|
2415
|
+
detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error());
|
2416
|
+
return result(unexpect, monostate{});
|
2417
|
+
}
|
2418
|
+
|
2419
|
+
template<class Exp,
|
2420
|
+
class F,
|
2421
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2422
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2423
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2424
|
+
constexpr auto
|
2425
|
+
map_error_impl(Exp&& exp, F&& f) -> expected<exp_t<Exp>, detail::decay_t<Ret>>
|
2426
|
+
{
|
2427
|
+
using result = expected<exp_t<Exp>, detail::decay_t<Ret>>;
|
2428
|
+
|
2429
|
+
return exp.has_value() ? result() : result(unexpect, detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
|
2430
|
+
}
|
2431
|
+
|
2432
|
+
template<class Exp,
|
2433
|
+
class F,
|
2434
|
+
detail::enable_if_t<std::is_void<exp_t<Exp>>::value>* = nullptr,
|
2435
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2436
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2437
|
+
auto
|
2438
|
+
map_error_impl(Exp&& exp, F&& f) -> expected<exp_t<Exp>, monostate>
|
2439
|
+
{
|
2440
|
+
using result = expected<exp_t<Exp>, monostate>;
|
2441
|
+
if (exp.has_value()) {
|
2442
|
+
return result();
|
2443
|
+
}
|
2444
|
+
|
2445
|
+
detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error());
|
2446
|
+
return result(unexpect, monostate{});
|
2447
|
+
}
|
2448
|
+
#endif
|
2449
|
+
|
2450
|
+
#ifdef TL_EXPECTED_CXX14
|
2451
|
+
template<class Exp,
|
2452
|
+
class F,
|
2453
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2454
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2455
|
+
constexpr auto
|
2456
|
+
or_else_impl(Exp&& exp, F&& f)
|
2457
|
+
{
|
2458
|
+
static_assert(detail::is_expected<Ret>::value, "F must return an expected");
|
2459
|
+
return exp.has_value() ? std::forward<Exp>(exp) : detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error());
|
2460
|
+
}
|
2461
|
+
|
2462
|
+
template<class Exp,
|
2463
|
+
class F,
|
2464
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2465
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2466
|
+
detail::decay_t<Exp>
|
2467
|
+
or_else_impl(Exp&& exp, F&& f)
|
2468
|
+
{
|
2469
|
+
return exp.has_value() ? std::forward<Exp>(exp)
|
2470
|
+
: (detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error()), std::forward<Exp>(exp));
|
2471
|
+
}
|
2472
|
+
#else
|
2473
|
+
template<class Exp,
|
2474
|
+
class F,
|
2475
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2476
|
+
detail::enable_if_t<!std::is_void<Ret>::value>* = nullptr>
|
2477
|
+
auto
|
2478
|
+
or_else_impl(Exp&& exp, F&& f) -> Ret
|
2479
|
+
{
|
2480
|
+
static_assert(detail::is_expected<Ret>::value, "F must return an expected");
|
2481
|
+
return exp.has_value() ? std::forward<Exp>(exp) : detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error());
|
2482
|
+
}
|
2483
|
+
|
2484
|
+
template<class Exp,
|
2485
|
+
class F,
|
2486
|
+
class Ret = decltype(detail::invoke(std::declval<F>(), std::declval<Exp>().error())),
|
2487
|
+
detail::enable_if_t<std::is_void<Ret>::value>* = nullptr>
|
2488
|
+
detail::decay_t<Exp>
|
2489
|
+
or_else_impl(Exp&& exp, F&& f)
|
2490
|
+
{
|
2491
|
+
return exp.has_value() ? std::forward<Exp>(exp)
|
2492
|
+
: (detail::invoke(std::forward<F>(f), std::forward<Exp>(exp).error()), std::forward<Exp>(exp));
|
2493
|
+
}
|
2494
|
+
#endif
|
2495
|
+
} // namespace detail
|
2496
|
+
|
2497
|
+
template<class T, class E, class U, class F>
|
2498
|
+
constexpr bool
|
2499
|
+
operator==(const expected<T, E>& lhs, const expected<U, F>& rhs)
|
2500
|
+
{
|
2501
|
+
return (lhs.has_value() != rhs.has_value()) ? false : (!lhs.has_value() ? lhs.error() == rhs.error() : *lhs == *rhs);
|
2502
|
+
}
|
2503
|
+
template<class T, class E, class U, class F>
|
2504
|
+
constexpr bool
|
2505
|
+
operator!=(const expected<T, E>& lhs, const expected<U, F>& rhs)
|
2506
|
+
{
|
2507
|
+
return (lhs.has_value() != rhs.has_value()) ? true : (!lhs.has_value() ? lhs.error() != rhs.error() : *lhs != *rhs);
|
2508
|
+
}
|
2509
|
+
|
2510
|
+
template<class T, class E, class U>
|
2511
|
+
constexpr bool
|
2512
|
+
operator==(const expected<T, E>& x, const U& v)
|
2513
|
+
{
|
2514
|
+
return x.has_value() ? *x == v : false;
|
2515
|
+
}
|
2516
|
+
template<class T, class E, class U>
|
2517
|
+
constexpr bool
|
2518
|
+
operator==(const U& v, const expected<T, E>& x)
|
2519
|
+
{
|
2520
|
+
return x.has_value() ? *x == v : false;
|
2521
|
+
}
|
2522
|
+
template<class T, class E, class U>
|
2523
|
+
constexpr bool
|
2524
|
+
operator!=(const expected<T, E>& x, const U& v)
|
2525
|
+
{
|
2526
|
+
return x.has_value() ? *x != v : true;
|
2527
|
+
}
|
2528
|
+
template<class T, class E, class U>
|
2529
|
+
constexpr bool
|
2530
|
+
operator!=(const U& v, const expected<T, E>& x)
|
2531
|
+
{
|
2532
|
+
return x.has_value() ? *x != v : true;
|
2533
|
+
}
|
2534
|
+
|
2535
|
+
template<class T, class E>
|
2536
|
+
constexpr bool
|
2537
|
+
operator==(const expected<T, E>& x, const unexpected<E>& e)
|
2538
|
+
{
|
2539
|
+
return x.has_value() ? false : x.error() == e.value();
|
2540
|
+
}
|
2541
|
+
template<class T, class E>
|
2542
|
+
constexpr bool
|
2543
|
+
operator==(const unexpected<E>& e, const expected<T, E>& x)
|
2544
|
+
{
|
2545
|
+
return x.has_value() ? false : x.error() == e.value();
|
2546
|
+
}
|
2547
|
+
template<class T, class E>
|
2548
|
+
constexpr bool
|
2549
|
+
operator!=(const expected<T, E>& x, const unexpected<E>& e)
|
2550
|
+
{
|
2551
|
+
return x.has_value() ? true : x.error() != e.value();
|
2552
|
+
}
|
2553
|
+
template<class T, class E>
|
2554
|
+
constexpr bool
|
2555
|
+
operator!=(const unexpected<E>& e, const expected<T, E>& x)
|
2556
|
+
{
|
2557
|
+
return x.has_value() ? true : x.error() != e.value();
|
2558
|
+
}
|
2559
|
+
|
2560
|
+
template<class T,
|
2561
|
+
class E,
|
2562
|
+
detail::enable_if_t<(std::is_void<T>::value || std::is_move_constructible<T>::value) && detail::is_swappable<T>::value &&
|
2563
|
+
std::is_move_constructible<E>::value && detail::is_swappable<E>::value>* = nullptr>
|
2564
|
+
void
|
2565
|
+
swap(expected<T, E>& lhs, expected<T, E>& rhs) noexcept(noexcept(lhs.swap(rhs)))
|
2566
|
+
{
|
2567
|
+
lhs.swap(rhs);
|
2568
|
+
}
|
2569
|
+
} // namespace tl
|
2570
|
+
|
2571
|
+
#endif
|