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
@@ -1,773 +0,0 @@
|
|
1
|
-
// Copyright 2020 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
|
-
#include "absl/strings/internal/cord_rep_ring.h"
|
15
|
-
|
16
|
-
#include <cassert>
|
17
|
-
#include <cstddef>
|
18
|
-
#include <cstdint>
|
19
|
-
#include <iostream>
|
20
|
-
#include <limits>
|
21
|
-
#include <memory>
|
22
|
-
#include <string>
|
23
|
-
|
24
|
-
#include "absl/base/internal/raw_logging.h"
|
25
|
-
#include "absl/base/internal/throw_delegate.h"
|
26
|
-
#include "absl/base/macros.h"
|
27
|
-
#include "absl/container/inlined_vector.h"
|
28
|
-
#include "absl/strings/internal/cord_internal.h"
|
29
|
-
#include "absl/strings/internal/cord_rep_consume.h"
|
30
|
-
#include "absl/strings/internal/cord_rep_flat.h"
|
31
|
-
|
32
|
-
namespace absl {
|
33
|
-
ABSL_NAMESPACE_BEGIN
|
34
|
-
namespace cord_internal {
|
35
|
-
|
36
|
-
namespace {
|
37
|
-
|
38
|
-
using index_type = CordRepRing::index_type;
|
39
|
-
|
40
|
-
enum class Direction { kForward, kReversed };
|
41
|
-
|
42
|
-
inline bool IsFlatOrExternal(CordRep* rep) {
|
43
|
-
return rep->IsFlat() || rep->IsExternal();
|
44
|
-
}
|
45
|
-
|
46
|
-
// Verifies that n + extra <= kMaxCapacity: throws std::length_error otherwise.
|
47
|
-
inline void CheckCapacity(size_t n, size_t extra) {
|
48
|
-
if (ABSL_PREDICT_FALSE(extra > CordRepRing::kMaxCapacity - n)) {
|
49
|
-
base_internal::ThrowStdLengthError("Maximum capacity exceeded");
|
50
|
-
}
|
51
|
-
}
|
52
|
-
|
53
|
-
// Creates a flat from the provided string data, allocating up to `extra`
|
54
|
-
// capacity in the returned flat depending on kMaxFlatLength limitations.
|
55
|
-
// Requires `len` to be less or equal to `kMaxFlatLength`
|
56
|
-
CordRepFlat* CreateFlat(const char* s, size_t n, size_t extra = 0) { // NOLINT
|
57
|
-
assert(n <= kMaxFlatLength);
|
58
|
-
auto* rep = CordRepFlat::New(n + extra);
|
59
|
-
rep->length = n;
|
60
|
-
memcpy(rep->Data(), s, n);
|
61
|
-
return rep;
|
62
|
-
}
|
63
|
-
|
64
|
-
// Unrefs the entries in `[head, tail)`.
|
65
|
-
// Requires all entries to be a FLAT or EXTERNAL node.
|
66
|
-
void UnrefEntries(const CordRepRing* rep, index_type head, index_type tail) {
|
67
|
-
rep->ForEach(head, tail, [rep](index_type ix) {
|
68
|
-
CordRep* child = rep->entry_child(ix);
|
69
|
-
if (!child->refcount.Decrement()) {
|
70
|
-
if (child->tag >= FLAT) {
|
71
|
-
CordRepFlat::Delete(child->flat());
|
72
|
-
} else {
|
73
|
-
CordRepExternal::Delete(child->external());
|
74
|
-
}
|
75
|
-
}
|
76
|
-
});
|
77
|
-
}
|
78
|
-
|
79
|
-
} // namespace
|
80
|
-
|
81
|
-
std::ostream& operator<<(std::ostream& s, const CordRepRing& rep) {
|
82
|
-
// Note: 'pos' values are defined as size_t (for overflow reasons), but that
|
83
|
-
// prints really awkward for small prepended values such as -5. ssize_t is not
|
84
|
-
// portable (POSIX), so we use ptrdiff_t instead to cast to signed values.
|
85
|
-
s << " CordRepRing(" << &rep << ", length = " << rep.length
|
86
|
-
<< ", head = " << rep.head_ << ", tail = " << rep.tail_
|
87
|
-
<< ", cap = " << rep.capacity_ << ", rc = " << rep.refcount.Get()
|
88
|
-
<< ", begin_pos_ = " << static_cast<ptrdiff_t>(rep.begin_pos_) << ") {\n";
|
89
|
-
CordRepRing::index_type head = rep.head();
|
90
|
-
do {
|
91
|
-
CordRep* child = rep.entry_child(head);
|
92
|
-
s << " entry[" << head << "] length = " << rep.entry_length(head)
|
93
|
-
<< ", child " << child << ", clen = " << child->length
|
94
|
-
<< ", tag = " << static_cast<int>(child->tag)
|
95
|
-
<< ", rc = " << child->refcount.Get()
|
96
|
-
<< ", offset = " << rep.entry_data_offset(head)
|
97
|
-
<< ", end_pos = " << static_cast<ptrdiff_t>(rep.entry_end_pos(head))
|
98
|
-
<< "\n";
|
99
|
-
head = rep.advance(head);
|
100
|
-
} while (head != rep.tail());
|
101
|
-
return s << "}\n";
|
102
|
-
}
|
103
|
-
|
104
|
-
void CordRepRing::AddDataOffset(index_type index, size_t n) {
|
105
|
-
entry_data_offset()[index] += static_cast<offset_type>(n);
|
106
|
-
}
|
107
|
-
|
108
|
-
void CordRepRing::SubLength(index_type index, size_t n) {
|
109
|
-
entry_end_pos()[index] -= n;
|
110
|
-
}
|
111
|
-
|
112
|
-
class CordRepRing::Filler {
|
113
|
-
public:
|
114
|
-
Filler(CordRepRing* rep, index_type pos) : rep_(rep), head_(pos), pos_(pos) {}
|
115
|
-
|
116
|
-
index_type head() const { return head_; }
|
117
|
-
index_type pos() const { return pos_; }
|
118
|
-
|
119
|
-
void Add(CordRep* child, size_t offset, pos_type end_pos) {
|
120
|
-
rep_->entry_end_pos()[pos_] = end_pos;
|
121
|
-
rep_->entry_child()[pos_] = child;
|
122
|
-
rep_->entry_data_offset()[pos_] = static_cast<offset_type>(offset);
|
123
|
-
pos_ = rep_->advance(pos_);
|
124
|
-
}
|
125
|
-
|
126
|
-
private:
|
127
|
-
CordRepRing* rep_;
|
128
|
-
index_type head_;
|
129
|
-
index_type pos_;
|
130
|
-
};
|
131
|
-
|
132
|
-
#ifdef ABSL_INTERNAL_NEED_REDUNDANT_CONSTEXPR_DECL
|
133
|
-
constexpr size_t CordRepRing::kMaxCapacity;
|
134
|
-
#endif
|
135
|
-
|
136
|
-
bool CordRepRing::IsValid(std::ostream& output) const {
|
137
|
-
if (capacity_ == 0) {
|
138
|
-
output << "capacity == 0";
|
139
|
-
return false;
|
140
|
-
}
|
141
|
-
|
142
|
-
if (head_ >= capacity_ || tail_ >= capacity_) {
|
143
|
-
output << "head " << head_ << " and/or tail " << tail_ << "exceed capacity "
|
144
|
-
<< capacity_;
|
145
|
-
return false;
|
146
|
-
}
|
147
|
-
|
148
|
-
const index_type back = retreat(tail_);
|
149
|
-
size_t pos_length = Distance(begin_pos_, entry_end_pos(back));
|
150
|
-
if (pos_length != length) {
|
151
|
-
output << "length " << length << " does not match positional length "
|
152
|
-
<< pos_length << " from begin_pos " << begin_pos_ << " and entry["
|
153
|
-
<< back << "].end_pos " << entry_end_pos(back);
|
154
|
-
return false;
|
155
|
-
}
|
156
|
-
|
157
|
-
index_type head = head_;
|
158
|
-
pos_type begin_pos = begin_pos_;
|
159
|
-
do {
|
160
|
-
pos_type end_pos = entry_end_pos(head);
|
161
|
-
size_t entry_length = Distance(begin_pos, end_pos);
|
162
|
-
if (entry_length == 0) {
|
163
|
-
output << "entry[" << head << "] has an invalid length " << entry_length
|
164
|
-
<< " from begin_pos " << begin_pos << " and end_pos " << end_pos;
|
165
|
-
return false;
|
166
|
-
}
|
167
|
-
|
168
|
-
CordRep* child = entry_child(head);
|
169
|
-
if (child == nullptr) {
|
170
|
-
output << "entry[" << head << "].child == nullptr";
|
171
|
-
return false;
|
172
|
-
}
|
173
|
-
if (child->tag < FLAT && child->tag != EXTERNAL) {
|
174
|
-
output << "entry[" << head << "].child has an invalid tag "
|
175
|
-
<< static_cast<int>(child->tag);
|
176
|
-
return false;
|
177
|
-
}
|
178
|
-
|
179
|
-
size_t offset = entry_data_offset(head);
|
180
|
-
if (offset >= child->length || entry_length > child->length - offset) {
|
181
|
-
output << "entry[" << head << "] has offset " << offset
|
182
|
-
<< " and entry length " << entry_length
|
183
|
-
<< " which are outside of the child's length of " << child->length;
|
184
|
-
return false;
|
185
|
-
}
|
186
|
-
|
187
|
-
begin_pos = end_pos;
|
188
|
-
head = advance(head);
|
189
|
-
} while (head != tail_);
|
190
|
-
|
191
|
-
return true;
|
192
|
-
}
|
193
|
-
|
194
|
-
#ifdef EXTRA_CORD_RING_VALIDATION
|
195
|
-
CordRepRing* CordRepRing::Validate(CordRepRing* rep, const char* file,
|
196
|
-
int line) {
|
197
|
-
if (!rep->IsValid(std::cerr)) {
|
198
|
-
std::cerr << "\nERROR: CordRepRing corrupted";
|
199
|
-
if (line) std::cerr << " at line " << line;
|
200
|
-
if (file) std::cerr << " in file " << file;
|
201
|
-
std::cerr << "\nContent = " << *rep;
|
202
|
-
abort();
|
203
|
-
}
|
204
|
-
return rep;
|
205
|
-
}
|
206
|
-
#endif // EXTRA_CORD_RING_VALIDATION
|
207
|
-
|
208
|
-
CordRepRing* CordRepRing::New(size_t capacity, size_t extra) {
|
209
|
-
CheckCapacity(capacity, extra);
|
210
|
-
|
211
|
-
size_t size = AllocSize(capacity += extra);
|
212
|
-
void* mem = ::operator new(size);
|
213
|
-
auto* rep = new (mem) CordRepRing(static_cast<index_type>(capacity));
|
214
|
-
rep->tag = RING;
|
215
|
-
rep->capacity_ = static_cast<index_type>(capacity);
|
216
|
-
rep->begin_pos_ = 0;
|
217
|
-
return rep;
|
218
|
-
}
|
219
|
-
|
220
|
-
void CordRepRing::SetCapacityForTesting(size_t capacity) {
|
221
|
-
// Adjust for the changed layout
|
222
|
-
assert(capacity <= capacity_);
|
223
|
-
assert(head() == 0 || head() < tail());
|
224
|
-
memmove(Layout::Partial(capacity).Pointer<1>(data_) + head(),
|
225
|
-
Layout::Partial(capacity_).Pointer<1>(data_) + head(),
|
226
|
-
entries() * sizeof(Layout::ElementType<1>));
|
227
|
-
memmove(Layout::Partial(capacity, capacity).Pointer<2>(data_) + head(),
|
228
|
-
Layout::Partial(capacity_, capacity_).Pointer<2>(data_) + head(),
|
229
|
-
entries() * sizeof(Layout::ElementType<2>));
|
230
|
-
capacity_ = static_cast<index_type>(capacity);
|
231
|
-
}
|
232
|
-
|
233
|
-
void CordRepRing::Delete(CordRepRing* rep) {
|
234
|
-
assert(rep != nullptr && rep->IsRing());
|
235
|
-
#if defined(__cpp_sized_deallocation)
|
236
|
-
size_t size = AllocSize(rep->capacity_);
|
237
|
-
rep->~CordRepRing();
|
238
|
-
::operator delete(rep, size);
|
239
|
-
#else
|
240
|
-
rep->~CordRepRing();
|
241
|
-
::operator delete(rep);
|
242
|
-
#endif
|
243
|
-
}
|
244
|
-
|
245
|
-
void CordRepRing::Destroy(CordRepRing* rep) {
|
246
|
-
UnrefEntries(rep, rep->head(), rep->tail());
|
247
|
-
Delete(rep);
|
248
|
-
}
|
249
|
-
|
250
|
-
template <bool ref>
|
251
|
-
void CordRepRing::Fill(const CordRepRing* src, index_type head,
|
252
|
-
index_type tail) {
|
253
|
-
this->length = src->length;
|
254
|
-
head_ = 0;
|
255
|
-
tail_ = advance(0, src->entries(head, tail));
|
256
|
-
begin_pos_ = src->begin_pos_;
|
257
|
-
|
258
|
-
// TODO(mvels): there may be opportunities here for large buffers.
|
259
|
-
auto* dst_pos = entry_end_pos();
|
260
|
-
auto* dst_child = entry_child();
|
261
|
-
auto* dst_offset = entry_data_offset();
|
262
|
-
src->ForEach(head, tail, [&](index_type index) {
|
263
|
-
*dst_pos++ = src->entry_end_pos(index);
|
264
|
-
CordRep* child = src->entry_child(index);
|
265
|
-
*dst_child++ = ref ? CordRep::Ref(child) : child;
|
266
|
-
*dst_offset++ = src->entry_data_offset(index);
|
267
|
-
});
|
268
|
-
}
|
269
|
-
|
270
|
-
CordRepRing* CordRepRing::Copy(CordRepRing* rep, index_type head,
|
271
|
-
index_type tail, size_t extra) {
|
272
|
-
CordRepRing* newrep = CordRepRing::New(rep->entries(head, tail), extra);
|
273
|
-
newrep->Fill<true>(rep, head, tail);
|
274
|
-
CordRep::Unref(rep);
|
275
|
-
return newrep;
|
276
|
-
}
|
277
|
-
|
278
|
-
CordRepRing* CordRepRing::Mutable(CordRepRing* rep, size_t extra) {
|
279
|
-
// Get current number of entries, and check for max capacity.
|
280
|
-
size_t entries = rep->entries();
|
281
|
-
|
282
|
-
if (!rep->refcount.IsOne()) {
|
283
|
-
return Copy(rep, rep->head(), rep->tail(), extra);
|
284
|
-
} else if (entries + extra > rep->capacity()) {
|
285
|
-
const size_t min_grow = rep->capacity() + rep->capacity() / 2;
|
286
|
-
const size_t min_extra = (std::max)(extra, min_grow - entries);
|
287
|
-
CordRepRing* newrep = CordRepRing::New(entries, min_extra);
|
288
|
-
newrep->Fill<false>(rep, rep->head(), rep->tail());
|
289
|
-
CordRepRing::Delete(rep);
|
290
|
-
return newrep;
|
291
|
-
} else {
|
292
|
-
return rep;
|
293
|
-
}
|
294
|
-
}
|
295
|
-
|
296
|
-
Span<char> CordRepRing::GetAppendBuffer(size_t size) {
|
297
|
-
assert(refcount.IsOne());
|
298
|
-
index_type back = retreat(tail_);
|
299
|
-
CordRep* child = entry_child(back);
|
300
|
-
if (child->tag >= FLAT && child->refcount.IsOne()) {
|
301
|
-
size_t capacity = child->flat()->Capacity();
|
302
|
-
pos_type end_pos = entry_end_pos(back);
|
303
|
-
size_t data_offset = entry_data_offset(back);
|
304
|
-
size_t entry_length = Distance(entry_begin_pos(back), end_pos);
|
305
|
-
size_t used = data_offset + entry_length;
|
306
|
-
if (size_t n = (std::min)(capacity - used, size)) {
|
307
|
-
child->length = data_offset + entry_length + n;
|
308
|
-
entry_end_pos()[back] = end_pos + n;
|
309
|
-
this->length += n;
|
310
|
-
return {child->flat()->Data() + used, n};
|
311
|
-
}
|
312
|
-
}
|
313
|
-
return {nullptr, 0};
|
314
|
-
}
|
315
|
-
|
316
|
-
Span<char> CordRepRing::GetPrependBuffer(size_t size) {
|
317
|
-
assert(refcount.IsOne());
|
318
|
-
CordRep* child = entry_child(head_);
|
319
|
-
size_t data_offset = entry_data_offset(head_);
|
320
|
-
if (data_offset && child->refcount.IsOne() && child->tag >= FLAT) {
|
321
|
-
size_t n = (std::min)(data_offset, size);
|
322
|
-
this->length += n;
|
323
|
-
begin_pos_ -= n;
|
324
|
-
data_offset -= n;
|
325
|
-
entry_data_offset()[head_] = static_cast<offset_type>(data_offset);
|
326
|
-
return {child->flat()->Data() + data_offset, n};
|
327
|
-
}
|
328
|
-
return {nullptr, 0};
|
329
|
-
}
|
330
|
-
|
331
|
-
CordRepRing* CordRepRing::CreateFromLeaf(CordRep* child, size_t offset,
|
332
|
-
size_t len, size_t extra) {
|
333
|
-
CordRepRing* rep = CordRepRing::New(1, extra);
|
334
|
-
rep->head_ = 0;
|
335
|
-
rep->tail_ = rep->advance(0);
|
336
|
-
rep->length = len;
|
337
|
-
rep->entry_end_pos()[0] = len;
|
338
|
-
rep->entry_child()[0] = child;
|
339
|
-
rep->entry_data_offset()[0] = static_cast<offset_type>(offset);
|
340
|
-
return Validate(rep);
|
341
|
-
}
|
342
|
-
|
343
|
-
CordRepRing* CordRepRing::CreateSlow(CordRep* child, size_t extra) {
|
344
|
-
CordRepRing* rep = nullptr;
|
345
|
-
Consume(child, [&](CordRep* child_arg, size_t offset, size_t len) {
|
346
|
-
if (IsFlatOrExternal(child_arg)) {
|
347
|
-
rep = rep ? AppendLeaf(rep, child_arg, offset, len)
|
348
|
-
: CreateFromLeaf(child_arg, offset, len, extra);
|
349
|
-
} else if (rep) {
|
350
|
-
rep = AddRing<AddMode::kAppend>(rep, child_arg->ring(), offset, len);
|
351
|
-
} else if (offset == 0 && child_arg->length == len) {
|
352
|
-
rep = Mutable(child_arg->ring(), extra);
|
353
|
-
} else {
|
354
|
-
rep = SubRing(child_arg->ring(), offset, len, extra);
|
355
|
-
}
|
356
|
-
});
|
357
|
-
return Validate(rep, nullptr, __LINE__);
|
358
|
-
}
|
359
|
-
|
360
|
-
CordRepRing* CordRepRing::Create(CordRep* child, size_t extra) {
|
361
|
-
size_t length = child->length;
|
362
|
-
if (IsFlatOrExternal(child)) {
|
363
|
-
return CreateFromLeaf(child, 0, length, extra);
|
364
|
-
}
|
365
|
-
if (child->IsRing()) {
|
366
|
-
return Mutable(child->ring(), extra);
|
367
|
-
}
|
368
|
-
return CreateSlow(child, extra);
|
369
|
-
}
|
370
|
-
|
371
|
-
template <CordRepRing::AddMode mode>
|
372
|
-
CordRepRing* CordRepRing::AddRing(CordRepRing* rep, CordRepRing* ring,
|
373
|
-
size_t offset, size_t len) {
|
374
|
-
assert(offset < ring->length);
|
375
|
-
constexpr bool append = mode == AddMode::kAppend;
|
376
|
-
Position head = ring->Find(offset);
|
377
|
-
Position tail = ring->FindTail(head.index, offset + len);
|
378
|
-
const index_type entries = ring->entries(head.index, tail.index);
|
379
|
-
|
380
|
-
rep = Mutable(rep, entries);
|
381
|
-
|
382
|
-
// The delta for making ring[head].end_pos into 'len - offset'
|
383
|
-
const pos_type delta_length =
|
384
|
-
(append ? rep->begin_pos_ + rep->length : rep->begin_pos_ - len) -
|
385
|
-
ring->entry_begin_pos(head.index) - head.offset;
|
386
|
-
|
387
|
-
// Start filling at `tail`, or `entries` before `head`
|
388
|
-
Filler filler(rep, append ? rep->tail_ : rep->retreat(rep->head_, entries));
|
389
|
-
|
390
|
-
if (ring->refcount.IsOne()) {
|
391
|
-
// Copy entries from source stealing the ref and adjusting the end position.
|
392
|
-
// Commit the filler as this is no-op.
|
393
|
-
ring->ForEach(head.index, tail.index, [&](index_type ix) {
|
394
|
-
filler.Add(ring->entry_child(ix), ring->entry_data_offset(ix),
|
395
|
-
ring->entry_end_pos(ix) + delta_length);
|
396
|
-
});
|
397
|
-
|
398
|
-
// Unref entries we did not copy over, and delete source.
|
399
|
-
if (head.index != ring->head_) UnrefEntries(ring, ring->head_, head.index);
|
400
|
-
if (tail.index != ring->tail_) UnrefEntries(ring, tail.index, ring->tail_);
|
401
|
-
CordRepRing::Delete(ring);
|
402
|
-
} else {
|
403
|
-
ring->ForEach(head.index, tail.index, [&](index_type ix) {
|
404
|
-
CordRep* child = ring->entry_child(ix);
|
405
|
-
filler.Add(child, ring->entry_data_offset(ix),
|
406
|
-
ring->entry_end_pos(ix) + delta_length);
|
407
|
-
CordRep::Ref(child);
|
408
|
-
});
|
409
|
-
CordRepRing::Unref(ring);
|
410
|
-
}
|
411
|
-
|
412
|
-
if (head.offset) {
|
413
|
-
// Increase offset of first 'source' entry appended or prepended.
|
414
|
-
// This is always the entry in `filler.head()`
|
415
|
-
rep->AddDataOffset(filler.head(), head.offset);
|
416
|
-
}
|
417
|
-
|
418
|
-
if (tail.offset) {
|
419
|
-
// Reduce length of last 'source' entry appended or prepended.
|
420
|
-
// This is always the entry tailed by `filler.pos()`
|
421
|
-
rep->SubLength(rep->retreat(filler.pos()), tail.offset);
|
422
|
-
}
|
423
|
-
|
424
|
-
// Commit changes
|
425
|
-
rep->length += len;
|
426
|
-
if (append) {
|
427
|
-
rep->tail_ = filler.pos();
|
428
|
-
} else {
|
429
|
-
rep->head_ = filler.head();
|
430
|
-
rep->begin_pos_ -= len;
|
431
|
-
}
|
432
|
-
|
433
|
-
return Validate(rep);
|
434
|
-
}
|
435
|
-
|
436
|
-
CordRepRing* CordRepRing::AppendSlow(CordRepRing* rep, CordRep* child) {
|
437
|
-
Consume(child, [&rep](CordRep* child_arg, size_t offset, size_t len) {
|
438
|
-
if (child_arg->IsRing()) {
|
439
|
-
rep = AddRing<AddMode::kAppend>(rep, child_arg->ring(), offset, len);
|
440
|
-
} else {
|
441
|
-
rep = AppendLeaf(rep, child_arg, offset, len);
|
442
|
-
}
|
443
|
-
});
|
444
|
-
return rep;
|
445
|
-
}
|
446
|
-
|
447
|
-
CordRepRing* CordRepRing::AppendLeaf(CordRepRing* rep, CordRep* child,
|
448
|
-
size_t offset, size_t len) {
|
449
|
-
rep = Mutable(rep, 1);
|
450
|
-
index_type back = rep->tail_;
|
451
|
-
const pos_type begin_pos = rep->begin_pos_ + rep->length;
|
452
|
-
rep->tail_ = rep->advance(rep->tail_);
|
453
|
-
rep->length += len;
|
454
|
-
rep->entry_end_pos()[back] = begin_pos + len;
|
455
|
-
rep->entry_child()[back] = child;
|
456
|
-
rep->entry_data_offset()[back] = static_cast<offset_type>(offset);
|
457
|
-
return Validate(rep, nullptr, __LINE__);
|
458
|
-
}
|
459
|
-
|
460
|
-
CordRepRing* CordRepRing::Append(CordRepRing* rep, CordRep* child) {
|
461
|
-
size_t length = child->length;
|
462
|
-
if (IsFlatOrExternal(child)) {
|
463
|
-
return AppendLeaf(rep, child, 0, length);
|
464
|
-
}
|
465
|
-
if (child->IsRing()) {
|
466
|
-
return AddRing<AddMode::kAppend>(rep, child->ring(), 0, length);
|
467
|
-
}
|
468
|
-
return AppendSlow(rep, child);
|
469
|
-
}
|
470
|
-
|
471
|
-
CordRepRing* CordRepRing::PrependSlow(CordRepRing* rep, CordRep* child) {
|
472
|
-
ReverseConsume(child, [&](CordRep* child_arg, size_t offset, size_t len) {
|
473
|
-
if (IsFlatOrExternal(child_arg)) {
|
474
|
-
rep = PrependLeaf(rep, child_arg, offset, len);
|
475
|
-
} else {
|
476
|
-
rep = AddRing<AddMode::kPrepend>(rep, child_arg->ring(), offset, len);
|
477
|
-
}
|
478
|
-
});
|
479
|
-
return Validate(rep);
|
480
|
-
}
|
481
|
-
|
482
|
-
CordRepRing* CordRepRing::PrependLeaf(CordRepRing* rep, CordRep* child,
|
483
|
-
size_t offset, size_t len) {
|
484
|
-
rep = Mutable(rep, 1);
|
485
|
-
index_type head = rep->retreat(rep->head_);
|
486
|
-
pos_type end_pos = rep->begin_pos_;
|
487
|
-
rep->head_ = head;
|
488
|
-
rep->length += len;
|
489
|
-
rep->begin_pos_ -= len;
|
490
|
-
rep->entry_end_pos()[head] = end_pos;
|
491
|
-
rep->entry_child()[head] = child;
|
492
|
-
rep->entry_data_offset()[head] = static_cast<offset_type>(offset);
|
493
|
-
return Validate(rep);
|
494
|
-
}
|
495
|
-
|
496
|
-
CordRepRing* CordRepRing::Prepend(CordRepRing* rep, CordRep* child) {
|
497
|
-
size_t length = child->length;
|
498
|
-
if (IsFlatOrExternal(child)) {
|
499
|
-
return PrependLeaf(rep, child, 0, length);
|
500
|
-
}
|
501
|
-
if (child->IsRing()) {
|
502
|
-
return AddRing<AddMode::kPrepend>(rep, child->ring(), 0, length);
|
503
|
-
}
|
504
|
-
return PrependSlow(rep, child);
|
505
|
-
}
|
506
|
-
|
507
|
-
CordRepRing* CordRepRing::Append(CordRepRing* rep, absl::string_view data,
|
508
|
-
size_t extra) {
|
509
|
-
if (rep->refcount.IsOne()) {
|
510
|
-
Span<char> avail = rep->GetAppendBuffer(data.length());
|
511
|
-
if (!avail.empty()) {
|
512
|
-
memcpy(avail.data(), data.data(), avail.length());
|
513
|
-
data.remove_prefix(avail.length());
|
514
|
-
}
|
515
|
-
}
|
516
|
-
if (data.empty()) return Validate(rep);
|
517
|
-
|
518
|
-
const size_t flats = (data.length() - 1) / kMaxFlatLength + 1;
|
519
|
-
rep = Mutable(rep, flats);
|
520
|
-
|
521
|
-
Filler filler(rep, rep->tail_);
|
522
|
-
pos_type pos = rep->begin_pos_ + rep->length;
|
523
|
-
|
524
|
-
while (data.length() >= kMaxFlatLength) {
|
525
|
-
auto* flat = CreateFlat(data.data(), kMaxFlatLength);
|
526
|
-
filler.Add(flat, 0, pos += kMaxFlatLength);
|
527
|
-
data.remove_prefix(kMaxFlatLength);
|
528
|
-
}
|
529
|
-
|
530
|
-
if (data.length()) {
|
531
|
-
auto* flat = CreateFlat(data.data(), data.length(), extra);
|
532
|
-
filler.Add(flat, 0, pos += data.length());
|
533
|
-
}
|
534
|
-
|
535
|
-
rep->length = pos - rep->begin_pos_;
|
536
|
-
rep->tail_ = filler.pos();
|
537
|
-
|
538
|
-
return Validate(rep);
|
539
|
-
}
|
540
|
-
|
541
|
-
CordRepRing* CordRepRing::Prepend(CordRepRing* rep, absl::string_view data,
|
542
|
-
size_t extra) {
|
543
|
-
if (rep->refcount.IsOne()) {
|
544
|
-
Span<char> avail = rep->GetPrependBuffer(data.length());
|
545
|
-
if (!avail.empty()) {
|
546
|
-
const char* tail = data.data() + data.length() - avail.length();
|
547
|
-
memcpy(avail.data(), tail, avail.length());
|
548
|
-
data.remove_suffix(avail.length());
|
549
|
-
}
|
550
|
-
}
|
551
|
-
if (data.empty()) return rep;
|
552
|
-
|
553
|
-
const size_t flats = (data.length() - 1) / kMaxFlatLength + 1;
|
554
|
-
rep = Mutable(rep, flats);
|
555
|
-
pos_type pos = rep->begin_pos_;
|
556
|
-
Filler filler(rep, rep->retreat(rep->head_, static_cast<index_type>(flats)));
|
557
|
-
|
558
|
-
size_t first_size = data.size() - (flats - 1) * kMaxFlatLength;
|
559
|
-
CordRepFlat* flat = CordRepFlat::New(first_size + extra);
|
560
|
-
flat->length = first_size + extra;
|
561
|
-
memcpy(flat->Data() + extra, data.data(), first_size);
|
562
|
-
data.remove_prefix(first_size);
|
563
|
-
filler.Add(flat, extra, pos);
|
564
|
-
pos -= first_size;
|
565
|
-
|
566
|
-
while (!data.empty()) {
|
567
|
-
assert(data.size() >= kMaxFlatLength);
|
568
|
-
flat = CreateFlat(data.data(), kMaxFlatLength);
|
569
|
-
filler.Add(flat, 0, pos);
|
570
|
-
pos -= kMaxFlatLength;
|
571
|
-
data.remove_prefix(kMaxFlatLength);
|
572
|
-
}
|
573
|
-
|
574
|
-
rep->head_ = filler.head();
|
575
|
-
rep->length += rep->begin_pos_ - pos;
|
576
|
-
rep->begin_pos_ = pos;
|
577
|
-
|
578
|
-
return Validate(rep);
|
579
|
-
}
|
580
|
-
|
581
|
-
// 32 entries is 32 * sizeof(pos_type) = 4 cache lines on x86
|
582
|
-
static constexpr index_type kBinarySearchThreshold = 32;
|
583
|
-
static constexpr index_type kBinarySearchEndCount = 8;
|
584
|
-
|
585
|
-
template <bool wrap>
|
586
|
-
CordRepRing::index_type CordRepRing::FindBinary(index_type head,
|
587
|
-
index_type tail,
|
588
|
-
size_t offset) const {
|
589
|
-
index_type count = tail + (wrap ? capacity_ : 0) - head;
|
590
|
-
do {
|
591
|
-
count = (count - 1) / 2;
|
592
|
-
assert(count < entries(head, tail_));
|
593
|
-
index_type mid = wrap ? advance(head, count) : head + count;
|
594
|
-
index_type after_mid = wrap ? advance(mid) : mid + 1;
|
595
|
-
bool larger = (offset >= entry_end_offset(mid));
|
596
|
-
head = larger ? after_mid : head;
|
597
|
-
tail = larger ? tail : mid;
|
598
|
-
assert(head != tail);
|
599
|
-
} while (ABSL_PREDICT_TRUE(count > kBinarySearchEndCount));
|
600
|
-
return head;
|
601
|
-
}
|
602
|
-
|
603
|
-
CordRepRing::Position CordRepRing::FindSlow(index_type head,
|
604
|
-
size_t offset) const {
|
605
|
-
index_type tail = tail_;
|
606
|
-
|
607
|
-
// Binary search until we are good for linear search
|
608
|
-
// Optimize for branchless / non wrapping ops
|
609
|
-
if (tail > head) {
|
610
|
-
index_type count = tail - head;
|
611
|
-
if (count > kBinarySearchThreshold) {
|
612
|
-
head = FindBinary<false>(head, tail, offset);
|
613
|
-
}
|
614
|
-
} else {
|
615
|
-
index_type count = capacity_ + tail - head;
|
616
|
-
if (count > kBinarySearchThreshold) {
|
617
|
-
head = FindBinary<true>(head, tail, offset);
|
618
|
-
}
|
619
|
-
}
|
620
|
-
|
621
|
-
pos_type pos = entry_begin_pos(head);
|
622
|
-
pos_type end_pos = entry_end_pos(head);
|
623
|
-
while (offset >= Distance(begin_pos_, end_pos)) {
|
624
|
-
head = advance(head);
|
625
|
-
pos = end_pos;
|
626
|
-
end_pos = entry_end_pos(head);
|
627
|
-
}
|
628
|
-
|
629
|
-
return {head, offset - Distance(begin_pos_, pos)};
|
630
|
-
}
|
631
|
-
|
632
|
-
CordRepRing::Position CordRepRing::FindTailSlow(index_type head,
|
633
|
-
size_t offset) const {
|
634
|
-
index_type tail = tail_;
|
635
|
-
const size_t tail_offset = offset - 1;
|
636
|
-
|
637
|
-
// Binary search until we are good for linear search
|
638
|
-
// Optimize for branchless / non wrapping ops
|
639
|
-
if (tail > head) {
|
640
|
-
index_type count = tail - head;
|
641
|
-
if (count > kBinarySearchThreshold) {
|
642
|
-
head = FindBinary<false>(head, tail, tail_offset);
|
643
|
-
}
|
644
|
-
} else {
|
645
|
-
index_type count = capacity_ + tail - head;
|
646
|
-
if (count > kBinarySearchThreshold) {
|
647
|
-
head = FindBinary<true>(head, tail, tail_offset);
|
648
|
-
}
|
649
|
-
}
|
650
|
-
|
651
|
-
size_t end_offset = entry_end_offset(head);
|
652
|
-
while (tail_offset >= end_offset) {
|
653
|
-
head = advance(head);
|
654
|
-
end_offset = entry_end_offset(head);
|
655
|
-
}
|
656
|
-
|
657
|
-
return {advance(head), end_offset - offset};
|
658
|
-
}
|
659
|
-
|
660
|
-
char CordRepRing::GetCharacter(size_t offset) const {
|
661
|
-
assert(offset < length);
|
662
|
-
|
663
|
-
Position pos = Find(offset);
|
664
|
-
size_t data_offset = entry_data_offset(pos.index) + pos.offset;
|
665
|
-
return GetRepData(entry_child(pos.index))[data_offset];
|
666
|
-
}
|
667
|
-
|
668
|
-
CordRepRing* CordRepRing::SubRing(CordRepRing* rep, size_t offset,
|
669
|
-
size_t len, size_t extra) {
|
670
|
-
assert(offset <= rep->length);
|
671
|
-
assert(offset <= rep->length - len);
|
672
|
-
|
673
|
-
if (len == 0) {
|
674
|
-
CordRep::Unref(rep);
|
675
|
-
return nullptr;
|
676
|
-
}
|
677
|
-
|
678
|
-
// Find position of first byte
|
679
|
-
Position head = rep->Find(offset);
|
680
|
-
Position tail = rep->FindTail(head.index, offset + len);
|
681
|
-
const size_t new_entries = rep->entries(head.index, tail.index);
|
682
|
-
|
683
|
-
if (rep->refcount.IsOne() && extra <= (rep->capacity() - new_entries)) {
|
684
|
-
// We adopt a privately owned rep and no extra entries needed.
|
685
|
-
if (head.index != rep->head_) UnrefEntries(rep, rep->head_, head.index);
|
686
|
-
if (tail.index != rep->tail_) UnrefEntries(rep, tail.index, rep->tail_);
|
687
|
-
rep->head_ = head.index;
|
688
|
-
rep->tail_ = tail.index;
|
689
|
-
} else {
|
690
|
-
// Copy subset to new rep
|
691
|
-
rep = Copy(rep, head.index, tail.index, extra);
|
692
|
-
head.index = rep->head_;
|
693
|
-
tail.index = rep->tail_;
|
694
|
-
}
|
695
|
-
|
696
|
-
// Adjust begin_pos and length
|
697
|
-
rep->length = len;
|
698
|
-
rep->begin_pos_ += offset;
|
699
|
-
|
700
|
-
// Adjust head and tail blocks
|
701
|
-
if (head.offset) {
|
702
|
-
rep->AddDataOffset(head.index, head.offset);
|
703
|
-
}
|
704
|
-
if (tail.offset) {
|
705
|
-
rep->SubLength(rep->retreat(tail.index), tail.offset);
|
706
|
-
}
|
707
|
-
|
708
|
-
return Validate(rep);
|
709
|
-
}
|
710
|
-
|
711
|
-
CordRepRing* CordRepRing::RemovePrefix(CordRepRing* rep, size_t len,
|
712
|
-
size_t extra) {
|
713
|
-
assert(len <= rep->length);
|
714
|
-
if (len == rep->length) {
|
715
|
-
CordRep::Unref(rep);
|
716
|
-
return nullptr;
|
717
|
-
}
|
718
|
-
|
719
|
-
Position head = rep->Find(len);
|
720
|
-
if (rep->refcount.IsOne()) {
|
721
|
-
if (head.index != rep->head_) UnrefEntries(rep, rep->head_, head.index);
|
722
|
-
rep->head_ = head.index;
|
723
|
-
} else {
|
724
|
-
rep = Copy(rep, head.index, rep->tail_, extra);
|
725
|
-
head.index = rep->head_;
|
726
|
-
}
|
727
|
-
|
728
|
-
// Adjust begin_pos and length
|
729
|
-
rep->length -= len;
|
730
|
-
rep->begin_pos_ += len;
|
731
|
-
|
732
|
-
// Adjust head block
|
733
|
-
if (head.offset) {
|
734
|
-
rep->AddDataOffset(head.index, head.offset);
|
735
|
-
}
|
736
|
-
|
737
|
-
return Validate(rep);
|
738
|
-
}
|
739
|
-
|
740
|
-
CordRepRing* CordRepRing::RemoveSuffix(CordRepRing* rep, size_t len,
|
741
|
-
size_t extra) {
|
742
|
-
assert(len <= rep->length);
|
743
|
-
|
744
|
-
if (len == rep->length) {
|
745
|
-
CordRep::Unref(rep);
|
746
|
-
return nullptr;
|
747
|
-
}
|
748
|
-
|
749
|
-
Position tail = rep->FindTail(rep->length - len);
|
750
|
-
if (rep->refcount.IsOne()) {
|
751
|
-
// We adopt a privately owned rep, scrub.
|
752
|
-
if (tail.index != rep->tail_) UnrefEntries(rep, tail.index, rep->tail_);
|
753
|
-
rep->tail_ = tail.index;
|
754
|
-
} else {
|
755
|
-
// Copy subset to new rep
|
756
|
-
rep = Copy(rep, rep->head_, tail.index, extra);
|
757
|
-
tail.index = rep->tail_;
|
758
|
-
}
|
759
|
-
|
760
|
-
// Adjust length
|
761
|
-
rep->length -= len;
|
762
|
-
|
763
|
-
// Adjust tail block
|
764
|
-
if (tail.offset) {
|
765
|
-
rep->SubLength(rep->retreat(tail.index), tail.offset);
|
766
|
-
}
|
767
|
-
|
768
|
-
return Validate(rep);
|
769
|
-
}
|
770
|
-
|
771
|
-
} // namespace cord_internal
|
772
|
-
ABSL_NAMESPACE_END
|
773
|
-
} // namespace absl
|