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
@@ -74,6 +74,7 @@
|
|
74
74
|
#include "absl/base/internal/endian.h"
|
75
75
|
#include "absl/base/internal/per_thread_tls.h"
|
76
76
|
#include "absl/base/macros.h"
|
77
|
+
#include "absl/base/nullability.h"
|
77
78
|
#include "absl/base/port.h"
|
78
79
|
#include "absl/container/inlined_vector.h"
|
79
80
|
#include "absl/crc/internal/crc_cord_state.h"
|
@@ -86,7 +87,6 @@
|
|
86
87
|
#include "absl/strings/internal/cord_rep_btree.h"
|
87
88
|
#include "absl/strings/internal/cord_rep_btree_reader.h"
|
88
89
|
#include "absl/strings/internal/cord_rep_crc.h"
|
89
|
-
#include "absl/strings/internal/cord_rep_ring.h"
|
90
90
|
#include "absl/strings/internal/cordz_functions.h"
|
91
91
|
#include "absl/strings/internal/cordz_info.h"
|
92
92
|
#include "absl/strings/internal/cordz_statistics.h"
|
@@ -103,7 +103,7 @@ class Cord;
|
|
103
103
|
class CordTestPeer;
|
104
104
|
template <typename Releaser>
|
105
105
|
Cord MakeCordFromExternal(absl::string_view, Releaser&&);
|
106
|
-
void CopyCordToString(const Cord& src, std::string
|
106
|
+
void CopyCordToString(const Cord& src, absl::Nonnull<std::string*> dst);
|
107
107
|
|
108
108
|
// Cord memory accounting modes
|
109
109
|
enum class CordMemoryAccounting {
|
@@ -120,8 +120,8 @@ enum class CordMemoryAccounting {
|
|
120
120
|
//
|
121
121
|
// For example:
|
122
122
|
// absl::Cord cord;
|
123
|
-
// cord.
|
124
|
-
// cord.
|
123
|
+
// cord.Append(some_other_cord);
|
124
|
+
// cord.Append(some_other_cord);
|
125
125
|
// // Counts `some_other_cord` twice:
|
126
126
|
// cord.EstimatedMemoryUsage(kTotal);
|
127
127
|
// // Counts `some_other_cord` once:
|
@@ -362,7 +362,7 @@ class Cord {
|
|
362
362
|
|
363
363
|
// Cord::empty()
|
364
364
|
//
|
365
|
-
// Determines whether the given Cord is empty, returning `true`
|
365
|
+
// Determines whether the given Cord is empty, returning `true` if so.
|
366
366
|
bool empty() const;
|
367
367
|
|
368
368
|
// Cord::EstimatedMemoryUsage()
|
@@ -396,6 +396,12 @@ class Cord {
|
|
396
396
|
bool EndsWith(absl::string_view rhs) const;
|
397
397
|
bool EndsWith(const Cord& rhs) const;
|
398
398
|
|
399
|
+
// Cord::Contains()
|
400
|
+
//
|
401
|
+
// Determines whether the Cord contains the passed string data `rhs`.
|
402
|
+
bool Contains(absl::string_view rhs) const;
|
403
|
+
bool Contains(const Cord& rhs) const;
|
404
|
+
|
399
405
|
// Cord::operator std::string()
|
400
406
|
//
|
401
407
|
// Converts a Cord into a `std::string()`. This operator is marked explicit to
|
@@ -411,7 +417,8 @@ class Cord {
|
|
411
417
|
// guarantee that pointers previously returned by `dst->data()` remain valid
|
412
418
|
// even if `*dst` had enough capacity to hold `src`. If `*dst` is a new
|
413
419
|
// object, prefer to simply use the conversion operator to `std::string`.
|
414
|
-
friend void CopyCordToString(const Cord& src,
|
420
|
+
friend void CopyCordToString(const Cord& src,
|
421
|
+
absl::Nonnull<std::string*> dst);
|
415
422
|
|
416
423
|
class CharIterator;
|
417
424
|
|
@@ -448,7 +455,7 @@ class Cord {
|
|
448
455
|
using iterator_category = std::input_iterator_tag;
|
449
456
|
using value_type = absl::string_view;
|
450
457
|
using difference_type = ptrdiff_t;
|
451
|
-
using pointer = const value_type
|
458
|
+
using pointer = absl::Nonnull<const value_type*>;
|
452
459
|
using reference = value_type;
|
453
460
|
|
454
461
|
ChunkIterator() = default;
|
@@ -468,14 +475,14 @@ class Cord {
|
|
468
475
|
using CordRepBtree = absl::cord_internal::CordRepBtree;
|
469
476
|
using CordRepBtreeReader = absl::cord_internal::CordRepBtreeReader;
|
470
477
|
|
471
|
-
// Constructs a `begin()` iterator from `tree`.
|
472
|
-
explicit ChunkIterator(cord_internal::CordRep
|
478
|
+
// Constructs a `begin()` iterator from `tree`.
|
479
|
+
explicit ChunkIterator(absl::Nonnull<cord_internal::CordRep*> tree);
|
473
480
|
|
474
481
|
// Constructs a `begin()` iterator from `cord`.
|
475
|
-
explicit ChunkIterator(const Cord
|
482
|
+
explicit ChunkIterator(absl::Nonnull<const Cord*> cord);
|
476
483
|
|
477
484
|
// Initializes this instance from a tree. Invoked by constructors.
|
478
|
-
void InitTree(cord_internal::CordRep
|
485
|
+
void InitTree(absl::Nonnull<cord_internal::CordRep*> tree);
|
479
486
|
|
480
487
|
// Removes `n` bytes from `current_chunk_`. Expects `n` to be smaller than
|
481
488
|
// `current_chunk_.size()`.
|
@@ -493,7 +500,7 @@ class Cord {
|
|
493
500
|
// The current leaf, or `nullptr` if the iterator points to short data.
|
494
501
|
// If the current chunk is a substring node, current_leaf_ points to the
|
495
502
|
// underlying flat or external node.
|
496
|
-
absl::cord_internal::CordRep
|
503
|
+
absl::Nullable<absl::cord_internal::CordRep*> current_leaf_ = nullptr;
|
497
504
|
// The number of bytes left in the `Cord` over which we are iterating.
|
498
505
|
size_t bytes_remaining_ = 0;
|
499
506
|
|
@@ -515,7 +522,7 @@ class Cord {
|
|
515
522
|
// absl::string_view s) {
|
516
523
|
// return std::find(c.chunk_begin(), c.chunk_end(), s);
|
517
524
|
// }
|
518
|
-
ChunkIterator chunk_begin() const;
|
525
|
+
ChunkIterator chunk_begin() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
519
526
|
|
520
527
|
// Cord::chunk_end()
|
521
528
|
//
|
@@ -524,7 +531,7 @@ class Cord {
|
|
524
531
|
// Generally, prefer using `Cord::Chunks()` within a range-based for loop for
|
525
532
|
// iterating over the chunks of a Cord. This method may be useful for getting
|
526
533
|
// a `ChunkIterator` where range-based for-loops may not be available.
|
527
|
-
ChunkIterator chunk_end() const;
|
534
|
+
ChunkIterator chunk_end() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
528
535
|
|
529
536
|
//----------------------------------------------------------------------------
|
530
537
|
// Cord::ChunkRange
|
@@ -550,13 +557,13 @@ class Cord {
|
|
550
557
|
using iterator = ChunkIterator;
|
551
558
|
using const_iterator = ChunkIterator;
|
552
559
|
|
553
|
-
explicit ChunkRange(const Cord
|
560
|
+
explicit ChunkRange(absl::Nonnull<const Cord*> cord) : cord_(cord) {}
|
554
561
|
|
555
562
|
ChunkIterator begin() const;
|
556
563
|
ChunkIterator end() const;
|
557
564
|
|
558
565
|
private:
|
559
|
-
const Cord
|
566
|
+
absl::Nonnull<const Cord*> cord_;
|
560
567
|
};
|
561
568
|
|
562
569
|
// Cord::Chunks()
|
@@ -578,7 +585,7 @@ class Cord {
|
|
578
585
|
// // The temporary Cord returned by CordFactory has been destroyed!
|
579
586
|
// }
|
580
587
|
// }
|
581
|
-
ChunkRange Chunks() const;
|
588
|
+
ChunkRange Chunks() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
582
589
|
|
583
590
|
//----------------------------------------------------------------------------
|
584
591
|
// Cord::CharIterator
|
@@ -609,7 +616,7 @@ class Cord {
|
|
609
616
|
using iterator_category = std::input_iterator_tag;
|
610
617
|
using value_type = char;
|
611
618
|
using difference_type = ptrdiff_t;
|
612
|
-
using pointer = const char
|
619
|
+
using pointer = absl::Nonnull<const char*>;
|
613
620
|
using reference = const char&;
|
614
621
|
|
615
622
|
CharIterator() = default;
|
@@ -624,7 +631,8 @@ class Cord {
|
|
624
631
|
friend Cord;
|
625
632
|
|
626
633
|
private:
|
627
|
-
explicit CharIterator(const Cord
|
634
|
+
explicit CharIterator(absl::Nonnull<const Cord*> cord)
|
635
|
+
: chunk_iterator_(cord) {}
|
628
636
|
|
629
637
|
ChunkIterator chunk_iterator_;
|
630
638
|
};
|
@@ -635,14 +643,14 @@ class Cord {
|
|
635
643
|
// advanced as a separate `Cord`. `n_bytes` must be less than or equal to the
|
636
644
|
// number of bytes within the Cord; otherwise, behavior is undefined. It is
|
637
645
|
// valid to pass `char_end()` and `0`.
|
638
|
-
static Cord AdvanceAndRead(CharIterator
|
646
|
+
static Cord AdvanceAndRead(absl::Nonnull<CharIterator*> it, size_t n_bytes);
|
639
647
|
|
640
648
|
// Cord::Advance()
|
641
649
|
//
|
642
650
|
// Advances the `Cord::CharIterator` by `n_bytes`. `n_bytes` must be less than
|
643
651
|
// or equal to the number of bytes remaining within the Cord; otherwise,
|
644
652
|
// behavior is undefined. It is valid to pass `char_end()` and `0`.
|
645
|
-
static void Advance(CharIterator
|
653
|
+
static void Advance(absl::Nonnull<CharIterator*> it, size_t n_bytes);
|
646
654
|
|
647
655
|
// Cord::ChunkRemaining()
|
648
656
|
//
|
@@ -658,7 +666,7 @@ class Cord {
|
|
658
666
|
// Generally, prefer using `Cord::Chars()` within a range-based for loop for
|
659
667
|
// iterating over the chunks of a Cord. This method may be useful for getting
|
660
668
|
// a `CharIterator` where range-based for-loops may not be available.
|
661
|
-
CharIterator char_begin() const;
|
669
|
+
CharIterator char_begin() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
662
670
|
|
663
671
|
// Cord::char_end()
|
664
672
|
//
|
@@ -667,7 +675,7 @@ class Cord {
|
|
667
675
|
// Generally, prefer using `Cord::Chars()` within a range-based for loop for
|
668
676
|
// iterating over the chunks of a Cord. This method may be useful for getting
|
669
677
|
// a `CharIterator` where range-based for-loops are not useful.
|
670
|
-
CharIterator char_end() const;
|
678
|
+
CharIterator char_end() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
671
679
|
|
672
680
|
// Cord::CharRange
|
673
681
|
//
|
@@ -691,13 +699,13 @@ class Cord {
|
|
691
699
|
using iterator = CharIterator;
|
692
700
|
using const_iterator = CharIterator;
|
693
701
|
|
694
|
-
explicit CharRange(const Cord
|
702
|
+
explicit CharRange(absl::Nonnull<const Cord*> cord) : cord_(cord) {}
|
695
703
|
|
696
704
|
CharIterator begin() const;
|
697
705
|
CharIterator end() const;
|
698
706
|
|
699
707
|
private:
|
700
|
-
const Cord
|
708
|
+
absl::Nonnull<const Cord*> cord_;
|
701
709
|
};
|
702
710
|
|
703
711
|
// Cord::Chars()
|
@@ -719,7 +727,7 @@ class Cord {
|
|
719
727
|
// // The temporary Cord returned by CordFactory has been destroyed!
|
720
728
|
// }
|
721
729
|
// }
|
722
|
-
CharRange Chars() const;
|
730
|
+
CharRange Chars() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
723
731
|
|
724
732
|
// Cord::operator[]
|
725
733
|
//
|
@@ -737,20 +745,38 @@ class Cord {
|
|
737
745
|
//
|
738
746
|
// If this cord's representation is a single flat array, returns a
|
739
747
|
// string_view referencing that array. Otherwise returns nullopt.
|
740
|
-
absl::optional<absl::string_view> TryFlat() const
|
748
|
+
absl::optional<absl::string_view> TryFlat() const
|
749
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
741
750
|
|
742
751
|
// Cord::Flatten()
|
743
752
|
//
|
744
753
|
// Flattens the cord into a single array and returns a view of the data.
|
745
754
|
//
|
746
755
|
// If the cord was already flat, the contents are not modified.
|
747
|
-
absl::string_view Flatten();
|
756
|
+
absl::string_view Flatten() ABSL_ATTRIBUTE_LIFETIME_BOUND;
|
757
|
+
|
758
|
+
// Cord::Find()
|
759
|
+
//
|
760
|
+
// Returns an iterator to the first occurrance of the substring `needle`.
|
761
|
+
//
|
762
|
+
// If the substring `needle` does not occur, `Cord::char_end()` is returned.
|
763
|
+
CharIterator Find(absl::string_view needle) const;
|
764
|
+
CharIterator Find(const absl::Cord& needle) const;
|
748
765
|
|
749
766
|
// Supports absl::Cord as a sink object for absl::Format().
|
750
|
-
friend void AbslFormatFlush(absl::Cord
|
767
|
+
friend void AbslFormatFlush(absl::Nonnull<absl::Cord*> cord,
|
768
|
+
absl::string_view part) {
|
751
769
|
cord->Append(part);
|
752
770
|
}
|
753
771
|
|
772
|
+
// Support automatic stringification with absl::StrCat and absl::StrFormat.
|
773
|
+
template <typename Sink>
|
774
|
+
friend void AbslStringify(Sink& sink, const absl::Cord& cord) {
|
775
|
+
for (absl::string_view chunk : cord.Chunks()) {
|
776
|
+
sink.Append(chunk);
|
777
|
+
}
|
778
|
+
}
|
779
|
+
|
754
780
|
// Cord::SetExpectedChecksum()
|
755
781
|
//
|
756
782
|
// Stores a checksum value with this non-empty cord instance, for later
|
@@ -809,7 +835,8 @@ class Cord {
|
|
809
835
|
friend bool operator==(const Cord& lhs, const Cord& rhs);
|
810
836
|
friend bool operator==(const Cord& lhs, absl::string_view rhs);
|
811
837
|
|
812
|
-
friend const CordzInfo
|
838
|
+
friend absl::Nullable<const CordzInfo*> GetCordzInfoForTesting(
|
839
|
+
const Cord& cord);
|
813
840
|
|
814
841
|
// Calls the provided function once for each cord chunk, in order. Unlike
|
815
842
|
// Chunks(), this API will not allocate memory.
|
@@ -836,20 +863,22 @@ class Cord {
|
|
836
863
|
InlineRep& operator=(const InlineRep& src);
|
837
864
|
InlineRep& operator=(InlineRep&& src) noexcept;
|
838
865
|
|
839
|
-
explicit constexpr InlineRep(absl::string_view sv,
|
866
|
+
explicit constexpr InlineRep(absl::string_view sv,
|
867
|
+
absl::Nullable<CordRep*> rep);
|
840
868
|
|
841
|
-
void Swap(InlineRep
|
842
|
-
bool empty() const;
|
869
|
+
void Swap(absl::Nonnull<InlineRep*> rhs);
|
843
870
|
size_t size() const;
|
844
|
-
|
845
|
-
|
846
|
-
|
871
|
+
// Returns nullptr if holding pointer
|
872
|
+
absl::Nullable<const char*> data() const;
|
873
|
+
// Discards pointer, if any
|
874
|
+
void set_data(absl::Nonnull<const char*> data, size_t n);
|
875
|
+
absl::Nonnull<char*> set_data(size_t n); // Write data to the result
|
847
876
|
// Returns nullptr if holding bytes
|
848
|
-
absl::cord_internal::CordRep
|
849
|
-
absl::cord_internal::CordRep
|
850
|
-
const char
|
877
|
+
absl::Nullable<absl::cord_internal::CordRep*> tree() const;
|
878
|
+
absl::Nonnull<absl::cord_internal::CordRep*> as_tree() const;
|
879
|
+
absl::Nonnull<const char*> as_chars() const;
|
851
880
|
// Returns non-null iff was holding a pointer
|
852
|
-
absl::cord_internal::CordRep
|
881
|
+
absl::Nullable<absl::cord_internal::CordRep*> clear();
|
853
882
|
// Converts to pointer if necessary.
|
854
883
|
void reduce_size(size_t n); // REQUIRES: holding data
|
855
884
|
void remove_prefix(size_t n); // REQUIRES: holding data
|
@@ -858,46 +887,52 @@ class Cord {
|
|
858
887
|
|
859
888
|
// Creates a CordRepFlat instance from the current inlined data with `extra'
|
860
889
|
// bytes of desired additional capacity.
|
861
|
-
CordRepFlat
|
890
|
+
absl::Nonnull<CordRepFlat*> MakeFlatWithExtraCapacity(size_t extra);
|
862
891
|
|
863
892
|
// Sets the tree value for this instance. `rep` must not be null.
|
864
893
|
// Requires the current instance to hold a tree, and a lock to be held on
|
865
894
|
// any CordzInfo referenced by this instance. The latter is enforced through
|
866
895
|
// the CordzUpdateScope argument. If the current instance is sampled, then
|
867
896
|
// the CordzInfo instance is updated to reference the new `rep` value.
|
868
|
-
void SetTree(CordRep
|
897
|
+
void SetTree(absl::Nonnull<CordRep*> rep, const CordzUpdateScope& scope);
|
869
898
|
|
870
899
|
// Identical to SetTree(), except that `rep` is allowed to be null, in
|
871
900
|
// which case the current instance is reset to an empty value.
|
872
|
-
void SetTreeOrEmpty(CordRep
|
901
|
+
void SetTreeOrEmpty(absl::Nullable<CordRep*> rep,
|
902
|
+
const CordzUpdateScope& scope);
|
873
903
|
|
874
904
|
// Sets the tree value for this instance, and randomly samples this cord.
|
875
905
|
// This function disregards existing contents in `data_`, and should be
|
876
906
|
// called when a Cord is 'promoted' from an 'uninitialized' or 'inlined'
|
877
907
|
// value to a non-inlined (tree / ring) value.
|
878
|
-
void EmplaceTree(CordRep
|
908
|
+
void EmplaceTree(absl::Nonnull<CordRep*> rep, MethodIdentifier method);
|
879
909
|
|
880
910
|
// Identical to EmplaceTree, except that it copies the parent stack from
|
881
911
|
// the provided `parent` data if the parent is sampled.
|
882
|
-
void EmplaceTree(CordRep
|
912
|
+
void EmplaceTree(absl::Nonnull<CordRep*> rep, const InlineData& parent,
|
883
913
|
MethodIdentifier method);
|
884
914
|
|
885
915
|
// Commits the change of a newly created, or updated `rep` root value into
|
886
916
|
// this cord. `old_rep` indicates the old (inlined or tree) value of the
|
887
917
|
// cord, and determines if the commit invokes SetTree() or EmplaceTree().
|
888
|
-
void CommitTree(const CordRep
|
889
|
-
const CordzUpdateScope& scope,
|
890
|
-
|
891
|
-
|
892
|
-
void
|
893
|
-
|
894
|
-
void
|
895
|
-
|
896
|
-
void
|
918
|
+
void CommitTree(absl::Nullable<const CordRep*> old_rep,
|
919
|
+
absl::Nonnull<CordRep*> rep, const CordzUpdateScope& scope,
|
920
|
+
MethodIdentifier method);
|
921
|
+
|
922
|
+
void AppendTreeToInlined(absl::Nonnull<CordRep*> tree,
|
923
|
+
MethodIdentifier method);
|
924
|
+
void AppendTreeToTree(absl::Nonnull<CordRep*> tree,
|
925
|
+
MethodIdentifier method);
|
926
|
+
void AppendTree(absl::Nonnull<CordRep*> tree, MethodIdentifier method);
|
927
|
+
void PrependTreeToInlined(absl::Nonnull<CordRep*> tree,
|
928
|
+
MethodIdentifier method);
|
929
|
+
void PrependTreeToTree(absl::Nonnull<CordRep*> tree,
|
930
|
+
MethodIdentifier method);
|
931
|
+
void PrependTree(absl::Nonnull<CordRep*> tree, MethodIdentifier method);
|
897
932
|
|
898
933
|
bool IsSame(const InlineRep& other) const { return data_ == other.data_; }
|
899
934
|
|
900
|
-
void CopyTo(std::string
|
935
|
+
void CopyTo(absl::Nonnull<std::string*> dst) const {
|
901
936
|
// memcpy is much faster when operating on a known size. On most supported
|
902
937
|
// platforms, the small string optimization is large enough that resizing
|
903
938
|
// to 15 bytes does not cause a memory allocation.
|
@@ -909,7 +944,7 @@ class Cord {
|
|
909
944
|
}
|
910
945
|
|
911
946
|
// Copies the inline contents into `dst`. Assumes the cord is not empty.
|
912
|
-
void CopyToArray(char
|
947
|
+
void CopyToArray(absl::Nonnull<char*> dst) const;
|
913
948
|
|
914
949
|
bool is_tree() const { return data_.is_tree(); }
|
915
950
|
|
@@ -922,12 +957,12 @@ class Cord {
|
|
922
957
|
}
|
923
958
|
|
924
959
|
// Returns the profiled CordzInfo, or nullptr if not sampled.
|
925
|
-
absl::cord_internal::CordzInfo
|
960
|
+
absl::Nullable<absl::cord_internal::CordzInfo*> cordz_info() const {
|
926
961
|
return data_.cordz_info();
|
927
962
|
}
|
928
963
|
|
929
|
-
// Sets the profiled CordzInfo.
|
930
|
-
void set_cordz_info(cord_internal::CordzInfo
|
964
|
+
// Sets the profiled CordzInfo.
|
965
|
+
void set_cordz_info(absl::Nonnull<cord_internal::CordzInfo*> cordz_info) {
|
931
966
|
assert(cordz_info != nullptr);
|
932
967
|
data_.set_cordz_info(cordz_info);
|
933
968
|
}
|
@@ -959,19 +994,19 @@ class Cord {
|
|
959
994
|
InlineRep contents_;
|
960
995
|
|
961
996
|
// Helper for GetFlat() and TryFlat().
|
962
|
-
static bool GetFlatAux(absl::cord_internal::CordRep
|
963
|
-
absl::string_view
|
997
|
+
static bool GetFlatAux(absl::Nonnull<absl::cord_internal::CordRep*> rep,
|
998
|
+
absl::Nonnull<absl::string_view*> fragment);
|
964
999
|
|
965
1000
|
// Helper for ForEachChunk().
|
966
1001
|
static void ForEachChunkAux(
|
967
|
-
absl::cord_internal::CordRep
|
1002
|
+
absl::Nonnull<absl::cord_internal::CordRep*> rep,
|
968
1003
|
absl::FunctionRef<void(absl::string_view)> callback);
|
969
1004
|
|
970
1005
|
// The destructor for non-empty Cords.
|
971
1006
|
void DestroyCordSlow();
|
972
1007
|
|
973
1008
|
// Out-of-line implementation of slower parts of logic.
|
974
|
-
void CopyToArraySlowPath(char
|
1009
|
+
void CopyToArraySlowPath(absl::Nonnull<char*> dst) const;
|
975
1010
|
int CompareSlowPath(absl::string_view rhs, size_t compared_size,
|
976
1011
|
size_t size_to_compare) const;
|
977
1012
|
int CompareSlowPath(const Cord& rhs, size_t compared_size,
|
@@ -988,8 +1023,8 @@ class Cord {
|
|
988
1023
|
|
989
1024
|
// Returns a new reference to contents_.tree(), or steals an existing
|
990
1025
|
// reference if called on an rvalue.
|
991
|
-
absl::cord_internal::CordRep
|
992
|
-
absl::cord_internal::CordRep
|
1026
|
+
absl::Nonnull<absl::cord_internal::CordRep*> TakeRep() const&;
|
1027
|
+
absl::Nonnull<absl::cord_internal::CordRep*> TakeRep() &&;
|
993
1028
|
|
994
1029
|
// Helper for Append().
|
995
1030
|
template <typename C>
|
@@ -1026,7 +1061,10 @@ class Cord {
|
|
1026
1061
|
|
1027
1062
|
friend class CrcCord;
|
1028
1063
|
void SetCrcCordState(crc_internal::CrcCordState state);
|
1029
|
-
const crc_internal::CrcCordState
|
1064
|
+
absl::Nullable<const crc_internal::CrcCordState*> MaybeGetCrcCordState()
|
1065
|
+
const;
|
1066
|
+
|
1067
|
+
CharIterator FindImpl(CharIterator it, absl::string_view needle) const;
|
1030
1068
|
};
|
1031
1069
|
|
1032
1070
|
ABSL_NAMESPACE_END
|
@@ -1045,13 +1083,15 @@ namespace cord_internal {
|
|
1045
1083
|
|
1046
1084
|
// Does non-template-specific `CordRepExternal` initialization.
|
1047
1085
|
// Requires `data` to be non-empty.
|
1048
|
-
void InitializeCordRepExternal(absl::string_view data,
|
1086
|
+
void InitializeCordRepExternal(absl::string_view data,
|
1087
|
+
absl::Nonnull<CordRepExternal*> rep);
|
1049
1088
|
|
1050
1089
|
// Creates a new `CordRep` that owns `data` and `releaser` and returns a pointer
|
1051
1090
|
// to it. Requires `data` to be non-empty.
|
1052
1091
|
template <typename Releaser>
|
1053
1092
|
// NOLINTNEXTLINE - suppress clang-tidy raw pointer return.
|
1054
|
-
CordRep
|
1093
|
+
absl::Nonnull<CordRep*> NewExternalRep(absl::string_view data,
|
1094
|
+
Releaser&& releaser) {
|
1055
1095
|
assert(!data.empty());
|
1056
1096
|
using ReleaserType = absl::decay_t<Releaser>;
|
1057
1097
|
CordRepExternal* rep = new CordRepExternalImpl<ReleaserType>(
|
@@ -1063,7 +1103,7 @@ CordRep* NewExternalRep(absl::string_view data, Releaser&& releaser) {
|
|
1063
1103
|
// Overload for function reference types that dispatches using a function
|
1064
1104
|
// pointer because there are no `alignof()` or `sizeof()` a function reference.
|
1065
1105
|
// NOLINTNEXTLINE - suppress clang-tidy raw pointer return.
|
1066
|
-
inline CordRep
|
1106
|
+
inline absl::Nonnull<CordRep*> NewExternalRep(absl::string_view data,
|
1067
1107
|
void (&releaser)(absl::string_view)) {
|
1068
1108
|
return NewExternalRep(data, &releaser);
|
1069
1109
|
}
|
@@ -1086,7 +1126,8 @@ Cord MakeCordFromExternal(absl::string_view data, Releaser&& releaser) {
|
|
1086
1126
|
return cord;
|
1087
1127
|
}
|
1088
1128
|
|
1089
|
-
constexpr Cord::InlineRep::InlineRep(absl::string_view sv,
|
1129
|
+
constexpr Cord::InlineRep::InlineRep(absl::string_view sv,
|
1130
|
+
absl::Nullable<CordRep*> rep)
|
1090
1131
|
: data_(sv, rep) {}
|
1091
1132
|
|
1092
1133
|
inline Cord::InlineRep::InlineRep(const Cord::InlineRep& src)
|
@@ -1125,28 +1166,30 @@ inline Cord::InlineRep& Cord::InlineRep::operator=(
|
|
1125
1166
|
return *this;
|
1126
1167
|
}
|
1127
1168
|
|
1128
|
-
inline void Cord::InlineRep::Swap(Cord::InlineRep
|
1169
|
+
inline void Cord::InlineRep::Swap(absl::Nonnull<Cord::InlineRep*> rhs) {
|
1129
1170
|
if (rhs == this) {
|
1130
1171
|
return;
|
1131
1172
|
}
|
1132
1173
|
std::swap(data_, rhs->data_);
|
1133
1174
|
}
|
1134
1175
|
|
1135
|
-
inline const char
|
1176
|
+
inline absl::Nullable<const char*> Cord::InlineRep::data() const {
|
1136
1177
|
return is_tree() ? nullptr : data_.as_chars();
|
1137
1178
|
}
|
1138
1179
|
|
1139
|
-
inline const char
|
1180
|
+
inline absl::Nonnull<const char*> Cord::InlineRep::as_chars() const {
|
1140
1181
|
assert(!data_.is_tree());
|
1141
1182
|
return data_.as_chars();
|
1142
1183
|
}
|
1143
1184
|
|
1144
|
-
inline absl::cord_internal::CordRep
|
1185
|
+
inline absl::Nonnull<absl::cord_internal::CordRep*> Cord::InlineRep::as_tree()
|
1186
|
+
const {
|
1145
1187
|
assert(data_.is_tree());
|
1146
1188
|
return data_.as_tree();
|
1147
1189
|
}
|
1148
1190
|
|
1149
|
-
inline absl::cord_internal::CordRep
|
1191
|
+
inline absl::Nullable<absl::cord_internal::CordRep*> Cord::InlineRep::tree()
|
1192
|
+
const {
|
1150
1193
|
if (is_tree()) {
|
1151
1194
|
return as_tree();
|
1152
1195
|
} else {
|
@@ -1154,14 +1197,12 @@ inline absl::cord_internal::CordRep* Cord::InlineRep::tree() const {
|
|
1154
1197
|
}
|
1155
1198
|
}
|
1156
1199
|
|
1157
|
-
inline bool Cord::InlineRep::empty() const { return data_.is_empty(); }
|
1158
|
-
|
1159
1200
|
inline size_t Cord::InlineRep::size() const {
|
1160
1201
|
return is_tree() ? as_tree()->length : inline_size();
|
1161
1202
|
}
|
1162
1203
|
|
1163
|
-
inline cord_internal::CordRepFlat
|
1164
|
-
|
1204
|
+
inline absl::Nonnull<cord_internal::CordRepFlat*>
|
1205
|
+
Cord::InlineRep::MakeFlatWithExtraCapacity(size_t extra) {
|
1165
1206
|
static_assert(cord_internal::kMinFlatLength >= sizeof(data_), "");
|
1166
1207
|
size_t len = data_.inline_size();
|
1167
1208
|
auto* result = CordRepFlat::New(len + extra);
|
@@ -1170,20 +1211,21 @@ inline cord_internal::CordRepFlat* Cord::InlineRep::MakeFlatWithExtraCapacity(
|
|
1170
1211
|
return result;
|
1171
1212
|
}
|
1172
1213
|
|
1173
|
-
inline void Cord::InlineRep::EmplaceTree(CordRep
|
1214
|
+
inline void Cord::InlineRep::EmplaceTree(absl::Nonnull<CordRep*> rep,
|
1174
1215
|
MethodIdentifier method) {
|
1175
1216
|
assert(rep);
|
1176
1217
|
data_.make_tree(rep);
|
1177
1218
|
CordzInfo::MaybeTrackCord(data_, method);
|
1178
1219
|
}
|
1179
1220
|
|
1180
|
-
inline void Cord::InlineRep::EmplaceTree(CordRep
|
1221
|
+
inline void Cord::InlineRep::EmplaceTree(absl::Nonnull<CordRep*> rep,
|
1222
|
+
const InlineData& parent,
|
1181
1223
|
MethodIdentifier method) {
|
1182
1224
|
data_.make_tree(rep);
|
1183
1225
|
CordzInfo::MaybeTrackCord(data_, parent, method);
|
1184
1226
|
}
|
1185
1227
|
|
1186
|
-
inline void Cord::InlineRep::SetTree(CordRep
|
1228
|
+
inline void Cord::InlineRep::SetTree(absl::Nonnull<CordRep*> rep,
|
1187
1229
|
const CordzUpdateScope& scope) {
|
1188
1230
|
assert(rep);
|
1189
1231
|
assert(data_.is_tree());
|
@@ -1191,7 +1233,7 @@ inline void Cord::InlineRep::SetTree(CordRep* rep,
|
|
1191
1233
|
scope.SetCordRep(rep);
|
1192
1234
|
}
|
1193
1235
|
|
1194
|
-
inline void Cord::InlineRep::SetTreeOrEmpty(CordRep
|
1236
|
+
inline void Cord::InlineRep::SetTreeOrEmpty(absl::Nullable<CordRep*> rep,
|
1195
1237
|
const CordzUpdateScope& scope) {
|
1196
1238
|
assert(data_.is_tree());
|
1197
1239
|
if (rep) {
|
@@ -1202,7 +1244,8 @@ inline void Cord::InlineRep::SetTreeOrEmpty(CordRep* rep,
|
|
1202
1244
|
scope.SetCordRep(rep);
|
1203
1245
|
}
|
1204
1246
|
|
1205
|
-
inline void Cord::InlineRep::CommitTree(const CordRep
|
1247
|
+
inline void Cord::InlineRep::CommitTree(absl::Nullable<const CordRep*> old_rep,
|
1248
|
+
absl::Nonnull<CordRep*> rep,
|
1206
1249
|
const CordzUpdateScope& scope,
|
1207
1250
|
MethodIdentifier method) {
|
1208
1251
|
if (old_rep) {
|
@@ -1212,7 +1255,7 @@ inline void Cord::InlineRep::CommitTree(const CordRep* old_rep, CordRep* rep,
|
|
1212
1255
|
}
|
1213
1256
|
}
|
1214
1257
|
|
1215
|
-
inline absl::cord_internal::CordRep
|
1258
|
+
inline absl::Nullable<absl::cord_internal::CordRep*> Cord::InlineRep::clear() {
|
1216
1259
|
if (is_tree()) {
|
1217
1260
|
CordzInfo::MaybeUntrackCord(cordz_info());
|
1218
1261
|
}
|
@@ -1221,7 +1264,7 @@ inline absl::cord_internal::CordRep* Cord::InlineRep::clear() {
|
|
1221
1264
|
return result;
|
1222
1265
|
}
|
1223
1266
|
|
1224
|
-
inline void Cord::InlineRep::CopyToArray(char
|
1267
|
+
inline void Cord::InlineRep::CopyToArray(absl::Nonnull<char*> dst) const {
|
1225
1268
|
assert(!is_tree());
|
1226
1269
|
size_t n = inline_size();
|
1227
1270
|
assert(n != 0);
|
@@ -1402,7 +1445,8 @@ inline bool Cord::StartsWith(absl::string_view rhs) const {
|
|
1402
1445
|
return EqualsImpl(rhs, rhs_size);
|
1403
1446
|
}
|
1404
1447
|
|
1405
|
-
inline void Cord::ChunkIterator::InitTree(
|
1448
|
+
inline void Cord::ChunkIterator::InitTree(
|
1449
|
+
absl::Nonnull<cord_internal::CordRep*> tree) {
|
1406
1450
|
tree = cord_internal::SkipCrcNode(tree);
|
1407
1451
|
if (tree->tag == cord_internal::BTREE) {
|
1408
1452
|
current_chunk_ = btree_reader_.Init(tree->btree());
|
@@ -1412,12 +1456,13 @@ inline void Cord::ChunkIterator::InitTree(cord_internal::CordRep* tree) {
|
|
1412
1456
|
}
|
1413
1457
|
}
|
1414
1458
|
|
1415
|
-
inline Cord::ChunkIterator::ChunkIterator(
|
1459
|
+
inline Cord::ChunkIterator::ChunkIterator(
|
1460
|
+
absl::Nonnull<cord_internal::CordRep*> tree) {
|
1416
1461
|
bytes_remaining_ = tree->length;
|
1417
1462
|
InitTree(tree);
|
1418
1463
|
}
|
1419
1464
|
|
1420
|
-
inline Cord::ChunkIterator::ChunkIterator(const Cord
|
1465
|
+
inline Cord::ChunkIterator::ChunkIterator(absl::Nonnull<const Cord*> cord) {
|
1421
1466
|
if (CordRep* tree = cord->contents_.tree()) {
|
1422
1467
|
bytes_remaining_ = tree->length;
|
1423
1468
|
if (ABSL_PREDICT_TRUE(bytes_remaining_ != 0)) {
|
@@ -1557,12 +1602,13 @@ inline Cord::CharIterator::pointer Cord::CharIterator::operator->() const {
|
|
1557
1602
|
return chunk_iterator_->data();
|
1558
1603
|
}
|
1559
1604
|
|
1560
|
-
inline Cord Cord::AdvanceAndRead(CharIterator
|
1605
|
+
inline Cord Cord::AdvanceAndRead(absl::Nonnull<CharIterator*> it,
|
1606
|
+
size_t n_bytes) {
|
1561
1607
|
assert(it != nullptr);
|
1562
1608
|
return it->chunk_iterator_.AdvanceAndReadBytes(n_bytes);
|
1563
1609
|
}
|
1564
1610
|
|
1565
|
-
inline void Cord::Advance(CharIterator
|
1611
|
+
inline void Cord::Advance(absl::Nonnull<CharIterator*> it, size_t n_bytes) {
|
1566
1612
|
assert(it != nullptr);
|
1567
1613
|
it->chunk_iterator_.AdvanceBytes(n_bytes);
|
1568
1614
|
}
|
@@ -1618,7 +1664,7 @@ inline bool operator>=(const Cord& x, const Cord& y) {
|
|
1618
1664
|
// Nonmember Cord-to-absl::string_view relational operators.
|
1619
1665
|
//
|
1620
1666
|
// Due to implicit conversions, these also enable comparisons of Cord with
|
1621
|
-
//
|
1667
|
+
// std::string and const char*.
|
1622
1668
|
inline bool operator==(const Cord& lhs, absl::string_view rhs) {
|
1623
1669
|
size_t lhs_size = lhs.size();
|
1624
1670
|
size_t rhs_size = rhs.size();
|