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
@@ -250,16 +250,14 @@ class XdsClient::XdsChannel::AdsCall final
|
|
250
250
|
}
|
251
251
|
|
252
252
|
void OnTimer() {
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
<< "} from xds server";
|
262
|
-
}
|
253
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
254
|
+
<< "[xds_client " << ads_call_->xds_client() << "] xds server "
|
255
|
+
<< ads_call_->xds_channel()->server_.server_uri()
|
256
|
+
<< ": timeout obtaining resource {type=" << type_->type_url()
|
257
|
+
<< " name="
|
258
|
+
<< XdsClient::ConstructFullXdsResourceName(
|
259
|
+
name_.authority, type_->type_url(), name_.key)
|
260
|
+
<< "} from xds server";
|
263
261
|
{
|
264
262
|
MutexLock lock(&ads_call_->xds_client()->mu_);
|
265
263
|
timer_handle_.reset();
|
@@ -457,10 +455,9 @@ XdsClient::XdsChannel::XdsChannel(WeakRefCountedPtr<XdsClient> xds_client,
|
|
457
455
|
: nullptr),
|
458
456
|
xds_client_(std::move(xds_client)),
|
459
457
|
server_(server) {
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
}
|
458
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
459
|
+
<< "[xds_client " << xds_client_.get() << "] creating channel " << this
|
460
|
+
<< " for server " << server.server_uri();
|
464
461
|
absl::Status status;
|
465
462
|
transport_ = xds_client_->transport_factory_->Create(
|
466
463
|
server,
|
@@ -474,10 +471,9 @@ XdsClient::XdsChannel::XdsChannel(WeakRefCountedPtr<XdsClient> xds_client,
|
|
474
471
|
}
|
475
472
|
|
476
473
|
XdsClient::XdsChannel::~XdsChannel() {
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
}
|
474
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
475
|
+
<< "[xds_client " << xds_client() << "] destroying xds channel " << this
|
476
|
+
<< " for server " << server_.server_uri();
|
481
477
|
xds_client_.reset(DEBUG_LOCATION, "XdsChannel");
|
482
478
|
}
|
483
479
|
|
@@ -486,10 +482,9 @@ XdsClient::XdsChannel::~XdsChannel() {
|
|
486
482
|
// called from DualRefCounted::Unref, which cannot have a lock annotation for
|
487
483
|
// a lock in this subclass.
|
488
484
|
void XdsClient::XdsChannel::Orphaned() ABSL_NO_THREAD_SAFETY_ANALYSIS {
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
}
|
485
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
486
|
+
<< "[xds_client " << xds_client() << "] orphaning xds channel " << this
|
487
|
+
<< " for server " << server_.server_uri();
|
493
488
|
shutting_down_ = true;
|
494
489
|
transport_.reset();
|
495
490
|
// At this time, all strong refs are removed, remove from channel map to
|
@@ -574,19 +569,15 @@ bool XdsClient::XdsChannel::MaybeFallbackLocked(
|
|
574
569
|
type_resource.first, {authority, key_state.first});
|
575
570
|
}
|
576
571
|
}
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
<< authority_state.xds_channels.back()->status().ToString()
|
582
|
-
<< ")";
|
583
|
-
}
|
572
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
573
|
+
<< "[xds_client " << xds_client_.get() << "] authority " << authority
|
574
|
+
<< ": added fallback server " << xds_servers[i]->server_uri() << " ("
|
575
|
+
<< authority_state.xds_channels.back()->status().ToString() << ")";
|
584
576
|
if (authority_state.xds_channels.back()->status().ok()) return true;
|
585
577
|
}
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
}
|
578
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
579
|
+
<< "[xds_client " << xds_client_.get() << "] authority " << authority
|
580
|
+
<< ": No fallback server";
|
590
581
|
return false;
|
591
582
|
}
|
592
583
|
|
@@ -603,11 +594,9 @@ void XdsClient::XdsChannel::SetHealthyLocked() {
|
|
603
594
|
auto channel_it = std::find(channels.begin(), channels.end(), this);
|
604
595
|
// Skip if this is not on the list
|
605
596
|
if (channel_it != channels.end()) {
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
<< server_.server_uri();
|
610
|
-
}
|
597
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
598
|
+
<< "[xds_client " << xds_client_.get() << "] authority "
|
599
|
+
<< authority.first << ": Falling forward to " << server_.server_uri();
|
611
600
|
// Lower priority channels are no longer needed, connection is back!
|
612
601
|
channels.erase(channel_it + 1, channels.end());
|
613
602
|
}
|
@@ -715,11 +704,10 @@ void XdsClient::XdsChannel::RetryableCall<T>::StartNewCallLocked() {
|
|
715
704
|
if (shutting_down_) return;
|
716
705
|
CHECK(xds_channel_->transport_ != nullptr);
|
717
706
|
CHECK(call_ == nullptr);
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
}
|
707
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
708
|
+
<< "[xds_client " << xds_channel()->xds_client() << "] xds server "
|
709
|
+
<< xds_channel()->server_.server_uri()
|
710
|
+
<< ": start new call from retryable call " << this;
|
723
711
|
call_ = MakeOrphanable<T>(
|
724
712
|
this->Ref(DEBUG_LOCATION, "RetryableCall+start_new_call"));
|
725
713
|
}
|
@@ -727,17 +715,14 @@ void XdsClient::XdsChannel::RetryableCall<T>::StartNewCallLocked() {
|
|
727
715
|
template <typename T>
|
728
716
|
void XdsClient::XdsChannel::RetryableCall<T>::StartRetryTimerLocked() {
|
729
717
|
if (shutting_down_) return;
|
730
|
-
const
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
<< ": call attempt failed; retry timer will fire in "
|
737
|
-
<< timeout.millis() << "ms.";
|
738
|
-
}
|
718
|
+
const Duration delay = backoff_.NextAttemptDelay();
|
719
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
720
|
+
<< "[xds_client " << xds_channel()->xds_client() << "] xds server "
|
721
|
+
<< xds_channel()->server_.server_uri()
|
722
|
+
<< ": call attempt failed; retry timer will fire in " << delay.millis()
|
723
|
+
<< "ms.";
|
739
724
|
timer_handle_ = xds_channel()->xds_client()->engine()->RunAfter(
|
740
|
-
|
725
|
+
delay,
|
741
726
|
[self = this->Ref(DEBUG_LOCATION, "RetryableCall+retry_timer_start")]() {
|
742
727
|
ApplicationCallbackExecCtx callback_exec_ctx;
|
743
728
|
ExecCtx exec_ctx;
|
@@ -751,11 +736,10 @@ void XdsClient::XdsChannel::RetryableCall<T>::OnRetryTimer() {
|
|
751
736
|
if (timer_handle_.has_value()) {
|
752
737
|
timer_handle_.reset();
|
753
738
|
if (shutting_down_) return;
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
}
|
739
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
740
|
+
<< "[xds_client " << xds_channel()->xds_client() << "] xds server "
|
741
|
+
<< xds_channel()->server_.server_uri()
|
742
|
+
<< ": retry timer fired (retryable call: " << this << ")";
|
759
743
|
StartNewCallLocked();
|
760
744
|
}
|
761
745
|
}
|
@@ -787,13 +771,12 @@ class XdsClient::XdsChannel::AdsCall::AdsReadDelayHandle final
|
|
787
771
|
absl::Status
|
788
772
|
XdsClient::XdsChannel::AdsCall::AdsResponseParser::ProcessAdsResponseFields(
|
789
773
|
AdsResponseFields fields) {
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
}
|
774
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
775
|
+
<< "[xds_client " << ads_call_->xds_client() << "] xds server "
|
776
|
+
<< ads_call_->xds_channel()->server_.server_uri()
|
777
|
+
<< ": received ADS response: type_url=" << fields.type_url
|
778
|
+
<< ", version=" << fields.version << ", nonce=" << fields.nonce
|
779
|
+
<< ", num_resources=" << fields.num_resources;
|
797
780
|
result_.type =
|
798
781
|
ads_call_->xds_client()->GetResourceTypeLocked(fields.type_url);
|
799
782
|
if (result_.type == nullptr) {
|
@@ -949,11 +932,9 @@ void XdsClient::XdsChannel::AdsCall::AdsResponseParser::ParseResource(
|
|
949
932
|
if (resource_state.resource != nullptr &&
|
950
933
|
result_.type->ResourcesEqual(resource_state.resource.get(),
|
951
934
|
decode_result.resource->get())) {
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
<< " identical to current, ignoring.";
|
956
|
-
}
|
935
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
936
|
+
<< "[xds_client " << xds_client() << "] " << result_.type_url
|
937
|
+
<< " resource " << resource_name << " identical to current, ignoring.";
|
957
938
|
return;
|
958
939
|
}
|
959
940
|
// Update the resource state.
|
@@ -1001,12 +982,11 @@ XdsClient::XdsChannel::AdsCall::AdsCall(
|
|
1001
982
|
RefCountedPtr<AdsCall>(this)));
|
1002
983
|
CHECK(streaming_call_ != nullptr);
|
1003
984
|
// Start the call.
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
}
|
985
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
986
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
987
|
+
<< xds_channel()->server_.server_uri()
|
988
|
+
<< ": starting ADS call (ads_call: " << this
|
989
|
+
<< ", streaming_call: " << streaming_call_.get() << ")";
|
1010
990
|
// If this is a reconnect, add any necessary subscriptions from what's
|
1011
991
|
// already in the cache.
|
1012
992
|
for (auto& a : xds_client()->authority_state_map_) {
|
@@ -1054,13 +1034,12 @@ void XdsClient::XdsChannel::AdsCall::SendMessageLocked(
|
|
1054
1034
|
state.nonce, ResourceNamesForRequest(type), state.status,
|
1055
1035
|
!sent_initial_message_);
|
1056
1036
|
sent_initial_message_ = true;
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
}
|
1037
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1038
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1039
|
+
<< xds_channel()->server_.server_uri()
|
1040
|
+
<< ": sending ADS request: type=" << type->type_url()
|
1041
|
+
<< " version=" << xds_channel()->resource_type_version_map_[type]
|
1042
|
+
<< " nonce=" << state.nonce << " error=" << state.status;
|
1064
1043
|
state.status = absl::OkStatus();
|
1065
1044
|
streaming_call_->SendMessage(std::move(serialized_message));
|
1066
1045
|
send_message_pending_ = type;
|
@@ -1238,14 +1217,12 @@ void XdsClient::XdsChannel::AdsCall::OnRecvMessage(absl::string_view payload) {
|
|
1238
1217
|
void XdsClient::XdsChannel::AdsCall::OnStatusReceived(absl::Status status) {
|
1239
1218
|
{
|
1240
1219
|
MutexLock lock(&xds_client()->mu_);
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
<< "): " << status;
|
1248
|
-
}
|
1220
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1221
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1222
|
+
<< xds_channel()->server_.server_uri()
|
1223
|
+
<< ": ADS call status received (xds_channel=" << xds_channel()
|
1224
|
+
<< ", ads_call=" << this << ", streaming_call=" << streaming_call_.get()
|
1225
|
+
<< "): " << status;
|
1249
1226
|
// Cancel any does-not-exist timers that may be pending.
|
1250
1227
|
for (const auto& p : state_map_) {
|
1251
1228
|
for (const auto& q : p.second.subscribed_resources) {
|
@@ -1311,12 +1288,11 @@ void XdsClient::XdsChannel::LrsCall::Timer::Orphan() {
|
|
1311
1288
|
}
|
1312
1289
|
|
1313
1290
|
void XdsClient::XdsChannel::LrsCall::Timer::ScheduleNextReportLocked() {
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
}
|
1291
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1292
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1293
|
+
<< lrs_call_->xds_channel()->server_.server_uri()
|
1294
|
+
<< ": scheduling next load report in "
|
1295
|
+
<< lrs_call_->load_reporting_interval_;
|
1320
1296
|
timer_handle_ = xds_client()->engine()->RunAfter(
|
1321
1297
|
lrs_call_->load_reporting_interval_,
|
1322
1298
|
[self = Ref(DEBUG_LOCATION, "timer")]() {
|
@@ -1354,12 +1330,11 @@ XdsClient::XdsChannel::LrsCall::LrsCall(
|
|
1354
1330
|
RefCountedPtr<LrsCall>(this)));
|
1355
1331
|
CHECK(streaming_call_ != nullptr);
|
1356
1332
|
// Start the call.
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
}
|
1333
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1334
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1335
|
+
<< xds_channel()->server_.server_uri()
|
1336
|
+
<< ": starting LRS call (lrs_call=" << this
|
1337
|
+
<< ", streaming_call=" << streaming_call_.get() << ")";
|
1363
1338
|
// Send the initial request.
|
1364
1339
|
std::string serialized_payload = xds_client()->api_.CreateLrsInitialRequest();
|
1365
1340
|
SendMessageLocked(std::move(serialized_payload));
|
@@ -1483,22 +1458,20 @@ void XdsClient::XdsChannel::LrsCall::OnRecvMessage(absl::string_view payload) {
|
|
1483
1458
|
Duration::Milliseconds(GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS)) {
|
1484
1459
|
new_load_reporting_interval =
|
1485
1460
|
Duration::Milliseconds(GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS);
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
}
|
1461
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1462
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1463
|
+
<< xds_channel()->server_.server_uri()
|
1464
|
+
<< ": increased load_report_interval to minimum value "
|
1465
|
+
<< GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS << "ms";
|
1492
1466
|
}
|
1493
1467
|
// Ignore identical update.
|
1494
1468
|
if (send_all_clusters == send_all_clusters_ &&
|
1495
1469
|
cluster_names_ == new_cluster_names &&
|
1496
1470
|
load_reporting_interval_ == new_load_reporting_interval) {
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
}
|
1471
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1472
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1473
|
+
<< xds_channel()->server_.server_uri()
|
1474
|
+
<< ": incoming LRS response identical to current, ignoring.";
|
1502
1475
|
return;
|
1503
1476
|
}
|
1504
1477
|
// If the interval has changed, we'll need to restart the timer below.
|
@@ -1517,14 +1490,12 @@ void XdsClient::XdsChannel::LrsCall::OnRecvMessage(absl::string_view payload) {
|
|
1517
1490
|
|
1518
1491
|
void XdsClient::XdsChannel::LrsCall::OnStatusReceived(absl::Status status) {
|
1519
1492
|
MutexLock lock(&xds_client()->mu_);
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
<< "): " << status;
|
1527
|
-
}
|
1493
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1494
|
+
<< "[xds_client " << xds_client() << "] xds server "
|
1495
|
+
<< xds_channel()->server_.server_uri()
|
1496
|
+
<< ": LRS call status received (xds_channel=" << xds_channel()
|
1497
|
+
<< ", lrs_call=" << this << ", streaming_call=" << streaming_call_.get()
|
1498
|
+
<< "): " << status;
|
1528
1499
|
// Ignore status from a stale call.
|
1529
1500
|
if (IsCurrentCallOnChannel()) {
|
1530
1501
|
// Try to restart the call.
|
@@ -1563,9 +1534,8 @@ XdsClient::XdsClient(
|
|
1563
1534
|
work_serializer_(engine),
|
1564
1535
|
engine_(std::move(engine)),
|
1565
1536
|
metrics_reporter_(std::move(metrics_reporter)) {
|
1566
|
-
|
1567
|
-
|
1568
|
-
}
|
1537
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1538
|
+
<< "[xds_client " << this << "] creating xds client";
|
1569
1539
|
CHECK(bootstrap_ != nullptr);
|
1570
1540
|
if (bootstrap_->node() != nullptr) {
|
1571
1541
|
GRPC_TRACE_LOG(xds_client, INFO)
|
@@ -1575,15 +1545,13 @@ XdsClient::XdsClient(
|
|
1575
1545
|
}
|
1576
1546
|
|
1577
1547
|
XdsClient::~XdsClient() {
|
1578
|
-
|
1579
|
-
|
1580
|
-
}
|
1548
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1549
|
+
<< "[xds_client " << this << "] destroying xds client";
|
1581
1550
|
}
|
1582
1551
|
|
1583
1552
|
void XdsClient::Orphaned() {
|
1584
|
-
|
1585
|
-
|
1586
|
-
}
|
1553
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1554
|
+
<< "[xds_client " << this << "] shutting down xds client";
|
1587
1555
|
MutexLock lock(&mu_);
|
1588
1556
|
shutting_down_ = true;
|
1589
1557
|
// Clear cache and any remaining watchers that may not have been cancelled.
|
@@ -1703,10 +1671,9 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1703
1671
|
// If we already have a cached value for the resource, notify the new
|
1704
1672
|
// watcher immediately.
|
1705
1673
|
if (resource_state.resource != nullptr) {
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1709
|
-
}
|
1674
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1675
|
+
<< "[xds_client " << this << "] returning cached listener data for "
|
1676
|
+
<< name;
|
1710
1677
|
work_serializer_.Schedule(
|
1711
1678
|
[watcher, value = resource_state.resource]()
|
1712
1679
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
@@ -1716,10 +1683,9 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1716
1683
|
DEBUG_LOCATION);
|
1717
1684
|
} else if (resource_state.meta.client_status ==
|
1718
1685
|
XdsApi::ResourceMetadata::DOES_NOT_EXIST) {
|
1719
|
-
|
1720
|
-
|
1721
|
-
|
1722
|
-
}
|
1686
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1687
|
+
<< "[xds_client " << this
|
1688
|
+
<< "] reporting cached does-not-exist for " << name;
|
1723
1689
|
work_serializer_.Schedule(
|
1724
1690
|
[watcher]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1725
1691
|
watcher->OnResourceDoesNotExist(ReadDelayHandle::NoWait());
|
@@ -1727,11 +1693,10 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1727
1693
|
DEBUG_LOCATION);
|
1728
1694
|
} else if (resource_state.meta.client_status ==
|
1729
1695
|
XdsApi::ResourceMetadata::NACKED) {
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
}
|
1696
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1697
|
+
<< "[xds_client " << this
|
1698
|
+
<< "] reporting cached validation failure for " << name << ": "
|
1699
|
+
<< resource_state.meta.failed_details;
|
1735
1700
|
std::string details = resource_state.meta.failed_details;
|
1736
1701
|
const auto* node = bootstrap_->node();
|
1737
1702
|
if (node != nullptr) {
|
@@ -1750,11 +1715,9 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1750
1715
|
}
|
1751
1716
|
absl::Status channel_status = authority_state.xds_channels.back()->status();
|
1752
1717
|
if (!channel_status.ok()) {
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
<< channel_status;
|
1757
|
-
}
|
1718
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
1719
|
+
<< "[xds_client " << this << "] returning cached channel error for "
|
1720
|
+
<< name << ": " << channel_status;
|
1758
1721
|
work_serializer_.Schedule(
|
1759
1722
|
[watcher = std::move(watcher), status = std::move(channel_status)]()
|
1760
1723
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) mutable {
|
@@ -2053,9 +2016,8 @@ void XdsClient::NotifyWatchersOnResourceDoesNotExist(
|
|
2053
2016
|
XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
|
2054
2017
|
const XdsBootstrap::XdsServer& xds_server, bool send_all_clusters,
|
2055
2018
|
const std::set<std::string>& clusters) {
|
2056
|
-
|
2057
|
-
|
2058
|
-
}
|
2019
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
2020
|
+
<< "[xds_client " << this << "] start building load report";
|
2059
2021
|
XdsApi::ClusterLoadReportMap snapshot_map;
|
2060
2022
|
auto server_it = xds_load_report_server_map_.find(xds_server.Key());
|
2061
2023
|
if (server_it == xds_load_report_server_map_.end()) return snapshot_map;
|
@@ -2080,11 +2042,10 @@ XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
|
|
2080
2042
|
if (load_report.drop_stats != nullptr) {
|
2081
2043
|
snapshot.dropped_requests +=
|
2082
2044
|
load_report.drop_stats->GetSnapshotAndReset();
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
|
2087
|
-
}
|
2045
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
2046
|
+
<< "[xds_client " << this << "] cluster=" << cluster_key.first
|
2047
|
+
<< " eds_service_name=" << cluster_key.second
|
2048
|
+
<< " drop_stats=" << load_report.drop_stats;
|
2088
2049
|
}
|
2089
2050
|
// Aggregate locality stats.
|
2090
2051
|
for (auto it = load_report.locality_stats.begin();
|
@@ -2097,14 +2058,12 @@ XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
|
|
2097
2058
|
if (locality_state.locality_stats != nullptr) {
|
2098
2059
|
locality_snapshot +=
|
2099
2060
|
locality_state.locality_stats->GetSnapshotAndReset();
|
2100
|
-
|
2101
|
-
|
2102
|
-
|
2103
|
-
|
2104
|
-
|
2105
|
-
|
2106
|
-
<< " locality_stats=" << locality_state.locality_stats;
|
2107
|
-
}
|
2061
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
2062
|
+
<< "[xds_client " << this
|
2063
|
+
<< "] cluster=" << cluster_key.first.c_str()
|
2064
|
+
<< " eds_service_name=" << cluster_key.second.c_str()
|
2065
|
+
<< " locality=" << locality_name->human_readable_string().c_str()
|
2066
|
+
<< " locality_stats=" << locality_state.locality_stats;
|
2108
2067
|
}
|
2109
2068
|
// If the only thing left in this entry was final snapshots from
|
2110
2069
|
// deleted locality stats objects, remove the entry.
|
@@ -51,19 +51,17 @@ XdsClusterDropStats::XdsClusterDropStats(RefCountedPtr<XdsClient> xds_client,
|
|
51
51
|
lrs_server_(lrs_server),
|
52
52
|
cluster_name_(cluster_name),
|
53
53
|
eds_service_name_(eds_service_name) {
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
}
|
54
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
55
|
+
<< "[xds_client " << xds_client_.get() << "] created drop stats " << this
|
56
|
+
<< " for {" << lrs_server_ << ", " << cluster_name_ << ", "
|
57
|
+
<< eds_service_name_ << "}";
|
59
58
|
}
|
60
59
|
|
61
60
|
XdsClusterDropStats::~XdsClusterDropStats() {
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
}
|
61
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
62
|
+
<< "[xds_client " << xds_client_.get() << "] destroying drop stats "
|
63
|
+
<< this << " for {" << lrs_server_ << ", " << cluster_name_ << ", "
|
64
|
+
<< eds_service_name_ << "}";
|
67
65
|
xds_client_->RemoveClusterDropStats(lrs_server_, cluster_name_,
|
68
66
|
eds_service_name_, this);
|
69
67
|
xds_client_.reset(DEBUG_LOCATION, "DropStats");
|
@@ -102,26 +100,21 @@ XdsClusterLocalityStats::XdsClusterLocalityStats(
|
|
102
100
|
cluster_name_(cluster_name),
|
103
101
|
eds_service_name_(eds_service_name),
|
104
102
|
name_(std::move(name)) {
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
<< "}";
|
112
|
-
}
|
103
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
104
|
+
<< "[xds_client " << xds_client_.get() << "] created locality stats "
|
105
|
+
<< this << " for {" << lrs_server_ << ", " << cluster_name_ << ", "
|
106
|
+
<< eds_service_name_ << ", "
|
107
|
+
<< (name_ == nullptr ? "<none>" : name_->human_readable_string().c_str())
|
108
|
+
<< "}";
|
113
109
|
}
|
114
110
|
|
115
111
|
XdsClusterLocalityStats::~XdsClusterLocalityStats() {
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
: name_->human_readable_string().c_str())
|
123
|
-
<< "}";
|
124
|
-
}
|
112
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
113
|
+
<< "[xds_client " << xds_client_.get() << "] destroying locality stats "
|
114
|
+
<< this << " for {" << lrs_server_ << ", " << cluster_name_ << ", "
|
115
|
+
<< eds_service_name_ << ", "
|
116
|
+
<< (name_ == nullptr ? "<none>" : name_->human_readable_string().c_str())
|
117
|
+
<< "}";
|
125
118
|
xds_client_->RemoveClusterLocalityStats(lrs_server_, cluster_name_,
|
126
119
|
eds_service_name_, name_, this);
|
127
120
|
xds_client_.reset(DEBUG_LOCATION, "LocalityStats");
|
data/src/ruby/ext/grpc/rb_call.c
CHANGED
@@ -809,7 +809,7 @@ struct call_run_batch_args {
|
|
809
809
|
};
|
810
810
|
|
811
811
|
static void cancel_call_unblock_func(void* arg) {
|
812
|
-
|
812
|
+
grpc_absl_log(GPR_DEBUG, "GRPC_RUBY: cancel_call_unblock_func");
|
813
813
|
grpc_call* call = (grpc_call*)arg;
|
814
814
|
grpc_call_cancel(call, NULL);
|
815
815
|
}
|