grpc 1.66.0 → 1.67.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +19 -10
- data/include/grpc/credentials.h +1 -1
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/slice.h +0 -1
- data/include/grpc/event_engine/slice_buffer.h +0 -1
- data/include/grpc/grpc_crl_provider.h +1 -1
- data/include/grpc/impl/channel_arg_names.h +1 -1
- data/include/grpc/support/log.h +34 -32
- data/include/grpc/support/sync_generic.h +2 -4
- data/src/core/channelz/channelz.cc +0 -1
- data/src/core/channelz/channelz_registry.cc +0 -1
- data/src/core/client_channel/client_channel.cc +10 -7
- data/src/core/client_channel/client_channel.h +1 -1
- data/src/core/client_channel/client_channel_filter.cc +21 -18
- data/src/core/client_channel/client_channel_filter.h +1 -1
- data/src/core/client_channel/client_channel_internal.h +0 -2
- data/src/core/client_channel/config_selector.h +0 -1
- data/src/core/client_channel/dynamic_filters.cc +0 -2
- data/src/core/client_channel/local_subchannel_pool.cc +0 -2
- data/src/core/client_channel/retry_filter.h +0 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +175 -257
- data/src/core/client_channel/subchannel.cc +21 -27
- data/src/core/client_channel/subchannel_stream_client.cc +1 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +8 -9
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +0 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +3 -4
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +167 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +82 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +81 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +87 -0
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +7 -9
- data/src/core/ext/filters/http/server/http_server_filter.cc +2 -4
- data/src/core/ext/filters/message_size/message_size_filter.cc +6 -7
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +0 -2
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +0 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +6 -8
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +288 -265
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.h +0 -1
- data/src/core/ext/transport/chttp2/transport/frame.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +37 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +27 -6
- data/src/core/ext/transport/chttp2/transport/internal.h +2 -3
- data/src/core/ext/transport/chttp2/transport/parsing.cc +21 -32
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +6 -8
- data/src/core/ext/transport/chttp2/transport/varint.h +0 -1
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/writing.cc +22 -22
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +431 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +129 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +16 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +13 -2
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +397 -22
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +94 -20
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +2 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +86 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +47 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +108 -107
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +101 -78
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +10 -0
- data/src/core/handshaker/handshaker.cc +21 -29
- data/src/core/handshaker/security/secure_endpoint.cc +3 -3
- data/src/core/handshaker/security/security_handshaker.cc +60 -72
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +0 -1
- data/src/core/lib/backoff/backoff.cc +7 -10
- data/src/core/lib/backoff/backoff.h +4 -6
- data/src/core/lib/channel/channel_stack.cc +0 -1
- data/src/core/lib/channel/channel_stack.h +0 -1
- data/src/core/lib/channel/channel_stack_builder_impl.cc +0 -1
- data/src/core/lib/channel/connected_channel.cc +0 -1
- data/src/core/lib/channel/promise_based_filter.cc +146 -194
- data/src/core/lib/channel/promise_based_filter.h +1 -1
- data/src/core/lib/compression/compression_internal.cc +0 -1
- data/src/core/lib/config/config_vars.cc +11 -1
- data/src/core/lib/config/config_vars.h +8 -0
- data/src/core/lib/config/core_configuration.cc +0 -1
- data/src/core/lib/config/core_configuration.h +0 -1
- data/src/core/lib/debug/event_log.cc +0 -1
- data/src/core/lib/debug/trace_flags.cc +4 -18
- data/src/core/lib/debug/trace_flags.h +2 -5
- data/src/core/lib/debug/trace_impl.h +6 -0
- data/src/core/lib/event_engine/ares_resolver.cc +89 -56
- data/src/core/lib/event_engine/ares_resolver.h +0 -9
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +14 -1
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/forkable.cc +0 -1
- data/src/core/lib/event_engine/forkable.h +0 -1
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +1 -1
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +4 -4
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +9 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +4 -9
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +0 -1
- data/src/core/lib/event_engine/resolved_address.cc +0 -1
- data/src/core/lib/event_engine/slice.cc +0 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +0 -1
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +3 -5
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +121 -93
- data/src/core/lib/experiments/config.cc +12 -10
- data/src/core/lib/experiments/experiments.cc +45 -66
- data/src/core/lib/experiments/experiments.h +22 -27
- data/src/core/lib/gprpp/chunked_vector.h +0 -1
- data/src/core/lib/gprpp/down_cast.h +0 -1
- data/src/core/lib/gprpp/host_port.cc +0 -1
- data/src/core/lib/gprpp/load_file.cc +0 -1
- data/src/core/lib/gprpp/mpscq.h +0 -1
- data/src/core/lib/gprpp/single_set_ptr.h +0 -1
- data/src/core/lib/gprpp/status_helper.cc +0 -1
- data/src/core/lib/gprpp/sync.h +0 -1
- data/src/core/lib/gprpp/table.h +28 -0
- data/src/core/lib/gprpp/thd.h +0 -1
- data/src/core/lib/gprpp/time.h +0 -1
- data/src/core/lib/gprpp/time_util.cc +0 -1
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -2
- data/src/core/lib/gprpp/windows/thd.cc +0 -1
- data/src/core/lib/gprpp/work_serializer.cc +23 -34
- data/src/core/lib/iomgr/buffer_list.cc +0 -1
- data/src/core/lib/iomgr/call_combiner.h +6 -8
- data/src/core/lib/iomgr/cfstream_handle.cc +6 -8
- data/src/core/lib/iomgr/closure.h +5 -8
- data/src/core/lib/iomgr/combiner.cc +6 -8
- data/src/core/lib/iomgr/endpoint_cfstream.cc +17 -22
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +0 -1
- data/src/core/lib/iomgr/error.h +0 -1
- data/src/core/lib/iomgr/ev_apple.cc +13 -18
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +47 -85
- data/src/core/lib/iomgr/ev_poll_posix.cc +17 -24
- data/src/core/lib/iomgr/ev_posix.cc +55 -44
- data/src/core/lib/iomgr/ev_posix.h +0 -5
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +7 -9
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +3 -4
- data/src/core/lib/iomgr/exec_ctx.cc +6 -9
- data/src/core/lib/iomgr/exec_ctx.h +26 -16
- data/src/core/lib/iomgr/executor.cc +43 -33
- data/src/core/lib/iomgr/fork_windows.cc +0 -1
- data/src/core/lib/iomgr/internal_errqueue.cc +0 -1
- data/src/core/lib/iomgr/iocp_windows.cc +0 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +0 -2
- data/src/core/lib/iomgr/lockfree_event.cc +7 -11
- data/src/core/lib/iomgr/polling_entity.cc +10 -3
- data/src/core/lib/iomgr/pollset_windows.cc +0 -2
- data/src/core/lib/iomgr/resolve_address.cc +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +0 -1
- data/src/core/lib/iomgr/resolve_address_windows.cc +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_mutator.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_linux.cc +0 -2
- data/src/core/lib/iomgr/socket_utils_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_windows.cc +0 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -12
- data/src/core/lib/iomgr/tcp_client_posix.cc +8 -12
- data/src/core/lib/iomgr/tcp_client_windows.cc +0 -1
- data/src/core/lib/iomgr/tcp_posix.cc +32 -68
- data/src/core/lib/iomgr/tcp_server_posix.cc +7 -11
- data/src/core/lib/iomgr/tcp_windows.cc +4 -12
- data/src/core/lib/iomgr/timer_generic.cc +46 -65
- data/src/core/lib/iomgr/timer_manager.cc +4 -5
- data/src/core/lib/iomgr/unix_sockets_posix.cc +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -2
- data/src/core/lib/iomgr/vsock.cc +0 -1
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +0 -2
- data/src/core/lib/promise/activity.h +0 -1
- data/src/core/lib/promise/context.h +0 -1
- data/src/core/lib/promise/detail/join_state.h +44 -44
- data/src/core/lib/promise/detail/seq_state.h +1101 -1356
- data/src/core/lib/promise/for_each.h +8 -15
- data/src/core/lib/promise/interceptor_list.h +17 -27
- data/src/core/lib/promise/latch.h +16 -24
- data/src/core/lib/promise/map.h +1 -1
- data/src/core/lib/promise/party.cc +238 -114
- data/src/core/lib/promise/party.h +105 -308
- data/src/core/lib/promise/pipe.h +3 -4
- data/src/core/lib/promise/poll.h +0 -1
- data/src/core/lib/promise/status_flag.h +0 -1
- data/src/core/lib/resource_quota/connection_quota.cc +0 -1
- data/src/core/lib/resource_quota/memory_quota.cc +11 -19
- data/src/core/lib/resource_quota/memory_quota.h +2 -4
- data/src/core/lib/resource_quota/periodic_update.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.cc +0 -1
- data/src/core/lib/security/authorization/audit_logging.cc +0 -1
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +0 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +14 -19
- data/src/core/lib/security/authorization/stdout_logger.cc +0 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -1
- data/src/core/lib/security/credentials/call_creds_util.cc +0 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -0
- data/src/core/lib/security/credentials/credentials.h +1 -2
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +322 -324
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +53 -42
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +391 -353
- data/src/core/lib/security/credentials/external/external_account_credentials.h +121 -51
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +83 -44
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +27 -7
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +91 -116
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +14 -17
- data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +196 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -41
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +163 -259
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +34 -56
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +12 -16
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -1
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +176 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -1
- data/src/core/lib/security/transport/server_auth_filter.cc +4 -6
- data/src/core/lib/slice/percent_encoding.cc +0 -1
- data/src/core/lib/slice/slice.cc +0 -1
- data/src/core/lib/slice/slice.h +0 -1
- data/src/core/lib/slice/slice_buffer.cc +0 -1
- data/src/core/lib/slice/slice_internal.h +0 -1
- data/src/core/lib/slice/slice_refcount.h +6 -8
- data/src/core/lib/surface/byte_buffer_reader.cc +0 -1
- data/src/core/lib/surface/call.cc +3 -5
- data/src/core/lib/surface/call_utils.h +0 -1
- data/src/core/lib/surface/channel.cc +0 -1
- data/src/core/lib/surface/channel_create.cc +0 -1
- data/src/core/lib/surface/channel_init.h +0 -1
- data/src/core/lib/surface/client_call.cc +0 -1
- data/src/core/lib/surface/client_call.h +0 -1
- data/src/core/lib/surface/completion_queue.cc +28 -4
- data/src/core/lib/surface/completion_queue_factory.cc +0 -1
- data/src/core/lib/surface/filter_stack_call.cc +9 -9
- data/src/core/lib/surface/filter_stack_call.h +0 -1
- data/src/core/lib/surface/lame_client.cc +0 -1
- data/src/core/lib/surface/server_call.cc +0 -1
- data/src/core/lib/surface/server_call.h +0 -1
- data/src/core/lib/surface/validate_metadata.h +0 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +9 -12
- data/src/core/lib/transport/bdp_estimator.h +6 -8
- data/src/core/lib/transport/call_arena_allocator.cc +2 -16
- data/src/core/lib/transport/call_arena_allocator.h +20 -5
- data/src/core/lib/transport/call_filters.cc +6 -9
- data/src/core/lib/transport/call_spine.h +24 -13
- data/src/core/lib/transport/connectivity_state.cc +34 -42
- data/src/core/lib/transport/metadata_batch.h +41 -1
- data/src/core/lib/transport/timeout_encoding.cc +0 -1
- data/src/core/lib/transport/transport.h +6 -8
- data/src/core/lib/transport/transport_op_string.cc +0 -1
- data/src/core/lib/uri/uri_parser.cc +0 -1
- data/src/core/load_balancing/grpclb/grpclb.cc +55 -71
- data/src/core/load_balancing/health_check_client.cc +31 -42
- data/src/core/load_balancing/oob_backend_metric.cc +2 -4
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +99 -129
- data/src/core/load_balancing/pick_first/pick_first.cc +168 -228
- data/src/core/load_balancing/priority/priority.cc +77 -106
- data/src/core/load_balancing/ring_hash/ring_hash.cc +32 -46
- data/src/core/load_balancing/rls/rls.cc +142 -187
- data/src/core/load_balancing/round_robin/round_robin.cc +36 -55
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +0 -1
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +85 -110
- data/src/core/load_balancing/weighted_target/weighted_target.cc +52 -75
- data/src/core/load_balancing/xds/cds.cc +26 -43
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +57 -54
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +36 -50
- data/src/core/load_balancing/xds/xds_override_host.cc +95 -131
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +15 -23
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -0
- data/src/core/resolver/binder/binder_resolver.cc +0 -2
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +62 -44
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +0 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +110 -89
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +132 -96
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +0 -7
- data/src/core/resolver/dns/dns_resolver_plugin.cc +0 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +40 -39
- data/src/core/resolver/dns/native/dns_resolver.cc +8 -14
- data/src/core/resolver/endpoint_addresses.cc +0 -1
- data/src/core/resolver/fake/fake_resolver.cc +0 -1
- data/src/core/resolver/polling_resolver.cc +6 -15
- data/src/core/resolver/polling_resolver.h +1 -1
- data/src/core/resolver/xds/xds_config.cc +96 -0
- data/src/core/resolver/xds/xds_config.h +109 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +59 -154
- data/src/core/resolver/xds/xds_dependency_manager.h +1 -69
- data/src/core/resolver/xds/xds_resolver.cc +51 -55
- data/src/core/server/server.cc +2 -2
- data/src/core/server/server_config_selector_filter.cc +0 -1
- data/src/core/server/xds_server_config_fetcher.cc +4 -6
- data/src/core/service_config/service_config_call_data.h +2 -3
- data/src/core/service_config/service_config_channel_arg_filter.cc +0 -1
- data/src/core/service_config/service_config_impl.h +0 -1
- data/src/core/telemetry/call_tracer.cc +0 -1
- data/src/core/telemetry/metrics.h +0 -1
- data/src/core/telemetry/stats_data.cc +67 -0
- data/src/core/telemetry/stats_data.h +48 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +0 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +0 -1
- data/src/core/tsi/fake_transport_security.cc +6 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -1
- data/src/core/util/alloc.cc +0 -1
- data/src/core/util/gcp_metadata_query.cc +0 -1
- data/src/core/util/http_client/httpcli.cc +12 -15
- data/src/core/util/http_client/httpcli.h +16 -11
- data/src/core/util/http_client/parser.cc +3 -4
- data/src/core/util/json/json_reader.cc +0 -1
- data/src/core/util/latent_see.cc +29 -9
- data/src/core/util/latent_see.h +122 -27
- data/src/core/util/log.cc +36 -55
- data/src/core/util/lru_cache.h +104 -0
- data/src/core/util/msys/tmpfile.cc +0 -1
- data/src/core/util/posix/sync.cc +0 -1
- data/src/core/util/posix/time.cc +0 -1
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/util/spinlock.h +1 -2
- data/src/core/util/string.cc +7 -7
- data/src/core/util/sync.cc +0 -1
- data/src/core/util/sync_abseil.cc +0 -1
- data/src/core/util/time.cc +0 -1
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/useful.h +0 -24
- data/src/core/util/windows/cpu.cc +0 -1
- data/src/core/util/windows/sync.cc +0 -1
- data/src/core/util/windows/time.cc +0 -1
- data/src/core/util/windows/tmpfile.cc +0 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +0 -32
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +0 -5
- data/src/core/xds/grpc/xds_certificate_provider.cc +0 -1
- data/src/core/xds/grpc/xds_client_grpc.cc +11 -16
- data/src/core/xds/grpc/xds_cluster.cc +2 -8
- data/src/core/xds/grpc/xds_cluster.h +4 -4
- data/src/core/xds/grpc/xds_cluster_parser.cc +58 -96
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +0 -1
- data/src/core/xds/grpc/xds_common_types_parser.cc +4 -4
- data/src/core/xds/grpc/xds_common_types_parser.h +17 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +14 -14
- data/src/core/xds/grpc/xds_http_fault_filter.cc +15 -6
- data/src/core/xds/grpc/xds_http_fault_filter.h +5 -1
- data/src/core/xds/grpc/xds_http_filter.h +11 -1
- data/src/core/xds/grpc/xds_http_filter_registry.cc +7 -1
- data/src/core/xds/grpc/xds_http_filter_registry.h +8 -1
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +142 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +14 -6
- data/src/core/xds/grpc/xds_http_rbac_filter.h +5 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +9 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +5 -1
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +14 -16
- data/src/core/xds/grpc/xds_listener_parser.cc +10 -11
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +127 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +143 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +36 -0
- data/src/core/xds/grpc/xds_route_config_parser.cc +12 -17
- data/src/core/xds/grpc/xds_routing.cc +57 -22
- data/src/core/xds/grpc/xds_routing.h +10 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +0 -1
- data/src/core/xds/xds_client/xds_client.cc +124 -165
- data/src/core/xds/xds_client/xds_client_stats.cc +20 -27
- data/src/ruby/ext/grpc/rb_call.c +1 -1
- data/src/ruby/ext/grpc/rb_call_credentials.c +34 -27
- data/src/ruby/ext/grpc/rb_channel.c +22 -16
- data/src/ruby/ext/grpc/rb_event_thread.c +3 -2
- data/src/ruby/ext/grpc/rb_grpc.c +9 -8
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
- data/src/ruby/ext/grpc/rb_server.c +10 -8
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +72 -23
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +79 -78
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +69 -14
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +13 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +35 -5
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +5 -6
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +6 -1
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -1
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +289 -55
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +2 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +69 -38
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +14 -3
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +107 -14
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +97 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +31 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +3 -23
- metadata +113 -87
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/util/android/log.cc +0 -48
- data/src/core/util/linux/log.cc +0 -69
- data/src/core/util/posix/log.cc +0 -69
- data/src/core/util/windows/log.cc +0 -73
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -22,11 +22,6 @@
|
|
22
22
|
|
23
23
|
#if defined(GRPC_CFSTREAM)
|
24
24
|
namespace {
|
25
|
-
const char* const description_call_status_override_on_cancellation =
|
26
|
-
"Avoid overriding call status of successfully finished calls if it races "
|
27
|
-
"with cancellation.";
|
28
|
-
const char* const additional_constraints_call_status_override_on_cancellation =
|
29
|
-
"{}";
|
30
25
|
const char* const description_call_tracer_in_transport =
|
31
26
|
"Transport directly passes byte counts to CallTracer.";
|
32
27
|
const char* const additional_constraints_call_tracer_in_transport = "{}";
|
@@ -35,6 +30,11 @@ const char* const description_canary_client_privacy =
|
|
35
30
|
const char* const additional_constraints_canary_client_privacy = "{}";
|
36
31
|
const char* const description_client_privacy = "If set, client privacy";
|
37
32
|
const char* const additional_constraints_client_privacy = "{}";
|
33
|
+
const char* const description_event_engine_application_callbacks =
|
34
|
+
"Run application callbacks in EventEngine threads, instead of on the "
|
35
|
+
"thread-local ApplicationCallbackExecCtx";
|
36
|
+
const char* const additional_constraints_event_engine_application_callbacks =
|
37
|
+
"{}";
|
38
38
|
const char* const description_event_engine_client =
|
39
39
|
"Use EventEngine clients instead of iomgr's grpc_tcp_client";
|
40
40
|
const char* const additional_constraints_event_engine_client = "{}";
|
@@ -58,21 +58,12 @@ const char* const additional_constraints_monitoring_experiment = "{}";
|
|
58
58
|
const char* const description_multiping =
|
59
59
|
"Allow more than one ping to be in flight at a time by default.";
|
60
60
|
const char* const additional_constraints_multiping = "{}";
|
61
|
-
const char* const description_peer_state_based_framing =
|
62
|
-
"If set, the max sizes of frames sent to lower layers is controlled based "
|
63
|
-
"on the peer's memory pressure which is reflected in its max http2 frame "
|
64
|
-
"size.";
|
65
|
-
const char* const additional_constraints_peer_state_based_framing = "{}";
|
66
61
|
const char* const description_pick_first_new =
|
67
62
|
"New pick_first impl with memory reduction.";
|
68
63
|
const char* const additional_constraints_pick_first_new = "{}";
|
69
64
|
const char* const description_promise_based_inproc_transport =
|
70
65
|
"Use promises for the in-process transport.";
|
71
66
|
const char* const additional_constraints_promise_based_inproc_transport = "{}";
|
72
|
-
const char* const description_rstpit =
|
73
|
-
"On RST_STREAM on a server, reduce MAX_CONCURRENT_STREAMS for a short "
|
74
|
-
"duration";
|
75
|
-
const char* const additional_constraints_rstpit = "{}";
|
76
67
|
const char* const description_schedule_cancellation_over_write =
|
77
68
|
"Allow cancellation op to be scheduled over a write";
|
78
69
|
const char* const additional_constraints_schedule_cancellation_over_write =
|
@@ -88,6 +79,10 @@ const char* const additional_constraints_tcp_frame_size_tuning = "{}";
|
|
88
79
|
const char* const description_tcp_rcv_lowat =
|
89
80
|
"Use SO_RCVLOWAT to avoid wakeups on the read path.";
|
90
81
|
const char* const additional_constraints_tcp_rcv_lowat = "{}";
|
82
|
+
const char* const description_time_caching_in_party =
|
83
|
+
"Disable time caching in exec_ctx, and enable it only in a single party "
|
84
|
+
"execution.";
|
85
|
+
const char* const additional_constraints_time_caching_in_party = "{}";
|
91
86
|
const char* const description_trace_record_callops =
|
92
87
|
"Enables tracing of call batch initiation and completion.";
|
93
88
|
const char* const additional_constraints_trace_record_callops = "{}";
|
@@ -109,16 +104,16 @@ const char* const additional_constraints_work_serializer_dispatch = "{}";
|
|
109
104
|
namespace grpc_core {
|
110
105
|
|
111
106
|
const ExperimentMetadata g_experiment_metadata[] = {
|
112
|
-
{"call_status_override_on_cancellation",
|
113
|
-
description_call_status_override_on_cancellation,
|
114
|
-
additional_constraints_call_status_override_on_cancellation, nullptr, 0,
|
115
|
-
true, true},
|
116
107
|
{"call_tracer_in_transport", description_call_tracer_in_transport,
|
117
108
|
additional_constraints_call_tracer_in_transport, nullptr, 0, true, true},
|
118
109
|
{"canary_client_privacy", description_canary_client_privacy,
|
119
110
|
additional_constraints_canary_client_privacy, nullptr, 0, false, false},
|
120
111
|
{"client_privacy", description_client_privacy,
|
121
112
|
additional_constraints_client_privacy, nullptr, 0, false, false},
|
113
|
+
{"event_engine_application_callbacks",
|
114
|
+
description_event_engine_application_callbacks,
|
115
|
+
additional_constraints_event_engine_application_callbacks, nullptr, 0,
|
116
|
+
true, true},
|
122
117
|
{"event_engine_client", description_event_engine_client,
|
123
118
|
additional_constraints_event_engine_client, nullptr, 0, false, true},
|
124
119
|
{"event_engine_dns", description_event_engine_dns,
|
@@ -134,16 +129,12 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
134
129
|
additional_constraints_monitoring_experiment, nullptr, 0, true, true},
|
135
130
|
{"multiping", description_multiping, additional_constraints_multiping,
|
136
131
|
nullptr, 0, false, true},
|
137
|
-
{"peer_state_based_framing", description_peer_state_based_framing,
|
138
|
-
additional_constraints_peer_state_based_framing, nullptr, 0, false, true},
|
139
132
|
{"pick_first_new", description_pick_first_new,
|
140
133
|
additional_constraints_pick_first_new, nullptr, 0, true, true},
|
141
134
|
{"promise_based_inproc_transport",
|
142
135
|
description_promise_based_inproc_transport,
|
143
136
|
additional_constraints_promise_based_inproc_transport, nullptr, 0, false,
|
144
137
|
false},
|
145
|
-
{"rstpit", description_rstpit, additional_constraints_rstpit, nullptr, 0,
|
146
|
-
false, true},
|
147
138
|
{"schedule_cancellation_over_write",
|
148
139
|
description_schedule_cancellation_over_write,
|
149
140
|
additional_constraints_schedule_cancellation_over_write, nullptr, 0, false,
|
@@ -154,6 +145,8 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
154
145
|
additional_constraints_tcp_frame_size_tuning, nullptr, 0, false, true},
|
155
146
|
{"tcp_rcv_lowat", description_tcp_rcv_lowat,
|
156
147
|
additional_constraints_tcp_rcv_lowat, nullptr, 0, false, true},
|
148
|
+
{"time_caching_in_party", description_time_caching_in_party,
|
149
|
+
additional_constraints_time_caching_in_party, nullptr, 0, true, true},
|
157
150
|
{"trace_record_callops", description_trace_record_callops,
|
158
151
|
additional_constraints_trace_record_callops, nullptr, 0, true, true},
|
159
152
|
{"unconstrained_max_quota_buffer_size",
|
@@ -172,11 +165,6 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
172
165
|
|
173
166
|
#elif defined(GPR_WINDOWS)
|
174
167
|
namespace {
|
175
|
-
const char* const description_call_status_override_on_cancellation =
|
176
|
-
"Avoid overriding call status of successfully finished calls if it races "
|
177
|
-
"with cancellation.";
|
178
|
-
const char* const additional_constraints_call_status_override_on_cancellation =
|
179
|
-
"{}";
|
180
168
|
const char* const description_call_tracer_in_transport =
|
181
169
|
"Transport directly passes byte counts to CallTracer.";
|
182
170
|
const char* const additional_constraints_call_tracer_in_transport = "{}";
|
@@ -185,6 +173,11 @@ const char* const description_canary_client_privacy =
|
|
185
173
|
const char* const additional_constraints_canary_client_privacy = "{}";
|
186
174
|
const char* const description_client_privacy = "If set, client privacy";
|
187
175
|
const char* const additional_constraints_client_privacy = "{}";
|
176
|
+
const char* const description_event_engine_application_callbacks =
|
177
|
+
"Run application callbacks in EventEngine threads, instead of on the "
|
178
|
+
"thread-local ApplicationCallbackExecCtx";
|
179
|
+
const char* const additional_constraints_event_engine_application_callbacks =
|
180
|
+
"{}";
|
188
181
|
const char* const description_event_engine_client =
|
189
182
|
"Use EventEngine clients instead of iomgr's grpc_tcp_client";
|
190
183
|
const char* const additional_constraints_event_engine_client = "{}";
|
@@ -208,21 +201,12 @@ const char* const additional_constraints_monitoring_experiment = "{}";
|
|
208
201
|
const char* const description_multiping =
|
209
202
|
"Allow more than one ping to be in flight at a time by default.";
|
210
203
|
const char* const additional_constraints_multiping = "{}";
|
211
|
-
const char* const description_peer_state_based_framing =
|
212
|
-
"If set, the max sizes of frames sent to lower layers is controlled based "
|
213
|
-
"on the peer's memory pressure which is reflected in its max http2 frame "
|
214
|
-
"size.";
|
215
|
-
const char* const additional_constraints_peer_state_based_framing = "{}";
|
216
204
|
const char* const description_pick_first_new =
|
217
205
|
"New pick_first impl with memory reduction.";
|
218
206
|
const char* const additional_constraints_pick_first_new = "{}";
|
219
207
|
const char* const description_promise_based_inproc_transport =
|
220
208
|
"Use promises for the in-process transport.";
|
221
209
|
const char* const additional_constraints_promise_based_inproc_transport = "{}";
|
222
|
-
const char* const description_rstpit =
|
223
|
-
"On RST_STREAM on a server, reduce MAX_CONCURRENT_STREAMS for a short "
|
224
|
-
"duration";
|
225
|
-
const char* const additional_constraints_rstpit = "{}";
|
226
210
|
const char* const description_schedule_cancellation_over_write =
|
227
211
|
"Allow cancellation op to be scheduled over a write";
|
228
212
|
const char* const additional_constraints_schedule_cancellation_over_write =
|
@@ -238,6 +222,10 @@ const char* const additional_constraints_tcp_frame_size_tuning = "{}";
|
|
238
222
|
const char* const description_tcp_rcv_lowat =
|
239
223
|
"Use SO_RCVLOWAT to avoid wakeups on the read path.";
|
240
224
|
const char* const additional_constraints_tcp_rcv_lowat = "{}";
|
225
|
+
const char* const description_time_caching_in_party =
|
226
|
+
"Disable time caching in exec_ctx, and enable it only in a single party "
|
227
|
+
"execution.";
|
228
|
+
const char* const additional_constraints_time_caching_in_party = "{}";
|
241
229
|
const char* const description_trace_record_callops =
|
242
230
|
"Enables tracing of call batch initiation and completion.";
|
243
231
|
const char* const additional_constraints_trace_record_callops = "{}";
|
@@ -259,16 +247,16 @@ const char* const additional_constraints_work_serializer_dispatch = "{}";
|
|
259
247
|
namespace grpc_core {
|
260
248
|
|
261
249
|
const ExperimentMetadata g_experiment_metadata[] = {
|
262
|
-
{"call_status_override_on_cancellation",
|
263
|
-
description_call_status_override_on_cancellation,
|
264
|
-
additional_constraints_call_status_override_on_cancellation, nullptr, 0,
|
265
|
-
true, true},
|
266
250
|
{"call_tracer_in_transport", description_call_tracer_in_transport,
|
267
251
|
additional_constraints_call_tracer_in_transport, nullptr, 0, true, true},
|
268
252
|
{"canary_client_privacy", description_canary_client_privacy,
|
269
253
|
additional_constraints_canary_client_privacy, nullptr, 0, false, false},
|
270
254
|
{"client_privacy", description_client_privacy,
|
271
255
|
additional_constraints_client_privacy, nullptr, 0, false, false},
|
256
|
+
{"event_engine_application_callbacks",
|
257
|
+
description_event_engine_application_callbacks,
|
258
|
+
additional_constraints_event_engine_application_callbacks, nullptr, 0,
|
259
|
+
true, true},
|
272
260
|
{"event_engine_client", description_event_engine_client,
|
273
261
|
additional_constraints_event_engine_client, nullptr, 0, true, true},
|
274
262
|
{"event_engine_dns", description_event_engine_dns,
|
@@ -284,16 +272,12 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
284
272
|
additional_constraints_monitoring_experiment, nullptr, 0, true, true},
|
285
273
|
{"multiping", description_multiping, additional_constraints_multiping,
|
286
274
|
nullptr, 0, false, true},
|
287
|
-
{"peer_state_based_framing", description_peer_state_based_framing,
|
288
|
-
additional_constraints_peer_state_based_framing, nullptr, 0, false, true},
|
289
275
|
{"pick_first_new", description_pick_first_new,
|
290
276
|
additional_constraints_pick_first_new, nullptr, 0, true, true},
|
291
277
|
{"promise_based_inproc_transport",
|
292
278
|
description_promise_based_inproc_transport,
|
293
279
|
additional_constraints_promise_based_inproc_transport, nullptr, 0, false,
|
294
280
|
false},
|
295
|
-
{"rstpit", description_rstpit, additional_constraints_rstpit, nullptr, 0,
|
296
|
-
false, true},
|
297
281
|
{"schedule_cancellation_over_write",
|
298
282
|
description_schedule_cancellation_over_write,
|
299
283
|
additional_constraints_schedule_cancellation_over_write, nullptr, 0, false,
|
@@ -304,6 +288,8 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
304
288
|
additional_constraints_tcp_frame_size_tuning, nullptr, 0, false, true},
|
305
289
|
{"tcp_rcv_lowat", description_tcp_rcv_lowat,
|
306
290
|
additional_constraints_tcp_rcv_lowat, nullptr, 0, false, true},
|
291
|
+
{"time_caching_in_party", description_time_caching_in_party,
|
292
|
+
additional_constraints_time_caching_in_party, nullptr, 0, true, true},
|
307
293
|
{"trace_record_callops", description_trace_record_callops,
|
308
294
|
additional_constraints_trace_record_callops, nullptr, 0, true, true},
|
309
295
|
{"unconstrained_max_quota_buffer_size",
|
@@ -322,11 +308,6 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
322
308
|
|
323
309
|
#else
|
324
310
|
namespace {
|
325
|
-
const char* const description_call_status_override_on_cancellation =
|
326
|
-
"Avoid overriding call status of successfully finished calls if it races "
|
327
|
-
"with cancellation.";
|
328
|
-
const char* const additional_constraints_call_status_override_on_cancellation =
|
329
|
-
"{}";
|
330
311
|
const char* const description_call_tracer_in_transport =
|
331
312
|
"Transport directly passes byte counts to CallTracer.";
|
332
313
|
const char* const additional_constraints_call_tracer_in_transport = "{}";
|
@@ -335,6 +316,11 @@ const char* const description_canary_client_privacy =
|
|
335
316
|
const char* const additional_constraints_canary_client_privacy = "{}";
|
336
317
|
const char* const description_client_privacy = "If set, client privacy";
|
337
318
|
const char* const additional_constraints_client_privacy = "{}";
|
319
|
+
const char* const description_event_engine_application_callbacks =
|
320
|
+
"Run application callbacks in EventEngine threads, instead of on the "
|
321
|
+
"thread-local ApplicationCallbackExecCtx";
|
322
|
+
const char* const additional_constraints_event_engine_application_callbacks =
|
323
|
+
"{}";
|
338
324
|
const char* const description_event_engine_client =
|
339
325
|
"Use EventEngine clients instead of iomgr's grpc_tcp_client";
|
340
326
|
const char* const additional_constraints_event_engine_client = "{}";
|
@@ -358,21 +344,12 @@ const char* const additional_constraints_monitoring_experiment = "{}";
|
|
358
344
|
const char* const description_multiping =
|
359
345
|
"Allow more than one ping to be in flight at a time by default.";
|
360
346
|
const char* const additional_constraints_multiping = "{}";
|
361
|
-
const char* const description_peer_state_based_framing =
|
362
|
-
"If set, the max sizes of frames sent to lower layers is controlled based "
|
363
|
-
"on the peer's memory pressure which is reflected in its max http2 frame "
|
364
|
-
"size.";
|
365
|
-
const char* const additional_constraints_peer_state_based_framing = "{}";
|
366
347
|
const char* const description_pick_first_new =
|
367
348
|
"New pick_first impl with memory reduction.";
|
368
349
|
const char* const additional_constraints_pick_first_new = "{}";
|
369
350
|
const char* const description_promise_based_inproc_transport =
|
370
351
|
"Use promises for the in-process transport.";
|
371
352
|
const char* const additional_constraints_promise_based_inproc_transport = "{}";
|
372
|
-
const char* const description_rstpit =
|
373
|
-
"On RST_STREAM on a server, reduce MAX_CONCURRENT_STREAMS for a short "
|
374
|
-
"duration";
|
375
|
-
const char* const additional_constraints_rstpit = "{}";
|
376
353
|
const char* const description_schedule_cancellation_over_write =
|
377
354
|
"Allow cancellation op to be scheduled over a write";
|
378
355
|
const char* const additional_constraints_schedule_cancellation_over_write =
|
@@ -388,6 +365,10 @@ const char* const additional_constraints_tcp_frame_size_tuning = "{}";
|
|
388
365
|
const char* const description_tcp_rcv_lowat =
|
389
366
|
"Use SO_RCVLOWAT to avoid wakeups on the read path.";
|
390
367
|
const char* const additional_constraints_tcp_rcv_lowat = "{}";
|
368
|
+
const char* const description_time_caching_in_party =
|
369
|
+
"Disable time caching in exec_ctx, and enable it only in a single party "
|
370
|
+
"execution.";
|
371
|
+
const char* const additional_constraints_time_caching_in_party = "{}";
|
391
372
|
const char* const description_trace_record_callops =
|
392
373
|
"Enables tracing of call batch initiation and completion.";
|
393
374
|
const char* const additional_constraints_trace_record_callops = "{}";
|
@@ -409,16 +390,16 @@ const char* const additional_constraints_work_serializer_dispatch = "{}";
|
|
409
390
|
namespace grpc_core {
|
410
391
|
|
411
392
|
const ExperimentMetadata g_experiment_metadata[] = {
|
412
|
-
{"call_status_override_on_cancellation",
|
413
|
-
description_call_status_override_on_cancellation,
|
414
|
-
additional_constraints_call_status_override_on_cancellation, nullptr, 0,
|
415
|
-
true, true},
|
416
393
|
{"call_tracer_in_transport", description_call_tracer_in_transport,
|
417
394
|
additional_constraints_call_tracer_in_transport, nullptr, 0, true, true},
|
418
395
|
{"canary_client_privacy", description_canary_client_privacy,
|
419
396
|
additional_constraints_canary_client_privacy, nullptr, 0, false, false},
|
420
397
|
{"client_privacy", description_client_privacy,
|
421
398
|
additional_constraints_client_privacy, nullptr, 0, false, false},
|
399
|
+
{"event_engine_application_callbacks",
|
400
|
+
description_event_engine_application_callbacks,
|
401
|
+
additional_constraints_event_engine_application_callbacks, nullptr, 0,
|
402
|
+
true, true},
|
422
403
|
{"event_engine_client", description_event_engine_client,
|
423
404
|
additional_constraints_event_engine_client, nullptr, 0, false, true},
|
424
405
|
{"event_engine_dns", description_event_engine_dns,
|
@@ -434,16 +415,12 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
434
415
|
additional_constraints_monitoring_experiment, nullptr, 0, true, true},
|
435
416
|
{"multiping", description_multiping, additional_constraints_multiping,
|
436
417
|
nullptr, 0, false, true},
|
437
|
-
{"peer_state_based_framing", description_peer_state_based_framing,
|
438
|
-
additional_constraints_peer_state_based_framing, nullptr, 0, false, true},
|
439
418
|
{"pick_first_new", description_pick_first_new,
|
440
419
|
additional_constraints_pick_first_new, nullptr, 0, true, true},
|
441
420
|
{"promise_based_inproc_transport",
|
442
421
|
description_promise_based_inproc_transport,
|
443
422
|
additional_constraints_promise_based_inproc_transport, nullptr, 0, false,
|
444
423
|
false},
|
445
|
-
{"rstpit", description_rstpit, additional_constraints_rstpit, nullptr, 0,
|
446
|
-
false, true},
|
447
424
|
{"schedule_cancellation_over_write",
|
448
425
|
description_schedule_cancellation_over_write,
|
449
426
|
additional_constraints_schedule_cancellation_over_write, nullptr, 0, false,
|
@@ -454,6 +431,8 @@ const ExperimentMetadata g_experiment_metadata[] = {
|
|
454
431
|
additional_constraints_tcp_frame_size_tuning, nullptr, 0, false, true},
|
455
432
|
{"tcp_rcv_lowat", description_tcp_rcv_lowat,
|
456
433
|
additional_constraints_tcp_rcv_lowat, nullptr, 0, false, true},
|
434
|
+
{"time_caching_in_party", description_time_caching_in_party,
|
435
|
+
additional_constraints_time_caching_in_party, nullptr, 0, true, true},
|
457
436
|
{"trace_record_callops", description_trace_record_callops,
|
458
437
|
additional_constraints_trace_record_callops, nullptr, 0, true, true},
|
459
438
|
{"unconstrained_max_quota_buffer_size",
|
@@ -57,12 +57,12 @@ namespace grpc_core {
|
|
57
57
|
#ifdef GRPC_EXPERIMENTS_ARE_FINAL
|
58
58
|
|
59
59
|
#if defined(GRPC_CFSTREAM)
|
60
|
-
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_STATUS_OVERRIDE_ON_CANCELLATION
|
61
|
-
inline bool IsCallStatusOverrideOnCancellationEnabled() { return true; }
|
62
60
|
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_TRACER_IN_TRANSPORT
|
63
61
|
inline bool IsCallTracerInTransportEnabled() { return true; }
|
64
62
|
inline bool IsCanaryClientPrivacyEnabled() { return false; }
|
65
63
|
inline bool IsClientPrivacyEnabled() { return false; }
|
64
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_APPLICATION_CALLBACKS
|
65
|
+
inline bool IsEventEngineApplicationCallbacksEnabled() { return true; }
|
66
66
|
inline bool IsEventEngineClientEnabled() { return false; }
|
67
67
|
inline bool IsEventEngineDnsEnabled() { return false; }
|
68
68
|
inline bool IsEventEngineListenerEnabled() { return false; }
|
@@ -71,15 +71,15 @@ inline bool IsMaxPingsWoDataThrottleEnabled() { return false; }
|
|
71
71
|
#define GRPC_EXPERIMENT_IS_INCLUDED_MONITORING_EXPERIMENT
|
72
72
|
inline bool IsMonitoringExperimentEnabled() { return true; }
|
73
73
|
inline bool IsMultipingEnabled() { return false; }
|
74
|
-
inline bool IsPeerStateBasedFramingEnabled() { return false; }
|
75
74
|
#define GRPC_EXPERIMENT_IS_INCLUDED_PICK_FIRST_NEW
|
76
75
|
inline bool IsPickFirstNewEnabled() { return true; }
|
77
76
|
inline bool IsPromiseBasedInprocTransportEnabled() { return false; }
|
78
|
-
inline bool IsRstpitEnabled() { return false; }
|
79
77
|
inline bool IsScheduleCancellationOverWriteEnabled() { return false; }
|
80
78
|
inline bool IsServerPrivacyEnabled() { return false; }
|
81
79
|
inline bool IsTcpFrameSizeTuningEnabled() { return false; }
|
82
80
|
inline bool IsTcpRcvLowatEnabled() { return false; }
|
81
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_TIME_CACHING_IN_PARTY
|
82
|
+
inline bool IsTimeCachingInPartyEnabled() { return true; }
|
83
83
|
#define GRPC_EXPERIMENT_IS_INCLUDED_TRACE_RECORD_CALLOPS
|
84
84
|
inline bool IsTraceRecordCallopsEnabled() { return true; }
|
85
85
|
inline bool IsUnconstrainedMaxQuotaBufferSizeEnabled() { return false; }
|
@@ -88,12 +88,12 @@ inline bool IsWorkSerializerClearsTimeCacheEnabled() { return true; }
|
|
88
88
|
inline bool IsWorkSerializerDispatchEnabled() { return false; }
|
89
89
|
|
90
90
|
#elif defined(GPR_WINDOWS)
|
91
|
-
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_STATUS_OVERRIDE_ON_CANCELLATION
|
92
|
-
inline bool IsCallStatusOverrideOnCancellationEnabled() { return true; }
|
93
91
|
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_TRACER_IN_TRANSPORT
|
94
92
|
inline bool IsCallTracerInTransportEnabled() { return true; }
|
95
93
|
inline bool IsCanaryClientPrivacyEnabled() { return false; }
|
96
94
|
inline bool IsClientPrivacyEnabled() { return false; }
|
95
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_APPLICATION_CALLBACKS
|
96
|
+
inline bool IsEventEngineApplicationCallbacksEnabled() { return true; }
|
97
97
|
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_CLIENT
|
98
98
|
inline bool IsEventEngineClientEnabled() { return true; }
|
99
99
|
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_DNS
|
@@ -105,15 +105,15 @@ inline bool IsMaxPingsWoDataThrottleEnabled() { return false; }
|
|
105
105
|
#define GRPC_EXPERIMENT_IS_INCLUDED_MONITORING_EXPERIMENT
|
106
106
|
inline bool IsMonitoringExperimentEnabled() { return true; }
|
107
107
|
inline bool IsMultipingEnabled() { return false; }
|
108
|
-
inline bool IsPeerStateBasedFramingEnabled() { return false; }
|
109
108
|
#define GRPC_EXPERIMENT_IS_INCLUDED_PICK_FIRST_NEW
|
110
109
|
inline bool IsPickFirstNewEnabled() { return true; }
|
111
110
|
inline bool IsPromiseBasedInprocTransportEnabled() { return false; }
|
112
|
-
inline bool IsRstpitEnabled() { return false; }
|
113
111
|
inline bool IsScheduleCancellationOverWriteEnabled() { return false; }
|
114
112
|
inline bool IsServerPrivacyEnabled() { return false; }
|
115
113
|
inline bool IsTcpFrameSizeTuningEnabled() { return false; }
|
116
114
|
inline bool IsTcpRcvLowatEnabled() { return false; }
|
115
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_TIME_CACHING_IN_PARTY
|
116
|
+
inline bool IsTimeCachingInPartyEnabled() { return true; }
|
117
117
|
#define GRPC_EXPERIMENT_IS_INCLUDED_TRACE_RECORD_CALLOPS
|
118
118
|
inline bool IsTraceRecordCallopsEnabled() { return true; }
|
119
119
|
inline bool IsUnconstrainedMaxQuotaBufferSizeEnabled() { return false; }
|
@@ -122,12 +122,12 @@ inline bool IsWorkSerializerClearsTimeCacheEnabled() { return true; }
|
|
122
122
|
inline bool IsWorkSerializerDispatchEnabled() { return false; }
|
123
123
|
|
124
124
|
#else
|
125
|
-
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_STATUS_OVERRIDE_ON_CANCELLATION
|
126
|
-
inline bool IsCallStatusOverrideOnCancellationEnabled() { return true; }
|
127
125
|
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_TRACER_IN_TRANSPORT
|
128
126
|
inline bool IsCallTracerInTransportEnabled() { return true; }
|
129
127
|
inline bool IsCanaryClientPrivacyEnabled() { return false; }
|
130
128
|
inline bool IsClientPrivacyEnabled() { return false; }
|
129
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_APPLICATION_CALLBACKS
|
130
|
+
inline bool IsEventEngineApplicationCallbacksEnabled() { return true; }
|
131
131
|
inline bool IsEventEngineClientEnabled() { return false; }
|
132
132
|
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_DNS
|
133
133
|
inline bool IsEventEngineDnsEnabled() { return true; }
|
@@ -138,15 +138,15 @@ inline bool IsMaxPingsWoDataThrottleEnabled() { return false; }
|
|
138
138
|
#define GRPC_EXPERIMENT_IS_INCLUDED_MONITORING_EXPERIMENT
|
139
139
|
inline bool IsMonitoringExperimentEnabled() { return true; }
|
140
140
|
inline bool IsMultipingEnabled() { return false; }
|
141
|
-
inline bool IsPeerStateBasedFramingEnabled() { return false; }
|
142
141
|
#define GRPC_EXPERIMENT_IS_INCLUDED_PICK_FIRST_NEW
|
143
142
|
inline bool IsPickFirstNewEnabled() { return true; }
|
144
143
|
inline bool IsPromiseBasedInprocTransportEnabled() { return false; }
|
145
|
-
inline bool IsRstpitEnabled() { return false; }
|
146
144
|
inline bool IsScheduleCancellationOverWriteEnabled() { return false; }
|
147
145
|
inline bool IsServerPrivacyEnabled() { return false; }
|
148
146
|
inline bool IsTcpFrameSizeTuningEnabled() { return false; }
|
149
147
|
inline bool IsTcpRcvLowatEnabled() { return false; }
|
148
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_TIME_CACHING_IN_PARTY
|
149
|
+
inline bool IsTimeCachingInPartyEnabled() { return true; }
|
150
150
|
#define GRPC_EXPERIMENT_IS_INCLUDED_TRACE_RECORD_CALLOPS
|
151
151
|
inline bool IsTraceRecordCallopsEnabled() { return true; }
|
152
152
|
inline bool IsUnconstrainedMaxQuotaBufferSizeEnabled() { return false; }
|
@@ -157,10 +157,10 @@ inline bool IsWorkSerializerDispatchEnabled() { return false; }
|
|
157
157
|
|
158
158
|
#else
|
159
159
|
enum ExperimentIds {
|
160
|
-
kExperimentIdCallStatusOverrideOnCancellation,
|
161
160
|
kExperimentIdCallTracerInTransport,
|
162
161
|
kExperimentIdCanaryClientPrivacy,
|
163
162
|
kExperimentIdClientPrivacy,
|
163
|
+
kExperimentIdEventEngineApplicationCallbacks,
|
164
164
|
kExperimentIdEventEngineClient,
|
165
165
|
kExperimentIdEventEngineDns,
|
166
166
|
kExperimentIdEventEngineListener,
|
@@ -168,24 +168,19 @@ enum ExperimentIds {
|
|
168
168
|
kExperimentIdMaxPingsWoDataThrottle,
|
169
169
|
kExperimentIdMonitoringExperiment,
|
170
170
|
kExperimentIdMultiping,
|
171
|
-
kExperimentIdPeerStateBasedFraming,
|
172
171
|
kExperimentIdPickFirstNew,
|
173
172
|
kExperimentIdPromiseBasedInprocTransport,
|
174
|
-
kExperimentIdRstpit,
|
175
173
|
kExperimentIdScheduleCancellationOverWrite,
|
176
174
|
kExperimentIdServerPrivacy,
|
177
175
|
kExperimentIdTcpFrameSizeTuning,
|
178
176
|
kExperimentIdTcpRcvLowat,
|
177
|
+
kExperimentIdTimeCachingInParty,
|
179
178
|
kExperimentIdTraceRecordCallops,
|
180
179
|
kExperimentIdUnconstrainedMaxQuotaBufferSize,
|
181
180
|
kExperimentIdWorkSerializerClearsTimeCache,
|
182
181
|
kExperimentIdWorkSerializerDispatch,
|
183
182
|
kNumExperiments
|
184
183
|
};
|
185
|
-
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_STATUS_OVERRIDE_ON_CANCELLATION
|
186
|
-
inline bool IsCallStatusOverrideOnCancellationEnabled() {
|
187
|
-
return IsExperimentEnabled<kExperimentIdCallStatusOverrideOnCancellation>();
|
188
|
-
}
|
189
184
|
#define GRPC_EXPERIMENT_IS_INCLUDED_CALL_TRACER_IN_TRANSPORT
|
190
185
|
inline bool IsCallTracerInTransportEnabled() {
|
191
186
|
return IsExperimentEnabled<kExperimentIdCallTracerInTransport>();
|
@@ -198,6 +193,10 @@ inline bool IsCanaryClientPrivacyEnabled() {
|
|
198
193
|
inline bool IsClientPrivacyEnabled() {
|
199
194
|
return IsExperimentEnabled<kExperimentIdClientPrivacy>();
|
200
195
|
}
|
196
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_APPLICATION_CALLBACKS
|
197
|
+
inline bool IsEventEngineApplicationCallbacksEnabled() {
|
198
|
+
return IsExperimentEnabled<kExperimentIdEventEngineApplicationCallbacks>();
|
199
|
+
}
|
201
200
|
#define GRPC_EXPERIMENT_IS_INCLUDED_EVENT_ENGINE_CLIENT
|
202
201
|
inline bool IsEventEngineClientEnabled() {
|
203
202
|
return IsExperimentEnabled<kExperimentIdEventEngineClient>();
|
@@ -226,10 +225,6 @@ inline bool IsMonitoringExperimentEnabled() {
|
|
226
225
|
inline bool IsMultipingEnabled() {
|
227
226
|
return IsExperimentEnabled<kExperimentIdMultiping>();
|
228
227
|
}
|
229
|
-
#define GRPC_EXPERIMENT_IS_INCLUDED_PEER_STATE_BASED_FRAMING
|
230
|
-
inline bool IsPeerStateBasedFramingEnabled() {
|
231
|
-
return IsExperimentEnabled<kExperimentIdPeerStateBasedFraming>();
|
232
|
-
}
|
233
228
|
#define GRPC_EXPERIMENT_IS_INCLUDED_PICK_FIRST_NEW
|
234
229
|
inline bool IsPickFirstNewEnabled() {
|
235
230
|
return IsExperimentEnabled<kExperimentIdPickFirstNew>();
|
@@ -238,10 +233,6 @@ inline bool IsPickFirstNewEnabled() {
|
|
238
233
|
inline bool IsPromiseBasedInprocTransportEnabled() {
|
239
234
|
return IsExperimentEnabled<kExperimentIdPromiseBasedInprocTransport>();
|
240
235
|
}
|
241
|
-
#define GRPC_EXPERIMENT_IS_INCLUDED_RSTPIT
|
242
|
-
inline bool IsRstpitEnabled() {
|
243
|
-
return IsExperimentEnabled<kExperimentIdRstpit>();
|
244
|
-
}
|
245
236
|
#define GRPC_EXPERIMENT_IS_INCLUDED_SCHEDULE_CANCELLATION_OVER_WRITE
|
246
237
|
inline bool IsScheduleCancellationOverWriteEnabled() {
|
247
238
|
return IsExperimentEnabled<kExperimentIdScheduleCancellationOverWrite>();
|
@@ -258,6 +249,10 @@ inline bool IsTcpFrameSizeTuningEnabled() {
|
|
258
249
|
inline bool IsTcpRcvLowatEnabled() {
|
259
250
|
return IsExperimentEnabled<kExperimentIdTcpRcvLowat>();
|
260
251
|
}
|
252
|
+
#define GRPC_EXPERIMENT_IS_INCLUDED_TIME_CACHING_IN_PARTY
|
253
|
+
inline bool IsTimeCachingInPartyEnabled() {
|
254
|
+
return IsExperimentEnabled<kExperimentIdTimeCachingInParty>();
|
255
|
+
}
|
261
256
|
#define GRPC_EXPERIMENT_IS_INCLUDED_TRACE_RECORD_CALLOPS
|
262
257
|
inline bool IsTraceRecordCallopsEnabled() {
|
263
258
|
return IsExperimentEnabled<kExperimentIdTraceRecordCallops>();
|
data/src/core/lib/gprpp/mpscq.h
CHANGED
data/src/core/lib/gprpp/sync.h
CHANGED
data/src/core/lib/gprpp/table.h
CHANGED
@@ -334,6 +334,15 @@ class Table {
|
|
334
334
|
absl::index_sequence<table_detail::IndexOf<Vs, Ts...>()...>());
|
335
335
|
}
|
336
336
|
|
337
|
+
// Iterate through each set field in the table if it exists in Vs, in the
|
338
|
+
// order of Vs. For each existing field, call the filter function. If the
|
339
|
+
// function returns true, keep the field. Otherwise, remove the field.
|
340
|
+
template <typename F, typename... Vs>
|
341
|
+
void FilterIn(F f) {
|
342
|
+
FilterInImpl(std::move(f),
|
343
|
+
absl::index_sequence<table_detail::IndexOf<Vs, Ts...>()...>());
|
344
|
+
}
|
345
|
+
|
337
346
|
// Count the number of set fields in the table
|
338
347
|
size_t count() const { return present_bits_.count(); }
|
339
348
|
|
@@ -415,6 +424,18 @@ class Table {
|
|
415
424
|
}
|
416
425
|
}
|
417
426
|
|
427
|
+
// Call (*f)(value) if that value is in the table.
|
428
|
+
// If the value is present in the table and (*f)(value) returns false, remove
|
429
|
+
// the value from the table.
|
430
|
+
template <size_t I, typename F>
|
431
|
+
void FilterIf(F* f) {
|
432
|
+
if (auto* p = get<I>()) {
|
433
|
+
if (!(*f)(*p)) {
|
434
|
+
clear<I>();
|
435
|
+
}
|
436
|
+
}
|
437
|
+
}
|
438
|
+
|
418
439
|
// For each field (element I=0, 1, ...) if that field is present, call its
|
419
440
|
// destructor.
|
420
441
|
template <size_t... I>
|
@@ -444,6 +465,13 @@ class Table {
|
|
444
465
|
table_detail::do_these_things<int>({(CallIf<I>(&f), 1)...});
|
445
466
|
}
|
446
467
|
|
468
|
+
// For each field (element I=0, 1, ...) if that field is present, call f. If
|
469
|
+
// f returns false, remove the field from the table.
|
470
|
+
template <typename F, size_t... I>
|
471
|
+
void FilterInImpl(F f, absl::index_sequence<I...>) {
|
472
|
+
table_detail::do_these_things<int>({(FilterIf<I>(&f), 1)...});
|
473
|
+
}
|
474
|
+
|
447
475
|
template <size_t... I>
|
448
476
|
void ClearAllImpl(absl::index_sequence<I...>) {
|
449
477
|
table_detail::do_these_things<int>({(clear<I>(), 1)...});
|
data/src/core/lib/gprpp/thd.h
CHANGED
data/src/core/lib/gprpp/time.h
CHANGED