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
@@ -52,6 +52,7 @@
|
|
52
52
|
|
53
53
|
#include "absl/algorithm/algorithm.h"
|
54
54
|
#include "absl/base/macros.h"
|
55
|
+
#include "absl/base/nullability.h"
|
55
56
|
#include "absl/meta/type_traits.h"
|
56
57
|
|
57
58
|
namespace absl {
|
@@ -116,18 +117,6 @@ template <class Key, class Hash, class KeyEqual, class Allocator>
|
|
116
117
|
struct IsUnorderedContainer<std::unordered_set<Key, Hash, KeyEqual, Allocator>>
|
117
118
|
: std::true_type {};
|
118
119
|
|
119
|
-
// container_algorithm_internal::c_size. It is meant for internal use only.
|
120
|
-
|
121
|
-
template <class C>
|
122
|
-
auto c_size(C& c) -> decltype(c.size()) {
|
123
|
-
return c.size();
|
124
|
-
}
|
125
|
-
|
126
|
-
template <class T, std::size_t N>
|
127
|
-
constexpr std::size_t c_size(T (&)[N]) {
|
128
|
-
return N;
|
129
|
-
}
|
130
|
-
|
131
120
|
} // namespace container_algorithm_internal
|
132
121
|
|
133
122
|
// PUBLIC API
|
@@ -348,20 +337,10 @@ container_algorithm_internal::ContainerDifferenceType<const C> c_count_if(
|
|
348
337
|
template <typename C1, typename C2>
|
349
338
|
container_algorithm_internal::ContainerIterPairType<C1, C2> c_mismatch(C1& c1,
|
350
339
|
C2& c2) {
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) {
|
357
|
-
// Negates equality because Cpp17EqualityComparable doesn't require clients
|
358
|
-
// to overload both `operator==` and `operator!=`.
|
359
|
-
if (!(*first1 == *first2)) {
|
360
|
-
break;
|
361
|
-
}
|
362
|
-
}
|
363
|
-
|
364
|
-
return std::make_pair(first1, first2);
|
340
|
+
return std::mismatch(container_algorithm_internal::c_begin(c1),
|
341
|
+
container_algorithm_internal::c_end(c1),
|
342
|
+
container_algorithm_internal::c_begin(c2),
|
343
|
+
container_algorithm_internal::c_end(c2));
|
365
344
|
}
|
366
345
|
|
367
346
|
// Overload of c_mismatch() for using a predicate evaluation other than `==` as
|
@@ -370,56 +349,33 @@ container_algorithm_internal::ContainerIterPairType<C1, C2> c_mismatch(C1& c1,
|
|
370
349
|
template <typename C1, typename C2, typename BinaryPredicate>
|
371
350
|
container_algorithm_internal::ContainerIterPairType<C1, C2> c_mismatch(
|
372
351
|
C1& c1, C2& c2, BinaryPredicate pred) {
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) {
|
379
|
-
if (!pred(*first1, *first2)) {
|
380
|
-
break;
|
381
|
-
}
|
382
|
-
}
|
383
|
-
|
384
|
-
return std::make_pair(first1, first2);
|
352
|
+
return std::mismatch(container_algorithm_internal::c_begin(c1),
|
353
|
+
container_algorithm_internal::c_end(c1),
|
354
|
+
container_algorithm_internal::c_begin(c2),
|
355
|
+
container_algorithm_internal::c_end(c2), pred);
|
385
356
|
}
|
386
357
|
|
387
358
|
// c_equal()
|
388
359
|
//
|
389
360
|
// Container-based version of the <algorithm> `std::equal()` function to
|
390
361
|
// test whether two containers are equal.
|
391
|
-
//
|
392
|
-
// NOTE: the semantics of c_equal() are slightly different than those of
|
393
|
-
// equal(): while the latter iterates over the second container only up to the
|
394
|
-
// size of the first container, c_equal() also checks whether the container
|
395
|
-
// sizes are equal. This better matches expectations about c_equal() based on
|
396
|
-
// its signature.
|
397
|
-
//
|
398
|
-
// Example:
|
399
|
-
// vector v1 = <1, 2, 3>;
|
400
|
-
// vector v2 = <1, 2, 3, 4>;
|
401
|
-
// equal(std::begin(v1), std::end(v1), std::begin(v2)) returns true
|
402
|
-
// c_equal(v1, v2) returns false
|
403
|
-
|
404
362
|
template <typename C1, typename C2>
|
405
363
|
bool c_equal(const C1& c1, const C2& c2) {
|
406
|
-
return (
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
container_algorithm_internal::c_begin(c2)));
|
364
|
+
return std::equal(container_algorithm_internal::c_begin(c1),
|
365
|
+
container_algorithm_internal::c_end(c1),
|
366
|
+
container_algorithm_internal::c_begin(c2),
|
367
|
+
container_algorithm_internal::c_end(c2));
|
411
368
|
}
|
412
369
|
|
413
370
|
// Overload of c_equal() for using a predicate evaluation other than `==` as
|
414
371
|
// the function's test condition.
|
415
372
|
template <typename C1, typename C2, typename BinaryPredicate>
|
416
373
|
bool c_equal(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
|
417
|
-
return (
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
std::forward<BinaryPredicate>(pred)));
|
374
|
+
return std::equal(container_algorithm_internal::c_begin(c1),
|
375
|
+
container_algorithm_internal::c_end(c1),
|
376
|
+
container_algorithm_internal::c_begin(c2),
|
377
|
+
container_algorithm_internal::c_end(c2),
|
378
|
+
std::forward<BinaryPredicate>(pred));
|
423
379
|
}
|
424
380
|
|
425
381
|
// c_is_permutation()
|
@@ -428,20 +384,20 @@ bool c_equal(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
|
|
428
384
|
// to test whether a container is a permutation of another.
|
429
385
|
template <typename C1, typename C2>
|
430
386
|
bool c_is_permutation(const C1& c1, const C2& c2) {
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
387
|
+
return std::is_permutation(container_algorithm_internal::c_begin(c1),
|
388
|
+
container_algorithm_internal::c_end(c1),
|
389
|
+
container_algorithm_internal::c_begin(c2),
|
390
|
+
container_algorithm_internal::c_end(c2));
|
435
391
|
}
|
436
392
|
|
437
393
|
// Overload of c_is_permutation() for using a predicate evaluation other than
|
438
394
|
// `==` as the function's test condition.
|
439
395
|
template <typename C1, typename C2, typename BinaryPredicate>
|
440
396
|
bool c_is_permutation(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
397
|
+
return std::is_permutation(container_algorithm_internal::c_begin(c1),
|
398
|
+
container_algorithm_internal::c_end(c1),
|
399
|
+
container_algorithm_internal::c_begin(c2),
|
400
|
+
container_algorithm_internal::c_end(c2),
|
445
401
|
std::forward<BinaryPredicate>(pred));
|
446
402
|
}
|
447
403
|
|
@@ -818,6 +774,36 @@ void c_shuffle(RandomAccessContainer& c, UniformRandomBitGenerator&& gen) {
|
|
818
774
|
std::forward<UniformRandomBitGenerator>(gen));
|
819
775
|
}
|
820
776
|
|
777
|
+
// c_sample()
|
778
|
+
//
|
779
|
+
// Container-based version of the <algorithm> `std::sample()` function to
|
780
|
+
// randomly sample elements from the container without replacement using a
|
781
|
+
// `gen()` uniform random number generator and write them to an iterator range.
|
782
|
+
template <typename C, typename OutputIterator, typename Distance,
|
783
|
+
typename UniformRandomBitGenerator>
|
784
|
+
OutputIterator c_sample(const C& c, OutputIterator result, Distance n,
|
785
|
+
UniformRandomBitGenerator&& gen) {
|
786
|
+
#if defined(__cpp_lib_sample) && __cpp_lib_sample >= 201603L
|
787
|
+
return std::sample(container_algorithm_internal::c_begin(c),
|
788
|
+
container_algorithm_internal::c_end(c), result, n,
|
789
|
+
std::forward<UniformRandomBitGenerator>(gen));
|
790
|
+
#else
|
791
|
+
// Fall back to a stable selection-sampling implementation.
|
792
|
+
auto first = container_algorithm_internal::c_begin(c);
|
793
|
+
Distance unsampled_elements = c_distance(c);
|
794
|
+
n = (std::min)(n, unsampled_elements);
|
795
|
+
for (; n != 0; ++first) {
|
796
|
+
Distance r =
|
797
|
+
std::uniform_int_distribution<Distance>(0, --unsampled_elements)(gen);
|
798
|
+
if (r < n) {
|
799
|
+
*result++ = *first;
|
800
|
+
--n;
|
801
|
+
}
|
802
|
+
}
|
803
|
+
return result;
|
804
|
+
#endif
|
805
|
+
}
|
806
|
+
|
821
807
|
//------------------------------------------------------------------------------
|
822
808
|
// <algorithm> Partition functions
|
823
809
|
//------------------------------------------------------------------------------
|
@@ -1657,7 +1643,7 @@ bool c_prev_permutation(C& c, LessThan&& comp) {
|
|
1657
1643
|
//
|
1658
1644
|
// Container-based version of the <numeric> `std::iota()` function
|
1659
1645
|
// to compute successive values of `value`, as if incremented with `++value`
|
1660
|
-
// after each element is written
|
1646
|
+
// after each element is written, and write them to the container.
|
1661
1647
|
template <typename Sequence, typename T>
|
1662
1648
|
void c_iota(Sequence& sequence, const T& value) {
|
1663
1649
|
std::iota(container_algorithm_internal::c_begin(sequence),
|
@@ -687,7 +687,7 @@
|
|
687
687
|
|
688
688
|
// When deprecating Abseil code, it is sometimes necessary to turn off the
|
689
689
|
// warning within Abseil, until the deprecated code is actually removed. The
|
690
|
-
// deprecated code can be surrounded with these directives to
|
690
|
+
// deprecated code can be surrounded with these directives to achieve that
|
691
691
|
// result.
|
692
692
|
//
|
693
693
|
// class ABSL_DEPRECATED("Use Bar instead") Foo;
|
@@ -747,9 +747,52 @@
|
|
747
747
|
#define ABSL_CONST_INIT
|
748
748
|
#endif
|
749
749
|
|
750
|
-
//
|
751
|
-
|
752
|
-
|
750
|
+
// ABSL_ATTRIBUTE_PURE_FUNCTION
|
751
|
+
//
|
752
|
+
// ABSL_ATTRIBUTE_PURE_FUNCTION is used to annotate declarations of "pure"
|
753
|
+
// functions. A function is pure if its return value is only a function of its
|
754
|
+
// arguments. The pure attribute prohibits a function from modifying the state
|
755
|
+
// of the program that is observable by means other than inspecting the
|
756
|
+
// function's return value. Declaring such functions with the pure attribute
|
757
|
+
// allows the compiler to avoid emitting some calls in repeated invocations of
|
758
|
+
// the function with the same argument values.
|
759
|
+
//
|
760
|
+
// Example:
|
761
|
+
//
|
762
|
+
// ABSL_ATTRIBUTE_PURE_FUNCTION std::string FormatTime(Time t);
|
763
|
+
#if ABSL_HAVE_CPP_ATTRIBUTE(gnu::pure)
|
764
|
+
#define ABSL_ATTRIBUTE_PURE_FUNCTION [[gnu::pure]]
|
765
|
+
#elif ABSL_HAVE_ATTRIBUTE(pure)
|
766
|
+
#define ABSL_ATTRIBUTE_PURE_FUNCTION __attribute__((pure))
|
767
|
+
#else
|
768
|
+
// If the attribute isn't defined, we'll fallback to ABSL_MUST_USE_RESULT since
|
769
|
+
// pure functions are useless if its return is ignored.
|
770
|
+
#define ABSL_ATTRIBUTE_PURE_FUNCTION ABSL_MUST_USE_RESULT
|
771
|
+
#endif
|
772
|
+
|
773
|
+
// ABSL_ATTRIBUTE_CONST_FUNCTION
|
774
|
+
//
|
775
|
+
// ABSL_ATTRIBUTE_CONST_FUNCTION is used to annotate declarations of "const"
|
776
|
+
// functions. A const function is similar to a pure function, with one
|
777
|
+
// exception: Pure functions may return value that depend on a non-volatile
|
778
|
+
// object that isn't provided as a function argument, while the const function
|
779
|
+
// is guaranteed to return the same result given the same arguments.
|
780
|
+
//
|
781
|
+
// Example:
|
782
|
+
//
|
783
|
+
// ABSL_ATTRIBUTE_CONST_FUNCTION int64_t ToInt64Milliseconds(Duration d);
|
784
|
+
#if defined(_MSC_VER) && !defined(__clang__)
|
785
|
+
// Put the MSVC case first since MSVC seems to parse const as a C++ keyword.
|
786
|
+
#define ABSL_ATTRIBUTE_CONST_FUNCTION ABSL_ATTRIBUTE_PURE_FUNCTION
|
787
|
+
#elif ABSL_HAVE_CPP_ATTRIBUTE(gnu::const)
|
788
|
+
#define ABSL_ATTRIBUTE_CONST_FUNCTION [[gnu::const]]
|
789
|
+
#elif ABSL_HAVE_ATTRIBUTE(const)
|
790
|
+
#define ABSL_ATTRIBUTE_CONST_FUNCTION __attribute__((const))
|
791
|
+
#else
|
792
|
+
// Since const functions are more restrictive pure function, we'll fallback to a
|
793
|
+
// pure function if the const attribute is not handled.
|
794
|
+
#define ABSL_ATTRIBUTE_CONST_FUNCTION ABSL_ATTRIBUTE_PURE_FUNCTION
|
795
|
+
#endif
|
753
796
|
|
754
797
|
// ABSL_ATTRIBUTE_LIFETIME_BOUND indicates that a resource owned by a function
|
755
798
|
// parameter or implicit object parameter is retained by the return value of the
|
@@ -800,15 +843,11 @@
|
|
800
843
|
// See also the upstream documentation:
|
801
844
|
// https://clang.llvm.org/docs/AttributeReference.html#trivial-abi
|
802
845
|
//
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
#define ABSL_ATTRIBUTE_TRIVIAL_ABI __attribute__((trivial_abi))
|
808
|
-
#define ABSL_HAVE_ATTRIBUTE_TRIVIAL_ABI 1
|
809
|
-
#else
|
846
|
+
// b/321691395 - This is currently disabled in open-source builds since
|
847
|
+
// compiler support differs. If system libraries compiled with GCC are mixed
|
848
|
+
// with libraries compiled with Clang, types will have different ideas about
|
849
|
+
// their ABI, leading to hard to debug crashes.
|
810
850
|
#define ABSL_ATTRIBUTE_TRIVIAL_ABI
|
811
|
-
#endif
|
812
851
|
|
813
852
|
// ABSL_ATTRIBUTE_NO_UNIQUE_ADDRESS
|
814
853
|
//
|
@@ -37,6 +37,7 @@
|
|
37
37
|
#include "absl/base/internal/scheduling_mode.h"
|
38
38
|
#include "absl/base/internal/spinlock_wait.h"
|
39
39
|
#include "absl/base/macros.h"
|
40
|
+
#include "absl/base/nullability.h"
|
40
41
|
#include "absl/base/optimization.h"
|
41
42
|
#include "absl/base/port.h"
|
42
43
|
|
@@ -46,7 +47,8 @@ ABSL_NAMESPACE_BEGIN
|
|
46
47
|
class once_flag;
|
47
48
|
|
48
49
|
namespace base_internal {
|
49
|
-
std::atomic<uint32_t
|
50
|
+
absl::Nonnull<std::atomic<uint32_t>*> ControlWord(
|
51
|
+
absl::Nonnull<absl::once_flag*> flag);
|
50
52
|
} // namespace base_internal
|
51
53
|
|
52
54
|
// call_once()
|
@@ -89,7 +91,8 @@ class once_flag {
|
|
89
91
|
once_flag& operator=(const once_flag&) = delete;
|
90
92
|
|
91
93
|
private:
|
92
|
-
friend std::atomic<uint32_t
|
94
|
+
friend absl::Nonnull<std::atomic<uint32_t>*> base_internal::ControlWord(
|
95
|
+
absl::Nonnull<once_flag*> flag);
|
93
96
|
std::atomic<uint32_t> control_;
|
94
97
|
};
|
95
98
|
|
@@ -103,7 +106,8 @@ namespace base_internal {
|
|
103
106
|
// Like call_once, but uses KERNEL_ONLY scheduling. Intended to be used to
|
104
107
|
// initialize entities used by the scheduler implementation.
|
105
108
|
template <typename Callable, typename... Args>
|
106
|
-
void LowLevelCallOnce(absl::once_flag
|
109
|
+
void LowLevelCallOnce(absl::Nonnull<absl::once_flag*> flag, Callable&& fn,
|
110
|
+
Args&&... args);
|
107
111
|
|
108
112
|
// Disables scheduling while on stack when scheduling mode is non-cooperative.
|
109
113
|
// No effect for cooperative scheduling modes.
|
@@ -143,10 +147,10 @@ enum {
|
|
143
147
|
};
|
144
148
|
|
145
149
|
template <typename Callable, typename... Args>
|
146
|
-
ABSL_ATTRIBUTE_NOINLINE
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
+
ABSL_ATTRIBUTE_NOINLINE void CallOnceImpl(
|
151
|
+
absl::Nonnull<std::atomic<uint32_t>*> control,
|
152
|
+
base_internal::SchedulingMode scheduling_mode, Callable&& fn,
|
153
|
+
Args&&... args) {
|
150
154
|
#ifndef NDEBUG
|
151
155
|
{
|
152
156
|
uint32_t old_control = control->load(std::memory_order_relaxed);
|
@@ -185,12 +189,14 @@ void CallOnceImpl(std::atomic<uint32_t>* control,
|
|
185
189
|
} // else *control is already kOnceDone
|
186
190
|
}
|
187
191
|
|
188
|
-
inline std::atomic<uint32_t
|
192
|
+
inline absl::Nonnull<std::atomic<uint32_t>*> ControlWord(
|
193
|
+
absl::Nonnull<once_flag*> flag) {
|
189
194
|
return &flag->control_;
|
190
195
|
}
|
191
196
|
|
192
197
|
template <typename Callable, typename... Args>
|
193
|
-
void LowLevelCallOnce(absl::once_flag
|
198
|
+
void LowLevelCallOnce(absl::Nonnull<absl::once_flag*> flag, Callable&& fn,
|
199
|
+
Args&&... args) {
|
194
200
|
std::atomic<uint32_t>* once = base_internal::ControlWord(flag);
|
195
201
|
uint32_t s = once->load(std::memory_order_acquire);
|
196
202
|
if (ABSL_PREDICT_FALSE(s != base_internal::kOnceDone)) {
|
@@ -90,7 +90,7 @@ ABSL_NAMESPACE_BEGIN
|
|
90
90
|
//
|
91
91
|
// Such implicit cast chaining may be useful within template logic.
|
92
92
|
template <typename To>
|
93
|
-
constexpr To implicit_cast(typename absl::internal::
|
93
|
+
constexpr To implicit_cast(typename absl::internal::type_identity_t<To> to) {
|
94
94
|
return to;
|
95
95
|
}
|
96
96
|
|
@@ -75,6 +75,12 @@
|
|
75
75
|
#define ABSL_INTERNAL_CPLUSPLUS_LANG __cplusplus
|
76
76
|
#endif
|
77
77
|
|
78
|
+
#if defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \
|
79
|
+
ABSL_INTERNAL_CPLUSPLUS_LANG >= 202002L
|
80
|
+
// Include library feature test macros.
|
81
|
+
#include <version>
|
82
|
+
#endif
|
83
|
+
|
78
84
|
#if defined(__APPLE__)
|
79
85
|
// Included for TARGET_OS_IPHONE, __IPHONE_OS_VERSION_MIN_REQUIRED,
|
80
86
|
// __IPHONE_8_0.
|
@@ -111,7 +117,7 @@
|
|
111
117
|
//
|
112
118
|
// LTS releases can be obtained from
|
113
119
|
// https://github.com/abseil/abseil-cpp/releases.
|
114
|
-
#define ABSL_LTS_RELEASE_VERSION
|
120
|
+
#define ABSL_LTS_RELEASE_VERSION 20240116
|
115
121
|
#define ABSL_LTS_RELEASE_PATCH_LEVEL 0
|
116
122
|
|
117
123
|
// Helper macro to convert a CPP variable to a string literal.
|
@@ -332,8 +338,8 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
332
338
|
#ifdef ABSL_HAVE_INTRINSIC_INT128
|
333
339
|
#error ABSL_HAVE_INTRINSIC_INT128 cannot be directly set
|
334
340
|
#elif defined(__SIZEOF_INT128__)
|
335
|
-
#if (defined(__clang__) && !defined(_WIN32)) ||
|
336
|
-
(defined(__CUDACC__) && __CUDACC_VER_MAJOR__ >= 9) ||
|
341
|
+
#if (defined(__clang__) && !defined(_WIN32)) || \
|
342
|
+
(defined(__CUDACC__) && __CUDACC_VER_MAJOR__ >= 9) || \
|
337
343
|
(defined(__GNUC__) && !defined(__clang__) && !defined(__CUDACC__))
|
338
344
|
#define ABSL_HAVE_INTRINSIC_INT128 1
|
339
345
|
#elif defined(__CUDACC__)
|
@@ -395,7 +401,7 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
395
401
|
// Windows _WIN32
|
396
402
|
// NaCL __native_client__
|
397
403
|
// AsmJS __asmjs__
|
398
|
-
// WebAssembly
|
404
|
+
// WebAssembly (Emscripten) __EMSCRIPTEN__
|
399
405
|
// Fuchsia __Fuchsia__
|
400
406
|
//
|
401
407
|
// Note that since Android defines both __ANDROID__ and __linux__, one
|
@@ -407,11 +413,11 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
407
413
|
// POSIX.1-2001.
|
408
414
|
#ifdef ABSL_HAVE_MMAP
|
409
415
|
#error ABSL_HAVE_MMAP cannot be directly set
|
410
|
-
#elif defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) ||
|
411
|
-
defined(_AIX) || defined(__ros__) || defined(__native_client__) ||
|
412
|
-
defined(__asmjs__) || defined(
|
413
|
-
defined(__sun) || defined(__ASYLO__) || defined(__myriad2__) ||
|
414
|
-
defined(__HAIKU__) || defined(__OpenBSD__) || defined(__NetBSD__) ||
|
416
|
+
#elif defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || \
|
417
|
+
defined(_AIX) || defined(__ros__) || defined(__native_client__) || \
|
418
|
+
defined(__asmjs__) || defined(__EMSCRIPTEN__) || defined(__Fuchsia__) || \
|
419
|
+
defined(__sun) || defined(__ASYLO__) || defined(__myriad2__) || \
|
420
|
+
defined(__HAIKU__) || defined(__OpenBSD__) || defined(__NetBSD__) || \
|
415
421
|
defined(__QNX__) || defined(__VXWORKS__) || defined(__hexagon__)
|
416
422
|
#define ABSL_HAVE_MMAP 1
|
417
423
|
#endif
|
@@ -484,6 +490,8 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
484
490
|
// https://sourceforge.net/p/mingw-w64/mingw-w64/ci/master/tree/mingw-w64-crt/misc/alarm.c
|
485
491
|
#elif defined(__EMSCRIPTEN__)
|
486
492
|
// emscripten doesn't support signals
|
493
|
+
#elif defined(__wasi__)
|
494
|
+
// WASI doesn't support signals
|
487
495
|
#elif defined(__Fuchsia__)
|
488
496
|
// Signals don't exist on fuchsia.
|
489
497
|
#elif defined(__native_client__)
|
@@ -536,14 +544,14 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
536
544
|
// and
|
537
545
|
// https://github.com/llvm/llvm-project/commit/0bc451e7e137c4ccadcd3377250874f641ca514a
|
538
546
|
// The second has the actually correct versions, thus, is what we copy here.
|
539
|
-
#if defined(__APPLE__) &&
|
540
|
-
((defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) &&
|
541
|
-
__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101300) ||
|
542
|
-
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) &&
|
543
|
-
__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 120000) ||
|
544
|
-
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) &&
|
545
|
-
__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 50000) ||
|
546
|
-
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) &&
|
547
|
+
#if defined(__APPLE__) && \
|
548
|
+
((defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \
|
549
|
+
__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101300) || \
|
550
|
+
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && \
|
551
|
+
__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 120000) || \
|
552
|
+
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && \
|
553
|
+
__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 50000) || \
|
554
|
+
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && \
|
547
555
|
__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 120000))
|
548
556
|
#define ABSL_INTERNAL_APPLE_CXX17_TYPES_UNAVAILABLE 1
|
549
557
|
#else
|
@@ -555,6 +563,8 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
555
563
|
// Checks whether C++17 std::any is available.
|
556
564
|
#ifdef ABSL_HAVE_STD_ANY
|
557
565
|
#error "ABSL_HAVE_STD_ANY cannot be directly set."
|
566
|
+
#elif defined(__cpp_lib_any) && __cpp_lib_any >= 201606L
|
567
|
+
#define ABSL_HAVE_STD_ANY 1
|
558
568
|
#elif defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \
|
559
569
|
ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L && \
|
560
570
|
!ABSL_INTERNAL_APPLE_CXX17_TYPES_UNAVAILABLE
|
@@ -566,7 +576,9 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
566
576
|
// Checks whether C++17 std::optional is available.
|
567
577
|
#ifdef ABSL_HAVE_STD_OPTIONAL
|
568
578
|
#error "ABSL_HAVE_STD_OPTIONAL cannot be directly set."
|
569
|
-
#elif defined(
|
579
|
+
#elif defined(__cpp_lib_optional) && __cpp_lib_optional >= 202106L
|
580
|
+
#define ABSL_HAVE_STD_OPTIONAL 1
|
581
|
+
#elif defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \
|
570
582
|
ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L && \
|
571
583
|
!ABSL_INTERNAL_APPLE_CXX17_TYPES_UNAVAILABLE
|
572
584
|
#define ABSL_HAVE_STD_OPTIONAL 1
|
@@ -577,6 +589,8 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
577
589
|
// Checks whether C++17 std::variant is available.
|
578
590
|
#ifdef ABSL_HAVE_STD_VARIANT
|
579
591
|
#error "ABSL_HAVE_STD_VARIANT cannot be directly set."
|
592
|
+
#elif defined(__cpp_lib_variant) && __cpp_lib_variant >= 201606L
|
593
|
+
#define ABSL_HAVE_STD_VARIANT 1
|
580
594
|
#elif defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \
|
581
595
|
ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L && \
|
582
596
|
!ABSL_INTERNAL_APPLE_CXX17_TYPES_UNAVAILABLE
|
@@ -588,11 +602,29 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
588
602
|
// Checks whether C++17 std::string_view is available.
|
589
603
|
#ifdef ABSL_HAVE_STD_STRING_VIEW
|
590
604
|
#error "ABSL_HAVE_STD_STRING_VIEW cannot be directly set."
|
605
|
+
#elif defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L
|
606
|
+
#define ABSL_HAVE_STD_STRING_VIEW 1
|
591
607
|
#elif defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \
|
592
608
|
ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L
|
593
609
|
#define ABSL_HAVE_STD_STRING_VIEW 1
|
594
610
|
#endif
|
595
611
|
|
612
|
+
// ABSL_HAVE_STD_ORDERING
|
613
|
+
//
|
614
|
+
// Checks whether C++20 std::{partial,weak,strong}_ordering are available.
|
615
|
+
//
|
616
|
+
// __cpp_lib_three_way_comparison is missing on libc++
|
617
|
+
// (https://github.com/llvm/llvm-project/issues/73953) so treat it as defined
|
618
|
+
// when building in C++20 mode.
|
619
|
+
#ifdef ABSL_HAVE_STD_ORDERING
|
620
|
+
#error "ABSL_HAVE_STD_ORDERING cannot be directly set."
|
621
|
+
#elif (defined(__cpp_lib_three_way_comparison) && \
|
622
|
+
__cpp_lib_three_way_comparison >= 201907L) || \
|
623
|
+
(defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \
|
624
|
+
ABSL_INTERNAL_CPLUSPLUS_LANG >= 202002L)
|
625
|
+
#define ABSL_HAVE_STD_ORDERING 1
|
626
|
+
#endif
|
627
|
+
|
596
628
|
// ABSL_USES_STD_ANY
|
597
629
|
//
|
598
630
|
// Indicates whether absl::any is an alias for std::any.
|
@@ -655,6 +687,22 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
655
687
|
#error options.h is misconfigured.
|
656
688
|
#endif
|
657
689
|
|
690
|
+
// ABSL_USES_STD_ORDERING
|
691
|
+
//
|
692
|
+
// Indicates whether absl::{partial,weak,strong}_ordering are aliases for the
|
693
|
+
// std:: ordering types.
|
694
|
+
#if !defined(ABSL_OPTION_USE_STD_ORDERING)
|
695
|
+
#error options.h is misconfigured.
|
696
|
+
#elif ABSL_OPTION_USE_STD_ORDERING == 0 || \
|
697
|
+
(ABSL_OPTION_USE_STD_ORDERING == 2 && !defined(ABSL_HAVE_STD_ORDERING))
|
698
|
+
#undef ABSL_USES_STD_ORDERING
|
699
|
+
#elif ABSL_OPTION_USE_STD_ORDERING == 1 || \
|
700
|
+
(ABSL_OPTION_USE_STD_ORDERING == 2 && defined(ABSL_HAVE_STD_ORDERING))
|
701
|
+
#define ABSL_USES_STD_ORDERING 1
|
702
|
+
#else
|
703
|
+
#error options.h is misconfigured.
|
704
|
+
#endif
|
705
|
+
|
658
706
|
// In debug mode, MSVC 2017's std::variant throws a EXCEPTION_ACCESS_VIOLATION
|
659
707
|
// SEH exception from emplace for variant<SomeStruct> when constructing the
|
660
708
|
// struct can throw. This defeats some of variant_test and
|
@@ -837,11 +885,30 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
837
885
|
// RTTI support.
|
838
886
|
#ifdef ABSL_INTERNAL_HAS_RTTI
|
839
887
|
#error ABSL_INTERNAL_HAS_RTTI cannot be directly set
|
840
|
-
#elif (
|
841
|
-
(defined(_MSC_VER) && defined(_CPPRTTI)) || \
|
842
|
-
(!defined(__GNUC__) && !defined(_MSC_VER))
|
888
|
+
#elif ABSL_HAVE_FEATURE(cxx_rtti)
|
843
889
|
#define ABSL_INTERNAL_HAS_RTTI 1
|
844
|
-
#
|
890
|
+
#elif defined(__GNUC__) && defined(__GXX_RTTI)
|
891
|
+
#define ABSL_INTERNAL_HAS_RTTI 1
|
892
|
+
#elif defined(_MSC_VER) && defined(_CPPRTTI)
|
893
|
+
#define ABSL_INTERNAL_HAS_RTTI 1
|
894
|
+
#elif !defined(__GNUC__) && !defined(_MSC_VER)
|
895
|
+
// Unknown compiler, default to RTTI
|
896
|
+
#define ABSL_INTERNAL_HAS_RTTI 1
|
897
|
+
#endif
|
898
|
+
|
899
|
+
// `ABSL_INTERNAL_HAS_CXA_DEMANGLE` determines whether `abi::__cxa_demangle` is
|
900
|
+
// available.
|
901
|
+
#ifdef ABSL_INTERNAL_HAS_CXA_DEMANGLE
|
902
|
+
#error ABSL_INTERNAL_HAS_CXA_DEMANGLE cannot be directly set
|
903
|
+
#elif defined(OS_ANDROID) && (defined(__i386__) || defined(__x86_64__))
|
904
|
+
#define ABSL_INTERNAL_HAS_CXA_DEMANGLE 0
|
905
|
+
#elif defined(__GNUC__) && defined(__GNUC_MINOR__) && \
|
906
|
+
(__GNUC__ >= 4 || (__GNUC__ >= 3 && __GNUC_MINOR__ >= 4)) && \
|
907
|
+
!defined(__mips__)
|
908
|
+
#define ABSL_INTERNAL_HAS_CXA_DEMANGLE 1
|
909
|
+
#elif defined(__clang__) && !defined(_MSC_VER)
|
910
|
+
#define ABSL_INTERNAL_HAS_CXA_DEMANGLE 1
|
911
|
+
#endif
|
845
912
|
|
846
913
|
// ABSL_INTERNAL_HAVE_SSE is used for compile-time detection of SSE support.
|
847
914
|
// See https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html for an overview of
|
@@ -928,8 +995,8 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
|
|
928
995
|
#if __EMSCRIPTEN_tiny__ >= 1000
|
929
996
|
#error __EMSCRIPTEN_tiny__ is too big to fit in ABSL_INTERNAL_EMSCRIPTEN_VERSION
|
930
997
|
#endif
|
931
|
-
#define ABSL_INTERNAL_EMSCRIPTEN_VERSION
|
932
|
-
((__EMSCRIPTEN_major__)*1000000 + (__EMSCRIPTEN_minor__)*1000 + \
|
998
|
+
#define ABSL_INTERNAL_EMSCRIPTEN_VERSION \
|
999
|
+
((__EMSCRIPTEN_major__) * 1000000 + (__EMSCRIPTEN_minor__) * 1000 + \
|
933
1000
|
(__EMSCRIPTEN_tiny__))
|
934
1001
|
#endif
|
935
1002
|
#endif
|
@@ -22,6 +22,7 @@
|
|
22
22
|
#include "absl/base/casts.h"
|
23
23
|
#include "absl/base/config.h"
|
24
24
|
#include "absl/base/internal/unaligned_access.h"
|
25
|
+
#include "absl/base/nullability.h"
|
25
26
|
#include "absl/base/port.h"
|
26
27
|
|
27
28
|
namespace absl {
|
@@ -160,27 +161,27 @@ inline int64_t ToHost(int64_t x) {
|
|
160
161
|
}
|
161
162
|
|
162
163
|
// Functions to do unaligned loads and stores in little-endian order.
|
163
|
-
inline uint16_t Load16(const void
|
164
|
+
inline uint16_t Load16(absl::Nonnull<const void *> p) {
|
164
165
|
return ToHost16(ABSL_INTERNAL_UNALIGNED_LOAD16(p));
|
165
166
|
}
|
166
167
|
|
167
|
-
inline void Store16(void
|
168
|
+
inline void Store16(absl::Nonnull<void *> p, uint16_t v) {
|
168
169
|
ABSL_INTERNAL_UNALIGNED_STORE16(p, FromHost16(v));
|
169
170
|
}
|
170
171
|
|
171
|
-
inline uint32_t Load32(const void
|
172
|
+
inline uint32_t Load32(absl::Nonnull<const void *> p) {
|
172
173
|
return ToHost32(ABSL_INTERNAL_UNALIGNED_LOAD32(p));
|
173
174
|
}
|
174
175
|
|
175
|
-
inline void Store32(void
|
176
|
+
inline void Store32(absl::Nonnull<void *> p, uint32_t v) {
|
176
177
|
ABSL_INTERNAL_UNALIGNED_STORE32(p, FromHost32(v));
|
177
178
|
}
|
178
179
|
|
179
|
-
inline uint64_t Load64(const void
|
180
|
+
inline uint64_t Load64(absl::Nonnull<const void *> p) {
|
180
181
|
return ToHost64(ABSL_INTERNAL_UNALIGNED_LOAD64(p));
|
181
182
|
}
|
182
183
|
|
183
|
-
inline void Store64(void
|
184
|
+
inline void Store64(absl::Nonnull<void *> p, uint64_t v) {
|
184
185
|
ABSL_INTERNAL_UNALIGNED_STORE64(p, FromHost64(v));
|
185
186
|
}
|
186
187
|
|
@@ -250,27 +251,27 @@ inline int64_t ToHost(int64_t x) {
|
|
250
251
|
}
|
251
252
|
|
252
253
|
// Functions to do unaligned loads and stores in big-endian order.
|
253
|
-
inline uint16_t Load16(const void
|
254
|
+
inline uint16_t Load16(absl::Nonnull<const void *> p) {
|
254
255
|
return ToHost16(ABSL_INTERNAL_UNALIGNED_LOAD16(p));
|
255
256
|
}
|
256
257
|
|
257
|
-
inline void Store16(void
|
258
|
+
inline void Store16(absl::Nonnull<void *> p, uint16_t v) {
|
258
259
|
ABSL_INTERNAL_UNALIGNED_STORE16(p, FromHost16(v));
|
259
260
|
}
|
260
261
|
|
261
|
-
inline uint32_t Load32(const void
|
262
|
+
inline uint32_t Load32(absl::Nonnull<const void *> p) {
|
262
263
|
return ToHost32(ABSL_INTERNAL_UNALIGNED_LOAD32(p));
|
263
264
|
}
|
264
265
|
|
265
|
-
inline void Store32(void
|
266
|
+
inline void Store32(absl::Nonnull<void *>p, uint32_t v) {
|
266
267
|
ABSL_INTERNAL_UNALIGNED_STORE32(p, FromHost32(v));
|
267
268
|
}
|
268
269
|
|
269
|
-
inline uint64_t Load64(const void
|
270
|
+
inline uint64_t Load64(absl::Nonnull<const void *> p) {
|
270
271
|
return ToHost64(ABSL_INTERNAL_UNALIGNED_LOAD64(p));
|
271
272
|
}
|
272
273
|
|
273
|
-
inline void Store64(void
|
274
|
+
inline void Store64(absl::Nonnull<void *> p, uint64_t v) {
|
274
275
|
ABSL_INTERNAL_UNALIGNED_STORE64(p, FromHost64(v));
|
275
276
|
}
|
276
277
|
|
@@ -22,13 +22,15 @@ namespace absl {
|
|
22
22
|
ABSL_NAMESPACE_BEGIN
|
23
23
|
namespace internal {
|
24
24
|
|
25
|
+
// This is a back-fill of C++20's `std::type_identity`.
|
25
26
|
template <typename T>
|
26
|
-
struct
|
27
|
+
struct type_identity {
|
27
28
|
typedef T type;
|
28
29
|
};
|
29
30
|
|
31
|
+
// This is a back-fill of C++20's `std::type_identity_t`.
|
30
32
|
template <typename T>
|
31
|
-
using
|
33
|
+
using type_identity_t = typename type_identity<T>::type;
|
32
34
|
|
33
35
|
} // namespace internal
|
34
36
|
ABSL_NAMESPACE_END
|