grpc 1.48.0-x86_64-linux → 1.49.1-x86_64-linux

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.

Files changed (721) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +104 -41
  3. data/include/grpc/event_engine/event_engine.h +19 -16
  4. data/include/grpc/impl/codegen/grpc_types.h +3 -8
  5. data/include/grpc/impl/codegen/port_platform.h +0 -8
  6. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +3 -3
  7. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +2 -2
  8. data/src/core/ext/filters/client_channel/client_channel.cc +125 -200
  9. data/src/core/ext/filters/client_channel/client_channel.h +15 -8
  10. data/src/core/ext/filters/client_channel/client_channel_factory.cc +0 -29
  11. data/src/core/ext/filters/client_channel/client_channel_factory.h +2 -10
  12. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
  13. data/src/core/ext/filters/client_channel/config_selector.h +12 -4
  14. data/src/core/ext/filters/client_channel/connector.h +4 -5
  15. data/src/core/ext/filters/client_channel/http_proxy.cc +53 -65
  16. data/src/core/ext/filters/client_channel/http_proxy.h +12 -9
  17. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +14 -12
  18. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +6 -6
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +102 -131
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +12 -3
  21. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +5 -1
  22. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +1 -0
  23. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -2
  24. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h +1 -1
  25. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +169 -63
  26. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +25 -1
  27. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +15 -19
  28. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +66 -78
  29. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +44 -44
  30. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +6 -5
  31. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +65 -77
  32. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +15 -14
  33. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +19 -14
  34. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +63 -67
  35. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +40 -49
  36. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +81 -97
  37. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +53 -61
  38. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +171 -102
  39. data/src/core/ext/filters/client_channel/proxy_mapper.h +13 -14
  40. data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +19 -16
  41. data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +8 -7
  42. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +4 -8
  43. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +431 -145
  44. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +170 -99
  45. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +20 -7
  46. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +17 -15
  47. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +7 -17
  48. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +11 -0
  49. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +38 -17
  50. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -4
  51. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +5 -6
  52. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +4 -13
  53. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +162 -165
  54. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +37 -30
  55. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +7 -10
  56. data/src/core/ext/filters/client_channel/retry_filter.cc +0 -7
  57. data/src/core/ext/filters/client_channel/retry_service_config.cc +30 -19
  58. data/src/core/ext/filters/client_channel/retry_service_config.h +6 -9
  59. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +6 -7
  60. data/src/core/ext/filters/client_channel/subchannel.cc +49 -89
  61. data/src/core/ext/filters/client_channel/subchannel.h +8 -8
  62. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +1 -1
  63. data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +6 -76
  64. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +16 -25
  65. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +3 -4
  66. data/src/core/ext/filters/deadline/deadline_filter.cc +6 -6
  67. data/src/core/ext/filters/deadline/deadline_filter.h +2 -3
  68. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +1 -3
  69. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +1 -1
  70. data/src/core/ext/filters/fault_injection/service_config_parser.cc +17 -12
  71. data/src/core/ext/filters/fault_injection/service_config_parser.h +4 -5
  72. data/src/core/ext/filters/http/client/http_client_filter.cc +2 -3
  73. data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
  74. data/src/core/ext/filters/http/client_authority_filter.cc +1 -2
  75. data/src/core/ext/filters/http/client_authority_filter.h +1 -1
  76. data/src/core/ext/filters/http/server/http_server_filter.cc +2 -3
  77. data/src/core/ext/filters/http/server/http_server_filter.h +1 -1
  78. data/src/core/ext/filters/message_size/message_size_filter.cc +13 -7
  79. data/src/core/ext/filters/message_size/message_size_filter.h +3 -6
  80. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -12
  81. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +4 -6
  82. data/src/core/ext/filters/server_config_selector/server_config_selector.h +5 -0
  83. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +3 -5
  84. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +35 -62
  85. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +62 -89
  86. data/src/core/ext/transport/chttp2/server/chttp2_server.h +4 -6
  87. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +130 -165
  88. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -2
  89. data/src/core/ext/transport/chttp2/transport/flow_control.cc +67 -2
  90. data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -0
  91. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +7 -1
  92. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +25 -8
  93. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -0
  94. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
  95. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +8 -2
  96. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -10
  97. data/src/core/ext/transport/chttp2/transport/internal.h +2 -1
  98. data/src/core/ext/transport/inproc/inproc_transport.cc +40 -74
  99. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +5 -5
  100. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +30 -10
  101. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +4 -4
  102. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +24 -8
  103. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +8 -327
  104. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +83 -1723
  105. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +352 -0
  106. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1768 -0
  107. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +2 -2
  108. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +12 -4
  109. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +6 -4
  110. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +33 -4
  111. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +1 -1
  112. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +6 -2
  113. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +1 -1
  114. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +6 -2
  115. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +6 -2
  116. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +12 -4
  117. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +1 -1
  118. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +6 -2
  119. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
  120. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -3
  121. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +14 -14
  122. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +90 -30
  123. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +21 -19
  124. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +124 -34
  125. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +3 -3
  126. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +18 -6
  127. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +23 -22
  128. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +153 -48
  129. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +1 -1
  130. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +6 -2
  131. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +1 -1
  132. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +6 -2
  133. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +11 -11
  134. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +84 -28
  135. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +7 -7
  136. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +42 -14
  137. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +1 -1
  138. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +6 -2
  139. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +25 -23
  140. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +156 -48
  141. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +7 -7
  142. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +42 -14
  143. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +1 -1
  144. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +6 -2
  145. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +1 -1
  146. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +6 -2
  147. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +2 -2
  148. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +12 -4
  149. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +12 -12
  150. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +78 -26
  151. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +9 -9
  152. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +54 -18
  153. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +1 -1
  154. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +6 -2
  155. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +21 -20
  156. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +117 -44
  157. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +1 -1
  158. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +6 -2
  159. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +2 -2
  160. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +12 -4
  161. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +6 -2
  162. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +1 -1
  163. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +6 -2
  164. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +1 -1
  165. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +6 -2
  166. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +3 -3
  167. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +18 -6
  168. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +5 -5
  169. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +36 -12
  170. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +3 -3
  171. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +30 -10
  172. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +1 -1
  173. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +6 -2
  174. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +37 -13
  175. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +170 -15
  176. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +5 -5
  177. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +42 -14
  178. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +1 -1
  179. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +6 -2
  180. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +7 -4
  181. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +36 -4
  182. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +1 -1
  183. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +6 -2
  184. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +6 -6
  185. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +48 -16
  186. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +8 -8
  187. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +54 -18
  188. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +21 -9
  189. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +100 -14
  190. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +7 -22
  191. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +36 -77
  192. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +121 -76
  193. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +647 -163
  194. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +3 -3
  195. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +18 -6
  196. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +34 -15
  197. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +161 -22
  198. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +1 -1
  199. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +6 -2
  200. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +1 -1
  201. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +6 -2
  202. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +2 -2
  203. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +12 -4
  204. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +1 -1
  205. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +6 -2
  206. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +1 -1
  207. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +6 -2
  208. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +46 -0
  209. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +98 -0
  210. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +1 -1
  211. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +6 -2
  212. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +2 -2
  213. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +12 -4
  214. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +1 -0
  215. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +1 -0
  216. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +2 -2
  217. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +12 -4
  218. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +1 -1
  219. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +6 -2
  220. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +1 -1
  221. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +6 -2
  222. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +2 -2
  223. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +30 -10
  224. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +2 -2
  225. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +18 -6
  226. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +11 -4
  227. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +58 -4
  228. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +1 -1
  229. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +6 -2
  230. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +35 -27
  231. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +177 -52
  232. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +6 -2
  233. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +1 -1
  234. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +6 -2
  235. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +10 -8
  236. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +66 -14
  237. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +3 -3
  238. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +18 -6
  239. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +5 -5
  240. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +42 -14
  241. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +2 -2
  242. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +12 -4
  243. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
  244. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +6 -2
  245. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +131 -16
  246. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +632 -12
  247. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +2 -2
  248. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +12 -4
  249. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +5 -5
  250. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +30 -10
  251. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +1 -1
  252. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +6 -2
  253. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +4 -4
  254. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +24 -8
  255. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +4 -4
  256. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +24 -8
  257. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +2 -2
  258. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +12 -4
  259. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +1 -1
  260. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +6 -2
  261. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +1 -1
  262. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +6 -2
  263. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +1 -1
  264. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +6 -2
  265. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +3 -3
  266. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +18 -6
  267. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +1 -1
  268. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +12 -4
  269. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +2 -2
  270. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +12 -4
  271. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +3 -3
  272. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +18 -6
  273. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +7 -7
  274. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +42 -14
  275. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +5 -5
  276. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +30 -10
  277. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +3 -3
  278. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +18 -6
  279. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +1 -1
  280. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +6 -2
  281. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +12 -4
  282. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +2 -2
  283. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +18 -6
  284. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +63 -0
  285. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +202 -0
  286. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +1 -1
  287. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +6 -2
  288. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +6 -2
  289. data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -1
  290. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +11 -11
  291. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +66 -22
  292. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +9 -9
  293. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +72 -24
  294. data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
  295. data/src/core/ext/upb-generated/google/api/http.upb.h +18 -6
  296. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +1 -1
  297. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +6 -2
  298. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
  299. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +6 -2
  300. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +44 -43
  301. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +177 -55
  302. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
  303. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +6 -2
  304. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
  305. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +6 -2
  306. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +2 -2
  307. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +18 -6
  308. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
  309. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +6 -2
  310. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +6 -6
  311. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +54 -18
  312. data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
  313. data/src/core/ext/upb-generated/google/rpc/status.upb.h +6 -2
  314. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +2 -2
  315. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +24 -8
  316. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +6 -2
  317. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +7 -7
  318. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +60 -20
  319. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +1 -1
  320. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +12 -4
  321. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
  322. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +12 -4
  323. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +6 -6
  324. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +54 -18
  325. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +2 -2
  326. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +12 -4
  327. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +7 -7
  328. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +42 -14
  329. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
  330. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +23 -11
  331. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +1 -1
  332. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -3
  333. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +7 -3
  334. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +1 -1
  335. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -3
  336. data/src/core/ext/upb-generated/validate/validate.upb.c +22 -22
  337. data/src/core/ext/upb-generated/validate/validate.upb.h +139 -47
  338. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +3 -3
  339. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +23 -11
  340. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +1 -1
  341. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +7 -3
  342. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +3 -3
  343. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +27 -11
  344. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +1 -1
  345. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +7 -3
  346. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +1 -1
  347. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +6 -2
  348. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +2 -2
  349. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +12 -4
  350. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +1 -1
  351. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +6 -2
  352. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +1 -1
  353. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +6 -2
  354. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +1 -1
  355. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +6 -2
  356. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +1 -1
  357. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +12 -4
  358. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +1 -1
  359. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +6 -2
  360. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +6 -2
  361. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +1 -1
  362. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +6 -2
  363. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +6 -6
  364. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +54 -18
  365. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +2 -2
  366. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +12 -4
  367. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +1 -1
  368. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +12 -4
  369. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +1 -1
  370. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +6 -2
  371. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +67 -274
  372. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +0 -85
  373. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +256 -0
  374. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +115 -0
  375. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +14 -11
  376. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +107 -107
  377. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +191 -187
  378. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +156 -154
  379. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +186 -183
  380. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +136 -134
  381. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +16 -16
  382. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +162 -139
  383. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +5 -0
  384. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +39 -31
  385. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +12 -8
  386. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +5 -0
  387. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +72 -75
  388. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +0 -5
  389. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +713 -670
  390. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +10 -0
  391. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +150 -139
  392. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +5 -0
  393. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +47 -0
  394. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +35 -0
  395. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +16 -12
  396. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +46 -25
  397. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +477 -466
  398. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +21 -18
  399. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +153 -84
  400. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +35 -0
  401. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +113 -113
  402. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -28
  403. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +69 -0
  404. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +40 -0
  405. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +92 -90
  406. data/src/core/ext/xds/upb_utils.h +0 -21
  407. data/src/core/ext/xds/xds_api.cc +53 -86
  408. data/src/core/ext/xds/xds_api.h +19 -28
  409. data/src/core/ext/xds/xds_bootstrap.cc +39 -52
  410. data/src/core/ext/xds/xds_bootstrap.h +28 -8
  411. data/src/core/ext/xds/xds_certificate_provider.h +9 -0
  412. data/src/core/ext/xds/xds_channel_stack_modifier.cc +6 -4
  413. data/src/core/ext/xds/xds_channel_stack_modifier.h +8 -0
  414. data/src/core/ext/xds/xds_client.cc +555 -1214
  415. data/src/core/ext/xds/xds_client.h +16 -44
  416. data/src/core/ext/xds/xds_client_grpc.cc +291 -0
  417. data/src/core/ext/xds/xds_client_grpc.h +102 -0
  418. data/src/core/ext/xds/xds_cluster.cc +92 -103
  419. data/src/core/ext/xds/xds_cluster.h +6 -5
  420. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +10 -14
  421. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +1 -0
  422. data/src/core/ext/xds/xds_common_types.cc +134 -110
  423. data/src/core/ext/xds/xds_common_types.h +6 -7
  424. data/src/core/ext/xds/xds_endpoint.cc +80 -80
  425. data/src/core/ext/xds/xds_endpoint.h +4 -4
  426. data/src/core/ext/xds/xds_http_fault_filter.cc +4 -11
  427. data/src/core/ext/xds/xds_http_fault_filter.h +3 -3
  428. data/src/core/ext/xds/xds_http_filters.h +3 -3
  429. data/src/core/ext/xds/xds_http_rbac_filter.cc +39 -58
  430. data/src/core/ext/xds/xds_http_rbac_filter.h +3 -3
  431. data/src/core/ext/xds/xds_lb_policy_registry.cc +17 -20
  432. data/src/core/ext/xds/xds_lb_policy_registry.h +4 -4
  433. data/src/core/ext/xds/xds_listener.cc +329 -299
  434. data/src/core/ext/xds/xds_listener.h +4 -4
  435. data/src/core/ext/xds/xds_resource_type.h +13 -2
  436. data/src/core/ext/xds/xds_route_config.cc +180 -177
  437. data/src/core/ext/xds/xds_route_config.h +31 -17
  438. data/src/core/ext/xds/xds_routing.cc +3 -6
  439. data/src/core/ext/xds/xds_routing.h +7 -9
  440. data/src/core/ext/xds/xds_server_config_fetcher.cc +76 -81
  441. data/src/core/ext/xds/xds_transport.h +86 -0
  442. data/src/core/ext/xds/xds_transport_grpc.cc +349 -0
  443. data/src/core/ext/xds/xds_transport_grpc.h +135 -0
  444. data/src/core/lib/address_utils/parse_address.cc +19 -17
  445. data/src/core/lib/address_utils/parse_address.h +8 -5
  446. data/src/core/lib/avl/avl.h +47 -25
  447. data/src/core/lib/channel/call_tracer.h +1 -1
  448. data/src/core/lib/channel/channel_args.cc +88 -19
  449. data/src/core/lib/channel/channel_args.h +113 -62
  450. data/src/core/lib/channel/channel_stack.cc +0 -1
  451. data/src/core/lib/channel/channel_stack_builder.cc +3 -3
  452. data/src/core/lib/channel/channel_stack_builder.h +2 -2
  453. data/src/core/lib/channel/channel_stack_builder_impl.cc +2 -4
  454. data/src/core/lib/channel/channelz.cc +27 -37
  455. data/src/core/lib/channel/channelz.h +9 -0
  456. data/src/core/lib/channel/promise_based_filter.h +0 -1
  457. data/src/core/lib/config/core_configuration.h +48 -35
  458. data/src/core/lib/debug/stats.cc +12 -15
  459. data/src/core/lib/debug/stats.h +11 -3
  460. data/src/core/lib/event_engine/{event_engine.cc → default_event_engine.cc} +9 -5
  461. data/src/core/lib/event_engine/{event_engine_factory.h → default_event_engine.h} +4 -8
  462. data/src/core/lib/event_engine/default_event_engine_factory.cc +20 -3
  463. data/src/core/lib/event_engine/default_event_engine_factory.h +33 -0
  464. data/src/core/lib/event_engine/executor/executor.h +38 -0
  465. data/src/core/lib/event_engine/executor/threaded_executor.cc +36 -0
  466. data/src/core/lib/event_engine/executor/threaded_executor.h +44 -0
  467. data/src/core/lib/event_engine/forkable.cc +101 -0
  468. data/src/core/lib/event_engine/forkable.h +61 -0
  469. data/src/core/lib/event_engine/poller.h +54 -0
  470. data/src/core/lib/event_engine/{iomgr_engine/iomgr_engine.cc → posix_engine/posix_engine.cc} +30 -47
  471. data/src/core/lib/event_engine/{iomgr_engine/iomgr_engine.h → posix_engine/posix_engine.h} +27 -28
  472. data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer.cc +4 -5
  473. data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer.h +8 -8
  474. data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_heap.cc +4 -4
  475. data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_heap.h +5 -5
  476. data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_manager.cc +46 -10
  477. data/src/core/lib/event_engine/{iomgr_engine → posix_engine}/timer_manager.h +17 -8
  478. data/src/core/lib/event_engine/promise.h +11 -2
  479. data/src/core/lib/event_engine/socket_notifier.h +55 -0
  480. data/src/core/lib/event_engine/{iomgr_engine/thread_pool.cc → thread_pool.cc} +49 -14
  481. data/src/core/lib/event_engine/{iomgr_engine/thread_pool.h → thread_pool.h} +21 -10
  482. data/src/core/lib/event_engine/utils.cc +49 -0
  483. data/src/core/lib/event_engine/utils.h +40 -0
  484. data/src/core/lib/event_engine/windows/iocp.cc +149 -0
  485. data/src/core/lib/event_engine/windows/iocp.h +68 -0
  486. data/src/core/lib/event_engine/windows/win_socket.cc +196 -0
  487. data/src/core/lib/event_engine/windows/win_socket.h +120 -0
  488. data/src/core/lib/event_engine/windows/windows_engine.cc +159 -0
  489. data/src/core/lib/event_engine/windows/windows_engine.h +120 -0
  490. data/src/core/lib/gpr/time.cc +11 -9
  491. data/src/core/lib/gpr/useful.h +29 -0
  492. data/src/core/lib/gprpp/bitset.h +3 -13
  493. data/src/core/lib/gprpp/debug_location.h +39 -7
  494. data/src/core/lib/gprpp/manual_constructor.h +0 -1
  495. data/src/core/lib/gprpp/no_destruct.h +94 -0
  496. data/src/core/lib/gprpp/ref_counted_ptr.h +0 -1
  497. data/src/core/lib/gprpp/status_helper.cc +1 -0
  498. data/src/core/lib/gprpp/table.h +0 -1
  499. data/src/core/lib/{event_engine/iomgr_engine → gprpp}/time_averaged_stats.cc +3 -5
  500. data/src/core/lib/{event_engine/iomgr_engine → gprpp}/time_averaged_stats.h +5 -7
  501. data/src/core/lib/{iomgr → gprpp}/work_serializer.cc +34 -18
  502. data/src/core/lib/{iomgr → gprpp}/work_serializer.h +21 -27
  503. data/src/core/lib/http/httpcli.cc +12 -24
  504. data/src/core/lib/http/httpcli_security_connector.cc +11 -11
  505. data/src/core/lib/iomgr/call_combiner.cc +0 -26
  506. data/src/core/lib/iomgr/closure.h +0 -9
  507. data/src/core/lib/iomgr/combiner.cc +0 -20
  508. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -1
  509. data/src/core/lib/iomgr/error.cc +0 -773
  510. data/src/core/lib/iomgr/error.h +0 -145
  511. data/src/core/lib/iomgr/error_cfstream.cc +0 -5
  512. data/src/core/lib/iomgr/ev_poll_posix.cc +17 -9
  513. data/src/core/lib/iomgr/exec_ctx.cc +0 -12
  514. data/src/core/lib/iomgr/executor.cc +0 -10
  515. data/src/core/lib/iomgr/executor.h +0 -3
  516. data/src/core/lib/iomgr/lockfree_event.cc +0 -17
  517. data/src/core/lib/iomgr/port.h +3 -0
  518. data/src/core/lib/iomgr/resolve_address.h +29 -6
  519. data/src/core/lib/iomgr/resolve_address_posix.cc +42 -8
  520. data/src/core/lib/iomgr/resolve_address_posix.h +19 -5
  521. data/src/core/lib/iomgr/resolve_address_windows.cc +44 -10
  522. data/src/core/lib/iomgr/resolve_address_windows.h +19 -5
  523. data/src/core/lib/iomgr/socket_windows.h +0 -2
  524. data/src/core/lib/iomgr/tcp_posix.cc +118 -6
  525. data/src/core/lib/iomgr/timer_generic.cc +6 -8
  526. data/src/core/lib/json/json.h +19 -22
  527. data/src/core/lib/json/json_args.h +34 -0
  528. data/src/core/lib/json/json_object_loader.cc +233 -0
  529. data/src/core/lib/json/json_object_loader.h +618 -0
  530. data/src/core/lib/json/json_reader.cc +86 -62
  531. data/src/core/lib/json/json_util.cc +8 -36
  532. data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.cc +3 -44
  533. data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.h +15 -24
  534. data/src/core/lib/load_balancing/lb_policy_factory.h +49 -0
  535. data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy_registry.cc +49 -72
  536. data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy_registry.h +27 -27
  537. data/src/core/{ext/filters/client_channel → lib/load_balancing}/subchannel_interface.h +6 -6
  538. data/src/core/lib/promise/activity.h +56 -8
  539. data/src/core/lib/promise/arena_promise.h +84 -81
  540. data/src/core/lib/promise/context.h +0 -1
  541. data/src/core/lib/promise/detail/basic_seq.h +43 -23
  542. data/src/core/lib/promise/detail/promise_factory.h +0 -1
  543. data/src/core/lib/promise/map.h +0 -1
  544. data/src/core/lib/promise/seq.h +25 -4
  545. data/src/core/lib/promise/sleep.cc +38 -42
  546. data/src/core/lib/promise/sleep.h +27 -24
  547. data/src/core/lib/promise/try_seq.h +26 -6
  548. data/src/core/lib/resolver/resolver.cc +0 -47
  549. data/src/core/lib/resolver/resolver.h +2 -12
  550. data/src/core/lib/resolver/resolver_factory.h +2 -3
  551. data/src/core/lib/resolver/resolver_registry.cc +1 -1
  552. data/src/core/lib/resolver/resolver_registry.h +2 -3
  553. data/src/core/lib/resolver/server_address.cc +11 -15
  554. data/src/core/lib/resolver/server_address.h +4 -8
  555. data/src/core/lib/resource_quota/api.cc +1 -1
  556. data/src/core/lib/resource_quota/arena.cc +21 -1
  557. data/src/core/lib/resource_quota/arena.h +24 -2
  558. data/src/core/lib/resource_quota/memory_quota.cc +157 -17
  559. data/src/core/lib/resource_quota/memory_quota.h +98 -17
  560. data/src/core/lib/resource_quota/periodic_update.cc +79 -0
  561. data/src/core/lib/resource_quota/periodic_update.h +71 -0
  562. data/src/core/lib/security/authorization/evaluate_args.cc +10 -7
  563. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -2
  564. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -1
  565. data/src/core/lib/security/authorization/matchers.cc +13 -10
  566. data/src/core/lib/security/authorization/rbac_policy.cc +0 -1
  567. data/src/core/lib/security/credentials/alts/alts_credentials.cc +2 -3
  568. data/src/core/lib/security/credentials/alts/alts_credentials.h +3 -4
  569. data/src/core/lib/security/credentials/composite/composite_credentials.cc +3 -7
  570. data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -4
  571. data/src/core/lib/security/credentials/credentials.h +16 -12
  572. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +18 -11
  573. data/src/core/lib/security/credentials/external/external_account_credentials.cc +32 -23
  574. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -6
  575. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +4 -6
  576. data/src/core/lib/security/credentials/fake/fake_credentials.cc +3 -12
  577. data/src/core/lib/security/credentials/fake/fake_credentials.h +0 -4
  578. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +29 -26
  579. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +1 -3
  580. data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
  581. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +3 -3
  582. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +3 -4
  583. data/src/core/lib/security/credentials/jwt/json_token.cc +12 -3
  584. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +4 -8
  585. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +11 -13
  586. data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
  587. data/src/core/lib/security/credentials/local/local_credentials.h +3 -4
  588. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +17 -18
  589. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +0 -1
  590. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +13 -21
  591. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +3 -4
  592. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +6 -0
  593. data/src/core/lib/security/credentials/tls/tls_credentials.cc +13 -25
  594. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -4
  595. data/src/core/lib/security/credentials/xds/xds_credentials.cc +13 -30
  596. data/src/core/lib/security/credentials/xds/xds_credentials.h +3 -3
  597. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +10 -18
  598. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +26 -38
  599. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +2 -2
  600. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +5 -5
  601. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +6 -5
  602. data/src/core/lib/security/security_connector/local/local_security_connector.cc +13 -11
  603. data/src/core/lib/security/security_connector/local/local_security_connector.h +2 -2
  604. data/src/core/lib/security/security_connector/security_connector.h +5 -3
  605. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +5 -4
  606. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +5 -5
  607. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +5 -5
  608. data/src/core/lib/security/transport/auth_filters.h +1 -1
  609. data/src/core/lib/security/transport/client_auth_filter.cc +3 -4
  610. data/src/core/lib/security/transport/security_handshaker.cc +32 -44
  611. data/src/core/lib/security/transport/security_handshaker.h +2 -1
  612. data/src/core/lib/service_config/service_config.h +11 -0
  613. data/src/core/lib/service_config/service_config_impl.cc +98 -97
  614. data/src/core/lib/service_config/service_config_impl.h +11 -13
  615. data/src/core/lib/service_config/service_config_parser.cc +26 -27
  616. data/src/core/lib/service_config/service_config_parser.h +10 -22
  617. data/src/core/lib/slice/percent_encoding.cc +4 -13
  618. data/src/core/lib/slice/slice.cc +10 -4
  619. data/src/core/lib/surface/call.cc +8 -2
  620. data/src/core/lib/surface/channel.cc +6 -6
  621. data/src/core/lib/surface/channel.h +1 -1
  622. data/src/core/lib/surface/completion_queue.cc +0 -2
  623. data/src/core/lib/surface/completion_queue.h +0 -3
  624. data/src/core/lib/surface/init.cc +2 -6
  625. data/src/core/lib/surface/lame_client.cc +2 -3
  626. data/src/core/lib/surface/lame_client.h +1 -1
  627. data/src/core/lib/surface/server.cc +7 -12
  628. data/src/core/lib/surface/server.h +7 -7
  629. data/src/core/lib/surface/validate_metadata.cc +4 -14
  630. data/src/core/lib/surface/version.cc +2 -2
  631. data/src/core/lib/transport/connectivity_state.cc +0 -1
  632. data/src/core/lib/transport/connectivity_state.h +1 -1
  633. data/src/core/lib/transport/error_utils.cc +0 -36
  634. data/src/core/lib/transport/handshaker.cc +7 -9
  635. data/src/core/lib/transport/handshaker.h +4 -5
  636. data/src/core/lib/transport/handshaker_factory.h +2 -3
  637. data/src/core/lib/transport/handshaker_registry.cc +2 -1
  638. data/src/core/lib/transport/handshaker_registry.h +2 -4
  639. data/src/core/lib/transport/http_connect_handshaker.cc +16 -16
  640. data/src/core/lib/transport/metadata_batch.cc +5 -0
  641. data/src/core/lib/transport/metadata_batch.h +52 -7
  642. data/src/core/lib/transport/parsed_metadata.h +0 -1
  643. data/src/core/lib/transport/tcp_connect_handshaker.cc +12 -18
  644. data/src/core/lib/transport/transport.h +0 -7
  645. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +40 -21
  646. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -1
  647. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +14 -7
  648. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +1 -1
  649. data/src/core/tsi/fake_transport_security.cc +53 -30
  650. data/src/core/tsi/local_transport_security.cc +9 -5
  651. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +10 -1
  652. data/src/core/tsi/ssl_transport_security.cc +47 -23
  653. data/src/core/tsi/transport_security.cc +18 -6
  654. data/src/core/tsi/transport_security.h +2 -1
  655. data/src/core/tsi/transport_security_interface.h +17 -5
  656. data/src/ruby/ext/grpc/extconf.rb +2 -0
  657. data/src/ruby/ext/grpc/rb_loader.c +6 -2
  658. data/src/ruby/lib/grpc/2.6/grpc_c.so +0 -0
  659. data/src/ruby/lib/grpc/2.7/grpc_c.so +0 -0
  660. data/src/ruby/lib/grpc/3.0/grpc_c.so +0 -0
  661. data/src/ruby/lib/grpc/3.1/grpc_c.so +0 -0
  662. data/src/ruby/lib/grpc/grpc_c.so +0 -0
  663. data/src/ruby/lib/grpc/version.rb +1 -1
  664. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +4 -0
  665. data/third_party/abseil-cpp/absl/functional/any_invocable.h +313 -0
  666. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +857 -0
  667. data/third_party/upb/third_party/utf8_range/utf8_range.h +1 -1
  668. data/third_party/upb/upb/arena.c +277 -0
  669. data/third_party/upb/upb/arena.h +225 -0
  670. data/third_party/upb/upb/array.c +114 -0
  671. data/third_party/upb/upb/array.h +83 -0
  672. data/third_party/upb/upb/collections.h +36 -0
  673. data/third_party/upb/upb/decode.c +161 -65
  674. data/third_party/upb/upb/decode.h +1 -0
  675. data/third_party/upb/upb/decode_fast.c +1 -1
  676. data/third_party/upb/upb/def.c +10 -2
  677. data/third_party/upb/upb/def.h +8 -1
  678. data/third_party/upb/upb/def.hpp +7 -4
  679. data/third_party/upb/upb/encode.c +29 -20
  680. data/third_party/upb/upb/encode.h +16 -6
  681. data/third_party/upb/upb/extension_registry.c +93 -0
  682. data/third_party/upb/upb/extension_registry.h +84 -0
  683. data/third_party/upb/upb/{decode_internal.h → internal/decode.h} +5 -5
  684. data/third_party/upb/upb/internal/table.h +385 -0
  685. data/third_party/upb/upb/{upb_internal.h → internal/upb.h} +3 -3
  686. data/third_party/upb/upb/internal/vsnprintf_compat.h +52 -0
  687. data/third_party/upb/upb/json_decode.c +1512 -0
  688. data/third_party/upb/upb/json_decode.h +47 -0
  689. data/third_party/upb/upb/json_encode.c +7 -3
  690. data/third_party/upb/upb/json_encode.h +6 -3
  691. data/third_party/upb/upb/map.c +108 -0
  692. data/third_party/upb/upb/map.h +117 -0
  693. data/third_party/upb/upb/message_value.h +66 -0
  694. data/third_party/upb/upb/mini_table.c +1147 -0
  695. data/third_party/upb/upb/mini_table.h +189 -0
  696. data/third_party/upb/upb/mini_table.hpp +112 -0
  697. data/third_party/upb/upb/msg.c +2 -62
  698. data/third_party/upb/upb/msg.h +2 -45
  699. data/third_party/upb/upb/msg_internal.h +28 -22
  700. data/third_party/upb/upb/port_def.inc +2 -1
  701. data/third_party/upb/upb/port_undef.inc +1 -0
  702. data/third_party/upb/upb/reflection.c +2 -159
  703. data/third_party/upb/upb/reflection.h +2 -112
  704. data/third_party/upb/upb/status.c +86 -0
  705. data/third_party/upb/upb/status.h +66 -0
  706. data/third_party/upb/upb/table.c +2 -2
  707. data/third_party/upb/upb/table_internal.h +3 -352
  708. data/third_party/upb/upb/text_encode.c +3 -2
  709. data/third_party/upb/upb/upb.c +4 -290
  710. data/third_party/upb/upb/upb.h +7 -196
  711. metadata +89 -38
  712. data/src/core/ext/filters/client_channel/lb_policy_factory.h +0 -50
  713. data/src/core/lib/iomgr/error_internal.h +0 -66
  714. data/src/core/lib/iomgr/executor/mpmcqueue.cc +0 -182
  715. data/src/core/lib/iomgr/executor/mpmcqueue.h +0 -171
  716. data/src/core/lib/iomgr/executor/threadpool.cc +0 -136
  717. data/src/core/lib/iomgr/executor/threadpool.h +0 -150
  718. data/src/core/lib/iomgr/time_averaged_stats.cc +0 -64
  719. data/src/core/lib/iomgr/time_averaged_stats.h +0 -72
  720. data/src/core/lib/promise/detail/switch.h +0 -1455
  721. data/src/ruby/lib/grpc/2.5/grpc_c.so +0 -0
@@ -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_