grpc 1.48.0 → 1.49.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +104 -41
- data/include/grpc/event_engine/event_engine.h +19 -16
- data/include/grpc/impl/codegen/grpc_types.h +3 -8
- data/include/grpc/impl/codegen/port_platform.h +0 -8
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +3 -3
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +2 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +117 -200
- data/src/core/ext/filters/client_channel/client_channel.h +15 -8
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +0 -29
- data/src/core/ext/filters/client_channel/client_channel_factory.h +2 -10
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
- data/src/core/ext/filters/client_channel/config_selector.h +12 -4
- data/src/core/ext/filters/client_channel/connector.h +4 -5
- data/src/core/ext/filters/client_channel/http_proxy.cc +53 -65
- data/src/core/ext/filters/client_channel/http_proxy.h +12 -9
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +14 -12
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +6 -6
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +100 -124
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +12 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +5 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +169 -63
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +25 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +15 -19
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +66 -78
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +44 -44
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +6 -5
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +65 -77
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +15 -14
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +19 -14
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +60 -67
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +40 -49
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +81 -97
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +53 -61
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +171 -102
- data/src/core/ext/filters/client_channel/proxy_mapper.h +13 -14
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +19 -16
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +8 -7
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +4 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +431 -145
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +170 -99
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +20 -7
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +17 -15
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +7 -17
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +11 -0
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +13 -14
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -4
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +5 -6
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +4 -13
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +162 -165
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +37 -30
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +7 -10
- data/src/core/ext/filters/client_channel/retry_filter.cc +0 -7
- data/src/core/ext/filters/client_channel/retry_service_config.cc +30 -19
- data/src/core/ext/filters/client_channel/retry_service_config.h +6 -9
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +6 -7
- data/src/core/ext/filters/client_channel/subchannel.cc +49 -89
- data/src/core/ext/filters/client_channel/subchannel.h +8 -8
- data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +6 -76
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +16 -25
- data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +3 -4
- data/src/core/ext/filters/deadline/deadline_filter.cc +6 -6
- data/src/core/ext/filters/deadline/deadline_filter.h +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +1 -3
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +1 -1
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +17 -12
- data/src/core/ext/filters/fault_injection/service_config_parser.h +4 -5
- data/src/core/ext/filters/http/client/http_client_filter.cc +2 -3
- data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -2
- data/src/core/ext/filters/http/client_authority_filter.h +1 -1
- data/src/core/ext/filters/http/server/http_server_filter.cc +2 -3
- data/src/core/ext/filters/http/server/http_server_filter.h +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +13 -7
- data/src/core/ext/filters/message_size/message_size_filter.h +3 -6
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -12
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +4 -6
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +5 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +3 -5
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +35 -62
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +62 -89
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +4 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +130 -165
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +67 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -0
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +7 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +25 -8
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +8 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -10
- data/src/core/ext/transport/chttp2/transport/internal.h +2 -1
- data/src/core/ext/transport/inproc/inproc_transport.cc +40 -74
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +24 -8
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +8 -327
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +83 -1723
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +352 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1768 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +6 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +33 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -3
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +14 -14
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +90 -30
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +21 -19
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +124 -34
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +23 -22
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +153 -48
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +11 -11
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +84 -28
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +25 -23
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +156 -48
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +12 -12
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +78 -26
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +9 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +54 -18
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +21 -20
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +117 -44
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +36 -12
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +37 -13
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +170 -15
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +7 -4
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +36 -4
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +6 -6
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +48 -16
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +54 -18
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +21 -9
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +100 -14
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +7 -22
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +36 -77
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +121 -76
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +647 -163
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +34 -15
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +161 -22
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +98 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +1 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +11 -4
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +58 -4
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +35 -27
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +177 -52
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +10 -8
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +66 -14
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +131 -16
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +632 -12
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +24 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +24 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +202 -0
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +6 -2
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -1
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +11 -11
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +66 -22
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +9 -9
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +72 -24
- data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
- data/src/core/ext/upb-generated/google/api/http.upb.h +18 -6
- data/src/core/ext/upb-generated/google/api/httpbody.upb.c +1 -1
- data/src/core/ext/upb-generated/google/api/httpbody.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +44 -43
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +177 -55
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +2 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +18 -6
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +6 -6
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +54 -18
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +6 -2
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +2 -2
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +24 -8
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +6 -2
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +7 -7
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +60 -20
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +1 -1
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +12 -4
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +12 -4
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +6 -6
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +54 -18
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +2 -2
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +12 -4
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +7 -7
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +42 -14
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +23 -11
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -3
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +7 -3
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -3
- data/src/core/ext/upb-generated/validate/validate.upb.c +22 -22
- data/src/core/ext/upb-generated/validate/validate.upb.h +139 -47
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +23 -11
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +7 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +27 -11
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +7 -3
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +2 -2
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +6 -6
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +54 -18
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +2 -2
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +6 -2
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +67 -274
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +0 -85
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +256 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +115 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +14 -11
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +107 -107
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +191 -187
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +156 -154
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +186 -183
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +136 -134
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +16 -16
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +162 -139
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +39 -31
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +12 -8
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +72 -75
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +0 -5
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +713 -670
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +150 -139
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +46 -25
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +477 -466
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +21 -18
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +153 -84
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +113 -113
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -28
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +69 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +92 -90
- data/src/core/ext/xds/upb_utils.h +0 -21
- data/src/core/ext/xds/xds_api.cc +53 -86
- data/src/core/ext/xds/xds_api.h +19 -28
- data/src/core/ext/xds/xds_bootstrap.cc +39 -52
- data/src/core/ext/xds/xds_bootstrap.h +28 -8
- data/src/core/ext/xds/xds_certificate_provider.h +9 -0
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +6 -4
- data/src/core/ext/xds/xds_channel_stack_modifier.h +8 -0
- data/src/core/ext/xds/xds_client.cc +555 -1214
- data/src/core/ext/xds/xds_client.h +16 -44
- data/src/core/ext/xds/xds_client_grpc.cc +291 -0
- data/src/core/ext/xds/xds_client_grpc.h +102 -0
- data/src/core/ext/xds/xds_cluster.cc +92 -103
- data/src/core/ext/xds/xds_cluster.h +6 -5
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +10 -14
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +1 -0
- data/src/core/ext/xds/xds_common_types.cc +134 -110
- data/src/core/ext/xds/xds_common_types.h +6 -7
- data/src/core/ext/xds/xds_endpoint.cc +80 -80
- data/src/core/ext/xds/xds_endpoint.h +4 -4
- data/src/core/ext/xds/xds_http_fault_filter.cc +4 -11
- data/src/core/ext/xds/xds_http_fault_filter.h +3 -3
- data/src/core/ext/xds/xds_http_filters.h +3 -3
- data/src/core/ext/xds/xds_http_rbac_filter.cc +39 -58
- data/src/core/ext/xds/xds_http_rbac_filter.h +3 -3
- data/src/core/ext/xds/xds_lb_policy_registry.cc +17 -20
- data/src/core/ext/xds/xds_lb_policy_registry.h +4 -4
- data/src/core/ext/xds/xds_listener.cc +329 -299
- data/src/core/ext/xds/xds_listener.h +4 -4
- data/src/core/ext/xds/xds_resource_type.h +13 -2
- data/src/core/ext/xds/xds_route_config.cc +180 -177
- data/src/core/ext/xds/xds_route_config.h +31 -17
- data/src/core/ext/xds/xds_routing.cc +3 -6
- data/src/core/ext/xds/xds_routing.h +7 -9
- data/src/core/ext/xds/xds_server_config_fetcher.cc +76 -81
- data/src/core/ext/xds/xds_transport.h +86 -0
- data/src/core/ext/xds/xds_transport_grpc.cc +349 -0
- data/src/core/ext/xds/xds_transport_grpc.h +135 -0
- data/src/core/lib/address_utils/parse_address.cc +19 -17
- data/src/core/lib/address_utils/parse_address.h +8 -5
- data/src/core/lib/avl/avl.h +47 -25
- data/src/core/lib/channel/call_tracer.h +1 -1
- data/src/core/lib/channel/channel_args.cc +88 -19
- data/src/core/lib/channel/channel_args.h +113 -62
- data/src/core/lib/channel/channel_stack.cc +0 -1
- data/src/core/lib/channel/channel_stack_builder.cc +3 -3
- data/src/core/lib/channel/channel_stack_builder.h +2 -2
- data/src/core/lib/channel/channel_stack_builder_impl.cc +2 -4
- data/src/core/lib/channel/channelz.cc +27 -37
- data/src/core/lib/channel/channelz.h +9 -0
- data/src/core/lib/channel/promise_based_filter.h +0 -1
- data/src/core/lib/config/core_configuration.h +48 -35
- data/src/core/lib/debug/stats.cc +12 -15
- data/src/core/lib/debug/stats.h +11 -3
- data/src/core/lib/event_engine/{event_engine.cc → default_event_engine.cc} +9 -5
- data/src/core/lib/event_engine/{event_engine_factory.h → default_event_engine.h} +4 -8
- data/src/core/lib/event_engine/default_event_engine_factory.cc +20 -3
- data/src/core/lib/event_engine/default_event_engine_factory.h +33 -0
- data/src/core/lib/event_engine/executor/executor.h +38 -0
- data/src/core/lib/event_engine/executor/threaded_executor.cc +36 -0
- data/src/core/lib/event_engine/executor/threaded_executor.h +44 -0
- data/src/core/lib/event_engine/forkable.cc +98 -0
- data/src/core/lib/event_engine/forkable.h +61 -0
- data/src/core/lib/event_engine/poller.h +54 -0
- data/src/core/lib/event_engine/{iomgr_engine/iomgr_engine.cc → posix_engine/posix_engine.cc} +30 -47
- data/src/core/lib/event_engine/{iomgr_engine/iomgr_engine.h → posix_engine/posix_engine.h} +27 -28
- data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer.cc +4 -5
- data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer.h +8 -8
- data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_heap.cc +4 -4
- data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_heap.h +5 -5
- data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_manager.cc +46 -10
- data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_manager.h +17 -8
- data/src/core/lib/event_engine/promise.h +11 -2
- data/src/core/lib/event_engine/socket_notifier.h +55 -0
- data/src/core/lib/event_engine/{iomgr_engine/thread_pool.cc → thread_pool.cc} +49 -14
- data/src/core/lib/event_engine/{iomgr_engine/thread_pool.h → thread_pool.h} +21 -10
- data/src/core/lib/event_engine/utils.cc +49 -0
- data/src/core/lib/event_engine/utils.h +40 -0
- data/src/core/lib/event_engine/windows/iocp.cc +149 -0
- data/src/core/lib/event_engine/windows/iocp.h +68 -0
- data/src/core/lib/event_engine/windows/win_socket.cc +196 -0
- data/src/core/lib/event_engine/windows/win_socket.h +120 -0
- data/src/core/lib/event_engine/windows/windows_engine.cc +159 -0
- data/src/core/lib/event_engine/windows/windows_engine.h +120 -0
- data/src/core/lib/gpr/time.cc +11 -9
- data/src/core/lib/gpr/useful.h +29 -0
- data/src/core/lib/gprpp/bitset.h +3 -13
- data/src/core/lib/gprpp/debug_location.h +39 -7
- data/src/core/lib/gprpp/manual_constructor.h +0 -1
- data/src/core/lib/gprpp/no_destruct.h +94 -0
- data/src/core/lib/gprpp/ref_counted_ptr.h +0 -1
- data/src/core/lib/gprpp/status_helper.cc +1 -0
- data/src/core/lib/gprpp/table.h +0 -1
- data/src/core/lib/{event_engine/iomgr_engine → gprpp}/time_averaged_stats.cc +3 -5
- data/src/core/lib/{event_engine/iomgr_engine → gprpp}/time_averaged_stats.h +5 -7
- data/src/core/lib/{iomgr → gprpp}/work_serializer.cc +34 -18
- data/src/core/lib/{iomgr → gprpp}/work_serializer.h +21 -27
- data/src/core/lib/http/httpcli.cc +12 -24
- data/src/core/lib/http/httpcli_security_connector.cc +11 -11
- data/src/core/lib/iomgr/call_combiner.cc +0 -26
- data/src/core/lib/iomgr/closure.h +0 -9
- data/src/core/lib/iomgr/combiner.cc +0 -20
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -1
- data/src/core/lib/iomgr/error.cc +0 -773
- data/src/core/lib/iomgr/error.h +0 -145
- data/src/core/lib/iomgr/error_cfstream.cc +0 -5
- data/src/core/lib/iomgr/ev_poll_posix.cc +17 -9
- data/src/core/lib/iomgr/exec_ctx.cc +0 -12
- data/src/core/lib/iomgr/executor.cc +0 -10
- data/src/core/lib/iomgr/executor.h +0 -3
- data/src/core/lib/iomgr/lockfree_event.cc +0 -17
- data/src/core/lib/iomgr/port.h +3 -0
- data/src/core/lib/iomgr/resolve_address.h +29 -6
- data/src/core/lib/iomgr/resolve_address_posix.cc +38 -8
- data/src/core/lib/iomgr/resolve_address_posix.h +19 -5
- data/src/core/lib/iomgr/resolve_address_windows.cc +40 -10
- data/src/core/lib/iomgr/resolve_address_windows.h +19 -5
- data/src/core/lib/iomgr/socket_windows.h +0 -2
- data/src/core/lib/iomgr/tcp_posix.cc +118 -6
- data/src/core/lib/iomgr/timer_generic.cc +6 -8
- data/src/core/lib/json/json.h +19 -22
- data/src/core/lib/json/json_args.h +34 -0
- data/src/core/lib/json/json_object_loader.cc +233 -0
- data/src/core/lib/json/json_object_loader.h +618 -0
- data/src/core/lib/json/json_reader.cc +86 -62
- data/src/core/lib/json/json_util.cc +8 -36
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.cc +3 -44
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.h +15 -24
- data/src/core/lib/load_balancing/lb_policy_factory.h +49 -0
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy_registry.cc +49 -72
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy_registry.h +27 -27
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/subchannel_interface.h +6 -6
- data/src/core/lib/promise/activity.h +56 -8
- data/src/core/lib/promise/arena_promise.h +84 -81
- data/src/core/lib/promise/context.h +0 -1
- data/src/core/lib/promise/detail/basic_seq.h +43 -23
- data/src/core/lib/promise/detail/promise_factory.h +0 -1
- data/src/core/lib/promise/map.h +0 -1
- data/src/core/lib/promise/seq.h +25 -4
- data/src/core/lib/promise/sleep.cc +38 -42
- data/src/core/lib/promise/sleep.h +27 -24
- data/src/core/lib/promise/try_seq.h +26 -6
- data/src/core/lib/resolver/resolver.cc +0 -47
- data/src/core/lib/resolver/resolver.h +2 -12
- data/src/core/lib/resolver/resolver_factory.h +2 -3
- data/src/core/lib/resolver/resolver_registry.cc +1 -1
- data/src/core/lib/resolver/resolver_registry.h +2 -3
- data/src/core/lib/resolver/server_address.cc +11 -15
- data/src/core/lib/resolver/server_address.h +4 -8
- data/src/core/lib/resource_quota/api.cc +1 -1
- data/src/core/lib/resource_quota/arena.cc +21 -1
- data/src/core/lib/resource_quota/arena.h +24 -2
- data/src/core/lib/resource_quota/memory_quota.cc +157 -17
- data/src/core/lib/resource_quota/memory_quota.h +98 -17
- data/src/core/lib/resource_quota/periodic_update.cc +79 -0
- data/src/core/lib/resource_quota/periodic_update.h +71 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +10 -7
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -2
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -1
- data/src/core/lib/security/authorization/matchers.cc +13 -10
- data/src/core/lib/security/authorization/rbac_policy.cc +0 -1
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +2 -3
- data/src/core/lib/security/credentials/alts/alts_credentials.h +3 -4
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +3 -7
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -4
- data/src/core/lib/security/credentials/credentials.h +16 -12
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +18 -11
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +32 -23
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -6
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +4 -6
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +3 -12
- data/src/core/lib/security/credentials/fake/fake_credentials.h +0 -4
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +29 -26
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +1 -3
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +3 -3
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +3 -4
- data/src/core/lib/security/credentials/jwt/json_token.cc +12 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +4 -8
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +11 -13
- data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.h +3 -4
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +17 -18
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +0 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +13 -21
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +3 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +6 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +13 -25
- data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -4
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +13 -30
- data/src/core/lib/security/credentials/xds/xds_credentials.h +3 -3
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +10 -18
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +26 -38
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +5 -5
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +6 -5
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +13 -11
- data/src/core/lib/security/security_connector/local/local_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/security_connector.h +5 -3
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +5 -4
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +5 -5
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +5 -5
- data/src/core/lib/security/transport/auth_filters.h +1 -1
- data/src/core/lib/security/transport/client_auth_filter.cc +3 -4
- data/src/core/lib/security/transport/security_handshaker.cc +32 -44
- data/src/core/lib/security/transport/security_handshaker.h +2 -1
- data/src/core/lib/service_config/service_config.h +11 -0
- data/src/core/lib/service_config/service_config_impl.cc +98 -97
- data/src/core/lib/service_config/service_config_impl.h +11 -13
- data/src/core/lib/service_config/service_config_parser.cc +26 -27
- data/src/core/lib/service_config/service_config_parser.h +10 -22
- data/src/core/lib/slice/percent_encoding.cc +4 -13
- data/src/core/lib/slice/slice.cc +10 -4
- data/src/core/lib/surface/call.cc +8 -2
- data/src/core/lib/surface/channel.cc +6 -6
- data/src/core/lib/surface/channel.h +1 -1
- data/src/core/lib/surface/completion_queue.cc +0 -2
- data/src/core/lib/surface/completion_queue.h +0 -3
- data/src/core/lib/surface/init.cc +2 -6
- data/src/core/lib/surface/lame_client.cc +2 -3
- data/src/core/lib/surface/lame_client.h +1 -1
- data/src/core/lib/surface/server.cc +7 -12
- data/src/core/lib/surface/server.h +7 -7
- data/src/core/lib/surface/validate_metadata.cc +4 -14
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/connectivity_state.cc +0 -1
- data/src/core/lib/transport/connectivity_state.h +1 -1
- data/src/core/lib/transport/error_utils.cc +0 -36
- data/src/core/lib/transport/handshaker.cc +7 -9
- data/src/core/lib/transport/handshaker.h +4 -5
- data/src/core/lib/transport/handshaker_factory.h +2 -3
- data/src/core/lib/transport/handshaker_registry.cc +2 -1
- data/src/core/lib/transport/handshaker_registry.h +2 -4
- data/src/core/lib/transport/http_connect_handshaker.cc +16 -16
- data/src/core/lib/transport/metadata_batch.cc +5 -0
- data/src/core/lib/transport/metadata_batch.h +52 -7
- data/src/core/lib/transport/parsed_metadata.h +0 -1
- data/src/core/lib/transport/tcp_connect_handshaker.cc +12 -18
- data/src/core/lib/transport/transport.h +0 -7
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +40 -21
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +14 -7
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +1 -1
- data/src/core/tsi/fake_transport_security.cc +53 -30
- data/src/core/tsi/local_transport_security.cc +9 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +10 -1
- data/src/core/tsi/ssl_transport_security.cc +47 -23
- data/src/core/tsi/transport_security.cc +18 -6
- data/src/core/tsi/transport_security.h +2 -1
- data/src/core/tsi/transport_security_interface.h +17 -5
- data/src/ruby/ext/grpc/extconf.rb +2 -0
- data/src/ruby/ext/grpc/rb_loader.c +6 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +4 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +313 -0
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +857 -0
- data/third_party/upb/third_party/utf8_range/utf8_range.h +1 -1
- data/third_party/upb/upb/arena.c +277 -0
- data/third_party/upb/upb/arena.h +225 -0
- data/third_party/upb/upb/array.c +114 -0
- data/third_party/upb/upb/array.h +83 -0
- data/third_party/upb/upb/collections.h +36 -0
- data/third_party/upb/upb/decode.c +161 -65
- data/third_party/upb/upb/decode.h +1 -0
- data/third_party/upb/upb/decode_fast.c +1 -1
- data/third_party/upb/upb/def.c +10 -2
- data/third_party/upb/upb/def.h +8 -1
- data/third_party/upb/upb/def.hpp +7 -4
- data/third_party/upb/upb/encode.c +29 -20
- data/third_party/upb/upb/encode.h +16 -6
- data/third_party/upb/upb/extension_registry.c +93 -0
- data/third_party/upb/upb/extension_registry.h +84 -0
- data/third_party/upb/upb/{decode_internal.h → internal/decode.h} +5 -5
- data/third_party/upb/upb/internal/table.h +385 -0
- data/third_party/upb/upb/{upb_internal.h → internal/upb.h} +3 -3
- data/third_party/upb/upb/internal/vsnprintf_compat.h +52 -0
- data/third_party/upb/upb/json_decode.c +1512 -0
- data/third_party/upb/upb/json_decode.h +47 -0
- data/third_party/upb/upb/json_encode.c +7 -3
- data/third_party/upb/upb/json_encode.h +6 -3
- data/third_party/upb/upb/map.c +108 -0
- data/third_party/upb/upb/map.h +117 -0
- data/third_party/upb/upb/message_value.h +66 -0
- data/third_party/upb/upb/mini_table.c +1147 -0
- data/third_party/upb/upb/mini_table.h +189 -0
- data/third_party/upb/upb/mini_table.hpp +112 -0
- data/third_party/upb/upb/msg.c +2 -62
- data/third_party/upb/upb/msg.h +2 -45
- data/third_party/upb/upb/msg_internal.h +28 -22
- data/third_party/upb/upb/port_def.inc +2 -1
- data/third_party/upb/upb/port_undef.inc +1 -0
- data/third_party/upb/upb/reflection.c +2 -159
- data/third_party/upb/upb/reflection.h +2 -112
- data/third_party/upb/upb/status.c +86 -0
- data/third_party/upb/upb/status.h +66 -0
- data/third_party/upb/upb/table.c +2 -2
- data/third_party/upb/upb/table_internal.h +3 -352
- data/third_party/upb/upb/text_encode.c +3 -2
- data/third_party/upb/upb/upb.c +4 -290
- data/third_party/upb/upb/upb.h +7 -196
- metadata +90 -38
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +0 -50
- data/src/core/lib/iomgr/error_internal.h +0 -66
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +0 -182
- data/src/core/lib/iomgr/executor/mpmcqueue.h +0 -171
- data/src/core/lib/iomgr/executor/threadpool.cc +0 -136
- data/src/core/lib/iomgr/executor/threadpool.h +0 -150
- data/src/core/lib/iomgr/time_averaged_stats.cc +0 -64
- data/src/core/lib/iomgr/time_averaged_stats.h +0 -72
- data/src/core/lib/promise/detail/switch.h +0 -1455
@@ -0,0 +1,857 @@
|
|
1
|
+
// Copyright 2022 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
//
|
15
|
+
// Implementation details for `absl::AnyInvocable`
|
16
|
+
|
17
|
+
#ifndef ABSL_FUNCTIONAL_INTERNAL_ANY_INVOCABLE_H_
|
18
|
+
#define ABSL_FUNCTIONAL_INTERNAL_ANY_INVOCABLE_H_
|
19
|
+
|
20
|
+
////////////////////////////////////////////////////////////////////////////////
|
21
|
+
// //
|
22
|
+
// This implementation of the proposed `any_invocable` uses an approach that //
|
23
|
+
// chooses between local storage and remote storage for the contained target //
|
24
|
+
// object based on the target object's size, alignment requirements, and //
|
25
|
+
// whether or not it has a nothrow move constructor. Additional optimizations //
|
26
|
+
// are performed when the object is a trivially copyable type [basic.types]. //
|
27
|
+
// //
|
28
|
+
// There are three datamembers per `AnyInvocable` instance //
|
29
|
+
// //
|
30
|
+
// 1) A union containing either //
|
31
|
+
// - A pointer to the target object referred to via a void*, or //
|
32
|
+
// - the target object, emplaced into a raw char buffer //
|
33
|
+
// //
|
34
|
+
// 2) A function pointer to a "manager" function operation that takes a //
|
35
|
+
// discriminator and logically branches to either perform a move operation //
|
36
|
+
// or destroy operation based on that discriminator. //
|
37
|
+
// //
|
38
|
+
// 3) A function pointer to an "invoker" function operation that invokes the //
|
39
|
+
// target object, directly returning the result. //
|
40
|
+
// //
|
41
|
+
// When in the logically empty state, the manager function is an empty //
|
42
|
+
// function and the invoker function is one that would be undefined-behavior //
|
43
|
+
// to call. //
|
44
|
+
// //
|
45
|
+
// An additional optimization is performed when converting from one //
|
46
|
+
// AnyInvocable to another where only the noexcept specification and/or the //
|
47
|
+
// cv/ref qualifiers of the function type differ. In these cases, the //
|
48
|
+
// conversion works by "moving the guts", similar to if they were the same //
|
49
|
+
// exact type, as opposed to having to perform an additional layer of //
|
50
|
+
// wrapping through remote storage. //
|
51
|
+
// //
|
52
|
+
////////////////////////////////////////////////////////////////////////////////
|
53
|
+
|
54
|
+
// IWYU pragma: private, include "absl/functional/any_invocable.h"
|
55
|
+
|
56
|
+
#include <cassert>
|
57
|
+
#include <cstddef>
|
58
|
+
#include <cstring>
|
59
|
+
#include <functional>
|
60
|
+
#include <initializer_list>
|
61
|
+
#include <memory>
|
62
|
+
#include <new>
|
63
|
+
#include <type_traits>
|
64
|
+
#include <utility>
|
65
|
+
|
66
|
+
#include "absl/base/config.h"
|
67
|
+
#include "absl/base/internal/invoke.h"
|
68
|
+
#include "absl/base/macros.h"
|
69
|
+
#include "absl/meta/type_traits.h"
|
70
|
+
#include "absl/utility/utility.h"
|
71
|
+
|
72
|
+
namespace absl {
|
73
|
+
ABSL_NAMESPACE_BEGIN
|
74
|
+
|
75
|
+
// Helper macro used to prevent spelling `noexcept` in language versions older
|
76
|
+
// than C++17, where it is not part of the type system, in order to avoid
|
77
|
+
// compilation failures and internal compiler errors.
|
78
|
+
#if ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L
|
79
|
+
#define ABSL_INTERNAL_NOEXCEPT_SPEC(noex) noexcept(noex)
|
80
|
+
#else
|
81
|
+
#define ABSL_INTERNAL_NOEXCEPT_SPEC(noex)
|
82
|
+
#endif
|
83
|
+
|
84
|
+
// Defined in functional/any_invocable.h
|
85
|
+
template <class Sig>
|
86
|
+
class AnyInvocable;
|
87
|
+
|
88
|
+
namespace internal_any_invocable {
|
89
|
+
|
90
|
+
// Constants relating to the small-object-storage for AnyInvocable
|
91
|
+
enum StorageProperty : std::size_t {
|
92
|
+
kAlignment = alignof(std::max_align_t), // The alignment of the storage
|
93
|
+
kStorageSize = sizeof(void*) * 2 // The size of the storage
|
94
|
+
};
|
95
|
+
|
96
|
+
////////////////////////////////////////////////////////////////////////////////
|
97
|
+
//
|
98
|
+
// A metafunction for checking if a type is an AnyInvocable instantiation.
|
99
|
+
// This is used during conversion operations.
|
100
|
+
template <class T>
|
101
|
+
struct IsAnyInvocable : std::false_type {};
|
102
|
+
|
103
|
+
template <class Sig>
|
104
|
+
struct IsAnyInvocable<AnyInvocable<Sig>> : std::true_type {};
|
105
|
+
//
|
106
|
+
////////////////////////////////////////////////////////////////////////////////
|
107
|
+
|
108
|
+
// A type trait that tells us whether or not a target function type should be
|
109
|
+
// stored locally in the small object optimization storage
|
110
|
+
template <class T>
|
111
|
+
using IsStoredLocally = std::integral_constant<
|
112
|
+
bool, sizeof(T) <= kStorageSize && alignof(T) <= kAlignment &&
|
113
|
+
kAlignment % alignof(T) == 0 &&
|
114
|
+
std::is_nothrow_move_constructible<T>::value>;
|
115
|
+
|
116
|
+
// An implementation of std::remove_cvref_t of C++20.
|
117
|
+
template <class T>
|
118
|
+
using RemoveCVRef =
|
119
|
+
typename std::remove_cv<typename std::remove_reference<T>::type>::type;
|
120
|
+
|
121
|
+
////////////////////////////////////////////////////////////////////////////////
|
122
|
+
//
|
123
|
+
// An implementation of the C++ standard INVOKE<R> pseudo-macro, operation is
|
124
|
+
// equivalent to std::invoke except that it forces an implicit conversion to the
|
125
|
+
// specified return type. If "R" is void, the function is executed and the
|
126
|
+
// return value is simply ignored.
|
127
|
+
template <class ReturnType, class F, class... P,
|
128
|
+
typename = absl::enable_if_t<std::is_void<ReturnType>::value>>
|
129
|
+
void InvokeR(F&& f, P&&... args) {
|
130
|
+
absl::base_internal::invoke(std::forward<F>(f), std::forward<P>(args)...);
|
131
|
+
}
|
132
|
+
|
133
|
+
template <class ReturnType, class F, class... P,
|
134
|
+
absl::enable_if_t<!std::is_void<ReturnType>::value, int> = 0>
|
135
|
+
ReturnType InvokeR(F&& f, P&&... args) {
|
136
|
+
return absl::base_internal::invoke(std::forward<F>(f),
|
137
|
+
std::forward<P>(args)...);
|
138
|
+
}
|
139
|
+
|
140
|
+
//
|
141
|
+
////////////////////////////////////////////////////////////////////////////////
|
142
|
+
|
143
|
+
////////////////////////////////////////////////////////////////////////////////
|
144
|
+
///
|
145
|
+
// A metafunction that takes a "T" corresponding to a parameter type of the
|
146
|
+
// user's specified function type, and yields the parameter type to use for the
|
147
|
+
// type-erased invoker. In order to prevent observable moves, this must be
|
148
|
+
// either a reference or, if the type is trivial, the original parameter type
|
149
|
+
// itself. Since the parameter type may be incomplete at the point that this
|
150
|
+
// metafunction is used, we can only do this optimization for scalar types
|
151
|
+
// rather than for any trivial type.
|
152
|
+
template <typename T>
|
153
|
+
T ForwardImpl(std::true_type);
|
154
|
+
|
155
|
+
template <typename T>
|
156
|
+
T&& ForwardImpl(std::false_type);
|
157
|
+
|
158
|
+
// NOTE: We deliberately use an intermediate struct instead of a direct alias,
|
159
|
+
// as a workaround for b/206991861 on MSVC versions < 1924.
|
160
|
+
template <class T>
|
161
|
+
struct ForwardedParameter {
|
162
|
+
using type = decltype((
|
163
|
+
ForwardImpl<T>)(std::integral_constant<bool,
|
164
|
+
std::is_scalar<T>::value>()));
|
165
|
+
};
|
166
|
+
|
167
|
+
template <class T>
|
168
|
+
using ForwardedParameterType = typename ForwardedParameter<T>::type;
|
169
|
+
//
|
170
|
+
////////////////////////////////////////////////////////////////////////////////
|
171
|
+
|
172
|
+
// A discriminator when calling the "manager" function that describes operation
|
173
|
+
// type-erased operation should be invoked.
|
174
|
+
//
|
175
|
+
// "relocate_from_to" specifies that the manager should perform a move.
|
176
|
+
//
|
177
|
+
// "dispose" specifies that the manager should perform a destroy.
|
178
|
+
enum class FunctionToCall : bool { relocate_from_to, dispose };
|
179
|
+
|
180
|
+
// The portion of `AnyInvocable` state that contains either a pointer to the
|
181
|
+
// target object or the object itself in local storage
|
182
|
+
union TypeErasedState {
|
183
|
+
struct {
|
184
|
+
// A pointer to the type-erased object when remotely stored
|
185
|
+
void* target;
|
186
|
+
// The size of the object for `RemoteManagerTrivial`
|
187
|
+
std::size_t size;
|
188
|
+
} remote;
|
189
|
+
|
190
|
+
// Local-storage for the type-erased object when small and trivial enough
|
191
|
+
alignas(kAlignment) char storage[kStorageSize];
|
192
|
+
};
|
193
|
+
|
194
|
+
// A typed accessor for the object in `TypeErasedState` storage
|
195
|
+
template <class T>
|
196
|
+
T& ObjectInLocalStorage(TypeErasedState* const state) {
|
197
|
+
// We launder here because the storage may be reused with the same type.
|
198
|
+
#if ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L
|
199
|
+
return *std::launder(reinterpret_cast<T*>(&state->storage));
|
200
|
+
#elif ABSL_HAVE_BUILTIN(__builtin_launder)
|
201
|
+
return *__builtin_launder(reinterpret_cast<T*>(&state->storage));
|
202
|
+
#else
|
203
|
+
|
204
|
+
// When `std::launder` or equivalent are not available, we rely on undefined
|
205
|
+
// behavior, which works as intended on Abseil's officially supported
|
206
|
+
// platforms as of Q2 2022.
|
207
|
+
#if !defined(__clang__) && defined(__GNUC__)
|
208
|
+
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
209
|
+
#pragma GCC diagnostic push
|
210
|
+
#endif
|
211
|
+
return *reinterpret_cast<T*>(&state->storage);
|
212
|
+
#if !defined(__clang__) && defined(__GNUC__)
|
213
|
+
#pragma GCC diagnostic pop
|
214
|
+
#endif
|
215
|
+
|
216
|
+
#endif
|
217
|
+
}
|
218
|
+
|
219
|
+
// The type for functions issuing lifetime-related operations: move and dispose
|
220
|
+
// A pointer to such a function is contained in each `AnyInvocable` instance.
|
221
|
+
// NOTE: When specifying `FunctionToCall::`dispose, the same state must be
|
222
|
+
// passed as both "from" and "to".
|
223
|
+
using ManagerType = void(FunctionToCall /*operation*/,
|
224
|
+
TypeErasedState* /*from*/, TypeErasedState* /*to*/)
|
225
|
+
ABSL_INTERNAL_NOEXCEPT_SPEC(true);
|
226
|
+
|
227
|
+
// The type for functions issuing the actual invocation of the object
|
228
|
+
// A pointer to such a function is contained in each AnyInvocable instance.
|
229
|
+
template <bool SigIsNoexcept, class ReturnType, class... P>
|
230
|
+
using InvokerType = ReturnType(TypeErasedState*, ForwardedParameterType<P>...)
|
231
|
+
ABSL_INTERNAL_NOEXCEPT_SPEC(SigIsNoexcept);
|
232
|
+
|
233
|
+
// The manager that is used when AnyInvocable is empty
|
234
|
+
inline void EmptyManager(FunctionToCall /*operation*/,
|
235
|
+
TypeErasedState* /*from*/,
|
236
|
+
TypeErasedState* /*to*/) noexcept {}
|
237
|
+
|
238
|
+
// The manager that is used when a target function is in local storage and is
|
239
|
+
// a trivially copyable type.
|
240
|
+
inline void LocalManagerTrivial(FunctionToCall /*operation*/,
|
241
|
+
TypeErasedState* const from,
|
242
|
+
TypeErasedState* const to) noexcept {
|
243
|
+
// This single statement without branching handles both possible operations.
|
244
|
+
//
|
245
|
+
// For FunctionToCall::dispose, "from" and "to" point to the same state, and
|
246
|
+
// so this assignment logically would do nothing.
|
247
|
+
//
|
248
|
+
// Note: Correctness here relies on http://wg21.link/p0593, which has only
|
249
|
+
// become standard in C++20, though implementations do not break it in
|
250
|
+
// practice for earlier versions of C++.
|
251
|
+
//
|
252
|
+
// The correct way to do this without that paper is to first placement-new a
|
253
|
+
// default-constructed T in "to->storage" prior to the memmove, but doing so
|
254
|
+
// requires a different function to be created for each T that is stored
|
255
|
+
// locally, which can cause unnecessary bloat and be less cache friendly.
|
256
|
+
*to = *from;
|
257
|
+
|
258
|
+
// Note: Because the type is trivially copyable, the destructor does not need
|
259
|
+
// to be called ("trivially copyable" requires a trivial destructor).
|
260
|
+
}
|
261
|
+
|
262
|
+
// The manager that is used when a target function is in local storage and is
|
263
|
+
// not a trivially copyable type.
|
264
|
+
template <class T>
|
265
|
+
void LocalManagerNontrivial(FunctionToCall operation,
|
266
|
+
TypeErasedState* const from,
|
267
|
+
TypeErasedState* const to) noexcept {
|
268
|
+
static_assert(IsStoredLocally<T>::value,
|
269
|
+
"Local storage must only be used for supported types.");
|
270
|
+
static_assert(!std::is_trivially_copyable<T>::value,
|
271
|
+
"Locally stored types must be trivially copyable.");
|
272
|
+
|
273
|
+
T& from_object = (ObjectInLocalStorage<T>)(from);
|
274
|
+
|
275
|
+
switch (operation) {
|
276
|
+
case FunctionToCall::relocate_from_to:
|
277
|
+
// NOTE: Requires that the left-hand operand is already empty.
|
278
|
+
::new (static_cast<void*>(&to->storage)) T(std::move(from_object));
|
279
|
+
ABSL_FALLTHROUGH_INTENDED;
|
280
|
+
case FunctionToCall::dispose:
|
281
|
+
from_object.~T(); // Must not throw. // NOLINT
|
282
|
+
return;
|
283
|
+
}
|
284
|
+
ABSL_INTERNAL_UNREACHABLE;
|
285
|
+
}
|
286
|
+
|
287
|
+
// The invoker that is used when a target function is in local storage
|
288
|
+
// Note: QualTRef here is the target function type along with cv and reference
|
289
|
+
// qualifiers that must be used when calling the function.
|
290
|
+
template <bool SigIsNoexcept, class ReturnType, class QualTRef, class... P>
|
291
|
+
ReturnType LocalInvoker(
|
292
|
+
TypeErasedState* const state,
|
293
|
+
ForwardedParameterType<P>... args) noexcept(SigIsNoexcept) {
|
294
|
+
using RawT = RemoveCVRef<QualTRef>;
|
295
|
+
static_assert(
|
296
|
+
IsStoredLocally<RawT>::value,
|
297
|
+
"Target object must be in local storage in order to be invoked from it.");
|
298
|
+
|
299
|
+
auto& f = (ObjectInLocalStorage<RawT>)(state);
|
300
|
+
return (InvokeR<ReturnType>)(static_cast<QualTRef>(f),
|
301
|
+
static_cast<ForwardedParameterType<P>>(args)...);
|
302
|
+
}
|
303
|
+
|
304
|
+
// The manager that is used when a target function is in remote storage and it
|
305
|
+
// has a trivial destructor
|
306
|
+
inline void RemoteManagerTrivial(FunctionToCall operation,
|
307
|
+
TypeErasedState* const from,
|
308
|
+
TypeErasedState* const to) noexcept {
|
309
|
+
switch (operation) {
|
310
|
+
case FunctionToCall::relocate_from_to:
|
311
|
+
// NOTE: Requires that the left-hand operand is already empty.
|
312
|
+
to->remote = from->remote;
|
313
|
+
return;
|
314
|
+
case FunctionToCall::dispose:
|
315
|
+
#if defined(__cpp_sized_deallocation)
|
316
|
+
::operator delete(from->remote.target, from->remote.size);
|
317
|
+
#else // __cpp_sized_deallocation
|
318
|
+
::operator delete(from->remote.target);
|
319
|
+
#endif // __cpp_sized_deallocation
|
320
|
+
return;
|
321
|
+
}
|
322
|
+
ABSL_INTERNAL_UNREACHABLE;
|
323
|
+
}
|
324
|
+
|
325
|
+
// The manager that is used when a target function is in remote storage and the
|
326
|
+
// destructor of the type is not trivial
|
327
|
+
template <class T>
|
328
|
+
void RemoteManagerNontrivial(FunctionToCall operation,
|
329
|
+
TypeErasedState* const from,
|
330
|
+
TypeErasedState* const to) noexcept {
|
331
|
+
static_assert(!IsStoredLocally<T>::value,
|
332
|
+
"Remote storage must only be used for types that do not "
|
333
|
+
"qualify for local storage.");
|
334
|
+
|
335
|
+
switch (operation) {
|
336
|
+
case FunctionToCall::relocate_from_to:
|
337
|
+
// NOTE: Requires that the left-hand operand is already empty.
|
338
|
+
to->remote.target = from->remote.target;
|
339
|
+
return;
|
340
|
+
case FunctionToCall::dispose:
|
341
|
+
::delete static_cast<T*>(from->remote.target); // Must not throw.
|
342
|
+
return;
|
343
|
+
}
|
344
|
+
ABSL_INTERNAL_UNREACHABLE;
|
345
|
+
}
|
346
|
+
|
347
|
+
// The invoker that is used when a target function is in remote storage
|
348
|
+
template <bool SigIsNoexcept, class ReturnType, class QualTRef, class... P>
|
349
|
+
ReturnType RemoteInvoker(
|
350
|
+
TypeErasedState* const state,
|
351
|
+
ForwardedParameterType<P>... args) noexcept(SigIsNoexcept) {
|
352
|
+
using RawT = RemoveCVRef<QualTRef>;
|
353
|
+
static_assert(!IsStoredLocally<RawT>::value,
|
354
|
+
"Target object must be in remote storage in order to be "
|
355
|
+
"invoked from it.");
|
356
|
+
|
357
|
+
auto& f = *static_cast<RawT*>(state->remote.target);
|
358
|
+
return (InvokeR<ReturnType>)(static_cast<QualTRef>(f),
|
359
|
+
static_cast<ForwardedParameterType<P>>(args)...);
|
360
|
+
}
|
361
|
+
|
362
|
+
////////////////////////////////////////////////////////////////////////////////
|
363
|
+
//
|
364
|
+
// A metafunction that checks if a type T is an instantiation of
|
365
|
+
// absl::in_place_type_t (needed for constructor constraints of AnyInvocable).
|
366
|
+
template <class T>
|
367
|
+
struct IsInPlaceType : std::false_type {};
|
368
|
+
|
369
|
+
template <class T>
|
370
|
+
struct IsInPlaceType<absl::in_place_type_t<T>> : std::true_type {};
|
371
|
+
//
|
372
|
+
////////////////////////////////////////////////////////////////////////////////
|
373
|
+
|
374
|
+
// A constructor name-tag used with CoreImpl (below) to request the
|
375
|
+
// conversion-constructor. QualDecayedTRef is the decayed-type of the object to
|
376
|
+
// wrap, along with the cv and reference qualifiers that must be applied when
|
377
|
+
// performing an invocation of the wrapped object.
|
378
|
+
template <class QualDecayedTRef>
|
379
|
+
struct TypedConversionConstruct {};
|
380
|
+
|
381
|
+
// A helper base class for all core operations of AnyInvocable. Most notably,
|
382
|
+
// this class creates the function call operator and constraint-checkers so that
|
383
|
+
// the top-level class does not have to be a series of partial specializations.
|
384
|
+
//
|
385
|
+
// Note: This definition exists (as opposed to being a declaration) so that if
|
386
|
+
// the user of the top-level template accidentally passes a template argument
|
387
|
+
// that is not a function type, they will get a static_assert in AnyInvocable's
|
388
|
+
// class body rather than an error stating that Impl is not defined.
|
389
|
+
template <class Sig>
|
390
|
+
class Impl {}; // Note: This is partially-specialized later.
|
391
|
+
|
392
|
+
// A std::unique_ptr deleter that deletes memory allocated via ::operator new.
|
393
|
+
#if defined(__cpp_sized_deallocation)
|
394
|
+
class TrivialDeleter {
|
395
|
+
public:
|
396
|
+
explicit TrivialDeleter(std::size_t size) : size_(size) {}
|
397
|
+
|
398
|
+
void operator()(void* target) const {
|
399
|
+
::operator delete(target, size_);
|
400
|
+
}
|
401
|
+
|
402
|
+
private:
|
403
|
+
std::size_t size_;
|
404
|
+
};
|
405
|
+
#else // __cpp_sized_deallocation
|
406
|
+
class TrivialDeleter {
|
407
|
+
public:
|
408
|
+
explicit TrivialDeleter(std::size_t) {}
|
409
|
+
|
410
|
+
void operator()(void* target) const { ::operator delete(target); }
|
411
|
+
};
|
412
|
+
#endif // __cpp_sized_deallocation
|
413
|
+
|
414
|
+
template <bool SigIsNoexcept, class ReturnType, class... P>
|
415
|
+
class CoreImpl;
|
416
|
+
|
417
|
+
constexpr bool IsCompatibleConversion(void*, void*) { return false; }
|
418
|
+
template <bool NoExceptSrc, bool NoExceptDest, class... T>
|
419
|
+
constexpr bool IsCompatibleConversion(CoreImpl<NoExceptSrc, T...>*,
|
420
|
+
CoreImpl<NoExceptDest, T...>*) {
|
421
|
+
return !NoExceptDest || NoExceptSrc;
|
422
|
+
}
|
423
|
+
|
424
|
+
// A helper base class for all core operations of AnyInvocable that do not
|
425
|
+
// depend on the cv/ref qualifiers of the function type.
|
426
|
+
template <bool SigIsNoexcept, class ReturnType, class... P>
|
427
|
+
class CoreImpl {
|
428
|
+
public:
|
429
|
+
using result_type = ReturnType;
|
430
|
+
|
431
|
+
CoreImpl() noexcept : manager_(EmptyManager), invoker_(nullptr) {}
|
432
|
+
|
433
|
+
enum class TargetType : int {
|
434
|
+
kPointer = 0,
|
435
|
+
kCompatibleAnyInvocable = 1,
|
436
|
+
kIncompatibleAnyInvocable = 2,
|
437
|
+
kOther = 3,
|
438
|
+
};
|
439
|
+
|
440
|
+
// Note: QualDecayedTRef here includes the cv-ref qualifiers associated with
|
441
|
+
// the invocation of the Invocable. The unqualified type is the target object
|
442
|
+
// type to be stored.
|
443
|
+
template <class QualDecayedTRef, class F>
|
444
|
+
explicit CoreImpl(TypedConversionConstruct<QualDecayedTRef>, F&& f) {
|
445
|
+
using DecayedT = RemoveCVRef<QualDecayedTRef>;
|
446
|
+
|
447
|
+
constexpr TargetType kTargetType =
|
448
|
+
(std::is_pointer<DecayedT>::value ||
|
449
|
+
std::is_member_pointer<DecayedT>::value)
|
450
|
+
? TargetType::kPointer
|
451
|
+
: IsCompatibleAnyInvocable<DecayedT>::value
|
452
|
+
? TargetType::kCompatibleAnyInvocable
|
453
|
+
: IsAnyInvocable<DecayedT>::value
|
454
|
+
? TargetType::kIncompatibleAnyInvocable
|
455
|
+
: TargetType::kOther;
|
456
|
+
// NOTE: We only use integers instead of enums as template parameters in
|
457
|
+
// order to work around a bug on C++14 under MSVC 2017.
|
458
|
+
// See b/236131881.
|
459
|
+
Initialize<static_cast<int>(kTargetType), QualDecayedTRef>(
|
460
|
+
std::forward<F>(f));
|
461
|
+
}
|
462
|
+
|
463
|
+
// Note: QualTRef here includes the cv-ref qualifiers associated with the
|
464
|
+
// invocation of the Invocable. The unqualified type is the target object
|
465
|
+
// type to be stored.
|
466
|
+
template <class QualTRef, class... Args>
|
467
|
+
explicit CoreImpl(absl::in_place_type_t<QualTRef>, Args&&... args) {
|
468
|
+
InitializeStorage<QualTRef>(std::forward<Args>(args)...);
|
469
|
+
}
|
470
|
+
|
471
|
+
CoreImpl(CoreImpl&& other) noexcept {
|
472
|
+
other.manager_(FunctionToCall::relocate_from_to, &other.state_, &state_);
|
473
|
+
manager_ = other.manager_;
|
474
|
+
invoker_ = other.invoker_;
|
475
|
+
other.manager_ = EmptyManager;
|
476
|
+
other.invoker_ = nullptr;
|
477
|
+
}
|
478
|
+
|
479
|
+
CoreImpl& operator=(CoreImpl&& other) noexcept {
|
480
|
+
// Put the left-hand operand in an empty state.
|
481
|
+
//
|
482
|
+
// Note: A full reset that leaves us with an object that has its invariants
|
483
|
+
// intact is necessary in order to handle self-move. This is required by
|
484
|
+
// types that are used with certain operations of the standard library, such
|
485
|
+
// as the default definition of std::swap when both operands target the same
|
486
|
+
// object.
|
487
|
+
Clear();
|
488
|
+
|
489
|
+
// Perform the actual move/destory operation on the target function.
|
490
|
+
other.manager_(FunctionToCall::relocate_from_to, &other.state_, &state_);
|
491
|
+
manager_ = other.manager_;
|
492
|
+
invoker_ = other.invoker_;
|
493
|
+
other.manager_ = EmptyManager;
|
494
|
+
other.invoker_ = nullptr;
|
495
|
+
|
496
|
+
return *this;
|
497
|
+
}
|
498
|
+
|
499
|
+
~CoreImpl() { manager_(FunctionToCall::dispose, &state_, &state_); }
|
500
|
+
|
501
|
+
// Check whether or not the AnyInvocable is in the empty state.
|
502
|
+
bool HasValue() const { return invoker_ != nullptr; }
|
503
|
+
|
504
|
+
// Effects: Puts the object into its empty state.
|
505
|
+
void Clear() {
|
506
|
+
manager_(FunctionToCall::dispose, &state_, &state_);
|
507
|
+
manager_ = EmptyManager;
|
508
|
+
invoker_ = nullptr;
|
509
|
+
}
|
510
|
+
|
511
|
+
template <int target_type, class QualDecayedTRef, class F,
|
512
|
+
absl::enable_if_t<target_type == 0, int> = 0>
|
513
|
+
void Initialize(F&& f) {
|
514
|
+
// This condition handles types that decay into pointers, which includes
|
515
|
+
// function references. Since function references cannot be null, GCC warns
|
516
|
+
// against comparing their decayed form with nullptr.
|
517
|
+
// Since this is template-heavy code, we prefer to disable these warnings
|
518
|
+
// locally instead of adding yet another overload of this function.
|
519
|
+
#if !defined(__clang__) && defined(__GNUC__)
|
520
|
+
#pragma GCC diagnostic ignored "-Wpragmas"
|
521
|
+
#pragma GCC diagnostic ignored "-Waddress"
|
522
|
+
#pragma GCC diagnostic ignored "-Wnonnull-compare"
|
523
|
+
#pragma GCC diagnostic push
|
524
|
+
#endif
|
525
|
+
if (static_cast<RemoveCVRef<QualDecayedTRef>>(f) == nullptr) {
|
526
|
+
#if !defined(__clang__) && defined(__GNUC__)
|
527
|
+
#pragma GCC diagnostic pop
|
528
|
+
#endif
|
529
|
+
manager_ = EmptyManager;
|
530
|
+
invoker_ = nullptr;
|
531
|
+
return;
|
532
|
+
}
|
533
|
+
InitializeStorage<QualDecayedTRef>(std::forward<F>(f));
|
534
|
+
}
|
535
|
+
|
536
|
+
template <int target_type, class QualDecayedTRef, class F,
|
537
|
+
absl::enable_if_t<target_type == 1, int> = 0>
|
538
|
+
void Initialize(F&& f) {
|
539
|
+
// In this case we can "steal the guts" of the other AnyInvocable.
|
540
|
+
f.manager_(FunctionToCall::relocate_from_to, &f.state_, &state_);
|
541
|
+
manager_ = f.manager_;
|
542
|
+
invoker_ = f.invoker_;
|
543
|
+
|
544
|
+
f.manager_ = EmptyManager;
|
545
|
+
f.invoker_ = nullptr;
|
546
|
+
}
|
547
|
+
|
548
|
+
template <int target_type, class QualDecayedTRef, class F,
|
549
|
+
absl::enable_if_t<target_type == 2, int> = 0>
|
550
|
+
void Initialize(F&& f) {
|
551
|
+
if (f.HasValue()) {
|
552
|
+
InitializeStorage<QualDecayedTRef>(std::forward<F>(f));
|
553
|
+
} else {
|
554
|
+
manager_ = EmptyManager;
|
555
|
+
invoker_ = nullptr;
|
556
|
+
}
|
557
|
+
}
|
558
|
+
|
559
|
+
template <int target_type, class QualDecayedTRef, class F,
|
560
|
+
typename = absl::enable_if_t<target_type == 3>>
|
561
|
+
void Initialize(F&& f) {
|
562
|
+
InitializeStorage<QualDecayedTRef>(std::forward<F>(f));
|
563
|
+
}
|
564
|
+
|
565
|
+
// Use local (inline) storage for applicable target object types.
|
566
|
+
template <class QualTRef, class... Args,
|
567
|
+
typename = absl::enable_if_t<
|
568
|
+
IsStoredLocally<RemoveCVRef<QualTRef>>::value>>
|
569
|
+
void InitializeStorage(Args&&... args) {
|
570
|
+
using RawT = RemoveCVRef<QualTRef>;
|
571
|
+
::new (static_cast<void*>(&state_.storage))
|
572
|
+
RawT(std::forward<Args>(args)...);
|
573
|
+
|
574
|
+
invoker_ = LocalInvoker<SigIsNoexcept, ReturnType, QualTRef, P...>;
|
575
|
+
// We can simplify our manager if we know the type is trivially copyable.
|
576
|
+
InitializeLocalManager<RawT>();
|
577
|
+
}
|
578
|
+
|
579
|
+
// Use remote storage for target objects that cannot be stored locally.
|
580
|
+
template <class QualTRef, class... Args,
|
581
|
+
absl::enable_if_t<!IsStoredLocally<RemoveCVRef<QualTRef>>::value,
|
582
|
+
int> = 0>
|
583
|
+
void InitializeStorage(Args&&... args) {
|
584
|
+
InitializeRemoteManager<RemoveCVRef<QualTRef>>(std::forward<Args>(args)...);
|
585
|
+
// This is set after everything else in case an exception is thrown in an
|
586
|
+
// earlier step of the initialization.
|
587
|
+
invoker_ = RemoteInvoker<SigIsNoexcept, ReturnType, QualTRef, P...>;
|
588
|
+
}
|
589
|
+
|
590
|
+
template <class T,
|
591
|
+
typename = absl::enable_if_t<std::is_trivially_copyable<T>::value>>
|
592
|
+
void InitializeLocalManager() {
|
593
|
+
manager_ = LocalManagerTrivial;
|
594
|
+
}
|
595
|
+
|
596
|
+
template <class T,
|
597
|
+
absl::enable_if_t<!std::is_trivially_copyable<T>::value, int> = 0>
|
598
|
+
void InitializeLocalManager() {
|
599
|
+
manager_ = LocalManagerNontrivial<T>;
|
600
|
+
}
|
601
|
+
|
602
|
+
template <class T>
|
603
|
+
using HasTrivialRemoteStorage =
|
604
|
+
std::integral_constant<bool, std::is_trivially_destructible<T>::value &&
|
605
|
+
alignof(T) <=
|
606
|
+
ABSL_INTERNAL_DEFAULT_NEW_ALIGNMENT>;
|
607
|
+
|
608
|
+
template <class T, class... Args,
|
609
|
+
typename = absl::enable_if_t<HasTrivialRemoteStorage<T>::value>>
|
610
|
+
void InitializeRemoteManager(Args&&... args) {
|
611
|
+
// unique_ptr is used for exception-safety in case construction throws.
|
612
|
+
std::unique_ptr<void, TrivialDeleter> uninitialized_target(
|
613
|
+
::operator new(sizeof(T)), TrivialDeleter(sizeof(T)));
|
614
|
+
::new (uninitialized_target.get()) T(std::forward<Args>(args)...);
|
615
|
+
state_.remote.target = uninitialized_target.release();
|
616
|
+
state_.remote.size = sizeof(T);
|
617
|
+
manager_ = RemoteManagerTrivial;
|
618
|
+
}
|
619
|
+
|
620
|
+
template <class T, class... Args,
|
621
|
+
absl::enable_if_t<!HasTrivialRemoteStorage<T>::value, int> = 0>
|
622
|
+
void InitializeRemoteManager(Args&&... args) {
|
623
|
+
state_.remote.target = ::new T(std::forward<Args>(args)...);
|
624
|
+
manager_ = RemoteManagerNontrivial<T>;
|
625
|
+
}
|
626
|
+
|
627
|
+
//////////////////////////////////////////////////////////////////////////////
|
628
|
+
//
|
629
|
+
// Type trait to determine if the template argument is an AnyInvocable whose
|
630
|
+
// function type is compatible enough with ours such that we can
|
631
|
+
// "move the guts" out of it when moving, rather than having to place a new
|
632
|
+
// object into remote storage.
|
633
|
+
|
634
|
+
template <typename Other>
|
635
|
+
struct IsCompatibleAnyInvocable {
|
636
|
+
static constexpr bool value = false;
|
637
|
+
};
|
638
|
+
|
639
|
+
template <typename Sig>
|
640
|
+
struct IsCompatibleAnyInvocable<AnyInvocable<Sig>> {
|
641
|
+
static constexpr bool value =
|
642
|
+
(IsCompatibleConversion)(static_cast<
|
643
|
+
typename AnyInvocable<Sig>::CoreImpl*>(
|
644
|
+
nullptr),
|
645
|
+
static_cast<CoreImpl*>(nullptr));
|
646
|
+
};
|
647
|
+
|
648
|
+
//
|
649
|
+
//////////////////////////////////////////////////////////////////////////////
|
650
|
+
|
651
|
+
TypeErasedState state_;
|
652
|
+
ManagerType* manager_;
|
653
|
+
InvokerType<SigIsNoexcept, ReturnType, P...>* invoker_;
|
654
|
+
};
|
655
|
+
|
656
|
+
// A constructor name-tag used with Impl to request the
|
657
|
+
// conversion-constructor
|
658
|
+
struct ConversionConstruct {};
|
659
|
+
|
660
|
+
////////////////////////////////////////////////////////////////////////////////
|
661
|
+
//
|
662
|
+
// A metafunction that is normally an identity metafunction except that when
|
663
|
+
// given a std::reference_wrapper<T>, it yields T&. This is necessary because
|
664
|
+
// currently std::reference_wrapper's operator() is not conditionally noexcept,
|
665
|
+
// so when checking if such an Invocable is nothrow-invocable, we must pull out
|
666
|
+
// the underlying type.
|
667
|
+
template <class T>
|
668
|
+
struct UnwrapStdReferenceWrapperImpl {
|
669
|
+
using type = T;
|
670
|
+
};
|
671
|
+
|
672
|
+
template <class T>
|
673
|
+
struct UnwrapStdReferenceWrapperImpl<std::reference_wrapper<T>> {
|
674
|
+
using type = T&;
|
675
|
+
};
|
676
|
+
|
677
|
+
template <class T>
|
678
|
+
using UnwrapStdReferenceWrapper =
|
679
|
+
typename UnwrapStdReferenceWrapperImpl<T>::type;
|
680
|
+
//
|
681
|
+
////////////////////////////////////////////////////////////////////////////////
|
682
|
+
|
683
|
+
// An alias that always yields std::true_type (used with constraints) where
|
684
|
+
// substitution failures happen when forming the template arguments.
|
685
|
+
template <class... T>
|
686
|
+
using True =
|
687
|
+
std::integral_constant<bool, sizeof(absl::void_t<T...>*) != 0>;
|
688
|
+
|
689
|
+
/*SFINAE constraints for the conversion-constructor.*/
|
690
|
+
template <class Sig, class F,
|
691
|
+
class = absl::enable_if_t<
|
692
|
+
!std::is_same<RemoveCVRef<F>, AnyInvocable<Sig>>::value>>
|
693
|
+
using CanConvert =
|
694
|
+
True<absl::enable_if_t<!IsInPlaceType<RemoveCVRef<F>>::value>,
|
695
|
+
absl::enable_if_t<Impl<Sig>::template CallIsValid<F>::value>,
|
696
|
+
absl::enable_if_t<
|
697
|
+
Impl<Sig>::template CallIsNoexceptIfSigIsNoexcept<F>::value>,
|
698
|
+
absl::enable_if_t<std::is_constructible<absl::decay_t<F>, F>::value>>;
|
699
|
+
|
700
|
+
/*SFINAE constraints for the std::in_place constructors.*/
|
701
|
+
template <class Sig, class F, class... Args>
|
702
|
+
using CanEmplace = True<
|
703
|
+
absl::enable_if_t<Impl<Sig>::template CallIsValid<F>::value>,
|
704
|
+
absl::enable_if_t<
|
705
|
+
Impl<Sig>::template CallIsNoexceptIfSigIsNoexcept<F>::value>,
|
706
|
+
absl::enable_if_t<std::is_constructible<absl::decay_t<F>, Args...>::value>>;
|
707
|
+
|
708
|
+
/*SFINAE constraints for the conversion-assign operator.*/
|
709
|
+
template <class Sig, class F,
|
710
|
+
class = absl::enable_if_t<
|
711
|
+
!std::is_same<RemoveCVRef<F>, AnyInvocable<Sig>>::value>>
|
712
|
+
using CanAssign =
|
713
|
+
True<absl::enable_if_t<Impl<Sig>::template CallIsValid<F>::value>,
|
714
|
+
absl::enable_if_t<
|
715
|
+
Impl<Sig>::template CallIsNoexceptIfSigIsNoexcept<F>::value>,
|
716
|
+
absl::enable_if_t<std::is_constructible<absl::decay_t<F>, F>::value>>;
|
717
|
+
|
718
|
+
/*SFINAE constraints for the reference-wrapper conversion-assign operator.*/
|
719
|
+
template <class Sig, class F>
|
720
|
+
using CanAssignReferenceWrapper =
|
721
|
+
True<absl::enable_if_t<
|
722
|
+
Impl<Sig>::template CallIsValid<std::reference_wrapper<F>>::value>,
|
723
|
+
absl::enable_if_t<Impl<Sig>::template CallIsNoexceptIfSigIsNoexcept<
|
724
|
+
std::reference_wrapper<F>>::value>>;
|
725
|
+
|
726
|
+
////////////////////////////////////////////////////////////////////////////////
|
727
|
+
//
|
728
|
+
// The constraint for checking whether or not a call meets the noexcept
|
729
|
+
// callability requirements. This is a preprocessor macro because specifying it
|
730
|
+
// this way as opposed to a disjunction/branch can improve the user-side error
|
731
|
+
// messages and avoids an instantiation of std::is_nothrow_invocable_r in the
|
732
|
+
// cases where the user did not specify a noexcept function type.
|
733
|
+
//
|
734
|
+
#define ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT(inv_quals, noex) \
|
735
|
+
ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT_##noex(inv_quals)
|
736
|
+
|
737
|
+
// The disjunction below is because we can't rely on std::is_nothrow_invocable_r
|
738
|
+
// to give the right result when ReturnType is non-moveable in toolchains that
|
739
|
+
// don't treat non-moveable result types correctly. For example this was the
|
740
|
+
// case in libc++ before commit c3a24882 (2022-05).
|
741
|
+
#define ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT_true(inv_quals) \
|
742
|
+
absl::enable_if_t<absl::disjunction< \
|
743
|
+
std::is_nothrow_invocable_r< \
|
744
|
+
ReturnType, UnwrapStdReferenceWrapper<absl::decay_t<F>> inv_quals, \
|
745
|
+
P...>, \
|
746
|
+
std::conjunction< \
|
747
|
+
std::is_nothrow_invocable< \
|
748
|
+
UnwrapStdReferenceWrapper<absl::decay_t<F>> inv_quals, P...>, \
|
749
|
+
std::is_same< \
|
750
|
+
ReturnType, \
|
751
|
+
absl::base_internal::invoke_result_t< \
|
752
|
+
UnwrapStdReferenceWrapper<absl::decay_t<F>> inv_quals, \
|
753
|
+
P...>>>>::value>
|
754
|
+
|
755
|
+
#define ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT_false(inv_quals)
|
756
|
+
//
|
757
|
+
////////////////////////////////////////////////////////////////////////////////
|
758
|
+
|
759
|
+
// A macro to generate partial specializations of Impl with the different
|
760
|
+
// combinations of supported cv/reference qualifiers and noexcept specifier.
|
761
|
+
//
|
762
|
+
// Here, `cv` are the cv-qualifiers if any, `ref` is the ref-qualifier if any,
|
763
|
+
// inv_quals is the reference type to be used when invoking the target, and
|
764
|
+
// noex is "true" if the function type is noexcept, or false if it is not.
|
765
|
+
//
|
766
|
+
// The CallIsValid condition is more complicated than simply using
|
767
|
+
// absl::base_internal::is_invocable_r because we can't rely on it to give the
|
768
|
+
// right result when ReturnType is non-moveable in toolchains that don't treat
|
769
|
+
// non-moveable result types correctly. For example this was the case in libc++
|
770
|
+
// before commit c3a24882 (2022-05).
|
771
|
+
#define ABSL_INTERNAL_ANY_INVOCABLE_IMPL_(cv, ref, inv_quals, noex) \
|
772
|
+
template <class ReturnType, class... P> \
|
773
|
+
class Impl<ReturnType(P...) cv ref ABSL_INTERNAL_NOEXCEPT_SPEC(noex)> \
|
774
|
+
: public CoreImpl<noex, ReturnType, P...> { \
|
775
|
+
public: \
|
776
|
+
/*The base class, which contains the datamembers and core operations*/ \
|
777
|
+
using Core = CoreImpl<noex, ReturnType, P...>; \
|
778
|
+
\
|
779
|
+
/*SFINAE constraint to check if F is invocable with the proper signature*/ \
|
780
|
+
template <class F> \
|
781
|
+
using CallIsValid = True<absl::enable_if_t<absl::disjunction< \
|
782
|
+
absl::base_internal::is_invocable_r<ReturnType, \
|
783
|
+
absl::decay_t<F> inv_quals, P...>, \
|
784
|
+
std::is_same<ReturnType, \
|
785
|
+
absl::base_internal::invoke_result_t< \
|
786
|
+
absl::decay_t<F> inv_quals, P...>>>::value>>; \
|
787
|
+
\
|
788
|
+
/*SFINAE constraint to check if F is nothrow-invocable when necessary*/ \
|
789
|
+
template <class F> \
|
790
|
+
using CallIsNoexceptIfSigIsNoexcept = \
|
791
|
+
True<ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT(inv_quals, \
|
792
|
+
noex)>; \
|
793
|
+
\
|
794
|
+
/*Put the AnyInvocable into an empty state.*/ \
|
795
|
+
Impl() = default; \
|
796
|
+
\
|
797
|
+
/*The implementation of a conversion-constructor from "f*/ \
|
798
|
+
/*This forwards to Core, attaching inv_quals so that the base class*/ \
|
799
|
+
/*knows how to properly type-erase the invocation.*/ \
|
800
|
+
template <class F> \
|
801
|
+
explicit Impl(ConversionConstruct, F&& f) \
|
802
|
+
: Core(TypedConversionConstruct< \
|
803
|
+
typename std::decay<F>::type inv_quals>(), \
|
804
|
+
std::forward<F>(f)) {} \
|
805
|
+
\
|
806
|
+
/*Forward along the in-place construction parameters.*/ \
|
807
|
+
template <class T, class... Args> \
|
808
|
+
explicit Impl(absl::in_place_type_t<T>, Args&&... args) \
|
809
|
+
: Core(absl::in_place_type<absl::decay_t<T> inv_quals>, \
|
810
|
+
std::forward<Args>(args)...) {} \
|
811
|
+
\
|
812
|
+
/*The actual invocation operation with the proper signature*/ \
|
813
|
+
ReturnType operator()(P... args) cv ref noexcept(noex) { \
|
814
|
+
assert(this->invoker_ != nullptr); \
|
815
|
+
return this->invoker_(const_cast<TypeErasedState*>(&this->state_), \
|
816
|
+
static_cast<ForwardedParameterType<P>>(args)...); \
|
817
|
+
} \
|
818
|
+
}
|
819
|
+
|
820
|
+
// Define the `noexcept(true)` specialization only for C++17 and beyond, when
|
821
|
+
// `noexcept` is part of the type system.
|
822
|
+
#if ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L
|
823
|
+
// A convenience macro that defines specializations for the noexcept(true) and
|
824
|
+
// noexcept(false) forms, given the other properties.
|
825
|
+
#define ABSL_INTERNAL_ANY_INVOCABLE_IMPL(cv, ref, inv_quals) \
|
826
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL_(cv, ref, inv_quals, false); \
|
827
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL_(cv, ref, inv_quals, true)
|
828
|
+
#else
|
829
|
+
#define ABSL_INTERNAL_ANY_INVOCABLE_IMPL(cv, ref, inv_quals) \
|
830
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL_(cv, ref, inv_quals, false)
|
831
|
+
#endif
|
832
|
+
|
833
|
+
// Non-ref-qualified partial specializations
|
834
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL(, , &);
|
835
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL(const, , const&);
|
836
|
+
|
837
|
+
// Lvalue-ref-qualified partial specializations
|
838
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL(, &, &);
|
839
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL(const, &, const&);
|
840
|
+
|
841
|
+
// Rvalue-ref-qualified partial specializations
|
842
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL(, &&, &&);
|
843
|
+
ABSL_INTERNAL_ANY_INVOCABLE_IMPL(const, &&, const&&);
|
844
|
+
|
845
|
+
// Undef the detail-only macros.
|
846
|
+
#undef ABSL_INTERNAL_ANY_INVOCABLE_IMPL
|
847
|
+
#undef ABSL_INTERNAL_ANY_INVOCABLE_IMPL_
|
848
|
+
#undef ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT_false
|
849
|
+
#undef ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT_true
|
850
|
+
#undef ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT
|
851
|
+
#undef ABSL_INTERNAL_NOEXCEPT_SPEC
|
852
|
+
|
853
|
+
} // namespace internal_any_invocable
|
854
|
+
ABSL_NAMESPACE_END
|
855
|
+
} // namespace absl
|
856
|
+
|
857
|
+
#endif // ABSL_FUNCTIONAL_INTERNAL_ANY_INVOCABLE_H_
|