grpc 1.61.3 → 1.62.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 +218 -196
- data/include/grpc/event_engine/event_engine.h +5 -43
- data/include/grpc/event_engine/extensible.h +68 -0
- data/include/grpc/impl/slice_type.h +1 -1
- data/include/grpc/support/port_platform.h +12 -20
- data/src/core/{ext/filters/client_channel → client_channel}/backend_metric.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/backend_metric.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/backup_poller.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/backup_poller.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/channel_connectivity.cc +11 -11
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_channelz.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_channelz.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_factory.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_factory.h +4 -4
- data/src/core/{ext/filters/client_channel/client_channel.cc → client_channel/client_channel_filter.cc} +247 -231
- data/src/core/{ext/filters/client_channel/client_channel.h → client_channel/client_channel_filter.h} +42 -42
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_internal.h +6 -6
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_plugin.cc +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_service_config.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_service_config.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/config_selector.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/config_selector.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/connector.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/dynamic_filters.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/dynamic_filters.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/global_subchannel_pool.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/global_subchannel_pool.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/http_proxy_mapper.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/http_proxy_mapper.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/local_subchannel_pool.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/local_subchannel_pool.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter.cc +8 -8
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter.h +8 -8
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter_legacy_call_data.cc +12 -9
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter_legacy_call_data.h +11 -10
- data/src/core/{ext/filters/client_channel → client_channel}/retry_service_config.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/retry_service_config.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/retry_throttle.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/retry_throttle.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/service_config_channel_arg_filter.cc +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel.h +6 -6
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_interface_internal.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_pool_interface.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_pool_interface.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_stream_client.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_stream_client.h +4 -4
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +1 -1
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +1 -1
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +2 -2
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +3 -3
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.cc +1 -1
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +2 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +1 -1
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +1 -1
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +5 -5
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +1 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +5 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +27 -36
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +3 -1
- data/src/core/ext/transport/inproc/inproc_transport.cc +20 -13
- data/src/core/ext/transport/inproc/inproc_transport.h +8 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +351 -164
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +89 -50
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +47 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +15 -7
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +8 -5
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +28 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +6 -4
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +29 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +166 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +7 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +99 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +29 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +31 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +22 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +91 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +11 -8
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +125 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +17 -4
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +19 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +42 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +11 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +23 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +9 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +58 -16
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +14 -11
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +7 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +129 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +27 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +15 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +5 -2
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +60 -60
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +278 -256
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +483 -475
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +27 -20
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +17 -12
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +157 -161
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +105 -97
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +106 -102
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +14 -13
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +228 -224
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +32 -26
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +31 -28
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +22 -19
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +818 -813
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +158 -151
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +27 -23
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +59 -53
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +40 -18
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +106 -103
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +22 -21
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +265 -261
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +127 -125
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +188 -182
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +57 -56
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +27 -20
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +10 -8
- data/src/core/ext/xds/xds_api.cc +63 -150
- data/src/core/ext/xds/xds_api.h +2 -7
- data/src/core/ext/xds/xds_bootstrap.h +3 -4
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +4 -15
- data/src/core/ext/xds/xds_bootstrap_grpc.h +2 -1
- data/src/core/ext/xds/xds_client.cc +111 -59
- data/src/core/ext/xds/xds_client.h +20 -15
- data/src/core/ext/xds/xds_client_grpc.cc +53 -15
- data/src/core/ext/xds/xds_client_grpc.h +4 -1
- data/src/core/ext/xds/xds_client_stats.cc +11 -11
- data/src/core/ext/xds/xds_client_stats.h +8 -13
- data/src/core/ext/xds/xds_cluster.cc +1 -1
- data/src/core/ext/xds/xds_cluster.h +1 -1
- data/src/core/ext/xds/xds_endpoint.h +1 -1
- data/src/core/ext/xds/xds_health_status.h +1 -1
- data/src/core/ext/xds/xds_lb_policy_registry.cc +1 -1
- data/src/core/ext/xds/xds_route_config.cc +1 -1
- data/src/core/ext/xds/xds_server_config_fetcher.cc +2 -2
- data/src/core/ext/xds/xds_transport_grpc.cc +5 -5
- data/src/core/lib/channel/channel_args.h +15 -1
- data/src/core/lib/channel/connected_channel.cc +13 -12
- data/src/core/lib/channel/promise_based_filter.cc +4 -4
- data/src/core/lib/channel/promise_based_filter.h +1 -2
- data/src/core/lib/config/core_configuration.h +3 -3
- data/src/core/lib/event_engine/ares_resolver.cc +106 -59
- data/src/core/lib/event_engine/extensions/can_track_errors.h +40 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +160 -0
- data/src/core/lib/event_engine/forkable.cc +7 -5
- data/src/core/lib/event_engine/posix.h +11 -122
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +1 -5
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +31 -7
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +1 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +2 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +14 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +10 -0
- data/src/core/lib/event_engine/query_extensions.h +85 -0
- data/src/core/lib/event_engine/shim.cc +3 -17
- data/src/core/lib/event_engine/shim.h +0 -2
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +28 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -1
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +109 -5
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -0
- data/src/core/lib/event_engine/utils.cc +2 -1
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +1 -0
- data/src/core/lib/experiments/config.cc +10 -2
- data/src/core/lib/experiments/config.h +6 -0
- data/src/core/lib/experiments/experiments.cc +57 -18
- data/src/core/lib/experiments/experiments.h +16 -8
- data/src/core/lib/gpr/posix/sync.cc +2 -2
- data/src/core/lib/gpr/posix/time.cc +0 -5
- data/src/core/lib/gpr/windows/sync.cc +2 -2
- data/src/core/lib/gprpp/debug_location.h +2 -0
- data/src/core/lib/gprpp/down_cast.h +49 -0
- data/src/core/lib/gprpp/linux/env.cc +1 -19
- data/src/core/lib/gprpp/load_file.cc +2 -1
- data/src/core/lib/gprpp/load_file.h +2 -1
- data/src/core/lib/gprpp/posix/thd.cc +27 -2
- data/src/core/lib/gprpp/thd.h +8 -0
- data/src/core/lib/gprpp/time.h +4 -3
- data/src/core/lib/gprpp/windows/thd.cc +10 -1
- data/src/core/lib/iomgr/combiner.cc +1 -1
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +20 -14
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +65 -50
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +12 -0
- data/src/core/lib/json/json_writer.cc +1 -1
- data/src/core/lib/promise/activity.h +8 -2
- data/src/core/lib/promise/context.h +45 -7
- data/src/core/lib/promise/for_each.h +6 -9
- data/src/core/lib/promise/interceptor_list.h +13 -5
- data/src/core/lib/promise/latch.h +3 -3
- data/src/core/lib/promise/party.cc +12 -0
- data/src/core/lib/promise/party.h +37 -6
- data/src/core/lib/promise/pipe.h +2 -7
- data/src/core/lib/promise/sleep.cc +1 -1
- data/src/core/lib/promise/status_flag.h +32 -2
- data/src/core/lib/resource_quota/memory_quota.cc +4 -4
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -11
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +11 -10
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +9 -7
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +16 -24
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +3 -7
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +26 -17
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +2 -2
- data/src/core/lib/security/transport/security_handshaker.cc +0 -8
- data/src/core/lib/security/transport/security_handshaker.h +0 -6
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -2
- data/src/core/lib/slice/slice_buffer.h +3 -1
- data/src/core/lib/surface/call.cc +162 -76
- data/src/core/lib/surface/call_trace.cc +9 -9
- data/src/core/lib/surface/channel.cc +15 -24
- data/src/core/lib/surface/channel.h +4 -20
- data/src/core/lib/surface/channel_init.cc +81 -7
- data/src/core/lib/surface/channel_init.h +104 -6
- data/src/core/lib/surface/init.cc +1 -1
- data/src/core/lib/surface/server.cc +4 -7
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/surface/wait_for_cq_end_op.cc +75 -0
- data/src/core/lib/surface/wait_for_cq_end_op.h +4 -26
- data/src/core/lib/transport/batch_builder.cc +2 -3
- data/src/core/lib/transport/batch_builder.h +1 -1
- data/src/core/lib/transport/call_factory.cc +41 -0
- data/src/core/lib/transport/call_factory.h +56 -0
- data/src/core/lib/transport/call_filters.cc +371 -0
- data/src/core/lib/transport/call_filters.h +1500 -0
- data/src/core/lib/transport/call_size_estimator.cc +41 -0
- data/src/core/lib/transport/call_size_estimator.h +52 -0
- data/src/core/lib/transport/call_spine.cc +107 -0
- data/src/core/lib/transport/call_spine.h +429 -0
- data/src/core/lib/transport/handshaker.cc +0 -8
- data/src/core/lib/transport/handshaker.h +0 -7
- data/src/core/lib/transport/message.cc +45 -0
- data/src/core/lib/transport/message.h +61 -0
- data/src/core/lib/transport/metadata.cc +37 -0
- data/src/core/lib/transport/metadata.h +78 -0
- data/src/core/lib/transport/metadata_batch.cc +4 -2
- data/src/core/lib/transport/metadata_batch.h +2 -2
- data/src/core/lib/transport/transport.cc +0 -105
- data/src/core/lib/transport/transport.h +3 -452
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/address_filtering.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/address_filtering.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/backend_metric_data.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/child_policy_handler.cc +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/child_policy_handler.h +4 -4
- data/src/core/{lib/load_balancing → load_balancing}/delegating_helper.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/endpoint_list.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/endpoint_list.h +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/client_load_reporting_filter.cc +2 -2
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/client_load_reporting_filter.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb.cc +19 -19
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_balancer_addresses.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_balancer_addresses.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_client_stats.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_client_stats.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/load_balancer_api.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/load_balancer_api.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client_internal.h +7 -7
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy.cc +1 -1
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy.h +6 -6
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_factory.h +4 -4
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_registry.cc +2 -2
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_registry.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric_internal.h +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/outlier_detection/outlier_detection.cc +10 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/outlier_detection/outlier_detection.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/pick_first/pick_first.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/pick_first/pick_first.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/priority/priority.cc +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/ring_hash/ring_hash.cc +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/ring_hash/ring_hash.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/rls/rls.cc +13 -13
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/round_robin/round_robin.cc +7 -7
- data/src/core/{lib/load_balancing → load_balancing}/subchannel_interface.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/subchannel_list.h +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/static_stride_scheduler.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/static_stride_scheduler.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/weighted_round_robin.cc +10 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_target/weighted_target.cc +7 -7
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/cds.cc +26 -23
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_channel_args.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_cluster_impl.cc +11 -11
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_cluster_manager.cc +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_override_host.cc +10 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_override_host.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_wrr_locality.cc +6 -6
- data/src/core/{ext/filters/client_channel/resolver → resolver}/binder/binder_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/dns_resolver_ares.cc +9 -9
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/dns_resolver_ares.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver_windows.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/dns_resolver_plugin.cc +7 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/dns_resolver_plugin.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/event_engine_client_channel_resolver.cc +9 -9
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/event_engine_client_channel_resolver.h +5 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/service_config_helper.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/service_config_helper.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/native/dns_resolver.cc +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/native/dns_resolver.h +3 -3
- data/src/core/{lib/resolver → resolver}/endpoint_addresses.cc +1 -1
- data/src/core/{lib/resolver → resolver}/endpoint_addresses.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/fake/fake_resolver.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/fake/fake_resolver.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/google_c2p/google_c2p_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/polling_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/polling_resolver.h +5 -5
- data/src/core/{lib/resolver → resolver}/resolver.cc +1 -1
- data/src/core/{lib/resolver → resolver}/resolver.h +6 -6
- data/src/core/{lib/resolver → resolver}/resolver_factory.h +4 -4
- data/src/core/{lib/resolver → resolver}/resolver_registry.cc +1 -1
- data/src/core/{lib/resolver → resolver}/resolver_registry.h +5 -5
- data/src/core/{lib/resolver → resolver}/server_address.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/sockaddr/sockaddr_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_dependency_manager.cc +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_dependency_manager.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver.cc +11 -11
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver_attributes.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver_trace.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver_trace.h +3 -3
- data/src/core/{lib/service_config → service_config}/service_config.h +4 -4
- data/src/core/{lib/service_config → service_config}/service_config_call_data.h +5 -5
- data/src/core/{lib/service_config → service_config}/service_config_impl.cc +2 -2
- data/src/core/{lib/service_config → service_config}/service_config_impl.h +5 -5
- data/src/core/{lib/service_config → service_config}/service_config_parser.cc +1 -1
- data/src/core/{lib/service_config → service_config}/service_config_parser.h +3 -3
- data/src/core/tsi/fake_transport_security.cc +1 -1
- data/src/ruby/ext/grpc/extconf.rb +0 -1
- data/src/ruby/ext/grpc/rb_channel.c +11 -5
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -3
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +8 -103
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -71
- data/third_party/abseil-cpp/absl/base/attributes.h +51 -12
- data/third_party/abseil-cpp/absl/base/call_once.h +15 -9
- data/third_party/abseil-cpp/absl/base/casts.h +1 -1
- data/third_party/abseil-cpp/absl/base/config.h +91 -24
- data/third_party/abseil-cpp/absl/base/internal/endian.h +13 -12
- data/third_party/abseil-cpp/absl/base/internal/identity.h +4 -2
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +19 -18
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +1 -1
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +106 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +9 -11
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +2 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +17 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +20 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +10 -4
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +13 -6
- data/third_party/abseil-cpp/absl/base/log_severity.cc +1 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +23 -10
- data/third_party/abseil-cpp/absl/base/no_destructor.h +217 -0
- data/third_party/abseil-cpp/absl/base/nullability.h +224 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +1 -0
- data/third_party/abseil-cpp/absl/base/options.h +27 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +25 -14
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +0 -2
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +3 -3
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +4 -2
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +13 -9
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +2 -12
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +12 -1
- data/third_party/abseil-cpp/absl/container/internal/layout.h +6 -21
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +11 -2
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +148 -31
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +717 -278
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +26 -2
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +6 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +34 -5
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +6 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +4 -2
- data/third_party/abseil-cpp/absl/crc/internal/{crc_memcpy_x86_64.cc → crc_memcpy_x86_arm_combined.cc} +65 -47
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +10 -2
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +4 -2
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +24 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +35 -33
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +41 -17
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +108 -44
- data/third_party/abseil-cpp/absl/flags/declare.h +0 -5
- data/third_party/abseil-cpp/absl/flags/flag.h +1 -10
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +0 -5
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +10 -1
- data/third_party/abseil-cpp/absl/flags/reflection.cc +2 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +8 -0
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +2 -2
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +49 -2
- data/third_party/abseil-cpp/absl/numeric/bits.h +37 -18
- data/third_party/abseil-cpp/absl/random/distributions.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +248 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +55 -14
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +53 -2
- data/third_party/abseil-cpp/absl/status/status.cc +36 -238
- data/third_party/abseil-cpp/absl/status/status.h +95 -53
- data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +1 -3
- data/third_party/abseil-cpp/absl/status/status_payload_printer.h +3 -2
- data/third_party/abseil-cpp/absl/status/statusor.cc +5 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +43 -3
- data/third_party/abseil-cpp/absl/strings/ascii.cc +84 -12
- data/third_party/abseil-cpp/absl/strings/ascii.h +8 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +19 -12
- data/third_party/abseil-cpp/absl/strings/charconv.h +6 -3
- data/third_party/abseil-cpp/absl/strings/charset.h +164 -0
- data/third_party/abseil-cpp/absl/strings/cord.cc +266 -69
- data/third_party/abseil-cpp/absl/strings/cord.h +138 -92
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +19 -33
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +4 -3
- data/third_party/abseil-cpp/absl/strings/escaping.cc +5 -4
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +63 -0
- data/third_party/abseil-cpp/absl/strings/has_ostream_operator.h +42 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -6
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +19 -45
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +23 -28
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +15 -26
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +12 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +145 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +72 -24
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +17 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +7 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +8 -3
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +10 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +5 -4
- data/third_party/abseil-cpp/absl/strings/match.cc +3 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +396 -153
- data/third_party/abseil-cpp/absl/strings/numbers.h +193 -35
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +151 -21
- data/third_party/abseil-cpp/absl/strings/str_cat.h +127 -25
- data/third_party/abseil-cpp/absl/strings/str_format.h +30 -20
- data/third_party/abseil-cpp/absl/strings/str_join.h +16 -16
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +12 -3
- data/third_party/abseil-cpp/absl/strings/str_replace.h +8 -5
- data/third_party/abseil-cpp/absl/strings/str_split.cc +8 -6
- data/third_party/abseil-cpp/absl/strings/str_split.h +18 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -5
- data/third_party/abseil-cpp/absl/strings/string_view.h +91 -26
- data/third_party/abseil-cpp/absl/strings/strip.h +5 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +12 -4
- data/third_party/abseil-cpp/absl/strings/substitute.h +103 -91
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +2 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +4 -2
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +296 -332
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +89 -34
- data/third_party/abseil-cpp/absl/time/civil_time.h +26 -0
- data/third_party/abseil-cpp/absl/time/clock.h +5 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +2 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +9 -14
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +0 -8
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +18 -0
- data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +18 -0
- data/third_party/abseil-cpp/absl/types/internal/variant.h +3 -3
- data/third_party/abseil-cpp/absl/types/optional.h +3 -2
- data/third_party/abseil-cpp/absl/types/span.h +9 -4
- data/third_party/abseil-cpp/absl/utility/utility.h +11 -93
- data/third_party/boringssl-with-bazel/err_data.c +278 -276
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +9 -9
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +8 -21
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +19 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +11 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +4 -13
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +27 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +1 -11
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +42 -12
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +9 -9
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +34 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +49 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +30 -42
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +87 -96
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +105 -31
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +10 -81
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +2 -15
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +1 -9
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +1 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +2 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +26 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +26 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +10 -41
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +49 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +26 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +27 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +8 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +11 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +11 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c +43 -50
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +16 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +2 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +51 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +17 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +5 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +6 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +153 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +87 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +39 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +32 -5
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +254 -54
- data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/{kyber → keccak}/keccak.c +124 -49
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +8 -39
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +39 -29
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +17 -33
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +36 -16
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +9 -13
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +101 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +150 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +136 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +135 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +4 -9
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +10 -22
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +12 -36
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +14 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +23 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +225 -51
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +6 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_akey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_akeya.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_alt.c +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_bcons.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_bitst.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_conf.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_cpols.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_crld.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_enum.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_extku.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_genn.c +12 -12
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ia5.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_info.c +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_lib.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ncons.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ocsp.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_pcons.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_pmaps.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_prn.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_purp.c +92 -335
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_skey.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_utl.c +20 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +35 -32
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +44 -59
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +107 -255
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +32 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +25 -152
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +330 -944
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +93 -215
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +28 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -129
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +46 -50
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +6 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +0 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +5 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +3 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +24 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +22 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +0 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +33 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +5 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +26 -18
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +13 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +19 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +45 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +20 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +18 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +76 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +31 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +3 -22
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2806 -941
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +38 -1025
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +124 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +1 -2
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +82 -9
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +42 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +4 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +9 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +5 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +5 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -2
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +21 -0
- data/third_party/cares/config_linux/ares_config.h +2 -38
- metadata +214 -179
- data/src/core/lib/iomgr/load_file.cc +0 -78
- data/src/core/lib/iomgr/load_file.h +0 -35
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +0 -137
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +0 -280
- data/third_party/abseil-cpp/absl/flags/flag.cc +0 -38
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +0 -116
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +0 -158
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +0 -773
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +0 -607
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +0 -118
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +0 -100
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +0 -111
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +0 -197
- /data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/ext_dat.h +0 -0
@@ -14,23 +14,17 @@
|
|
14
14
|
|
15
15
|
#include "absl/strings/cord_analysis.h"
|
16
16
|
|
17
|
+
#include <cassert>
|
17
18
|
#include <cstddef>
|
18
19
|
#include <cstdint>
|
19
20
|
#include <unordered_set>
|
20
21
|
|
21
|
-
#include "absl/base/attributes.h"
|
22
22
|
#include "absl/base/config.h"
|
23
|
-
#include "absl/
|
23
|
+
#include "absl/base/nullability.h"
|
24
24
|
#include "absl/strings/internal/cord_data_edge.h"
|
25
25
|
#include "absl/strings/internal/cord_internal.h"
|
26
26
|
#include "absl/strings/internal/cord_rep_btree.h"
|
27
27
|
#include "absl/strings/internal/cord_rep_crc.h"
|
28
|
-
#include "absl/strings/internal/cord_rep_flat.h"
|
29
|
-
#include "absl/strings/internal/cord_rep_ring.h"
|
30
|
-
//
|
31
|
-
#include "absl/base/macros.h"
|
32
|
-
#include "absl/base/port.h"
|
33
|
-
#include "absl/functional/function_ref.h"
|
34
28
|
|
35
29
|
namespace absl {
|
36
30
|
ABSL_NAMESPACE_BEGIN
|
@@ -45,13 +39,15 @@ enum class Mode { kFairShare, kTotal, kTotalMorePrecise };
|
|
45
39
|
template <Mode mode>
|
46
40
|
struct CordRepRef {
|
47
41
|
// Instantiates a CordRepRef instance.
|
48
|
-
explicit CordRepRef(const CordRep
|
42
|
+
explicit CordRepRef(absl::Nonnull<const CordRep*> r) : rep(r) {}
|
49
43
|
|
50
44
|
// Creates a child reference holding the provided child.
|
51
45
|
// Overloaded to add cumulative reference count for kFairShare.
|
52
|
-
CordRepRef Child(const CordRep
|
46
|
+
CordRepRef Child(absl::Nonnull<const CordRep*> child) const {
|
47
|
+
return CordRepRef(child);
|
48
|
+
}
|
53
49
|
|
54
|
-
const CordRep
|
50
|
+
absl::Nonnull<const CordRep*> rep;
|
55
51
|
};
|
56
52
|
|
57
53
|
// RawUsage holds the computed total number of bytes.
|
@@ -70,11 +66,10 @@ template <>
|
|
70
66
|
struct RawUsage<Mode::kTotalMorePrecise> {
|
71
67
|
size_t total = 0;
|
72
68
|
// TODO(b/289250880): Replace this with a flat_hash_set.
|
73
|
-
std::unordered_set<const CordRep
|
69
|
+
std::unordered_set<absl::Nonnull<const CordRep*>> counted;
|
74
70
|
|
75
71
|
void Add(size_t size, CordRepRef<Mode::kTotalMorePrecise> repref) {
|
76
|
-
if (counted.
|
77
|
-
counted.insert(repref.rep);
|
72
|
+
if (counted.insert(repref.rep).second) {
|
78
73
|
total += size;
|
79
74
|
}
|
80
75
|
}
|
@@ -95,15 +90,15 @@ double MaybeDiv(double d, refcount_t refcount) {
|
|
95
90
|
template <>
|
96
91
|
struct CordRepRef<Mode::kFairShare> {
|
97
92
|
// Creates a CordRepRef with the provided rep and top (parent) fraction.
|
98
|
-
explicit CordRepRef(const CordRep
|
93
|
+
explicit CordRepRef(absl::Nonnull<const CordRep*> r, double frac = 1.0)
|
99
94
|
: rep(r), fraction(MaybeDiv(frac, r->refcount.Get())) {}
|
100
95
|
|
101
96
|
// Returns a CordRepRef with a fraction of `this->fraction / child.refcount`
|
102
|
-
CordRepRef Child(const CordRep
|
97
|
+
CordRepRef Child(absl::Nonnull<const CordRep*> child) const {
|
103
98
|
return CordRepRef(child, fraction);
|
104
99
|
}
|
105
100
|
|
106
|
-
const CordRep
|
101
|
+
absl::Nonnull<const CordRep*> rep;
|
107
102
|
double fraction;
|
108
103
|
};
|
109
104
|
|
@@ -138,16 +133,6 @@ void AnalyzeDataEdge(CordRepRef<mode> rep, RawUsage<mode>& raw_usage) {
|
|
138
133
|
raw_usage.Add(size, rep);
|
139
134
|
}
|
140
135
|
|
141
|
-
// Computes the memory size of the provided Ring tree.
|
142
|
-
template <Mode mode>
|
143
|
-
void AnalyzeRing(CordRepRef<mode> rep, RawUsage<mode>& raw_usage) {
|
144
|
-
const CordRepRing* ring = rep.rep->ring();
|
145
|
-
raw_usage.Add(CordRepRing::AllocSize(ring->capacity()), rep);
|
146
|
-
ring->ForEach([&](CordRepRing::index_type pos) {
|
147
|
-
AnalyzeDataEdge(rep.Child(ring->entry_child(pos)), raw_usage);
|
148
|
-
});
|
149
|
-
}
|
150
|
-
|
151
136
|
// Computes the memory size of the provided Btree tree.
|
152
137
|
template <Mode mode>
|
153
138
|
void AnalyzeBtree(CordRepRef<mode> rep, RawUsage<mode>& raw_usage) {
|
@@ -165,7 +150,7 @@ void AnalyzeBtree(CordRepRef<mode> rep, RawUsage<mode>& raw_usage) {
|
|
165
150
|
}
|
166
151
|
|
167
152
|
template <Mode mode>
|
168
|
-
size_t GetEstimatedUsage(const CordRep
|
153
|
+
size_t GetEstimatedUsage(absl::Nonnull<const CordRep*> rep) {
|
169
154
|
// Zero initialized memory usage totals.
|
170
155
|
RawUsage<mode> raw_usage;
|
171
156
|
|
@@ -175,6 +160,9 @@ size_t GetEstimatedUsage(const CordRep* rep) {
|
|
175
160
|
// Consume the top level CRC node if present.
|
176
161
|
if (repref.rep->tag == CRC) {
|
177
162
|
raw_usage.Add(sizeof(CordRepCrc), repref);
|
163
|
+
if (repref.rep->crc()->child == nullptr) {
|
164
|
+
return static_cast<size_t>(raw_usage.total);
|
165
|
+
}
|
178
166
|
repref = repref.Child(repref.rep->crc()->child);
|
179
167
|
}
|
180
168
|
|
@@ -182,8 +170,6 @@ size_t GetEstimatedUsage(const CordRep* rep) {
|
|
182
170
|
AnalyzeDataEdge(repref, raw_usage);
|
183
171
|
} else if (repref.rep->tag == BTREE) {
|
184
172
|
AnalyzeBtree(repref, raw_usage);
|
185
|
-
} else if (repref.rep->tag == RING) {
|
186
|
-
AnalyzeRing(repref, raw_usage);
|
187
173
|
} else {
|
188
174
|
assert(false);
|
189
175
|
}
|
@@ -193,15 +179,15 @@ size_t GetEstimatedUsage(const CordRep* rep) {
|
|
193
179
|
|
194
180
|
} // namespace
|
195
181
|
|
196
|
-
size_t GetEstimatedMemoryUsage(const CordRep
|
182
|
+
size_t GetEstimatedMemoryUsage(absl::Nonnull<const CordRep*> rep) {
|
197
183
|
return GetEstimatedUsage<Mode::kTotal>(rep);
|
198
184
|
}
|
199
185
|
|
200
|
-
size_t GetEstimatedFairShareMemoryUsage(const CordRep
|
186
|
+
size_t GetEstimatedFairShareMemoryUsage(absl::Nonnull<const CordRep*> rep) {
|
201
187
|
return GetEstimatedUsage<Mode::kFairShare>(rep);
|
202
188
|
}
|
203
189
|
|
204
|
-
size_t GetMorePreciseMemoryUsage(const CordRep
|
190
|
+
size_t GetMorePreciseMemoryUsage(absl::Nonnull<const CordRep*> rep) {
|
205
191
|
return GetEstimatedUsage<Mode::kTotalMorePrecise>(rep);
|
206
192
|
}
|
207
193
|
|
@@ -19,6 +19,7 @@
|
|
19
19
|
#include <cstdint>
|
20
20
|
|
21
21
|
#include "absl/base/config.h"
|
22
|
+
#include "absl/base/nullability.h"
|
22
23
|
#include "absl/strings/internal/cord_internal.h"
|
23
24
|
|
24
25
|
namespace absl {
|
@@ -28,7 +29,7 @@ namespace cord_internal {
|
|
28
29
|
// Returns the *approximate* number of bytes held in full or in part by this
|
29
30
|
// Cord (which may not remain the same between invocations). Cords that share
|
30
31
|
// memory could each be "charged" independently for the same shared memory.
|
31
|
-
size_t GetEstimatedMemoryUsage(const CordRep
|
32
|
+
size_t GetEstimatedMemoryUsage(absl::Nonnull<const CordRep*> rep);
|
32
33
|
|
33
34
|
// Returns the *approximate* number of bytes held in full or in part by this
|
34
35
|
// Cord for the distinct memory held by this cord. This is similar to
|
@@ -46,13 +47,13 @@ size_t GetEstimatedMemoryUsage(const CordRep* rep);
|
|
46
47
|
//
|
47
48
|
// This is more expensive than `GetEstimatedMemoryUsage()` as it requires
|
48
49
|
// deduplicating all memory references.
|
49
|
-
size_t GetMorePreciseMemoryUsage(const CordRep
|
50
|
+
size_t GetMorePreciseMemoryUsage(absl::Nonnull<const CordRep*> rep);
|
50
51
|
|
51
52
|
// Returns the *approximate* number of bytes held in full or in part by this
|
52
53
|
// CordRep weighted by the sharing ratio of that data. For example, if some data
|
53
54
|
// edge is shared by 4 different Cords, then each cord is attribute 1/4th of
|
54
55
|
// the total memory usage as a 'fair share' of the total memory usage.
|
55
|
-
size_t GetEstimatedFairShareMemoryUsage(const CordRep
|
56
|
+
size_t GetEstimatedFairShareMemoryUsage(absl::Nonnull<const CordRep*> rep);
|
56
57
|
|
57
58
|
} // namespace cord_internal
|
58
59
|
ABSL_NAMESPACE_END
|
@@ -16,21 +16,22 @@
|
|
16
16
|
|
17
17
|
#include <algorithm>
|
18
18
|
#include <cassert>
|
19
|
+
#include <cstddef>
|
19
20
|
#include <cstdint>
|
20
21
|
#include <cstring>
|
21
|
-
#include <iterator>
|
22
22
|
#include <limits>
|
23
23
|
#include <string>
|
24
24
|
|
25
|
-
#include "absl/base/
|
25
|
+
#include "absl/base/config.h"
|
26
26
|
#include "absl/base/internal/raw_logging.h"
|
27
27
|
#include "absl/base/internal/unaligned_access.h"
|
28
|
-
#include "absl/strings/
|
28
|
+
#include "absl/strings/ascii.h"
|
29
|
+
#include "absl/strings/charset.h"
|
29
30
|
#include "absl/strings/internal/escaping.h"
|
30
31
|
#include "absl/strings/internal/resize_uninitialized.h"
|
31
32
|
#include "absl/strings/internal/utf8.h"
|
33
|
+
#include "absl/strings/numbers.h"
|
32
34
|
#include "absl/strings/str_cat.h"
|
33
|
-
#include "absl/strings/str_join.h"
|
34
35
|
#include "absl/strings/string_view.h"
|
35
36
|
|
36
37
|
namespace absl {
|
@@ -0,0 +1,63 @@
|
|
1
|
+
// Copyright 2022 The Abseil Authors
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_STRINGS_HAS_ABSL_STRINGIFY_H_
|
16
|
+
#define ABSL_STRINGS_HAS_ABSL_STRINGIFY_H_
|
17
|
+
|
18
|
+
#include <type_traits>
|
19
|
+
#include <utility>
|
20
|
+
|
21
|
+
#include "absl/strings/string_view.h"
|
22
|
+
|
23
|
+
namespace absl {
|
24
|
+
ABSL_NAMESPACE_BEGIN
|
25
|
+
|
26
|
+
namespace strings_internal {
|
27
|
+
|
28
|
+
// This is an empty class not intended to be used. It exists so that
|
29
|
+
// `HasAbslStringify` can reference a universal class rather than needing to be
|
30
|
+
// copied for each new sink.
|
31
|
+
class UnimplementedSink {
|
32
|
+
public:
|
33
|
+
void Append(size_t count, char ch);
|
34
|
+
|
35
|
+
void Append(string_view v);
|
36
|
+
|
37
|
+
// Support `absl::Format(&sink, format, args...)`.
|
38
|
+
friend void AbslFormatFlush(UnimplementedSink* sink, absl::string_view v);
|
39
|
+
};
|
40
|
+
|
41
|
+
} // namespace strings_internal
|
42
|
+
|
43
|
+
// `HasAbslStringify<T>` detects if type `T` supports the `AbslStringify()`
|
44
|
+
// customization point (see
|
45
|
+
// https://abseil.io/docs/cpp/guides/format#abslstringify for the
|
46
|
+
// documentation).
|
47
|
+
//
|
48
|
+
// Note that there are types that can be `StrCat`-ed that do not use the
|
49
|
+
// `AbslStringify` customization point (for example, `int`).
|
50
|
+
|
51
|
+
template <typename T, typename = void>
|
52
|
+
struct HasAbslStringify : std::false_type {};
|
53
|
+
|
54
|
+
template <typename T>
|
55
|
+
struct HasAbslStringify<
|
56
|
+
T, std::enable_if_t<std::is_void<decltype(AbslStringify(
|
57
|
+
std::declval<strings_internal::UnimplementedSink&>(),
|
58
|
+
std::declval<const T&>()))>::value>> : std::true_type {};
|
59
|
+
|
60
|
+
ABSL_NAMESPACE_END
|
61
|
+
} // namespace absl
|
62
|
+
|
63
|
+
#endif // ABSL_STRINGS_HAS_ABSL_STRINGIFY_H_
|
@@ -0,0 +1,42 @@
|
|
1
|
+
// Copyright 2023 The Abseil Authors
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_STRINGS_HAS_OSTREAM_OPERATOR_H_
|
16
|
+
#define ABSL_STRINGS_HAS_OSTREAM_OPERATOR_H_
|
17
|
+
|
18
|
+
#include <ostream>
|
19
|
+
#include <type_traits>
|
20
|
+
#include <utility>
|
21
|
+
|
22
|
+
#include "absl/base/config.h"
|
23
|
+
|
24
|
+
namespace absl {
|
25
|
+
ABSL_NAMESPACE_BEGIN
|
26
|
+
|
27
|
+
// Detects if type `T` supports streaming to `std::ostream`s with `operator<<`.
|
28
|
+
|
29
|
+
template <typename T, typename = void>
|
30
|
+
struct HasOstreamOperator : std::false_type {};
|
31
|
+
|
32
|
+
template <typename T>
|
33
|
+
struct HasOstreamOperator<
|
34
|
+
T, std::enable_if_t<std::is_same<
|
35
|
+
std::ostream&, decltype(std::declval<std::ostream&>()
|
36
|
+
<< std::declval<const T&>())>::value>>
|
37
|
+
: std::true_type {};
|
38
|
+
|
39
|
+
ABSL_NAMESPACE_END
|
40
|
+
} // namespace absl
|
41
|
+
|
42
|
+
#endif // ABSL_STRINGS_HAS_OSTREAM_OPERATOR_H_
|
@@ -22,15 +22,12 @@
|
|
22
22
|
#include "absl/strings/internal/cord_rep_btree.h"
|
23
23
|
#include "absl/strings/internal/cord_rep_crc.h"
|
24
24
|
#include "absl/strings/internal/cord_rep_flat.h"
|
25
|
-
#include "absl/strings/internal/cord_rep_ring.h"
|
26
25
|
#include "absl/strings/str_cat.h"
|
27
26
|
|
28
27
|
namespace absl {
|
29
28
|
ABSL_NAMESPACE_BEGIN
|
30
29
|
namespace cord_internal {
|
31
30
|
|
32
|
-
ABSL_CONST_INIT std::atomic<bool> cord_ring_buffer_enabled(
|
33
|
-
kCordEnableRingBufferDefault);
|
34
31
|
ABSL_CONST_INIT std::atomic<bool> shallow_subcords_enabled(
|
35
32
|
kCordShallowSubcordsDefault);
|
36
33
|
|
@@ -47,9 +44,6 @@ void CordRep::Destroy(CordRep* rep) {
|
|
47
44
|
if (rep->tag == BTREE) {
|
48
45
|
CordRepBtree::Destroy(rep->btree());
|
49
46
|
return;
|
50
|
-
} else if (rep->tag == RING) {
|
51
|
-
CordRepRing::Destroy(rep->ring());
|
52
|
-
return;
|
53
47
|
} else if (rep->tag == EXTERNAL) {
|
54
48
|
CordRepExternal::Delete(rep);
|
55
49
|
return;
|
@@ -55,24 +55,15 @@ struct CordRepExternal;
|
|
55
55
|
struct CordRepFlat;
|
56
56
|
struct CordRepSubstring;
|
57
57
|
struct CordRepCrc;
|
58
|
-
class CordRepRing;
|
59
58
|
class CordRepBtree;
|
60
59
|
|
61
60
|
class CordzInfo;
|
62
61
|
|
63
62
|
// Default feature enable states for cord ring buffers
|
64
|
-
enum CordFeatureDefaults {
|
65
|
-
kCordEnableRingBufferDefault = false,
|
66
|
-
kCordShallowSubcordsDefault = false
|
67
|
-
};
|
63
|
+
enum CordFeatureDefaults { kCordShallowSubcordsDefault = false };
|
68
64
|
|
69
|
-
extern std::atomic<bool> cord_ring_buffer_enabled;
|
70
65
|
extern std::atomic<bool> shallow_subcords_enabled;
|
71
66
|
|
72
|
-
inline void enable_cord_ring_buffer(bool enable) {
|
73
|
-
cord_ring_buffer_enabled.store(enable, std::memory_order_relaxed);
|
74
|
-
}
|
75
|
-
|
76
67
|
inline void enable_shallow_subcords(bool enable) {
|
77
68
|
shallow_subcords_enabled.store(enable, std::memory_order_relaxed);
|
78
69
|
}
|
@@ -110,8 +101,16 @@ inline void SmallMemmove(char* dst, const char* src, size_t n) {
|
|
110
101
|
if (nullify_tail) {
|
111
102
|
memset(dst + 7, 0, 8);
|
112
103
|
}
|
104
|
+
// GCC 12 has a false-positive -Wstringop-overflow warning here.
|
105
|
+
#if ABSL_INTERNAL_HAVE_MIN_GNUC_VERSION(12, 0)
|
106
|
+
#pragma GCC diagnostic push
|
107
|
+
#pragma GCC diagnostic ignored "-Wstringop-overflow"
|
108
|
+
#endif
|
113
109
|
memcpy(dst, &buf1, 8);
|
114
110
|
memcpy(dst + n - 8, &buf2, 8);
|
111
|
+
#if ABSL_INTERNAL_HAVE_MIN_GNUC_VERSION(12, 0)
|
112
|
+
#pragma GCC diagnostic pop
|
113
|
+
#endif
|
115
114
|
} else if (n >= 4) {
|
116
115
|
uint32_t buf1;
|
117
116
|
uint32_t buf2;
|
@@ -158,18 +157,18 @@ class RefcountAndFlags {
|
|
158
157
|
// false. Always returns false when the immortal bit is set.
|
159
158
|
inline bool Decrement() {
|
160
159
|
int32_t refcount = count_.load(std::memory_order_acquire);
|
161
|
-
assert(
|
160
|
+
assert(refcount > 0 || refcount & kImmortalFlag);
|
162
161
|
return refcount != kRefIncrement &&
|
163
|
-
|
164
|
-
|
162
|
+
count_.fetch_sub(kRefIncrement, std::memory_order_acq_rel) !=
|
163
|
+
kRefIncrement;
|
165
164
|
}
|
166
165
|
|
167
166
|
// Same as Decrement but expect that refcount is greater than 1.
|
168
167
|
inline bool DecrementExpectHighRefcount() {
|
169
168
|
int32_t refcount =
|
170
169
|
count_.fetch_sub(kRefIncrement, std::memory_order_acq_rel);
|
171
|
-
assert(
|
172
|
-
return
|
170
|
+
assert(refcount > 0 || refcount & kImmortalFlag);
|
171
|
+
return refcount != kRefIncrement;
|
173
172
|
}
|
174
173
|
|
175
174
|
// Returns the current reference count using acquire semantics.
|
@@ -185,10 +184,9 @@ class RefcountAndFlags {
|
|
185
184
|
// This call performs the test for a reference count of one, and
|
186
185
|
// performs the memory barrier needed for the owning thread
|
187
186
|
// to act on the object, knowing that it has exclusive access to the
|
188
|
-
// object.
|
187
|
+
// object. Always returns false when the immortal bit is set.
|
189
188
|
inline bool IsOne() {
|
190
|
-
return
|
191
|
-
kRefIncrement;
|
189
|
+
return count_.load(std::memory_order_acquire) == kRefIncrement;
|
192
190
|
}
|
193
191
|
|
194
192
|
bool IsImmortal() const {
|
@@ -196,32 +194,15 @@ class RefcountAndFlags {
|
|
196
194
|
}
|
197
195
|
|
198
196
|
private:
|
199
|
-
// We reserve the bottom
|
197
|
+
// We reserve the bottom bit for flag.
|
200
198
|
// kImmortalBit indicates that this entity should never be collected; it is
|
201
199
|
// used for the StringConstant constructor to avoid collecting immutable
|
202
200
|
// constant cords.
|
203
|
-
// kReservedFlag is reserved for future use.
|
204
201
|
enum Flags {
|
205
|
-
kNumFlags =
|
202
|
+
kNumFlags = 1,
|
206
203
|
|
207
204
|
kImmortalFlag = 0x1,
|
208
|
-
kReservedFlag = 0x2,
|
209
205
|
kRefIncrement = (1 << kNumFlags),
|
210
|
-
|
211
|
-
// Bitmask to use when checking refcount by equality. This masks out
|
212
|
-
// all flags except kImmortalFlag, which is part of the refcount for
|
213
|
-
// purposes of equality. (A refcount of 0 or 1 does not count as 0 or 1
|
214
|
-
// if the immortal bit is set.)
|
215
|
-
kRefcountMask = ~kReservedFlag,
|
216
|
-
|
217
|
-
// Bitmask to use when checking if refcount is equal to 1 and not
|
218
|
-
// immortal when decrementing the refcount. This masks out kRefIncrement and
|
219
|
-
// all flags except kImmortalFlag. If the masked RefcountAndFlags is 0, we
|
220
|
-
// assume the refcount is equal to 1, since we know it's not immortal and
|
221
|
-
// not greater than 1. If the masked RefcountAndFlags is not 0, we can
|
222
|
-
// assume the refcount is not equal to 1 since either a higher bit in the
|
223
|
-
// refcount is set, or kImmortal is set.
|
224
|
-
kHighRefcountMask = kRefcountMask & ~kRefIncrement,
|
225
206
|
};
|
226
207
|
|
227
208
|
std::atomic<int32_t> count_;
|
@@ -233,7 +214,7 @@ enum CordRepKind {
|
|
233
214
|
SUBSTRING = 1,
|
234
215
|
CRC = 2,
|
235
216
|
BTREE = 3,
|
236
|
-
|
217
|
+
UNUSED_4 = 4,
|
237
218
|
EXTERNAL = 5,
|
238
219
|
|
239
220
|
// We have different tags for different sized flat arrays,
|
@@ -252,12 +233,8 @@ enum CordRepKind {
|
|
252
233
|
// There are various locations where we want to check if some rep is a 'plain'
|
253
234
|
// data edge, i.e. an external or flat rep. By having FLAT == EXTERNAL + 1, we
|
254
235
|
// can perform this check in a single branch as 'tag >= EXTERNAL'
|
255
|
-
// Likewise, we have some locations where we check for 'ring or external/flat',
|
256
|
-
// so likewise align RING to EXTERNAL.
|
257
236
|
// Note that we can leave this optimization to the compiler. The compiler will
|
258
237
|
// DTRT when it sees a condition like `tag == EXTERNAL || tag >= FLAT`.
|
259
|
-
static_assert(RING == BTREE + 1, "BTREE and RING not consecutive");
|
260
|
-
static_assert(EXTERNAL == RING + 1, "BTREE and EXTERNAL not consecutive");
|
261
238
|
static_assert(FLAT == EXTERNAL + 1, "EXTERNAL and FLAT not consecutive");
|
262
239
|
|
263
240
|
struct CordRep {
|
@@ -301,15 +278,12 @@ struct CordRep {
|
|
301
278
|
// # LINT.ThenChange(cord_rep_btree.h:copy_raw)
|
302
279
|
|
303
280
|
// Returns true if this instance's tag matches the requested type.
|
304
|
-
constexpr bool IsRing() const { return tag == RING; }
|
305
281
|
constexpr bool IsSubstring() const { return tag == SUBSTRING; }
|
306
282
|
constexpr bool IsCrc() const { return tag == CRC; }
|
307
283
|
constexpr bool IsExternal() const { return tag == EXTERNAL; }
|
308
284
|
constexpr bool IsFlat() const { return tag >= FLAT; }
|
309
285
|
constexpr bool IsBtree() const { return tag == BTREE; }
|
310
286
|
|
311
|
-
inline CordRepRing* ring();
|
312
|
-
inline const CordRepRing* ring() const;
|
313
287
|
inline CordRepSubstring* substring();
|
314
288
|
inline const CordRepSubstring* substring() const;
|
315
289
|
inline CordRepCrc* crc();
|
@@ -21,7 +21,6 @@
|
|
21
21
|
#include "absl/strings/internal/cord_internal.h"
|
22
22
|
#include "absl/strings/internal/cord_rep_btree.h"
|
23
23
|
#include "absl/strings/internal/cord_rep_crc.h"
|
24
|
-
#include "absl/strings/internal/cord_rep_ring.h"
|
25
24
|
#include "absl/strings/internal/cordz_handle.h"
|
26
25
|
#include "absl/strings/internal/cordz_statistics.h"
|
27
26
|
#include "absl/strings/internal/cordz_update_tracker.h"
|
@@ -33,8 +32,6 @@ namespace absl {
|
|
33
32
|
ABSL_NAMESPACE_BEGIN
|
34
33
|
namespace cord_internal {
|
35
34
|
|
36
|
-
using ::absl::base_internal::SpinLockHolder;
|
37
|
-
|
38
35
|
#ifdef ABSL_INTERNAL_NEED_REDUNDANT_CONSTEXPR_DECL
|
39
36
|
constexpr size_t CordzInfo::kMaxStackDepth;
|
40
37
|
#endif
|
@@ -79,6 +76,8 @@ class CordRepAnalyzer {
|
|
79
76
|
// adds the results to `statistics`. Note that node counts and memory sizes
|
80
77
|
// are not initialized, computed values are added to any existing values.
|
81
78
|
void AnalyzeCordRep(const CordRep* rep) {
|
79
|
+
ABSL_ASSERT(rep != nullptr);
|
80
|
+
|
82
81
|
// Process all linear nodes.
|
83
82
|
// As per the class comments, use refcout - 1 on the top level node, as the
|
84
83
|
// top level node is assumed to be referenced only for analysis purposes.
|
@@ -86,7 +85,7 @@ class CordRepAnalyzer {
|
|
86
85
|
RepRef repref{rep, (refcount > 1) ? refcount - 1 : 1};
|
87
86
|
|
88
87
|
// Process the top level CRC node, if present.
|
89
|
-
if (repref.
|
88
|
+
if (repref.tag() == CRC) {
|
90
89
|
statistics_.node_count++;
|
91
90
|
statistics_.node_counts.crc++;
|
92
91
|
memory_usage_.Add(sizeof(CordRepCrc), repref.refcount);
|
@@ -96,15 +95,14 @@ class CordRepAnalyzer {
|
|
96
95
|
// Process all top level linear nodes (substrings and flats).
|
97
96
|
repref = CountLinearReps(repref, memory_usage_);
|
98
97
|
|
99
|
-
|
100
|
-
|
101
|
-
AnalyzeRing(repref);
|
102
|
-
} else if (repref.rep->tag == BTREE) {
|
98
|
+
switch (repref.tag()) {
|
99
|
+
case CordRepKind::BTREE:
|
103
100
|
AnalyzeBtree(repref);
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
101
|
+
break;
|
102
|
+
default:
|
103
|
+
// We should have a btree node if not null.
|
104
|
+
ABSL_ASSERT(repref.tag() == CordRepKind::UNUSED_0);
|
105
|
+
break;
|
108
106
|
}
|
109
107
|
|
110
108
|
// Adds values to output
|
@@ -122,11 +120,19 @@ class CordRepAnalyzer {
|
|
122
120
|
const CordRep* rep;
|
123
121
|
size_t refcount;
|
124
122
|
|
125
|
-
// Returns a 'child' RepRef which contains the cumulative reference count
|
126
|
-
// this instance multiplied by the child's reference count.
|
123
|
+
// Returns a 'child' RepRef which contains the cumulative reference count
|
124
|
+
// of this instance multiplied by the child's reference count. Returns a
|
125
|
+
// nullptr RepRef value with a refcount of 0 if `child` is nullptr.
|
127
126
|
RepRef Child(const CordRep* child) const {
|
127
|
+
if (child == nullptr) return RepRef{nullptr, 0};
|
128
128
|
return RepRef{child, refcount * child->refcount.Get()};
|
129
129
|
}
|
130
|
+
|
131
|
+
// Returns the tag of this rep, or UNUSED_0 if this instance is null
|
132
|
+
constexpr CordRepKind tag() const {
|
133
|
+
ABSL_ASSERT(rep == nullptr || rep->tag != CordRepKind::UNUSED_0);
|
134
|
+
return rep ? static_cast<CordRepKind>(rep->tag) : CordRepKind::UNUSED_0;
|
135
|
+
}
|
130
136
|
};
|
131
137
|
|
132
138
|
// Memory usage values
|
@@ -167,7 +173,7 @@ class CordRepAnalyzer {
|
|
167
173
|
// buffers where we count children unrounded.
|
168
174
|
RepRef CountLinearReps(RepRef rep, MemoryUsage& memory_usage) {
|
169
175
|
// Consume all substrings
|
170
|
-
while (rep.
|
176
|
+
while (rep.tag() == SUBSTRING) {
|
171
177
|
statistics_.node_count++;
|
172
178
|
statistics_.node_counts.substring++;
|
173
179
|
memory_usage.Add(sizeof(CordRepSubstring), rep.refcount);
|
@@ -175,7 +181,7 @@ class CordRepAnalyzer {
|
|
175
181
|
}
|
176
182
|
|
177
183
|
// Consume possible FLAT
|
178
|
-
if (rep.
|
184
|
+
if (rep.tag() >= FLAT) {
|
179
185
|
size_t size = rep.rep->flat()->AllocatedSize();
|
180
186
|
CountFlat(size);
|
181
187
|
memory_usage.Add(size, rep.refcount);
|
@@ -183,7 +189,7 @@ class CordRepAnalyzer {
|
|
183
189
|
}
|
184
190
|
|
185
191
|
// Consume possible external
|
186
|
-
if (rep.
|
192
|
+
if (rep.tag() == EXTERNAL) {
|
187
193
|
statistics_.node_count++;
|
188
194
|
statistics_.node_counts.external++;
|
189
195
|
size_t size = rep.rep->length + sizeof(CordRepExternalImpl<intptr_t>);
|
@@ -194,17 +200,6 @@ class CordRepAnalyzer {
|
|
194
200
|
return rep;
|
195
201
|
}
|
196
202
|
|
197
|
-
// Analyzes the provided ring.
|
198
|
-
void AnalyzeRing(RepRef rep) {
|
199
|
-
statistics_.node_count++;
|
200
|
-
statistics_.node_counts.ring++;
|
201
|
-
const CordRepRing* ring = rep.rep->ring();
|
202
|
-
memory_usage_.Add(CordRepRing::AllocSize(ring->capacity()), rep.refcount);
|
203
|
-
ring->ForEach([&](CordRepRing::index_type pos) {
|
204
|
-
CountLinearReps(rep.Child(ring->entry_child(pos)), memory_usage_);
|
205
|
-
});
|
206
|
-
}
|
207
|
-
|
208
203
|
// Analyzes the provided btree.
|
209
204
|
void AnalyzeBtree(RepRef rep) {
|
210
205
|
statistics_.node_count++;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Copyright
|
1
|
+
// Copyright 2024 The Abseil Authors
|
2
2
|
//
|
3
3
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
// you may not use this file except in compliance with the License.
|
@@ -14,38 +14,27 @@
|
|
14
14
|
|
15
15
|
#ifndef ABSL_STRINGS_INTERNAL_HAS_ABSL_STRINGIFY_H_
|
16
16
|
#define ABSL_STRINGS_INTERNAL_HAS_ABSL_STRINGIFY_H_
|
17
|
-
#include <string>
|
18
|
-
#include <type_traits>
|
19
|
-
#include <utility>
|
20
17
|
|
21
|
-
#include "absl/strings/
|
18
|
+
#include "absl/strings/has_absl_stringify.h"
|
19
|
+
|
20
|
+
#include "absl/base/config.h"
|
22
21
|
|
23
22
|
namespace absl {
|
24
23
|
ABSL_NAMESPACE_BEGIN
|
25
24
|
|
26
25
|
namespace strings_internal {
|
27
26
|
|
28
|
-
// This
|
29
|
-
//
|
30
|
-
//
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
};
|
40
|
-
|
41
|
-
template <typename T, typename = void>
|
42
|
-
struct HasAbslStringify : std::false_type {};
|
43
|
-
|
44
|
-
template <typename T>
|
45
|
-
struct HasAbslStringify<
|
46
|
-
T, std::enable_if_t<std::is_void<decltype(AbslStringify(
|
47
|
-
std::declval<strings_internal::UnimplementedSink&>(),
|
48
|
-
std::declval<const T&>()))>::value>> : std::true_type {};
|
27
|
+
// This exists to fix a circular dependency problem with the GoogleTest release.
|
28
|
+
// GoogleTest referenced this internal file and this internal trait. Since
|
29
|
+
// simultaneous releases are not possible since once release must reference
|
30
|
+
// another, we will temporarily add this back.
|
31
|
+
// https://github.com/google/googletest/blob/v1.14.x/googletest/include/gtest/gtest-printers.h#L119
|
32
|
+
//
|
33
|
+
// This file can be deleted after the next Abseil and GoogleTest release.
|
34
|
+
//
|
35
|
+
// https://github.com/google/googletest/pull/4368#issuecomment-1717699895
|
36
|
+
// https://github.com/google/googletest/pull/4368#issuecomment-1717699895
|
37
|
+
using ::absl::HasAbslStringify;
|
49
38
|
|
50
39
|
} // namespace strings_internal
|
51
40
|
|