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,607 +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
|
-
|
15
|
-
#ifndef ABSL_STRINGS_INTERNAL_CORD_REP_RING_H_
|
16
|
-
#define ABSL_STRINGS_INTERNAL_CORD_REP_RING_H_
|
17
|
-
|
18
|
-
#include <cassert>
|
19
|
-
#include <cstddef>
|
20
|
-
#include <cstdint>
|
21
|
-
#include <iosfwd>
|
22
|
-
#include <limits>
|
23
|
-
#include <memory>
|
24
|
-
|
25
|
-
#include "absl/container/internal/layout.h"
|
26
|
-
#include "absl/strings/internal/cord_internal.h"
|
27
|
-
#include "absl/strings/internal/cord_rep_flat.h"
|
28
|
-
|
29
|
-
namespace absl {
|
30
|
-
ABSL_NAMESPACE_BEGIN
|
31
|
-
namespace cord_internal {
|
32
|
-
|
33
|
-
// All operations modifying a ring buffer are implemented as static methods
|
34
|
-
// requiring a CordRepRing instance with a reference adopted by the method.
|
35
|
-
//
|
36
|
-
// The methods return the modified ring buffer, which may be equal to the input
|
37
|
-
// if the input was not shared, and having large enough capacity to accommodate
|
38
|
-
// any newly added node(s). Otherwise, a copy of the input rep with the new
|
39
|
-
// node(s) added is returned.
|
40
|
-
//
|
41
|
-
// Any modification on non shared ring buffers with enough capacity will then
|
42
|
-
// require minimum atomic operations. Caller should where possible provide
|
43
|
-
// reasonable `extra` hints for both anticipated extra `flat` byte space, as
|
44
|
-
// well as anticipated extra nodes required for complex operations.
|
45
|
-
//
|
46
|
-
// Example of code creating a ring buffer, adding some data to it,
|
47
|
-
// and discarding the buffer when done:
|
48
|
-
//
|
49
|
-
// void FunWithRings() {
|
50
|
-
// // Create ring with 3 flats
|
51
|
-
// CordRep* flat = CreateFlat("Hello");
|
52
|
-
// CordRepRing* ring = CordRepRing::Create(flat, 2);
|
53
|
-
// ring = CordRepRing::Append(ring, CreateFlat(" "));
|
54
|
-
// ring = CordRepRing::Append(ring, CreateFlat("world"));
|
55
|
-
// DoSomethingWithRing(ring);
|
56
|
-
// CordRep::Unref(ring);
|
57
|
-
// }
|
58
|
-
//
|
59
|
-
// Example of code Copying an existing ring buffer and modifying it:
|
60
|
-
//
|
61
|
-
// void MoreFunWithRings(CordRepRing* src) {
|
62
|
-
// CordRepRing* ring = CordRep::Ref(src)->ring();
|
63
|
-
// ring = CordRepRing::Append(ring, CreateFlat("Hello"));
|
64
|
-
// ring = CordRepRing::Append(ring, CreateFlat(" "));
|
65
|
-
// ring = CordRepRing::Append(ring, CreateFlat("world"));
|
66
|
-
// DoSomethingWithRing(ring);
|
67
|
-
// CordRep::Unref(ring);
|
68
|
-
// }
|
69
|
-
//
|
70
|
-
class CordRepRing : public CordRep {
|
71
|
-
public:
|
72
|
-
// `pos_type` represents a 'logical position'. A CordRepRing instance has a
|
73
|
-
// `begin_pos` (default 0), and each node inside the buffer will have an
|
74
|
-
// `end_pos` which is the `end_pos` of the previous node (or `begin_pos`) plus
|
75
|
-
// this node's length. The purpose is to allow for a binary search on this
|
76
|
-
// position, while allowing O(1) prepend and append operations.
|
77
|
-
using pos_type = size_t;
|
78
|
-
|
79
|
-
// `index_type` is the type for the `head`, `tail` and `capacity` indexes.
|
80
|
-
// Ring buffers are limited to having no more than four billion entries.
|
81
|
-
using index_type = uint32_t;
|
82
|
-
|
83
|
-
// `offset_type` is the type for the data offset inside a child rep's data.
|
84
|
-
using offset_type = uint32_t;
|
85
|
-
|
86
|
-
// Position holds the node index and relative offset into the node for
|
87
|
-
// some physical offset in the contained data as returned by the Find()
|
88
|
-
// and FindTail() methods.
|
89
|
-
struct Position {
|
90
|
-
index_type index;
|
91
|
-
size_t offset;
|
92
|
-
};
|
93
|
-
|
94
|
-
// The maximum # of child nodes that can be hosted inside a CordRepRing.
|
95
|
-
static constexpr size_t kMaxCapacity = (std::numeric_limits<uint32_t>::max)();
|
96
|
-
|
97
|
-
// CordRepring can not be default constructed, moved, copied or assigned.
|
98
|
-
CordRepRing() = delete;
|
99
|
-
CordRepRing(const CordRepRing&) = delete;
|
100
|
-
CordRepRing& operator=(const CordRepRing&) = delete;
|
101
|
-
|
102
|
-
// Returns true if this instance is valid, false if some or all of the
|
103
|
-
// invariants are broken. Intended for debug purposes only.
|
104
|
-
// `output` receives an explanation of the broken invariants.
|
105
|
-
bool IsValid(std::ostream& output) const;
|
106
|
-
|
107
|
-
// Returns the size in bytes for a CordRepRing with `capacity' entries.
|
108
|
-
static constexpr size_t AllocSize(size_t capacity);
|
109
|
-
|
110
|
-
// Returns the distance in bytes from `pos` to `end_pos`.
|
111
|
-
static constexpr size_t Distance(pos_type pos, pos_type end_pos);
|
112
|
-
|
113
|
-
// Creates a new ring buffer from the provided `rep`. Adopts a reference
|
114
|
-
// on `rep`. The returned ring buffer has a capacity of at least `extra + 1`
|
115
|
-
static CordRepRing* Create(CordRep* child, size_t extra = 0);
|
116
|
-
|
117
|
-
// `head`, `tail` and `capacity` indexes defining the ring buffer boundaries.
|
118
|
-
index_type head() const { return head_; }
|
119
|
-
index_type tail() const { return tail_; }
|
120
|
-
index_type capacity() const { return capacity_; }
|
121
|
-
|
122
|
-
// Returns the number of entries in this instance.
|
123
|
-
index_type entries() const { return entries(head_, tail_); }
|
124
|
-
|
125
|
-
// Returns the logical begin position of this instance.
|
126
|
-
pos_type begin_pos() const { return begin_pos_; }
|
127
|
-
|
128
|
-
// Returns the number of entries for a given head-tail range.
|
129
|
-
// Requires `head` and `tail` values to be less than `capacity()`.
|
130
|
-
index_type entries(index_type head, index_type tail) const {
|
131
|
-
assert(head < capacity_ && tail < capacity_);
|
132
|
-
return tail - head + ((tail > head) ? 0 : capacity_);
|
133
|
-
}
|
134
|
-
|
135
|
-
// Returns the logical end position of entry `index`.
|
136
|
-
pos_type const& entry_end_pos(index_type index) const {
|
137
|
-
assert(IsValidIndex(index));
|
138
|
-
return Layout::Partial().Pointer<0>(data_)[index];
|
139
|
-
}
|
140
|
-
|
141
|
-
// Returns the child pointer of entry `index`.
|
142
|
-
CordRep* const& entry_child(index_type index) const {
|
143
|
-
assert(IsValidIndex(index));
|
144
|
-
return Layout::Partial(capacity()).Pointer<1>(data_)[index];
|
145
|
-
}
|
146
|
-
|
147
|
-
// Returns the data offset of entry `index`
|
148
|
-
offset_type const& entry_data_offset(index_type index) const {
|
149
|
-
assert(IsValidIndex(index));
|
150
|
-
return Layout::Partial(capacity(), capacity()).Pointer<2>(data_)[index];
|
151
|
-
}
|
152
|
-
|
153
|
-
// Appends the provided child node to the `rep` instance.
|
154
|
-
// Adopts a reference from `rep` and `child` which may not be null.
|
155
|
-
// If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node
|
156
|
-
// containing a FLAT or EXTERNAL node, then flat or external the node is added
|
157
|
-
// 'as is', with an offset added for the SUBSTRING case.
|
158
|
-
// If the provided child is a RING or CONCAT tree, or a SUBSTRING of a RING or
|
159
|
-
// CONCAT tree, then all child nodes not excluded by any start offset or
|
160
|
-
// length values are added recursively.
|
161
|
-
static CordRepRing* Append(CordRepRing* rep, CordRep* child);
|
162
|
-
|
163
|
-
// Appends the provided string data to the `rep` instance.
|
164
|
-
// This function will attempt to utilize any remaining capacity in the last
|
165
|
-
// node of the input if that node is not shared (directly or indirectly), and
|
166
|
-
// of type FLAT. Remaining data will be added as one or more FLAT nodes.
|
167
|
-
// Any last node added to the ring buffer will be allocated with up to
|
168
|
-
// `extra` bytes of capacity for (anticipated) subsequent append actions.
|
169
|
-
static CordRepRing* Append(CordRepRing* rep, string_view data,
|
170
|
-
size_t extra = 0);
|
171
|
-
|
172
|
-
// Prepends the provided child node to the `rep` instance.
|
173
|
-
// Adopts a reference from `rep` and `child` which may not be null.
|
174
|
-
// If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node
|
175
|
-
// containing a FLAT or EXTERNAL node, then flat or external the node is
|
176
|
-
// prepended 'as is', with an optional offset added for the SUBSTRING case.
|
177
|
-
// If the provided child is a RING or CONCAT tree, or a SUBSTRING of a RING
|
178
|
-
// or CONCAT tree, then all child nodes not excluded by any start offset or
|
179
|
-
// length values are added recursively.
|
180
|
-
static CordRepRing* Prepend(CordRepRing* rep, CordRep* child);
|
181
|
-
|
182
|
-
// Prepends the provided string data to the `rep` instance.
|
183
|
-
// This function will attempt to utilize any remaining capacity in the first
|
184
|
-
// node of the input if that node is not shared (directly or indirectly), and
|
185
|
-
// of type FLAT. Remaining data will be added as one or more FLAT nodes.
|
186
|
-
// Any first node prepnded to the ring buffer will be allocated with up to
|
187
|
-
// `extra` bytes of capacity for (anticipated) subsequent prepend actions.
|
188
|
-
static CordRepRing* Prepend(CordRepRing* rep, string_view data,
|
189
|
-
size_t extra = 0);
|
190
|
-
|
191
|
-
// Returns a span referencing potentially unused capacity in the last node.
|
192
|
-
// The returned span may be empty if no such capacity is available, or if the
|
193
|
-
// current instance is shared. Else, a span of size `n <= size` is returned.
|
194
|
-
// If non empty, the ring buffer is adjusted to the new length, with the newly
|
195
|
-
// added capacity left uninitialized. Callers should assign a value to the
|
196
|
-
// entire span before any other operations on this instance.
|
197
|
-
Span<char> GetAppendBuffer(size_t size);
|
198
|
-
|
199
|
-
// Returns a span referencing potentially unused capacity in the first node.
|
200
|
-
// This function is identical to GetAppendBuffer except that it returns a span
|
201
|
-
// referencing up to `size` capacity directly before the existing data.
|
202
|
-
Span<char> GetPrependBuffer(size_t size);
|
203
|
-
|
204
|
-
// Returns a cord ring buffer containing `len` bytes of data starting at
|
205
|
-
// `offset`. If the input is not shared, this function will remove all head
|
206
|
-
// and tail child nodes outside of the requested range, and adjust the new
|
207
|
-
// head and tail nodes as required. If the input is shared, this function
|
208
|
-
// returns a new instance sharing some or all of the nodes from the input.
|
209
|
-
static CordRepRing* SubRing(CordRepRing* r, size_t offset, size_t len,
|
210
|
-
size_t extra = 0);
|
211
|
-
|
212
|
-
// Returns a cord ring buffer with the first `len` bytes removed.
|
213
|
-
// If the input is not shared, this function will remove all head child nodes
|
214
|
-
// fully inside the first `length` bytes, and adjust the new head as required.
|
215
|
-
// If the input is shared, this function returns a new instance sharing some
|
216
|
-
// or all of the nodes from the input.
|
217
|
-
static CordRepRing* RemoveSuffix(CordRepRing* r, size_t len,
|
218
|
-
size_t extra = 0);
|
219
|
-
|
220
|
-
// Returns a cord ring buffer with the last `len` bytes removed.
|
221
|
-
// If the input is not shared, this function will remove all head child nodes
|
222
|
-
// fully inside the first `length` bytes, and adjust the new head as required.
|
223
|
-
// If the input is shared, this function returns a new instance sharing some
|
224
|
-
// or all of the nodes from the input.
|
225
|
-
static CordRepRing* RemovePrefix(CordRepRing* r, size_t len,
|
226
|
-
size_t extra = 0);
|
227
|
-
|
228
|
-
// Returns the character at `offset`. Requires that `offset < length`.
|
229
|
-
char GetCharacter(size_t offset) const;
|
230
|
-
|
231
|
-
// Returns true if this instance manages a single contiguous buffer, in which
|
232
|
-
// case the (optional) output parameter `fragment` is set. Otherwise, the
|
233
|
-
// function returns false, and `fragment` is left unchanged.
|
234
|
-
bool IsFlat(absl::string_view* fragment) const;
|
235
|
-
|
236
|
-
// Returns true if the data starting at `offset` with length `len` is
|
237
|
-
// managed by this instance inside a single contiguous buffer, in which case
|
238
|
-
// the (optional) output parameter `fragment` is set to the contiguous memory
|
239
|
-
// starting at offset `offset` with length `length`. Otherwise, the function
|
240
|
-
// returns false, and `fragment` is left unchanged.
|
241
|
-
bool IsFlat(size_t offset, size_t len, absl::string_view* fragment) const;
|
242
|
-
|
243
|
-
// Testing only: set capacity to requested capacity.
|
244
|
-
void SetCapacityForTesting(size_t capacity);
|
245
|
-
|
246
|
-
// Returns the CordRep data pointer for the provided CordRep.
|
247
|
-
// Requires that the provided `rep` is either a FLAT or EXTERNAL CordRep.
|
248
|
-
static const char* GetLeafData(const CordRep* rep);
|
249
|
-
|
250
|
-
// Returns the CordRep data pointer for the provided CordRep.
|
251
|
-
// Requires that `rep` is either a FLAT, EXTERNAL, or SUBSTRING CordRep.
|
252
|
-
static const char* GetRepData(const CordRep* rep);
|
253
|
-
|
254
|
-
// Advances the provided position, wrapping around capacity as needed.
|
255
|
-
// Requires `index` < capacity()
|
256
|
-
inline index_type advance(index_type index) const;
|
257
|
-
|
258
|
-
// Advances the provided position by 'n`, wrapping around capacity as needed.
|
259
|
-
// Requires `index` < capacity() and `n` <= capacity.
|
260
|
-
inline index_type advance(index_type index, index_type n) const;
|
261
|
-
|
262
|
-
// Retreats the provided position, wrapping around 0 as needed.
|
263
|
-
// Requires `index` < capacity()
|
264
|
-
inline index_type retreat(index_type index) const;
|
265
|
-
|
266
|
-
// Retreats the provided position by 'n', wrapping around 0 as needed.
|
267
|
-
// Requires `index` < capacity()
|
268
|
-
inline index_type retreat(index_type index, index_type n) const;
|
269
|
-
|
270
|
-
// Returns the logical begin position of entry `index`
|
271
|
-
pos_type const& entry_begin_pos(index_type index) const {
|
272
|
-
return (index == head_) ? begin_pos_ : entry_end_pos(retreat(index));
|
273
|
-
}
|
274
|
-
|
275
|
-
// Returns the physical start offset of entry `index`
|
276
|
-
size_t entry_start_offset(index_type index) const {
|
277
|
-
return Distance(begin_pos_, entry_begin_pos(index));
|
278
|
-
}
|
279
|
-
|
280
|
-
// Returns the physical end offset of entry `index`
|
281
|
-
size_t entry_end_offset(index_type index) const {
|
282
|
-
return Distance(begin_pos_, entry_end_pos(index));
|
283
|
-
}
|
284
|
-
|
285
|
-
// Returns the data length for entry `index`
|
286
|
-
size_t entry_length(index_type index) const {
|
287
|
-
return Distance(entry_begin_pos(index), entry_end_pos(index));
|
288
|
-
}
|
289
|
-
|
290
|
-
// Returns the data for entry `index`
|
291
|
-
absl::string_view entry_data(index_type index) const;
|
292
|
-
|
293
|
-
// Returns the position for `offset` as {index, prefix}. `index` holds the
|
294
|
-
// index of the entry at the specified offset and `prefix` holds the relative
|
295
|
-
// offset inside that entry.
|
296
|
-
// Requires `offset` < length.
|
297
|
-
//
|
298
|
-
// For example we can implement GetCharacter(offset) as:
|
299
|
-
// char GetCharacter(size_t offset) {
|
300
|
-
// Position pos = this->Find(offset);
|
301
|
-
// return this->entry_data(pos.pos)[pos.offset];
|
302
|
-
// }
|
303
|
-
inline Position Find(size_t offset) const;
|
304
|
-
|
305
|
-
// Find starting at `head`
|
306
|
-
inline Position Find(index_type head, size_t offset) const;
|
307
|
-
|
308
|
-
// Returns the tail position for `offset` as {tail index, suffix}.
|
309
|
-
// `tail index` holds holds the index of the entry holding the offset directly
|
310
|
-
// before 'offset` advanced by one. 'suffix` holds the relative offset from
|
311
|
-
// that relative offset in the entry to the end of the entry.
|
312
|
-
// For example, FindTail(length) will return {tail(), 0}, FindTail(length - 5)
|
313
|
-
// will return {retreat(tail), 5)} provided the preceding entry contains at
|
314
|
-
// least 5 bytes of data.
|
315
|
-
// Requires offset >= 1 && offset <= length.
|
316
|
-
//
|
317
|
-
// This function is very useful in functions that need to clip the end of some
|
318
|
-
// ring buffer such as 'RemovePrefix'.
|
319
|
-
// For example, we could implement RemovePrefix for non shared instances as:
|
320
|
-
// void RemoveSuffix(size_t n) {
|
321
|
-
// Position pos = FindTail(length - n);
|
322
|
-
// UnrefEntries(pos.pos, this->tail_);
|
323
|
-
// this->tail_ = pos.pos;
|
324
|
-
// entry(retreat(pos.pos)).end_pos -= pos.offset;
|
325
|
-
// }
|
326
|
-
inline Position FindTail(size_t offset) const;
|
327
|
-
|
328
|
-
// Find tail starting at `head`
|
329
|
-
inline Position FindTail(index_type head, size_t offset) const;
|
330
|
-
|
331
|
-
// Invokes f(index_type index) for each entry inside the range [head, tail>
|
332
|
-
template <typename F>
|
333
|
-
void ForEach(index_type head, index_type tail, F&& f) const {
|
334
|
-
index_type n1 = (tail > head) ? tail : capacity_;
|
335
|
-
for (index_type i = head; i < n1; ++i) f(i);
|
336
|
-
if (tail <= head) {
|
337
|
-
for (index_type i = 0; i < tail; ++i) f(i);
|
338
|
-
}
|
339
|
-
}
|
340
|
-
|
341
|
-
// Invokes f(index_type index) for each entry inside this instance.
|
342
|
-
template <typename F>
|
343
|
-
void ForEach(F&& f) const {
|
344
|
-
ForEach(head_, tail_, std::forward<F>(f));
|
345
|
-
}
|
346
|
-
|
347
|
-
// Dump this instance's data tp stream `s` in human readable format, excluding
|
348
|
-
// the actual data content itself. Intended for debug purposes only.
|
349
|
-
friend std::ostream& operator<<(std::ostream& s, const CordRepRing& rep);
|
350
|
-
|
351
|
-
private:
|
352
|
-
enum class AddMode { kAppend, kPrepend };
|
353
|
-
|
354
|
-
using Layout = container_internal::Layout<pos_type, CordRep*, offset_type>;
|
355
|
-
|
356
|
-
class Filler;
|
357
|
-
class Transaction;
|
358
|
-
class CreateTransaction;
|
359
|
-
|
360
|
-
static constexpr size_t kLayoutAlignment = Layout::Partial().Alignment();
|
361
|
-
|
362
|
-
// Creates a new CordRepRing.
|
363
|
-
explicit CordRepRing(index_type capacity) : capacity_(capacity) {}
|
364
|
-
|
365
|
-
// Returns true if `index` is a valid index into this instance.
|
366
|
-
bool IsValidIndex(index_type index) const;
|
367
|
-
|
368
|
-
// Debug use only: validates the provided CordRepRing invariants.
|
369
|
-
// Verification of all CordRepRing methods can be enabled by defining
|
370
|
-
// EXTRA_CORD_RING_VALIDATION, i.e.: `--copts=-DEXTRA_CORD_RING_VALIDATION`
|
371
|
-
// Verification is VERY expensive, so only do it for debugging purposes.
|
372
|
-
static CordRepRing* Validate(CordRepRing* rep, const char* file = nullptr,
|
373
|
-
int line = 0);
|
374
|
-
|
375
|
-
// Allocates a CordRepRing large enough to hold `capacity + extra' entries.
|
376
|
-
// The returned capacity may be larger if the allocated memory allows for it.
|
377
|
-
// The maximum capacity of a CordRepRing is capped at kMaxCapacity.
|
378
|
-
// Throws `std::length_error` if `capacity + extra' exceeds kMaxCapacity.
|
379
|
-
static CordRepRing* New(size_t capacity, size_t extra);
|
380
|
-
|
381
|
-
// Deallocates (but does not destroy) the provided ring buffer.
|
382
|
-
static void Delete(CordRepRing* rep);
|
383
|
-
|
384
|
-
// Destroys the provided ring buffer, decrementing the reference count of all
|
385
|
-
// contained child CordReps. The provided 1\`rep` should have a ref count of
|
386
|
-
// one (pre decrement destroy call observing `refcount.IsOne()`) or zero
|
387
|
-
// (post decrement destroy call observing `!refcount.Decrement()`).
|
388
|
-
static void Destroy(CordRepRing* rep);
|
389
|
-
|
390
|
-
// Returns a mutable reference to the logical end position array.
|
391
|
-
pos_type* entry_end_pos() {
|
392
|
-
return Layout::Partial().Pointer<0>(data_);
|
393
|
-
}
|
394
|
-
|
395
|
-
// Returns a mutable reference to the child pointer array.
|
396
|
-
CordRep** entry_child() {
|
397
|
-
return Layout::Partial(capacity()).Pointer<1>(data_);
|
398
|
-
}
|
399
|
-
|
400
|
-
// Returns a mutable reference to the data offset array.
|
401
|
-
offset_type* entry_data_offset() {
|
402
|
-
return Layout::Partial(capacity(), capacity()).Pointer<2>(data_);
|
403
|
-
}
|
404
|
-
|
405
|
-
// Find implementations for the non fast path 0 / length cases.
|
406
|
-
Position FindSlow(index_type head, size_t offset) const;
|
407
|
-
Position FindTailSlow(index_type head, size_t offset) const;
|
408
|
-
|
409
|
-
// Finds the index of the first node that is inside a reasonable distance
|
410
|
-
// of the node at `offset` from which we can continue with a linear search.
|
411
|
-
template <bool wrap>
|
412
|
-
index_type FindBinary(index_type head, index_type tail, size_t offset) const;
|
413
|
-
|
414
|
-
// Fills the current (initialized) instance from the provided source, copying
|
415
|
-
// entries [head, tail). Adds a reference to copied entries if `ref` is true.
|
416
|
-
template <bool ref>
|
417
|
-
void Fill(const CordRepRing* src, index_type head, index_type tail);
|
418
|
-
|
419
|
-
// Create a copy of 'rep', copying all entries [head, tail), allocating room
|
420
|
-
// for `extra` entries. Adds a reference on all copied entries.
|
421
|
-
static CordRepRing* Copy(CordRepRing* rep, index_type head, index_type tail,
|
422
|
-
size_t extra = 0);
|
423
|
-
|
424
|
-
// Returns a Mutable CordRepRing reference from `rep` with room for at least
|
425
|
-
// `extra` additional nodes. Adopts a reference count from `rep`.
|
426
|
-
// This function will return `rep` if, and only if:
|
427
|
-
// - rep.entries + extra <= rep.capacity
|
428
|
-
// - rep.refcount == 1
|
429
|
-
// Otherwise, this function will create a new copy of `rep` with additional
|
430
|
-
// capacity to satisfy `extra` extra nodes, and unref the old `rep` instance.
|
431
|
-
//
|
432
|
-
// If a new CordRepRing can not be allocated, or the new capacity would exceed
|
433
|
-
// the maximum capacity, then the input is consumed only, and an exception is
|
434
|
-
// thrown.
|
435
|
-
static CordRepRing* Mutable(CordRepRing* rep, size_t extra);
|
436
|
-
|
437
|
-
// Slow path for Append(CordRepRing* rep, CordRep* child). This function is
|
438
|
-
// exercised if the provided `child` in Append() is not a leaf node, i.e., a
|
439
|
-
// ring buffer or old (concat) cord tree.
|
440
|
-
static CordRepRing* AppendSlow(CordRepRing* rep, CordRep* child);
|
441
|
-
|
442
|
-
// Appends the provided leaf node. Requires `child` to be FLAT or EXTERNAL.
|
443
|
-
static CordRepRing* AppendLeaf(CordRepRing* rep, CordRep* child,
|
444
|
-
size_t offset, size_t length);
|
445
|
-
|
446
|
-
// Prepends the provided leaf node. Requires `child` to be FLAT or EXTERNAL.
|
447
|
-
static CordRepRing* PrependLeaf(CordRepRing* rep, CordRep* child,
|
448
|
-
size_t offset, size_t length);
|
449
|
-
|
450
|
-
// Slow path for Prepend(CordRepRing* rep, CordRep* child). This function is
|
451
|
-
// exercised if the provided `child` in Prepend() is not a leaf node, i.e., a
|
452
|
-
// ring buffer or old (concat) cord tree.
|
453
|
-
static CordRepRing* PrependSlow(CordRepRing* rep, CordRep* child);
|
454
|
-
|
455
|
-
// Slow path for Create(CordRep* child, size_t extra). This function is
|
456
|
-
// exercised if the provided `child` in Prepend() is not a leaf node, i.e., a
|
457
|
-
// ring buffer or old (concat) cord tree.
|
458
|
-
static CordRepRing* CreateSlow(CordRep* child, size_t extra);
|
459
|
-
|
460
|
-
// Creates a new ring buffer from the provided `child` leaf node. Requires
|
461
|
-
// `child` to be FLAT or EXTERNAL. on `rep`.
|
462
|
-
// The returned ring buffer has a capacity of at least `1 + extra`
|
463
|
-
static CordRepRing* CreateFromLeaf(CordRep* child, size_t offset,
|
464
|
-
size_t length, size_t extra);
|
465
|
-
|
466
|
-
// Appends or prepends (depending on AddMode) the ring buffer in `ring' to
|
467
|
-
// `rep` starting at `offset` with length `len`.
|
468
|
-
template <AddMode mode>
|
469
|
-
static CordRepRing* AddRing(CordRepRing* rep, CordRepRing* ring,
|
470
|
-
size_t offset, size_t len);
|
471
|
-
|
472
|
-
// Increases the data offset for entry `index` by `n`.
|
473
|
-
void AddDataOffset(index_type index, size_t n);
|
474
|
-
|
475
|
-
// Decreases the length for entry `index` by `n`.
|
476
|
-
void SubLength(index_type index, size_t n);
|
477
|
-
|
478
|
-
index_type head_;
|
479
|
-
index_type tail_;
|
480
|
-
index_type capacity_;
|
481
|
-
pos_type begin_pos_;
|
482
|
-
|
483
|
-
alignas(kLayoutAlignment) char data_[kLayoutAlignment];
|
484
|
-
|
485
|
-
friend struct CordRep;
|
486
|
-
};
|
487
|
-
|
488
|
-
constexpr size_t CordRepRing::AllocSize(size_t capacity) {
|
489
|
-
return sizeof(CordRepRing) - sizeof(data_) +
|
490
|
-
Layout(capacity, capacity, capacity).AllocSize();
|
491
|
-
}
|
492
|
-
|
493
|
-
inline constexpr size_t CordRepRing::Distance(pos_type pos, pos_type end_pos) {
|
494
|
-
return (end_pos - pos);
|
495
|
-
}
|
496
|
-
|
497
|
-
inline const char* CordRepRing::GetLeafData(const CordRep* rep) {
|
498
|
-
return rep->tag != EXTERNAL ? rep->flat()->Data() : rep->external()->base;
|
499
|
-
}
|
500
|
-
|
501
|
-
inline const char* CordRepRing::GetRepData(const CordRep* rep) {
|
502
|
-
if (rep->tag >= FLAT) return rep->flat()->Data();
|
503
|
-
if (rep->tag == EXTERNAL) return rep->external()->base;
|
504
|
-
return GetLeafData(rep->substring()->child) + rep->substring()->start;
|
505
|
-
}
|
506
|
-
|
507
|
-
inline CordRepRing::index_type CordRepRing::advance(index_type index) const {
|
508
|
-
assert(index < capacity_);
|
509
|
-
return ++index == capacity_ ? 0 : index;
|
510
|
-
}
|
511
|
-
|
512
|
-
inline CordRepRing::index_type CordRepRing::advance(index_type index,
|
513
|
-
index_type n) const {
|
514
|
-
assert(index < capacity_ && n <= capacity_);
|
515
|
-
return (index += n) >= capacity_ ? index - capacity_ : index;
|
516
|
-
}
|
517
|
-
|
518
|
-
inline CordRepRing::index_type CordRepRing::retreat(index_type index) const {
|
519
|
-
assert(index < capacity_);
|
520
|
-
return (index > 0 ? index : capacity_) - 1;
|
521
|
-
}
|
522
|
-
|
523
|
-
inline CordRepRing::index_type CordRepRing::retreat(index_type index,
|
524
|
-
index_type n) const {
|
525
|
-
assert(index < capacity_ && n <= capacity_);
|
526
|
-
return index >= n ? index - n : capacity_ - n + index;
|
527
|
-
}
|
528
|
-
|
529
|
-
inline absl::string_view CordRepRing::entry_data(index_type index) const {
|
530
|
-
size_t data_offset = entry_data_offset(index);
|
531
|
-
return {GetRepData(entry_child(index)) + data_offset, entry_length(index)};
|
532
|
-
}
|
533
|
-
|
534
|
-
inline bool CordRepRing::IsValidIndex(index_type index) const {
|
535
|
-
if (index >= capacity_) return false;
|
536
|
-
return (tail_ > head_) ? (index >= head_ && index < tail_)
|
537
|
-
: (index >= head_ || index < tail_);
|
538
|
-
}
|
539
|
-
|
540
|
-
#ifndef EXTRA_CORD_RING_VALIDATION
|
541
|
-
inline CordRepRing* CordRepRing::Validate(CordRepRing* rep,
|
542
|
-
const char* /*file*/, int /*line*/) {
|
543
|
-
return rep;
|
544
|
-
}
|
545
|
-
#endif
|
546
|
-
|
547
|
-
inline CordRepRing::Position CordRepRing::Find(size_t offset) const {
|
548
|
-
assert(offset < length);
|
549
|
-
return (offset == 0) ? Position{head_, 0} : FindSlow(head_, offset);
|
550
|
-
}
|
551
|
-
|
552
|
-
inline CordRepRing::Position CordRepRing::Find(index_type head,
|
553
|
-
size_t offset) const {
|
554
|
-
assert(offset < length);
|
555
|
-
assert(IsValidIndex(head) && offset >= entry_start_offset(head));
|
556
|
-
return (offset == 0) ? Position{head_, 0} : FindSlow(head, offset);
|
557
|
-
}
|
558
|
-
|
559
|
-
inline CordRepRing::Position CordRepRing::FindTail(size_t offset) const {
|
560
|
-
assert(offset > 0 && offset <= length);
|
561
|
-
return (offset == length) ? Position{tail_, 0} : FindTailSlow(head_, offset);
|
562
|
-
}
|
563
|
-
|
564
|
-
inline CordRepRing::Position CordRepRing::FindTail(index_type head,
|
565
|
-
size_t offset) const {
|
566
|
-
assert(offset > 0 && offset <= length);
|
567
|
-
assert(IsValidIndex(head) && offset >= entry_start_offset(head) + 1);
|
568
|
-
return (offset == length) ? Position{tail_, 0} : FindTailSlow(head, offset);
|
569
|
-
}
|
570
|
-
|
571
|
-
// Now that CordRepRing is defined, we can define CordRep's helper casts:
|
572
|
-
inline CordRepRing* CordRep::ring() {
|
573
|
-
assert(IsRing());
|
574
|
-
return static_cast<CordRepRing*>(this);
|
575
|
-
}
|
576
|
-
|
577
|
-
inline const CordRepRing* CordRep::ring() const {
|
578
|
-
assert(IsRing());
|
579
|
-
return static_cast<const CordRepRing*>(this);
|
580
|
-
}
|
581
|
-
|
582
|
-
inline bool CordRepRing::IsFlat(absl::string_view* fragment) const {
|
583
|
-
if (entries() == 1) {
|
584
|
-
if (fragment) *fragment = entry_data(head());
|
585
|
-
return true;
|
586
|
-
}
|
587
|
-
return false;
|
588
|
-
}
|
589
|
-
|
590
|
-
inline bool CordRepRing::IsFlat(size_t offset, size_t len,
|
591
|
-
absl::string_view* fragment) const {
|
592
|
-
const Position pos = Find(offset);
|
593
|
-
const absl::string_view data = entry_data(pos.index);
|
594
|
-
if (data.length() >= len && data.length() - len >= pos.offset) {
|
595
|
-
if (fragment) *fragment = data.substr(pos.offset, len);
|
596
|
-
return true;
|
597
|
-
}
|
598
|
-
return false;
|
599
|
-
}
|
600
|
-
|
601
|
-
std::ostream& operator<<(std::ostream& s, const CordRepRing& rep);
|
602
|
-
|
603
|
-
} // namespace cord_internal
|
604
|
-
ABSL_NAMESPACE_END
|
605
|
-
} // namespace absl
|
606
|
-
|
607
|
-
#endif // ABSL_STRINGS_INTERNAL_CORD_REP_RING_H_
|