grpc 1.68.1 → 1.74.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +379 -370
- data/include/grpc/create_channel_from_endpoint.h +54 -0
- data/include/grpc/credentials.h +11 -5
- data/include/grpc/event_engine/endpoint_config.h +5 -5
- data/include/grpc/event_engine/event_engine.h +232 -16
- data/include/grpc/event_engine/internal/write_event.h +34 -0
- data/include/grpc/event_engine/memory_request.h +3 -3
- data/include/grpc/grpc_posix.h +20 -1
- data/include/grpc/impl/channel_arg_names.h +83 -55
- data/include/grpc/impl/compression_types.h +3 -2
- data/include/grpc/impl/slice_type.h +1 -1
- data/include/grpc/module.modulemap +1 -0
- data/include/grpc/status.h +1 -1
- data/include/grpc/support/atm.h +0 -13
- data/include/grpc/support/json.h +43 -37
- data/include/grpc/support/port_platform.h +8 -5
- data/include/grpc/support/workaround_list.h +1 -4
- data/src/core/call/call_arena_allocator.cc +27 -0
- data/src/core/call/call_arena_allocator.h +91 -0
- data/src/core/call/call_destination.h +76 -0
- data/src/core/call/call_filters.cc +148 -0
- data/src/core/call/call_filters.h +1976 -0
- data/src/core/call/call_finalization.h +88 -0
- data/src/core/call/call_spine.cc +90 -0
- data/src/core/call/call_spine.h +646 -0
- data/src/core/call/call_state.cc +39 -0
- data/src/core/call/call_state.h +1154 -0
- data/src/core/call/client_call.cc +458 -0
- data/src/core/call/client_call.h +192 -0
- data/src/core/call/custom_metadata.h +30 -0
- data/src/core/call/interception_chain.cc +155 -0
- data/src/core/call/interception_chain.h +278 -0
- data/src/core/call/message.cc +44 -0
- data/src/core/call/message.h +70 -0
- data/src/core/call/metadata.cc +61 -0
- data/src/core/call/metadata.h +218 -0
- data/src/core/call/metadata_batch.cc +383 -0
- data/src/core/call/metadata_batch.h +1668 -0
- data/src/core/call/metadata_compression_traits.h +66 -0
- data/src/core/call/metadata_info.cc +73 -0
- data/src/core/call/metadata_info.h +85 -0
- data/src/core/call/parsed_metadata.cc +35 -0
- data/src/core/call/parsed_metadata.h +429 -0
- data/src/core/call/request_buffer.cc +224 -0
- data/src/core/call/request_buffer.h +192 -0
- data/src/core/call/security_context.cc +125 -0
- data/src/core/call/security_context.h +114 -0
- data/src/core/call/server_call.cc +259 -0
- data/src/core/call/server_call.h +169 -0
- data/src/core/call/simple_slice_based_metadata.h +53 -0
- data/src/core/call/status_util.cc +153 -0
- data/src/core/call/status_util.h +80 -0
- data/src/core/channelz/channel_trace.cc +217 -111
- data/src/core/channelz/channel_trace.h +389 -64
- data/src/core/channelz/channelz.cc +480 -178
- data/src/core/channelz/channelz.h +429 -93
- data/src/core/channelz/channelz_registry.cc +323 -124
- data/src/core/channelz/channelz_registry.h +203 -21
- data/src/core/channelz/property_list.cc +357 -0
- data/src/core/channelz/property_list.h +202 -0
- data/src/core/channelz/ztrace_collector.h +316 -0
- data/src/core/client_channel/backup_poller.cc +18 -3
- data/src/core/client_channel/client_channel.cc +86 -99
- data/src/core/client_channel/client_channel.h +6 -5
- data/src/core/client_channel/client_channel_args.h +21 -0
- data/src/core/client_channel/client_channel_filter.cc +102 -198
- data/src/core/client_channel/client_channel_filter.h +12 -12
- data/src/core/client_channel/client_channel_internal.h +1 -1
- data/src/core/client_channel/client_channel_plugin.cc +3 -2
- data/src/core/client_channel/client_channel_service_config.cc +1 -1
- data/src/core/client_channel/client_channel_service_config.h +6 -6
- data/src/core/client_channel/config_selector.h +10 -4
- data/src/core/client_channel/connector.h +0 -3
- data/src/core/client_channel/direct_channel.cc +5 -5
- data/src/core/client_channel/direct_channel.h +1 -1
- data/src/core/client_channel/dynamic_filters.cc +5 -7
- data/src/core/client_channel/dynamic_filters.h +1 -2
- data/src/core/client_channel/global_subchannel_pool.cc +71 -7
- data/src/core/client_channel/global_subchannel_pool.h +37 -4
- data/src/core/client_channel/lb_metadata.cc +7 -8
- data/src/core/client_channel/lb_metadata.h +4 -4
- data/src/core/client_channel/load_balanced_call_destination.cc +6 -6
- data/src/core/client_channel/load_balanced_call_destination.h +1 -1
- data/src/core/client_channel/retry_filter.cc +22 -28
- data/src/core/client_channel/retry_filter.h +11 -8
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +58 -56
- data/src/core/client_channel/retry_filter_legacy_call_data.h +14 -12
- data/src/core/client_channel/retry_interceptor.cc +394 -0
- data/src/core/client_channel/retry_interceptor.h +158 -0
- data/src/core/client_channel/retry_service_config.cc +3 -3
- data/src/core/client_channel/retry_service_config.h +18 -5
- data/src/core/client_channel/retry_throttle.cc +69 -73
- data/src/core/client_channel/retry_throttle.h +23 -37
- data/src/core/client_channel/subchannel.cc +93 -105
- data/src/core/client_channel/subchannel.h +15 -14
- data/src/core/client_channel/subchannel_pool_interface.cc +5 -6
- data/src/core/client_channel/subchannel_pool_interface.h +11 -1
- data/src/core/client_channel/subchannel_stream_client.cc +14 -12
- data/src/core/client_channel/subchannel_stream_client.h +5 -5
- data/src/core/config/config_vars.cc +164 -0
- data/src/core/config/config_vars.h +137 -0
- data/src/core/config/config_vars_non_generated.cc +49 -0
- data/src/core/config/core_configuration.cc +151 -0
- data/src/core/config/core_configuration.h +335 -0
- data/src/core/config/load_config.cc +78 -0
- data/src/core/config/load_config.h +54 -0
- data/src/core/credentials/call/call_credentials.h +157 -0
- data/src/core/credentials/call/call_creds_registry.h +125 -0
- data/src/core/credentials/call/call_creds_registry_init.cc +91 -0
- data/src/core/credentials/call/call_creds_util.cc +97 -0
- data/src/core/credentials/call/call_creds_util.h +43 -0
- data/src/core/credentials/call/composite/composite_call_credentials.cc +115 -0
- data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
- data/src/core/credentials/call/external/aws_external_account_credentials.cc +528 -0
- data/src/core/credentials/call/external/aws_external_account_credentials.h +117 -0
- data/src/core/credentials/call/external/aws_request_signer.cc +231 -0
- data/src/core/credentials/call/external/aws_request_signer.h +72 -0
- data/src/core/credentials/call/external/external_account_credentials.cc +641 -0
- data/src/core/credentials/call/external/external_account_credentials.h +207 -0
- data/src/core/credentials/call/external/file_external_account_credentials.cc +174 -0
- data/src/core/credentials/call/external/file_external_account_credentials.h +80 -0
- data/src/core/credentials/call/external/url_external_account_credentials.cc +222 -0
- data/src/core/credentials/call/external/url_external_account_credentials.h +73 -0
- data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +154 -0
- data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/credentials/call/iam/iam_credentials.cc +78 -0
- data/src/core/credentials/call/iam/iam_credentials.h +66 -0
- data/src/core/credentials/call/json_util.cc +69 -0
- data/src/core/credentials/call/json_util.h +43 -0
- data/src/core/credentials/call/jwt/json_token.cc +318 -0
- data/src/core/credentials/call/jwt/json_token.h +78 -0
- data/src/core/credentials/call/jwt/jwt_credentials.cc +181 -0
- data/src/core/credentials/call/jwt/jwt_credentials.h +106 -0
- data/src/core/credentials/call/jwt/jwt_verifier.cc +988 -0
- data/src/core/credentials/call/jwt/jwt_verifier.h +122 -0
- data/src/core/credentials/call/jwt_token_file/jwt_token_file_call_credentials.cc +86 -0
- data/src/core/credentials/call/jwt_token_file/jwt_token_file_call_credentials.h +74 -0
- data/src/core/credentials/call/jwt_util.cc +70 -0
- data/src/core/credentials/call/jwt_util.h +32 -0
- data/src/core/credentials/call/oauth2/oauth2_credentials.cc +656 -0
- data/src/core/credentials/call/oauth2/oauth2_credentials.h +197 -0
- data/src/core/credentials/call/plugin/plugin_credentials.cc +201 -0
- data/src/core/credentials/call/plugin/plugin_credentials.h +123 -0
- data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.cc +304 -0
- data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.h +181 -0
- data/src/core/credentials/transport/alts/alts_credentials.cc +116 -0
- data/src/core/credentials/transport/alts/alts_credentials.h +127 -0
- data/src/core/credentials/transport/alts/alts_security_connector.cc +304 -0
- data/src/core/credentials/transport/alts/alts_security_connector.h +78 -0
- data/src/core/credentials/transport/alts/check_gcp_environment.cc +71 -0
- data/src/core/credentials/transport/alts/check_gcp_environment.h +57 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_linux.cc +67 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_no_op.cc +32 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_windows.cc +101 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_client_options.cc +123 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_options.cc +45 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_options.h +74 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_server_options.cc +55 -0
- data/src/core/credentials/transport/channel_creds_registry.h +126 -0
- data/src/core/credentials/transport/channel_creds_registry_init.cc +245 -0
- data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
- data/src/core/credentials/transport/composite/composite_channel_credentials.h +89 -0
- data/src/core/credentials/transport/fake/fake_credentials.cc +81 -0
- data/src/core/credentials/transport/fake/fake_credentials.h +92 -0
- data/src/core/credentials/transport/fake/fake_security_connector.cc +314 -0
- data/src/core/credentials/transport/fake/fake_security_connector.h +42 -0
- data/src/core/credentials/transport/google_default/credentials_generic.cc +38 -0
- data/src/core/credentials/transport/google_default/google_default_credentials.cc +510 -0
- data/src/core/credentials/transport/google_default/google_default_credentials.h +101 -0
- data/src/core/credentials/transport/insecure/insecure_credentials.cc +71 -0
- data/src/core/credentials/transport/insecure/insecure_credentials.h +61 -0
- data/src/core/credentials/transport/insecure/insecure_security_connector.cc +118 -0
- data/src/core/credentials/transport/insecure/insecure_security_connector.h +102 -0
- data/src/core/credentials/transport/local/local_credentials.cc +68 -0
- data/src/core/credentials/transport/local/local_credentials.h +77 -0
- data/src/core/credentials/transport/local/local_security_connector.cc +306 -0
- data/src/core/credentials/transport/local/local_security_connector.h +62 -0
- data/src/core/credentials/transport/security_connector.cc +123 -0
- data/src/core/credentials/transport/security_connector.h +197 -0
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +473 -0
- data/src/core/credentials/transport/ssl/ssl_credentials.h +144 -0
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +433 -0
- data/src/core/credentials/transport/ssl/ssl_security_connector.h +82 -0
- data/src/core/credentials/transport/tls/certificate_provider_factory.h +69 -0
- data/src/core/credentials/transport/tls/certificate_provider_registry.cc +50 -0
- data/src/core/credentials/transport/tls/certificate_provider_registry.h +75 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +337 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +215 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_match.cc +84 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +490 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +206 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_verifier.cc +237 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_verifier.h +169 -0
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.cc +161 -0
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.h +145 -0
- data/src/core/credentials/transport/tls/grpc_tls_crl_provider.cc +257 -0
- data/src/core/credentials/transport/tls/grpc_tls_crl_provider.h +129 -0
- data/src/core/credentials/transport/tls/load_system_roots.h +35 -0
- data/src/core/credentials/transport/tls/load_system_roots_fallback.cc +36 -0
- data/src/core/credentials/transport/tls/load_system_roots_supported.cc +166 -0
- data/src/core/credentials/transport/tls/load_system_roots_supported.h +44 -0
- data/src/core/credentials/transport/tls/load_system_roots_windows.cc +85 -0
- data/src/core/credentials/transport/tls/ssl_utils.cc +646 -0
- data/src/core/credentials/transport/tls/ssl_utils.h +193 -0
- data/src/core/credentials/transport/tls/tls_credentials.cc +170 -0
- data/src/core/credentials/transport/tls/tls_credentials.h +75 -0
- data/src/core/credentials/transport/tls/tls_security_connector.cc +817 -0
- data/src/core/credentials/transport/tls/tls_security_connector.h +285 -0
- data/src/core/credentials/transport/tls/tls_utils.cc +127 -0
- data/src/core/credentials/transport/tls/tls_utils.h +50 -0
- data/src/core/credentials/transport/transport_credentials.cc +158 -0
- data/src/core/credentials/transport/transport_credentials.h +182 -0
- data/src/core/credentials/transport/xds/xds_credentials.cc +228 -0
- data/src/core/credentials/transport/xds/xds_credentials.h +110 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +6 -13
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +7 -7
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +17 -11
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +11 -18
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +6 -6
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -2
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +1 -1
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +11 -18
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +21 -21
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +1 -1
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +2 -2
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -6
- data/src/core/ext/filters/http/client/http_client_filter.h +5 -5
- data/src/core/ext/filters/http/client_authority_filter.cc +5 -12
- data/src/core/ext/filters/http/client_authority_filter.h +6 -6
- data/src/core/ext/filters/http/http_filters_plugin.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +21 -25
- data/src/core/ext/filters/http/message_compress/compression_filter.h +56 -18
- data/src/core/ext/filters/http/server/http_server_filter.cc +5 -10
- data/src/core/ext/filters/http/server/http_server_filter.h +22 -10
- data/src/core/ext/filters/message_size/message_size_filter.cc +15 -27
- data/src/core/ext/filters/message_size/message_size_filter.h +21 -22
- data/src/core/ext/filters/rbac/rbac_filter.cc +3 -10
- data/src/core/ext/filters/rbac/rbac_filter.h +6 -6
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +3 -3
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +3 -8
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +4 -4
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +1 -1
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +3 -3
- data/src/core/ext/transport/chttp2/chttp2_plugin.cc +40 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +134 -153
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +7 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +356 -769
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +197 -13
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +5 -7
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +402 -167
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +7 -13
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +1239 -3514
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +1008 -1486
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/flow_control.h +26 -3
- data/src/core/ext/transport/chttp2/transport/frame.cc +326 -167
- data/src/core/ext/transport/chttp2/transport/frame.h +126 -8
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +25 -8
- data/src/core/ext/transport/chttp2/transport/frame_data.h +2 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +23 -11
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +5 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -7
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +3 -1
- data/src/core/ext/transport/chttp2/transport/frame_security.cc +80 -0
- data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +43 -8
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +21 -0
- data/src/core/ext/transport/chttp2/transport/header_assembler.h +299 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +12 -5
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +7 -5
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +36 -35
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +11 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +14 -3
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +1017 -0
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +593 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +21 -10
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +36 -5
- data/src/core/ext/transport/chttp2/transport/http2_stats_collector.cc +30 -0
- data/src/core/ext/transport/chttp2/transport/http2_stats_collector.h +33 -0
- data/src/core/ext/transport/chttp2/transport/http2_status.h +414 -0
- data/src/core/ext/transport/chttp2/transport/http2_transport.cc +43 -0
- data/src/core/ext/transport/chttp2/transport/http2_transport.h +65 -0
- data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +223 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +90 -23
- data/src/core/ext/transport/chttp2/transport/internal_channel_arg_names.h +24 -0
- data/src/core/ext/transport/chttp2/transport/keepalive.cc +105 -0
- data/src/core/ext/transport/chttp2/transport/keepalive.h +138 -0
- data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
- data/src/core/ext/transport/chttp2/transport/message_assembler.h +185 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +91 -43
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +21 -2
- data/src/core/ext/transport/chttp2/transport/ping_promise.cc +151 -0
- data/src/core/ext/transport/chttp2/transport/ping_promise.h +180 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +17 -20
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +19 -2
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +40 -1
- data/src/core/ext/transport/chttp2/transport/transport_common.cc +19 -0
- data/src/core/ext/transport/chttp2/transport/transport_common.h +27 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +1 -1
- data/src/core/ext/transport/chttp2/transport/writing.cc +109 -77
- data/src/core/ext/transport/inproc/inproc_transport.cc +10 -7
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +23 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +68 -68
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +34 -34
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +20 -18
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +44 -44
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +9 -9
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +149 -133
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +76 -75
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +5 -5
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +41 -29
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +29 -29
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +231 -243
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +104 -104
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +30 -30
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +367 -349
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +152 -150
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +61 -61
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +53 -49
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +31 -31
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +44 -32
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +26 -26
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +329 -262
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +126 -100
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +5 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +61 -57
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +31 -31
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +91 -95
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +35 -35
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +115 -103
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +44 -44
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +19 -15
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +216 -117
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +71 -65
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h +151 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c +60 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +232 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +65 -17
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +34 -30
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +12 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +15 -40
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +52 -44
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +30 -30
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +27 -27
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +150 -142
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +56 -56
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +80 -167
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +37 -58
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +3 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +88 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +26 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +9 -9
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +56 -36
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +26 -26
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +17 -4
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +175 -39
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +60 -30
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +5 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +55 -80
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +927 -686
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +366 -309
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +7 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +20 -16
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +18 -6
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +10 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +22 -18
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +11 -11
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +3 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +3 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +10 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +19 -19
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +12 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +313 -410
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +114 -114
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +68 -64
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +31 -31
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +22 -22
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +28 -28
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +37 -37
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +10 -6
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +338 -294
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +144 -143
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +63 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +15 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +10 -6
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +26 -26
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +3 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +2 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +91 -87
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +38 -38
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +167 -77
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +58 -49
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +40 -10
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +10 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +35 -27
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +367 -164
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +94 -69
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +5 -3
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +9 -9
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +69 -64
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +36 -36
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +10 -10
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb.h +142 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +40 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +8 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +13 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +14 -10
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +18 -14
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +7 -3
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +5 -5
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +96 -136
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +46 -46
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +95 -126
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +51 -51
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/api/http.upb.h +59 -54
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +26 -26
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +3 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +520 -320
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +267 -217
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +25 -20
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +17 -36
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +3 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/channelz.upb.h +571 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/channelz.upb_minitable.c +120 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/channelz.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb.h +1272 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.c +312 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.h +50 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb.h +984 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb_minitable.c +226 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb_minitable.h +44 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +12 -31
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +202 -145
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +50 -44
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +158 -3
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +42 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -3
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +4 -3
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +17 -9
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +25 -43
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +73 -111
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +25 -25
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +13 -13
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +5 -5
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +3 -3
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +5 -5
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +5 -5
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/validate/validate.upb.h +385 -373
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +133 -133
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +4 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +13 -13
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +5 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +9 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +5 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +7 -3
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +12 -31
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +10 -10
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +23 -15
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +30 -87
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +10 -10
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +6 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +45 -49
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +23 -23
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +12 -12
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +7 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +7 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +7 -3
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +4 -3
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +3 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -3
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +123 -62
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +200 -101
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +152 -77
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +524 -254
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +44 -23
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +66 -34
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +54 -28
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +46 -25
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +47 -25
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +256 -124
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +50 -28
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +55 -28
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +34 -18
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +414 -206
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +831 -413
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +143 -73
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1132 -552
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +63 -34
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +255 -127
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +363 -178
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +227 -114
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +57 -31
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +596 -287
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +13 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +271 -137
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +56 -30
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +45 -25
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +59 -31
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +438 -217
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +441 -221
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +55 -30
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +57 -31
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +619 -294
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +70 -36
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +62 -33
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +68 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +37 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +97 -39
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +23 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +97 -51
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +51 -27
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +147 -76
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +230 -116
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +277 -138
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +48 -26
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +388 -197
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +304 -160
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +8 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +175 -82
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +90 -47
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +98 -51
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +196 -99
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +237 -117
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +418 -193
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +13 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +194 -99
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +2004 -955
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +18 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +101 -53
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +352 -176
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +79 -42
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +67 -37
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +63 -34
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +88 -47
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +80 -43
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +53 -29
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +86 -46
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +56 -36
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +91 -49
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +105 -55
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +775 -379
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +52 -28
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +134 -68
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +189 -96
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +116 -61
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +112 -58
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +160 -82
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +75 -39
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1161 -567
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +52 -28
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +56 -33
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -26
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +390 -194
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +126 -65
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +498 -235
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +74 -36
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +221 -110
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +68 -36
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +378 -174
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +13 -4
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +100 -52
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +257 -128
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +44 -24
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +68 -35
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +37 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +61 -27
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +65 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +72 -38
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +57 -31
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +52 -29
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +51 -28
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +89 -47
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +37 -20
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +89 -47
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +67 -35
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +112 -58
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +110 -56
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +123 -62
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +59 -31
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +30 -16
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +143 -72
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +61 -32
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +51 -27
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +85 -45
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +35 -19
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +44 -23
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +61 -33
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +35 -19
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +272 -133
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +315 -154
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +64 -33
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +35 -19
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +26 -15
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +1106 -496
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +13 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +28 -16
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +23 -13
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +69 -35
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +29 -16
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +51 -26
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +32 -17
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.c +175 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.h +82 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/property_list.upbdefs.c +135 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/property_list.upbdefs.h +67 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +161 -79
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +84 -42
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +48 -26
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +26 -14
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +50 -26
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +36 -19
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +538 -261
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +86 -43
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +49 -26
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +27 -15
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +87 -44
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +37 -20
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +30 -17
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +41 -23
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +62 -33
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +36 -19
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +36 -20
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +42 -23
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +76 -39
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +45 -24
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +41 -23
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +53 -29
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +29 -16
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +58 -32
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +207 -103
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +95 -49
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +38 -20
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +60 -31
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +67 -36
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +31 -17
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +8 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +31 -17
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +8 -4
- data/src/core/filter/auth/auth_filters.h +208 -0
- data/src/core/filter/auth/client_auth_filter.cc +192 -0
- data/src/core/filter/auth/server_auth_filter.cc +208 -0
- data/src/core/filter/blackboard.cc +2 -2
- data/src/core/filter/filter_args.h +98 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +1 -1
- data/src/core/handshaker/handshaker.cc +23 -25
- data/src/core/handshaker/handshaker.h +3 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +13 -7
- data/src/core/handshaker/http_connect/http_connect_handshaker.h +1 -1
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +36 -52
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +5 -5
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +5 -5
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +6 -6
- data/src/core/handshaker/proxy_mapper.h +4 -4
- data/src/core/handshaker/proxy_mapper_registry.cc +5 -6
- data/src/core/handshaker/proxy_mapper_registry.h +4 -4
- data/src/core/handshaker/security/legacy_secure_endpoint.cc +597 -0
- data/src/core/handshaker/security/secure_endpoint.cc +813 -311
- data/src/core/handshaker/security/secure_endpoint.h +17 -0
- data/src/core/handshaker/security/security_handshaker.cc +12 -11
- data/src/core/handshaker/security/security_handshaker.h +2 -2
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +14 -6
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +1 -1
- data/src/core/lib/address_utils/sockaddr_utils.cc +5 -5
- data/src/core/lib/channel/channel_args.cc +28 -13
- data/src/core/lib/channel/channel_args.h +65 -39
- data/src/core/lib/channel/channel_args_preconditioning.h +1 -1
- data/src/core/lib/channel/channel_stack.cc +32 -4
- data/src/core/lib/channel/channel_stack.h +16 -6
- data/src/core/lib/channel/channel_stack_builder_impl.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder_impl.h +2 -7
- data/src/core/lib/channel/connected_channel.cc +4 -4
- data/src/core/lib/channel/promise_based_filter.cc +10 -10
- data/src/core/lib/channel/promise_based_filter.h +749 -416
- data/src/core/lib/compression/compression.cc +3 -2
- data/src/core/lib/compression/compression_internal.cc +9 -9
- data/src/core/lib/compression/compression_internal.h +3 -3
- data/src/core/lib/debug/trace.cc +1 -1
- data/src/core/lib/debug/trace_flags.cc +7 -6
- data/src/core/lib/debug/trace_flags.h +3 -3
- data/src/core/lib/debug/trace_impl.h +0 -1
- data/src/core/lib/event_engine/ares_resolver.cc +175 -60
- data/src/core/lib/event_engine/ares_resolver.h +54 -12
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +10 -6
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +3 -8
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +10 -11
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +12 -10
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +2 -4
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +9 -10
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +2 -4
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +5 -7
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +6 -7
- data/src/core/lib/event_engine/common_closures.h +2 -4
- data/src/core/lib/event_engine/default_event_engine.cc +63 -34
- data/src/core/lib/event_engine/default_event_engine.h +25 -34
- data/src/core/lib/event_engine/default_event_engine_factory.cc +12 -18
- data/src/core/lib/event_engine/default_event_engine_factory.h +3 -5
- data/src/core/lib/event_engine/endpoint_channel_arg_wrapper.cc +40 -0
- data/src/core/lib/event_engine/endpoint_channel_arg_wrapper.h +60 -0
- data/src/core/lib/event_engine/event_engine.cc +9 -4
- data/src/core/lib/event_engine/extensions/blocking_dns.h +46 -0
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -4
- data/src/core/lib/event_engine/extensions/channelz.h +66 -0
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +2 -4
- data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +2 -4
- data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +4 -6
- data/src/core/lib/event_engine/grpc_polled_fd.h +7 -4
- data/src/core/lib/event_engine/handle_containers.h +2 -4
- data/src/core/lib/event_engine/memory_allocator_factory.h +2 -4
- data/src/core/lib/event_engine/nameser.h +1 -1
- data/src/core/lib/event_engine/poller.h +2 -4
- data/src/core/lib/event_engine/posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +134 -212
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +13 -19
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +83 -172
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +9 -13
- data/src/core/lib/event_engine/posix_engine/event_poller.h +20 -19
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -23
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -4
- data/src/core/lib/event_engine/posix_engine/file_descriptor_collection.cc +124 -0
- data/src/core/lib/event_engine/posix_engine/file_descriptor_collection.h +243 -0
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +31 -23
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +8 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +8 -5
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +6 -11
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +5 -4
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +170 -110
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +31 -37
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +344 -104
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +74 -35
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +2 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +49 -43
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +8 -8
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +60 -146
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +12 -9
- data/src/core/lib/event_engine/posix_engine/posix_interface.h +211 -0
- data/src/core/lib/event_engine/posix_engine/posix_interface_posix.cc +1083 -0
- data/src/core/lib/event_engine/posix_engine/posix_interface_windows.cc +281 -0
- data/src/core/lib/event_engine/posix_engine/posix_write_event_sink.cc +154 -0
- data/src/core/lib/event_engine/posix_engine/posix_write_event_sink.h +174 -0
- data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +8 -736
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +12 -174
- data/src/core/lib/event_engine/posix_engine/timer.cc +4 -6
- data/src/core/lib/event_engine/posix_engine/timer.h +4 -6
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +3 -5
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -4
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +38 -29
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +17 -17
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +119 -157
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +30 -99
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +28 -29
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +8 -6
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +38 -58
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +8 -6
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +9 -10
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +14 -10
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +5 -5
- data/src/core/lib/event_engine/query_extensions.h +12 -25
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -4
- data/src/core/lib/event_engine/resolved_address.cc +2 -4
- data/src/core/lib/event_engine/resolved_address_internal.h +2 -4
- data/src/core/lib/event_engine/shim.cc +18 -18
- data/src/core/lib/event_engine/shim.h +16 -4
- data/src/core/lib/event_engine/slice.cc +2 -4
- data/src/core/lib/event_engine/slice_buffer.cc +2 -4
- data/src/core/lib/event_engine/tcp_socket_utils.cc +16 -23
- data/src/core/lib/event_engine/tcp_socket_utils.h +5 -7
- data/src/core/lib/event_engine/thread_local.cc +2 -4
- data/src/core/lib/event_engine/thread_local.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -18
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +9 -7
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -21
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +23 -15
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +7 -7
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +2 -4
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +2 -4
- data/src/core/lib/event_engine/time_util.cc +2 -4
- data/src/core/lib/event_engine/time_util.h +2 -4
- data/src/core/lib/event_engine/utils.cc +36 -4
- data/src/core/lib/event_engine/utils.h +5 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +7 -5
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +6 -4
- data/src/core/lib/event_engine/windows/iocp.cc +2 -4
- data/src/core/lib/event_engine/windows/iocp.h +2 -4
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +2 -4
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +2 -4
- data/src/core/lib/event_engine/windows/win_socket.cc +13 -4
- data/src/core/lib/event_engine/windows/win_socket.h +5 -4
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +32 -25
- data/src/core/lib/event_engine/windows/windows_endpoint.h +9 -8
- data/src/core/lib/event_engine/windows/windows_engine.cc +44 -4
- data/src/core/lib/event_engine/windows/windows_engine.h +10 -8
- data/src/core/lib/event_engine/windows/windows_listener.cc +21 -12
- data/src/core/lib/event_engine/windows/windows_listener.h +11 -8
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -4
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -4
- data/src/core/lib/event_engine/work_queue/work_queue.h +2 -4
- data/src/core/lib/experiments/config.cc +1 -1
- data/src/core/lib/experiments/experiments.cc +515 -187
- data/src/core/lib/experiments/experiments.h +190 -91
- data/src/core/lib/iomgr/buffer_list.cc +1 -1
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/call_combiner.h +1 -1
- data/src/core/lib/iomgr/cfstream_handle.cc +0 -2
- data/src/core/lib/iomgr/closure.h +1 -2
- data/src/core/lib/iomgr/combiner.cc +3 -3
- data/src/core/lib/iomgr/combiner.h +1 -1
- data/src/core/lib/iomgr/endpoint.cc +4 -3
- data/src/core/lib/iomgr/endpoint.h +7 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +3 -2
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +43 -16
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +43 -8
- data/src/core/lib/iomgr/error.cc +28 -44
- data/src/core/lib/iomgr/ev_apple.cc +1 -1
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -3
- data/src/core/lib/iomgr/ev_poll_posix.cc +22 -0
- data/src/core/lib/iomgr/ev_posix.cc +1 -1
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +0 -1
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +12 -13
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +0 -1
- data/src/core/lib/iomgr/exec_ctx.cc +1 -7
- data/src/core/lib/iomgr/exec_ctx.h +1 -132
- data/src/core/lib/iomgr/fork_posix.cc +0 -7
- data/src/core/lib/iomgr/iomgr.cc +1 -4
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +3 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +3 -1
- data/src/core/lib/iomgr/nameser.h +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +2 -7
- data/src/core/lib/iomgr/resolve_address_posix.cc +37 -49
- data/src/core/lib/iomgr/resolve_address_posix.h +15 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +22 -47
- data/src/core/lib/iomgr/resolve_address_windows.h +15 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +23 -11
- data/src/core/lib/iomgr/socket_utils_posix.h +12 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +27 -23
- data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_client_windows.cc +3 -3
- data/src/core/lib/iomgr/tcp_posix.cc +84 -48
- data/src/core/lib/iomgr/tcp_posix.h +10 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +10 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +2 -2
- data/src/core/lib/iomgr/tcp_server_windows.cc +44 -22
- data/src/core/lib/iomgr/tcp_windows.cc +3 -2
- data/src/core/lib/iomgr/timer_generic.cc +1 -1
- data/src/core/lib/iomgr/timer_heap.cc +1 -1
- data/src/core/lib/iomgr/timer_manager.cc +1 -9
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +11 -3
- data/src/core/lib/promise/activity.cc +2 -0
- data/src/core/lib/promise/activity.h +35 -13
- data/src/core/lib/promise/all_ok.h +68 -0
- data/src/core/lib/promise/arena_promise.h +23 -7
- data/src/core/lib/promise/detail/basic_seq.h +32 -18
- data/src/core/lib/promise/detail/join_state.h +16 -68
- data/src/core/lib/promise/detail/promise_factory.h +96 -26
- data/src/core/lib/promise/detail/promise_like.h +163 -12
- data/src/core/lib/promise/detail/promise_variant.h +50 -0
- data/src/core/lib/promise/detail/seq_state.h +1162 -495
- data/src/core/lib/promise/for_each.h +14 -5
- data/src/core/lib/promise/if.h +68 -20
- data/src/core/lib/promise/inter_activity_latch.h +147 -0
- data/src/core/lib/promise/inter_activity_mutex.h +547 -0
- data/src/core/lib/promise/interceptor_list.h +9 -9
- data/src/core/lib/promise/latch.h +14 -6
- data/src/core/lib/promise/loop.h +131 -17
- data/src/core/lib/promise/map.h +269 -18
- data/src/core/lib/promise/match_promise.h +103 -0
- data/src/core/lib/promise/mpsc.cc +425 -0
- data/src/core/lib/promise/mpsc.h +490 -0
- data/src/core/lib/promise/party.cc +144 -68
- data/src/core/lib/promise/party.h +340 -54
- data/src/core/lib/promise/pipe.h +12 -12
- data/src/core/lib/promise/poll.h +34 -16
- data/src/core/lib/promise/prioritized_race.h +16 -22
- data/src/core/lib/promise/promise.h +6 -5
- data/src/core/lib/promise/race.h +35 -12
- data/src/core/lib/promise/seq.h +52 -35
- data/src/core/lib/promise/sleep.cc +9 -6
- data/src/core/lib/promise/sleep.h +15 -1
- data/src/core/lib/promise/status_flag.h +54 -12
- data/src/core/lib/promise/try_join.h +119 -5
- data/src/core/lib/promise/try_seq.h +79 -49
- data/src/core/lib/promise/wait_set.cc +28 -0
- data/src/core/lib/promise/wait_set.h +86 -0
- data/src/core/lib/resource_quota/api.h +1 -1
- data/src/core/lib/resource_quota/arena.h +106 -0
- data/src/core/lib/resource_quota/connection_quota.h +4 -0
- data/src/core/lib/resource_quota/memory_quota.cc +78 -54
- data/src/core/lib/resource_quota/memory_quota.h +10 -8
- data/src/core/lib/resource_quota/periodic_update.cc +1 -1
- data/src/core/lib/security/authorization/evaluate_args.cc +4 -4
- data/src/core/lib/security/authorization/evaluate_args.h +4 -4
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -8
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +7 -7
- data/src/core/lib/security/authorization/matchers.h +3 -3
- data/src/core/lib/security/authorization/rbac_policy.cc +1 -1
- data/src/core/lib/security/authorization/rbac_policy.h +3 -3
- data/src/core/lib/slice/slice.h +11 -0
- data/src/core/lib/slice/slice_buffer.cc +3 -2
- data/src/core/lib/slice/slice_buffer.h +8 -2
- data/src/core/lib/surface/call.cc +24 -22
- data/src/core/lib/surface/call.h +4 -3
- data/src/core/lib/surface/call_utils.cc +5 -5
- data/src/core/lib/surface/call_utils.h +17 -7
- data/src/core/lib/surface/channel.cc +6 -14
- data/src/core/lib/surface/channel.h +5 -5
- data/src/core/lib/surface/channel_create.cc +140 -5
- data/src/core/lib/surface/channel_create.h +4 -0
- data/src/core/lib/surface/channel_init.cc +165 -48
- data/src/core/lib/surface/channel_init.h +67 -4
- data/src/core/lib/surface/completion_queue.cc +88 -67
- data/src/core/lib/surface/completion_queue.h +1 -1
- data/src/core/lib/surface/connection_context.cc +77 -0
- data/src/core/lib/surface/connection_context.h +156 -0
- data/src/core/lib/surface/event_string.cc +7 -1
- data/src/core/lib/surface/filter_stack_call.cc +60 -40
- data/src/core/lib/surface/filter_stack_call.h +3 -3
- data/src/core/lib/surface/init.cc +12 -14
- data/src/core/lib/surface/init_internally.h +13 -2
- data/src/core/lib/surface/lame_client.cc +2 -2
- data/src/core/lib/surface/legacy_channel.cc +41 -37
- data/src/core/lib/surface/legacy_channel.h +6 -4
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +1 -1
- data/src/core/lib/transport/call_final_info.h +1 -1
- data/src/core/lib/transport/connectivity_state.cc +8 -9
- data/src/core/lib/transport/connectivity_state.h +2 -4
- data/src/core/lib/transport/error_utils.cc +65 -11
- data/src/core/lib/transport/error_utils.h +2 -2
- data/src/core/lib/transport/promise_endpoint.cc +110 -0
- data/src/core/lib/transport/promise_endpoint.h +307 -0
- data/src/core/lib/transport/status_conversion.cc +11 -36
- data/src/core/lib/transport/status_conversion.h +5 -4
- data/src/core/lib/transport/timeout_encoding.cc +19 -19
- data/src/core/lib/transport/timeout_encoding.h +3 -2
- data/src/core/lib/transport/transport.cc +2 -3
- data/src/core/lib/transport/transport.h +20 -12
- data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
- data/src/core/lib/transport/transport_op_string.cc +1 -1
- data/src/core/load_balancing/backend_metric_parser.cc +12 -25
- data/src/core/load_balancing/child_policy_handler.cc +3 -5
- data/src/core/load_balancing/delegating_helper.h +3 -4
- data/src/core/load_balancing/endpoint_list.cc +12 -2
- data/src/core/load_balancing/endpoint_list.h +20 -13
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +2 -7
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +4 -4
- data/src/core/load_balancing/grpclb/grpclb.cc +25 -43
- data/src/core/load_balancing/health_check_client.cc +19 -57
- data/src/core/load_balancing/health_check_client_internal.h +7 -7
- data/src/core/load_balancing/lb_policy.cc +4 -6
- data/src/core/load_balancing/lb_policy.h +6 -16
- data/src/core/load_balancing/lb_policy_registry.cc +10 -8
- data/src/core/load_balancing/oob_backend_metric.cc +3 -9
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +63 -73
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +4 -3
- data/src/core/load_balancing/pick_first/pick_first.cc +74 -990
- data/src/core/load_balancing/priority/priority.cc +9 -14
- data/src/core/load_balancing/ring_hash/ring_hash.cc +211 -159
- data/src/core/load_balancing/ring_hash/ring_hash.h +4 -11
- data/src/core/load_balancing/rls/rls.cc +139 -233
- data/src/core/load_balancing/rls/rls.h +97 -1
- data/src/core/load_balancing/round_robin/round_robin.cc +17 -23
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +6 -6
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +3 -3
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +25 -34
- data/src/core/load_balancing/weighted_target/weighted_target.cc +12 -26
- data/src/core/load_balancing/xds/cds.cc +25 -27
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +17 -20
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +11 -19
- data/src/core/load_balancing/xds/xds_override_host.cc +99 -125
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +11 -13
- data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -1
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -3
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +14 -16
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +1 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -0
- data/src/core/resolver/dns/dns_resolver_plugin.cc +1 -1
- data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +10 -15
- data/src/core/resolver/dns/native/dns_resolver.cc +2 -2
- data/src/core/resolver/dns/native/dns_resolver.h +1 -1
- data/src/core/resolver/fake/fake_resolver.cc +11 -12
- data/src/core/resolver/fake/fake_resolver.h +2 -2
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +11 -14
- data/src/core/resolver/polling_resolver.cc +2 -5
- data/src/core/resolver/polling_resolver.h +3 -3
- data/src/core/resolver/resolver_registry.cc +4 -3
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +3 -2
- data/src/core/resolver/xds/xds_config.cc +12 -9
- data/src/core/resolver/xds/xds_config.h +11 -6
- data/src/core/resolver/xds/xds_dependency_manager.cc +220 -193
- data/src/core/resolver/xds/xds_dependency_manager.h +30 -19
- data/src/core/resolver/xds/xds_resolver.cc +116 -136
- data/src/core/server/add_port.cc +87 -0
- data/src/core/server/server.cc +459 -131
- data/src/core/server/server.h +237 -72
- data/src/core/server/server_call_tracer_filter.cc +5 -9
- data/src/core/server/server_call_tracer_filter.h +1 -1
- data/src/core/server/server_config_selector.h +1 -1
- data/src/core/server/server_config_selector_filter.cc +9 -16
- data/src/core/server/xds_channel_stack_modifier.cc +1 -1
- data/src/core/server/xds_server_config_fetcher.cc +159 -187
- data/src/core/service_config/service_config.h +1 -1
- data/src/core/service_config/service_config_channel_arg_filter.cc +9 -21
- data/src/core/service_config/service_config_impl.cc +4 -4
- data/src/core/service_config/service_config_impl.h +1 -1
- data/src/core/telemetry/call_tracer.cc +12 -14
- data/src/core/telemetry/call_tracer.h +10 -9
- data/src/core/telemetry/context_list_entry.cc +38 -0
- data/src/core/telemetry/context_list_entry.h +112 -0
- data/src/core/telemetry/default_tcp_tracer.cc +26 -0
- data/src/core/telemetry/default_tcp_tracer.h +44 -0
- data/src/core/telemetry/histogram_view.cc +3 -3
- data/src/core/telemetry/metrics.cc +44 -23
- data/src/core/telemetry/metrics.h +24 -14
- data/src/core/telemetry/stats.h +0 -5
- data/src/core/telemetry/stats_data.cc +564 -329
- data/src/core/telemetry/stats_data.h +474 -180
- data/src/core/telemetry/tcp_tracer.cc +38 -0
- data/src/core/telemetry/tcp_tracer.h +104 -100
- data/src/core/transport/auth_context.cc +235 -0
- data/src/core/transport/auth_context.h +139 -0
- data/src/core/transport/endpoint_transport.h +90 -0
- data/src/core/transport/endpoint_transport_client_channel_factory.cc +61 -0
- data/src/core/transport/endpoint_transport_client_channel_factory.h +57 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -1
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +36 -4
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +3 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +74 -20
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -4
- data/src/core/tsi/fake_transport_security.cc +22 -0
- data/src/core/tsi/ssl_transport_security.cc +203 -76
- data/src/core/tsi/ssl_transport_security.h +8 -3
- data/src/core/tsi/ssl_transport_security_utils.h +1 -1
- data/src/core/tsi/transport_security.h +3 -0
- data/src/core/tsi/transport_security_grpc.cc +8 -0
- data/src/core/tsi/transport_security_grpc.h +22 -3
- data/src/core/tsi/transport_security_interface.h +32 -27
- data/src/core/util/backoff.cc +3 -3
- data/src/core/util/backoff.h +1 -1
- data/src/core/util/check_class_size.h +48 -0
- data/src/core/util/down_cast.h +1 -1
- data/src/core/util/dual_ref_counted.h +48 -0
- data/src/core/util/dump_args.h +1 -9
- data/src/core/util/env.h +3 -4
- data/src/core/util/examine_stack.cc +2 -2
- data/src/core/util/examine_stack.h +3 -4
- data/src/core/util/fork.cc +1 -1
- data/src/core/util/fork.h +2 -2
- data/src/core/util/function_signature.h +80 -0
- data/src/core/util/gcp_metadata_query.cc +4 -3
- data/src/core/util/gpr_time.cc +4 -6
- data/src/core/util/http_client/httpcli.cc +97 -36
- data/src/core/util/http_client/httpcli.h +22 -9
- data/src/core/util/http_client/httpcli_security_connector.cc +7 -6
- data/src/core/util/json/json_channel_args.h +2 -1
- data/src/core/util/json/json_object_loader.cc +4 -4
- data/src/core/util/json/json_object_loader.h +19 -19
- data/src/core/util/json/json_reader.cc +4 -4
- data/src/core/util/json/json_writer.cc +4 -4
- data/src/core/util/latent_see.cc +123 -76
- data/src/core/util/latent_see.h +34 -36
- data/src/core/util/linux/env.cc +6 -5
- data/src/core/util/load_file.cc +26 -14
- data/src/core/util/log.cc +5 -1
- data/src/core/util/lru_cache.h +4 -4
- data/src/core/util/match.h +7 -7
- data/src/core/util/matchers.cc +1 -2
- data/src/core/util/matchers.h +7 -12
- data/src/core/util/memory_usage.h +268 -0
- data/src/core/util/per_cpu.cc +2 -0
- data/src/core/util/per_cpu.h +7 -0
- data/src/core/util/posix/env.cc +2 -2
- data/src/core/util/posix/sync.cc +0 -1
- data/src/core/util/posix/time.cc +0 -1
- data/src/core/util/ref_counted.h +1 -0
- data/src/core/util/ref_counted_ptr.h +27 -1
- data/src/core/util/ring_buffer.h +4 -5
- data/src/core/util/shared_bit_gen.cc +21 -0
- data/src/core/util/shared_bit_gen.h +64 -0
- data/src/core/util/single_set_ptr.h +35 -4
- data/src/core/util/status_helper.cc +98 -79
- data/src/core/util/status_helper.h +13 -30
- data/src/core/util/string.cc +2 -2
- data/src/core/util/sync_abseil.cc +0 -1
- data/src/core/util/table.h +6 -21
- data/src/core/util/time.cc +5 -5
- data/src/core/util/time.h +5 -5
- data/src/core/util/time_precise.cc +0 -1
- data/src/core/util/type_list.h +56 -0
- data/src/core/util/upb_utils.h +42 -0
- data/src/core/util/uri.cc +91 -24
- data/src/core/util/uri.h +23 -7
- data/src/core/util/useful.h +66 -17
- data/src/core/util/validation_errors.cc +5 -5
- data/src/core/util/wait_for_single_owner.cc +31 -0
- data/src/core/util/wait_for_single_owner.h +86 -0
- data/src/core/util/windows/env.cc +3 -3
- data/src/core/util/windows/sync.cc +0 -1
- data/src/core/util/windows/time.cc +0 -1
- data/src/core/util/work_serializer.cc +27 -267
- data/src/core/util/work_serializer.h +3 -27
- data/src/core/xds/grpc/certificate_provider_store.cc +14 -19
- data/src/core/xds/grpc/certificate_provider_store.h +4 -4
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +6 -6
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +1 -1
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +1 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +22 -20
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +7 -2
- data/src/core/xds/grpc/xds_certificate_provider.cc +16 -16
- data/src/core/xds/grpc/xds_certificate_provider.h +2 -2
- data/src/core/xds/grpc/xds_client_grpc.cc +20 -16
- data/src/core/xds/grpc/xds_client_grpc.h +4 -2
- data/src/core/xds/grpc/xds_cluster.h +7 -7
- data/src/core/xds/grpc/xds_cluster_parser.cc +29 -28
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +4 -4
- data/src/core/xds/grpc/xds_common_types.cc +2 -2
- data/src/core/xds/grpc/xds_common_types.h +4 -4
- data/src/core/xds/grpc/xds_common_types_parser.cc +167 -89
- data/src/core/xds/grpc/xds_common_types_parser.h +20 -7
- data/src/core/xds/grpc/xds_endpoint.cc +3 -4
- data/src/core/xds/grpc/xds_endpoint_parser.cc +68 -37
- data/src/core/xds/grpc/xds_health_status.cc +4 -4
- data/src/core/xds/grpc/xds_health_status.h +4 -3
- data/src/core/xds/grpc/xds_http_fault_filter.cc +19 -21
- data/src/core/xds/grpc/xds_http_fault_filter.h +4 -3
- data/src/core/xds/grpc/xds_http_filter.h +11 -4
- data/src/core/xds/grpc/xds_http_filter_registry.cc +8 -10
- data/src/core/xds/grpc/xds_http_filter_registry.h +4 -4
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +31 -9
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +7 -3
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +21 -21
- data/src/core/xds/grpc/xds_http_rbac_filter.h +4 -3
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +10 -10
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +4 -3
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +5 -5
- data/src/core/xds/grpc/xds_lb_policy_registry.h +1 -1
- data/src/core/xds/grpc/xds_listener.cc +4 -6
- data/src/core/xds/grpc/xds_listener.h +10 -10
- data/src/core/xds/grpc/xds_listener_parser.cc +58 -51
- data/src/core/xds/grpc/xds_listener_parser.h +2 -1
- data/src/core/xds/grpc/xds_metadata.cc +5 -5
- data/src/core/xds/grpc/xds_metadata.h +8 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +26 -37
- data/src/core/xds/grpc/xds_metadata_parser.h +0 -2
- data/src/core/xds/grpc/xds_route_config.cc +10 -15
- data/src/core/xds/grpc/xds_route_config.h +10 -10
- data/src/core/xds/grpc/xds_route_config_parser.cc +85 -132
- data/src/core/xds/grpc/xds_route_config_parser.h +5 -5
- data/src/core/xds/grpc/xds_routing.cc +6 -6
- data/src/core/xds/grpc/xds_routing.h +6 -6
- data/src/core/xds/grpc/xds_server_grpc.cc +133 -50
- data/src/core/xds/grpc/xds_server_grpc.h +34 -13
- data/src/core/xds/grpc/xds_server_grpc_interface.h +37 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +29 -12
- data/src/core/xds/grpc/xds_transport_grpc.h +5 -3
- data/src/core/xds/xds_client/lrs_client.cc +77 -88
- data/src/core/xds/xds_client/lrs_client.h +15 -15
- data/src/core/xds/xds_client/xds_api.cc +5 -228
- data/src/core/xds/xds_client/xds_api.h +1 -133
- data/src/core/xds/xds_client/xds_bootstrap.cc +11 -1
- data/src/core/xds/xds_client/xds_bootstrap.h +25 -1
- data/src/core/xds/xds_client/xds_client.cc +1076 -727
- data/src/core/xds/xds_client/xds_client.h +138 -30
- data/src/core/xds/xds_client/xds_resource_type.h +3 -5
- data/src/core/xds/xds_client/xds_resource_type_impl.h +13 -8
- data/src/core/xds/xds_client/xds_transport.h +1 -1
- data/src/ruby/ext/grpc/extconf.rb +5 -2
- data/src/ruby/ext/grpc/rb_call.c +1 -8
- data/src/ruby/ext/grpc/rb_channel.c +70 -557
- data/src/ruby/ext/grpc/rb_channel.h +0 -3
- data/src/ruby/ext/grpc/rb_completion_queue.c +26 -14
- data/src/ruby/ext/grpc/rb_completion_queue.h +1 -7
- data/src/ruby/ext/grpc/rb_grpc.c +9 -5
- data/src/ruby/ext/grpc/rb_grpc.h +1 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +1 -1
- data/src/ruby/ext/grpc/rb_loader.c +0 -4
- data/src/ruby/ext/grpc/rb_server.c +31 -50
- data/src/ruby/lib/grpc/generic/client_stub.rb +4 -4
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/core_spec.rb +22 -0
- data/src/ruby/spec/generic/active_call_spec.rb +1 -1
- data/src/ruby/spec/generic/client_stub_spec.rb +2 -6
- data/src/ruby/spec/generic/rpc_server_spec.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +2 -2
- data/third_party/abseil-cpp/absl/algorithm/container.h +81 -67
- data/third_party/abseil-cpp/absl/base/attributes.h +142 -23
- data/third_party/abseil-cpp/absl/base/call_once.h +18 -16
- data/third_party/abseil-cpp/absl/base/config.h +23 -132
- data/third_party/abseil-cpp/absl/base/fast_type_id.h +45 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +0 -5
- data/third_party/abseil-cpp/absl/base/internal/cycleclock_config.h +7 -7
- data/third_party/abseil-cpp/absl/base/internal/endian.h +34 -38
- data/third_party/abseil-cpp/absl/base/internal/iterator_traits.h +71 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +6 -5
- data/third_party/abseil-cpp/absl/base/internal/nullability_deprecated.h +106 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +1 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +0 -9
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -13
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +14 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +5 -1
- data/third_party/abseil-cpp/absl/base/internal/tracing.cc +39 -0
- data/third_party/abseil-cpp/absl/base/internal/tracing.h +81 -0
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +6 -6
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -10
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +17 -0
- data/third_party/abseil-cpp/absl/base/macros.h +35 -4
- data/third_party/abseil-cpp/absl/base/no_destructor.h +11 -32
- data/third_party/abseil-cpp/absl/base/nullability.h +124 -56
- data/third_party/abseil-cpp/absl/base/optimization.h +8 -12
- data/third_party/abseil-cpp/absl/base/options.h +7 -81
- data/third_party/abseil-cpp/absl/base/policy_checks.h +9 -7
- data/third_party/abseil-cpp/absl/cleanup/cleanup.h +1 -3
- data/third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +3 -4
- data/third_party/abseil-cpp/absl/container/btree_map.h +891 -0
- data/third_party/abseil-cpp/absl/container/btree_set.h +826 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +9 -15
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +22 -3
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +23 -4
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +10 -6
- data/third_party/abseil-cpp/absl/container/internal/btree.h +3149 -0
- data/third_party/abseil-cpp/absl/container/internal/btree_container.h +867 -0
- data/third_party/abseil-cpp/absl/container/internal/common.h +43 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +10 -2
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +10 -10
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +1 -8
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +0 -4
- data/third_party/abseil-cpp/absl/container/internal/hashtable_control_bytes.h +527 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +20 -4
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +31 -12
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +6 -9
- data/third_party/abseil-cpp/absl/container/internal/layout.h +27 -43
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +199 -68
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +1462 -263
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1170 -1547
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set_resize_impl.h +80 -0
- data/third_party/abseil-cpp/absl/crc/crc32c.cc +0 -4
- data/third_party/abseil-cpp/absl/crc/crc32c.h +7 -5
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +56 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +0 -22
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +45 -74
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +21 -7
- data/third_party/abseil-cpp/absl/debugging/internal/addresses.h +57 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +5 -5
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +12 -37
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +16 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +40 -21
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +16 -7
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +7 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +14 -5
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +10 -4
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +27 -16
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +20 -8
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +4 -3
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +15 -28
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +19 -9
- data/third_party/abseil-cpp/absl/debugging/leak_check.cc +73 -0
- data/third_party/abseil-cpp/absl/debugging/leak_check.h +150 -0
- data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +144 -27
- data/third_party/abseil-cpp/absl/debugging/stacktrace.h +73 -5
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +3 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +67 -18
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +25 -6
- data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +1 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +9 -2
- data/third_party/abseil-cpp/absl/flags/flag.h +18 -15
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +2 -2
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +14 -5
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +23 -11
- data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +4 -0
- data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +3 -0
- data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +13 -12
- data/third_party/abseil-cpp/absl/flags/internal/registry.h +4 -3
- data/third_party/abseil-cpp/absl/flags/reflection.cc +2 -3
- data/third_party/abseil-cpp/absl/flags/usage_config.cc +9 -4
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +8 -10
- data/third_party/abseil-cpp/absl/functional/function_ref.h +2 -9
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +110 -226
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +10 -12
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +2 -5
- data/third_party/abseil-cpp/absl/hash/hash.h +44 -2
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +14 -18
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +257 -127
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +27 -72
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +2 -6
- data/third_party/abseil-cpp/absl/hash/internal/weakly_mixed_integer.h +38 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +2 -0
- data/third_party/abseil-cpp/absl/log/check.h +2 -1
- data/third_party/abseil-cpp/absl/log/globals.h +4 -5
- data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +28 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +43 -38
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +124 -99
- data/third_party/abseil-cpp/absl/log/internal/conditions.cc +5 -3
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +7 -2
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +158 -64
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +140 -83
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.cc +3 -5
- data/third_party/abseil-cpp/absl/log/internal/proto.h +28 -18
- data/third_party/abseil-cpp/absl/log/internal/strip.h +4 -12
- data/third_party/abseil-cpp/absl/log/internal/structured_proto.cc +115 -0
- data/third_party/abseil-cpp/absl/log/internal/structured_proto.h +107 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +8 -1
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +8 -6
- data/third_party/abseil-cpp/absl/log/internal/voidify.h +10 -4
- data/third_party/abseil-cpp/absl/log/log.h +48 -35
- data/third_party/abseil-cpp/absl/log/log_sink_registry.h +5 -2
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +2 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +62 -181
- data/third_party/abseil-cpp/absl/numeric/bits.h +68 -2
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -52
- data/third_party/abseil-cpp/absl/numeric/int128.h +15 -3
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +6 -4
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +6 -3
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +7 -3
- data/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc +1 -1
- data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +3 -1
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +3 -1
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +12 -12
- data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +10 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.h +4 -2
- data/third_party/abseil-cpp/absl/random/distributions.h +6 -8
- data/third_party/abseil-cpp/absl/random/exponential_distribution.h +1 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +3 -2
- data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +8 -7
- data/third_party/abseil-cpp/absl/random/internal/entropy_pool.cc +185 -0
- data/third_party/abseil-cpp/absl/random/internal/entropy_pool.h +35 -0
- data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +5 -2
- data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +5 -6
- data/third_party/abseil-cpp/absl/random/internal/platform.h +12 -12
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +57 -6
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +2 -1
- data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +20 -12
- data/third_party/abseil-cpp/absl/random/internal/seed_material.h +5 -5
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +2 -2
- data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +0 -1
- data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +1 -4
- data/third_party/abseil-cpp/absl/random/poisson_distribution.h +4 -3
- data/third_party/abseil-cpp/absl/random/random.h +88 -53
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +2 -3
- data/third_party/abseil-cpp/absl/random/seed_sequences.cc +6 -2
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -2
- data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -1
- data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +2 -0
- data/third_party/abseil-cpp/absl/random/zipf_distribution.h +5 -4
- data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +10 -7
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +3 -4
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +4 -3
- data/third_party/abseil-cpp/absl/status/status.cc +4 -8
- data/third_party/abseil-cpp/absl/status/status.h +8 -8
- data/third_party/abseil-cpp/absl/status/status_payload_printer.h +2 -2
- data/third_party/abseil-cpp/absl/status/statusor.cc +2 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +6 -6
- data/third_party/abseil-cpp/absl/strings/ascii.cc +44 -29
- data/third_party/abseil-cpp/absl/strings/ascii.h +62 -22
- data/third_party/abseil-cpp/absl/strings/charconv.cc +25 -29
- data/third_party/abseil-cpp/absl/strings/charconv.h +5 -5
- data/third_party/abseil-cpp/absl/strings/charset.h +3 -4
- data/third_party/abseil-cpp/absl/strings/cord.cc +54 -58
- data/third_party/abseil-cpp/absl/strings/cord.h +99 -102
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +11 -11
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +3 -3
- data/third_party/abseil-cpp/absl/strings/escaping.cc +186 -197
- data/third_party/abseil-cpp/absl/strings/escaping.h +9 -10
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +53 -22
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +0 -4
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +0 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +7 -63
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +1 -11
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +0 -22
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +3 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +5 -3
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -0
- data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +0 -5
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +96 -1
- data/third_party/abseil-cpp/absl/strings/internal/utf8.h +15 -1
- data/third_party/abseil-cpp/absl/strings/match.h +21 -11
- data/third_party/abseil-cpp/absl/strings/numbers.cc +55 -33
- data/third_party/abseil-cpp/absl/strings/numbers.h +87 -58
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +6 -7
- data/third_party/abseil-cpp/absl/strings/str_cat.h +41 -30
- data/third_party/abseil-cpp/absl/strings/str_format.h +18 -18
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +3 -3
- data/third_party/abseil-cpp/absl/strings/str_replace.h +6 -6
- data/third_party/abseil-cpp/absl/strings/str_split.h +18 -1
- data/third_party/abseil-cpp/absl/strings/string_view.cc +4 -9
- data/third_party/abseil-cpp/absl/strings/string_view.h +46 -50
- data/third_party/abseil-cpp/absl/strings/strip.h +11 -8
- data/third_party/abseil-cpp/absl/strings/substitute.cc +5 -4
- data/third_party/abseil-cpp/absl/strings/substitute.h +66 -64
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +16 -10
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +6 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +0 -5
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +39 -13
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +97 -69
- data/third_party/abseil-cpp/absl/synchronization/notification.cc +10 -2
- data/third_party/abseil-cpp/absl/synchronization/notification.h +12 -2
- data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +18 -58
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +2 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +2 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +2 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +92 -112
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +6 -4
- data/third_party/abseil-cpp/absl/time/time.h +89 -23
- data/third_party/abseil-cpp/absl/types/internal/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/optional.h +7 -745
- data/third_party/abseil-cpp/absl/types/span.h +98 -54
- data/third_party/abseil-cpp/absl/types/variant.h +5 -784
- data/third_party/abseil-cpp/absl/utility/utility.h +10 -185
- data/third_party/boringssl-with-bazel/src/crypto/aes/aes.cc +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +259 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc +47 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.cc +239 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.cc +193 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.cc +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.cc +415 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.cc +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.cc +224 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.cc +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.cc +355 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.cc +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.cc +63 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +33 -61
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.cc +241 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +963 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +661 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc +164 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.cc +276 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.cc +229 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.cc +434 -0
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +19 -48
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.cc +658 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.cc +268 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +509 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.cc +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.cc +193 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.cc +292 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.cc +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +17 -61
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.cc +446 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +144 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.cc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/bn_asn1.cc +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/convert.cc +407 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/div.cc +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/exponentiation.cc +166 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/sqrt.cc +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.cc +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.cc +266 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +708 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +912 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +16 -16
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.cc +156 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.cc +224 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +23 -23
- data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesctrhmac.cc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aeseax.cc +289 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc +922 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_chacha20poly1305.cc +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_des.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_null.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc2.cc +417 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc4.cc +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_tls.cc +599 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/get_cipher.cc +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/internal.h +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/tls_cbc.cc +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/cms/cms.cc +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.cc +631 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +60 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +24 -22
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +281 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +181 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.cc +2154 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.cc +529 -0
- data/third_party/boringssl-with-bazel/src/crypto/des/des.cc +829 -0
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +31 -73
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/params.cc +408 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc +314 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +941 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +367 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +17 -19
- data/third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec/ec_derive.cc +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh/ecdh.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc +351 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +808 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.cc +379 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc +470 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +17 -59
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.cc +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.cc +142 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.cc +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.cc +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +225 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.cc +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.cc +609 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.cc +342 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.cc +216 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.cc +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.cc.inc +1281 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cbc.cc.inc +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cfb.cc.inc +166 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ctr.cc.inc +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc +604 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm_nohw.cc.inc +302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +396 -76
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +209 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ofb.cc.inc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +765 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.cc.inc +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.cc.inc +374 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.cc.inc +225 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.cc.inc +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.cc.inc +191 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +734 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.cc.inc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +739 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +323 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.cc.inc +582 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +53 -160
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +99 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +409 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.cc.inc +222 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +698 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +928 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.cc.inc +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.cc.inc +142 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +24 -21
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +315 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +382 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.cc.inc +295 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.cc.inc +672 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +1235 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.cc.inc +409 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +18 -69
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.cc.inc +288 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +36 -25
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc +190 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +424 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +13 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +17 -59
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +17 -51
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.cc.inc +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +91 -91
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +971 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +494 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.cc.inc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.cc.inc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +23 -70
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +295 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.cc.inc +1163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h +15 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.cc.inc +741 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +26 -21
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.cc.inc +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.cc.inc +179 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.cc.inc +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.cc.inc +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.cc.inc +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.cc.inc +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.cc.inc +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.cc.inc +215 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/keccak.cc.inc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/fips_known_values.inc +1345 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +2300 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/fips_known_values.inc +411 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +1397 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.cc.inc +214 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +22 -28
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +483 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +17 -60
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +372 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +983 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +1279 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.cc.inc +129 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +1055 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +38 -38
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.cc.inc +327 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +52 -78
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.cc.inc +390 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.cc.inc +299 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.cc.inc +473 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/address.h +119 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fips_known_values.inc +674 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.cc.inc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.cc.inc +161 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/params.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +504 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.cc.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.h +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.cc.inc +171 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.cc.inc +180 -0
- data/third_party/boringssl-with-bazel/src/crypto/fuzzer_mode.cc +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.cc +1095 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.cc +2185 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +16 -16
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +283 -457
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.cc +869 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +34 -78
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.cc +309 -0
- data/third_party/boringssl-with-bazel/src/crypto/md4/md4.cc +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/md5/md5.cc +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.cc +581 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +97 -1042
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +513 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +14 -56
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.cc +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.cc +149 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.cc +254 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.cc +208 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.cc +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.cc +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.cc +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +36 -22
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +28 -63
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +471 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +1322 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.cc +314 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.cc +310 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.cc +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.cc +262 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/forkunsafe.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc +60 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/internal.h +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/passive.cc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/rand.cc +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/windows.cc +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.cc +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +36 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_asn1.cc +283 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc +523 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_extra.cc +19 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_print.cc +27 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc +113 -0
- data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/spake2plus/spake2plus.cc +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.cc +496 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread.cc +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.cc +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.cc +1656 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.cc +685 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.cc +1263 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.cc +136 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +538 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.cc +355 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.cc +227 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.cc +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +29 -61
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.cc +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.cc +796 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.cc +364 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.cc +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.cc +203 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.cc +287 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.cc +181 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.cc +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.cc +593 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc +102 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +366 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.cc +444 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.cc +557 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.cc +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +161 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.cc +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.cc +514 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.cc +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc +101 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.cc +183 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.cc +590 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.cc +1342 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.cc +47 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.cc +186 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.cc +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.cc +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.cc +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.cc +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.cc +164 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.cc +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.cc +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.cc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.cc +249 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +1607 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.cc +440 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.cc +235 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.cc +365 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.cc +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.cc +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.cc +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.cc +342 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.cc +36 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.cc +170 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.cc +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.cc +34 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +485 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +153 -0
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +1538 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +29 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +14 -48
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +16 -76
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +29 -116
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +248 -328
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +31 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +82 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +15 -122
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +38 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +32 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/cms.h +146 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +48 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +18 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +38 -63
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +18 -59
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +15 -67
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +32 -73
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +15 -66
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +14 -52
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +15 -108
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +15 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +14 -108
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +18 -18
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +21 -27
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +14 -38
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +28 -70
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +23 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +22 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +32 -61
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +15 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +24 -64
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +16 -96
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +174 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +25 -33
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +628 -309
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +15 -114
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +23 -18
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +16 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +36 -157
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +16 -16
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +21 -65
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +13 -53
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +15 -14
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +680 -434
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +129 -174
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +176 -131
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +21 -127
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +109 -104
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +321 -316
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +101 -94
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +920 -519
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +78 -85
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +67 -157
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +201 -333
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +113 -245
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +1054 -540
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +47 -157
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +29 -159
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +18 -112
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +108 -207
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +70 -149
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +15 -20
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +117 -157
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +229 -365
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +294 -32
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +13 -109
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +35 -34
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +352 -354
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +43 -101
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +127 -249
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +17 -91
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +109 -157
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +44 -30
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +66 -195
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +46 -177
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +88 -48
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +160 -96
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +251 -184
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +250 -119
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +64 -117
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +54 -139
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +3 -0
- data/third_party/upb/upb/base/internal/log2.h +3 -1
- data/third_party/upb/upb/base/string_view.h +10 -0
- data/third_party/upb/upb/hash/common.c +312 -187
- data/third_party/upb/upb/hash/common.h +44 -43
- data/third_party/upb/upb/hash/int_table.h +29 -5
- data/third_party/upb/upb/hash/str_table.h +6 -0
- data/third_party/upb/upb/json/decode.c +39 -10
- data/third_party/upb/upb/json/decode.h +25 -3
- data/third_party/upb/upb/mem/alloc.h +5 -0
- data/third_party/upb/upb/mem/arena.c +438 -161
- data/third_party/upb/upb/mem/arena.h +57 -11
- data/third_party/upb/upb/mem/arena.hpp +4 -20
- data/third_party/upb/upb/mem/internal/arena.h +65 -29
- data/third_party/upb/upb/message/accessors.c +1 -5
- data/third_party/upb/upb/message/accessors.h +49 -0
- data/third_party/upb/upb/message/array.c +7 -6
- data/third_party/upb/upb/message/array.h +4 -4
- data/third_party/upb/upb/message/compat.c +11 -14
- data/third_party/upb/upb/message/compat.h +4 -3
- data/third_party/upb/upb/message/copy.c +35 -30
- data/third_party/upb/upb/message/internal/accessors.h +151 -15
- data/third_party/upb/upb/message/internal/extension.c +16 -25
- data/third_party/upb/upb/message/internal/extension.h +17 -5
- data/third_party/upb/upb/message/internal/iterator.c +58 -0
- data/third_party/upb/upb/message/internal/iterator.h +29 -0
- data/third_party/upb/upb/message/internal/map.h +76 -22
- data/third_party/upb/upb/message/internal/map_sorter.h +13 -4
- data/third_party/upb/upb/message/internal/message.c +48 -29
- data/third_party/upb/upb/message/internal/message.h +203 -25
- data/third_party/upb/upb/message/map.c +68 -20
- data/third_party/upb/upb/message/map.h +8 -1
- data/third_party/upb/upb/message/map_gencode_util.h +3 -45
- data/third_party/upb/upb/message/map_sorter.c +52 -16
- data/third_party/upb/upb/message/merge.h +3 -3
- data/third_party/upb/upb/message/message.c +200 -42
- data/third_party/upb/upb/message/message.h +69 -4
- data/third_party/upb/upb/message/value.h +9 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +16 -6
- data/third_party/upb/upb/mini_descriptor/decode.c +115 -138
- data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
- data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
- data/third_party/upb/upb/mini_descriptor/link.c +4 -0
- data/third_party/upb/upb/mini_table/extension.h +8 -1
- data/third_party/upb/upb/mini_table/extension_registry.c +25 -13
- data/third_party/upb/upb/mini_table/extension_registry.h +13 -6
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +24 -1
- data/third_party/upb/upb/mini_table/internal/field.h +4 -4
- data/third_party/upb/upb/mini_table/internal/message.h +1 -1
- data/third_party/upb/upb/mini_table/message.c +21 -13
- data/third_party/upb/upb/port/atomic.h +134 -7
- data/third_party/upb/upb/port/def.inc +184 -47
- data/third_party/upb/upb/port/undef.inc +14 -0
- data/third_party/upb/upb/reflection/common.h +1 -11
- data/third_party/upb/upb/reflection/def.hpp +5 -1
- data/third_party/upb/upb/reflection/def_pool.c +10 -3
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
- data/third_party/upb/upb/reflection/enum_def.c +4 -4
- data/third_party/upb/upb/reflection/enum_reserved_range.c +1 -1
- data/third_party/upb/upb/reflection/enum_value_def.c +9 -8
- data/third_party/upb/upb/reflection/extension_range.c +1 -2
- data/third_party/upb/upb/reflection/field_def.c +6 -22
- data/third_party/upb/upb/reflection/field_def.h +1 -1
- data/third_party/upb/upb/reflection/file_def.c +16 -10
- data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
- data/third_party/upb/upb/reflection/internal/def_builder.h +35 -10
- data/third_party/upb/upb/reflection/internal/enum_value_def.h +1 -1
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +19 -16
- data/third_party/upb/upb/reflection/message.h +3 -1
- data/third_party/upb/upb/reflection/message_def.c +4 -7
- data/third_party/upb/upb/reflection/message_reserved_range.c +1 -1
- data/third_party/upb/upb/reflection/method_def.c +1 -1
- data/third_party/upb/upb/reflection/oneof_def.c +3 -3
- data/third_party/upb/upb/reflection/service_def.c +2 -5
- data/third_party/upb/upb/text/encode.c +17 -20
- data/third_party/upb/upb/text/internal/encode.c +25 -6
- data/third_party/upb/upb/text/internal/encode.h +6 -1
- data/third_party/upb/upb/wire/decode.c +154 -107
- data/third_party/upb/upb/wire/decode.h +5 -3
- data/third_party/upb/upb/wire/encode.c +114 -55
- data/third_party/upb/upb/wire/encode.h +2 -0
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +18 -20
- data/third_party/upb/upb/wire/internal/decode_fast.c +2 -2
- data/third_party/upb/upb/wire/internal/decode_fast.h +4 -0
- data/third_party/upb/upb/wire/internal/decoder.h +4 -11
- data/third_party/utf8_range/utf8_range.c +15 -275
- data/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/third_party/zlib/deflate.c +40 -15
- data/third_party/zlib/deflate.h +33 -2
- data/third_party/zlib/gzguts.h +2 -6
- data/third_party/zlib/inflate.c +1 -1
- data/third_party/zlib/inftrees.c +3 -3
- data/third_party/zlib/inftrees.h +2 -2
- data/third_party/zlib/trees.c +18 -4
- data/third_party/zlib/zconf.h +1 -9
- data/third_party/zlib/zlib.h +12 -12
- data/third_party/zlib/zutil.h +4 -25
- metadata +631 -521
- data/include/grpc/grpc_cronet.h +0 -37
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +0 -82
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +0 -426
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +0 -87
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +0 -32
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +0 -407
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +0 -124
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +0 -38
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +0 -108
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +0 -33
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -67
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -48
- data/src/core/lib/channel/call_finalization.h +0 -88
- data/src/core/lib/channel/status_util.cc +0 -153
- data/src/core/lib/channel/status_util.h +0 -80
- data/src/core/lib/config/config_vars.cc +0 -151
- data/src/core/lib/config/config_vars.h +0 -128
- data/src/core/lib/config/config_vars_non_generated.cc +0 -49
- data/src/core/lib/config/core_configuration.cc +0 -111
- data/src/core/lib/config/core_configuration.h +0 -242
- data/src/core/lib/config/load_config.cc +0 -77
- data/src/core/lib/config/load_config.h +0 -54
- data/src/core/lib/event_engine/forkable.cc +0 -107
- data/src/core/lib/event_engine/forkable.h +0 -69
- data/src/core/lib/iomgr/executor.cc +0 -452
- data/src/core/lib/iomgr/executor.h +0 -119
- data/src/core/lib/iomgr/python_util.h +0 -46
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +0 -69
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +0 -50
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -75
- data/src/core/lib/security/context/security_context.cc +0 -331
- data/src/core/lib/security/context/security_context.h +0 -202
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +0 -116
- data/src/core/lib/security/credentials/alts/alts_credentials.h +0 -127
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -71
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +0 -57
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +0 -67
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +0 -32
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -101
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +0 -123
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +0 -45
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +0 -74
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +0 -55
- data/src/core/lib/security/credentials/call_creds_util.cc +0 -97
- data/src/core/lib/security/credentials/call_creds_util.h +0 -43
- data/src/core/lib/security/credentials/channel_creds_registry.h +0 -126
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +0 -241
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -168
- data/src/core/lib/security/credentials/composite/composite_credentials.h +0 -134
- data/src/core/lib/security/credentials/credentials.cc +0 -160
- data/src/core/lib/security/credentials/credentials.h +0 -298
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +0 -529
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +0 -117
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +0 -230
- data/src/core/lib/security/credentials/external/aws_request_signer.h +0 -72
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +0 -642
- data/src/core/lib/security/credentials/external/external_account_credentials.h +0 -207
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -175
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +0 -80
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +0 -221
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +0 -73
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +0 -103
- data/src/core/lib/security/credentials/fake/fake_credentials.h +0 -124
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +0 -195
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +0 -90
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +0 -38
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +0 -430
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +0 -101
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -78
- data/src/core/lib/security/credentials/iam/iam_credentials.h +0 -66
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +0 -71
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +0 -61
- data/src/core/lib/security/credentials/jwt/json_token.cc +0 -318
- data/src/core/lib/security/credentials/jwt/json_token.h +0 -78
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +0 -182
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +0 -106
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +0 -988
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +0 -122
- data/src/core/lib/security/credentials/local/local_credentials.cc +0 -68
- data/src/core/lib/security/credentials/local/local_credentials.h +0 -77
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +0 -653
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +0 -197
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +0 -202
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +0 -123
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +0 -474
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -144
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -338
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +0 -215
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -84
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +0 -482
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -206
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -237
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -169
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +0 -161
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +0 -145
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +0 -258
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +0 -130
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +0 -170
- data/src/core/lib/security/credentials/tls/tls_credentials.h +0 -75
- data/src/core/lib/security/credentials/tls/tls_utils.cc +0 -127
- data/src/core/lib/security/credentials/tls/tls_utils.h +0 -50
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +0 -298
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +0 -175
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -230
- data/src/core/lib/security/credentials/xds/xds_credentials.h +0 -110
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +0 -303
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +0 -78
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -314
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -42
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -118
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +0 -102
- data/src/core/lib/security/security_connector/load_system_roots.h +0 -35
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +0 -36
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +0 -165
- data/src/core/lib/security/security_connector/load_system_roots_supported.h +0 -44
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -85
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +0 -306
- data/src/core/lib/security/security_connector/local/local_security_connector.h +0 -62
- data/src/core/lib/security/security_connector/security_connector.cc +0 -123
- data/src/core/lib/security/security_connector/security_connector.h +0 -197
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +0 -403
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +0 -81
- data/src/core/lib/security/security_connector/ssl_utils.cc +0 -628
- data/src/core/lib/security/security_connector/ssl_utils.h +0 -188
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +0 -816
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +0 -285
- data/src/core/lib/security/transport/auth_filters.h +0 -144
- data/src/core/lib/security/transport/client_auth_filter.cc +0 -219
- data/src/core/lib/security/transport/server_auth_filter.cc +0 -215
- data/src/core/lib/security/util/json_util.cc +0 -69
- data/src/core/lib/security/util/json_util.h +0 -43
- data/src/core/lib/surface/client_call.cc +0 -427
- data/src/core/lib/surface/client_call.h +0 -179
- data/src/core/lib/surface/server_call.cc +0 -221
- data/src/core/lib/surface/server_call.h +0 -168
- data/src/core/lib/transport/call_arena_allocator.cc +0 -27
- data/src/core/lib/transport/call_arena_allocator.h +0 -91
- data/src/core/lib/transport/call_destination.h +0 -76
- data/src/core/lib/transport/call_filters.cc +0 -142
- data/src/core/lib/transport/call_filters.h +0 -1899
- data/src/core/lib/transport/call_spine.cc +0 -131
- data/src/core/lib/transport/call_spine.h +0 -435
- data/src/core/lib/transport/call_state.cc +0 -39
- data/src/core/lib/transport/call_state.h +0 -1061
- data/src/core/lib/transport/custom_metadata.h +0 -30
- data/src/core/lib/transport/http2_errors.h +0 -41
- data/src/core/lib/transport/interception_chain.cc +0 -147
- data/src/core/lib/transport/interception_chain.h +0 -253
- data/src/core/lib/transport/message.cc +0 -44
- data/src/core/lib/transport/message.h +0 -66
- data/src/core/lib/transport/metadata.cc +0 -61
- data/src/core/lib/transport/metadata.h +0 -113
- data/src/core/lib/transport/metadata_batch.cc +0 -374
- data/src/core/lib/transport/metadata_batch.h +0 -1599
- data/src/core/lib/transport/metadata_compression_traits.h +0 -66
- data/src/core/lib/transport/metadata_info.cc +0 -55
- data/src/core/lib/transport/metadata_info.h +0 -85
- data/src/core/lib/transport/parsed_metadata.cc +0 -35
- data/src/core/lib/transport/parsed_metadata.h +0 -429
- data/src/core/lib/transport/simple_slice_based_metadata.h +0 -53
- data/src/core/util/atm.cc +0 -34
- data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +0 -50
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +0 -108
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +0 -241
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +0 -108
- data/third_party/abseil-cpp/absl/log/log_entry.cc +0 -41
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +0 -253
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +0 -131
- data/third_party/abseil-cpp/absl/strings/cord_buffer.cc +0 -30
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +0 -66
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +0 -78
- data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +0 -82
- data/third_party/abseil-cpp/absl/types/bad_variant_access.h +0 -82
- data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -352
- data/third_party/abseil-cpp/absl/types/internal/variant.h +0 -1622
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +0 -95
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +0 -84
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +0 -151
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +0 -85
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +0 -465
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +0 -235
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +0 -74
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +0 -457
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +0 -259
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +0 -214
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +0 -183
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +0 -103
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +0 -105
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +0 -973
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +0 -708
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +0 -212
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +0 -317
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -126
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +0 -268
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +0 -479
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +0 -726
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +0 -309
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +0 -544
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +0 -92
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -235
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +0 -334
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +0 -192
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +0 -480
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -102
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +0 -189
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +0 -57
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +0 -465
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +0 -158
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +0 -266
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +0 -718
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -911
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +0 -156
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +0 -127
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +0 -152
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +0 -841
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +0 -348
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +0 -228
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +0 -455
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +0 -598
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +0 -280
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +0 -514
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +0 -672
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -75
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -55
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +0 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -151
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +0 -326
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +0 -188
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +0 -2157
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +0 -18
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +0 -523
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +0 -871
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +0 -165
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +0 -480
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -266
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +0 -1539
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +0 -58
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +0 -997
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -419
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +0 -572
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +0 -96
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +0 -508
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -78
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +0 -124
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +0 -411
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +0 -91
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +0 -903
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +0 -430
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +0 -547
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +0 -483
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +0 -137
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +0 -120
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +0 -338
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +0 -274
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +0 -332
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +0 -100
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +0 -232
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +0 -646
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +0 -381
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +0 -209
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +0 -156
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +0 -127
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c.inc +0 -1281
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c.inc +0 -242
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c.inc +0 -124
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c.inc +0 -310
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c.inc +0 -541
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c.inc +0 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c.inc +0 -201
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c.inc +0 -234
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +0 -876
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +0 -1320
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c.inc +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +0 -331
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c.inc +0 -624
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c.inc +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c.inc +0 -532
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc +0 -222
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +0 -744
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +0 -1077
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +0 -354
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c.inc +0 -137
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c.inc +0 -363
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +0 -499
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c.inc +0 -287
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c.inc +0 -717
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +0 -1464
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c.inc +0 -446
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.c.inc +0 -322
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c.inc +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c.inc +0 -489
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c.inc +0 -288
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c.inc +0 -304
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.c.inc +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c.inc +0 -1043
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +0 -561
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c.inc +0 -491
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c.inc +0 -104
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c.inc +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c.inc +0 -1163
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +0 -734
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c.inc +0 -749
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc +0 -173
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c.inc +0 -336
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c.inc +0 -269
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c.inc +0 -255
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c.inc +0 -264
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c.inc +0 -130
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +0 -317
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +0 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c.inc +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c.inc +0 -256
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c.inc +0 -240
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +0 -37
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c.inc +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c.inc +0 -164
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c.inc +0 -200
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c.inc +0 -196
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c.inc +0 -743
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c.inc +0 -302
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +0 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c.inc +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c.inc +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c.inc +0 -220
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +0 -479
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c.inc +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +0 -420
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +0 -1038
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +0 -1351
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +0 -1038
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +0 -439
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +0 -543
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +0 -218
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +0 -1092
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +0 -2234
- data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +0 -845
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +0 -350
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +0 -613
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +0 -73
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +0 -1687
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +0 -564
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -243
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -294
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -789
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -250
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -183
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +0 -193
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -523
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +0 -316
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -527
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +0 -1352
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +0 -314
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +0 -308
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +0 -847
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +0 -261
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +0 -65
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +0 -195
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +0 -60
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getrandom_fillin.h +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +0 -42
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +0 -174
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +0 -77
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +0 -37
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +0 -46
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +0 -102
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/refcount.c +0 -59
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +0 -324
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +0 -570
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +0 -101
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +0 -50
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +0 -71
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +0 -140
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +0 -45
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +0 -534
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +0 -110
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -51
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +0 -1668
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +0 -687
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +0 -1267
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +0 -178
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -585
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +0 -400
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -269
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +0 -227
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +0 -786
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +0 -401
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +0 -145
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -329
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c +0 -221
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c +0 -73
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c +0 -634
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c +0 -141
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c +0 -416
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +0 -482
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +0 -598
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c +0 -270
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +0 -344
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c +0 -555
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c +0 -81
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c +0 -142
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +0 -624
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c +0 -170
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +0 -1390
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +0 -227
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +0 -280
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +0 -108
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +0 -86
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -181
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -599
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +0 -206
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +0 -299
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +0 -240
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +0 -160
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +0 -189
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -291
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +0 -1638
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +0 -440
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +0 -277
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +0 -407
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +0 -109
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +0 -149
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -356
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +0 -97
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +0 -384
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +0 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +0 -527
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -210
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +0 -544
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +0 -209
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +0 -1514
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +0 -129
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +0 -90
- data/third_party/upb/upb/message/internal/compare_unknown.c +0 -289
- data/third_party/upb/upb/message/internal/compare_unknown.h +0 -49
@@ -30,6 +30,7 @@
|
|
30
30
|
#include "src/core/lib/promise/detail/promise_factory.h"
|
31
31
|
#include "src/core/lib/promise/detail/promise_like.h"
|
32
32
|
#include "src/core/lib/promise/poll.h"
|
33
|
+
#include "src/core/lib/promise/promise.h"
|
33
34
|
#include "src/core/util/construct_destruct.h"
|
34
35
|
#include "src/core/util/debug_location.h"
|
35
36
|
|
@@ -118,12 +119,8 @@ struct SeqState<Traits, P, F0> {
|
|
118
119
|
tail0:
|
119
120
|
Destruct(&prior.next_factory);
|
120
121
|
}
|
121
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
122
|
-
|
123
|
-
DCHECK(state == State::kState0);
|
124
|
-
Construct(&prior.current_promise, other.prior.current_promise);
|
125
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
126
|
-
}
|
122
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
123
|
+
const SeqState& other) noexcept = delete;
|
127
124
|
SeqState& operator=(const SeqState& other) = delete;
|
128
125
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
129
126
|
: state(other.state), whence(other.whence) {
|
@@ -133,15 +130,43 @@ struct SeqState<Traits, P, F0> {
|
|
133
130
|
}
|
134
131
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
135
132
|
delete;
|
133
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
134
|
+
grpc_channelz_v2_Promise* promise_proto,
|
135
|
+
upb_Arena* arena) const {
|
136
|
+
auto* seq_promise =
|
137
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
138
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
139
|
+
auto** steps =
|
140
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 2, arena);
|
141
|
+
for (int i = 0; i < 2; i++) {
|
142
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
143
|
+
}
|
144
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
145
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
146
|
+
if (state == State::kState0) {
|
147
|
+
PromiseAsProto(prior.current_promise,
|
148
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
149
|
+
steps[0], arena),
|
150
|
+
arena);
|
151
|
+
}
|
152
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
153
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
154
|
+
if (state == State::kState1) {
|
155
|
+
PromiseAsProto(current_promise,
|
156
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
157
|
+
steps[1], arena),
|
158
|
+
arena);
|
159
|
+
}
|
160
|
+
}
|
136
161
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
137
162
|
switch (state) {
|
138
163
|
case State::kState0: {
|
139
|
-
|
164
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
140
165
|
.AtLocation(whence.file(), whence.line())
|
141
166
|
<< "seq[" << this << "]: begin poll step 1/2";
|
142
167
|
auto result = prior.current_promise();
|
143
168
|
PromiseResult0* p = result.value_if_ready();
|
144
|
-
|
169
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
145
170
|
.AtLocation(whence.file(), whence.line())
|
146
171
|
<< "seq[" << this << "]: poll step 1/2 gets "
|
147
172
|
<< (p != nullptr
|
@@ -163,14 +188,14 @@ struct SeqState<Traits, P, F0> {
|
|
163
188
|
Construct(¤t_promise, std::move(next_promise));
|
164
189
|
state = State::kState1;
|
165
190
|
}
|
166
|
-
|
191
|
+
[[fallthrough]];
|
167
192
|
default:
|
168
193
|
case State::kState1: {
|
169
|
-
|
194
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
170
195
|
.AtLocation(whence.file(), whence.line())
|
171
196
|
<< "seq[" << this << "]: begin poll step 2/2";
|
172
197
|
auto result = current_promise();
|
173
|
-
|
198
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
174
199
|
.AtLocation(whence.file(), whence.line())
|
175
200
|
<< "seq[" << this << "]: poll step 2/2 gets "
|
176
201
|
<< (result.ready() ? "ready" : "pending");
|
@@ -242,13 +267,8 @@ struct SeqState<Traits, P, F0, F1> {
|
|
242
267
|
tail1:
|
243
268
|
Destruct(&prior.next_factory);
|
244
269
|
}
|
245
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
246
|
-
|
247
|
-
DCHECK(state == State::kState0);
|
248
|
-
Construct(&prior.prior.current_promise, other.prior.prior.current_promise);
|
249
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
250
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
251
|
-
}
|
270
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
271
|
+
const SeqState& other) noexcept = delete;
|
252
272
|
SeqState& operator=(const SeqState& other) = delete;
|
253
273
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
254
274
|
: state(other.state), whence(other.whence) {
|
@@ -261,15 +281,51 @@ struct SeqState<Traits, P, F0, F1> {
|
|
261
281
|
}
|
262
282
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
263
283
|
delete;
|
284
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
285
|
+
grpc_channelz_v2_Promise* promise_proto,
|
286
|
+
upb_Arena* arena) const {
|
287
|
+
auto* seq_promise =
|
288
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
289
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
290
|
+
auto** steps =
|
291
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 3, arena);
|
292
|
+
for (int i = 0; i < 3; i++) {
|
293
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
294
|
+
}
|
295
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
296
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
297
|
+
if (state == State::kState0) {
|
298
|
+
PromiseAsProto(prior.prior.current_promise,
|
299
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
300
|
+
steps[0], arena),
|
301
|
+
arena);
|
302
|
+
}
|
303
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
304
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
305
|
+
if (state == State::kState1) {
|
306
|
+
PromiseAsProto(prior.current_promise,
|
307
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
308
|
+
steps[1], arena),
|
309
|
+
arena);
|
310
|
+
}
|
311
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
312
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
313
|
+
if (state == State::kState2) {
|
314
|
+
PromiseAsProto(current_promise,
|
315
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
316
|
+
steps[2], arena),
|
317
|
+
arena);
|
318
|
+
}
|
319
|
+
}
|
264
320
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
265
321
|
switch (state) {
|
266
322
|
case State::kState0: {
|
267
|
-
|
323
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
268
324
|
.AtLocation(whence.file(), whence.line())
|
269
325
|
<< "seq[" << this << "]: begin poll step 1/3";
|
270
326
|
auto result = prior.prior.current_promise();
|
271
327
|
PromiseResult0* p = result.value_if_ready();
|
272
|
-
|
328
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
273
329
|
.AtLocation(whence.file(), whence.line())
|
274
330
|
<< "seq[" << this << "]: poll step 1/3 gets "
|
275
331
|
<< (p != nullptr
|
@@ -291,14 +347,14 @@ struct SeqState<Traits, P, F0, F1> {
|
|
291
347
|
Construct(&prior.current_promise, std::move(next_promise));
|
292
348
|
state = State::kState1;
|
293
349
|
}
|
294
|
-
|
350
|
+
[[fallthrough]];
|
295
351
|
case State::kState1: {
|
296
|
-
|
352
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
297
353
|
.AtLocation(whence.file(), whence.line())
|
298
354
|
<< "seq[" << this << "]: begin poll step 2/3";
|
299
355
|
auto result = prior.current_promise();
|
300
356
|
PromiseResult1* p = result.value_if_ready();
|
301
|
-
|
357
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
302
358
|
.AtLocation(whence.file(), whence.line())
|
303
359
|
<< "seq[" << this << "]: poll step 2/3 gets "
|
304
360
|
<< (p != nullptr
|
@@ -320,14 +376,14 @@ struct SeqState<Traits, P, F0, F1> {
|
|
320
376
|
Construct(¤t_promise, std::move(next_promise));
|
321
377
|
state = State::kState2;
|
322
378
|
}
|
323
|
-
|
379
|
+
[[fallthrough]];
|
324
380
|
default:
|
325
381
|
case State::kState2: {
|
326
|
-
|
382
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
327
383
|
.AtLocation(whence.file(), whence.line())
|
328
384
|
<< "seq[" << this << "]: begin poll step 3/3";
|
329
385
|
auto result = current_promise();
|
330
|
-
|
386
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
331
387
|
.AtLocation(whence.file(), whence.line())
|
332
388
|
<< "seq[" << this << "]: poll step 3/3 gets "
|
333
389
|
<< (result.ready() ? "ready" : "pending");
|
@@ -418,16 +474,8 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
418
474
|
tail2:
|
419
475
|
Destruct(&prior.next_factory);
|
420
476
|
}
|
421
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
422
|
-
|
423
|
-
DCHECK(state == State::kState0);
|
424
|
-
Construct(&prior.prior.prior.current_promise,
|
425
|
-
other.prior.prior.prior.current_promise);
|
426
|
-
Construct(&prior.prior.prior.next_factory,
|
427
|
-
other.prior.prior.prior.next_factory);
|
428
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
429
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
430
|
-
}
|
477
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
478
|
+
const SeqState& other) noexcept = delete;
|
431
479
|
SeqState& operator=(const SeqState& other) = delete;
|
432
480
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
433
481
|
: state(other.state), whence(other.whence) {
|
@@ -442,15 +490,59 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
442
490
|
}
|
443
491
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
444
492
|
delete;
|
493
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
494
|
+
grpc_channelz_v2_Promise* promise_proto,
|
495
|
+
upb_Arena* arena) const {
|
496
|
+
auto* seq_promise =
|
497
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
498
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
499
|
+
auto** steps =
|
500
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 4, arena);
|
501
|
+
for (int i = 0; i < 4; i++) {
|
502
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
503
|
+
}
|
504
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
505
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
506
|
+
if (state == State::kState0) {
|
507
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
508
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
509
|
+
steps[0], arena),
|
510
|
+
arena);
|
511
|
+
}
|
512
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
513
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
514
|
+
if (state == State::kState1) {
|
515
|
+
PromiseAsProto(prior.prior.current_promise,
|
516
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
517
|
+
steps[1], arena),
|
518
|
+
arena);
|
519
|
+
}
|
520
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
521
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
522
|
+
if (state == State::kState2) {
|
523
|
+
PromiseAsProto(prior.current_promise,
|
524
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
525
|
+
steps[2], arena),
|
526
|
+
arena);
|
527
|
+
}
|
528
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
529
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
530
|
+
if (state == State::kState3) {
|
531
|
+
PromiseAsProto(current_promise,
|
532
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
533
|
+
steps[3], arena),
|
534
|
+
arena);
|
535
|
+
}
|
536
|
+
}
|
445
537
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
446
538
|
switch (state) {
|
447
539
|
case State::kState0: {
|
448
|
-
|
540
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
449
541
|
.AtLocation(whence.file(), whence.line())
|
450
542
|
<< "seq[" << this << "]: begin poll step 1/4";
|
451
543
|
auto result = prior.prior.prior.current_promise();
|
452
544
|
PromiseResult0* p = result.value_if_ready();
|
453
|
-
|
545
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
454
546
|
.AtLocation(whence.file(), whence.line())
|
455
547
|
<< "seq[" << this << "]: poll step 1/4 gets "
|
456
548
|
<< (p != nullptr
|
@@ -472,14 +564,14 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
472
564
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
473
565
|
state = State::kState1;
|
474
566
|
}
|
475
|
-
|
567
|
+
[[fallthrough]];
|
476
568
|
case State::kState1: {
|
477
|
-
|
569
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
478
570
|
.AtLocation(whence.file(), whence.line())
|
479
571
|
<< "seq[" << this << "]: begin poll step 2/4";
|
480
572
|
auto result = prior.prior.current_promise();
|
481
573
|
PromiseResult1* p = result.value_if_ready();
|
482
|
-
|
574
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
483
575
|
.AtLocation(whence.file(), whence.line())
|
484
576
|
<< "seq[" << this << "]: poll step 2/4 gets "
|
485
577
|
<< (p != nullptr
|
@@ -501,14 +593,14 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
501
593
|
Construct(&prior.current_promise, std::move(next_promise));
|
502
594
|
state = State::kState2;
|
503
595
|
}
|
504
|
-
|
596
|
+
[[fallthrough]];
|
505
597
|
case State::kState2: {
|
506
|
-
|
598
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
507
599
|
.AtLocation(whence.file(), whence.line())
|
508
600
|
<< "seq[" << this << "]: begin poll step 3/4";
|
509
601
|
auto result = prior.current_promise();
|
510
602
|
PromiseResult2* p = result.value_if_ready();
|
511
|
-
|
603
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
512
604
|
.AtLocation(whence.file(), whence.line())
|
513
605
|
<< "seq[" << this << "]: poll step 3/4 gets "
|
514
606
|
<< (p != nullptr
|
@@ -530,14 +622,14 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
530
622
|
Construct(¤t_promise, std::move(next_promise));
|
531
623
|
state = State::kState3;
|
532
624
|
}
|
533
|
-
|
625
|
+
[[fallthrough]];
|
534
626
|
default:
|
535
627
|
case State::kState3: {
|
536
|
-
|
628
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
537
629
|
.AtLocation(whence.file(), whence.line())
|
538
630
|
<< "seq[" << this << "]: begin poll step 4/4";
|
539
631
|
auto result = current_promise();
|
540
|
-
|
632
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
541
633
|
.AtLocation(whence.file(), whence.line())
|
542
634
|
<< "seq[" << this << "]: poll step 4/4 gets "
|
543
635
|
<< (result.ready() ? "ready" : "pending");
|
@@ -646,18 +738,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
646
738
|
tail3:
|
647
739
|
Destruct(&prior.next_factory);
|
648
740
|
}
|
649
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
650
|
-
|
651
|
-
DCHECK(state == State::kState0);
|
652
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
653
|
-
other.prior.prior.prior.prior.current_promise);
|
654
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
655
|
-
other.prior.prior.prior.prior.next_factory);
|
656
|
-
Construct(&prior.prior.prior.next_factory,
|
657
|
-
other.prior.prior.prior.next_factory);
|
658
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
659
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
660
|
-
}
|
741
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
742
|
+
const SeqState& other) noexcept = delete;
|
661
743
|
SeqState& operator=(const SeqState& other) = delete;
|
662
744
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
663
745
|
: state(other.state), whence(other.whence) {
|
@@ -674,15 +756,67 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
674
756
|
}
|
675
757
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
676
758
|
delete;
|
759
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
760
|
+
grpc_channelz_v2_Promise* promise_proto,
|
761
|
+
upb_Arena* arena) const {
|
762
|
+
auto* seq_promise =
|
763
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
764
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
765
|
+
auto** steps =
|
766
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 5, arena);
|
767
|
+
for (int i = 0; i < 5; i++) {
|
768
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
769
|
+
}
|
770
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
771
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
772
|
+
if (state == State::kState0) {
|
773
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
774
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
775
|
+
steps[0], arena),
|
776
|
+
arena);
|
777
|
+
}
|
778
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
779
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
780
|
+
if (state == State::kState1) {
|
781
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
782
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
783
|
+
steps[1], arena),
|
784
|
+
arena);
|
785
|
+
}
|
786
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
787
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
788
|
+
if (state == State::kState2) {
|
789
|
+
PromiseAsProto(prior.prior.current_promise,
|
790
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
791
|
+
steps[2], arena),
|
792
|
+
arena);
|
793
|
+
}
|
794
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
795
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
796
|
+
if (state == State::kState3) {
|
797
|
+
PromiseAsProto(prior.current_promise,
|
798
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
799
|
+
steps[3], arena),
|
800
|
+
arena);
|
801
|
+
}
|
802
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
803
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
804
|
+
if (state == State::kState4) {
|
805
|
+
PromiseAsProto(current_promise,
|
806
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
807
|
+
steps[4], arena),
|
808
|
+
arena);
|
809
|
+
}
|
810
|
+
}
|
677
811
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
678
812
|
switch (state) {
|
679
813
|
case State::kState0: {
|
680
|
-
|
814
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
681
815
|
.AtLocation(whence.file(), whence.line())
|
682
816
|
<< "seq[" << this << "]: begin poll step 1/5";
|
683
817
|
auto result = prior.prior.prior.prior.current_promise();
|
684
818
|
PromiseResult0* p = result.value_if_ready();
|
685
|
-
|
819
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
686
820
|
.AtLocation(whence.file(), whence.line())
|
687
821
|
<< "seq[" << this << "]: poll step 1/5 gets "
|
688
822
|
<< (p != nullptr
|
@@ -704,14 +838,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
704
838
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
705
839
|
state = State::kState1;
|
706
840
|
}
|
707
|
-
|
841
|
+
[[fallthrough]];
|
708
842
|
case State::kState1: {
|
709
|
-
|
843
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
710
844
|
.AtLocation(whence.file(), whence.line())
|
711
845
|
<< "seq[" << this << "]: begin poll step 2/5";
|
712
846
|
auto result = prior.prior.prior.current_promise();
|
713
847
|
PromiseResult1* p = result.value_if_ready();
|
714
|
-
|
848
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
715
849
|
.AtLocation(whence.file(), whence.line())
|
716
850
|
<< "seq[" << this << "]: poll step 2/5 gets "
|
717
851
|
<< (p != nullptr
|
@@ -733,14 +867,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
733
867
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
734
868
|
state = State::kState2;
|
735
869
|
}
|
736
|
-
|
870
|
+
[[fallthrough]];
|
737
871
|
case State::kState2: {
|
738
|
-
|
872
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
739
873
|
.AtLocation(whence.file(), whence.line())
|
740
874
|
<< "seq[" << this << "]: begin poll step 3/5";
|
741
875
|
auto result = prior.prior.current_promise();
|
742
876
|
PromiseResult2* p = result.value_if_ready();
|
743
|
-
|
877
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
744
878
|
.AtLocation(whence.file(), whence.line())
|
745
879
|
<< "seq[" << this << "]: poll step 3/5 gets "
|
746
880
|
<< (p != nullptr
|
@@ -762,14 +896,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
762
896
|
Construct(&prior.current_promise, std::move(next_promise));
|
763
897
|
state = State::kState3;
|
764
898
|
}
|
765
|
-
|
899
|
+
[[fallthrough]];
|
766
900
|
case State::kState3: {
|
767
|
-
|
901
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
768
902
|
.AtLocation(whence.file(), whence.line())
|
769
903
|
<< "seq[" << this << "]: begin poll step 4/5";
|
770
904
|
auto result = prior.current_promise();
|
771
905
|
PromiseResult3* p = result.value_if_ready();
|
772
|
-
|
906
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
773
907
|
.AtLocation(whence.file(), whence.line())
|
774
908
|
<< "seq[" << this << "]: poll step 4/5 gets "
|
775
909
|
<< (p != nullptr
|
@@ -791,14 +925,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
791
925
|
Construct(¤t_promise, std::move(next_promise));
|
792
926
|
state = State::kState4;
|
793
927
|
}
|
794
|
-
|
928
|
+
[[fallthrough]];
|
795
929
|
default:
|
796
930
|
case State::kState4: {
|
797
|
-
|
931
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
798
932
|
.AtLocation(whence.file(), whence.line())
|
799
933
|
<< "seq[" << this << "]: begin poll step 5/5";
|
800
934
|
auto result = current_promise();
|
801
|
-
|
935
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
802
936
|
.AtLocation(whence.file(), whence.line())
|
803
937
|
<< "seq[" << this << "]: poll step 5/5 gets "
|
804
938
|
<< (result.ready() ? "ready" : "pending");
|
@@ -934,20 +1068,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
934
1068
|
tail4:
|
935
1069
|
Destruct(&prior.next_factory);
|
936
1070
|
}
|
937
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
938
|
-
|
939
|
-
DCHECK(state == State::kState0);
|
940
|
-
Construct(&prior.prior.prior.prior.prior.current_promise,
|
941
|
-
other.prior.prior.prior.prior.prior.current_promise);
|
942
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
943
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
944
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
945
|
-
other.prior.prior.prior.prior.next_factory);
|
946
|
-
Construct(&prior.prior.prior.next_factory,
|
947
|
-
other.prior.prior.prior.next_factory);
|
948
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
949
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
950
|
-
}
|
1071
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
1072
|
+
const SeqState& other) noexcept = delete;
|
951
1073
|
SeqState& operator=(const SeqState& other) = delete;
|
952
1074
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
953
1075
|
: state(other.state), whence(other.whence) {
|
@@ -966,15 +1088,75 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
966
1088
|
}
|
967
1089
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
968
1090
|
delete;
|
1091
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
1092
|
+
grpc_channelz_v2_Promise* promise_proto,
|
1093
|
+
upb_Arena* arena) const {
|
1094
|
+
auto* seq_promise =
|
1095
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
1096
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
1097
|
+
auto** steps =
|
1098
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 6, arena);
|
1099
|
+
for (int i = 0; i < 6; i++) {
|
1100
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
1101
|
+
}
|
1102
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1103
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
1104
|
+
if (state == State::kState0) {
|
1105
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
1106
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1107
|
+
steps[0], arena),
|
1108
|
+
arena);
|
1109
|
+
}
|
1110
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1111
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
1112
|
+
if (state == State::kState1) {
|
1113
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
1114
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1115
|
+
steps[1], arena),
|
1116
|
+
arena);
|
1117
|
+
}
|
1118
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1119
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
1120
|
+
if (state == State::kState2) {
|
1121
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
1122
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1123
|
+
steps[2], arena),
|
1124
|
+
arena);
|
1125
|
+
}
|
1126
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1127
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
1128
|
+
if (state == State::kState3) {
|
1129
|
+
PromiseAsProto(prior.prior.current_promise,
|
1130
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1131
|
+
steps[3], arena),
|
1132
|
+
arena);
|
1133
|
+
}
|
1134
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1135
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
1136
|
+
if (state == State::kState4) {
|
1137
|
+
PromiseAsProto(prior.current_promise,
|
1138
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1139
|
+
steps[4], arena),
|
1140
|
+
arena);
|
1141
|
+
}
|
1142
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1143
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
1144
|
+
if (state == State::kState5) {
|
1145
|
+
PromiseAsProto(current_promise,
|
1146
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1147
|
+
steps[5], arena),
|
1148
|
+
arena);
|
1149
|
+
}
|
1150
|
+
}
|
969
1151
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
970
1152
|
switch (state) {
|
971
1153
|
case State::kState0: {
|
972
|
-
|
1154
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
973
1155
|
.AtLocation(whence.file(), whence.line())
|
974
1156
|
<< "seq[" << this << "]: begin poll step 1/6";
|
975
1157
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
976
1158
|
PromiseResult0* p = result.value_if_ready();
|
977
|
-
|
1159
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
978
1160
|
.AtLocation(whence.file(), whence.line())
|
979
1161
|
<< "seq[" << this << "]: poll step 1/6 gets "
|
980
1162
|
<< (p != nullptr
|
@@ -997,14 +1179,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
997
1179
|
std::move(next_promise));
|
998
1180
|
state = State::kState1;
|
999
1181
|
}
|
1000
|
-
|
1182
|
+
[[fallthrough]];
|
1001
1183
|
case State::kState1: {
|
1002
|
-
|
1184
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1003
1185
|
.AtLocation(whence.file(), whence.line())
|
1004
1186
|
<< "seq[" << this << "]: begin poll step 2/6";
|
1005
1187
|
auto result = prior.prior.prior.prior.current_promise();
|
1006
1188
|
PromiseResult1* p = result.value_if_ready();
|
1007
|
-
|
1189
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1008
1190
|
.AtLocation(whence.file(), whence.line())
|
1009
1191
|
<< "seq[" << this << "]: poll step 2/6 gets "
|
1010
1192
|
<< (p != nullptr
|
@@ -1026,14 +1208,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
1026
1208
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
1027
1209
|
state = State::kState2;
|
1028
1210
|
}
|
1029
|
-
|
1211
|
+
[[fallthrough]];
|
1030
1212
|
case State::kState2: {
|
1031
|
-
|
1213
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1032
1214
|
.AtLocation(whence.file(), whence.line())
|
1033
1215
|
<< "seq[" << this << "]: begin poll step 3/6";
|
1034
1216
|
auto result = prior.prior.prior.current_promise();
|
1035
1217
|
PromiseResult2* p = result.value_if_ready();
|
1036
|
-
|
1218
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1037
1219
|
.AtLocation(whence.file(), whence.line())
|
1038
1220
|
<< "seq[" << this << "]: poll step 3/6 gets "
|
1039
1221
|
<< (p != nullptr
|
@@ -1055,14 +1237,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
1055
1237
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
1056
1238
|
state = State::kState3;
|
1057
1239
|
}
|
1058
|
-
|
1240
|
+
[[fallthrough]];
|
1059
1241
|
case State::kState3: {
|
1060
|
-
|
1242
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1061
1243
|
.AtLocation(whence.file(), whence.line())
|
1062
1244
|
<< "seq[" << this << "]: begin poll step 4/6";
|
1063
1245
|
auto result = prior.prior.current_promise();
|
1064
1246
|
PromiseResult3* p = result.value_if_ready();
|
1065
|
-
|
1247
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1066
1248
|
.AtLocation(whence.file(), whence.line())
|
1067
1249
|
<< "seq[" << this << "]: poll step 4/6 gets "
|
1068
1250
|
<< (p != nullptr
|
@@ -1084,14 +1266,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
1084
1266
|
Construct(&prior.current_promise, std::move(next_promise));
|
1085
1267
|
state = State::kState4;
|
1086
1268
|
}
|
1087
|
-
|
1269
|
+
[[fallthrough]];
|
1088
1270
|
case State::kState4: {
|
1089
|
-
|
1271
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1090
1272
|
.AtLocation(whence.file(), whence.line())
|
1091
1273
|
<< "seq[" << this << "]: begin poll step 5/6";
|
1092
1274
|
auto result = prior.current_promise();
|
1093
1275
|
PromiseResult4* p = result.value_if_ready();
|
1094
|
-
|
1276
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1095
1277
|
.AtLocation(whence.file(), whence.line())
|
1096
1278
|
<< "seq[" << this << "]: poll step 5/6 gets "
|
1097
1279
|
<< (p != nullptr
|
@@ -1113,14 +1295,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
1113
1295
|
Construct(¤t_promise, std::move(next_promise));
|
1114
1296
|
state = State::kState5;
|
1115
1297
|
}
|
1116
|
-
|
1298
|
+
[[fallthrough]];
|
1117
1299
|
default:
|
1118
1300
|
case State::kState5: {
|
1119
|
-
|
1301
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1120
1302
|
.AtLocation(whence.file(), whence.line())
|
1121
1303
|
<< "seq[" << this << "]: begin poll step 6/6";
|
1122
1304
|
auto result = current_promise();
|
1123
|
-
|
1305
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1124
1306
|
.AtLocation(whence.file(), whence.line())
|
1125
1307
|
<< "seq[" << this << "]: poll step 6/6 gets "
|
1126
1308
|
<< (result.ready() ? "ready" : "pending");
|
@@ -1277,22 +1459,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1277
1459
|
tail5:
|
1278
1460
|
Destruct(&prior.next_factory);
|
1279
1461
|
}
|
1280
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
1281
|
-
|
1282
|
-
DCHECK(state == State::kState0);
|
1283
|
-
Construct(&prior.prior.prior.prior.prior.prior.current_promise,
|
1284
|
-
other.prior.prior.prior.prior.prior.prior.current_promise);
|
1285
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
1286
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
1287
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
1288
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
1289
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
1290
|
-
other.prior.prior.prior.prior.next_factory);
|
1291
|
-
Construct(&prior.prior.prior.next_factory,
|
1292
|
-
other.prior.prior.prior.next_factory);
|
1293
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
1294
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
1295
|
-
}
|
1462
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
1463
|
+
const SeqState& other) noexcept = delete;
|
1296
1464
|
SeqState& operator=(const SeqState& other) = delete;
|
1297
1465
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
1298
1466
|
: state(other.state), whence(other.whence) {
|
@@ -1315,15 +1483,83 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1315
1483
|
}
|
1316
1484
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
1317
1485
|
delete;
|
1486
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
1487
|
+
grpc_channelz_v2_Promise* promise_proto,
|
1488
|
+
upb_Arena* arena) const {
|
1489
|
+
auto* seq_promise =
|
1490
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
1491
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
1492
|
+
auto** steps =
|
1493
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 7, arena);
|
1494
|
+
for (int i = 0; i < 7; i++) {
|
1495
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
1496
|
+
}
|
1497
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1498
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
1499
|
+
if (state == State::kState0) {
|
1500
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
1501
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1502
|
+
steps[0], arena),
|
1503
|
+
arena);
|
1504
|
+
}
|
1505
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1506
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
1507
|
+
if (state == State::kState1) {
|
1508
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
1509
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1510
|
+
steps[1], arena),
|
1511
|
+
arena);
|
1512
|
+
}
|
1513
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1514
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
1515
|
+
if (state == State::kState2) {
|
1516
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
1517
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1518
|
+
steps[2], arena),
|
1519
|
+
arena);
|
1520
|
+
}
|
1521
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1522
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
1523
|
+
if (state == State::kState3) {
|
1524
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
1525
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1526
|
+
steps[3], arena),
|
1527
|
+
arena);
|
1528
|
+
}
|
1529
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1530
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
1531
|
+
if (state == State::kState4) {
|
1532
|
+
PromiseAsProto(prior.prior.current_promise,
|
1533
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1534
|
+
steps[4], arena),
|
1535
|
+
arena);
|
1536
|
+
}
|
1537
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1538
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
1539
|
+
if (state == State::kState5) {
|
1540
|
+
PromiseAsProto(prior.current_promise,
|
1541
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1542
|
+
steps[5], arena),
|
1543
|
+
arena);
|
1544
|
+
}
|
1545
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1546
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
1547
|
+
if (state == State::kState6) {
|
1548
|
+
PromiseAsProto(current_promise,
|
1549
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1550
|
+
steps[6], arena),
|
1551
|
+
arena);
|
1552
|
+
}
|
1553
|
+
}
|
1318
1554
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
1319
1555
|
switch (state) {
|
1320
1556
|
case State::kState0: {
|
1321
|
-
|
1557
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1322
1558
|
.AtLocation(whence.file(), whence.line())
|
1323
1559
|
<< "seq[" << this << "]: begin poll step 1/7";
|
1324
1560
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
1325
1561
|
PromiseResult0* p = result.value_if_ready();
|
1326
|
-
|
1562
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1327
1563
|
.AtLocation(whence.file(), whence.line())
|
1328
1564
|
<< "seq[" << this << "]: poll step 1/7 gets "
|
1329
1565
|
<< (p != nullptr
|
@@ -1346,14 +1582,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1346
1582
|
std::move(next_promise));
|
1347
1583
|
state = State::kState1;
|
1348
1584
|
}
|
1349
|
-
|
1585
|
+
[[fallthrough]];
|
1350
1586
|
case State::kState1: {
|
1351
|
-
|
1587
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1352
1588
|
.AtLocation(whence.file(), whence.line())
|
1353
1589
|
<< "seq[" << this << "]: begin poll step 2/7";
|
1354
1590
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
1355
1591
|
PromiseResult1* p = result.value_if_ready();
|
1356
|
-
|
1592
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1357
1593
|
.AtLocation(whence.file(), whence.line())
|
1358
1594
|
<< "seq[" << this << "]: poll step 2/7 gets "
|
1359
1595
|
<< (p != nullptr
|
@@ -1376,14 +1612,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1376
1612
|
std::move(next_promise));
|
1377
1613
|
state = State::kState2;
|
1378
1614
|
}
|
1379
|
-
|
1615
|
+
[[fallthrough]];
|
1380
1616
|
case State::kState2: {
|
1381
|
-
|
1617
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1382
1618
|
.AtLocation(whence.file(), whence.line())
|
1383
1619
|
<< "seq[" << this << "]: begin poll step 3/7";
|
1384
1620
|
auto result = prior.prior.prior.prior.current_promise();
|
1385
1621
|
PromiseResult2* p = result.value_if_ready();
|
1386
|
-
|
1622
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1387
1623
|
.AtLocation(whence.file(), whence.line())
|
1388
1624
|
<< "seq[" << this << "]: poll step 3/7 gets "
|
1389
1625
|
<< (p != nullptr
|
@@ -1405,14 +1641,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1405
1641
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
1406
1642
|
state = State::kState3;
|
1407
1643
|
}
|
1408
|
-
|
1644
|
+
[[fallthrough]];
|
1409
1645
|
case State::kState3: {
|
1410
|
-
|
1646
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1411
1647
|
.AtLocation(whence.file(), whence.line())
|
1412
1648
|
<< "seq[" << this << "]: begin poll step 4/7";
|
1413
1649
|
auto result = prior.prior.prior.current_promise();
|
1414
1650
|
PromiseResult3* p = result.value_if_ready();
|
1415
|
-
|
1651
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1416
1652
|
.AtLocation(whence.file(), whence.line())
|
1417
1653
|
<< "seq[" << this << "]: poll step 4/7 gets "
|
1418
1654
|
<< (p != nullptr
|
@@ -1434,14 +1670,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1434
1670
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
1435
1671
|
state = State::kState4;
|
1436
1672
|
}
|
1437
|
-
|
1673
|
+
[[fallthrough]];
|
1438
1674
|
case State::kState4: {
|
1439
|
-
|
1675
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1440
1676
|
.AtLocation(whence.file(), whence.line())
|
1441
1677
|
<< "seq[" << this << "]: begin poll step 5/7";
|
1442
1678
|
auto result = prior.prior.current_promise();
|
1443
1679
|
PromiseResult4* p = result.value_if_ready();
|
1444
|
-
|
1680
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1445
1681
|
.AtLocation(whence.file(), whence.line())
|
1446
1682
|
<< "seq[" << this << "]: poll step 5/7 gets "
|
1447
1683
|
<< (p != nullptr
|
@@ -1463,14 +1699,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1463
1699
|
Construct(&prior.current_promise, std::move(next_promise));
|
1464
1700
|
state = State::kState5;
|
1465
1701
|
}
|
1466
|
-
|
1702
|
+
[[fallthrough]];
|
1467
1703
|
case State::kState5: {
|
1468
|
-
|
1704
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1469
1705
|
.AtLocation(whence.file(), whence.line())
|
1470
1706
|
<< "seq[" << this << "]: begin poll step 6/7";
|
1471
1707
|
auto result = prior.current_promise();
|
1472
1708
|
PromiseResult5* p = result.value_if_ready();
|
1473
|
-
|
1709
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1474
1710
|
.AtLocation(whence.file(), whence.line())
|
1475
1711
|
<< "seq[" << this << "]: poll step 6/7 gets "
|
1476
1712
|
<< (p != nullptr
|
@@ -1492,14 +1728,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1492
1728
|
Construct(¤t_promise, std::move(next_promise));
|
1493
1729
|
state = State::kState6;
|
1494
1730
|
}
|
1495
|
-
|
1731
|
+
[[fallthrough]];
|
1496
1732
|
default:
|
1497
1733
|
case State::kState6: {
|
1498
|
-
|
1734
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1499
1735
|
.AtLocation(whence.file(), whence.line())
|
1500
1736
|
<< "seq[" << this << "]: begin poll step 7/7";
|
1501
1737
|
auto result = current_promise();
|
1502
|
-
|
1738
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1503
1739
|
.AtLocation(whence.file(), whence.line())
|
1504
1740
|
<< "seq[" << this << "]: poll step 7/7 gets "
|
1505
1741
|
<< (result.ready() ? "ready" : "pending");
|
@@ -1677,24 +1913,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1677
1913
|
tail6:
|
1678
1914
|
Destruct(&prior.next_factory);
|
1679
1915
|
}
|
1680
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
1681
|
-
|
1682
|
-
DCHECK(state == State::kState0);
|
1683
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
1684
|
-
other.prior.prior.prior.prior.prior.prior.prior.current_promise);
|
1685
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
1686
|
-
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
1687
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
1688
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
1689
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
1690
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
1691
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
1692
|
-
other.prior.prior.prior.prior.next_factory);
|
1693
|
-
Construct(&prior.prior.prior.next_factory,
|
1694
|
-
other.prior.prior.prior.next_factory);
|
1695
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
1696
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
1697
|
-
}
|
1916
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
1917
|
+
const SeqState& other) noexcept = delete;
|
1698
1918
|
SeqState& operator=(const SeqState& other) = delete;
|
1699
1919
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
1700
1920
|
: state(other.state), whence(other.whence) {
|
@@ -1722,16 +1942,92 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1722
1942
|
}
|
1723
1943
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
1724
1944
|
delete;
|
1945
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
1946
|
+
grpc_channelz_v2_Promise* promise_proto,
|
1947
|
+
upb_Arena* arena) const {
|
1948
|
+
auto* seq_promise =
|
1949
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
1950
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
1951
|
+
auto** steps =
|
1952
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 8, arena);
|
1953
|
+
for (int i = 0; i < 8; i++) {
|
1954
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
1955
|
+
}
|
1956
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1957
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
1958
|
+
if (state == State::kState0) {
|
1959
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
|
1960
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1961
|
+
steps[0], arena),
|
1962
|
+
arena);
|
1963
|
+
}
|
1964
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1965
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
1966
|
+
if (state == State::kState1) {
|
1967
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
1968
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1969
|
+
steps[1], arena),
|
1970
|
+
arena);
|
1971
|
+
}
|
1972
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1973
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
1974
|
+
if (state == State::kState2) {
|
1975
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
1976
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1977
|
+
steps[2], arena),
|
1978
|
+
arena);
|
1979
|
+
}
|
1980
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1981
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
1982
|
+
if (state == State::kState3) {
|
1983
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
1984
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1985
|
+
steps[3], arena),
|
1986
|
+
arena);
|
1987
|
+
}
|
1988
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1989
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
1990
|
+
if (state == State::kState4) {
|
1991
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
1992
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
1993
|
+
steps[4], arena),
|
1994
|
+
arena);
|
1995
|
+
}
|
1996
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
1997
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
1998
|
+
if (state == State::kState5) {
|
1999
|
+
PromiseAsProto(prior.prior.current_promise,
|
2000
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2001
|
+
steps[5], arena),
|
2002
|
+
arena);
|
2003
|
+
}
|
2004
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2005
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
2006
|
+
if (state == State::kState6) {
|
2007
|
+
PromiseAsProto(prior.current_promise,
|
2008
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2009
|
+
steps[6], arena),
|
2010
|
+
arena);
|
2011
|
+
}
|
2012
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2013
|
+
steps[7], StdStringToUpbString(TypeName<F6>()));
|
2014
|
+
if (state == State::kState7) {
|
2015
|
+
PromiseAsProto(current_promise,
|
2016
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2017
|
+
steps[7], arena),
|
2018
|
+
arena);
|
2019
|
+
}
|
2020
|
+
}
|
1725
2021
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
1726
2022
|
switch (state) {
|
1727
2023
|
case State::kState0: {
|
1728
|
-
|
2024
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1729
2025
|
.AtLocation(whence.file(), whence.line())
|
1730
2026
|
<< "seq[" << this << "]: begin poll step 1/8";
|
1731
2027
|
auto result =
|
1732
2028
|
prior.prior.prior.prior.prior.prior.prior.current_promise();
|
1733
2029
|
PromiseResult0* p = result.value_if_ready();
|
1734
|
-
|
2030
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1735
2031
|
.AtLocation(whence.file(), whence.line())
|
1736
2032
|
<< "seq[" << this << "]: poll step 1/8 gets "
|
1737
2033
|
<< (p != nullptr
|
@@ -1755,14 +2051,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1755
2051
|
std::move(next_promise));
|
1756
2052
|
state = State::kState1;
|
1757
2053
|
}
|
1758
|
-
|
2054
|
+
[[fallthrough]];
|
1759
2055
|
case State::kState1: {
|
1760
|
-
|
2056
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1761
2057
|
.AtLocation(whence.file(), whence.line())
|
1762
2058
|
<< "seq[" << this << "]: begin poll step 2/8";
|
1763
2059
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
1764
2060
|
PromiseResult1* p = result.value_if_ready();
|
1765
|
-
|
2061
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1766
2062
|
.AtLocation(whence.file(), whence.line())
|
1767
2063
|
<< "seq[" << this << "]: poll step 2/8 gets "
|
1768
2064
|
<< (p != nullptr
|
@@ -1785,14 +2081,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1785
2081
|
std::move(next_promise));
|
1786
2082
|
state = State::kState2;
|
1787
2083
|
}
|
1788
|
-
|
2084
|
+
[[fallthrough]];
|
1789
2085
|
case State::kState2: {
|
1790
|
-
|
2086
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1791
2087
|
.AtLocation(whence.file(), whence.line())
|
1792
2088
|
<< "seq[" << this << "]: begin poll step 3/8";
|
1793
2089
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
1794
2090
|
PromiseResult2* p = result.value_if_ready();
|
1795
|
-
|
2091
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1796
2092
|
.AtLocation(whence.file(), whence.line())
|
1797
2093
|
<< "seq[" << this << "]: poll step 3/8 gets "
|
1798
2094
|
<< (p != nullptr
|
@@ -1815,14 +2111,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1815
2111
|
std::move(next_promise));
|
1816
2112
|
state = State::kState3;
|
1817
2113
|
}
|
1818
|
-
|
2114
|
+
[[fallthrough]];
|
1819
2115
|
case State::kState3: {
|
1820
|
-
|
2116
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1821
2117
|
.AtLocation(whence.file(), whence.line())
|
1822
2118
|
<< "seq[" << this << "]: begin poll step 4/8";
|
1823
2119
|
auto result = prior.prior.prior.prior.current_promise();
|
1824
2120
|
PromiseResult3* p = result.value_if_ready();
|
1825
|
-
|
2121
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1826
2122
|
.AtLocation(whence.file(), whence.line())
|
1827
2123
|
<< "seq[" << this << "]: poll step 4/8 gets "
|
1828
2124
|
<< (p != nullptr
|
@@ -1844,14 +2140,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1844
2140
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
1845
2141
|
state = State::kState4;
|
1846
2142
|
}
|
1847
|
-
|
2143
|
+
[[fallthrough]];
|
1848
2144
|
case State::kState4: {
|
1849
|
-
|
2145
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1850
2146
|
.AtLocation(whence.file(), whence.line())
|
1851
2147
|
<< "seq[" << this << "]: begin poll step 5/8";
|
1852
2148
|
auto result = prior.prior.prior.current_promise();
|
1853
2149
|
PromiseResult4* p = result.value_if_ready();
|
1854
|
-
|
2150
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1855
2151
|
.AtLocation(whence.file(), whence.line())
|
1856
2152
|
<< "seq[" << this << "]: poll step 5/8 gets "
|
1857
2153
|
<< (p != nullptr
|
@@ -1873,14 +2169,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1873
2169
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
1874
2170
|
state = State::kState5;
|
1875
2171
|
}
|
1876
|
-
|
2172
|
+
[[fallthrough]];
|
1877
2173
|
case State::kState5: {
|
1878
|
-
|
2174
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1879
2175
|
.AtLocation(whence.file(), whence.line())
|
1880
2176
|
<< "seq[" << this << "]: begin poll step 6/8";
|
1881
2177
|
auto result = prior.prior.current_promise();
|
1882
2178
|
PromiseResult5* p = result.value_if_ready();
|
1883
|
-
|
2179
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1884
2180
|
.AtLocation(whence.file(), whence.line())
|
1885
2181
|
<< "seq[" << this << "]: poll step 6/8 gets "
|
1886
2182
|
<< (p != nullptr
|
@@ -1902,14 +2198,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1902
2198
|
Construct(&prior.current_promise, std::move(next_promise));
|
1903
2199
|
state = State::kState6;
|
1904
2200
|
}
|
1905
|
-
|
2201
|
+
[[fallthrough]];
|
1906
2202
|
case State::kState6: {
|
1907
|
-
|
2203
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1908
2204
|
.AtLocation(whence.file(), whence.line())
|
1909
2205
|
<< "seq[" << this << "]: begin poll step 7/8";
|
1910
2206
|
auto result = prior.current_promise();
|
1911
2207
|
PromiseResult6* p = result.value_if_ready();
|
1912
|
-
|
2208
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1913
2209
|
.AtLocation(whence.file(), whence.line())
|
1914
2210
|
<< "seq[" << this << "]: poll step 7/8 gets "
|
1915
2211
|
<< (p != nullptr
|
@@ -1931,14 +2227,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1931
2227
|
Construct(¤t_promise, std::move(next_promise));
|
1932
2228
|
state = State::kState7;
|
1933
2229
|
}
|
1934
|
-
|
2230
|
+
[[fallthrough]];
|
1935
2231
|
default:
|
1936
2232
|
case State::kState7: {
|
1937
|
-
|
2233
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1938
2234
|
.AtLocation(whence.file(), whence.line())
|
1939
2235
|
<< "seq[" << this << "]: begin poll step 8/8";
|
1940
2236
|
auto result = current_promise();
|
1941
|
-
|
2237
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
1942
2238
|
.AtLocation(whence.file(), whence.line())
|
1943
2239
|
<< "seq[" << this << "]: poll step 8/8 gets "
|
1944
2240
|
<< (result.ready() ? "ready" : "pending");
|
@@ -2137,28 +2433,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2137
2433
|
tail7:
|
2138
2434
|
Destruct(&prior.next_factory);
|
2139
2435
|
}
|
2140
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
2141
|
-
|
2142
|
-
DCHECK(state == State::kState0);
|
2143
|
-
Construct(
|
2144
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2145
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.current_promise);
|
2146
|
-
Construct(
|
2147
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2148
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
2149
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2150
|
-
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
2151
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
2152
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
2153
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
2154
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
2155
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
2156
|
-
other.prior.prior.prior.prior.next_factory);
|
2157
|
-
Construct(&prior.prior.prior.next_factory,
|
2158
|
-
other.prior.prior.prior.next_factory);
|
2159
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
2160
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
2161
|
-
}
|
2436
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
2437
|
+
const SeqState& other) noexcept = delete;
|
2162
2438
|
SeqState& operator=(const SeqState& other) = delete;
|
2163
2439
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
2164
2440
|
: state(other.state), whence(other.whence) {
|
@@ -2188,16 +2464,101 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2188
2464
|
}
|
2189
2465
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
2190
2466
|
delete;
|
2467
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
2468
|
+
grpc_channelz_v2_Promise* promise_proto,
|
2469
|
+
upb_Arena* arena) const {
|
2470
|
+
auto* seq_promise =
|
2471
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
2472
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
2473
|
+
auto** steps =
|
2474
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 9, arena);
|
2475
|
+
for (int i = 0; i < 9; i++) {
|
2476
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
2477
|
+
}
|
2478
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2479
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
2480
|
+
if (state == State::kState0) {
|
2481
|
+
PromiseAsProto(
|
2482
|
+
prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2483
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[0],
|
2484
|
+
arena),
|
2485
|
+
arena);
|
2486
|
+
}
|
2487
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2488
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
2489
|
+
if (state == State::kState1) {
|
2490
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2491
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2492
|
+
steps[1], arena),
|
2493
|
+
arena);
|
2494
|
+
}
|
2495
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2496
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
2497
|
+
if (state == State::kState2) {
|
2498
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
2499
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2500
|
+
steps[2], arena),
|
2501
|
+
arena);
|
2502
|
+
}
|
2503
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2504
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
2505
|
+
if (state == State::kState3) {
|
2506
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
2507
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2508
|
+
steps[3], arena),
|
2509
|
+
arena);
|
2510
|
+
}
|
2511
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2512
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
2513
|
+
if (state == State::kState4) {
|
2514
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
2515
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2516
|
+
steps[4], arena),
|
2517
|
+
arena);
|
2518
|
+
}
|
2519
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2520
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
2521
|
+
if (state == State::kState5) {
|
2522
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
2523
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2524
|
+
steps[5], arena),
|
2525
|
+
arena);
|
2526
|
+
}
|
2527
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2528
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
2529
|
+
if (state == State::kState6) {
|
2530
|
+
PromiseAsProto(prior.prior.current_promise,
|
2531
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2532
|
+
steps[6], arena),
|
2533
|
+
arena);
|
2534
|
+
}
|
2535
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2536
|
+
steps[7], StdStringToUpbString(TypeName<F6>()));
|
2537
|
+
if (state == State::kState7) {
|
2538
|
+
PromiseAsProto(prior.current_promise,
|
2539
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2540
|
+
steps[7], arena),
|
2541
|
+
arena);
|
2542
|
+
}
|
2543
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
2544
|
+
steps[8], StdStringToUpbString(TypeName<F7>()));
|
2545
|
+
if (state == State::kState8) {
|
2546
|
+
PromiseAsProto(current_promise,
|
2547
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
2548
|
+
steps[8], arena),
|
2549
|
+
arena);
|
2550
|
+
}
|
2551
|
+
}
|
2191
2552
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
2192
2553
|
switch (state) {
|
2193
2554
|
case State::kState0: {
|
2194
|
-
|
2555
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2195
2556
|
.AtLocation(whence.file(), whence.line())
|
2196
2557
|
<< "seq[" << this << "]: begin poll step 1/9";
|
2197
2558
|
auto result =
|
2198
2559
|
prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
|
2199
2560
|
PromiseResult0* p = result.value_if_ready();
|
2200
|
-
|
2561
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2201
2562
|
.AtLocation(whence.file(), whence.line())
|
2202
2563
|
<< "seq[" << this << "]: poll step 1/9 gets "
|
2203
2564
|
<< (p != nullptr
|
@@ -2222,15 +2583,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2222
2583
|
std::move(next_promise));
|
2223
2584
|
state = State::kState1;
|
2224
2585
|
}
|
2225
|
-
|
2586
|
+
[[fallthrough]];
|
2226
2587
|
case State::kState1: {
|
2227
|
-
|
2588
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2228
2589
|
.AtLocation(whence.file(), whence.line())
|
2229
2590
|
<< "seq[" << this << "]: begin poll step 2/9";
|
2230
2591
|
auto result =
|
2231
2592
|
prior.prior.prior.prior.prior.prior.prior.current_promise();
|
2232
2593
|
PromiseResult1* p = result.value_if_ready();
|
2233
|
-
|
2594
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2234
2595
|
.AtLocation(whence.file(), whence.line())
|
2235
2596
|
<< "seq[" << this << "]: poll step 2/9 gets "
|
2236
2597
|
<< (p != nullptr
|
@@ -2254,14 +2615,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2254
2615
|
std::move(next_promise));
|
2255
2616
|
state = State::kState2;
|
2256
2617
|
}
|
2257
|
-
|
2618
|
+
[[fallthrough]];
|
2258
2619
|
case State::kState2: {
|
2259
|
-
|
2620
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2260
2621
|
.AtLocation(whence.file(), whence.line())
|
2261
2622
|
<< "seq[" << this << "]: begin poll step 3/9";
|
2262
2623
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
2263
2624
|
PromiseResult2* p = result.value_if_ready();
|
2264
|
-
|
2625
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2265
2626
|
.AtLocation(whence.file(), whence.line())
|
2266
2627
|
<< "seq[" << this << "]: poll step 3/9 gets "
|
2267
2628
|
<< (p != nullptr
|
@@ -2284,14 +2645,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2284
2645
|
std::move(next_promise));
|
2285
2646
|
state = State::kState3;
|
2286
2647
|
}
|
2287
|
-
|
2648
|
+
[[fallthrough]];
|
2288
2649
|
case State::kState3: {
|
2289
|
-
|
2650
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2290
2651
|
.AtLocation(whence.file(), whence.line())
|
2291
2652
|
<< "seq[" << this << "]: begin poll step 4/9";
|
2292
2653
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
2293
2654
|
PromiseResult3* p = result.value_if_ready();
|
2294
|
-
|
2655
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2295
2656
|
.AtLocation(whence.file(), whence.line())
|
2296
2657
|
<< "seq[" << this << "]: poll step 4/9 gets "
|
2297
2658
|
<< (p != nullptr
|
@@ -2314,14 +2675,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2314
2675
|
std::move(next_promise));
|
2315
2676
|
state = State::kState4;
|
2316
2677
|
}
|
2317
|
-
|
2678
|
+
[[fallthrough]];
|
2318
2679
|
case State::kState4: {
|
2319
|
-
|
2680
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2320
2681
|
.AtLocation(whence.file(), whence.line())
|
2321
2682
|
<< "seq[" << this << "]: begin poll step 5/9";
|
2322
2683
|
auto result = prior.prior.prior.prior.current_promise();
|
2323
2684
|
PromiseResult4* p = result.value_if_ready();
|
2324
|
-
|
2685
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2325
2686
|
.AtLocation(whence.file(), whence.line())
|
2326
2687
|
<< "seq[" << this << "]: poll step 5/9 gets "
|
2327
2688
|
<< (p != nullptr
|
@@ -2343,14 +2704,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2343
2704
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
2344
2705
|
state = State::kState5;
|
2345
2706
|
}
|
2346
|
-
|
2707
|
+
[[fallthrough]];
|
2347
2708
|
case State::kState5: {
|
2348
|
-
|
2709
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2349
2710
|
.AtLocation(whence.file(), whence.line())
|
2350
2711
|
<< "seq[" << this << "]: begin poll step 6/9";
|
2351
2712
|
auto result = prior.prior.prior.current_promise();
|
2352
2713
|
PromiseResult5* p = result.value_if_ready();
|
2353
|
-
|
2714
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2354
2715
|
.AtLocation(whence.file(), whence.line())
|
2355
2716
|
<< "seq[" << this << "]: poll step 6/9 gets "
|
2356
2717
|
<< (p != nullptr
|
@@ -2372,14 +2733,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2372
2733
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
2373
2734
|
state = State::kState6;
|
2374
2735
|
}
|
2375
|
-
|
2736
|
+
[[fallthrough]];
|
2376
2737
|
case State::kState6: {
|
2377
|
-
|
2738
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2378
2739
|
.AtLocation(whence.file(), whence.line())
|
2379
2740
|
<< "seq[" << this << "]: begin poll step 7/9";
|
2380
2741
|
auto result = prior.prior.current_promise();
|
2381
2742
|
PromiseResult6* p = result.value_if_ready();
|
2382
|
-
|
2743
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2383
2744
|
.AtLocation(whence.file(), whence.line())
|
2384
2745
|
<< "seq[" << this << "]: poll step 7/9 gets "
|
2385
2746
|
<< (p != nullptr
|
@@ -2401,14 +2762,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2401
2762
|
Construct(&prior.current_promise, std::move(next_promise));
|
2402
2763
|
state = State::kState7;
|
2403
2764
|
}
|
2404
|
-
|
2765
|
+
[[fallthrough]];
|
2405
2766
|
case State::kState7: {
|
2406
|
-
|
2767
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2407
2768
|
.AtLocation(whence.file(), whence.line())
|
2408
2769
|
<< "seq[" << this << "]: begin poll step 8/9";
|
2409
2770
|
auto result = prior.current_promise();
|
2410
2771
|
PromiseResult7* p = result.value_if_ready();
|
2411
|
-
|
2772
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2412
2773
|
.AtLocation(whence.file(), whence.line())
|
2413
2774
|
<< "seq[" << this << "]: poll step 8/9 gets "
|
2414
2775
|
<< (p != nullptr
|
@@ -2430,14 +2791,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2430
2791
|
Construct(¤t_promise, std::move(next_promise));
|
2431
2792
|
state = State::kState8;
|
2432
2793
|
}
|
2433
|
-
|
2794
|
+
[[fallthrough]];
|
2434
2795
|
default:
|
2435
2796
|
case State::kState8: {
|
2436
|
-
|
2797
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2437
2798
|
.AtLocation(whence.file(), whence.line())
|
2438
2799
|
<< "seq[" << this << "]: begin poll step 9/9";
|
2439
2800
|
auto result = current_promise();
|
2440
|
-
|
2801
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2441
2802
|
.AtLocation(whence.file(), whence.line())
|
2442
2803
|
<< "seq[" << this << "]: poll step 9/9 gets "
|
2443
2804
|
<< (result.ready() ? "ready" : "pending");
|
@@ -2661,33 +3022,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2661
3022
|
tail8:
|
2662
3023
|
Destruct(&prior.next_factory);
|
2663
3024
|
}
|
2664
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
2665
|
-
|
2666
|
-
DCHECK(state == State::kState0);
|
2667
|
-
Construct(
|
2668
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2669
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
2670
|
-
.current_promise);
|
2671
|
-
Construct(
|
2672
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2673
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
2674
|
-
.next_factory);
|
2675
|
-
Construct(
|
2676
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2677
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
2678
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2679
|
-
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
2680
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
2681
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
2682
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
2683
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
2684
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
2685
|
-
other.prior.prior.prior.prior.next_factory);
|
2686
|
-
Construct(&prior.prior.prior.next_factory,
|
2687
|
-
other.prior.prior.prior.next_factory);
|
2688
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
2689
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
2690
|
-
}
|
3025
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
3026
|
+
const SeqState& other) noexcept = delete;
|
2691
3027
|
SeqState& operator=(const SeqState& other) = delete;
|
2692
3028
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
2693
3029
|
: state(other.state), whence(other.whence) {
|
@@ -2722,16 +3058,110 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2722
3058
|
}
|
2723
3059
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
2724
3060
|
delete;
|
3061
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
3062
|
+
grpc_channelz_v2_Promise* promise_proto,
|
3063
|
+
upb_Arena* arena) const {
|
3064
|
+
auto* seq_promise =
|
3065
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
3066
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
3067
|
+
auto** steps =
|
3068
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 10, arena);
|
3069
|
+
for (int i = 0; i < 10; i++) {
|
3070
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
3071
|
+
}
|
3072
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3073
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
3074
|
+
if (state == State::kState0) {
|
3075
|
+
PromiseAsProto(
|
3076
|
+
prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3077
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[0],
|
3078
|
+
arena),
|
3079
|
+
arena);
|
3080
|
+
}
|
3081
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3082
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
3083
|
+
if (state == State::kState1) {
|
3084
|
+
PromiseAsProto(
|
3085
|
+
prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3086
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[1],
|
3087
|
+
arena),
|
3088
|
+
arena);
|
3089
|
+
}
|
3090
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3091
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
3092
|
+
if (state == State::kState2) {
|
3093
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3094
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3095
|
+
steps[2], arena),
|
3096
|
+
arena);
|
3097
|
+
}
|
3098
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3099
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
3100
|
+
if (state == State::kState3) {
|
3101
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
3102
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3103
|
+
steps[3], arena),
|
3104
|
+
arena);
|
3105
|
+
}
|
3106
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3107
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
3108
|
+
if (state == State::kState4) {
|
3109
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
3110
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3111
|
+
steps[4], arena),
|
3112
|
+
arena);
|
3113
|
+
}
|
3114
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3115
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
3116
|
+
if (state == State::kState5) {
|
3117
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
3118
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3119
|
+
steps[5], arena),
|
3120
|
+
arena);
|
3121
|
+
}
|
3122
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3123
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
3124
|
+
if (state == State::kState6) {
|
3125
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
3126
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3127
|
+
steps[6], arena),
|
3128
|
+
arena);
|
3129
|
+
}
|
3130
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3131
|
+
steps[7], StdStringToUpbString(TypeName<F6>()));
|
3132
|
+
if (state == State::kState7) {
|
3133
|
+
PromiseAsProto(prior.prior.current_promise,
|
3134
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3135
|
+
steps[7], arena),
|
3136
|
+
arena);
|
3137
|
+
}
|
3138
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3139
|
+
steps[8], StdStringToUpbString(TypeName<F7>()));
|
3140
|
+
if (state == State::kState8) {
|
3141
|
+
PromiseAsProto(prior.current_promise,
|
3142
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3143
|
+
steps[8], arena),
|
3144
|
+
arena);
|
3145
|
+
}
|
3146
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3147
|
+
steps[9], StdStringToUpbString(TypeName<F8>()));
|
3148
|
+
if (state == State::kState9) {
|
3149
|
+
PromiseAsProto(current_promise,
|
3150
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3151
|
+
steps[9], arena),
|
3152
|
+
arena);
|
3153
|
+
}
|
3154
|
+
}
|
2725
3155
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
2726
3156
|
switch (state) {
|
2727
3157
|
case State::kState0: {
|
2728
|
-
|
3158
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2729
3159
|
.AtLocation(whence.file(), whence.line())
|
2730
3160
|
<< "seq[" << this << "]: begin poll step 1/10";
|
2731
3161
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
2732
3162
|
.current_promise();
|
2733
3163
|
PromiseResult0* p = result.value_if_ready();
|
2734
|
-
|
3164
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2735
3165
|
.AtLocation(whence.file(), whence.line())
|
2736
3166
|
<< "seq[" << this << "]: poll step 1/10 gets "
|
2737
3167
|
<< (p != nullptr
|
@@ -2758,15 +3188,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2758
3188
|
std::move(next_promise));
|
2759
3189
|
state = State::kState1;
|
2760
3190
|
}
|
2761
|
-
|
3191
|
+
[[fallthrough]];
|
2762
3192
|
case State::kState1: {
|
2763
|
-
|
3193
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2764
3194
|
.AtLocation(whence.file(), whence.line())
|
2765
3195
|
<< "seq[" << this << "]: begin poll step 2/10";
|
2766
3196
|
auto result =
|
2767
3197
|
prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
|
2768
3198
|
PromiseResult1* p = result.value_if_ready();
|
2769
|
-
|
3199
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2770
3200
|
.AtLocation(whence.file(), whence.line())
|
2771
3201
|
<< "seq[" << this << "]: poll step 2/10 gets "
|
2772
3202
|
<< (p != nullptr
|
@@ -2791,15 +3221,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2791
3221
|
std::move(next_promise));
|
2792
3222
|
state = State::kState2;
|
2793
3223
|
}
|
2794
|
-
|
3224
|
+
[[fallthrough]];
|
2795
3225
|
case State::kState2: {
|
2796
|
-
|
3226
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2797
3227
|
.AtLocation(whence.file(), whence.line())
|
2798
3228
|
<< "seq[" << this << "]: begin poll step 3/10";
|
2799
3229
|
auto result =
|
2800
3230
|
prior.prior.prior.prior.prior.prior.prior.current_promise();
|
2801
3231
|
PromiseResult2* p = result.value_if_ready();
|
2802
|
-
|
3232
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2803
3233
|
.AtLocation(whence.file(), whence.line())
|
2804
3234
|
<< "seq[" << this << "]: poll step 3/10 gets "
|
2805
3235
|
<< (p != nullptr
|
@@ -2823,14 +3253,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2823
3253
|
std::move(next_promise));
|
2824
3254
|
state = State::kState3;
|
2825
3255
|
}
|
2826
|
-
|
3256
|
+
[[fallthrough]];
|
2827
3257
|
case State::kState3: {
|
2828
|
-
|
3258
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2829
3259
|
.AtLocation(whence.file(), whence.line())
|
2830
3260
|
<< "seq[" << this << "]: begin poll step 4/10";
|
2831
3261
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
2832
3262
|
PromiseResult3* p = result.value_if_ready();
|
2833
|
-
|
3263
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2834
3264
|
.AtLocation(whence.file(), whence.line())
|
2835
3265
|
<< "seq[" << this << "]: poll step 4/10 gets "
|
2836
3266
|
<< (p != nullptr
|
@@ -2853,14 +3283,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2853
3283
|
std::move(next_promise));
|
2854
3284
|
state = State::kState4;
|
2855
3285
|
}
|
2856
|
-
|
3286
|
+
[[fallthrough]];
|
2857
3287
|
case State::kState4: {
|
2858
|
-
|
3288
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2859
3289
|
.AtLocation(whence.file(), whence.line())
|
2860
3290
|
<< "seq[" << this << "]: begin poll step 5/10";
|
2861
3291
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
2862
3292
|
PromiseResult4* p = result.value_if_ready();
|
2863
|
-
|
3293
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2864
3294
|
.AtLocation(whence.file(), whence.line())
|
2865
3295
|
<< "seq[" << this << "]: poll step 5/10 gets "
|
2866
3296
|
<< (p != nullptr
|
@@ -2883,14 +3313,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2883
3313
|
std::move(next_promise));
|
2884
3314
|
state = State::kState5;
|
2885
3315
|
}
|
2886
|
-
|
3316
|
+
[[fallthrough]];
|
2887
3317
|
case State::kState5: {
|
2888
|
-
|
3318
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2889
3319
|
.AtLocation(whence.file(), whence.line())
|
2890
3320
|
<< "seq[" << this << "]: begin poll step 6/10";
|
2891
3321
|
auto result = prior.prior.prior.prior.current_promise();
|
2892
3322
|
PromiseResult5* p = result.value_if_ready();
|
2893
|
-
|
3323
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2894
3324
|
.AtLocation(whence.file(), whence.line())
|
2895
3325
|
<< "seq[" << this << "]: poll step 6/10 gets "
|
2896
3326
|
<< (p != nullptr
|
@@ -2912,14 +3342,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2912
3342
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
2913
3343
|
state = State::kState6;
|
2914
3344
|
}
|
2915
|
-
|
3345
|
+
[[fallthrough]];
|
2916
3346
|
case State::kState6: {
|
2917
|
-
|
3347
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2918
3348
|
.AtLocation(whence.file(), whence.line())
|
2919
3349
|
<< "seq[" << this << "]: begin poll step 7/10";
|
2920
3350
|
auto result = prior.prior.prior.current_promise();
|
2921
3351
|
PromiseResult6* p = result.value_if_ready();
|
2922
|
-
|
3352
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2923
3353
|
.AtLocation(whence.file(), whence.line())
|
2924
3354
|
<< "seq[" << this << "]: poll step 7/10 gets "
|
2925
3355
|
<< (p != nullptr
|
@@ -2941,14 +3371,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2941
3371
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
2942
3372
|
state = State::kState7;
|
2943
3373
|
}
|
2944
|
-
|
3374
|
+
[[fallthrough]];
|
2945
3375
|
case State::kState7: {
|
2946
|
-
|
3376
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2947
3377
|
.AtLocation(whence.file(), whence.line())
|
2948
3378
|
<< "seq[" << this << "]: begin poll step 8/10";
|
2949
3379
|
auto result = prior.prior.current_promise();
|
2950
3380
|
PromiseResult7* p = result.value_if_ready();
|
2951
|
-
|
3381
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2952
3382
|
.AtLocation(whence.file(), whence.line())
|
2953
3383
|
<< "seq[" << this << "]: poll step 8/10 gets "
|
2954
3384
|
<< (p != nullptr
|
@@ -2970,14 +3400,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2970
3400
|
Construct(&prior.current_promise, std::move(next_promise));
|
2971
3401
|
state = State::kState8;
|
2972
3402
|
}
|
2973
|
-
|
3403
|
+
[[fallthrough]];
|
2974
3404
|
case State::kState8: {
|
2975
|
-
|
3405
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2976
3406
|
.AtLocation(whence.file(), whence.line())
|
2977
3407
|
<< "seq[" << this << "]: begin poll step 9/10";
|
2978
3408
|
auto result = prior.current_promise();
|
2979
3409
|
PromiseResult8* p = result.value_if_ready();
|
2980
|
-
|
3410
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
2981
3411
|
.AtLocation(whence.file(), whence.line())
|
2982
3412
|
<< "seq[" << this << "]: poll step 9/10 gets "
|
2983
3413
|
<< (p != nullptr
|
@@ -2999,14 +3429,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2999
3429
|
Construct(¤t_promise, std::move(next_promise));
|
3000
3430
|
state = State::kState9;
|
3001
3431
|
}
|
3002
|
-
|
3432
|
+
[[fallthrough]];
|
3003
3433
|
default:
|
3004
3434
|
case State::kState9: {
|
3005
|
-
|
3435
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3006
3436
|
.AtLocation(whence.file(), whence.line())
|
3007
3437
|
<< "seq[" << this << "]: begin poll step 10/10";
|
3008
3438
|
auto result = current_promise();
|
3009
|
-
|
3439
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3010
3440
|
.AtLocation(whence.file(), whence.line())
|
3011
3441
|
<< "seq[" << this << "]: poll step 10/10 gets "
|
3012
3442
|
<< (result.ready() ? "ready" : "pending");
|
@@ -3253,37 +3683,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3253
3683
|
tail9:
|
3254
3684
|
Destruct(&prior.next_factory);
|
3255
3685
|
}
|
3256
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
3257
|
-
|
3258
|
-
DCHECK(state == State::kState0);
|
3259
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3260
|
-
.current_promise,
|
3261
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3262
|
-
.current_promise);
|
3263
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3264
|
-
.next_factory,
|
3265
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3266
|
-
.next_factory);
|
3267
|
-
Construct(
|
3268
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3269
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3270
|
-
.next_factory);
|
3271
|
-
Construct(
|
3272
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3273
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
3274
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3275
|
-
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
3276
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
3277
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
3278
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
3279
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
3280
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
3281
|
-
other.prior.prior.prior.prior.next_factory);
|
3282
|
-
Construct(&prior.prior.prior.next_factory,
|
3283
|
-
other.prior.prior.prior.next_factory);
|
3284
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
3285
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
3286
|
-
}
|
3686
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
3687
|
+
const SeqState& other) noexcept = delete;
|
3287
3688
|
SeqState& operator=(const SeqState& other) = delete;
|
3288
3689
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
3289
3690
|
: state(other.state), whence(other.whence) {
|
@@ -3322,16 +3723,119 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3322
3723
|
}
|
3323
3724
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
3324
3725
|
delete;
|
3726
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
3727
|
+
grpc_channelz_v2_Promise* promise_proto,
|
3728
|
+
upb_Arena* arena) const {
|
3729
|
+
auto* seq_promise =
|
3730
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
3731
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
3732
|
+
auto** steps =
|
3733
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 11, arena);
|
3734
|
+
for (int i = 0; i < 11; i++) {
|
3735
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
3736
|
+
}
|
3737
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3738
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
3739
|
+
if (state == State::kState0) {
|
3740
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3741
|
+
.current_promise,
|
3742
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3743
|
+
steps[0], arena),
|
3744
|
+
arena);
|
3745
|
+
}
|
3746
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3747
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
3748
|
+
if (state == State::kState1) {
|
3749
|
+
PromiseAsProto(
|
3750
|
+
prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3751
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[1],
|
3752
|
+
arena),
|
3753
|
+
arena);
|
3754
|
+
}
|
3755
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3756
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
3757
|
+
if (state == State::kState2) {
|
3758
|
+
PromiseAsProto(
|
3759
|
+
prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3760
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[2],
|
3761
|
+
arena),
|
3762
|
+
arena);
|
3763
|
+
}
|
3764
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3765
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
3766
|
+
if (state == State::kState3) {
|
3767
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3768
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3769
|
+
steps[3], arena),
|
3770
|
+
arena);
|
3771
|
+
}
|
3772
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3773
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
3774
|
+
if (state == State::kState4) {
|
3775
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
3776
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3777
|
+
steps[4], arena),
|
3778
|
+
arena);
|
3779
|
+
}
|
3780
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3781
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
3782
|
+
if (state == State::kState5) {
|
3783
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
3784
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3785
|
+
steps[5], arena),
|
3786
|
+
arena);
|
3787
|
+
}
|
3788
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3789
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
3790
|
+
if (state == State::kState6) {
|
3791
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
3792
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3793
|
+
steps[6], arena),
|
3794
|
+
arena);
|
3795
|
+
}
|
3796
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3797
|
+
steps[7], StdStringToUpbString(TypeName<F6>()));
|
3798
|
+
if (state == State::kState7) {
|
3799
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
3800
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3801
|
+
steps[7], arena),
|
3802
|
+
arena);
|
3803
|
+
}
|
3804
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3805
|
+
steps[8], StdStringToUpbString(TypeName<F7>()));
|
3806
|
+
if (state == State::kState8) {
|
3807
|
+
PromiseAsProto(prior.prior.current_promise,
|
3808
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3809
|
+
steps[8], arena),
|
3810
|
+
arena);
|
3811
|
+
}
|
3812
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3813
|
+
steps[9], StdStringToUpbString(TypeName<F8>()));
|
3814
|
+
if (state == State::kState9) {
|
3815
|
+
PromiseAsProto(prior.current_promise,
|
3816
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3817
|
+
steps[9], arena),
|
3818
|
+
arena);
|
3819
|
+
}
|
3820
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
3821
|
+
steps[10], StdStringToUpbString(TypeName<F9>()));
|
3822
|
+
if (state == State::kState10) {
|
3823
|
+
PromiseAsProto(current_promise,
|
3824
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
3825
|
+
steps[10], arena),
|
3826
|
+
arena);
|
3827
|
+
}
|
3828
|
+
}
|
3325
3829
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
3326
3830
|
switch (state) {
|
3327
3831
|
case State::kState0: {
|
3328
|
-
|
3832
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3329
3833
|
.AtLocation(whence.file(), whence.line())
|
3330
3834
|
<< "seq[" << this << "]: begin poll step 1/11";
|
3331
3835
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3332
3836
|
.prior.current_promise();
|
3333
3837
|
PromiseResult0* p = result.value_if_ready();
|
3334
|
-
|
3838
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3335
3839
|
.AtLocation(whence.file(), whence.line())
|
3336
3840
|
<< "seq[" << this << "]: poll step 1/11 gets "
|
3337
3841
|
<< (p != nullptr
|
@@ -3359,15 +3863,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3359
3863
|
std::move(next_promise));
|
3360
3864
|
state = State::kState1;
|
3361
3865
|
}
|
3362
|
-
|
3866
|
+
[[fallthrough]];
|
3363
3867
|
case State::kState1: {
|
3364
|
-
|
3868
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3365
3869
|
.AtLocation(whence.file(), whence.line())
|
3366
3870
|
<< "seq[" << this << "]: begin poll step 2/11";
|
3367
3871
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3368
3872
|
.current_promise();
|
3369
3873
|
PromiseResult1* p = result.value_if_ready();
|
3370
|
-
|
3874
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3371
3875
|
.AtLocation(whence.file(), whence.line())
|
3372
3876
|
<< "seq[" << this << "]: poll step 2/11 gets "
|
3373
3877
|
<< (p != nullptr
|
@@ -3394,15 +3898,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3394
3898
|
std::move(next_promise));
|
3395
3899
|
state = State::kState2;
|
3396
3900
|
}
|
3397
|
-
|
3901
|
+
[[fallthrough]];
|
3398
3902
|
case State::kState2: {
|
3399
|
-
|
3903
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3400
3904
|
.AtLocation(whence.file(), whence.line())
|
3401
3905
|
<< "seq[" << this << "]: begin poll step 3/11";
|
3402
3906
|
auto result =
|
3403
3907
|
prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
|
3404
3908
|
PromiseResult2* p = result.value_if_ready();
|
3405
|
-
|
3909
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3406
3910
|
.AtLocation(whence.file(), whence.line())
|
3407
3911
|
<< "seq[" << this << "]: poll step 3/11 gets "
|
3408
3912
|
<< (p != nullptr
|
@@ -3427,15 +3931,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3427
3931
|
std::move(next_promise));
|
3428
3932
|
state = State::kState3;
|
3429
3933
|
}
|
3430
|
-
|
3934
|
+
[[fallthrough]];
|
3431
3935
|
case State::kState3: {
|
3432
|
-
|
3936
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3433
3937
|
.AtLocation(whence.file(), whence.line())
|
3434
3938
|
<< "seq[" << this << "]: begin poll step 4/11";
|
3435
3939
|
auto result =
|
3436
3940
|
prior.prior.prior.prior.prior.prior.prior.current_promise();
|
3437
3941
|
PromiseResult3* p = result.value_if_ready();
|
3438
|
-
|
3942
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3439
3943
|
.AtLocation(whence.file(), whence.line())
|
3440
3944
|
<< "seq[" << this << "]: poll step 4/11 gets "
|
3441
3945
|
<< (p != nullptr
|
@@ -3459,14 +3963,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3459
3963
|
std::move(next_promise));
|
3460
3964
|
state = State::kState4;
|
3461
3965
|
}
|
3462
|
-
|
3966
|
+
[[fallthrough]];
|
3463
3967
|
case State::kState4: {
|
3464
|
-
|
3968
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3465
3969
|
.AtLocation(whence.file(), whence.line())
|
3466
3970
|
<< "seq[" << this << "]: begin poll step 5/11";
|
3467
3971
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
3468
3972
|
PromiseResult4* p = result.value_if_ready();
|
3469
|
-
|
3973
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3470
3974
|
.AtLocation(whence.file(), whence.line())
|
3471
3975
|
<< "seq[" << this << "]: poll step 5/11 gets "
|
3472
3976
|
<< (p != nullptr
|
@@ -3489,14 +3993,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3489
3993
|
std::move(next_promise));
|
3490
3994
|
state = State::kState5;
|
3491
3995
|
}
|
3492
|
-
|
3996
|
+
[[fallthrough]];
|
3493
3997
|
case State::kState5: {
|
3494
|
-
|
3998
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3495
3999
|
.AtLocation(whence.file(), whence.line())
|
3496
4000
|
<< "seq[" << this << "]: begin poll step 6/11";
|
3497
4001
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
3498
4002
|
PromiseResult5* p = result.value_if_ready();
|
3499
|
-
|
4003
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3500
4004
|
.AtLocation(whence.file(), whence.line())
|
3501
4005
|
<< "seq[" << this << "]: poll step 6/11 gets "
|
3502
4006
|
<< (p != nullptr
|
@@ -3519,14 +4023,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3519
4023
|
std::move(next_promise));
|
3520
4024
|
state = State::kState6;
|
3521
4025
|
}
|
3522
|
-
|
4026
|
+
[[fallthrough]];
|
3523
4027
|
case State::kState6: {
|
3524
|
-
|
4028
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3525
4029
|
.AtLocation(whence.file(), whence.line())
|
3526
4030
|
<< "seq[" << this << "]: begin poll step 7/11";
|
3527
4031
|
auto result = prior.prior.prior.prior.current_promise();
|
3528
4032
|
PromiseResult6* p = result.value_if_ready();
|
3529
|
-
|
4033
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3530
4034
|
.AtLocation(whence.file(), whence.line())
|
3531
4035
|
<< "seq[" << this << "]: poll step 7/11 gets "
|
3532
4036
|
<< (p != nullptr
|
@@ -3548,14 +4052,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3548
4052
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
3549
4053
|
state = State::kState7;
|
3550
4054
|
}
|
3551
|
-
|
4055
|
+
[[fallthrough]];
|
3552
4056
|
case State::kState7: {
|
3553
|
-
|
4057
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3554
4058
|
.AtLocation(whence.file(), whence.line())
|
3555
4059
|
<< "seq[" << this << "]: begin poll step 8/11";
|
3556
4060
|
auto result = prior.prior.prior.current_promise();
|
3557
4061
|
PromiseResult7* p = result.value_if_ready();
|
3558
|
-
|
4062
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3559
4063
|
.AtLocation(whence.file(), whence.line())
|
3560
4064
|
<< "seq[" << this << "]: poll step 8/11 gets "
|
3561
4065
|
<< (p != nullptr
|
@@ -3577,14 +4081,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3577
4081
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
3578
4082
|
state = State::kState8;
|
3579
4083
|
}
|
3580
|
-
|
4084
|
+
[[fallthrough]];
|
3581
4085
|
case State::kState8: {
|
3582
|
-
|
4086
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3583
4087
|
.AtLocation(whence.file(), whence.line())
|
3584
4088
|
<< "seq[" << this << "]: begin poll step 9/11";
|
3585
4089
|
auto result = prior.prior.current_promise();
|
3586
4090
|
PromiseResult8* p = result.value_if_ready();
|
3587
|
-
|
4091
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3588
4092
|
.AtLocation(whence.file(), whence.line())
|
3589
4093
|
<< "seq[" << this << "]: poll step 9/11 gets "
|
3590
4094
|
<< (p != nullptr
|
@@ -3606,14 +4110,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3606
4110
|
Construct(&prior.current_promise, std::move(next_promise));
|
3607
4111
|
state = State::kState9;
|
3608
4112
|
}
|
3609
|
-
|
4113
|
+
[[fallthrough]];
|
3610
4114
|
case State::kState9: {
|
3611
|
-
|
4115
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3612
4116
|
.AtLocation(whence.file(), whence.line())
|
3613
4117
|
<< "seq[" << this << "]: begin poll step 10/11";
|
3614
4118
|
auto result = prior.current_promise();
|
3615
4119
|
PromiseResult9* p = result.value_if_ready();
|
3616
|
-
|
4120
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3617
4121
|
.AtLocation(whence.file(), whence.line())
|
3618
4122
|
<< "seq[" << this << "]: poll step 10/11 gets "
|
3619
4123
|
<< (p != nullptr
|
@@ -3635,14 +4139,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3635
4139
|
Construct(¤t_promise, std::move(next_promise));
|
3636
4140
|
state = State::kState10;
|
3637
4141
|
}
|
3638
|
-
|
4142
|
+
[[fallthrough]];
|
3639
4143
|
default:
|
3640
4144
|
case State::kState10: {
|
3641
|
-
|
4145
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3642
4146
|
.AtLocation(whence.file(), whence.line())
|
3643
4147
|
<< "seq[" << this << "]: begin poll step 11/11";
|
3644
4148
|
auto result = current_promise();
|
3645
|
-
|
4149
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3646
4150
|
.AtLocation(whence.file(), whence.line())
|
3647
4151
|
<< "seq[" << this << "]: poll step 11/11 gets "
|
3648
4152
|
<< (result.ready() ? "ready" : "pending");
|
@@ -3912,41 +4416,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
3912
4416
|
tail10:
|
3913
4417
|
Destruct(&prior.next_factory);
|
3914
4418
|
}
|
3915
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
3916
|
-
|
3917
|
-
DCHECK(state == State::kState0);
|
3918
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3919
|
-
.current_promise,
|
3920
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3921
|
-
.prior.current_promise);
|
3922
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3923
|
-
.next_factory,
|
3924
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3925
|
-
.prior.next_factory);
|
3926
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3927
|
-
.next_factory,
|
3928
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3929
|
-
.next_factory);
|
3930
|
-
Construct(
|
3931
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3932
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3933
|
-
.next_factory);
|
3934
|
-
Construct(
|
3935
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3936
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
3937
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3938
|
-
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
3939
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
3940
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
3941
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
3942
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
3943
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
3944
|
-
other.prior.prior.prior.prior.next_factory);
|
3945
|
-
Construct(&prior.prior.prior.next_factory,
|
3946
|
-
other.prior.prior.prior.next_factory);
|
3947
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
3948
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
3949
|
-
}
|
4419
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
4420
|
+
const SeqState& other) noexcept = delete;
|
3950
4421
|
SeqState& operator=(const SeqState& other) = delete;
|
3951
4422
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
3952
4423
|
: state(other.state), whence(other.whence) {
|
@@ -3989,16 +4460,128 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
3989
4460
|
}
|
3990
4461
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
3991
4462
|
delete;
|
4463
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
4464
|
+
grpc_channelz_v2_Promise* promise_proto,
|
4465
|
+
upb_Arena* arena) const {
|
4466
|
+
auto* seq_promise =
|
4467
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
4468
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
4469
|
+
auto** steps =
|
4470
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 12, arena);
|
4471
|
+
for (int i = 0; i < 12; i++) {
|
4472
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
4473
|
+
}
|
4474
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4475
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
4476
|
+
if (state == State::kState0) {
|
4477
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4478
|
+
.prior.current_promise,
|
4479
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4480
|
+
steps[0], arena),
|
4481
|
+
arena);
|
4482
|
+
}
|
4483
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4484
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
4485
|
+
if (state == State::kState1) {
|
4486
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4487
|
+
.current_promise,
|
4488
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4489
|
+
steps[1], arena),
|
4490
|
+
arena);
|
4491
|
+
}
|
4492
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4493
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
4494
|
+
if (state == State::kState2) {
|
4495
|
+
PromiseAsProto(
|
4496
|
+
prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
4497
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[2],
|
4498
|
+
arena),
|
4499
|
+
arena);
|
4500
|
+
}
|
4501
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4502
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
4503
|
+
if (state == State::kState3) {
|
4504
|
+
PromiseAsProto(
|
4505
|
+
prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
4506
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[3],
|
4507
|
+
arena),
|
4508
|
+
arena);
|
4509
|
+
}
|
4510
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4511
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
4512
|
+
if (state == State::kState4) {
|
4513
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
|
4514
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4515
|
+
steps[4], arena),
|
4516
|
+
arena);
|
4517
|
+
}
|
4518
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4519
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
4520
|
+
if (state == State::kState5) {
|
4521
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
4522
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4523
|
+
steps[5], arena),
|
4524
|
+
arena);
|
4525
|
+
}
|
4526
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4527
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
4528
|
+
if (state == State::kState6) {
|
4529
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
4530
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4531
|
+
steps[6], arena),
|
4532
|
+
arena);
|
4533
|
+
}
|
4534
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4535
|
+
steps[7], StdStringToUpbString(TypeName<F6>()));
|
4536
|
+
if (state == State::kState7) {
|
4537
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
4538
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4539
|
+
steps[7], arena),
|
4540
|
+
arena);
|
4541
|
+
}
|
4542
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4543
|
+
steps[8], StdStringToUpbString(TypeName<F7>()));
|
4544
|
+
if (state == State::kState8) {
|
4545
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
4546
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4547
|
+
steps[8], arena),
|
4548
|
+
arena);
|
4549
|
+
}
|
4550
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4551
|
+
steps[9], StdStringToUpbString(TypeName<F8>()));
|
4552
|
+
if (state == State::kState9) {
|
4553
|
+
PromiseAsProto(prior.prior.current_promise,
|
4554
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4555
|
+
steps[9], arena),
|
4556
|
+
arena);
|
4557
|
+
}
|
4558
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4559
|
+
steps[10], StdStringToUpbString(TypeName<F9>()));
|
4560
|
+
if (state == State::kState10) {
|
4561
|
+
PromiseAsProto(prior.current_promise,
|
4562
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4563
|
+
steps[10], arena),
|
4564
|
+
arena);
|
4565
|
+
}
|
4566
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
4567
|
+
steps[11], StdStringToUpbString(TypeName<F10>()));
|
4568
|
+
if (state == State::kState11) {
|
4569
|
+
PromiseAsProto(current_promise,
|
4570
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
4571
|
+
steps[11], arena),
|
4572
|
+
arena);
|
4573
|
+
}
|
4574
|
+
}
|
3992
4575
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
3993
4576
|
switch (state) {
|
3994
4577
|
case State::kState0: {
|
3995
|
-
|
4578
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
3996
4579
|
.AtLocation(whence.file(), whence.line())
|
3997
4580
|
<< "seq[" << this << "]: begin poll step 1/12";
|
3998
4581
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3999
4582
|
.prior.prior.current_promise();
|
4000
4583
|
PromiseResult0* p = result.value_if_ready();
|
4001
|
-
|
4584
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4002
4585
|
.AtLocation(whence.file(), whence.line())
|
4003
4586
|
<< "seq[" << this << "]: poll step 1/12 gets "
|
4004
4587
|
<< (p != nullptr
|
@@ -4026,15 +4609,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4026
4609
|
std::move(next_promise));
|
4027
4610
|
state = State::kState1;
|
4028
4611
|
}
|
4029
|
-
|
4612
|
+
[[fallthrough]];
|
4030
4613
|
case State::kState1: {
|
4031
|
-
|
4614
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4032
4615
|
.AtLocation(whence.file(), whence.line())
|
4033
4616
|
<< "seq[" << this << "]: begin poll step 2/12";
|
4034
4617
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4035
4618
|
.prior.current_promise();
|
4036
4619
|
PromiseResult1* p = result.value_if_ready();
|
4037
|
-
|
4620
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4038
4621
|
.AtLocation(whence.file(), whence.line())
|
4039
4622
|
<< "seq[" << this << "]: poll step 2/12 gets "
|
4040
4623
|
<< (p != nullptr
|
@@ -4062,15 +4645,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4062
4645
|
std::move(next_promise));
|
4063
4646
|
state = State::kState2;
|
4064
4647
|
}
|
4065
|
-
|
4648
|
+
[[fallthrough]];
|
4066
4649
|
case State::kState2: {
|
4067
|
-
|
4650
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4068
4651
|
.AtLocation(whence.file(), whence.line())
|
4069
4652
|
<< "seq[" << this << "]: begin poll step 3/12";
|
4070
4653
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4071
4654
|
.current_promise();
|
4072
4655
|
PromiseResult2* p = result.value_if_ready();
|
4073
|
-
|
4656
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4074
4657
|
.AtLocation(whence.file(), whence.line())
|
4075
4658
|
<< "seq[" << this << "]: poll step 3/12 gets "
|
4076
4659
|
<< (p != nullptr
|
@@ -4097,15 +4680,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4097
4680
|
std::move(next_promise));
|
4098
4681
|
state = State::kState3;
|
4099
4682
|
}
|
4100
|
-
|
4683
|
+
[[fallthrough]];
|
4101
4684
|
case State::kState3: {
|
4102
|
-
|
4685
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4103
4686
|
.AtLocation(whence.file(), whence.line())
|
4104
4687
|
<< "seq[" << this << "]: begin poll step 4/12";
|
4105
4688
|
auto result =
|
4106
4689
|
prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
|
4107
4690
|
PromiseResult3* p = result.value_if_ready();
|
4108
|
-
|
4691
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4109
4692
|
.AtLocation(whence.file(), whence.line())
|
4110
4693
|
<< "seq[" << this << "]: poll step 4/12 gets "
|
4111
4694
|
<< (p != nullptr
|
@@ -4130,15 +4713,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4130
4713
|
std::move(next_promise));
|
4131
4714
|
state = State::kState4;
|
4132
4715
|
}
|
4133
|
-
|
4716
|
+
[[fallthrough]];
|
4134
4717
|
case State::kState4: {
|
4135
|
-
|
4718
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4136
4719
|
.AtLocation(whence.file(), whence.line())
|
4137
4720
|
<< "seq[" << this << "]: begin poll step 5/12";
|
4138
4721
|
auto result =
|
4139
4722
|
prior.prior.prior.prior.prior.prior.prior.current_promise();
|
4140
4723
|
PromiseResult4* p = result.value_if_ready();
|
4141
|
-
|
4724
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4142
4725
|
.AtLocation(whence.file(), whence.line())
|
4143
4726
|
<< "seq[" << this << "]: poll step 5/12 gets "
|
4144
4727
|
<< (p != nullptr
|
@@ -4162,14 +4745,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4162
4745
|
std::move(next_promise));
|
4163
4746
|
state = State::kState5;
|
4164
4747
|
}
|
4165
|
-
|
4748
|
+
[[fallthrough]];
|
4166
4749
|
case State::kState5: {
|
4167
|
-
|
4750
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4168
4751
|
.AtLocation(whence.file(), whence.line())
|
4169
4752
|
<< "seq[" << this << "]: begin poll step 6/12";
|
4170
4753
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
4171
4754
|
PromiseResult5* p = result.value_if_ready();
|
4172
|
-
|
4755
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4173
4756
|
.AtLocation(whence.file(), whence.line())
|
4174
4757
|
<< "seq[" << this << "]: poll step 6/12 gets "
|
4175
4758
|
<< (p != nullptr
|
@@ -4192,14 +4775,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4192
4775
|
std::move(next_promise));
|
4193
4776
|
state = State::kState6;
|
4194
4777
|
}
|
4195
|
-
|
4778
|
+
[[fallthrough]];
|
4196
4779
|
case State::kState6: {
|
4197
|
-
|
4780
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4198
4781
|
.AtLocation(whence.file(), whence.line())
|
4199
4782
|
<< "seq[" << this << "]: begin poll step 7/12";
|
4200
4783
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
4201
4784
|
PromiseResult6* p = result.value_if_ready();
|
4202
|
-
|
4785
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4203
4786
|
.AtLocation(whence.file(), whence.line())
|
4204
4787
|
<< "seq[" << this << "]: poll step 7/12 gets "
|
4205
4788
|
<< (p != nullptr
|
@@ -4222,14 +4805,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4222
4805
|
std::move(next_promise));
|
4223
4806
|
state = State::kState7;
|
4224
4807
|
}
|
4225
|
-
|
4808
|
+
[[fallthrough]];
|
4226
4809
|
case State::kState7: {
|
4227
|
-
|
4810
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4228
4811
|
.AtLocation(whence.file(), whence.line())
|
4229
4812
|
<< "seq[" << this << "]: begin poll step 8/12";
|
4230
4813
|
auto result = prior.prior.prior.prior.current_promise();
|
4231
4814
|
PromiseResult7* p = result.value_if_ready();
|
4232
|
-
|
4815
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4233
4816
|
.AtLocation(whence.file(), whence.line())
|
4234
4817
|
<< "seq[" << this << "]: poll step 8/12 gets "
|
4235
4818
|
<< (p != nullptr
|
@@ -4251,14 +4834,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4251
4834
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
4252
4835
|
state = State::kState8;
|
4253
4836
|
}
|
4254
|
-
|
4837
|
+
[[fallthrough]];
|
4255
4838
|
case State::kState8: {
|
4256
|
-
|
4839
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4257
4840
|
.AtLocation(whence.file(), whence.line())
|
4258
4841
|
<< "seq[" << this << "]: begin poll step 9/12";
|
4259
4842
|
auto result = prior.prior.prior.current_promise();
|
4260
4843
|
PromiseResult8* p = result.value_if_ready();
|
4261
|
-
|
4844
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4262
4845
|
.AtLocation(whence.file(), whence.line())
|
4263
4846
|
<< "seq[" << this << "]: poll step 9/12 gets "
|
4264
4847
|
<< (p != nullptr
|
@@ -4280,14 +4863,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4280
4863
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
4281
4864
|
state = State::kState9;
|
4282
4865
|
}
|
4283
|
-
|
4866
|
+
[[fallthrough]];
|
4284
4867
|
case State::kState9: {
|
4285
|
-
|
4868
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4286
4869
|
.AtLocation(whence.file(), whence.line())
|
4287
4870
|
<< "seq[" << this << "]: begin poll step 10/12";
|
4288
4871
|
auto result = prior.prior.current_promise();
|
4289
4872
|
PromiseResult9* p = result.value_if_ready();
|
4290
|
-
|
4873
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4291
4874
|
.AtLocation(whence.file(), whence.line())
|
4292
4875
|
<< "seq[" << this << "]: poll step 10/12 gets "
|
4293
4876
|
<< (p != nullptr
|
@@ -4309,14 +4892,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4309
4892
|
Construct(&prior.current_promise, std::move(next_promise));
|
4310
4893
|
state = State::kState10;
|
4311
4894
|
}
|
4312
|
-
|
4895
|
+
[[fallthrough]];
|
4313
4896
|
case State::kState10: {
|
4314
|
-
|
4897
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4315
4898
|
.AtLocation(whence.file(), whence.line())
|
4316
4899
|
<< "seq[" << this << "]: begin poll step 11/12";
|
4317
4900
|
auto result = prior.current_promise();
|
4318
4901
|
PromiseResult10* p = result.value_if_ready();
|
4319
|
-
|
4902
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4320
4903
|
.AtLocation(whence.file(), whence.line())
|
4321
4904
|
<< "seq[" << this << "]: poll step 11/12 gets "
|
4322
4905
|
<< (p != nullptr
|
@@ -4339,14 +4922,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4339
4922
|
Construct(¤t_promise, std::move(next_promise));
|
4340
4923
|
state = State::kState11;
|
4341
4924
|
}
|
4342
|
-
|
4925
|
+
[[fallthrough]];
|
4343
4926
|
default:
|
4344
4927
|
case State::kState11: {
|
4345
|
-
|
4928
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4346
4929
|
.AtLocation(whence.file(), whence.line())
|
4347
4930
|
<< "seq[" << this << "]: begin poll step 12/12";
|
4348
4931
|
auto result = current_promise();
|
4349
|
-
|
4932
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4350
4933
|
.AtLocation(whence.file(), whence.line())
|
4351
4934
|
<< "seq[" << this << "]: poll step 12/12 gets "
|
4352
4935
|
<< (result.ready() ? "ready" : "pending");
|
@@ -4641,45 +5224,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4641
5224
|
tail11:
|
4642
5225
|
Destruct(&prior.next_factory);
|
4643
5226
|
}
|
4644
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
4645
|
-
|
4646
|
-
DCHECK(state == State::kState0);
|
4647
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4648
|
-
.prior.current_promise,
|
4649
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4650
|
-
.prior.prior.current_promise);
|
4651
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4652
|
-
.prior.next_factory,
|
4653
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4654
|
-
.prior.prior.next_factory);
|
4655
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4656
|
-
.next_factory,
|
4657
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4658
|
-
.prior.next_factory);
|
4659
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4660
|
-
.next_factory,
|
4661
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4662
|
-
.next_factory);
|
4663
|
-
Construct(
|
4664
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
4665
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4666
|
-
.next_factory);
|
4667
|
-
Construct(
|
4668
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
4669
|
-
other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
4670
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
4671
|
-
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
4672
|
-
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
4673
|
-
other.prior.prior.prior.prior.prior.prior.next_factory);
|
4674
|
-
Construct(&prior.prior.prior.prior.prior.next_factory,
|
4675
|
-
other.prior.prior.prior.prior.prior.next_factory);
|
4676
|
-
Construct(&prior.prior.prior.prior.next_factory,
|
4677
|
-
other.prior.prior.prior.prior.next_factory);
|
4678
|
-
Construct(&prior.prior.prior.next_factory,
|
4679
|
-
other.prior.prior.prior.next_factory);
|
4680
|
-
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
4681
|
-
Construct(&prior.next_factory, other.prior.next_factory);
|
4682
|
-
}
|
5227
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
|
5228
|
+
const SeqState& other) noexcept = delete;
|
4683
5229
|
SeqState& operator=(const SeqState& other) = delete;
|
4684
5230
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
4685
5231
|
: state(other.state), whence(other.whence) {
|
@@ -4726,16 +5272,137 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4726
5272
|
}
|
4727
5273
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
4728
5274
|
delete;
|
5275
|
+
void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
|
5276
|
+
grpc_channelz_v2_Promise* promise_proto,
|
5277
|
+
upb_Arena* arena) const {
|
5278
|
+
auto* seq_promise =
|
5279
|
+
grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
|
5280
|
+
grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
|
5281
|
+
auto** steps =
|
5282
|
+
grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 13, arena);
|
5283
|
+
for (int i = 0; i < 13; i++) {
|
5284
|
+
steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
|
5285
|
+
}
|
5286
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5287
|
+
steps[0], StdStringToUpbString(TypeName<P>()));
|
5288
|
+
if (state == State::kState0) {
|
5289
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5290
|
+
.prior.prior.current_promise,
|
5291
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5292
|
+
steps[0], arena),
|
5293
|
+
arena);
|
5294
|
+
}
|
5295
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5296
|
+
steps[1], StdStringToUpbString(TypeName<F0>()));
|
5297
|
+
if (state == State::kState1) {
|
5298
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5299
|
+
.prior.current_promise,
|
5300
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5301
|
+
steps[1], arena),
|
5302
|
+
arena);
|
5303
|
+
}
|
5304
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5305
|
+
steps[2], StdStringToUpbString(TypeName<F1>()));
|
5306
|
+
if (state == State::kState2) {
|
5307
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5308
|
+
.current_promise,
|
5309
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5310
|
+
steps[2], arena),
|
5311
|
+
arena);
|
5312
|
+
}
|
5313
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5314
|
+
steps[3], StdStringToUpbString(TypeName<F2>()));
|
5315
|
+
if (state == State::kState3) {
|
5316
|
+
PromiseAsProto(
|
5317
|
+
prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
5318
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[3],
|
5319
|
+
arena),
|
5320
|
+
arena);
|
5321
|
+
}
|
5322
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5323
|
+
steps[4], StdStringToUpbString(TypeName<F3>()));
|
5324
|
+
if (state == State::kState4) {
|
5325
|
+
PromiseAsProto(
|
5326
|
+
prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
5327
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[4],
|
5328
|
+
arena),
|
5329
|
+
arena);
|
5330
|
+
}
|
5331
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5332
|
+
steps[5], StdStringToUpbString(TypeName<F4>()));
|
5333
|
+
if (state == State::kState5) {
|
5334
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
|
5335
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5336
|
+
steps[5], arena),
|
5337
|
+
arena);
|
5338
|
+
}
|
5339
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5340
|
+
steps[6], StdStringToUpbString(TypeName<F5>()));
|
5341
|
+
if (state == State::kState6) {
|
5342
|
+
PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
|
5343
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5344
|
+
steps[6], arena),
|
5345
|
+
arena);
|
5346
|
+
}
|
5347
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5348
|
+
steps[7], StdStringToUpbString(TypeName<F6>()));
|
5349
|
+
if (state == State::kState7) {
|
5350
|
+
PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
|
5351
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5352
|
+
steps[7], arena),
|
5353
|
+
arena);
|
5354
|
+
}
|
5355
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5356
|
+
steps[8], StdStringToUpbString(TypeName<F7>()));
|
5357
|
+
if (state == State::kState8) {
|
5358
|
+
PromiseAsProto(prior.prior.prior.prior.current_promise,
|
5359
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5360
|
+
steps[8], arena),
|
5361
|
+
arena);
|
5362
|
+
}
|
5363
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5364
|
+
steps[9], StdStringToUpbString(TypeName<F8>()));
|
5365
|
+
if (state == State::kState9) {
|
5366
|
+
PromiseAsProto(prior.prior.prior.current_promise,
|
5367
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5368
|
+
steps[9], arena),
|
5369
|
+
arena);
|
5370
|
+
}
|
5371
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5372
|
+
steps[10], StdStringToUpbString(TypeName<F9>()));
|
5373
|
+
if (state == State::kState10) {
|
5374
|
+
PromiseAsProto(prior.prior.current_promise,
|
5375
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5376
|
+
steps[10], arena),
|
5377
|
+
arena);
|
5378
|
+
}
|
5379
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5380
|
+
steps[11], StdStringToUpbString(TypeName<F10>()));
|
5381
|
+
if (state == State::kState11) {
|
5382
|
+
PromiseAsProto(prior.current_promise,
|
5383
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5384
|
+
steps[11], arena),
|
5385
|
+
arena);
|
5386
|
+
}
|
5387
|
+
grpc_channelz_v2_Promise_SeqStep_set_factory(
|
5388
|
+
steps[12], StdStringToUpbString(TypeName<F11>()));
|
5389
|
+
if (state == State::kState12) {
|
5390
|
+
PromiseAsProto(current_promise,
|
5391
|
+
grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
|
5392
|
+
steps[12], arena),
|
5393
|
+
arena);
|
5394
|
+
}
|
5395
|
+
}
|
4729
5396
|
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
4730
5397
|
switch (state) {
|
4731
5398
|
case State::kState0: {
|
4732
|
-
|
5399
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4733
5400
|
.AtLocation(whence.file(), whence.line())
|
4734
5401
|
<< "seq[" << this << "]: begin poll step 1/13";
|
4735
5402
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4736
5403
|
.prior.prior.prior.current_promise();
|
4737
5404
|
PromiseResult0* p = result.value_if_ready();
|
4738
|
-
|
5405
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4739
5406
|
.AtLocation(whence.file(), whence.line())
|
4740
5407
|
<< "seq[" << this << "]: poll step 1/13 gets "
|
4741
5408
|
<< (p != nullptr
|
@@ -4763,15 +5430,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4763
5430
|
std::move(next_promise));
|
4764
5431
|
state = State::kState1;
|
4765
5432
|
}
|
4766
|
-
|
5433
|
+
[[fallthrough]];
|
4767
5434
|
case State::kState1: {
|
4768
|
-
|
5435
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4769
5436
|
.AtLocation(whence.file(), whence.line())
|
4770
5437
|
<< "seq[" << this << "]: begin poll step 2/13";
|
4771
5438
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4772
5439
|
.prior.prior.current_promise();
|
4773
5440
|
PromiseResult1* p = result.value_if_ready();
|
4774
|
-
|
5441
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4775
5442
|
.AtLocation(whence.file(), whence.line())
|
4776
5443
|
<< "seq[" << this << "]: poll step 2/13 gets "
|
4777
5444
|
<< (p != nullptr
|
@@ -4799,15 +5466,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4799
5466
|
std::move(next_promise));
|
4800
5467
|
state = State::kState2;
|
4801
5468
|
}
|
4802
|
-
|
5469
|
+
[[fallthrough]];
|
4803
5470
|
case State::kState2: {
|
4804
|
-
|
5471
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4805
5472
|
.AtLocation(whence.file(), whence.line())
|
4806
5473
|
<< "seq[" << this << "]: begin poll step 3/13";
|
4807
5474
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4808
5475
|
.prior.current_promise();
|
4809
5476
|
PromiseResult2* p = result.value_if_ready();
|
4810
|
-
|
5477
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4811
5478
|
.AtLocation(whence.file(), whence.line())
|
4812
5479
|
<< "seq[" << this << "]: poll step 3/13 gets "
|
4813
5480
|
<< (p != nullptr
|
@@ -4835,15 +5502,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4835
5502
|
std::move(next_promise));
|
4836
5503
|
state = State::kState3;
|
4837
5504
|
}
|
4838
|
-
|
5505
|
+
[[fallthrough]];
|
4839
5506
|
case State::kState3: {
|
4840
|
-
|
5507
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4841
5508
|
.AtLocation(whence.file(), whence.line())
|
4842
5509
|
<< "seq[" << this << "]: begin poll step 4/13";
|
4843
5510
|
auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4844
5511
|
.current_promise();
|
4845
5512
|
PromiseResult3* p = result.value_if_ready();
|
4846
|
-
|
5513
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4847
5514
|
.AtLocation(whence.file(), whence.line())
|
4848
5515
|
<< "seq[" << this << "]: poll step 4/13 gets "
|
4849
5516
|
<< (p != nullptr
|
@@ -4870,15 +5537,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4870
5537
|
std::move(next_promise));
|
4871
5538
|
state = State::kState4;
|
4872
5539
|
}
|
4873
|
-
|
5540
|
+
[[fallthrough]];
|
4874
5541
|
case State::kState4: {
|
4875
|
-
|
5542
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4876
5543
|
.AtLocation(whence.file(), whence.line())
|
4877
5544
|
<< "seq[" << this << "]: begin poll step 5/13";
|
4878
5545
|
auto result =
|
4879
5546
|
prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
|
4880
5547
|
PromiseResult4* p = result.value_if_ready();
|
4881
|
-
|
5548
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4882
5549
|
.AtLocation(whence.file(), whence.line())
|
4883
5550
|
<< "seq[" << this << "]: poll step 5/13 gets "
|
4884
5551
|
<< (p != nullptr
|
@@ -4903,15 +5570,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4903
5570
|
std::move(next_promise));
|
4904
5571
|
state = State::kState5;
|
4905
5572
|
}
|
4906
|
-
|
5573
|
+
[[fallthrough]];
|
4907
5574
|
case State::kState5: {
|
4908
|
-
|
5575
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4909
5576
|
.AtLocation(whence.file(), whence.line())
|
4910
5577
|
<< "seq[" << this << "]: begin poll step 6/13";
|
4911
5578
|
auto result =
|
4912
5579
|
prior.prior.prior.prior.prior.prior.prior.current_promise();
|
4913
5580
|
PromiseResult5* p = result.value_if_ready();
|
4914
|
-
|
5581
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4915
5582
|
.AtLocation(whence.file(), whence.line())
|
4916
5583
|
<< "seq[" << this << "]: poll step 6/13 gets "
|
4917
5584
|
<< (p != nullptr
|
@@ -4935,14 +5602,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4935
5602
|
std::move(next_promise));
|
4936
5603
|
state = State::kState6;
|
4937
5604
|
}
|
4938
|
-
|
5605
|
+
[[fallthrough]];
|
4939
5606
|
case State::kState6: {
|
4940
|
-
|
5607
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4941
5608
|
.AtLocation(whence.file(), whence.line())
|
4942
5609
|
<< "seq[" << this << "]: begin poll step 7/13";
|
4943
5610
|
auto result = prior.prior.prior.prior.prior.prior.current_promise();
|
4944
5611
|
PromiseResult6* p = result.value_if_ready();
|
4945
|
-
|
5612
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4946
5613
|
.AtLocation(whence.file(), whence.line())
|
4947
5614
|
<< "seq[" << this << "]: poll step 7/13 gets "
|
4948
5615
|
<< (p != nullptr
|
@@ -4965,14 +5632,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4965
5632
|
std::move(next_promise));
|
4966
5633
|
state = State::kState7;
|
4967
5634
|
}
|
4968
|
-
|
5635
|
+
[[fallthrough]];
|
4969
5636
|
case State::kState7: {
|
4970
|
-
|
5637
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4971
5638
|
.AtLocation(whence.file(), whence.line())
|
4972
5639
|
<< "seq[" << this << "]: begin poll step 8/13";
|
4973
5640
|
auto result = prior.prior.prior.prior.prior.current_promise();
|
4974
5641
|
PromiseResult7* p = result.value_if_ready();
|
4975
|
-
|
5642
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
4976
5643
|
.AtLocation(whence.file(), whence.line())
|
4977
5644
|
<< "seq[" << this << "]: poll step 8/13 gets "
|
4978
5645
|
<< (p != nullptr
|
@@ -4995,14 +5662,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
4995
5662
|
std::move(next_promise));
|
4996
5663
|
state = State::kState8;
|
4997
5664
|
}
|
4998
|
-
|
5665
|
+
[[fallthrough]];
|
4999
5666
|
case State::kState8: {
|
5000
|
-
|
5667
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5001
5668
|
.AtLocation(whence.file(), whence.line())
|
5002
5669
|
<< "seq[" << this << "]: begin poll step 9/13";
|
5003
5670
|
auto result = prior.prior.prior.prior.current_promise();
|
5004
5671
|
PromiseResult8* p = result.value_if_ready();
|
5005
|
-
|
5672
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5006
5673
|
.AtLocation(whence.file(), whence.line())
|
5007
5674
|
<< "seq[" << this << "]: poll step 9/13 gets "
|
5008
5675
|
<< (p != nullptr
|
@@ -5024,14 +5691,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5024
5691
|
Construct(&prior.prior.prior.current_promise, std::move(next_promise));
|
5025
5692
|
state = State::kState9;
|
5026
5693
|
}
|
5027
|
-
|
5694
|
+
[[fallthrough]];
|
5028
5695
|
case State::kState9: {
|
5029
|
-
|
5696
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5030
5697
|
.AtLocation(whence.file(), whence.line())
|
5031
5698
|
<< "seq[" << this << "]: begin poll step 10/13";
|
5032
5699
|
auto result = prior.prior.prior.current_promise();
|
5033
5700
|
PromiseResult9* p = result.value_if_ready();
|
5034
|
-
|
5701
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5035
5702
|
.AtLocation(whence.file(), whence.line())
|
5036
5703
|
<< "seq[" << this << "]: poll step 10/13 gets "
|
5037
5704
|
<< (p != nullptr
|
@@ -5053,14 +5720,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5053
5720
|
Construct(&prior.prior.current_promise, std::move(next_promise));
|
5054
5721
|
state = State::kState10;
|
5055
5722
|
}
|
5056
|
-
|
5723
|
+
[[fallthrough]];
|
5057
5724
|
case State::kState10: {
|
5058
|
-
|
5725
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5059
5726
|
.AtLocation(whence.file(), whence.line())
|
5060
5727
|
<< "seq[" << this << "]: begin poll step 11/13";
|
5061
5728
|
auto result = prior.prior.current_promise();
|
5062
5729
|
PromiseResult10* p = result.value_if_ready();
|
5063
|
-
|
5730
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5064
5731
|
.AtLocation(whence.file(), whence.line())
|
5065
5732
|
<< "seq[" << this << "]: poll step 11/13 gets "
|
5066
5733
|
<< (p != nullptr
|
@@ -5083,14 +5750,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5083
5750
|
Construct(&prior.current_promise, std::move(next_promise));
|
5084
5751
|
state = State::kState11;
|
5085
5752
|
}
|
5086
|
-
|
5753
|
+
[[fallthrough]];
|
5087
5754
|
case State::kState11: {
|
5088
|
-
|
5755
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5089
5756
|
.AtLocation(whence.file(), whence.line())
|
5090
5757
|
<< "seq[" << this << "]: begin poll step 12/13";
|
5091
5758
|
auto result = prior.current_promise();
|
5092
5759
|
PromiseResult11* p = result.value_if_ready();
|
5093
|
-
|
5760
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5094
5761
|
.AtLocation(whence.file(), whence.line())
|
5095
5762
|
<< "seq[" << this << "]: poll step 12/13 gets "
|
5096
5763
|
<< (p != nullptr
|
@@ -5113,14 +5780,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5113
5780
|
Construct(¤t_promise, std::move(next_promise));
|
5114
5781
|
state = State::kState12;
|
5115
5782
|
}
|
5116
|
-
|
5783
|
+
[[fallthrough]];
|
5117
5784
|
default:
|
5118
5785
|
case State::kState12: {
|
5119
|
-
|
5786
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5120
5787
|
.AtLocation(whence.file(), whence.line())
|
5121
5788
|
<< "seq[" << this << "]: begin poll step 13/13";
|
5122
5789
|
auto result = current_promise();
|
5123
|
-
|
5790
|
+
GRPC_TRACE_LOG(promise_primitives, INFO)
|
5124
5791
|
.AtLocation(whence.file(), whence.line())
|
5125
5792
|
<< "seq[" << this << "]: poll step 13/13 gets "
|
5126
5793
|
<< (result.ready() ? "ready" : "pending");
|