grpc 1.68.1 → 1.74.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3051) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +379 -370
  3. data/include/grpc/create_channel_from_endpoint.h +54 -0
  4. data/include/grpc/credentials.h +11 -5
  5. data/include/grpc/event_engine/endpoint_config.h +5 -5
  6. data/include/grpc/event_engine/event_engine.h +232 -16
  7. data/include/grpc/event_engine/internal/write_event.h +34 -0
  8. data/include/grpc/event_engine/memory_request.h +3 -3
  9. data/include/grpc/grpc_posix.h +20 -1
  10. data/include/grpc/impl/channel_arg_names.h +83 -55
  11. data/include/grpc/impl/compression_types.h +3 -2
  12. data/include/grpc/impl/slice_type.h +1 -1
  13. data/include/grpc/module.modulemap +1 -0
  14. data/include/grpc/status.h +1 -1
  15. data/include/grpc/support/atm.h +0 -13
  16. data/include/grpc/support/json.h +43 -37
  17. data/include/grpc/support/port_platform.h +8 -5
  18. data/include/grpc/support/workaround_list.h +1 -4
  19. data/src/core/call/call_arena_allocator.cc +27 -0
  20. data/src/core/call/call_arena_allocator.h +91 -0
  21. data/src/core/call/call_destination.h +76 -0
  22. data/src/core/call/call_filters.cc +148 -0
  23. data/src/core/call/call_filters.h +1976 -0
  24. data/src/core/call/call_finalization.h +88 -0
  25. data/src/core/call/call_spine.cc +90 -0
  26. data/src/core/call/call_spine.h +646 -0
  27. data/src/core/call/call_state.cc +39 -0
  28. data/src/core/call/call_state.h +1154 -0
  29. data/src/core/call/client_call.cc +458 -0
  30. data/src/core/call/client_call.h +192 -0
  31. data/src/core/call/custom_metadata.h +30 -0
  32. data/src/core/call/interception_chain.cc +155 -0
  33. data/src/core/call/interception_chain.h +278 -0
  34. data/src/core/call/message.cc +44 -0
  35. data/src/core/call/message.h +70 -0
  36. data/src/core/call/metadata.cc +61 -0
  37. data/src/core/call/metadata.h +218 -0
  38. data/src/core/call/metadata_batch.cc +383 -0
  39. data/src/core/call/metadata_batch.h +1668 -0
  40. data/src/core/call/metadata_compression_traits.h +66 -0
  41. data/src/core/call/metadata_info.cc +73 -0
  42. data/src/core/call/metadata_info.h +85 -0
  43. data/src/core/call/parsed_metadata.cc +35 -0
  44. data/src/core/call/parsed_metadata.h +429 -0
  45. data/src/core/call/request_buffer.cc +224 -0
  46. data/src/core/call/request_buffer.h +192 -0
  47. data/src/core/call/security_context.cc +125 -0
  48. data/src/core/call/security_context.h +114 -0
  49. data/src/core/call/server_call.cc +259 -0
  50. data/src/core/call/server_call.h +169 -0
  51. data/src/core/call/simple_slice_based_metadata.h +53 -0
  52. data/src/core/call/status_util.cc +153 -0
  53. data/src/core/call/status_util.h +80 -0
  54. data/src/core/channelz/channel_trace.cc +217 -111
  55. data/src/core/channelz/channel_trace.h +389 -64
  56. data/src/core/channelz/channelz.cc +480 -178
  57. data/src/core/channelz/channelz.h +429 -93
  58. data/src/core/channelz/channelz_registry.cc +323 -124
  59. data/src/core/channelz/channelz_registry.h +203 -21
  60. data/src/core/channelz/property_list.cc +357 -0
  61. data/src/core/channelz/property_list.h +202 -0
  62. data/src/core/channelz/ztrace_collector.h +316 -0
  63. data/src/core/client_channel/backup_poller.cc +18 -3
  64. data/src/core/client_channel/client_channel.cc +86 -99
  65. data/src/core/client_channel/client_channel.h +6 -5
  66. data/src/core/client_channel/client_channel_args.h +21 -0
  67. data/src/core/client_channel/client_channel_filter.cc +102 -198
  68. data/src/core/client_channel/client_channel_filter.h +12 -12
  69. data/src/core/client_channel/client_channel_internal.h +1 -1
  70. data/src/core/client_channel/client_channel_plugin.cc +3 -2
  71. data/src/core/client_channel/client_channel_service_config.cc +1 -1
  72. data/src/core/client_channel/client_channel_service_config.h +6 -6
  73. data/src/core/client_channel/config_selector.h +10 -4
  74. data/src/core/client_channel/connector.h +0 -3
  75. data/src/core/client_channel/direct_channel.cc +5 -5
  76. data/src/core/client_channel/direct_channel.h +1 -1
  77. data/src/core/client_channel/dynamic_filters.cc +5 -7
  78. data/src/core/client_channel/dynamic_filters.h +1 -2
  79. data/src/core/client_channel/global_subchannel_pool.cc +71 -7
  80. data/src/core/client_channel/global_subchannel_pool.h +37 -4
  81. data/src/core/client_channel/lb_metadata.cc +7 -8
  82. data/src/core/client_channel/lb_metadata.h +4 -4
  83. data/src/core/client_channel/load_balanced_call_destination.cc +6 -6
  84. data/src/core/client_channel/load_balanced_call_destination.h +1 -1
  85. data/src/core/client_channel/retry_filter.cc +22 -28
  86. data/src/core/client_channel/retry_filter.h +11 -8
  87. data/src/core/client_channel/retry_filter_legacy_call_data.cc +58 -56
  88. data/src/core/client_channel/retry_filter_legacy_call_data.h +14 -12
  89. data/src/core/client_channel/retry_interceptor.cc +394 -0
  90. data/src/core/client_channel/retry_interceptor.h +158 -0
  91. data/src/core/client_channel/retry_service_config.cc +3 -3
  92. data/src/core/client_channel/retry_service_config.h +18 -5
  93. data/src/core/client_channel/retry_throttle.cc +69 -73
  94. data/src/core/client_channel/retry_throttle.h +23 -37
  95. data/src/core/client_channel/subchannel.cc +93 -105
  96. data/src/core/client_channel/subchannel.h +15 -14
  97. data/src/core/client_channel/subchannel_pool_interface.cc +5 -6
  98. data/src/core/client_channel/subchannel_pool_interface.h +11 -1
  99. data/src/core/client_channel/subchannel_stream_client.cc +14 -12
  100. data/src/core/client_channel/subchannel_stream_client.h +5 -5
  101. data/src/core/config/config_vars.cc +164 -0
  102. data/src/core/config/config_vars.h +137 -0
  103. data/src/core/config/config_vars_non_generated.cc +49 -0
  104. data/src/core/config/core_configuration.cc +151 -0
  105. data/src/core/config/core_configuration.h +335 -0
  106. data/src/core/config/load_config.cc +78 -0
  107. data/src/core/config/load_config.h +54 -0
  108. data/src/core/credentials/call/call_credentials.h +157 -0
  109. data/src/core/credentials/call/call_creds_registry.h +125 -0
  110. data/src/core/credentials/call/call_creds_registry_init.cc +91 -0
  111. data/src/core/credentials/call/call_creds_util.cc +97 -0
  112. data/src/core/credentials/call/call_creds_util.h +43 -0
  113. data/src/core/credentials/call/composite/composite_call_credentials.cc +115 -0
  114. data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
  115. data/src/core/credentials/call/external/aws_external_account_credentials.cc +528 -0
  116. data/src/core/credentials/call/external/aws_external_account_credentials.h +117 -0
  117. data/src/core/credentials/call/external/aws_request_signer.cc +231 -0
  118. data/src/core/credentials/call/external/aws_request_signer.h +72 -0
  119. data/src/core/credentials/call/external/external_account_credentials.cc +641 -0
  120. data/src/core/credentials/call/external/external_account_credentials.h +207 -0
  121. data/src/core/credentials/call/external/file_external_account_credentials.cc +174 -0
  122. data/src/core/credentials/call/external/file_external_account_credentials.h +80 -0
  123. data/src/core/credentials/call/external/url_external_account_credentials.cc +222 -0
  124. data/src/core/credentials/call/external/url_external_account_credentials.h +73 -0
  125. data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +154 -0
  126. data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  127. data/src/core/credentials/call/iam/iam_credentials.cc +78 -0
  128. data/src/core/credentials/call/iam/iam_credentials.h +66 -0
  129. data/src/core/credentials/call/json_util.cc +69 -0
  130. data/src/core/credentials/call/json_util.h +43 -0
  131. data/src/core/credentials/call/jwt/json_token.cc +318 -0
  132. data/src/core/credentials/call/jwt/json_token.h +78 -0
  133. data/src/core/credentials/call/jwt/jwt_credentials.cc +181 -0
  134. data/src/core/credentials/call/jwt/jwt_credentials.h +106 -0
  135. data/src/core/credentials/call/jwt/jwt_verifier.cc +988 -0
  136. data/src/core/credentials/call/jwt/jwt_verifier.h +122 -0
  137. data/src/core/credentials/call/jwt_token_file/jwt_token_file_call_credentials.cc +86 -0
  138. data/src/core/credentials/call/jwt_token_file/jwt_token_file_call_credentials.h +74 -0
  139. data/src/core/credentials/call/jwt_util.cc +70 -0
  140. data/src/core/credentials/call/jwt_util.h +32 -0
  141. data/src/core/credentials/call/oauth2/oauth2_credentials.cc +656 -0
  142. data/src/core/credentials/call/oauth2/oauth2_credentials.h +197 -0
  143. data/src/core/credentials/call/plugin/plugin_credentials.cc +201 -0
  144. data/src/core/credentials/call/plugin/plugin_credentials.h +123 -0
  145. data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.cc +304 -0
  146. data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.h +181 -0
  147. data/src/core/credentials/transport/alts/alts_credentials.cc +116 -0
  148. data/src/core/credentials/transport/alts/alts_credentials.h +127 -0
  149. data/src/core/credentials/transport/alts/alts_security_connector.cc +304 -0
  150. data/src/core/credentials/transport/alts/alts_security_connector.h +78 -0
  151. data/src/core/credentials/transport/alts/check_gcp_environment.cc +71 -0
  152. data/src/core/credentials/transport/alts/check_gcp_environment.h +57 -0
  153. data/src/core/credentials/transport/alts/check_gcp_environment_linux.cc +67 -0
  154. data/src/core/credentials/transport/alts/check_gcp_environment_no_op.cc +32 -0
  155. data/src/core/credentials/transport/alts/check_gcp_environment_windows.cc +101 -0
  156. data/src/core/credentials/transport/alts/grpc_alts_credentials_client_options.cc +123 -0
  157. data/src/core/credentials/transport/alts/grpc_alts_credentials_options.cc +45 -0
  158. data/src/core/credentials/transport/alts/grpc_alts_credentials_options.h +74 -0
  159. data/src/core/credentials/transport/alts/grpc_alts_credentials_server_options.cc +55 -0
  160. data/src/core/credentials/transport/channel_creds_registry.h +126 -0
  161. data/src/core/credentials/transport/channel_creds_registry_init.cc +245 -0
  162. data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
  163. data/src/core/credentials/transport/composite/composite_channel_credentials.h +89 -0
  164. data/src/core/credentials/transport/fake/fake_credentials.cc +81 -0
  165. data/src/core/credentials/transport/fake/fake_credentials.h +92 -0
  166. data/src/core/credentials/transport/fake/fake_security_connector.cc +314 -0
  167. data/src/core/credentials/transport/fake/fake_security_connector.h +42 -0
  168. data/src/core/credentials/transport/google_default/credentials_generic.cc +38 -0
  169. data/src/core/credentials/transport/google_default/google_default_credentials.cc +510 -0
  170. data/src/core/credentials/transport/google_default/google_default_credentials.h +101 -0
  171. data/src/core/credentials/transport/insecure/insecure_credentials.cc +71 -0
  172. data/src/core/credentials/transport/insecure/insecure_credentials.h +61 -0
  173. data/src/core/credentials/transport/insecure/insecure_security_connector.cc +118 -0
  174. data/src/core/credentials/transport/insecure/insecure_security_connector.h +102 -0
  175. data/src/core/credentials/transport/local/local_credentials.cc +68 -0
  176. data/src/core/credentials/transport/local/local_credentials.h +77 -0
  177. data/src/core/credentials/transport/local/local_security_connector.cc +306 -0
  178. data/src/core/credentials/transport/local/local_security_connector.h +62 -0
  179. data/src/core/credentials/transport/security_connector.cc +123 -0
  180. data/src/core/credentials/transport/security_connector.h +197 -0
  181. data/src/core/credentials/transport/ssl/ssl_credentials.cc +473 -0
  182. data/src/core/credentials/transport/ssl/ssl_credentials.h +144 -0
  183. data/src/core/credentials/transport/ssl/ssl_security_connector.cc +433 -0
  184. data/src/core/credentials/transport/ssl/ssl_security_connector.h +82 -0
  185. data/src/core/credentials/transport/tls/certificate_provider_factory.h +69 -0
  186. data/src/core/credentials/transport/tls/certificate_provider_registry.cc +50 -0
  187. data/src/core/credentials/transport/tls/certificate_provider_registry.h +75 -0
  188. data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +337 -0
  189. data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +215 -0
  190. data/src/core/credentials/transport/tls/grpc_tls_certificate_match.cc +84 -0
  191. data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +490 -0
  192. data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +206 -0
  193. data/src/core/credentials/transport/tls/grpc_tls_certificate_verifier.cc +237 -0
  194. data/src/core/credentials/transport/tls/grpc_tls_certificate_verifier.h +169 -0
  195. data/src/core/credentials/transport/tls/grpc_tls_credentials_options.cc +161 -0
  196. data/src/core/credentials/transport/tls/grpc_tls_credentials_options.h +145 -0
  197. data/src/core/credentials/transport/tls/grpc_tls_crl_provider.cc +257 -0
  198. data/src/core/credentials/transport/tls/grpc_tls_crl_provider.h +129 -0
  199. data/src/core/credentials/transport/tls/load_system_roots.h +35 -0
  200. data/src/core/credentials/transport/tls/load_system_roots_fallback.cc +36 -0
  201. data/src/core/credentials/transport/tls/load_system_roots_supported.cc +166 -0
  202. data/src/core/credentials/transport/tls/load_system_roots_supported.h +44 -0
  203. data/src/core/credentials/transport/tls/load_system_roots_windows.cc +85 -0
  204. data/src/core/credentials/transport/tls/ssl_utils.cc +646 -0
  205. data/src/core/credentials/transport/tls/ssl_utils.h +193 -0
  206. data/src/core/credentials/transport/tls/tls_credentials.cc +170 -0
  207. data/src/core/credentials/transport/tls/tls_credentials.h +75 -0
  208. data/src/core/credentials/transport/tls/tls_security_connector.cc +817 -0
  209. data/src/core/credentials/transport/tls/tls_security_connector.h +285 -0
  210. data/src/core/credentials/transport/tls/tls_utils.cc +127 -0
  211. data/src/core/credentials/transport/tls/tls_utils.h +50 -0
  212. data/src/core/credentials/transport/transport_credentials.cc +158 -0
  213. data/src/core/credentials/transport/transport_credentials.h +182 -0
  214. data/src/core/credentials/transport/xds/xds_credentials.cc +228 -0
  215. data/src/core/credentials/transport/xds/xds_credentials.h +110 -0
  216. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +6 -13
  217. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +7 -7
  218. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +17 -11
  219. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +11 -18
  220. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +6 -6
  221. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -2
  222. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +1 -1
  223. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +11 -18
  224. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +21 -21
  225. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +1 -1
  226. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +2 -2
  227. data/src/core/ext/filters/http/client/http_client_filter.cc +1 -6
  228. data/src/core/ext/filters/http/client/http_client_filter.h +5 -5
  229. data/src/core/ext/filters/http/client_authority_filter.cc +5 -12
  230. data/src/core/ext/filters/http/client_authority_filter.h +6 -6
  231. data/src/core/ext/filters/http/http_filters_plugin.cc +1 -1
  232. data/src/core/ext/filters/http/message_compress/compression_filter.cc +21 -25
  233. data/src/core/ext/filters/http/message_compress/compression_filter.h +56 -18
  234. data/src/core/ext/filters/http/server/http_server_filter.cc +5 -10
  235. data/src/core/ext/filters/http/server/http_server_filter.h +22 -10
  236. data/src/core/ext/filters/message_size/message_size_filter.cc +15 -27
  237. data/src/core/ext/filters/message_size/message_size_filter.h +21 -22
  238. data/src/core/ext/filters/rbac/rbac_filter.cc +3 -10
  239. data/src/core/ext/filters/rbac/rbac_filter.h +6 -6
  240. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +3 -3
  241. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
  242. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +3 -8
  243. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +4 -4
  244. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +1 -1
  245. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +3 -3
  246. data/src/core/ext/transport/chttp2/chttp2_plugin.cc +40 -0
  247. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +134 -153
  248. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +7 -3
  249. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +356 -769
  250. data/src/core/ext/transport/chttp2/server/chttp2_server.h +197 -13
  251. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +4 -3
  252. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +3 -3
  253. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
  254. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +5 -7
  255. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +402 -167
  256. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +7 -13
  257. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +1239 -3514
  258. data/src/core/ext/transport/chttp2/transport/decode_huff.h +1008 -1486
  259. data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
  260. data/src/core/ext/transport/chttp2/transport/flow_control.h +26 -3
  261. data/src/core/ext/transport/chttp2/transport/frame.cc +326 -167
  262. data/src/core/ext/transport/chttp2/transport/frame.h +126 -8
  263. data/src/core/ext/transport/chttp2/transport/frame_data.cc +25 -8
  264. data/src/core/ext/transport/chttp2/transport/frame_data.h +2 -0
  265. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +23 -11
  266. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +5 -3
  267. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -0
  268. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -7
  269. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +3 -1
  270. data/src/core/ext/transport/chttp2/transport/frame_security.cc +80 -0
  271. data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
  272. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +43 -8
  273. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +21 -0
  274. data/src/core/ext/transport/chttp2/transport/header_assembler.h +299 -0
  275. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +12 -5
  276. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +7 -5
  277. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -3
  278. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +3 -3
  279. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +36 -35
  280. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -8
  281. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +11 -5
  282. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +14 -3
  283. data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +1017 -0
  284. data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +593 -0
  285. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +21 -10
  286. data/src/core/ext/transport/chttp2/transport/http2_settings.h +36 -5
  287. data/src/core/ext/transport/chttp2/transport/http2_stats_collector.cc +30 -0
  288. data/src/core/ext/transport/chttp2/transport/http2_stats_collector.h +33 -0
  289. data/src/core/ext/transport/chttp2/transport/http2_status.h +414 -0
  290. data/src/core/ext/transport/chttp2/transport/http2_transport.cc +43 -0
  291. data/src/core/ext/transport/chttp2/transport/http2_transport.h +65 -0
  292. data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +223 -0
  293. data/src/core/ext/transport/chttp2/transport/internal.h +90 -23
  294. data/src/core/ext/transport/chttp2/transport/internal_channel_arg_names.h +24 -0
  295. data/src/core/ext/transport/chttp2/transport/keepalive.cc +105 -0
  296. data/src/core/ext/transport/chttp2/transport/keepalive.h +138 -0
  297. data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
  298. data/src/core/ext/transport/chttp2/transport/message_assembler.h +185 -0
  299. data/src/core/ext/transport/chttp2/transport/parsing.cc +91 -43
  300. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +1 -1
  301. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -2
  302. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +21 -2
  303. data/src/core/ext/transport/chttp2/transport/ping_promise.cc +151 -0
  304. data/src/core/ext/transport/chttp2/transport/ping_promise.h +180 -0
  305. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +17 -20
  306. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +19 -2
  307. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +40 -1
  308. data/src/core/ext/transport/chttp2/transport/transport_common.cc +19 -0
  309. data/src/core/ext/transport/chttp2/transport/transport_common.h +27 -0
  310. data/src/core/ext/transport/chttp2/transport/varint.cc +4 -4
  311. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +1 -1
  312. data/src/core/ext/transport/chttp2/transport/writing.cc +109 -77
  313. data/src/core/ext/transport/inproc/inproc_transport.cc +10 -7
  314. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +23 -14
  315. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +7 -3
  316. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +8 -8
  317. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +3 -3
  318. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +68 -68
  319. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +34 -34
  320. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +3 -3
  321. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +3 -3
  322. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +10 -10
  323. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +3 -3
  324. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +20 -18
  325. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +44 -44
  326. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +3 -3
  327. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +3 -3
  328. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +2 -2
  329. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +3 -3
  330. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +3 -3
  331. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +4 -4
  332. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +3 -3
  333. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +3 -3
  334. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -3
  335. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +9 -9
  336. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -4
  337. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -3
  338. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +3 -3
  339. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -3
  340. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +149 -133
  341. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +76 -75
  342. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +3 -3
  343. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +3 -3
  344. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +2 -2
  345. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -3
  346. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +3 -3
  347. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +3 -3
  348. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +5 -5
  349. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +1 -1
  350. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -3
  351. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +41 -29
  352. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +29 -29
  353. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +3 -3
  354. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +231 -243
  355. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +104 -104
  356. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +3 -3
  357. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +30 -30
  358. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +15 -15
  359. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +3 -3
  360. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +367 -349
  361. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +152 -150
  362. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +3 -3
  363. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +3 -3
  364. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +2 -2
  365. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -3
  366. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +61 -61
  367. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +16 -16
  368. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -3
  369. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +53 -49
  370. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +31 -31
  371. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +3 -3
  372. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +44 -32
  373. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +26 -26
  374. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +3 -3
  375. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +3 -3
  376. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +2 -2
  377. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -3
  378. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +329 -262
  379. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +126 -100
  380. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +5 -3
  381. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +61 -57
  382. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +31 -31
  383. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +3 -3
  384. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +7 -3
  385. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +2 -2
  386. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -3
  387. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +3 -3
  388. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +2 -2
  389. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -3
  390. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +3 -3
  391. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +2 -2
  392. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +3 -3
  393. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +91 -95
  394. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +35 -35
  395. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +3 -3
  396. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +115 -103
  397. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +44 -44
  398. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +3 -3
  399. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +3 -3
  400. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +2 -2
  401. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -3
  402. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +19 -15
  403. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +7 -7
  404. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -3
  405. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +216 -117
  406. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +71 -65
  407. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +3 -3
  408. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +3 -3
  409. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +2 -2
  410. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +3 -3
  411. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +3 -3
  412. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +2 -2
  413. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +3 -3
  414. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h +151 -0
  415. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c +60 -0
  416. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h +32 -0
  417. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +232 -21
  418. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +65 -17
  419. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +9 -3
  420. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +34 -30
  421. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +12 -12
  422. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +3 -3
  423. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +3 -3
  424. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +2 -2
  425. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -3
  426. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +15 -40
  427. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +10 -10
  428. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +3 -3
  429. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +52 -44
  430. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +30 -30
  431. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +3 -3
  432. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +27 -27
  433. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +15 -15
  434. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +3 -3
  435. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +3 -3
  436. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +2 -2
  437. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -3
  438. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +150 -142
  439. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +56 -56
  440. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +3 -3
  441. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +80 -167
  442. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +37 -58
  443. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +3 -5
  444. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +88 -3
  445. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +26 -4
  446. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -3
  447. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +3 -3
  448. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +2 -2
  449. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +3 -3
  450. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +9 -9
  451. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +6 -6
  452. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -3
  453. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +56 -36
  454. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +26 -26
  455. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +3 -3
  456. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +17 -4
  457. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +14 -14
  458. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +3 -3
  459. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +175 -39
  460. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +60 -30
  461. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +5 -3
  462. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +55 -80
  463. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +16 -16
  464. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +3 -3
  465. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +927 -686
  466. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +366 -309
  467. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +7 -3
  468. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +20 -16
  469. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +8 -8
  470. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +3 -3
  471. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +18 -6
  472. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +20 -20
  473. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +3 -3
  474. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +3 -3
  475. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +4 -4
  476. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +3 -3
  477. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +3 -3
  478. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +2 -2
  479. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -3
  480. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +7 -3
  481. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +4 -4
  482. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +3 -3
  483. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +3 -3
  484. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +2 -2
  485. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -3
  486. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +10 -10
  487. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +5 -5
  488. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -3
  489. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +3 -3
  490. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +2 -2
  491. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -3
  492. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +22 -18
  493. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +11 -11
  494. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +3 -3
  495. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +3 -5
  496. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +0 -1
  497. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +3 -4
  498. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +10 -10
  499. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +7 -7
  500. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +3 -3
  501. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +19 -19
  502. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +12 -12
  503. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -3
  504. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +313 -410
  505. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +114 -114
  506. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +3 -3
  507. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +3 -3
  508. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -3
  509. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +11 -3
  510. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +4 -4
  511. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +3 -3
  512. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +68 -64
  513. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +31 -31
  514. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +3 -3
  515. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +22 -22
  516. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +10 -10
  517. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +3 -3
  518. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +28 -28
  519. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +13 -13
  520. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +3 -3
  521. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +37 -37
  522. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +13 -13
  523. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +3 -3
  524. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +10 -6
  525. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +6 -6
  526. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +3 -3
  527. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +338 -294
  528. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +144 -143
  529. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +3 -3
  530. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +3 -3
  531. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +2 -2
  532. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -3
  533. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +63 -3
  534. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +15 -4
  535. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +3 -3
  536. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +10 -6
  537. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +9 -9
  538. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +3 -3
  539. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +3 -3
  540. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -3
  541. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +26 -26
  542. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +10 -10
  543. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -3
  544. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +3 -3
  545. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +2 -2
  546. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -3
  547. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +3 -4
  548. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +2 -3
  549. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +3 -3
  550. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +3 -3
  551. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +3 -3
  552. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +91 -87
  553. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +38 -38
  554. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +3 -3
  555. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +7 -3
  556. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +6 -6
  557. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +3 -3
  558. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +167 -77
  559. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +58 -49
  560. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +3 -3
  561. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +40 -10
  562. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +10 -8
  563. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +3 -3
  564. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +35 -27
  565. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +13 -13
  566. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +3 -3
  567. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +3 -3
  568. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -3
  569. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +367 -164
  570. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +94 -69
  571. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +5 -3
  572. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +9 -9
  573. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +6 -6
  574. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +3 -3
  575. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +69 -64
  576. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +36 -36
  577. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +3 -3
  578. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +10 -10
  579. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +5 -5
  580. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -3
  581. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +7 -3
  582. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +4 -4
  583. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +3 -3
  584. data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb.h +142 -0
  585. data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.c +55 -0
  586. data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.h +32 -0
  587. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +40 -3
  588. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +8 -5
  589. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -3
  590. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +3 -3
  591. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +3 -3
  592. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +13 -9
  593. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +4 -4
  594. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +3 -3
  595. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +3 -3
  596. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +2 -2
  597. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -3
  598. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +7 -3
  599. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +2 -2
  600. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -3
  601. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +7 -3
  602. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +2 -2
  603. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -3
  604. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +14 -10
  605. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +9 -9
  606. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +3 -3
  607. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +3 -3
  608. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +3 -3
  609. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +7 -3
  610. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +4 -4
  611. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +3 -3
  612. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +7 -3
  613. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +2 -2
  614. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +3 -3
  615. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +11 -3
  616. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +6 -6
  617. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +3 -3
  618. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +11 -3
  619. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +4 -4
  620. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +3 -3
  621. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +18 -14
  622. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +8 -8
  623. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +3 -3
  624. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +7 -3
  625. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +2 -2
  626. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +3 -3
  627. data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +3 -3
  628. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +3 -3
  629. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +3 -3
  630. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -3
  631. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +3 -3
  632. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +3 -3
  633. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +3 -3
  634. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +3 -3
  635. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +7 -3
  636. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +2 -2
  637. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +3 -3
  638. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +3 -3
  639. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +3 -3
  640. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +3 -3
  641. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -3
  642. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +3 -3
  643. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +2 -2
  644. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -3
  645. data/src/core/ext/upb-gen/google/api/annotations.upb.h +5 -5
  646. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +1 -1
  647. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +3 -3
  648. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +96 -136
  649. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +46 -46
  650. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +3 -3
  651. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +95 -126
  652. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +51 -51
  653. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +3 -3
  654. data/src/core/ext/upb-gen/google/api/http.upb.h +59 -54
  655. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +26 -26
  656. data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +3 -3
  657. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +3 -3
  658. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +2 -2
  659. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -3
  660. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +4 -3
  661. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -3
  662. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +520 -320
  663. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +267 -217
  664. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +25 -20
  665. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +4 -3
  666. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -3
  667. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +4 -3
  668. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -3
  669. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +17 -36
  670. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +8 -8
  671. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +3 -3
  672. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +4 -3
  673. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -3
  674. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +4 -3
  675. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +3 -3
  676. data/src/core/ext/upb-gen/google/rpc/status.upb.h +3 -3
  677. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +2 -2
  678. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -3
  679. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/channelz.upb.h +571 -0
  680. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/channelz.upb_minitable.c +120 -0
  681. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/channelz.upb_minitable.h +36 -0
  682. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb.h +1272 -0
  683. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.c +312 -0
  684. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.h +50 -0
  685. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb.h +984 -0
  686. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb_minitable.c +226 -0
  687. data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb_minitable.h +44 -0
  688. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +12 -31
  689. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +2 -2
  690. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +3 -3
  691. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +202 -145
  692. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +50 -44
  693. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +3 -3
  694. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +158 -3
  695. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +42 -4
  696. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -3
  697. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +4 -3
  698. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +3 -3
  699. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +17 -9
  700. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +14 -14
  701. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +3 -3
  702. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +25 -43
  703. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +5 -5
  704. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +3 -3
  705. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +73 -111
  706. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +25 -25
  707. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +3 -3
  708. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +13 -13
  709. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +5 -5
  710. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +3 -3
  711. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +5 -5
  712. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +1 -1
  713. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -3
  714. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +3 -3
  715. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +3 -3
  716. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +5 -5
  717. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +1 -1
  718. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -3
  719. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +5 -5
  720. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +1 -1
  721. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -3
  722. data/src/core/ext/upb-gen/validate/validate.upb.h +385 -373
  723. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +133 -133
  724. data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +4 -4
  725. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +13 -13
  726. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +5 -5
  727. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +3 -3
  728. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +5 -5
  729. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +1 -1
  730. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -3
  731. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +3 -3
  732. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +3 -3
  733. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +9 -9
  734. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +3 -3
  735. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +3 -3
  736. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +5 -5
  737. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +1 -1
  738. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -3
  739. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +3 -3
  740. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -3
  741. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +3 -3
  742. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +2 -2
  743. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -3
  744. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +7 -3
  745. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +4 -4
  746. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +3 -3
  747. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +12 -31
  748. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +2 -2
  749. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +3 -3
  750. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +3 -3
  751. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +2 -2
  752. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -3
  753. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +10 -10
  754. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +5 -5
  755. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -3
  756. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +23 -15
  757. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +6 -6
  758. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +3 -3
  759. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +3 -3
  760. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +2 -2
  761. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -3
  762. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +30 -87
  763. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +2 -2
  764. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +3 -3
  765. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +3 -3
  766. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +2 -2
  767. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -3
  768. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +10 -10
  769. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +5 -5
  770. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -3
  771. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +3 -3
  772. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +4 -4
  773. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +3 -3
  774. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +3 -3
  775. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -3
  776. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +6 -6
  777. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +5 -5
  778. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +3 -3
  779. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +45 -49
  780. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +23 -23
  781. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +3 -3
  782. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +3 -3
  783. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +12 -12
  784. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +3 -3
  785. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +7 -3
  786. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +2 -2
  787. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +3 -3
  788. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +7 -3
  789. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +4 -4
  790. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +3 -3
  791. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +7 -3
  792. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +4 -4
  793. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +3 -3
  794. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +4 -3
  795. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +3 -3
  796. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +3 -3
  797. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +2 -2
  798. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -3
  799. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +123 -62
  800. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +8 -4
  801. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +200 -101
  802. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +8 -4
  803. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +152 -77
  804. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +8 -4
  805. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +524 -254
  806. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +8 -4
  807. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +44 -23
  808. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +8 -4
  809. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +66 -34
  810. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +8 -4
  811. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +54 -28
  812. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +8 -4
  813. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +46 -25
  814. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +8 -4
  815. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +47 -25
  816. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +8 -4
  817. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +256 -124
  818. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +8 -4
  819. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +50 -28
  820. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +8 -4
  821. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +55 -28
  822. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +8 -4
  823. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +34 -18
  824. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +8 -4
  825. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +414 -206
  826. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +8 -4
  827. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +831 -413
  828. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +8 -4
  829. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +143 -73
  830. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +8 -4
  831. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1132 -552
  832. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +8 -4
  833. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +63 -34
  834. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +8 -4
  835. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +255 -127
  836. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +8 -4
  837. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +363 -178
  838. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +8 -4
  839. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +227 -114
  840. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +8 -4
  841. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +57 -31
  842. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +8 -4
  843. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +596 -287
  844. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +13 -4
  845. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +271 -137
  846. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +8 -4
  847. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +56 -30
  848. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +8 -4
  849. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +45 -25
  850. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +8 -4
  851. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +59 -31
  852. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +8 -4
  853. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +438 -217
  854. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +8 -4
  855. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +441 -221
  856. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +8 -4
  857. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +55 -30
  858. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +8 -4
  859. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +57 -31
  860. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +8 -4
  861. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +619 -294
  862. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +8 -4
  863. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +70 -36
  864. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +8 -4
  865. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +62 -33
  866. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +8 -4
  867. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +68 -0
  868. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +37 -0
  869. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +97 -39
  870. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +23 -4
  871. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +97 -51
  872. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +8 -4
  873. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +51 -27
  874. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +8 -4
  875. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +147 -76
  876. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +8 -4
  877. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +230 -116
  878. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +8 -4
  879. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +277 -138
  880. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +8 -4
  881. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +48 -26
  882. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +8 -4
  883. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +388 -197
  884. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +8 -4
  885. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +304 -160
  886. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +8 -9
  887. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +175 -82
  888. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +8 -4
  889. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +90 -47
  890. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +8 -4
  891. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +98 -51
  892. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +8 -4
  893. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +196 -99
  894. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +8 -4
  895. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +237 -117
  896. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +8 -4
  897. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +418 -193
  898. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +13 -4
  899. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +194 -99
  900. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +8 -4
  901. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +2004 -955
  902. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +18 -4
  903. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +101 -53
  904. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +8 -4
  905. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +352 -176
  906. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +8 -4
  907. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +79 -42
  908. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +8 -4
  909. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +67 -37
  910. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +8 -4
  911. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +63 -34
  912. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +8 -4
  913. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +88 -47
  914. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +8 -4
  915. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +80 -43
  916. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +8 -4
  917. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +53 -29
  918. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +8 -4
  919. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +86 -46
  920. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +8 -4
  921. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +56 -36
  922. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +8 -4
  923. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +91 -49
  924. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +8 -4
  925. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +105 -55
  926. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +8 -4
  927. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +775 -379
  928. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +8 -4
  929. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +52 -28
  930. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +8 -4
  931. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +134 -68
  932. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +8 -4
  933. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +189 -96
  934. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +8 -4
  935. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +116 -61
  936. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +8 -4
  937. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +112 -58
  938. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +8 -4
  939. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +160 -82
  940. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +8 -4
  941. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +75 -39
  942. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +8 -4
  943. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1161 -567
  944. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +8 -4
  945. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +52 -28
  946. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +8 -4
  947. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +56 -33
  948. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +8 -4
  949. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -26
  950. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +8 -4
  951. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +390 -194
  952. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +8 -4
  953. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +126 -65
  954. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +8 -4
  955. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +498 -235
  956. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +8 -4
  957. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +74 -36
  958. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +8 -4
  959. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +221 -110
  960. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +8 -4
  961. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +68 -36
  962. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +8 -4
  963. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +378 -174
  964. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +13 -4
  965. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +100 -52
  966. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +8 -4
  967. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +257 -128
  968. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +8 -4
  969. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +44 -24
  970. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +8 -4
  971. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +68 -35
  972. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +8 -4
  973. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +59 -0
  974. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +37 -0
  975. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +61 -27
  976. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +8 -4
  977. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +65 -34
  978. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +8 -4
  979. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +72 -38
  980. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +8 -4
  981. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +57 -31
  982. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +8 -4
  983. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +52 -29
  984. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +8 -4
  985. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +51 -28
  986. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +8 -4
  987. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +89 -47
  988. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +8 -4
  989. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +37 -20
  990. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +8 -4
  991. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +89 -47
  992. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +8 -4
  993. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +67 -35
  994. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +8 -4
  995. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +112 -58
  996. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +8 -4
  997. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +110 -56
  998. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +8 -4
  999. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +123 -62
  1000. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +8 -4
  1001. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +59 -31
  1002. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +8 -4
  1003. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +30 -16
  1004. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +8 -4
  1005. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +143 -72
  1006. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +8 -4
  1007. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +61 -32
  1008. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +8 -4
  1009. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +51 -27
  1010. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +8 -4
  1011. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +85 -45
  1012. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +8 -4
  1013. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +35 -19
  1014. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +8 -4
  1015. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +44 -23
  1016. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +8 -4
  1017. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +61 -33
  1018. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +8 -4
  1019. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +35 -19
  1020. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +8 -4
  1021. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +272 -133
  1022. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +8 -4
  1023. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +315 -154
  1024. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +8 -4
  1025. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +64 -33
  1026. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +8 -4
  1027. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +35 -19
  1028. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +8 -4
  1029. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +26 -15
  1030. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +8 -4
  1031. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +1106 -496
  1032. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +13 -4
  1033. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +28 -16
  1034. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +8 -4
  1035. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +23 -13
  1036. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +8 -4
  1037. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +69 -35
  1038. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +8 -4
  1039. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +29 -16
  1040. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +8 -4
  1041. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +51 -26
  1042. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +8 -4
  1043. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +32 -17
  1044. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +8 -4
  1045. data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.c +175 -0
  1046. data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.h +82 -0
  1047. data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/property_list.upbdefs.c +135 -0
  1048. data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/property_list.upbdefs.h +67 -0
  1049. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +161 -79
  1050. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +8 -4
  1051. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +84 -42
  1052. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +8 -4
  1053. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +48 -26
  1054. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +8 -4
  1055. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +26 -14
  1056. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +8 -4
  1057. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +50 -26
  1058. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +8 -4
  1059. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +36 -19
  1060. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +8 -4
  1061. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +538 -261
  1062. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +8 -4
  1063. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +86 -43
  1064. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +8 -4
  1065. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +49 -26
  1066. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +8 -4
  1067. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +27 -15
  1068. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +8 -4
  1069. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +87 -44
  1070. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +8 -4
  1071. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +37 -20
  1072. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +8 -4
  1073. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +30 -17
  1074. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +8 -4
  1075. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +41 -23
  1076. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +8 -4
  1077. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +62 -33
  1078. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +8 -4
  1079. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +36 -19
  1080. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +8 -4
  1081. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +36 -20
  1082. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +8 -4
  1083. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +42 -23
  1084. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +8 -4
  1085. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +76 -39
  1086. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +8 -4
  1087. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +45 -24
  1088. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +8 -4
  1089. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +41 -23
  1090. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +8 -4
  1091. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +53 -29
  1092. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +8 -4
  1093. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +29 -16
  1094. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +8 -4
  1095. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +58 -32
  1096. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +8 -4
  1097. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +207 -103
  1098. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +8 -4
  1099. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +95 -49
  1100. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +8 -4
  1101. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +38 -20
  1102. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +8 -4
  1103. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +60 -31
  1104. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +8 -4
  1105. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +67 -36
  1106. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +8 -4
  1107. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +31 -17
  1108. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +8 -4
  1109. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +31 -17
  1110. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +8 -4
  1111. data/src/core/filter/auth/auth_filters.h +208 -0
  1112. data/src/core/filter/auth/client_auth_filter.cc +192 -0
  1113. data/src/core/filter/auth/server_auth_filter.cc +208 -0
  1114. data/src/core/filter/blackboard.cc +2 -2
  1115. data/src/core/filter/filter_args.h +98 -0
  1116. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +1 -1
  1117. data/src/core/handshaker/handshaker.cc +23 -25
  1118. data/src/core/handshaker/handshaker.h +3 -0
  1119. data/src/core/handshaker/http_connect/http_connect_handshaker.cc +13 -7
  1120. data/src/core/handshaker/http_connect/http_connect_handshaker.h +1 -1
  1121. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +36 -52
  1122. data/src/core/handshaker/http_connect/http_proxy_mapper.h +5 -5
  1123. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +5 -5
  1124. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +6 -6
  1125. data/src/core/handshaker/proxy_mapper.h +4 -4
  1126. data/src/core/handshaker/proxy_mapper_registry.cc +5 -6
  1127. data/src/core/handshaker/proxy_mapper_registry.h +4 -4
  1128. data/src/core/handshaker/security/legacy_secure_endpoint.cc +597 -0
  1129. data/src/core/handshaker/security/secure_endpoint.cc +813 -311
  1130. data/src/core/handshaker/security/secure_endpoint.h +17 -0
  1131. data/src/core/handshaker/security/security_handshaker.cc +12 -11
  1132. data/src/core/handshaker/security/security_handshaker.h +2 -2
  1133. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +14 -6
  1134. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +1 -1
  1135. data/src/core/lib/address_utils/sockaddr_utils.cc +5 -5
  1136. data/src/core/lib/channel/channel_args.cc +28 -13
  1137. data/src/core/lib/channel/channel_args.h +65 -39
  1138. data/src/core/lib/channel/channel_args_preconditioning.h +1 -1
  1139. data/src/core/lib/channel/channel_stack.cc +32 -4
  1140. data/src/core/lib/channel/channel_stack.h +16 -6
  1141. data/src/core/lib/channel/channel_stack_builder_impl.cc +2 -2
  1142. data/src/core/lib/channel/channel_stack_builder_impl.h +2 -7
  1143. data/src/core/lib/channel/connected_channel.cc +4 -4
  1144. data/src/core/lib/channel/promise_based_filter.cc +10 -10
  1145. data/src/core/lib/channel/promise_based_filter.h +749 -416
  1146. data/src/core/lib/compression/compression.cc +3 -2
  1147. data/src/core/lib/compression/compression_internal.cc +9 -9
  1148. data/src/core/lib/compression/compression_internal.h +3 -3
  1149. data/src/core/lib/debug/trace.cc +1 -1
  1150. data/src/core/lib/debug/trace_flags.cc +7 -6
  1151. data/src/core/lib/debug/trace_flags.h +3 -3
  1152. data/src/core/lib/debug/trace_impl.h +0 -1
  1153. data/src/core/lib/event_engine/ares_resolver.cc +175 -60
  1154. data/src/core/lib/event_engine/ares_resolver.h +54 -12
  1155. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +10 -6
  1156. data/src/core/lib/event_engine/cf_engine/cf_engine.h +3 -8
  1157. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +10 -11
  1158. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +12 -10
  1159. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +2 -4
  1160. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +9 -10
  1161. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +2 -4
  1162. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +5 -7
  1163. data/src/core/lib/event_engine/channel_args_endpoint_config.h +6 -7
  1164. data/src/core/lib/event_engine/common_closures.h +2 -4
  1165. data/src/core/lib/event_engine/default_event_engine.cc +63 -34
  1166. data/src/core/lib/event_engine/default_event_engine.h +25 -34
  1167. data/src/core/lib/event_engine/default_event_engine_factory.cc +12 -18
  1168. data/src/core/lib/event_engine/default_event_engine_factory.h +3 -5
  1169. data/src/core/lib/event_engine/endpoint_channel_arg_wrapper.cc +40 -0
  1170. data/src/core/lib/event_engine/endpoint_channel_arg_wrapper.h +60 -0
  1171. data/src/core/lib/event_engine/event_engine.cc +9 -4
  1172. data/src/core/lib/event_engine/extensions/blocking_dns.h +46 -0
  1173. data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -4
  1174. data/src/core/lib/event_engine/extensions/channelz.h +66 -0
  1175. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +2 -4
  1176. data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
  1177. data/src/core/lib/event_engine/extensions/supports_fd.h +2 -4
  1178. data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
  1179. data/src/core/lib/event_engine/extensions/tcp_trace.h +4 -6
  1180. data/src/core/lib/event_engine/grpc_polled_fd.h +7 -4
  1181. data/src/core/lib/event_engine/handle_containers.h +2 -4
  1182. data/src/core/lib/event_engine/memory_allocator_factory.h +2 -4
  1183. data/src/core/lib/event_engine/nameser.h +1 -1
  1184. data/src/core/lib/event_engine/poller.h +2 -4
  1185. data/src/core/lib/event_engine/posix.h +2 -4
  1186. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +134 -212
  1187. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +13 -19
  1188. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +83 -172
  1189. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +9 -13
  1190. data/src/core/lib/event_engine/posix_engine/event_poller.h +20 -19
  1191. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -23
  1192. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -4
  1193. data/src/core/lib/event_engine/posix_engine/file_descriptor_collection.cc +124 -0
  1194. data/src/core/lib/event_engine/posix_engine/file_descriptor_collection.h +243 -0
  1195. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +31 -23
  1196. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +8 -6
  1197. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +8 -5
  1198. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +2 -4
  1199. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -4
  1200. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +6 -11
  1201. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +5 -4
  1202. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +170 -110
  1203. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +31 -37
  1204. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +344 -104
  1205. data/src/core/lib/event_engine/posix_engine/posix_engine.h +74 -35
  1206. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +2 -4
  1207. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +49 -43
  1208. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +8 -8
  1209. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +60 -146
  1210. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +12 -9
  1211. data/src/core/lib/event_engine/posix_engine/posix_interface.h +211 -0
  1212. data/src/core/lib/event_engine/posix_engine/posix_interface_posix.cc +1083 -0
  1213. data/src/core/lib/event_engine/posix_engine/posix_interface_windows.cc +281 -0
  1214. data/src/core/lib/event_engine/posix_engine/posix_write_event_sink.cc +154 -0
  1215. data/src/core/lib/event_engine/posix_engine/posix_write_event_sink.h +174 -0
  1216. data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
  1217. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +8 -736
  1218. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +12 -174
  1219. data/src/core/lib/event_engine/posix_engine/timer.cc +4 -6
  1220. data/src/core/lib/event_engine/posix_engine/timer.h +4 -6
  1221. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +3 -5
  1222. data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -4
  1223. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +38 -29
  1224. data/src/core/lib/event_engine/posix_engine/timer_manager.h +17 -17
  1225. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +119 -157
  1226. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +30 -99
  1227. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +28 -29
  1228. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +8 -6
  1229. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +38 -58
  1230. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +8 -6
  1231. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +9 -10
  1232. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +14 -10
  1233. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +5 -5
  1234. data/src/core/lib/event_engine/query_extensions.h +12 -25
  1235. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -4
  1236. data/src/core/lib/event_engine/resolved_address.cc +2 -4
  1237. data/src/core/lib/event_engine/resolved_address_internal.h +2 -4
  1238. data/src/core/lib/event_engine/shim.cc +18 -18
  1239. data/src/core/lib/event_engine/shim.h +16 -4
  1240. data/src/core/lib/event_engine/slice.cc +2 -4
  1241. data/src/core/lib/event_engine/slice_buffer.cc +2 -4
  1242. data/src/core/lib/event_engine/tcp_socket_utils.cc +16 -23
  1243. data/src/core/lib/event_engine/tcp_socket_utils.h +5 -7
  1244. data/src/core/lib/event_engine/thread_local.cc +2 -4
  1245. data/src/core/lib/event_engine/thread_local.h +2 -4
  1246. data/src/core/lib/event_engine/thread_pool/thread_count.cc +2 -4
  1247. data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -18
  1248. data/src/core/lib/event_engine/thread_pool/thread_pool.h +9 -7
  1249. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -21
  1250. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +23 -15
  1251. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +7 -7
  1252. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +2 -4
  1253. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +2 -4
  1254. data/src/core/lib/event_engine/time_util.cc +2 -4
  1255. data/src/core/lib/event_engine/time_util.h +2 -4
  1256. data/src/core/lib/event_engine/utils.cc +36 -4
  1257. data/src/core/lib/event_engine/utils.h +5 -4
  1258. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +7 -5
  1259. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +6 -4
  1260. data/src/core/lib/event_engine/windows/iocp.cc +2 -4
  1261. data/src/core/lib/event_engine/windows/iocp.h +2 -4
  1262. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +2 -4
  1263. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +2 -4
  1264. data/src/core/lib/event_engine/windows/win_socket.cc +13 -4
  1265. data/src/core/lib/event_engine/windows/win_socket.h +5 -4
  1266. data/src/core/lib/event_engine/windows/windows_endpoint.cc +32 -25
  1267. data/src/core/lib/event_engine/windows/windows_endpoint.h +9 -8
  1268. data/src/core/lib/event_engine/windows/windows_engine.cc +44 -4
  1269. data/src/core/lib/event_engine/windows/windows_engine.h +10 -8
  1270. data/src/core/lib/event_engine/windows/windows_listener.cc +21 -12
  1271. data/src/core/lib/event_engine/windows/windows_listener.h +11 -8
  1272. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -4
  1273. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -4
  1274. data/src/core/lib/event_engine/work_queue/work_queue.h +2 -4
  1275. data/src/core/lib/experiments/config.cc +1 -1
  1276. data/src/core/lib/experiments/experiments.cc +515 -187
  1277. data/src/core/lib/experiments/experiments.h +190 -91
  1278. data/src/core/lib/iomgr/buffer_list.cc +1 -1
  1279. data/src/core/lib/iomgr/buffer_list.h +22 -21
  1280. data/src/core/lib/iomgr/call_combiner.h +1 -1
  1281. data/src/core/lib/iomgr/cfstream_handle.cc +0 -2
  1282. data/src/core/lib/iomgr/closure.h +1 -2
  1283. data/src/core/lib/iomgr/combiner.cc +3 -3
  1284. data/src/core/lib/iomgr/combiner.h +1 -1
  1285. data/src/core/lib/iomgr/endpoint.cc +4 -3
  1286. data/src/core/lib/iomgr/endpoint.h +7 -4
  1287. data/src/core/lib/iomgr/endpoint_cfstream.cc +3 -2
  1288. data/src/core/lib/iomgr/endpoint_pair_posix.cc +43 -16
  1289. data/src/core/lib/iomgr/endpoint_pair_windows.cc +43 -8
  1290. data/src/core/lib/iomgr/error.cc +28 -44
  1291. data/src/core/lib/iomgr/ev_apple.cc +1 -1
  1292. data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -3
  1293. data/src/core/lib/iomgr/ev_poll_posix.cc +22 -0
  1294. data/src/core/lib/iomgr/ev_posix.cc +1 -1
  1295. data/src/core/lib/iomgr/event_engine_shims/closure.cc +0 -1
  1296. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +12 -13
  1297. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +0 -1
  1298. data/src/core/lib/iomgr/exec_ctx.cc +1 -7
  1299. data/src/core/lib/iomgr/exec_ctx.h +1 -132
  1300. data/src/core/lib/iomgr/fork_posix.cc +0 -7
  1301. data/src/core/lib/iomgr/iomgr.cc +1 -4
  1302. data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
  1303. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +3 -0
  1304. data/src/core/lib/iomgr/iomgr_windows.cc +3 -1
  1305. data/src/core/lib/iomgr/nameser.h +1 -1
  1306. data/src/core/lib/iomgr/polling_entity.cc +2 -7
  1307. data/src/core/lib/iomgr/resolve_address_posix.cc +37 -49
  1308. data/src/core/lib/iomgr/resolve_address_posix.h +15 -0
  1309. data/src/core/lib/iomgr/resolve_address_windows.cc +22 -47
  1310. data/src/core/lib/iomgr/resolve_address_windows.h +15 -2
  1311. data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -0
  1312. data/src/core/lib/iomgr/socket_utils_posix.cc +23 -11
  1313. data/src/core/lib/iomgr/socket_utils_posix.h +12 -2
  1314. data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -9
  1315. data/src/core/lib/iomgr/tcp_client_posix.cc +27 -23
  1316. data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
  1317. data/src/core/lib/iomgr/tcp_client_windows.cc +3 -3
  1318. data/src/core/lib/iomgr/tcp_posix.cc +84 -48
  1319. data/src/core/lib/iomgr/tcp_posix.h +10 -2
  1320. data/src/core/lib/iomgr/tcp_server_posix.cc +10 -4
  1321. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -4
  1322. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +2 -2
  1323. data/src/core/lib/iomgr/tcp_server_windows.cc +44 -22
  1324. data/src/core/lib/iomgr/tcp_windows.cc +3 -2
  1325. data/src/core/lib/iomgr/timer_generic.cc +1 -1
  1326. data/src/core/lib/iomgr/timer_heap.cc +1 -1
  1327. data/src/core/lib/iomgr/timer_manager.cc +1 -9
  1328. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +11 -3
  1329. data/src/core/lib/promise/activity.cc +2 -0
  1330. data/src/core/lib/promise/activity.h +35 -13
  1331. data/src/core/lib/promise/all_ok.h +68 -0
  1332. data/src/core/lib/promise/arena_promise.h +23 -7
  1333. data/src/core/lib/promise/detail/basic_seq.h +32 -18
  1334. data/src/core/lib/promise/detail/join_state.h +16 -68
  1335. data/src/core/lib/promise/detail/promise_factory.h +96 -26
  1336. data/src/core/lib/promise/detail/promise_like.h +163 -12
  1337. data/src/core/lib/promise/detail/promise_variant.h +50 -0
  1338. data/src/core/lib/promise/detail/seq_state.h +1162 -495
  1339. data/src/core/lib/promise/for_each.h +14 -5
  1340. data/src/core/lib/promise/if.h +68 -20
  1341. data/src/core/lib/promise/inter_activity_latch.h +147 -0
  1342. data/src/core/lib/promise/inter_activity_mutex.h +547 -0
  1343. data/src/core/lib/promise/interceptor_list.h +9 -9
  1344. data/src/core/lib/promise/latch.h +14 -6
  1345. data/src/core/lib/promise/loop.h +131 -17
  1346. data/src/core/lib/promise/map.h +269 -18
  1347. data/src/core/lib/promise/match_promise.h +103 -0
  1348. data/src/core/lib/promise/mpsc.cc +425 -0
  1349. data/src/core/lib/promise/mpsc.h +490 -0
  1350. data/src/core/lib/promise/party.cc +144 -68
  1351. data/src/core/lib/promise/party.h +340 -54
  1352. data/src/core/lib/promise/pipe.h +12 -12
  1353. data/src/core/lib/promise/poll.h +34 -16
  1354. data/src/core/lib/promise/prioritized_race.h +16 -22
  1355. data/src/core/lib/promise/promise.h +6 -5
  1356. data/src/core/lib/promise/race.h +35 -12
  1357. data/src/core/lib/promise/seq.h +52 -35
  1358. data/src/core/lib/promise/sleep.cc +9 -6
  1359. data/src/core/lib/promise/sleep.h +15 -1
  1360. data/src/core/lib/promise/status_flag.h +54 -12
  1361. data/src/core/lib/promise/try_join.h +119 -5
  1362. data/src/core/lib/promise/try_seq.h +79 -49
  1363. data/src/core/lib/promise/wait_set.cc +28 -0
  1364. data/src/core/lib/promise/wait_set.h +86 -0
  1365. data/src/core/lib/resource_quota/api.h +1 -1
  1366. data/src/core/lib/resource_quota/arena.h +106 -0
  1367. data/src/core/lib/resource_quota/connection_quota.h +4 -0
  1368. data/src/core/lib/resource_quota/memory_quota.cc +78 -54
  1369. data/src/core/lib/resource_quota/memory_quota.h +10 -8
  1370. data/src/core/lib/resource_quota/periodic_update.cc +1 -1
  1371. data/src/core/lib/security/authorization/evaluate_args.cc +4 -4
  1372. data/src/core/lib/security/authorization/evaluate_args.h +4 -4
  1373. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -8
  1374. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +7 -7
  1375. data/src/core/lib/security/authorization/matchers.h +3 -3
  1376. data/src/core/lib/security/authorization/rbac_policy.cc +1 -1
  1377. data/src/core/lib/security/authorization/rbac_policy.h +3 -3
  1378. data/src/core/lib/slice/slice.h +11 -0
  1379. data/src/core/lib/slice/slice_buffer.cc +3 -2
  1380. data/src/core/lib/slice/slice_buffer.h +8 -2
  1381. data/src/core/lib/surface/call.cc +24 -22
  1382. data/src/core/lib/surface/call.h +4 -3
  1383. data/src/core/lib/surface/call_utils.cc +5 -5
  1384. data/src/core/lib/surface/call_utils.h +17 -7
  1385. data/src/core/lib/surface/channel.cc +6 -14
  1386. data/src/core/lib/surface/channel.h +5 -5
  1387. data/src/core/lib/surface/channel_create.cc +140 -5
  1388. data/src/core/lib/surface/channel_create.h +4 -0
  1389. data/src/core/lib/surface/channel_init.cc +165 -48
  1390. data/src/core/lib/surface/channel_init.h +67 -4
  1391. data/src/core/lib/surface/completion_queue.cc +88 -67
  1392. data/src/core/lib/surface/completion_queue.h +1 -1
  1393. data/src/core/lib/surface/connection_context.cc +77 -0
  1394. data/src/core/lib/surface/connection_context.h +156 -0
  1395. data/src/core/lib/surface/event_string.cc +7 -1
  1396. data/src/core/lib/surface/filter_stack_call.cc +60 -40
  1397. data/src/core/lib/surface/filter_stack_call.h +3 -3
  1398. data/src/core/lib/surface/init.cc +12 -14
  1399. data/src/core/lib/surface/init_internally.h +13 -2
  1400. data/src/core/lib/surface/lame_client.cc +2 -2
  1401. data/src/core/lib/surface/legacy_channel.cc +41 -37
  1402. data/src/core/lib/surface/legacy_channel.h +6 -4
  1403. data/src/core/lib/surface/version.cc +2 -2
  1404. data/src/core/lib/transport/bdp_estimator.cc +1 -1
  1405. data/src/core/lib/transport/call_final_info.h +1 -1
  1406. data/src/core/lib/transport/connectivity_state.cc +8 -9
  1407. data/src/core/lib/transport/connectivity_state.h +2 -4
  1408. data/src/core/lib/transport/error_utils.cc +65 -11
  1409. data/src/core/lib/transport/error_utils.h +2 -2
  1410. data/src/core/lib/transport/promise_endpoint.cc +110 -0
  1411. data/src/core/lib/transport/promise_endpoint.h +307 -0
  1412. data/src/core/lib/transport/status_conversion.cc +11 -36
  1413. data/src/core/lib/transport/status_conversion.h +5 -4
  1414. data/src/core/lib/transport/timeout_encoding.cc +19 -19
  1415. data/src/core/lib/transport/timeout_encoding.h +3 -2
  1416. data/src/core/lib/transport/transport.cc +2 -3
  1417. data/src/core/lib/transport/transport.h +20 -12
  1418. data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
  1419. data/src/core/lib/transport/transport_op_string.cc +1 -1
  1420. data/src/core/load_balancing/backend_metric_parser.cc +12 -25
  1421. data/src/core/load_balancing/child_policy_handler.cc +3 -5
  1422. data/src/core/load_balancing/delegating_helper.h +3 -4
  1423. data/src/core/load_balancing/endpoint_list.cc +12 -2
  1424. data/src/core/load_balancing/endpoint_list.h +20 -13
  1425. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +2 -7
  1426. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +4 -4
  1427. data/src/core/load_balancing/grpclb/grpclb.cc +25 -43
  1428. data/src/core/load_balancing/health_check_client.cc +19 -57
  1429. data/src/core/load_balancing/health_check_client_internal.h +7 -7
  1430. data/src/core/load_balancing/lb_policy.cc +4 -6
  1431. data/src/core/load_balancing/lb_policy.h +6 -16
  1432. data/src/core/load_balancing/lb_policy_registry.cc +10 -8
  1433. data/src/core/load_balancing/oob_backend_metric.cc +3 -9
  1434. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +63 -73
  1435. data/src/core/load_balancing/outlier_detection/outlier_detection.h +4 -3
  1436. data/src/core/load_balancing/pick_first/pick_first.cc +74 -990
  1437. data/src/core/load_balancing/priority/priority.cc +9 -14
  1438. data/src/core/load_balancing/ring_hash/ring_hash.cc +211 -159
  1439. data/src/core/load_balancing/ring_hash/ring_hash.h +4 -11
  1440. data/src/core/load_balancing/rls/rls.cc +139 -233
  1441. data/src/core/load_balancing/rls/rls.h +97 -1
  1442. data/src/core/load_balancing/round_robin/round_robin.cc +17 -23
  1443. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +6 -6
  1444. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +3 -3
  1445. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +25 -34
  1446. data/src/core/load_balancing/weighted_target/weighted_target.cc +12 -26
  1447. data/src/core/load_balancing/xds/cds.cc +25 -27
  1448. data/src/core/load_balancing/xds/xds_cluster_impl.cc +17 -20
  1449. data/src/core/load_balancing/xds/xds_cluster_manager.cc +11 -19
  1450. data/src/core/load_balancing/xds/xds_override_host.cc +99 -125
  1451. data/src/core/load_balancing/xds/xds_wrr_locality.cc +11 -13
  1452. data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -1
  1453. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -3
  1454. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +14 -16
  1455. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -1
  1456. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +1 -1
  1457. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -0
  1458. data/src/core/resolver/dns/dns_resolver_plugin.cc +1 -1
  1459. data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
  1460. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +10 -15
  1461. data/src/core/resolver/dns/native/dns_resolver.cc +2 -2
  1462. data/src/core/resolver/dns/native/dns_resolver.h +1 -1
  1463. data/src/core/resolver/fake/fake_resolver.cc +11 -12
  1464. data/src/core/resolver/fake/fake_resolver.h +2 -2
  1465. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +11 -14
  1466. data/src/core/resolver/polling_resolver.cc +2 -5
  1467. data/src/core/resolver/polling_resolver.h +3 -3
  1468. data/src/core/resolver/resolver_registry.cc +4 -3
  1469. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +3 -2
  1470. data/src/core/resolver/xds/xds_config.cc +12 -9
  1471. data/src/core/resolver/xds/xds_config.h +11 -6
  1472. data/src/core/resolver/xds/xds_dependency_manager.cc +220 -193
  1473. data/src/core/resolver/xds/xds_dependency_manager.h +30 -19
  1474. data/src/core/resolver/xds/xds_resolver.cc +116 -136
  1475. data/src/core/server/add_port.cc +87 -0
  1476. data/src/core/server/server.cc +459 -131
  1477. data/src/core/server/server.h +237 -72
  1478. data/src/core/server/server_call_tracer_filter.cc +5 -9
  1479. data/src/core/server/server_call_tracer_filter.h +1 -1
  1480. data/src/core/server/server_config_selector.h +1 -1
  1481. data/src/core/server/server_config_selector_filter.cc +9 -16
  1482. data/src/core/server/xds_channel_stack_modifier.cc +1 -1
  1483. data/src/core/server/xds_server_config_fetcher.cc +159 -187
  1484. data/src/core/service_config/service_config.h +1 -1
  1485. data/src/core/service_config/service_config_channel_arg_filter.cc +9 -21
  1486. data/src/core/service_config/service_config_impl.cc +4 -4
  1487. data/src/core/service_config/service_config_impl.h +1 -1
  1488. data/src/core/telemetry/call_tracer.cc +12 -14
  1489. data/src/core/telemetry/call_tracer.h +10 -9
  1490. data/src/core/telemetry/context_list_entry.cc +38 -0
  1491. data/src/core/telemetry/context_list_entry.h +112 -0
  1492. data/src/core/telemetry/default_tcp_tracer.cc +26 -0
  1493. data/src/core/telemetry/default_tcp_tracer.h +44 -0
  1494. data/src/core/telemetry/histogram_view.cc +3 -3
  1495. data/src/core/telemetry/metrics.cc +44 -23
  1496. data/src/core/telemetry/metrics.h +24 -14
  1497. data/src/core/telemetry/stats.h +0 -5
  1498. data/src/core/telemetry/stats_data.cc +564 -329
  1499. data/src/core/telemetry/stats_data.h +474 -180
  1500. data/src/core/telemetry/tcp_tracer.cc +38 -0
  1501. data/src/core/telemetry/tcp_tracer.h +104 -100
  1502. data/src/core/transport/auth_context.cc +235 -0
  1503. data/src/core/transport/auth_context.h +139 -0
  1504. data/src/core/transport/endpoint_transport.h +90 -0
  1505. data/src/core/transport/endpoint_transport_client_channel_factory.cc +61 -0
  1506. data/src/core/transport/endpoint_transport_client_channel_factory.h +57 -0
  1507. data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -1
  1508. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -1
  1509. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
  1510. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +36 -4
  1511. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +3 -1
  1512. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +74 -20
  1513. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -3
  1514. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
  1515. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -4
  1516. data/src/core/tsi/fake_transport_security.cc +22 -0
  1517. data/src/core/tsi/ssl_transport_security.cc +203 -76
  1518. data/src/core/tsi/ssl_transport_security.h +8 -3
  1519. data/src/core/tsi/ssl_transport_security_utils.h +1 -1
  1520. data/src/core/tsi/transport_security.h +3 -0
  1521. data/src/core/tsi/transport_security_grpc.cc +8 -0
  1522. data/src/core/tsi/transport_security_grpc.h +22 -3
  1523. data/src/core/tsi/transport_security_interface.h +32 -27
  1524. data/src/core/util/backoff.cc +3 -3
  1525. data/src/core/util/backoff.h +1 -1
  1526. data/src/core/util/check_class_size.h +48 -0
  1527. data/src/core/util/down_cast.h +1 -1
  1528. data/src/core/util/dual_ref_counted.h +48 -0
  1529. data/src/core/util/dump_args.h +1 -9
  1530. data/src/core/util/env.h +3 -4
  1531. data/src/core/util/examine_stack.cc +2 -2
  1532. data/src/core/util/examine_stack.h +3 -4
  1533. data/src/core/util/fork.cc +1 -1
  1534. data/src/core/util/fork.h +2 -2
  1535. data/src/core/util/function_signature.h +80 -0
  1536. data/src/core/util/gcp_metadata_query.cc +4 -3
  1537. data/src/core/util/gpr_time.cc +4 -6
  1538. data/src/core/util/http_client/httpcli.cc +97 -36
  1539. data/src/core/util/http_client/httpcli.h +22 -9
  1540. data/src/core/util/http_client/httpcli_security_connector.cc +7 -6
  1541. data/src/core/util/json/json_channel_args.h +2 -1
  1542. data/src/core/util/json/json_object_loader.cc +4 -4
  1543. data/src/core/util/json/json_object_loader.h +19 -19
  1544. data/src/core/util/json/json_reader.cc +4 -4
  1545. data/src/core/util/json/json_writer.cc +4 -4
  1546. data/src/core/util/latent_see.cc +123 -76
  1547. data/src/core/util/latent_see.h +34 -36
  1548. data/src/core/util/linux/env.cc +6 -5
  1549. data/src/core/util/load_file.cc +26 -14
  1550. data/src/core/util/log.cc +5 -1
  1551. data/src/core/util/lru_cache.h +4 -4
  1552. data/src/core/util/match.h +7 -7
  1553. data/src/core/util/matchers.cc +1 -2
  1554. data/src/core/util/matchers.h +7 -12
  1555. data/src/core/util/memory_usage.h +268 -0
  1556. data/src/core/util/per_cpu.cc +2 -0
  1557. data/src/core/util/per_cpu.h +7 -0
  1558. data/src/core/util/posix/env.cc +2 -2
  1559. data/src/core/util/posix/sync.cc +0 -1
  1560. data/src/core/util/posix/time.cc +0 -1
  1561. data/src/core/util/ref_counted.h +1 -0
  1562. data/src/core/util/ref_counted_ptr.h +27 -1
  1563. data/src/core/util/ring_buffer.h +4 -5
  1564. data/src/core/util/shared_bit_gen.cc +21 -0
  1565. data/src/core/util/shared_bit_gen.h +64 -0
  1566. data/src/core/util/single_set_ptr.h +35 -4
  1567. data/src/core/util/status_helper.cc +98 -79
  1568. data/src/core/util/status_helper.h +13 -30
  1569. data/src/core/util/string.cc +2 -2
  1570. data/src/core/util/sync_abseil.cc +0 -1
  1571. data/src/core/util/table.h +6 -21
  1572. data/src/core/util/time.cc +5 -5
  1573. data/src/core/util/time.h +5 -5
  1574. data/src/core/util/time_precise.cc +0 -1
  1575. data/src/core/util/type_list.h +56 -0
  1576. data/src/core/util/upb_utils.h +42 -0
  1577. data/src/core/util/uri.cc +91 -24
  1578. data/src/core/util/uri.h +23 -7
  1579. data/src/core/util/useful.h +66 -17
  1580. data/src/core/util/validation_errors.cc +5 -5
  1581. data/src/core/util/wait_for_single_owner.cc +31 -0
  1582. data/src/core/util/wait_for_single_owner.h +86 -0
  1583. data/src/core/util/windows/env.cc +3 -3
  1584. data/src/core/util/windows/sync.cc +0 -1
  1585. data/src/core/util/windows/time.cc +0 -1
  1586. data/src/core/util/work_serializer.cc +27 -267
  1587. data/src/core/util/work_serializer.h +3 -27
  1588. data/src/core/xds/grpc/certificate_provider_store.cc +14 -19
  1589. data/src/core/xds/grpc/certificate_provider_store.h +4 -4
  1590. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +6 -6
  1591. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +1 -1
  1592. data/src/core/xds/grpc/xds_audit_logger_registry.cc +1 -1
  1593. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +22 -20
  1594. data/src/core/xds/grpc/xds_bootstrap_grpc.h +7 -2
  1595. data/src/core/xds/grpc/xds_certificate_provider.cc +16 -16
  1596. data/src/core/xds/grpc/xds_certificate_provider.h +2 -2
  1597. data/src/core/xds/grpc/xds_client_grpc.cc +20 -16
  1598. data/src/core/xds/grpc/xds_client_grpc.h +4 -2
  1599. data/src/core/xds/grpc/xds_cluster.h +7 -7
  1600. data/src/core/xds/grpc/xds_cluster_parser.cc +29 -28
  1601. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +4 -4
  1602. data/src/core/xds/grpc/xds_common_types.cc +2 -2
  1603. data/src/core/xds/grpc/xds_common_types.h +4 -4
  1604. data/src/core/xds/grpc/xds_common_types_parser.cc +167 -89
  1605. data/src/core/xds/grpc/xds_common_types_parser.h +20 -7
  1606. data/src/core/xds/grpc/xds_endpoint.cc +3 -4
  1607. data/src/core/xds/grpc/xds_endpoint_parser.cc +68 -37
  1608. data/src/core/xds/grpc/xds_health_status.cc +4 -4
  1609. data/src/core/xds/grpc/xds_health_status.h +4 -3
  1610. data/src/core/xds/grpc/xds_http_fault_filter.cc +19 -21
  1611. data/src/core/xds/grpc/xds_http_fault_filter.h +4 -3
  1612. data/src/core/xds/grpc/xds_http_filter.h +11 -4
  1613. data/src/core/xds/grpc/xds_http_filter_registry.cc +8 -10
  1614. data/src/core/xds/grpc/xds_http_filter_registry.h +4 -4
  1615. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +31 -9
  1616. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +7 -3
  1617. data/src/core/xds/grpc/xds_http_rbac_filter.cc +21 -21
  1618. data/src/core/xds/grpc/xds_http_rbac_filter.h +4 -3
  1619. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +10 -10
  1620. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +4 -3
  1621. data/src/core/xds/grpc/xds_lb_policy_registry.cc +5 -5
  1622. data/src/core/xds/grpc/xds_lb_policy_registry.h +1 -1
  1623. data/src/core/xds/grpc/xds_listener.cc +4 -6
  1624. data/src/core/xds/grpc/xds_listener.h +10 -10
  1625. data/src/core/xds/grpc/xds_listener_parser.cc +58 -51
  1626. data/src/core/xds/grpc/xds_listener_parser.h +2 -1
  1627. data/src/core/xds/grpc/xds_metadata.cc +5 -5
  1628. data/src/core/xds/grpc/xds_metadata.h +8 -0
  1629. data/src/core/xds/grpc/xds_metadata_parser.cc +26 -37
  1630. data/src/core/xds/grpc/xds_metadata_parser.h +0 -2
  1631. data/src/core/xds/grpc/xds_route_config.cc +10 -15
  1632. data/src/core/xds/grpc/xds_route_config.h +10 -10
  1633. data/src/core/xds/grpc/xds_route_config_parser.cc +85 -132
  1634. data/src/core/xds/grpc/xds_route_config_parser.h +5 -5
  1635. data/src/core/xds/grpc/xds_routing.cc +6 -6
  1636. data/src/core/xds/grpc/xds_routing.h +6 -6
  1637. data/src/core/xds/grpc/xds_server_grpc.cc +133 -50
  1638. data/src/core/xds/grpc/xds_server_grpc.h +34 -13
  1639. data/src/core/xds/grpc/xds_server_grpc_interface.h +37 -0
  1640. data/src/core/xds/grpc/xds_transport_grpc.cc +29 -12
  1641. data/src/core/xds/grpc/xds_transport_grpc.h +5 -3
  1642. data/src/core/xds/xds_client/lrs_client.cc +77 -88
  1643. data/src/core/xds/xds_client/lrs_client.h +15 -15
  1644. data/src/core/xds/xds_client/xds_api.cc +5 -228
  1645. data/src/core/xds/xds_client/xds_api.h +1 -133
  1646. data/src/core/xds/xds_client/xds_bootstrap.cc +11 -1
  1647. data/src/core/xds/xds_client/xds_bootstrap.h +25 -1
  1648. data/src/core/xds/xds_client/xds_client.cc +1076 -727
  1649. data/src/core/xds/xds_client/xds_client.h +138 -30
  1650. data/src/core/xds/xds_client/xds_resource_type.h +3 -5
  1651. data/src/core/xds/xds_client/xds_resource_type_impl.h +13 -8
  1652. data/src/core/xds/xds_client/xds_transport.h +1 -1
  1653. data/src/ruby/ext/grpc/extconf.rb +5 -2
  1654. data/src/ruby/ext/grpc/rb_call.c +1 -8
  1655. data/src/ruby/ext/grpc/rb_channel.c +70 -557
  1656. data/src/ruby/ext/grpc/rb_channel.h +0 -3
  1657. data/src/ruby/ext/grpc/rb_completion_queue.c +26 -14
  1658. data/src/ruby/ext/grpc/rb_completion_queue.h +1 -7
  1659. data/src/ruby/ext/grpc/rb_grpc.c +9 -5
  1660. data/src/ruby/ext/grpc/rb_grpc.h +1 -1
  1661. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +1 -1
  1662. data/src/ruby/ext/grpc/rb_loader.c +0 -4
  1663. data/src/ruby/ext/grpc/rb_server.c +31 -50
  1664. data/src/ruby/lib/grpc/generic/client_stub.rb +4 -4
  1665. data/src/ruby/lib/grpc/version.rb +1 -1
  1666. data/src/ruby/spec/core_spec.rb +22 -0
  1667. data/src/ruby/spec/generic/active_call_spec.rb +1 -1
  1668. data/src/ruby/spec/generic/client_stub_spec.rb +2 -6
  1669. data/src/ruby/spec/generic/rpc_server_spec.rb +1 -1
  1670. data/third_party/abseil-cpp/absl/algorithm/algorithm.h +2 -2
  1671. data/third_party/abseil-cpp/absl/algorithm/container.h +81 -67
  1672. data/third_party/abseil-cpp/absl/base/attributes.h +142 -23
  1673. data/third_party/abseil-cpp/absl/base/call_once.h +18 -16
  1674. data/third_party/abseil-cpp/absl/base/config.h +23 -132
  1675. data/third_party/abseil-cpp/absl/base/fast_type_id.h +45 -0
  1676. data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +0 -5
  1677. data/third_party/abseil-cpp/absl/base/internal/cycleclock_config.h +7 -7
  1678. data/third_party/abseil-cpp/absl/base/internal/endian.h +34 -38
  1679. data/third_party/abseil-cpp/absl/base/internal/iterator_traits.h +71 -0
  1680. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +6 -5
  1681. data/third_party/abseil-cpp/absl/base/internal/nullability_deprecated.h +106 -0
  1682. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +1 -1
  1683. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +0 -9
  1684. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -13
  1685. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +14 -0
  1686. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +5 -1
  1687. data/third_party/abseil-cpp/absl/base/internal/tracing.cc +39 -0
  1688. data/third_party/abseil-cpp/absl/base/internal/tracing.h +81 -0
  1689. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +6 -6
  1690. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -10
  1691. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +17 -0
  1692. data/third_party/abseil-cpp/absl/base/macros.h +35 -4
  1693. data/third_party/abseil-cpp/absl/base/no_destructor.h +11 -32
  1694. data/third_party/abseil-cpp/absl/base/nullability.h +124 -56
  1695. data/third_party/abseil-cpp/absl/base/optimization.h +8 -12
  1696. data/third_party/abseil-cpp/absl/base/options.h +7 -81
  1697. data/third_party/abseil-cpp/absl/base/policy_checks.h +9 -7
  1698. data/third_party/abseil-cpp/absl/cleanup/cleanup.h +1 -3
  1699. data/third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +3 -4
  1700. data/third_party/abseil-cpp/absl/container/btree_map.h +891 -0
  1701. data/third_party/abseil-cpp/absl/container/btree_set.h +826 -0
  1702. data/third_party/abseil-cpp/absl/container/fixed_array.h +9 -15
  1703. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +22 -3
  1704. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +23 -4
  1705. data/third_party/abseil-cpp/absl/container/inlined_vector.h +10 -6
  1706. data/third_party/abseil-cpp/absl/container/internal/btree.h +3149 -0
  1707. data/third_party/abseil-cpp/absl/container/internal/btree_container.h +867 -0
  1708. data/third_party/abseil-cpp/absl/container/internal/common.h +43 -0
  1709. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +10 -2
  1710. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +10 -10
  1711. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +1 -8
  1712. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +0 -4
  1713. data/third_party/abseil-cpp/absl/container/internal/hashtable_control_bytes.h +527 -0
  1714. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +20 -4
  1715. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +31 -12
  1716. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +6 -9
  1717. data/third_party/abseil-cpp/absl/container/internal/layout.h +27 -43
  1718. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +199 -68
  1719. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +1462 -263
  1720. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1170 -1547
  1721. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set_resize_impl.h +80 -0
  1722. data/third_party/abseil-cpp/absl/crc/crc32c.cc +0 -4
  1723. data/third_party/abseil-cpp/absl/crc/crc32c.h +7 -5
  1724. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +56 -0
  1725. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +0 -22
  1726. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +45 -74
  1727. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +21 -7
  1728. data/third_party/abseil-cpp/absl/debugging/internal/addresses.h +57 -0
  1729. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +1 -1
  1730. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +5 -5
  1731. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +12 -37
  1732. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +16 -16
  1733. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +1 -1
  1734. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +40 -21
  1735. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +16 -7
  1736. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +7 -0
  1737. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +14 -5
  1738. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +10 -4
  1739. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +27 -16
  1740. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +20 -8
  1741. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +4 -3
  1742. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +15 -28
  1743. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +19 -9
  1744. data/third_party/abseil-cpp/absl/debugging/leak_check.cc +73 -0
  1745. data/third_party/abseil-cpp/absl/debugging/leak_check.h +150 -0
  1746. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +144 -27
  1747. data/third_party/abseil-cpp/absl/debugging/stacktrace.h +73 -5
  1748. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +3 -2
  1749. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +67 -18
  1750. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -2
  1751. data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +25 -6
  1752. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +1 -0
  1753. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +9 -2
  1754. data/third_party/abseil-cpp/absl/flags/flag.h +18 -15
  1755. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +2 -2
  1756. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +14 -5
  1757. data/third_party/abseil-cpp/absl/flags/internal/flag.h +23 -11
  1758. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +4 -0
  1759. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +3 -0
  1760. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +13 -12
  1761. data/third_party/abseil-cpp/absl/flags/internal/registry.h +4 -3
  1762. data/third_party/abseil-cpp/absl/flags/reflection.cc +2 -3
  1763. data/third_party/abseil-cpp/absl/flags/usage_config.cc +9 -4
  1764. data/third_party/abseil-cpp/absl/functional/any_invocable.h +8 -10
  1765. data/third_party/abseil-cpp/absl/functional/function_ref.h +2 -9
  1766. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +110 -226
  1767. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +10 -12
  1768. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +2 -5
  1769. data/third_party/abseil-cpp/absl/hash/hash.h +44 -2
  1770. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +14 -18
  1771. data/third_party/abseil-cpp/absl/hash/internal/hash.h +257 -127
  1772. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +27 -72
  1773. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +2 -6
  1774. data/third_party/abseil-cpp/absl/hash/internal/weakly_mixed_integer.h +38 -0
  1775. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +2 -0
  1776. data/third_party/abseil-cpp/absl/log/check.h +2 -1
  1777. data/third_party/abseil-cpp/absl/log/globals.h +4 -5
  1778. data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +28 -0
  1779. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +43 -38
  1780. data/third_party/abseil-cpp/absl/log/internal/check_op.h +124 -99
  1781. data/third_party/abseil-cpp/absl/log/internal/conditions.cc +5 -3
  1782. data/third_party/abseil-cpp/absl/log/internal/conditions.h +7 -2
  1783. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +158 -64
  1784. data/third_party/abseil-cpp/absl/log/internal/log_message.h +140 -83
  1785. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -0
  1786. data/third_party/abseil-cpp/absl/log/internal/proto.cc +3 -5
  1787. data/third_party/abseil-cpp/absl/log/internal/proto.h +28 -18
  1788. data/third_party/abseil-cpp/absl/log/internal/strip.h +4 -12
  1789. data/third_party/abseil-cpp/absl/log/internal/structured_proto.cc +115 -0
  1790. data/third_party/abseil-cpp/absl/log/internal/structured_proto.h +107 -0
  1791. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +8 -1
  1792. data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +8 -6
  1793. data/third_party/abseil-cpp/absl/log/internal/voidify.h +10 -4
  1794. data/third_party/abseil-cpp/absl/log/log.h +48 -35
  1795. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +5 -2
  1796. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +2 -0
  1797. data/third_party/abseil-cpp/absl/meta/type_traits.h +62 -181
  1798. data/third_party/abseil-cpp/absl/numeric/bits.h +68 -2
  1799. data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -52
  1800. data/third_party/abseil-cpp/absl/numeric/int128.h +15 -3
  1801. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +6 -4
  1802. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +6 -3
  1803. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +7 -3
  1804. data/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc +1 -1
  1805. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +3 -1
  1806. data/third_party/abseil-cpp/absl/random/beta_distribution.h +3 -1
  1807. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +12 -12
  1808. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +10 -0
  1809. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +4 -2
  1810. data/third_party/abseil-cpp/absl/random/distributions.h +6 -8
  1811. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +1 -0
  1812. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +3 -2
  1813. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +8 -7
  1814. data/third_party/abseil-cpp/absl/random/internal/entropy_pool.cc +185 -0
  1815. data/third_party/abseil-cpp/absl/random/internal/entropy_pool.h +35 -0
  1816. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +5 -2
  1817. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +5 -6
  1818. data/third_party/abseil-cpp/absl/random/internal/platform.h +12 -12
  1819. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +57 -6
  1820. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +2 -1
  1821. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +20 -12
  1822. data/third_party/abseil-cpp/absl/random/internal/seed_material.h +5 -5
  1823. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +2 -2
  1824. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +0 -1
  1825. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +1 -4
  1826. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +4 -3
  1827. data/third_party/abseil-cpp/absl/random/random.h +88 -53
  1828. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +2 -3
  1829. data/third_party/abseil-cpp/absl/random/seed_sequences.cc +6 -2
  1830. data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -2
  1831. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -1
  1832. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +2 -0
  1833. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +5 -4
  1834. data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +10 -7
  1835. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +3 -4
  1836. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +4 -3
  1837. data/third_party/abseil-cpp/absl/status/status.cc +4 -8
  1838. data/third_party/abseil-cpp/absl/status/status.h +8 -8
  1839. data/third_party/abseil-cpp/absl/status/status_payload_printer.h +2 -2
  1840. data/third_party/abseil-cpp/absl/status/statusor.cc +2 -2
  1841. data/third_party/abseil-cpp/absl/status/statusor.h +6 -6
  1842. data/third_party/abseil-cpp/absl/strings/ascii.cc +44 -29
  1843. data/third_party/abseil-cpp/absl/strings/ascii.h +62 -22
  1844. data/third_party/abseil-cpp/absl/strings/charconv.cc +25 -29
  1845. data/third_party/abseil-cpp/absl/strings/charconv.h +5 -5
  1846. data/third_party/abseil-cpp/absl/strings/charset.h +3 -4
  1847. data/third_party/abseil-cpp/absl/strings/cord.cc +54 -58
  1848. data/third_party/abseil-cpp/absl/strings/cord.h +99 -102
  1849. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +11 -11
  1850. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +3 -3
  1851. data/third_party/abseil-cpp/absl/strings/escaping.cc +186 -197
  1852. data/third_party/abseil-cpp/absl/strings/escaping.h +9 -10
  1853. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +1 -1
  1854. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +1 -1
  1855. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +53 -22
  1856. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +0 -4
  1857. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +0 -4
  1858. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +7 -63
  1859. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +1 -11
  1860. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +0 -22
  1861. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +3 -2
  1862. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +5 -3
  1863. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +4 -2
  1864. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +3 -3
  1865. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -0
  1866. data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +0 -5
  1867. data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +96 -1
  1868. data/third_party/abseil-cpp/absl/strings/internal/utf8.h +15 -1
  1869. data/third_party/abseil-cpp/absl/strings/match.h +21 -11
  1870. data/third_party/abseil-cpp/absl/strings/numbers.cc +55 -33
  1871. data/third_party/abseil-cpp/absl/strings/numbers.h +87 -58
  1872. data/third_party/abseil-cpp/absl/strings/str_cat.cc +6 -7
  1873. data/third_party/abseil-cpp/absl/strings/str_cat.h +41 -30
  1874. data/third_party/abseil-cpp/absl/strings/str_format.h +18 -18
  1875. data/third_party/abseil-cpp/absl/strings/str_replace.cc +3 -3
  1876. data/third_party/abseil-cpp/absl/strings/str_replace.h +6 -6
  1877. data/third_party/abseil-cpp/absl/strings/str_split.h +18 -1
  1878. data/third_party/abseil-cpp/absl/strings/string_view.cc +4 -9
  1879. data/third_party/abseil-cpp/absl/strings/string_view.h +46 -50
  1880. data/third_party/abseil-cpp/absl/strings/strip.h +11 -8
  1881. data/third_party/abseil-cpp/absl/strings/substitute.cc +5 -4
  1882. data/third_party/abseil-cpp/absl/strings/substitute.h +66 -64
  1883. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +16 -10
  1884. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +6 -0
  1885. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -1
  1886. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +0 -4
  1887. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +0 -5
  1888. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +0 -4
  1889. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +0 -4
  1890. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +0 -4
  1891. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +0 -4
  1892. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +0 -4
  1893. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +39 -13
  1894. data/third_party/abseil-cpp/absl/synchronization/mutex.h +97 -69
  1895. data/third_party/abseil-cpp/absl/synchronization/notification.cc +10 -2
  1896. data/third_party/abseil-cpp/absl/synchronization/notification.h +12 -2
  1897. data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -0
  1898. data/third_party/abseil-cpp/absl/time/duration.cc +18 -58
  1899. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -1
  1900. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1901. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
  1902. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +3 -3
  1903. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +2 -2
  1904. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +2 -2
  1905. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +3 -3
  1906. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +2 -2
  1907. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  1908. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +1 -1
  1909. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +92 -112
  1910. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +1 -1
  1911. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +6 -4
  1912. data/third_party/abseil-cpp/absl/time/time.h +89 -23
  1913. data/third_party/abseil-cpp/absl/types/internal/span.h +3 -2
  1914. data/third_party/abseil-cpp/absl/types/optional.h +7 -745
  1915. data/third_party/abseil-cpp/absl/types/span.h +98 -54
  1916. data/third_party/abseil-cpp/absl/types/variant.h +5 -784
  1917. data/third_party/abseil-cpp/absl/utility/utility.h +10 -185
  1918. data/third_party/boringssl-with-bazel/src/crypto/aes/aes.cc +41 -0
  1919. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +259 -0
  1920. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.cc +53 -0
  1921. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc +47 -0
  1922. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc +42 -0
  1923. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.cc +109 -0
  1924. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc +43 -0
  1925. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +439 -0
  1926. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.cc +239 -0
  1927. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.cc +193 -0
  1928. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.cc +32 -0
  1929. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.cc +415 -0
  1930. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.cc +206 -0
  1931. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.cc +224 -0
  1932. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.cc +172 -0
  1933. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.cc +109 -0
  1934. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.cc +355 -0
  1935. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.cc +61 -0
  1936. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc +56 -0
  1937. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.cc +63 -0
  1938. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.cc +52 -0
  1939. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +33 -61
  1940. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.cc +241 -0
  1941. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +963 -0
  1942. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +661 -0
  1943. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc +164 -0
  1944. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.cc +276 -0
  1945. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +80 -0
  1946. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.cc +229 -0
  1947. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.cc +434 -0
  1948. data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +19 -48
  1949. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.cc +658 -0
  1950. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.cc +268 -0
  1951. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +509 -0
  1952. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.cc +50 -0
  1953. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.cc +193 -0
  1954. data/third_party/boringssl-with-bazel/src/crypto/bio/file.cc +292 -0
  1955. data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.cc +152 -0
  1956. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +17 -61
  1957. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.cc +446 -0
  1958. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.cc +59 -0
  1959. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +144 -0
  1960. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +131 -0
  1961. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.cc +169 -0
  1962. data/third_party/boringssl-with-bazel/src/crypto/bn/bn_asn1.cc +57 -0
  1963. data/third_party/boringssl-with-bazel/src/crypto/bn/convert.cc +407 -0
  1964. data/third_party/boringssl-with-bazel/src/crypto/bn/div.cc +100 -0
  1965. data/third_party/boringssl-with-bazel/src/crypto/bn/exponentiation.cc +166 -0
  1966. data/third_party/boringssl-with-bazel/src/crypto/bn/sqrt.cc +93 -0
  1967. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.cc +118 -0
  1968. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc +53 -0
  1969. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.cc +266 -0
  1970. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +708 -0
  1971. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +912 -0
  1972. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +16 -16
  1973. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.cc +156 -0
  1974. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.cc +224 -0
  1975. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +23 -23
  1976. data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +108 -0
  1977. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesctrhmac.cc +279 -0
  1978. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aeseax.cc +289 -0
  1979. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc +922 -0
  1980. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_chacha20poly1305.cc +341 -0
  1981. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_des.cc +198 -0
  1982. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_null.cc +51 -0
  1983. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc2.cc +417 -0
  1984. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc4.cc +54 -0
  1985. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_tls.cc +599 -0
  1986. data/third_party/boringssl-with-bazel/src/crypto/cipher/get_cipher.cc +85 -0
  1987. data/third_party/boringssl-with-bazel/src/crypto/cipher/internal.h +240 -0
  1988. data/third_party/boringssl-with-bazel/src/crypto/cipher/tls_cbc.cc +476 -0
  1989. data/third_party/boringssl-with-bazel/src/crypto/cms/cms.cc +172 -0
  1990. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.cc +631 -0
  1991. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +13 -13
  1992. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +73 -0
  1993. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +53 -0
  1994. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +60 -0
  1995. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +59 -0
  1996. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +92 -0
  1997. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +39 -0
  1998. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +53 -0
  1999. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +173 -0
  2000. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +24 -22
  2001. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +281 -0
  2002. data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +181 -0
  2003. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.cc +2154 -0
  2004. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc +18 -0
  2005. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +13 -13
  2006. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +17 -17
  2007. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.cc +529 -0
  2008. data/third_party/boringssl-with-bazel/src/crypto/des/des.cc +829 -0
  2009. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +31 -73
  2010. data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +123 -0
  2011. data/third_party/boringssl-with-bazel/src/crypto/dh/params.cc +408 -0
  2012. data/third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc +314 -0
  2013. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +941 -0
  2014. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +367 -0
  2015. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +17 -19
  2016. data/third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc +554 -0
  2017. data/third_party/boringssl-with-bazel/src/crypto/ec/ec_derive.cc +96 -0
  2018. data/third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc +502 -0
  2019. data/third_party/boringssl-with-bazel/src/crypto/ec/internal.h +78 -0
  2020. data/third_party/boringssl-with-bazel/src/crypto/ecdh/ecdh.cc +73 -0
  2021. data/third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc +351 -0
  2022. data/third_party/boringssl-with-bazel/src/crypto/engine/engine.cc +95 -0
  2023. data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +808 -0
  2024. data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +13 -13
  2025. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.cc +379 -0
  2026. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc +470 -0
  2027. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +439 -0
  2028. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +17 -59
  2029. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.cc +153 -0
  2030. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.cc +142 -0
  2031. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +279 -0
  2032. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.cc +230 -0
  2033. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +286 -0
  2034. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.cc +103 -0
  2035. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +225 -0
  2036. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.cc +236 -0
  2037. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.cc +609 -0
  2038. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +198 -0
  2039. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.cc +109 -0
  2040. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +237 -0
  2041. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc +98 -0
  2042. data/third_party/boringssl-with-bazel/src/crypto/evp/print.cc +342 -0
  2043. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.cc +216 -0
  2044. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +95 -0
  2045. data/third_party/boringssl-with-bazel/src/crypto/ex_data.cc +141 -0
  2046. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +202 -0
  2047. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.cc.inc +1281 -0
  2048. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cbc.cc.inc +130 -0
  2049. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cfb.cc.inc +166 -0
  2050. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ctr.cc.inc +100 -0
  2051. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc +604 -0
  2052. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm_nohw.cc.inc +302 -0
  2053. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +396 -76
  2054. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +209 -0
  2055. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +93 -0
  2056. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ofb.cc.inc +53 -0
  2057. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +282 -0
  2058. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +765 -29
  2059. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.cc.inc +269 -0
  2060. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc +554 -0
  2061. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.cc.inc +374 -0
  2062. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.cc.inc +225 -0
  2063. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.cc.inc +159 -0
  2064. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.cc.inc +191 -0
  2065. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +734 -0
  2066. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.cc.inc +87 -0
  2067. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +739 -0
  2068. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +278 -0
  2069. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +323 -0
  2070. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.cc.inc +582 -0
  2071. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +53 -160
  2072. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +99 -0
  2073. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +409 -0
  2074. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.cc.inc +222 -0
  2075. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +698 -0
  2076. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +928 -0
  2077. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.cc.inc +260 -0
  2078. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.cc.inc +142 -0
  2079. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +24 -21
  2080. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +315 -0
  2081. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +382 -0
  2082. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.cc.inc +295 -0
  2083. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.cc.inc +672 -0
  2084. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +1235 -0
  2085. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.cc.inc +409 -0
  2086. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +18 -69
  2087. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.cc.inc +288 -0
  2088. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +36 -25
  2089. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc +190 -0
  2090. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +424 -0
  2091. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +13 -15
  2092. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +244 -0
  2093. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc +178 -0
  2094. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +17 -59
  2095. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +17 -51
  2096. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.cc.inc +226 -0
  2097. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +91 -91
  2098. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +971 -0
  2099. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +494 -0
  2100. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.cc.inc +439 -0
  2101. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.cc.inc +104 -0
  2102. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +23 -70
  2103. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +295 -0
  2104. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.cc.inc +1163 -0
  2105. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h +15 -10
  2106. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.cc.inc +741 -0
  2107. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +26 -21
  2108. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.cc.inc +749 -0
  2109. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +13 -13
  2110. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.cc.inc +179 -0
  2111. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc +279 -0
  2112. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.cc.inc +269 -0
  2113. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.cc.inc +255 -0
  2114. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.cc.inc +221 -0
  2115. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc +88 -0
  2116. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.cc.inc +278 -0
  2117. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +13 -13
  2118. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc +28 -0
  2119. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.cc.inc +112 -0
  2120. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.cc.inc +215 -0
  2121. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h +70 -0
  2122. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/keccak.cc.inc +279 -0
  2123. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/fips_known_values.inc +1345 -0
  2124. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +2300 -0
  2125. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/fips_known_values.inc +411 -0
  2126. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +1397 -0
  2127. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.cc.inc +214 -0
  2128. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +22 -28
  2129. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +483 -0
  2130. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc +147 -0
  2131. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +17 -60
  2132. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +372 -0
  2133. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +983 -0
  2134. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +1279 -0
  2135. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.cc.inc +129 -0
  2136. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +1055 -0
  2137. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +38 -38
  2138. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.cc.inc +327 -0
  2139. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +52 -78
  2140. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.cc.inc +390 -0
  2141. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.cc.inc +299 -0
  2142. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.cc.inc +473 -0
  2143. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/address.h +119 -0
  2144. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fips_known_values.inc +674 -0
  2145. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.cc.inc +169 -0
  2146. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.h +58 -0
  2147. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.cc.inc +161 -0
  2148. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.h +70 -0
  2149. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/params.h +78 -0
  2150. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +504 -0
  2151. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.cc.inc +173 -0
  2152. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.h +85 -0
  2153. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.cc.inc +171 -0
  2154. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.h +50 -0
  2155. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +13 -13
  2156. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.cc.inc +180 -0
  2157. data/third_party/boringssl-with-bazel/src/crypto/fuzzer_mode.cc +30 -0
  2158. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.cc +1095 -0
  2159. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.cc +2185 -0
  2160. data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +16 -16
  2161. data/third_party/boringssl-with-bazel/src/crypto/internal.h +283 -457
  2162. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +13 -13
  2163. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.cc +869 -0
  2164. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +34 -78
  2165. data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.cc +309 -0
  2166. data/third_party/boringssl-with-bazel/src/crypto/md4/md4.cc +194 -0
  2167. data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +37 -0
  2168. data/third_party/boringssl-with-bazel/src/crypto/md5/md5.cc +243 -0
  2169. data/third_party/boringssl-with-bazel/src/crypto/mem.cc +581 -0
  2170. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc +90 -0
  2171. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +97 -1042
  2172. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +513 -0
  2173. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +14 -56
  2174. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.cc +80 -0
  2175. data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +44 -0
  2176. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.cc +149 -0
  2177. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.cc +254 -0
  2178. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +736 -0
  2179. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc +45 -0
  2180. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.cc +208 -0
  2181. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.cc +141 -0
  2182. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.cc +22 -0
  2183. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.cc +22 -0
  2184. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +36 -22
  2185. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +195 -0
  2186. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +524 -0
  2187. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +28 -63
  2188. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +279 -0
  2189. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +471 -0
  2190. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +1322 -0
  2191. data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +17 -17
  2192. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.cc +314 -0
  2193. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.cc +310 -0
  2194. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.cc +850 -0
  2195. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +17 -17
  2196. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.cc +262 -0
  2197. data/third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc +65 -0
  2198. data/third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc +194 -0
  2199. data/third_party/boringssl-with-bazel/src/crypto/rand/forkunsafe.cc +44 -0
  2200. data/third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc +60 -0
  2201. data/third_party/boringssl-with-bazel/src/crypto/rand/getrandom_fillin.h +64 -0
  2202. data/third_party/boringssl-with-bazel/src/crypto/rand/internal.h +55 -0
  2203. data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +42 -0
  2204. data/third_party/boringssl-with-bazel/src/crypto/rand/passive.cc +178 -0
  2205. data/third_party/boringssl-with-bazel/src/crypto/rand/rand.cc +77 -0
  2206. data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +46 -0
  2207. data/third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc +328 -0
  2208. data/third_party/boringssl-with-bazel/src/crypto/rand/windows.cc +98 -0
  2209. data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.cc +56 -0
  2210. data/third_party/boringssl-with-bazel/src/crypto/refcount.cc +59 -0
  2211. data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +36 -0
  2212. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_asn1.cc +283 -0
  2213. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc +523 -0
  2214. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_extra.cc +19 -0
  2215. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_print.cc +27 -0
  2216. data/third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc +52 -0
  2217. data/third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc +87 -0
  2218. data/third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc +104 -0
  2219. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.cc +79 -0
  2220. data/third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc +113 -0
  2221. data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +204 -0
  2222. data/third_party/boringssl-with-bazel/src/crypto/spake2plus/spake2plus.cc +501 -0
  2223. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.cc +496 -0
  2224. data/third_party/boringssl-with-bazel/src/crypto/thread.cc +68 -0
  2225. data/third_party/boringssl-with-bazel/src/crypto/thread_none.cc +51 -0
  2226. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.cc +151 -0
  2227. data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +238 -0
  2228. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +17 -17
  2229. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.cc +1656 -0
  2230. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.cc +685 -0
  2231. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.cc +1263 -0
  2232. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc +52 -0
  2233. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +95 -0
  2234. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc +74 -0
  2235. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.cc +136 -0
  2236. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +538 -0
  2237. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.cc +355 -0
  2238. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.cc +227 -0
  2239. data/third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h +13 -55
  2240. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.cc +37 -0
  2241. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +29 -61
  2242. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.cc +185 -0
  2243. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.cc +796 -0
  2244. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.cc +364 -0
  2245. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.cc +103 -0
  2246. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.cc +203 -0
  2247. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.cc +287 -0
  2248. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.cc +79 -0
  2249. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.cc +181 -0
  2250. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.cc +31 -0
  2251. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.cc +593 -0
  2252. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc +95 -0
  2253. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc +102 -0
  2254. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +366 -0
  2255. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.cc +444 -0
  2256. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.cc +557 -0
  2257. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc +73 -0
  2258. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc +114 -0
  2259. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.cc +228 -0
  2260. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc +79 -0
  2261. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +161 -0
  2262. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc +81 -0
  2263. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.cc +304 -0
  2264. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.cc +514 -0
  2265. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.cc +89 -0
  2266. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc +101 -0
  2267. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.cc +109 -0
  2268. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.cc +183 -0
  2269. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.cc +590 -0
  2270. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc +131 -0
  2271. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.cc +1342 -0
  2272. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.cc +47 -0
  2273. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.cc +186 -0
  2274. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.cc +238 -0
  2275. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.cc +66 -0
  2276. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.cc +44 -0
  2277. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.cc +139 -0
  2278. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.cc +554 -0
  2279. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.cc +164 -0
  2280. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.cc +257 -0
  2281. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.cc +198 -0
  2282. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.cc +118 -0
  2283. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.cc +147 -0
  2284. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.cc +249 -0
  2285. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +1607 -0
  2286. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.cc +440 -0
  2287. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.cc +235 -0
  2288. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.cc +365 -0
  2289. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.cc +67 -0
  2290. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc +91 -0
  2291. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +116 -0
  2292. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.cc +318 -0
  2293. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.cc +55 -0
  2294. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.cc +342 -0
  2295. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.cc +36 -0
  2296. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +501 -0
  2297. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.cc +170 -0
  2298. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.cc +74 -0
  2299. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.cc +51 -0
  2300. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.cc +34 -0
  2301. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.cc +28 -0
  2302. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +485 -0
  2303. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +153 -0
  2304. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +1538 -0
  2305. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +29 -21
  2306. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +14 -48
  2307. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +16 -76
  2308. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +14 -14
  2309. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +29 -116
  2310. data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +13 -13
  2311. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +248 -328
  2312. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +31 -58
  2313. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +14 -56
  2314. data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +82 -0
  2315. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +14 -56
  2316. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +14 -14
  2317. data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +14 -56
  2318. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +15 -122
  2319. data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +14 -56
  2320. data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +13 -13
  2321. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +38 -17
  2322. data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +14 -56
  2323. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +14 -14
  2324. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +32 -60
  2325. data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +14 -14
  2326. data/third_party/boringssl-with-bazel/src/include/openssl/cms.h +146 -0
  2327. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +14 -56
  2328. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +13 -13
  2329. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +48 -17
  2330. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +14 -14
  2331. data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +14 -14
  2332. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +14 -56
  2333. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +18 -56
  2334. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +38 -63
  2335. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +18 -59
  2336. data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +13 -13
  2337. data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +14 -14
  2338. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +15 -67
  2339. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +32 -73
  2340. data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +15 -66
  2341. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +14 -52
  2342. data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +14 -14
  2343. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +15 -108
  2344. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +15 -57
  2345. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +13 -55
  2346. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +14 -108
  2347. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +14 -14
  2348. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +14 -14
  2349. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +14 -56
  2350. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +18 -18
  2351. data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +14 -14
  2352. data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +13 -13
  2353. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +14 -14
  2354. data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +14 -56
  2355. data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +14 -56
  2356. data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +14 -56
  2357. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +14 -56
  2358. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +21 -27
  2359. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +14 -38
  2360. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +28 -70
  2361. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +14 -56
  2362. data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +14 -14
  2363. data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +13 -13
  2364. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +23 -17
  2365. data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +13 -13
  2366. data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +13 -13
  2367. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +22 -60
  2368. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +13 -13
  2369. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +14 -14
  2370. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +32 -61
  2371. data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +14 -14
  2372. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +14 -14
  2373. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +14 -14
  2374. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +15 -15
  2375. data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +14 -56
  2376. data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +14 -56
  2377. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +24 -64
  2378. data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +13 -13
  2379. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +14 -14
  2380. data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +16 -96
  2381. data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +14 -14
  2382. data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +174 -0
  2383. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +25 -33
  2384. data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +13 -13
  2385. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +628 -309
  2386. data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +15 -114
  2387. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +14 -56
  2388. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +23 -18
  2389. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +16 -58
  2390. data/third_party/boringssl-with-bazel/src/include/openssl/time.h +13 -13
  2391. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +36 -157
  2392. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +16 -16
  2393. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +14 -56
  2394. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +21 -65
  2395. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +13 -13
  2396. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +13 -13
  2397. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +13 -53
  2398. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +15 -14
  2399. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +680 -434
  2400. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +129 -174
  2401. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +176 -131
  2402. data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +21 -127
  2403. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +109 -104
  2404. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +321 -316
  2405. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +101 -94
  2406. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +920 -519
  2407. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +78 -85
  2408. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +67 -157
  2409. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +201 -333
  2410. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +113 -245
  2411. data/third_party/boringssl-with-bazel/src/ssl/internal.h +1054 -540
  2412. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +47 -157
  2413. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +29 -159
  2414. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +18 -112
  2415. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +108 -207
  2416. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +70 -149
  2417. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +15 -20
  2418. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +117 -157
  2419. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +229 -365
  2420. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +294 -32
  2421. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +13 -109
  2422. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +35 -34
  2423. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +352 -354
  2424. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +43 -101
  2425. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +127 -249
  2426. data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +17 -91
  2427. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +109 -157
  2428. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +44 -30
  2429. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +66 -195
  2430. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +46 -177
  2431. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +88 -48
  2432. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +160 -96
  2433. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +251 -184
  2434. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +250 -119
  2435. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +64 -117
  2436. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +54 -139
  2437. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +6 -0
  2438. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +6 -0
  2439. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -1
  2440. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1 -1
  2441. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +3 -0
  2442. data/third_party/upb/upb/base/internal/log2.h +3 -1
  2443. data/third_party/upb/upb/base/string_view.h +10 -0
  2444. data/third_party/upb/upb/hash/common.c +312 -187
  2445. data/third_party/upb/upb/hash/common.h +44 -43
  2446. data/third_party/upb/upb/hash/int_table.h +29 -5
  2447. data/third_party/upb/upb/hash/str_table.h +6 -0
  2448. data/third_party/upb/upb/json/decode.c +39 -10
  2449. data/third_party/upb/upb/json/decode.h +25 -3
  2450. data/third_party/upb/upb/mem/alloc.h +5 -0
  2451. data/third_party/upb/upb/mem/arena.c +438 -161
  2452. data/third_party/upb/upb/mem/arena.h +57 -11
  2453. data/third_party/upb/upb/mem/arena.hpp +4 -20
  2454. data/third_party/upb/upb/mem/internal/arena.h +65 -29
  2455. data/third_party/upb/upb/message/accessors.c +1 -5
  2456. data/third_party/upb/upb/message/accessors.h +49 -0
  2457. data/third_party/upb/upb/message/array.c +7 -6
  2458. data/third_party/upb/upb/message/array.h +4 -4
  2459. data/third_party/upb/upb/message/compat.c +11 -14
  2460. data/third_party/upb/upb/message/compat.h +4 -3
  2461. data/third_party/upb/upb/message/copy.c +35 -30
  2462. data/third_party/upb/upb/message/internal/accessors.h +151 -15
  2463. data/third_party/upb/upb/message/internal/extension.c +16 -25
  2464. data/third_party/upb/upb/message/internal/extension.h +17 -5
  2465. data/third_party/upb/upb/message/internal/iterator.c +58 -0
  2466. data/third_party/upb/upb/message/internal/iterator.h +29 -0
  2467. data/third_party/upb/upb/message/internal/map.h +76 -22
  2468. data/third_party/upb/upb/message/internal/map_sorter.h +13 -4
  2469. data/third_party/upb/upb/message/internal/message.c +48 -29
  2470. data/third_party/upb/upb/message/internal/message.h +203 -25
  2471. data/third_party/upb/upb/message/map.c +68 -20
  2472. data/third_party/upb/upb/message/map.h +8 -1
  2473. data/third_party/upb/upb/message/map_gencode_util.h +3 -45
  2474. data/third_party/upb/upb/message/map_sorter.c +52 -16
  2475. data/third_party/upb/upb/message/merge.h +3 -3
  2476. data/third_party/upb/upb/message/message.c +200 -42
  2477. data/third_party/upb/upb/message/message.h +69 -4
  2478. data/third_party/upb/upb/message/value.h +9 -0
  2479. data/third_party/upb/upb/mini_descriptor/build_enum.c +16 -6
  2480. data/third_party/upb/upb/mini_descriptor/decode.c +115 -138
  2481. data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
  2482. data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
  2483. data/third_party/upb/upb/mini_descriptor/link.c +4 -0
  2484. data/third_party/upb/upb/mini_table/extension.h +8 -1
  2485. data/third_party/upb/upb/mini_table/extension_registry.c +25 -13
  2486. data/third_party/upb/upb/mini_table/extension_registry.h +13 -6
  2487. data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
  2488. data/third_party/upb/upb/mini_table/internal/extension.h +24 -1
  2489. data/third_party/upb/upb/mini_table/internal/field.h +4 -4
  2490. data/third_party/upb/upb/mini_table/internal/message.h +1 -1
  2491. data/third_party/upb/upb/mini_table/message.c +21 -13
  2492. data/third_party/upb/upb/port/atomic.h +134 -7
  2493. data/third_party/upb/upb/port/def.inc +184 -47
  2494. data/third_party/upb/upb/port/undef.inc +14 -0
  2495. data/third_party/upb/upb/reflection/common.h +1 -11
  2496. data/third_party/upb/upb/reflection/def.hpp +5 -1
  2497. data/third_party/upb/upb/reflection/def_pool.c +10 -3
  2498. data/third_party/upb/upb/reflection/def_pool.h +2 -2
  2499. data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
  2500. data/third_party/upb/upb/reflection/enum_def.c +4 -4
  2501. data/third_party/upb/upb/reflection/enum_reserved_range.c +1 -1
  2502. data/third_party/upb/upb/reflection/enum_value_def.c +9 -8
  2503. data/third_party/upb/upb/reflection/extension_range.c +1 -2
  2504. data/third_party/upb/upb/reflection/field_def.c +6 -22
  2505. data/third_party/upb/upb/reflection/field_def.h +1 -1
  2506. data/third_party/upb/upb/reflection/file_def.c +16 -10
  2507. data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
  2508. data/third_party/upb/upb/reflection/internal/def_builder.h +35 -10
  2509. data/third_party/upb/upb/reflection/internal/enum_value_def.h +1 -1
  2510. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  2511. data/third_party/upb/upb/reflection/message.c +19 -16
  2512. data/third_party/upb/upb/reflection/message.h +3 -1
  2513. data/third_party/upb/upb/reflection/message_def.c +4 -7
  2514. data/third_party/upb/upb/reflection/message_reserved_range.c +1 -1
  2515. data/third_party/upb/upb/reflection/method_def.c +1 -1
  2516. data/third_party/upb/upb/reflection/oneof_def.c +3 -3
  2517. data/third_party/upb/upb/reflection/service_def.c +2 -5
  2518. data/third_party/upb/upb/text/encode.c +17 -20
  2519. data/third_party/upb/upb/text/internal/encode.c +25 -6
  2520. data/third_party/upb/upb/text/internal/encode.h +6 -1
  2521. data/third_party/upb/upb/wire/decode.c +154 -107
  2522. data/third_party/upb/upb/wire/decode.h +5 -3
  2523. data/third_party/upb/upb/wire/encode.c +114 -55
  2524. data/third_party/upb/upb/wire/encode.h +2 -0
  2525. data/third_party/upb/upb/wire/eps_copy_input_stream.h +18 -20
  2526. data/third_party/upb/upb/wire/internal/decode_fast.c +2 -2
  2527. data/third_party/upb/upb/wire/internal/decode_fast.h +4 -0
  2528. data/third_party/upb/upb/wire/internal/decoder.h +4 -11
  2529. data/third_party/utf8_range/utf8_range.c +15 -275
  2530. data/third_party/utf8_range/utf8_range_neon.inc +117 -0
  2531. data/third_party/utf8_range/utf8_range_sse.inc +272 -0
  2532. data/third_party/zlib/deflate.c +40 -15
  2533. data/third_party/zlib/deflate.h +33 -2
  2534. data/third_party/zlib/gzguts.h +2 -6
  2535. data/third_party/zlib/inflate.c +1 -1
  2536. data/third_party/zlib/inftrees.c +3 -3
  2537. data/third_party/zlib/inftrees.h +2 -2
  2538. data/third_party/zlib/trees.c +18 -4
  2539. data/third_party/zlib/zconf.h +1 -9
  2540. data/third_party/zlib/zlib.h +12 -12
  2541. data/third_party/zlib/zutil.h +4 -25
  2542. metadata +631 -521
  2543. data/include/grpc/grpc_cronet.h +0 -37
  2544. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +0 -82
  2545. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +0 -426
  2546. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +0 -87
  2547. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +0 -32
  2548. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +0 -407
  2549. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +0 -124
  2550. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +0 -38
  2551. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +0 -108
  2552. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +0 -33
  2553. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -67
  2554. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -48
  2555. data/src/core/lib/channel/call_finalization.h +0 -88
  2556. data/src/core/lib/channel/status_util.cc +0 -153
  2557. data/src/core/lib/channel/status_util.h +0 -80
  2558. data/src/core/lib/config/config_vars.cc +0 -151
  2559. data/src/core/lib/config/config_vars.h +0 -128
  2560. data/src/core/lib/config/config_vars_non_generated.cc +0 -49
  2561. data/src/core/lib/config/core_configuration.cc +0 -111
  2562. data/src/core/lib/config/core_configuration.h +0 -242
  2563. data/src/core/lib/config/load_config.cc +0 -77
  2564. data/src/core/lib/config/load_config.h +0 -54
  2565. data/src/core/lib/event_engine/forkable.cc +0 -107
  2566. data/src/core/lib/event_engine/forkable.h +0 -69
  2567. data/src/core/lib/iomgr/executor.cc +0 -452
  2568. data/src/core/lib/iomgr/executor.h +0 -119
  2569. data/src/core/lib/iomgr/python_util.h +0 -46
  2570. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +0 -69
  2571. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +0 -50
  2572. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -75
  2573. data/src/core/lib/security/context/security_context.cc +0 -331
  2574. data/src/core/lib/security/context/security_context.h +0 -202
  2575. data/src/core/lib/security/credentials/alts/alts_credentials.cc +0 -116
  2576. data/src/core/lib/security/credentials/alts/alts_credentials.h +0 -127
  2577. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -71
  2578. data/src/core/lib/security/credentials/alts/check_gcp_environment.h +0 -57
  2579. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +0 -67
  2580. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +0 -32
  2581. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -101
  2582. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +0 -123
  2583. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +0 -45
  2584. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +0 -74
  2585. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +0 -55
  2586. data/src/core/lib/security/credentials/call_creds_util.cc +0 -97
  2587. data/src/core/lib/security/credentials/call_creds_util.h +0 -43
  2588. data/src/core/lib/security/credentials/channel_creds_registry.h +0 -126
  2589. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +0 -241
  2590. data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -168
  2591. data/src/core/lib/security/credentials/composite/composite_credentials.h +0 -134
  2592. data/src/core/lib/security/credentials/credentials.cc +0 -160
  2593. data/src/core/lib/security/credentials/credentials.h +0 -298
  2594. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +0 -529
  2595. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +0 -117
  2596. data/src/core/lib/security/credentials/external/aws_request_signer.cc +0 -230
  2597. data/src/core/lib/security/credentials/external/aws_request_signer.h +0 -72
  2598. data/src/core/lib/security/credentials/external/external_account_credentials.cc +0 -642
  2599. data/src/core/lib/security/credentials/external/external_account_credentials.h +0 -207
  2600. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -175
  2601. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +0 -80
  2602. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +0 -221
  2603. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +0 -73
  2604. data/src/core/lib/security/credentials/fake/fake_credentials.cc +0 -103
  2605. data/src/core/lib/security/credentials/fake/fake_credentials.h +0 -124
  2606. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +0 -195
  2607. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +0 -90
  2608. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +0 -38
  2609. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +0 -430
  2610. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +0 -101
  2611. data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -78
  2612. data/src/core/lib/security/credentials/iam/iam_credentials.h +0 -66
  2613. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +0 -71
  2614. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +0 -61
  2615. data/src/core/lib/security/credentials/jwt/json_token.cc +0 -318
  2616. data/src/core/lib/security/credentials/jwt/json_token.h +0 -78
  2617. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +0 -182
  2618. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +0 -106
  2619. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +0 -988
  2620. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +0 -122
  2621. data/src/core/lib/security/credentials/local/local_credentials.cc +0 -68
  2622. data/src/core/lib/security/credentials/local/local_credentials.h +0 -77
  2623. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +0 -653
  2624. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +0 -197
  2625. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +0 -202
  2626. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +0 -123
  2627. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +0 -474
  2628. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -144
  2629. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -338
  2630. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +0 -215
  2631. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -84
  2632. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +0 -482
  2633. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -206
  2634. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -237
  2635. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -169
  2636. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +0 -161
  2637. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +0 -145
  2638. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +0 -258
  2639. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +0 -130
  2640. data/src/core/lib/security/credentials/tls/tls_credentials.cc +0 -170
  2641. data/src/core/lib/security/credentials/tls/tls_credentials.h +0 -75
  2642. data/src/core/lib/security/credentials/tls/tls_utils.cc +0 -127
  2643. data/src/core/lib/security/credentials/tls/tls_utils.h +0 -50
  2644. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +0 -298
  2645. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +0 -175
  2646. data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -230
  2647. data/src/core/lib/security/credentials/xds/xds_credentials.h +0 -110
  2648. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +0 -303
  2649. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +0 -78
  2650. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -314
  2651. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -42
  2652. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -118
  2653. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +0 -102
  2654. data/src/core/lib/security/security_connector/load_system_roots.h +0 -35
  2655. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +0 -36
  2656. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +0 -165
  2657. data/src/core/lib/security/security_connector/load_system_roots_supported.h +0 -44
  2658. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -85
  2659. data/src/core/lib/security/security_connector/local/local_security_connector.cc +0 -306
  2660. data/src/core/lib/security/security_connector/local/local_security_connector.h +0 -62
  2661. data/src/core/lib/security/security_connector/security_connector.cc +0 -123
  2662. data/src/core/lib/security/security_connector/security_connector.h +0 -197
  2663. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +0 -403
  2664. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +0 -81
  2665. data/src/core/lib/security/security_connector/ssl_utils.cc +0 -628
  2666. data/src/core/lib/security/security_connector/ssl_utils.h +0 -188
  2667. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +0 -816
  2668. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +0 -285
  2669. data/src/core/lib/security/transport/auth_filters.h +0 -144
  2670. data/src/core/lib/security/transport/client_auth_filter.cc +0 -219
  2671. data/src/core/lib/security/transport/server_auth_filter.cc +0 -215
  2672. data/src/core/lib/security/util/json_util.cc +0 -69
  2673. data/src/core/lib/security/util/json_util.h +0 -43
  2674. data/src/core/lib/surface/client_call.cc +0 -427
  2675. data/src/core/lib/surface/client_call.h +0 -179
  2676. data/src/core/lib/surface/server_call.cc +0 -221
  2677. data/src/core/lib/surface/server_call.h +0 -168
  2678. data/src/core/lib/transport/call_arena_allocator.cc +0 -27
  2679. data/src/core/lib/transport/call_arena_allocator.h +0 -91
  2680. data/src/core/lib/transport/call_destination.h +0 -76
  2681. data/src/core/lib/transport/call_filters.cc +0 -142
  2682. data/src/core/lib/transport/call_filters.h +0 -1899
  2683. data/src/core/lib/transport/call_spine.cc +0 -131
  2684. data/src/core/lib/transport/call_spine.h +0 -435
  2685. data/src/core/lib/transport/call_state.cc +0 -39
  2686. data/src/core/lib/transport/call_state.h +0 -1061
  2687. data/src/core/lib/transport/custom_metadata.h +0 -30
  2688. data/src/core/lib/transport/http2_errors.h +0 -41
  2689. data/src/core/lib/transport/interception_chain.cc +0 -147
  2690. data/src/core/lib/transport/interception_chain.h +0 -253
  2691. data/src/core/lib/transport/message.cc +0 -44
  2692. data/src/core/lib/transport/message.h +0 -66
  2693. data/src/core/lib/transport/metadata.cc +0 -61
  2694. data/src/core/lib/transport/metadata.h +0 -113
  2695. data/src/core/lib/transport/metadata_batch.cc +0 -374
  2696. data/src/core/lib/transport/metadata_batch.h +0 -1599
  2697. data/src/core/lib/transport/metadata_compression_traits.h +0 -66
  2698. data/src/core/lib/transport/metadata_info.cc +0 -55
  2699. data/src/core/lib/transport/metadata_info.h +0 -85
  2700. data/src/core/lib/transport/parsed_metadata.cc +0 -35
  2701. data/src/core/lib/transport/parsed_metadata.h +0 -429
  2702. data/src/core/lib/transport/simple_slice_based_metadata.h +0 -53
  2703. data/src/core/util/atm.cc +0 -34
  2704. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +0 -50
  2705. data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +0 -108
  2706. data/third_party/abseil-cpp/absl/base/internal/invoke.h +0 -241
  2707. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +0 -108
  2708. data/third_party/abseil-cpp/absl/log/log_entry.cc +0 -41
  2709. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +0 -253
  2710. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +0 -131
  2711. data/third_party/abseil-cpp/absl/strings/cord_buffer.cc +0 -30
  2712. data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +0 -66
  2713. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +0 -78
  2714. data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +0 -82
  2715. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +0 -82
  2716. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -352
  2717. data/third_party/abseil-cpp/absl/types/internal/variant.h +0 -1622
  2718. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +0 -284
  2719. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +0 -95
  2720. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -89
  2721. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +0 -84
  2722. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +0 -151
  2723. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +0 -85
  2724. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +0 -465
  2725. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +0 -279
  2726. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +0 -235
  2727. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +0 -74
  2728. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +0 -457
  2729. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +0 -245
  2730. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +0 -259
  2731. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +0 -214
  2732. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +0 -183
  2733. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +0 -397
  2734. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +0 -103
  2735. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +0 -98
  2736. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +0 -105
  2737. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +0 -94
  2738. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +0 -241
  2739. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +0 -973
  2740. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +0 -708
  2741. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +0 -212
  2742. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +0 -317
  2743. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -126
  2744. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +0 -268
  2745. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +0 -479
  2746. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +0 -726
  2747. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +0 -309
  2748. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +0 -544
  2749. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +0 -92
  2750. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -235
  2751. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +0 -334
  2752. data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +0 -192
  2753. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +0 -480
  2754. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -102
  2755. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +0 -189
  2756. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +0 -133
  2757. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +0 -169
  2758. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +0 -57
  2759. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +0 -465
  2760. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +0 -158
  2761. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +0 -53
  2762. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +0 -266
  2763. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +0 -718
  2764. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -911
  2765. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +0 -156
  2766. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -224
  2767. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +0 -127
  2768. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +0 -152
  2769. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +0 -284
  2770. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +0 -841
  2771. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +0 -348
  2772. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +0 -228
  2773. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +0 -90
  2774. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +0 -455
  2775. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +0 -94
  2776. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +0 -598
  2777. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +0 -280
  2778. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +0 -514
  2779. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +0 -672
  2780. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -75
  2781. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -55
  2782. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -62
  2783. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -61
  2784. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +0 -93
  2785. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +0 -41
  2786. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -54
  2787. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -151
  2788. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +0 -326
  2789. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +0 -188
  2790. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +0 -2157
  2791. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +0 -18
  2792. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +0 -523
  2793. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +0 -871
  2794. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +0 -165
  2795. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +0 -480
  2796. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -266
  2797. data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +0 -1539
  2798. data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +0 -58
  2799. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +0 -997
  2800. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -419
  2801. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +0 -572
  2802. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +0 -96
  2803. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +0 -508
  2804. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -78
  2805. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +0 -124
  2806. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +0 -411
  2807. data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +0 -91
  2808. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +0 -903
  2809. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +0 -430
  2810. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +0 -547
  2811. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +0 -483
  2812. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +0 -137
  2813. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +0 -120
  2814. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +0 -338
  2815. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +0 -274
  2816. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +0 -332
  2817. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +0 -100
  2818. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +0 -224
  2819. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +0 -232
  2820. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +0 -646
  2821. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +0 -241
  2822. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +0 -106
  2823. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +0 -236
  2824. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +0 -146
  2825. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +0 -381
  2826. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +0 -209
  2827. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +0 -156
  2828. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +0 -236
  2829. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +0 -127
  2830. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c.inc +0 -1281
  2831. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c.inc +0 -242
  2832. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c.inc +0 -124
  2833. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +0 -279
  2834. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c.inc +0 -310
  2835. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c.inc +0 -541
  2836. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c.inc +0 -428
  2837. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +0 -267
  2838. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c.inc +0 -201
  2839. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c.inc +0 -234
  2840. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +0 -876
  2841. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +0 -87
  2842. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +0 -1320
  2843. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c.inc +0 -397
  2844. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +0 -331
  2845. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c.inc +0 -624
  2846. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c.inc +0 -146
  2847. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c.inc +0 -532
  2848. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc +0 -222
  2849. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +0 -744
  2850. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +0 -1077
  2851. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +0 -354
  2852. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c.inc +0 -137
  2853. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c.inc +0 -363
  2854. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +0 -499
  2855. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c.inc +0 -287
  2856. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c.inc +0 -717
  2857. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +0 -1464
  2858. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c.inc +0 -446
  2859. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.c.inc +0 -322
  2860. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c.inc +0 -245
  2861. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c.inc +0 -489
  2862. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c.inc +0 -288
  2863. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c.inc +0 -304
  2864. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.c.inc +0 -267
  2865. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c.inc +0 -1043
  2866. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +0 -561
  2867. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c.inc +0 -491
  2868. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c.inc +0 -104
  2869. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c.inc +0 -359
  2870. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c.inc +0 -1163
  2871. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +0 -734
  2872. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c.inc +0 -749
  2873. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc +0 -173
  2874. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c.inc +0 -336
  2875. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c.inc +0 -269
  2876. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c.inc +0 -255
  2877. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c.inc +0 -264
  2878. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c.inc +0 -130
  2879. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +0 -317
  2880. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +0 -29
  2881. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c.inc +0 -112
  2882. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c.inc +0 -256
  2883. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c.inc +0 -240
  2884. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +0 -37
  2885. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c.inc +0 -284
  2886. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c.inc +0 -164
  2887. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c.inc +0 -200
  2888. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c.inc +0 -196
  2889. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c.inc +0 -743
  2890. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c.inc +0 -302
  2891. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +0 -428
  2892. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c.inc +0 -87
  2893. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c.inc +0 -90
  2894. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c.inc +0 -220
  2895. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +0 -479
  2896. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c.inc +0 -241
  2897. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +0 -420
  2898. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +0 -1038
  2899. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +0 -1351
  2900. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +0 -121
  2901. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +0 -1038
  2902. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc +0 -328
  2903. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +0 -439
  2904. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +0 -359
  2905. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +0 -543
  2906. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +0 -218
  2907. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +0 -1092
  2908. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +0 -2234
  2909. data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +0 -70
  2910. data/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c +0 -279
  2911. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +0 -845
  2912. data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +0 -350
  2913. data/third_party/boringssl-with-bazel/src/crypto/mem.c +0 -613
  2914. data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +0 -73
  2915. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +0 -1687
  2916. data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +0 -90
  2917. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +0 -564
  2918. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +0 -122
  2919. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -243
  2920. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -294
  2921. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -789
  2922. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +0 -87
  2923. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -250
  2924. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -183
  2925. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -64
  2926. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -64
  2927. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +0 -193
  2928. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -523
  2929. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +0 -316
  2930. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -527
  2931. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +0 -1352
  2932. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +0 -314
  2933. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +0 -308
  2934. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +0 -847
  2935. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +0 -261
  2936. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +0 -65
  2937. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +0 -195
  2938. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +0 -44
  2939. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +0 -60
  2940. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getrandom_fillin.h +0 -64
  2941. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +0 -42
  2942. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +0 -174
  2943. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +0 -77
  2944. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +0 -37
  2945. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +0 -46
  2946. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +0 -328
  2947. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +0 -102
  2948. data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +0 -98
  2949. data/third_party/boringssl-with-bazel/src/crypto/refcount.c +0 -59
  2950. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +0 -79
  2951. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +0 -324
  2952. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +0 -570
  2953. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +0 -22
  2954. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +0 -79
  2955. data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +0 -101
  2956. data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +0 -50
  2957. data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +0 -133
  2958. data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +0 -54
  2959. data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +0 -150
  2960. data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +0 -61
  2961. data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +0 -71
  2962. data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +0 -140
  2963. data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +0 -53
  2964. data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +0 -44
  2965. data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +0 -136
  2966. data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +0 -70
  2967. data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +0 -135
  2968. data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +0 -45
  2969. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +0 -534
  2970. data/third_party/boringssl-with-bazel/src/crypto/thread.c +0 -110
  2971. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -51
  2972. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -150
  2973. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +0 -236
  2974. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +0 -1668
  2975. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +0 -687
  2976. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +0 -1267
  2977. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +0 -94
  2978. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +0 -136
  2979. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +0 -116
  2980. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +0 -178
  2981. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -585
  2982. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +0 -400
  2983. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -269
  2984. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +0 -79
  2985. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +0 -227
  2986. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +0 -786
  2987. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +0 -401
  2988. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +0 -145
  2989. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +0 -245
  2990. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -329
  2991. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +0 -121
  2992. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c +0 -221
  2993. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c +0 -73
  2994. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c +0 -634
  2995. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c +0 -135
  2996. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c +0 -141
  2997. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c +0 -416
  2998. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +0 -482
  2999. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +0 -598
  3000. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c +0 -112
  3001. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c +0 -154
  3002. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c +0 -270
  3003. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c +0 -122
  3004. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +0 -211
  3005. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c +0 -121
  3006. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +0 -344
  3007. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c +0 -555
  3008. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c +0 -81
  3009. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c +0 -142
  3010. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c +0 -150
  3011. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c +0 -224
  3012. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +0 -624
  3013. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c +0 -170
  3014. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +0 -1390
  3015. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -89
  3016. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +0 -227
  3017. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +0 -280
  3018. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +0 -108
  3019. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +0 -86
  3020. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -181
  3021. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -599
  3022. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +0 -206
  3023. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +0 -299
  3024. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +0 -240
  3025. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +0 -160
  3026. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +0 -189
  3027. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -291
  3028. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +0 -1638
  3029. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +0 -440
  3030. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +0 -277
  3031. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +0 -407
  3032. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +0 -109
  3033. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +0 -133
  3034. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +0 -149
  3035. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -356
  3036. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +0 -97
  3037. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +0 -384
  3038. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +0 -78
  3039. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +0 -527
  3040. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -210
  3041. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +0 -116
  3042. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +0 -93
  3043. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +0 -79
  3044. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +0 -70
  3045. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +0 -544
  3046. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +0 -209
  3047. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +0 -1514
  3048. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +0 -129
  3049. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +0 -90
  3050. data/third_party/upb/upb/message/internal/compare_unknown.c +0 -289
  3051. data/third_party/upb/upb/message/internal/compare_unknown.h +0 -49
@@ -30,6 +30,7 @@
30
30
  #include "src/core/lib/promise/detail/promise_factory.h"
31
31
  #include "src/core/lib/promise/detail/promise_like.h"
32
32
  #include "src/core/lib/promise/poll.h"
33
+ #include "src/core/lib/promise/promise.h"
33
34
  #include "src/core/util/construct_destruct.h"
34
35
  #include "src/core/util/debug_location.h"
35
36
 
@@ -118,12 +119,8 @@ struct SeqState<Traits, P, F0> {
118
119
  tail0:
119
120
  Destruct(&prior.next_factory);
120
121
  }
121
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
122
- : state(other.state), whence(other.whence) {
123
- DCHECK(state == State::kState0);
124
- Construct(&prior.current_promise, other.prior.current_promise);
125
- Construct(&prior.next_factory, other.prior.next_factory);
126
- }
122
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
123
+ const SeqState& other) noexcept = delete;
127
124
  SeqState& operator=(const SeqState& other) = delete;
128
125
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
129
126
  : state(other.state), whence(other.whence) {
@@ -133,15 +130,43 @@ struct SeqState<Traits, P, F0> {
133
130
  }
134
131
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
135
132
  delete;
133
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
134
+ grpc_channelz_v2_Promise* promise_proto,
135
+ upb_Arena* arena) const {
136
+ auto* seq_promise =
137
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
138
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
139
+ auto** steps =
140
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 2, arena);
141
+ for (int i = 0; i < 2; i++) {
142
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
143
+ }
144
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
145
+ steps[0], StdStringToUpbString(TypeName<P>()));
146
+ if (state == State::kState0) {
147
+ PromiseAsProto(prior.current_promise,
148
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
149
+ steps[0], arena),
150
+ arena);
151
+ }
152
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
153
+ steps[1], StdStringToUpbString(TypeName<F0>()));
154
+ if (state == State::kState1) {
155
+ PromiseAsProto(current_promise,
156
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
157
+ steps[1], arena),
158
+ arena);
159
+ }
160
+ }
136
161
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
137
162
  switch (state) {
138
163
  case State::kState0: {
139
- GRPC_TRACE_VLOG(promise_primitives, 2)
164
+ GRPC_TRACE_LOG(promise_primitives, INFO)
140
165
  .AtLocation(whence.file(), whence.line())
141
166
  << "seq[" << this << "]: begin poll step 1/2";
142
167
  auto result = prior.current_promise();
143
168
  PromiseResult0* p = result.value_if_ready();
144
- GRPC_TRACE_VLOG(promise_primitives, 2)
169
+ GRPC_TRACE_LOG(promise_primitives, INFO)
145
170
  .AtLocation(whence.file(), whence.line())
146
171
  << "seq[" << this << "]: poll step 1/2 gets "
147
172
  << (p != nullptr
@@ -163,14 +188,14 @@ struct SeqState<Traits, P, F0> {
163
188
  Construct(&current_promise, std::move(next_promise));
164
189
  state = State::kState1;
165
190
  }
166
- ABSL_FALLTHROUGH_INTENDED;
191
+ [[fallthrough]];
167
192
  default:
168
193
  case State::kState1: {
169
- GRPC_TRACE_VLOG(promise_primitives, 2)
194
+ GRPC_TRACE_LOG(promise_primitives, INFO)
170
195
  .AtLocation(whence.file(), whence.line())
171
196
  << "seq[" << this << "]: begin poll step 2/2";
172
197
  auto result = current_promise();
173
- GRPC_TRACE_VLOG(promise_primitives, 2)
198
+ GRPC_TRACE_LOG(promise_primitives, INFO)
174
199
  .AtLocation(whence.file(), whence.line())
175
200
  << "seq[" << this << "]: poll step 2/2 gets "
176
201
  << (result.ready() ? "ready" : "pending");
@@ -242,13 +267,8 @@ struct SeqState<Traits, P, F0, F1> {
242
267
  tail1:
243
268
  Destruct(&prior.next_factory);
244
269
  }
245
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
246
- : state(other.state), whence(other.whence) {
247
- DCHECK(state == State::kState0);
248
- Construct(&prior.prior.current_promise, other.prior.prior.current_promise);
249
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
250
- Construct(&prior.next_factory, other.prior.next_factory);
251
- }
270
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
271
+ const SeqState& other) noexcept = delete;
252
272
  SeqState& operator=(const SeqState& other) = delete;
253
273
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
254
274
  : state(other.state), whence(other.whence) {
@@ -261,15 +281,51 @@ struct SeqState<Traits, P, F0, F1> {
261
281
  }
262
282
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
263
283
  delete;
284
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
285
+ grpc_channelz_v2_Promise* promise_proto,
286
+ upb_Arena* arena) const {
287
+ auto* seq_promise =
288
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
289
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
290
+ auto** steps =
291
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 3, arena);
292
+ for (int i = 0; i < 3; i++) {
293
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
294
+ }
295
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
296
+ steps[0], StdStringToUpbString(TypeName<P>()));
297
+ if (state == State::kState0) {
298
+ PromiseAsProto(prior.prior.current_promise,
299
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
300
+ steps[0], arena),
301
+ arena);
302
+ }
303
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
304
+ steps[1], StdStringToUpbString(TypeName<F0>()));
305
+ if (state == State::kState1) {
306
+ PromiseAsProto(prior.current_promise,
307
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
308
+ steps[1], arena),
309
+ arena);
310
+ }
311
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
312
+ steps[2], StdStringToUpbString(TypeName<F1>()));
313
+ if (state == State::kState2) {
314
+ PromiseAsProto(current_promise,
315
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
316
+ steps[2], arena),
317
+ arena);
318
+ }
319
+ }
264
320
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
265
321
  switch (state) {
266
322
  case State::kState0: {
267
- GRPC_TRACE_VLOG(promise_primitives, 2)
323
+ GRPC_TRACE_LOG(promise_primitives, INFO)
268
324
  .AtLocation(whence.file(), whence.line())
269
325
  << "seq[" << this << "]: begin poll step 1/3";
270
326
  auto result = prior.prior.current_promise();
271
327
  PromiseResult0* p = result.value_if_ready();
272
- GRPC_TRACE_VLOG(promise_primitives, 2)
328
+ GRPC_TRACE_LOG(promise_primitives, INFO)
273
329
  .AtLocation(whence.file(), whence.line())
274
330
  << "seq[" << this << "]: poll step 1/3 gets "
275
331
  << (p != nullptr
@@ -291,14 +347,14 @@ struct SeqState<Traits, P, F0, F1> {
291
347
  Construct(&prior.current_promise, std::move(next_promise));
292
348
  state = State::kState1;
293
349
  }
294
- ABSL_FALLTHROUGH_INTENDED;
350
+ [[fallthrough]];
295
351
  case State::kState1: {
296
- GRPC_TRACE_VLOG(promise_primitives, 2)
352
+ GRPC_TRACE_LOG(promise_primitives, INFO)
297
353
  .AtLocation(whence.file(), whence.line())
298
354
  << "seq[" << this << "]: begin poll step 2/3";
299
355
  auto result = prior.current_promise();
300
356
  PromiseResult1* p = result.value_if_ready();
301
- GRPC_TRACE_VLOG(promise_primitives, 2)
357
+ GRPC_TRACE_LOG(promise_primitives, INFO)
302
358
  .AtLocation(whence.file(), whence.line())
303
359
  << "seq[" << this << "]: poll step 2/3 gets "
304
360
  << (p != nullptr
@@ -320,14 +376,14 @@ struct SeqState<Traits, P, F0, F1> {
320
376
  Construct(&current_promise, std::move(next_promise));
321
377
  state = State::kState2;
322
378
  }
323
- ABSL_FALLTHROUGH_INTENDED;
379
+ [[fallthrough]];
324
380
  default:
325
381
  case State::kState2: {
326
- GRPC_TRACE_VLOG(promise_primitives, 2)
382
+ GRPC_TRACE_LOG(promise_primitives, INFO)
327
383
  .AtLocation(whence.file(), whence.line())
328
384
  << "seq[" << this << "]: begin poll step 3/3";
329
385
  auto result = current_promise();
330
- GRPC_TRACE_VLOG(promise_primitives, 2)
386
+ GRPC_TRACE_LOG(promise_primitives, INFO)
331
387
  .AtLocation(whence.file(), whence.line())
332
388
  << "seq[" << this << "]: poll step 3/3 gets "
333
389
  << (result.ready() ? "ready" : "pending");
@@ -418,16 +474,8 @@ struct SeqState<Traits, P, F0, F1, F2> {
418
474
  tail2:
419
475
  Destruct(&prior.next_factory);
420
476
  }
421
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
422
- : state(other.state), whence(other.whence) {
423
- DCHECK(state == State::kState0);
424
- Construct(&prior.prior.prior.current_promise,
425
- other.prior.prior.prior.current_promise);
426
- Construct(&prior.prior.prior.next_factory,
427
- other.prior.prior.prior.next_factory);
428
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
429
- Construct(&prior.next_factory, other.prior.next_factory);
430
- }
477
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
478
+ const SeqState& other) noexcept = delete;
431
479
  SeqState& operator=(const SeqState& other) = delete;
432
480
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
433
481
  : state(other.state), whence(other.whence) {
@@ -442,15 +490,59 @@ struct SeqState<Traits, P, F0, F1, F2> {
442
490
  }
443
491
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
444
492
  delete;
493
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
494
+ grpc_channelz_v2_Promise* promise_proto,
495
+ upb_Arena* arena) const {
496
+ auto* seq_promise =
497
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
498
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
499
+ auto** steps =
500
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 4, arena);
501
+ for (int i = 0; i < 4; i++) {
502
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
503
+ }
504
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
505
+ steps[0], StdStringToUpbString(TypeName<P>()));
506
+ if (state == State::kState0) {
507
+ PromiseAsProto(prior.prior.prior.current_promise,
508
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
509
+ steps[0], arena),
510
+ arena);
511
+ }
512
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
513
+ steps[1], StdStringToUpbString(TypeName<F0>()));
514
+ if (state == State::kState1) {
515
+ PromiseAsProto(prior.prior.current_promise,
516
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
517
+ steps[1], arena),
518
+ arena);
519
+ }
520
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
521
+ steps[2], StdStringToUpbString(TypeName<F1>()));
522
+ if (state == State::kState2) {
523
+ PromiseAsProto(prior.current_promise,
524
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
525
+ steps[2], arena),
526
+ arena);
527
+ }
528
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
529
+ steps[3], StdStringToUpbString(TypeName<F2>()));
530
+ if (state == State::kState3) {
531
+ PromiseAsProto(current_promise,
532
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
533
+ steps[3], arena),
534
+ arena);
535
+ }
536
+ }
445
537
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
446
538
  switch (state) {
447
539
  case State::kState0: {
448
- GRPC_TRACE_VLOG(promise_primitives, 2)
540
+ GRPC_TRACE_LOG(promise_primitives, INFO)
449
541
  .AtLocation(whence.file(), whence.line())
450
542
  << "seq[" << this << "]: begin poll step 1/4";
451
543
  auto result = prior.prior.prior.current_promise();
452
544
  PromiseResult0* p = result.value_if_ready();
453
- GRPC_TRACE_VLOG(promise_primitives, 2)
545
+ GRPC_TRACE_LOG(promise_primitives, INFO)
454
546
  .AtLocation(whence.file(), whence.line())
455
547
  << "seq[" << this << "]: poll step 1/4 gets "
456
548
  << (p != nullptr
@@ -472,14 +564,14 @@ struct SeqState<Traits, P, F0, F1, F2> {
472
564
  Construct(&prior.prior.current_promise, std::move(next_promise));
473
565
  state = State::kState1;
474
566
  }
475
- ABSL_FALLTHROUGH_INTENDED;
567
+ [[fallthrough]];
476
568
  case State::kState1: {
477
- GRPC_TRACE_VLOG(promise_primitives, 2)
569
+ GRPC_TRACE_LOG(promise_primitives, INFO)
478
570
  .AtLocation(whence.file(), whence.line())
479
571
  << "seq[" << this << "]: begin poll step 2/4";
480
572
  auto result = prior.prior.current_promise();
481
573
  PromiseResult1* p = result.value_if_ready();
482
- GRPC_TRACE_VLOG(promise_primitives, 2)
574
+ GRPC_TRACE_LOG(promise_primitives, INFO)
483
575
  .AtLocation(whence.file(), whence.line())
484
576
  << "seq[" << this << "]: poll step 2/4 gets "
485
577
  << (p != nullptr
@@ -501,14 +593,14 @@ struct SeqState<Traits, P, F0, F1, F2> {
501
593
  Construct(&prior.current_promise, std::move(next_promise));
502
594
  state = State::kState2;
503
595
  }
504
- ABSL_FALLTHROUGH_INTENDED;
596
+ [[fallthrough]];
505
597
  case State::kState2: {
506
- GRPC_TRACE_VLOG(promise_primitives, 2)
598
+ GRPC_TRACE_LOG(promise_primitives, INFO)
507
599
  .AtLocation(whence.file(), whence.line())
508
600
  << "seq[" << this << "]: begin poll step 3/4";
509
601
  auto result = prior.current_promise();
510
602
  PromiseResult2* p = result.value_if_ready();
511
- GRPC_TRACE_VLOG(promise_primitives, 2)
603
+ GRPC_TRACE_LOG(promise_primitives, INFO)
512
604
  .AtLocation(whence.file(), whence.line())
513
605
  << "seq[" << this << "]: poll step 3/4 gets "
514
606
  << (p != nullptr
@@ -530,14 +622,14 @@ struct SeqState<Traits, P, F0, F1, F2> {
530
622
  Construct(&current_promise, std::move(next_promise));
531
623
  state = State::kState3;
532
624
  }
533
- ABSL_FALLTHROUGH_INTENDED;
625
+ [[fallthrough]];
534
626
  default:
535
627
  case State::kState3: {
536
- GRPC_TRACE_VLOG(promise_primitives, 2)
628
+ GRPC_TRACE_LOG(promise_primitives, INFO)
537
629
  .AtLocation(whence.file(), whence.line())
538
630
  << "seq[" << this << "]: begin poll step 4/4";
539
631
  auto result = current_promise();
540
- GRPC_TRACE_VLOG(promise_primitives, 2)
632
+ GRPC_TRACE_LOG(promise_primitives, INFO)
541
633
  .AtLocation(whence.file(), whence.line())
542
634
  << "seq[" << this << "]: poll step 4/4 gets "
543
635
  << (result.ready() ? "ready" : "pending");
@@ -646,18 +738,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
646
738
  tail3:
647
739
  Destruct(&prior.next_factory);
648
740
  }
649
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
650
- : state(other.state), whence(other.whence) {
651
- DCHECK(state == State::kState0);
652
- Construct(&prior.prior.prior.prior.current_promise,
653
- other.prior.prior.prior.prior.current_promise);
654
- Construct(&prior.prior.prior.prior.next_factory,
655
- other.prior.prior.prior.prior.next_factory);
656
- Construct(&prior.prior.prior.next_factory,
657
- other.prior.prior.prior.next_factory);
658
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
659
- Construct(&prior.next_factory, other.prior.next_factory);
660
- }
741
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
742
+ const SeqState& other) noexcept = delete;
661
743
  SeqState& operator=(const SeqState& other) = delete;
662
744
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
663
745
  : state(other.state), whence(other.whence) {
@@ -674,15 +756,67 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
674
756
  }
675
757
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
676
758
  delete;
759
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
760
+ grpc_channelz_v2_Promise* promise_proto,
761
+ upb_Arena* arena) const {
762
+ auto* seq_promise =
763
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
764
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
765
+ auto** steps =
766
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 5, arena);
767
+ for (int i = 0; i < 5; i++) {
768
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
769
+ }
770
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
771
+ steps[0], StdStringToUpbString(TypeName<P>()));
772
+ if (state == State::kState0) {
773
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
774
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
775
+ steps[0], arena),
776
+ arena);
777
+ }
778
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
779
+ steps[1], StdStringToUpbString(TypeName<F0>()));
780
+ if (state == State::kState1) {
781
+ PromiseAsProto(prior.prior.prior.current_promise,
782
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
783
+ steps[1], arena),
784
+ arena);
785
+ }
786
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
787
+ steps[2], StdStringToUpbString(TypeName<F1>()));
788
+ if (state == State::kState2) {
789
+ PromiseAsProto(prior.prior.current_promise,
790
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
791
+ steps[2], arena),
792
+ arena);
793
+ }
794
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
795
+ steps[3], StdStringToUpbString(TypeName<F2>()));
796
+ if (state == State::kState3) {
797
+ PromiseAsProto(prior.current_promise,
798
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
799
+ steps[3], arena),
800
+ arena);
801
+ }
802
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
803
+ steps[4], StdStringToUpbString(TypeName<F3>()));
804
+ if (state == State::kState4) {
805
+ PromiseAsProto(current_promise,
806
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
807
+ steps[4], arena),
808
+ arena);
809
+ }
810
+ }
677
811
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
678
812
  switch (state) {
679
813
  case State::kState0: {
680
- GRPC_TRACE_VLOG(promise_primitives, 2)
814
+ GRPC_TRACE_LOG(promise_primitives, INFO)
681
815
  .AtLocation(whence.file(), whence.line())
682
816
  << "seq[" << this << "]: begin poll step 1/5";
683
817
  auto result = prior.prior.prior.prior.current_promise();
684
818
  PromiseResult0* p = result.value_if_ready();
685
- GRPC_TRACE_VLOG(promise_primitives, 2)
819
+ GRPC_TRACE_LOG(promise_primitives, INFO)
686
820
  .AtLocation(whence.file(), whence.line())
687
821
  << "seq[" << this << "]: poll step 1/5 gets "
688
822
  << (p != nullptr
@@ -704,14 +838,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
704
838
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
705
839
  state = State::kState1;
706
840
  }
707
- ABSL_FALLTHROUGH_INTENDED;
841
+ [[fallthrough]];
708
842
  case State::kState1: {
709
- GRPC_TRACE_VLOG(promise_primitives, 2)
843
+ GRPC_TRACE_LOG(promise_primitives, INFO)
710
844
  .AtLocation(whence.file(), whence.line())
711
845
  << "seq[" << this << "]: begin poll step 2/5";
712
846
  auto result = prior.prior.prior.current_promise();
713
847
  PromiseResult1* p = result.value_if_ready();
714
- GRPC_TRACE_VLOG(promise_primitives, 2)
848
+ GRPC_TRACE_LOG(promise_primitives, INFO)
715
849
  .AtLocation(whence.file(), whence.line())
716
850
  << "seq[" << this << "]: poll step 2/5 gets "
717
851
  << (p != nullptr
@@ -733,14 +867,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
733
867
  Construct(&prior.prior.current_promise, std::move(next_promise));
734
868
  state = State::kState2;
735
869
  }
736
- ABSL_FALLTHROUGH_INTENDED;
870
+ [[fallthrough]];
737
871
  case State::kState2: {
738
- GRPC_TRACE_VLOG(promise_primitives, 2)
872
+ GRPC_TRACE_LOG(promise_primitives, INFO)
739
873
  .AtLocation(whence.file(), whence.line())
740
874
  << "seq[" << this << "]: begin poll step 3/5";
741
875
  auto result = prior.prior.current_promise();
742
876
  PromiseResult2* p = result.value_if_ready();
743
- GRPC_TRACE_VLOG(promise_primitives, 2)
877
+ GRPC_TRACE_LOG(promise_primitives, INFO)
744
878
  .AtLocation(whence.file(), whence.line())
745
879
  << "seq[" << this << "]: poll step 3/5 gets "
746
880
  << (p != nullptr
@@ -762,14 +896,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
762
896
  Construct(&prior.current_promise, std::move(next_promise));
763
897
  state = State::kState3;
764
898
  }
765
- ABSL_FALLTHROUGH_INTENDED;
899
+ [[fallthrough]];
766
900
  case State::kState3: {
767
- GRPC_TRACE_VLOG(promise_primitives, 2)
901
+ GRPC_TRACE_LOG(promise_primitives, INFO)
768
902
  .AtLocation(whence.file(), whence.line())
769
903
  << "seq[" << this << "]: begin poll step 4/5";
770
904
  auto result = prior.current_promise();
771
905
  PromiseResult3* p = result.value_if_ready();
772
- GRPC_TRACE_VLOG(promise_primitives, 2)
906
+ GRPC_TRACE_LOG(promise_primitives, INFO)
773
907
  .AtLocation(whence.file(), whence.line())
774
908
  << "seq[" << this << "]: poll step 4/5 gets "
775
909
  << (p != nullptr
@@ -791,14 +925,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
791
925
  Construct(&current_promise, std::move(next_promise));
792
926
  state = State::kState4;
793
927
  }
794
- ABSL_FALLTHROUGH_INTENDED;
928
+ [[fallthrough]];
795
929
  default:
796
930
  case State::kState4: {
797
- GRPC_TRACE_VLOG(promise_primitives, 2)
931
+ GRPC_TRACE_LOG(promise_primitives, INFO)
798
932
  .AtLocation(whence.file(), whence.line())
799
933
  << "seq[" << this << "]: begin poll step 5/5";
800
934
  auto result = current_promise();
801
- GRPC_TRACE_VLOG(promise_primitives, 2)
935
+ GRPC_TRACE_LOG(promise_primitives, INFO)
802
936
  .AtLocation(whence.file(), whence.line())
803
937
  << "seq[" << this << "]: poll step 5/5 gets "
804
938
  << (result.ready() ? "ready" : "pending");
@@ -934,20 +1068,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
934
1068
  tail4:
935
1069
  Destruct(&prior.next_factory);
936
1070
  }
937
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
938
- : state(other.state), whence(other.whence) {
939
- DCHECK(state == State::kState0);
940
- Construct(&prior.prior.prior.prior.prior.current_promise,
941
- other.prior.prior.prior.prior.prior.current_promise);
942
- Construct(&prior.prior.prior.prior.prior.next_factory,
943
- other.prior.prior.prior.prior.prior.next_factory);
944
- Construct(&prior.prior.prior.prior.next_factory,
945
- other.prior.prior.prior.prior.next_factory);
946
- Construct(&prior.prior.prior.next_factory,
947
- other.prior.prior.prior.next_factory);
948
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
949
- Construct(&prior.next_factory, other.prior.next_factory);
950
- }
1071
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
1072
+ const SeqState& other) noexcept = delete;
951
1073
  SeqState& operator=(const SeqState& other) = delete;
952
1074
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
953
1075
  : state(other.state), whence(other.whence) {
@@ -966,15 +1088,75 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
966
1088
  }
967
1089
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
968
1090
  delete;
1091
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
1092
+ grpc_channelz_v2_Promise* promise_proto,
1093
+ upb_Arena* arena) const {
1094
+ auto* seq_promise =
1095
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
1096
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
1097
+ auto** steps =
1098
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 6, arena);
1099
+ for (int i = 0; i < 6; i++) {
1100
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
1101
+ }
1102
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1103
+ steps[0], StdStringToUpbString(TypeName<P>()));
1104
+ if (state == State::kState0) {
1105
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
1106
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1107
+ steps[0], arena),
1108
+ arena);
1109
+ }
1110
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1111
+ steps[1], StdStringToUpbString(TypeName<F0>()));
1112
+ if (state == State::kState1) {
1113
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
1114
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1115
+ steps[1], arena),
1116
+ arena);
1117
+ }
1118
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1119
+ steps[2], StdStringToUpbString(TypeName<F1>()));
1120
+ if (state == State::kState2) {
1121
+ PromiseAsProto(prior.prior.prior.current_promise,
1122
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1123
+ steps[2], arena),
1124
+ arena);
1125
+ }
1126
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1127
+ steps[3], StdStringToUpbString(TypeName<F2>()));
1128
+ if (state == State::kState3) {
1129
+ PromiseAsProto(prior.prior.current_promise,
1130
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1131
+ steps[3], arena),
1132
+ arena);
1133
+ }
1134
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1135
+ steps[4], StdStringToUpbString(TypeName<F3>()));
1136
+ if (state == State::kState4) {
1137
+ PromiseAsProto(prior.current_promise,
1138
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1139
+ steps[4], arena),
1140
+ arena);
1141
+ }
1142
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1143
+ steps[5], StdStringToUpbString(TypeName<F4>()));
1144
+ if (state == State::kState5) {
1145
+ PromiseAsProto(current_promise,
1146
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1147
+ steps[5], arena),
1148
+ arena);
1149
+ }
1150
+ }
969
1151
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
970
1152
  switch (state) {
971
1153
  case State::kState0: {
972
- GRPC_TRACE_VLOG(promise_primitives, 2)
1154
+ GRPC_TRACE_LOG(promise_primitives, INFO)
973
1155
  .AtLocation(whence.file(), whence.line())
974
1156
  << "seq[" << this << "]: begin poll step 1/6";
975
1157
  auto result = prior.prior.prior.prior.prior.current_promise();
976
1158
  PromiseResult0* p = result.value_if_ready();
977
- GRPC_TRACE_VLOG(promise_primitives, 2)
1159
+ GRPC_TRACE_LOG(promise_primitives, INFO)
978
1160
  .AtLocation(whence.file(), whence.line())
979
1161
  << "seq[" << this << "]: poll step 1/6 gets "
980
1162
  << (p != nullptr
@@ -997,14 +1179,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
997
1179
  std::move(next_promise));
998
1180
  state = State::kState1;
999
1181
  }
1000
- ABSL_FALLTHROUGH_INTENDED;
1182
+ [[fallthrough]];
1001
1183
  case State::kState1: {
1002
- GRPC_TRACE_VLOG(promise_primitives, 2)
1184
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1003
1185
  .AtLocation(whence.file(), whence.line())
1004
1186
  << "seq[" << this << "]: begin poll step 2/6";
1005
1187
  auto result = prior.prior.prior.prior.current_promise();
1006
1188
  PromiseResult1* p = result.value_if_ready();
1007
- GRPC_TRACE_VLOG(promise_primitives, 2)
1189
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1008
1190
  .AtLocation(whence.file(), whence.line())
1009
1191
  << "seq[" << this << "]: poll step 2/6 gets "
1010
1192
  << (p != nullptr
@@ -1026,14 +1208,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
1026
1208
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
1027
1209
  state = State::kState2;
1028
1210
  }
1029
- ABSL_FALLTHROUGH_INTENDED;
1211
+ [[fallthrough]];
1030
1212
  case State::kState2: {
1031
- GRPC_TRACE_VLOG(promise_primitives, 2)
1213
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1032
1214
  .AtLocation(whence.file(), whence.line())
1033
1215
  << "seq[" << this << "]: begin poll step 3/6";
1034
1216
  auto result = prior.prior.prior.current_promise();
1035
1217
  PromiseResult2* p = result.value_if_ready();
1036
- GRPC_TRACE_VLOG(promise_primitives, 2)
1218
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1037
1219
  .AtLocation(whence.file(), whence.line())
1038
1220
  << "seq[" << this << "]: poll step 3/6 gets "
1039
1221
  << (p != nullptr
@@ -1055,14 +1237,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
1055
1237
  Construct(&prior.prior.current_promise, std::move(next_promise));
1056
1238
  state = State::kState3;
1057
1239
  }
1058
- ABSL_FALLTHROUGH_INTENDED;
1240
+ [[fallthrough]];
1059
1241
  case State::kState3: {
1060
- GRPC_TRACE_VLOG(promise_primitives, 2)
1242
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1061
1243
  .AtLocation(whence.file(), whence.line())
1062
1244
  << "seq[" << this << "]: begin poll step 4/6";
1063
1245
  auto result = prior.prior.current_promise();
1064
1246
  PromiseResult3* p = result.value_if_ready();
1065
- GRPC_TRACE_VLOG(promise_primitives, 2)
1247
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1066
1248
  .AtLocation(whence.file(), whence.line())
1067
1249
  << "seq[" << this << "]: poll step 4/6 gets "
1068
1250
  << (p != nullptr
@@ -1084,14 +1266,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
1084
1266
  Construct(&prior.current_promise, std::move(next_promise));
1085
1267
  state = State::kState4;
1086
1268
  }
1087
- ABSL_FALLTHROUGH_INTENDED;
1269
+ [[fallthrough]];
1088
1270
  case State::kState4: {
1089
- GRPC_TRACE_VLOG(promise_primitives, 2)
1271
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1090
1272
  .AtLocation(whence.file(), whence.line())
1091
1273
  << "seq[" << this << "]: begin poll step 5/6";
1092
1274
  auto result = prior.current_promise();
1093
1275
  PromiseResult4* p = result.value_if_ready();
1094
- GRPC_TRACE_VLOG(promise_primitives, 2)
1276
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1095
1277
  .AtLocation(whence.file(), whence.line())
1096
1278
  << "seq[" << this << "]: poll step 5/6 gets "
1097
1279
  << (p != nullptr
@@ -1113,14 +1295,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
1113
1295
  Construct(&current_promise, std::move(next_promise));
1114
1296
  state = State::kState5;
1115
1297
  }
1116
- ABSL_FALLTHROUGH_INTENDED;
1298
+ [[fallthrough]];
1117
1299
  default:
1118
1300
  case State::kState5: {
1119
- GRPC_TRACE_VLOG(promise_primitives, 2)
1301
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1120
1302
  .AtLocation(whence.file(), whence.line())
1121
1303
  << "seq[" << this << "]: begin poll step 6/6";
1122
1304
  auto result = current_promise();
1123
- GRPC_TRACE_VLOG(promise_primitives, 2)
1305
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1124
1306
  .AtLocation(whence.file(), whence.line())
1125
1307
  << "seq[" << this << "]: poll step 6/6 gets "
1126
1308
  << (result.ready() ? "ready" : "pending");
@@ -1277,22 +1459,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1277
1459
  tail5:
1278
1460
  Destruct(&prior.next_factory);
1279
1461
  }
1280
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
1281
- : state(other.state), whence(other.whence) {
1282
- DCHECK(state == State::kState0);
1283
- Construct(&prior.prior.prior.prior.prior.prior.current_promise,
1284
- other.prior.prior.prior.prior.prior.prior.current_promise);
1285
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
1286
- other.prior.prior.prior.prior.prior.prior.next_factory);
1287
- Construct(&prior.prior.prior.prior.prior.next_factory,
1288
- other.prior.prior.prior.prior.prior.next_factory);
1289
- Construct(&prior.prior.prior.prior.next_factory,
1290
- other.prior.prior.prior.prior.next_factory);
1291
- Construct(&prior.prior.prior.next_factory,
1292
- other.prior.prior.prior.next_factory);
1293
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
1294
- Construct(&prior.next_factory, other.prior.next_factory);
1295
- }
1462
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
1463
+ const SeqState& other) noexcept = delete;
1296
1464
  SeqState& operator=(const SeqState& other) = delete;
1297
1465
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
1298
1466
  : state(other.state), whence(other.whence) {
@@ -1315,15 +1483,83 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1315
1483
  }
1316
1484
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
1317
1485
  delete;
1486
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
1487
+ grpc_channelz_v2_Promise* promise_proto,
1488
+ upb_Arena* arena) const {
1489
+ auto* seq_promise =
1490
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
1491
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
1492
+ auto** steps =
1493
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 7, arena);
1494
+ for (int i = 0; i < 7; i++) {
1495
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
1496
+ }
1497
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1498
+ steps[0], StdStringToUpbString(TypeName<P>()));
1499
+ if (state == State::kState0) {
1500
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
1501
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1502
+ steps[0], arena),
1503
+ arena);
1504
+ }
1505
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1506
+ steps[1], StdStringToUpbString(TypeName<F0>()));
1507
+ if (state == State::kState1) {
1508
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
1509
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1510
+ steps[1], arena),
1511
+ arena);
1512
+ }
1513
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1514
+ steps[2], StdStringToUpbString(TypeName<F1>()));
1515
+ if (state == State::kState2) {
1516
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
1517
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1518
+ steps[2], arena),
1519
+ arena);
1520
+ }
1521
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1522
+ steps[3], StdStringToUpbString(TypeName<F2>()));
1523
+ if (state == State::kState3) {
1524
+ PromiseAsProto(prior.prior.prior.current_promise,
1525
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1526
+ steps[3], arena),
1527
+ arena);
1528
+ }
1529
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1530
+ steps[4], StdStringToUpbString(TypeName<F3>()));
1531
+ if (state == State::kState4) {
1532
+ PromiseAsProto(prior.prior.current_promise,
1533
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1534
+ steps[4], arena),
1535
+ arena);
1536
+ }
1537
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1538
+ steps[5], StdStringToUpbString(TypeName<F4>()));
1539
+ if (state == State::kState5) {
1540
+ PromiseAsProto(prior.current_promise,
1541
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1542
+ steps[5], arena),
1543
+ arena);
1544
+ }
1545
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1546
+ steps[6], StdStringToUpbString(TypeName<F5>()));
1547
+ if (state == State::kState6) {
1548
+ PromiseAsProto(current_promise,
1549
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1550
+ steps[6], arena),
1551
+ arena);
1552
+ }
1553
+ }
1318
1554
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
1319
1555
  switch (state) {
1320
1556
  case State::kState0: {
1321
- GRPC_TRACE_VLOG(promise_primitives, 2)
1557
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1322
1558
  .AtLocation(whence.file(), whence.line())
1323
1559
  << "seq[" << this << "]: begin poll step 1/7";
1324
1560
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
1325
1561
  PromiseResult0* p = result.value_if_ready();
1326
- GRPC_TRACE_VLOG(promise_primitives, 2)
1562
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1327
1563
  .AtLocation(whence.file(), whence.line())
1328
1564
  << "seq[" << this << "]: poll step 1/7 gets "
1329
1565
  << (p != nullptr
@@ -1346,14 +1582,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1346
1582
  std::move(next_promise));
1347
1583
  state = State::kState1;
1348
1584
  }
1349
- ABSL_FALLTHROUGH_INTENDED;
1585
+ [[fallthrough]];
1350
1586
  case State::kState1: {
1351
- GRPC_TRACE_VLOG(promise_primitives, 2)
1587
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1352
1588
  .AtLocation(whence.file(), whence.line())
1353
1589
  << "seq[" << this << "]: begin poll step 2/7";
1354
1590
  auto result = prior.prior.prior.prior.prior.current_promise();
1355
1591
  PromiseResult1* p = result.value_if_ready();
1356
- GRPC_TRACE_VLOG(promise_primitives, 2)
1592
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1357
1593
  .AtLocation(whence.file(), whence.line())
1358
1594
  << "seq[" << this << "]: poll step 2/7 gets "
1359
1595
  << (p != nullptr
@@ -1376,14 +1612,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1376
1612
  std::move(next_promise));
1377
1613
  state = State::kState2;
1378
1614
  }
1379
- ABSL_FALLTHROUGH_INTENDED;
1615
+ [[fallthrough]];
1380
1616
  case State::kState2: {
1381
- GRPC_TRACE_VLOG(promise_primitives, 2)
1617
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1382
1618
  .AtLocation(whence.file(), whence.line())
1383
1619
  << "seq[" << this << "]: begin poll step 3/7";
1384
1620
  auto result = prior.prior.prior.prior.current_promise();
1385
1621
  PromiseResult2* p = result.value_if_ready();
1386
- GRPC_TRACE_VLOG(promise_primitives, 2)
1622
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1387
1623
  .AtLocation(whence.file(), whence.line())
1388
1624
  << "seq[" << this << "]: poll step 3/7 gets "
1389
1625
  << (p != nullptr
@@ -1405,14 +1641,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1405
1641
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
1406
1642
  state = State::kState3;
1407
1643
  }
1408
- ABSL_FALLTHROUGH_INTENDED;
1644
+ [[fallthrough]];
1409
1645
  case State::kState3: {
1410
- GRPC_TRACE_VLOG(promise_primitives, 2)
1646
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1411
1647
  .AtLocation(whence.file(), whence.line())
1412
1648
  << "seq[" << this << "]: begin poll step 4/7";
1413
1649
  auto result = prior.prior.prior.current_promise();
1414
1650
  PromiseResult3* p = result.value_if_ready();
1415
- GRPC_TRACE_VLOG(promise_primitives, 2)
1651
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1416
1652
  .AtLocation(whence.file(), whence.line())
1417
1653
  << "seq[" << this << "]: poll step 4/7 gets "
1418
1654
  << (p != nullptr
@@ -1434,14 +1670,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1434
1670
  Construct(&prior.prior.current_promise, std::move(next_promise));
1435
1671
  state = State::kState4;
1436
1672
  }
1437
- ABSL_FALLTHROUGH_INTENDED;
1673
+ [[fallthrough]];
1438
1674
  case State::kState4: {
1439
- GRPC_TRACE_VLOG(promise_primitives, 2)
1675
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1440
1676
  .AtLocation(whence.file(), whence.line())
1441
1677
  << "seq[" << this << "]: begin poll step 5/7";
1442
1678
  auto result = prior.prior.current_promise();
1443
1679
  PromiseResult4* p = result.value_if_ready();
1444
- GRPC_TRACE_VLOG(promise_primitives, 2)
1680
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1445
1681
  .AtLocation(whence.file(), whence.line())
1446
1682
  << "seq[" << this << "]: poll step 5/7 gets "
1447
1683
  << (p != nullptr
@@ -1463,14 +1699,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1463
1699
  Construct(&prior.current_promise, std::move(next_promise));
1464
1700
  state = State::kState5;
1465
1701
  }
1466
- ABSL_FALLTHROUGH_INTENDED;
1702
+ [[fallthrough]];
1467
1703
  case State::kState5: {
1468
- GRPC_TRACE_VLOG(promise_primitives, 2)
1704
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1469
1705
  .AtLocation(whence.file(), whence.line())
1470
1706
  << "seq[" << this << "]: begin poll step 6/7";
1471
1707
  auto result = prior.current_promise();
1472
1708
  PromiseResult5* p = result.value_if_ready();
1473
- GRPC_TRACE_VLOG(promise_primitives, 2)
1709
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1474
1710
  .AtLocation(whence.file(), whence.line())
1475
1711
  << "seq[" << this << "]: poll step 6/7 gets "
1476
1712
  << (p != nullptr
@@ -1492,14 +1728,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
1492
1728
  Construct(&current_promise, std::move(next_promise));
1493
1729
  state = State::kState6;
1494
1730
  }
1495
- ABSL_FALLTHROUGH_INTENDED;
1731
+ [[fallthrough]];
1496
1732
  default:
1497
1733
  case State::kState6: {
1498
- GRPC_TRACE_VLOG(promise_primitives, 2)
1734
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1499
1735
  .AtLocation(whence.file(), whence.line())
1500
1736
  << "seq[" << this << "]: begin poll step 7/7";
1501
1737
  auto result = current_promise();
1502
- GRPC_TRACE_VLOG(promise_primitives, 2)
1738
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1503
1739
  .AtLocation(whence.file(), whence.line())
1504
1740
  << "seq[" << this << "]: poll step 7/7 gets "
1505
1741
  << (result.ready() ? "ready" : "pending");
@@ -1677,24 +1913,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1677
1913
  tail6:
1678
1914
  Destruct(&prior.next_factory);
1679
1915
  }
1680
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
1681
- : state(other.state), whence(other.whence) {
1682
- DCHECK(state == State::kState0);
1683
- Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
1684
- other.prior.prior.prior.prior.prior.prior.prior.current_promise);
1685
- Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
1686
- other.prior.prior.prior.prior.prior.prior.prior.next_factory);
1687
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
1688
- other.prior.prior.prior.prior.prior.prior.next_factory);
1689
- Construct(&prior.prior.prior.prior.prior.next_factory,
1690
- other.prior.prior.prior.prior.prior.next_factory);
1691
- Construct(&prior.prior.prior.prior.next_factory,
1692
- other.prior.prior.prior.prior.next_factory);
1693
- Construct(&prior.prior.prior.next_factory,
1694
- other.prior.prior.prior.next_factory);
1695
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
1696
- Construct(&prior.next_factory, other.prior.next_factory);
1697
- }
1916
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
1917
+ const SeqState& other) noexcept = delete;
1698
1918
  SeqState& operator=(const SeqState& other) = delete;
1699
1919
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
1700
1920
  : state(other.state), whence(other.whence) {
@@ -1722,16 +1942,92 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1722
1942
  }
1723
1943
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
1724
1944
  delete;
1945
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
1946
+ grpc_channelz_v2_Promise* promise_proto,
1947
+ upb_Arena* arena) const {
1948
+ auto* seq_promise =
1949
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
1950
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
1951
+ auto** steps =
1952
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 8, arena);
1953
+ for (int i = 0; i < 8; i++) {
1954
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
1955
+ }
1956
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1957
+ steps[0], StdStringToUpbString(TypeName<P>()));
1958
+ if (state == State::kState0) {
1959
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
1960
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1961
+ steps[0], arena),
1962
+ arena);
1963
+ }
1964
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1965
+ steps[1], StdStringToUpbString(TypeName<F0>()));
1966
+ if (state == State::kState1) {
1967
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
1968
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1969
+ steps[1], arena),
1970
+ arena);
1971
+ }
1972
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1973
+ steps[2], StdStringToUpbString(TypeName<F1>()));
1974
+ if (state == State::kState2) {
1975
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
1976
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1977
+ steps[2], arena),
1978
+ arena);
1979
+ }
1980
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1981
+ steps[3], StdStringToUpbString(TypeName<F2>()));
1982
+ if (state == State::kState3) {
1983
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
1984
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1985
+ steps[3], arena),
1986
+ arena);
1987
+ }
1988
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1989
+ steps[4], StdStringToUpbString(TypeName<F3>()));
1990
+ if (state == State::kState4) {
1991
+ PromiseAsProto(prior.prior.prior.current_promise,
1992
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
1993
+ steps[4], arena),
1994
+ arena);
1995
+ }
1996
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
1997
+ steps[5], StdStringToUpbString(TypeName<F4>()));
1998
+ if (state == State::kState5) {
1999
+ PromiseAsProto(prior.prior.current_promise,
2000
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2001
+ steps[5], arena),
2002
+ arena);
2003
+ }
2004
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2005
+ steps[6], StdStringToUpbString(TypeName<F5>()));
2006
+ if (state == State::kState6) {
2007
+ PromiseAsProto(prior.current_promise,
2008
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2009
+ steps[6], arena),
2010
+ arena);
2011
+ }
2012
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2013
+ steps[7], StdStringToUpbString(TypeName<F6>()));
2014
+ if (state == State::kState7) {
2015
+ PromiseAsProto(current_promise,
2016
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2017
+ steps[7], arena),
2018
+ arena);
2019
+ }
2020
+ }
1725
2021
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
1726
2022
  switch (state) {
1727
2023
  case State::kState0: {
1728
- GRPC_TRACE_VLOG(promise_primitives, 2)
2024
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1729
2025
  .AtLocation(whence.file(), whence.line())
1730
2026
  << "seq[" << this << "]: begin poll step 1/8";
1731
2027
  auto result =
1732
2028
  prior.prior.prior.prior.prior.prior.prior.current_promise();
1733
2029
  PromiseResult0* p = result.value_if_ready();
1734
- GRPC_TRACE_VLOG(promise_primitives, 2)
2030
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1735
2031
  .AtLocation(whence.file(), whence.line())
1736
2032
  << "seq[" << this << "]: poll step 1/8 gets "
1737
2033
  << (p != nullptr
@@ -1755,14 +2051,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1755
2051
  std::move(next_promise));
1756
2052
  state = State::kState1;
1757
2053
  }
1758
- ABSL_FALLTHROUGH_INTENDED;
2054
+ [[fallthrough]];
1759
2055
  case State::kState1: {
1760
- GRPC_TRACE_VLOG(promise_primitives, 2)
2056
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1761
2057
  .AtLocation(whence.file(), whence.line())
1762
2058
  << "seq[" << this << "]: begin poll step 2/8";
1763
2059
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
1764
2060
  PromiseResult1* p = result.value_if_ready();
1765
- GRPC_TRACE_VLOG(promise_primitives, 2)
2061
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1766
2062
  .AtLocation(whence.file(), whence.line())
1767
2063
  << "seq[" << this << "]: poll step 2/8 gets "
1768
2064
  << (p != nullptr
@@ -1785,14 +2081,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1785
2081
  std::move(next_promise));
1786
2082
  state = State::kState2;
1787
2083
  }
1788
- ABSL_FALLTHROUGH_INTENDED;
2084
+ [[fallthrough]];
1789
2085
  case State::kState2: {
1790
- GRPC_TRACE_VLOG(promise_primitives, 2)
2086
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1791
2087
  .AtLocation(whence.file(), whence.line())
1792
2088
  << "seq[" << this << "]: begin poll step 3/8";
1793
2089
  auto result = prior.prior.prior.prior.prior.current_promise();
1794
2090
  PromiseResult2* p = result.value_if_ready();
1795
- GRPC_TRACE_VLOG(promise_primitives, 2)
2091
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1796
2092
  .AtLocation(whence.file(), whence.line())
1797
2093
  << "seq[" << this << "]: poll step 3/8 gets "
1798
2094
  << (p != nullptr
@@ -1815,14 +2111,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1815
2111
  std::move(next_promise));
1816
2112
  state = State::kState3;
1817
2113
  }
1818
- ABSL_FALLTHROUGH_INTENDED;
2114
+ [[fallthrough]];
1819
2115
  case State::kState3: {
1820
- GRPC_TRACE_VLOG(promise_primitives, 2)
2116
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1821
2117
  .AtLocation(whence.file(), whence.line())
1822
2118
  << "seq[" << this << "]: begin poll step 4/8";
1823
2119
  auto result = prior.prior.prior.prior.current_promise();
1824
2120
  PromiseResult3* p = result.value_if_ready();
1825
- GRPC_TRACE_VLOG(promise_primitives, 2)
2121
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1826
2122
  .AtLocation(whence.file(), whence.line())
1827
2123
  << "seq[" << this << "]: poll step 4/8 gets "
1828
2124
  << (p != nullptr
@@ -1844,14 +2140,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1844
2140
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
1845
2141
  state = State::kState4;
1846
2142
  }
1847
- ABSL_FALLTHROUGH_INTENDED;
2143
+ [[fallthrough]];
1848
2144
  case State::kState4: {
1849
- GRPC_TRACE_VLOG(promise_primitives, 2)
2145
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1850
2146
  .AtLocation(whence.file(), whence.line())
1851
2147
  << "seq[" << this << "]: begin poll step 5/8";
1852
2148
  auto result = prior.prior.prior.current_promise();
1853
2149
  PromiseResult4* p = result.value_if_ready();
1854
- GRPC_TRACE_VLOG(promise_primitives, 2)
2150
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1855
2151
  .AtLocation(whence.file(), whence.line())
1856
2152
  << "seq[" << this << "]: poll step 5/8 gets "
1857
2153
  << (p != nullptr
@@ -1873,14 +2169,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1873
2169
  Construct(&prior.prior.current_promise, std::move(next_promise));
1874
2170
  state = State::kState5;
1875
2171
  }
1876
- ABSL_FALLTHROUGH_INTENDED;
2172
+ [[fallthrough]];
1877
2173
  case State::kState5: {
1878
- GRPC_TRACE_VLOG(promise_primitives, 2)
2174
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1879
2175
  .AtLocation(whence.file(), whence.line())
1880
2176
  << "seq[" << this << "]: begin poll step 6/8";
1881
2177
  auto result = prior.prior.current_promise();
1882
2178
  PromiseResult5* p = result.value_if_ready();
1883
- GRPC_TRACE_VLOG(promise_primitives, 2)
2179
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1884
2180
  .AtLocation(whence.file(), whence.line())
1885
2181
  << "seq[" << this << "]: poll step 6/8 gets "
1886
2182
  << (p != nullptr
@@ -1902,14 +2198,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1902
2198
  Construct(&prior.current_promise, std::move(next_promise));
1903
2199
  state = State::kState6;
1904
2200
  }
1905
- ABSL_FALLTHROUGH_INTENDED;
2201
+ [[fallthrough]];
1906
2202
  case State::kState6: {
1907
- GRPC_TRACE_VLOG(promise_primitives, 2)
2203
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1908
2204
  .AtLocation(whence.file(), whence.line())
1909
2205
  << "seq[" << this << "]: begin poll step 7/8";
1910
2206
  auto result = prior.current_promise();
1911
2207
  PromiseResult6* p = result.value_if_ready();
1912
- GRPC_TRACE_VLOG(promise_primitives, 2)
2208
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1913
2209
  .AtLocation(whence.file(), whence.line())
1914
2210
  << "seq[" << this << "]: poll step 7/8 gets "
1915
2211
  << (p != nullptr
@@ -1931,14 +2227,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
1931
2227
  Construct(&current_promise, std::move(next_promise));
1932
2228
  state = State::kState7;
1933
2229
  }
1934
- ABSL_FALLTHROUGH_INTENDED;
2230
+ [[fallthrough]];
1935
2231
  default:
1936
2232
  case State::kState7: {
1937
- GRPC_TRACE_VLOG(promise_primitives, 2)
2233
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1938
2234
  .AtLocation(whence.file(), whence.line())
1939
2235
  << "seq[" << this << "]: begin poll step 8/8";
1940
2236
  auto result = current_promise();
1941
- GRPC_TRACE_VLOG(promise_primitives, 2)
2237
+ GRPC_TRACE_LOG(promise_primitives, INFO)
1942
2238
  .AtLocation(whence.file(), whence.line())
1943
2239
  << "seq[" << this << "]: poll step 8/8 gets "
1944
2240
  << (result.ready() ? "ready" : "pending");
@@ -2137,28 +2433,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2137
2433
  tail7:
2138
2434
  Destruct(&prior.next_factory);
2139
2435
  }
2140
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
2141
- : state(other.state), whence(other.whence) {
2142
- DCHECK(state == State::kState0);
2143
- Construct(
2144
- &prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
2145
- other.prior.prior.prior.prior.prior.prior.prior.prior.current_promise);
2146
- Construct(
2147
- &prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
2148
- other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
2149
- Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
2150
- other.prior.prior.prior.prior.prior.prior.prior.next_factory);
2151
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
2152
- other.prior.prior.prior.prior.prior.prior.next_factory);
2153
- Construct(&prior.prior.prior.prior.prior.next_factory,
2154
- other.prior.prior.prior.prior.prior.next_factory);
2155
- Construct(&prior.prior.prior.prior.next_factory,
2156
- other.prior.prior.prior.prior.next_factory);
2157
- Construct(&prior.prior.prior.next_factory,
2158
- other.prior.prior.prior.next_factory);
2159
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
2160
- Construct(&prior.next_factory, other.prior.next_factory);
2161
- }
2436
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
2437
+ const SeqState& other) noexcept = delete;
2162
2438
  SeqState& operator=(const SeqState& other) = delete;
2163
2439
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
2164
2440
  : state(other.state), whence(other.whence) {
@@ -2188,16 +2464,101 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2188
2464
  }
2189
2465
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
2190
2466
  delete;
2467
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
2468
+ grpc_channelz_v2_Promise* promise_proto,
2469
+ upb_Arena* arena) const {
2470
+ auto* seq_promise =
2471
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
2472
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
2473
+ auto** steps =
2474
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 9, arena);
2475
+ for (int i = 0; i < 9; i++) {
2476
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
2477
+ }
2478
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2479
+ steps[0], StdStringToUpbString(TypeName<P>()));
2480
+ if (state == State::kState0) {
2481
+ PromiseAsProto(
2482
+ prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
2483
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[0],
2484
+ arena),
2485
+ arena);
2486
+ }
2487
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2488
+ steps[1], StdStringToUpbString(TypeName<F0>()));
2489
+ if (state == State::kState1) {
2490
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
2491
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2492
+ steps[1], arena),
2493
+ arena);
2494
+ }
2495
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2496
+ steps[2], StdStringToUpbString(TypeName<F1>()));
2497
+ if (state == State::kState2) {
2498
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
2499
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2500
+ steps[2], arena),
2501
+ arena);
2502
+ }
2503
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2504
+ steps[3], StdStringToUpbString(TypeName<F2>()));
2505
+ if (state == State::kState3) {
2506
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
2507
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2508
+ steps[3], arena),
2509
+ arena);
2510
+ }
2511
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2512
+ steps[4], StdStringToUpbString(TypeName<F3>()));
2513
+ if (state == State::kState4) {
2514
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
2515
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2516
+ steps[4], arena),
2517
+ arena);
2518
+ }
2519
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2520
+ steps[5], StdStringToUpbString(TypeName<F4>()));
2521
+ if (state == State::kState5) {
2522
+ PromiseAsProto(prior.prior.prior.current_promise,
2523
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2524
+ steps[5], arena),
2525
+ arena);
2526
+ }
2527
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2528
+ steps[6], StdStringToUpbString(TypeName<F5>()));
2529
+ if (state == State::kState6) {
2530
+ PromiseAsProto(prior.prior.current_promise,
2531
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2532
+ steps[6], arena),
2533
+ arena);
2534
+ }
2535
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2536
+ steps[7], StdStringToUpbString(TypeName<F6>()));
2537
+ if (state == State::kState7) {
2538
+ PromiseAsProto(prior.current_promise,
2539
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2540
+ steps[7], arena),
2541
+ arena);
2542
+ }
2543
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
2544
+ steps[8], StdStringToUpbString(TypeName<F7>()));
2545
+ if (state == State::kState8) {
2546
+ PromiseAsProto(current_promise,
2547
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
2548
+ steps[8], arena),
2549
+ arena);
2550
+ }
2551
+ }
2191
2552
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
2192
2553
  switch (state) {
2193
2554
  case State::kState0: {
2194
- GRPC_TRACE_VLOG(promise_primitives, 2)
2555
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2195
2556
  .AtLocation(whence.file(), whence.line())
2196
2557
  << "seq[" << this << "]: begin poll step 1/9";
2197
2558
  auto result =
2198
2559
  prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
2199
2560
  PromiseResult0* p = result.value_if_ready();
2200
- GRPC_TRACE_VLOG(promise_primitives, 2)
2561
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2201
2562
  .AtLocation(whence.file(), whence.line())
2202
2563
  << "seq[" << this << "]: poll step 1/9 gets "
2203
2564
  << (p != nullptr
@@ -2222,15 +2583,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2222
2583
  std::move(next_promise));
2223
2584
  state = State::kState1;
2224
2585
  }
2225
- ABSL_FALLTHROUGH_INTENDED;
2586
+ [[fallthrough]];
2226
2587
  case State::kState1: {
2227
- GRPC_TRACE_VLOG(promise_primitives, 2)
2588
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2228
2589
  .AtLocation(whence.file(), whence.line())
2229
2590
  << "seq[" << this << "]: begin poll step 2/9";
2230
2591
  auto result =
2231
2592
  prior.prior.prior.prior.prior.prior.prior.current_promise();
2232
2593
  PromiseResult1* p = result.value_if_ready();
2233
- GRPC_TRACE_VLOG(promise_primitives, 2)
2594
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2234
2595
  .AtLocation(whence.file(), whence.line())
2235
2596
  << "seq[" << this << "]: poll step 2/9 gets "
2236
2597
  << (p != nullptr
@@ -2254,14 +2615,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2254
2615
  std::move(next_promise));
2255
2616
  state = State::kState2;
2256
2617
  }
2257
- ABSL_FALLTHROUGH_INTENDED;
2618
+ [[fallthrough]];
2258
2619
  case State::kState2: {
2259
- GRPC_TRACE_VLOG(promise_primitives, 2)
2620
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2260
2621
  .AtLocation(whence.file(), whence.line())
2261
2622
  << "seq[" << this << "]: begin poll step 3/9";
2262
2623
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
2263
2624
  PromiseResult2* p = result.value_if_ready();
2264
- GRPC_TRACE_VLOG(promise_primitives, 2)
2625
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2265
2626
  .AtLocation(whence.file(), whence.line())
2266
2627
  << "seq[" << this << "]: poll step 3/9 gets "
2267
2628
  << (p != nullptr
@@ -2284,14 +2645,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2284
2645
  std::move(next_promise));
2285
2646
  state = State::kState3;
2286
2647
  }
2287
- ABSL_FALLTHROUGH_INTENDED;
2648
+ [[fallthrough]];
2288
2649
  case State::kState3: {
2289
- GRPC_TRACE_VLOG(promise_primitives, 2)
2650
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2290
2651
  .AtLocation(whence.file(), whence.line())
2291
2652
  << "seq[" << this << "]: begin poll step 4/9";
2292
2653
  auto result = prior.prior.prior.prior.prior.current_promise();
2293
2654
  PromiseResult3* p = result.value_if_ready();
2294
- GRPC_TRACE_VLOG(promise_primitives, 2)
2655
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2295
2656
  .AtLocation(whence.file(), whence.line())
2296
2657
  << "seq[" << this << "]: poll step 4/9 gets "
2297
2658
  << (p != nullptr
@@ -2314,14 +2675,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2314
2675
  std::move(next_promise));
2315
2676
  state = State::kState4;
2316
2677
  }
2317
- ABSL_FALLTHROUGH_INTENDED;
2678
+ [[fallthrough]];
2318
2679
  case State::kState4: {
2319
- GRPC_TRACE_VLOG(promise_primitives, 2)
2680
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2320
2681
  .AtLocation(whence.file(), whence.line())
2321
2682
  << "seq[" << this << "]: begin poll step 5/9";
2322
2683
  auto result = prior.prior.prior.prior.current_promise();
2323
2684
  PromiseResult4* p = result.value_if_ready();
2324
- GRPC_TRACE_VLOG(promise_primitives, 2)
2685
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2325
2686
  .AtLocation(whence.file(), whence.line())
2326
2687
  << "seq[" << this << "]: poll step 5/9 gets "
2327
2688
  << (p != nullptr
@@ -2343,14 +2704,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2343
2704
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
2344
2705
  state = State::kState5;
2345
2706
  }
2346
- ABSL_FALLTHROUGH_INTENDED;
2707
+ [[fallthrough]];
2347
2708
  case State::kState5: {
2348
- GRPC_TRACE_VLOG(promise_primitives, 2)
2709
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2349
2710
  .AtLocation(whence.file(), whence.line())
2350
2711
  << "seq[" << this << "]: begin poll step 6/9";
2351
2712
  auto result = prior.prior.prior.current_promise();
2352
2713
  PromiseResult5* p = result.value_if_ready();
2353
- GRPC_TRACE_VLOG(promise_primitives, 2)
2714
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2354
2715
  .AtLocation(whence.file(), whence.line())
2355
2716
  << "seq[" << this << "]: poll step 6/9 gets "
2356
2717
  << (p != nullptr
@@ -2372,14 +2733,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2372
2733
  Construct(&prior.prior.current_promise, std::move(next_promise));
2373
2734
  state = State::kState6;
2374
2735
  }
2375
- ABSL_FALLTHROUGH_INTENDED;
2736
+ [[fallthrough]];
2376
2737
  case State::kState6: {
2377
- GRPC_TRACE_VLOG(promise_primitives, 2)
2738
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2378
2739
  .AtLocation(whence.file(), whence.line())
2379
2740
  << "seq[" << this << "]: begin poll step 7/9";
2380
2741
  auto result = prior.prior.current_promise();
2381
2742
  PromiseResult6* p = result.value_if_ready();
2382
- GRPC_TRACE_VLOG(promise_primitives, 2)
2743
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2383
2744
  .AtLocation(whence.file(), whence.line())
2384
2745
  << "seq[" << this << "]: poll step 7/9 gets "
2385
2746
  << (p != nullptr
@@ -2401,14 +2762,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2401
2762
  Construct(&prior.current_promise, std::move(next_promise));
2402
2763
  state = State::kState7;
2403
2764
  }
2404
- ABSL_FALLTHROUGH_INTENDED;
2765
+ [[fallthrough]];
2405
2766
  case State::kState7: {
2406
- GRPC_TRACE_VLOG(promise_primitives, 2)
2767
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2407
2768
  .AtLocation(whence.file(), whence.line())
2408
2769
  << "seq[" << this << "]: begin poll step 8/9";
2409
2770
  auto result = prior.current_promise();
2410
2771
  PromiseResult7* p = result.value_if_ready();
2411
- GRPC_TRACE_VLOG(promise_primitives, 2)
2772
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2412
2773
  .AtLocation(whence.file(), whence.line())
2413
2774
  << "seq[" << this << "]: poll step 8/9 gets "
2414
2775
  << (p != nullptr
@@ -2430,14 +2791,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
2430
2791
  Construct(&current_promise, std::move(next_promise));
2431
2792
  state = State::kState8;
2432
2793
  }
2433
- ABSL_FALLTHROUGH_INTENDED;
2794
+ [[fallthrough]];
2434
2795
  default:
2435
2796
  case State::kState8: {
2436
- GRPC_TRACE_VLOG(promise_primitives, 2)
2797
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2437
2798
  .AtLocation(whence.file(), whence.line())
2438
2799
  << "seq[" << this << "]: begin poll step 9/9";
2439
2800
  auto result = current_promise();
2440
- GRPC_TRACE_VLOG(promise_primitives, 2)
2801
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2441
2802
  .AtLocation(whence.file(), whence.line())
2442
2803
  << "seq[" << this << "]: poll step 9/9 gets "
2443
2804
  << (result.ready() ? "ready" : "pending");
@@ -2661,33 +3022,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2661
3022
  tail8:
2662
3023
  Destruct(&prior.next_factory);
2663
3024
  }
2664
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
2665
- : state(other.state), whence(other.whence) {
2666
- DCHECK(state == State::kState0);
2667
- Construct(
2668
- &prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
2669
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior
2670
- .current_promise);
2671
- Construct(
2672
- &prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
2673
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior
2674
- .next_factory);
2675
- Construct(
2676
- &prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
2677
- other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
2678
- Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
2679
- other.prior.prior.prior.prior.prior.prior.prior.next_factory);
2680
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
2681
- other.prior.prior.prior.prior.prior.prior.next_factory);
2682
- Construct(&prior.prior.prior.prior.prior.next_factory,
2683
- other.prior.prior.prior.prior.prior.next_factory);
2684
- Construct(&prior.prior.prior.prior.next_factory,
2685
- other.prior.prior.prior.prior.next_factory);
2686
- Construct(&prior.prior.prior.next_factory,
2687
- other.prior.prior.prior.next_factory);
2688
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
2689
- Construct(&prior.next_factory, other.prior.next_factory);
2690
- }
3025
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
3026
+ const SeqState& other) noexcept = delete;
2691
3027
  SeqState& operator=(const SeqState& other) = delete;
2692
3028
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
2693
3029
  : state(other.state), whence(other.whence) {
@@ -2722,16 +3058,110 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2722
3058
  }
2723
3059
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
2724
3060
  delete;
3061
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
3062
+ grpc_channelz_v2_Promise* promise_proto,
3063
+ upb_Arena* arena) const {
3064
+ auto* seq_promise =
3065
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
3066
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
3067
+ auto** steps =
3068
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 10, arena);
3069
+ for (int i = 0; i < 10; i++) {
3070
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
3071
+ }
3072
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3073
+ steps[0], StdStringToUpbString(TypeName<P>()));
3074
+ if (state == State::kState0) {
3075
+ PromiseAsProto(
3076
+ prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
3077
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[0],
3078
+ arena),
3079
+ arena);
3080
+ }
3081
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3082
+ steps[1], StdStringToUpbString(TypeName<F0>()));
3083
+ if (state == State::kState1) {
3084
+ PromiseAsProto(
3085
+ prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
3086
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[1],
3087
+ arena),
3088
+ arena);
3089
+ }
3090
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3091
+ steps[2], StdStringToUpbString(TypeName<F1>()));
3092
+ if (state == State::kState2) {
3093
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
3094
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3095
+ steps[2], arena),
3096
+ arena);
3097
+ }
3098
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3099
+ steps[3], StdStringToUpbString(TypeName<F2>()));
3100
+ if (state == State::kState3) {
3101
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
3102
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3103
+ steps[3], arena),
3104
+ arena);
3105
+ }
3106
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3107
+ steps[4], StdStringToUpbString(TypeName<F3>()));
3108
+ if (state == State::kState4) {
3109
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
3110
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3111
+ steps[4], arena),
3112
+ arena);
3113
+ }
3114
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3115
+ steps[5], StdStringToUpbString(TypeName<F4>()));
3116
+ if (state == State::kState5) {
3117
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
3118
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3119
+ steps[5], arena),
3120
+ arena);
3121
+ }
3122
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3123
+ steps[6], StdStringToUpbString(TypeName<F5>()));
3124
+ if (state == State::kState6) {
3125
+ PromiseAsProto(prior.prior.prior.current_promise,
3126
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3127
+ steps[6], arena),
3128
+ arena);
3129
+ }
3130
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3131
+ steps[7], StdStringToUpbString(TypeName<F6>()));
3132
+ if (state == State::kState7) {
3133
+ PromiseAsProto(prior.prior.current_promise,
3134
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3135
+ steps[7], arena),
3136
+ arena);
3137
+ }
3138
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3139
+ steps[8], StdStringToUpbString(TypeName<F7>()));
3140
+ if (state == State::kState8) {
3141
+ PromiseAsProto(prior.current_promise,
3142
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3143
+ steps[8], arena),
3144
+ arena);
3145
+ }
3146
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3147
+ steps[9], StdStringToUpbString(TypeName<F8>()));
3148
+ if (state == State::kState9) {
3149
+ PromiseAsProto(current_promise,
3150
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3151
+ steps[9], arena),
3152
+ arena);
3153
+ }
3154
+ }
2725
3155
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
2726
3156
  switch (state) {
2727
3157
  case State::kState0: {
2728
- GRPC_TRACE_VLOG(promise_primitives, 2)
3158
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2729
3159
  .AtLocation(whence.file(), whence.line())
2730
3160
  << "seq[" << this << "]: begin poll step 1/10";
2731
3161
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
2732
3162
  .current_promise();
2733
3163
  PromiseResult0* p = result.value_if_ready();
2734
- GRPC_TRACE_VLOG(promise_primitives, 2)
3164
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2735
3165
  .AtLocation(whence.file(), whence.line())
2736
3166
  << "seq[" << this << "]: poll step 1/10 gets "
2737
3167
  << (p != nullptr
@@ -2758,15 +3188,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2758
3188
  std::move(next_promise));
2759
3189
  state = State::kState1;
2760
3190
  }
2761
- ABSL_FALLTHROUGH_INTENDED;
3191
+ [[fallthrough]];
2762
3192
  case State::kState1: {
2763
- GRPC_TRACE_VLOG(promise_primitives, 2)
3193
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2764
3194
  .AtLocation(whence.file(), whence.line())
2765
3195
  << "seq[" << this << "]: begin poll step 2/10";
2766
3196
  auto result =
2767
3197
  prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
2768
3198
  PromiseResult1* p = result.value_if_ready();
2769
- GRPC_TRACE_VLOG(promise_primitives, 2)
3199
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2770
3200
  .AtLocation(whence.file(), whence.line())
2771
3201
  << "seq[" << this << "]: poll step 2/10 gets "
2772
3202
  << (p != nullptr
@@ -2791,15 +3221,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2791
3221
  std::move(next_promise));
2792
3222
  state = State::kState2;
2793
3223
  }
2794
- ABSL_FALLTHROUGH_INTENDED;
3224
+ [[fallthrough]];
2795
3225
  case State::kState2: {
2796
- GRPC_TRACE_VLOG(promise_primitives, 2)
3226
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2797
3227
  .AtLocation(whence.file(), whence.line())
2798
3228
  << "seq[" << this << "]: begin poll step 3/10";
2799
3229
  auto result =
2800
3230
  prior.prior.prior.prior.prior.prior.prior.current_promise();
2801
3231
  PromiseResult2* p = result.value_if_ready();
2802
- GRPC_TRACE_VLOG(promise_primitives, 2)
3232
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2803
3233
  .AtLocation(whence.file(), whence.line())
2804
3234
  << "seq[" << this << "]: poll step 3/10 gets "
2805
3235
  << (p != nullptr
@@ -2823,14 +3253,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2823
3253
  std::move(next_promise));
2824
3254
  state = State::kState3;
2825
3255
  }
2826
- ABSL_FALLTHROUGH_INTENDED;
3256
+ [[fallthrough]];
2827
3257
  case State::kState3: {
2828
- GRPC_TRACE_VLOG(promise_primitives, 2)
3258
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2829
3259
  .AtLocation(whence.file(), whence.line())
2830
3260
  << "seq[" << this << "]: begin poll step 4/10";
2831
3261
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
2832
3262
  PromiseResult3* p = result.value_if_ready();
2833
- GRPC_TRACE_VLOG(promise_primitives, 2)
3263
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2834
3264
  .AtLocation(whence.file(), whence.line())
2835
3265
  << "seq[" << this << "]: poll step 4/10 gets "
2836
3266
  << (p != nullptr
@@ -2853,14 +3283,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2853
3283
  std::move(next_promise));
2854
3284
  state = State::kState4;
2855
3285
  }
2856
- ABSL_FALLTHROUGH_INTENDED;
3286
+ [[fallthrough]];
2857
3287
  case State::kState4: {
2858
- GRPC_TRACE_VLOG(promise_primitives, 2)
3288
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2859
3289
  .AtLocation(whence.file(), whence.line())
2860
3290
  << "seq[" << this << "]: begin poll step 5/10";
2861
3291
  auto result = prior.prior.prior.prior.prior.current_promise();
2862
3292
  PromiseResult4* p = result.value_if_ready();
2863
- GRPC_TRACE_VLOG(promise_primitives, 2)
3293
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2864
3294
  .AtLocation(whence.file(), whence.line())
2865
3295
  << "seq[" << this << "]: poll step 5/10 gets "
2866
3296
  << (p != nullptr
@@ -2883,14 +3313,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2883
3313
  std::move(next_promise));
2884
3314
  state = State::kState5;
2885
3315
  }
2886
- ABSL_FALLTHROUGH_INTENDED;
3316
+ [[fallthrough]];
2887
3317
  case State::kState5: {
2888
- GRPC_TRACE_VLOG(promise_primitives, 2)
3318
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2889
3319
  .AtLocation(whence.file(), whence.line())
2890
3320
  << "seq[" << this << "]: begin poll step 6/10";
2891
3321
  auto result = prior.prior.prior.prior.current_promise();
2892
3322
  PromiseResult5* p = result.value_if_ready();
2893
- GRPC_TRACE_VLOG(promise_primitives, 2)
3323
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2894
3324
  .AtLocation(whence.file(), whence.line())
2895
3325
  << "seq[" << this << "]: poll step 6/10 gets "
2896
3326
  << (p != nullptr
@@ -2912,14 +3342,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2912
3342
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
2913
3343
  state = State::kState6;
2914
3344
  }
2915
- ABSL_FALLTHROUGH_INTENDED;
3345
+ [[fallthrough]];
2916
3346
  case State::kState6: {
2917
- GRPC_TRACE_VLOG(promise_primitives, 2)
3347
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2918
3348
  .AtLocation(whence.file(), whence.line())
2919
3349
  << "seq[" << this << "]: begin poll step 7/10";
2920
3350
  auto result = prior.prior.prior.current_promise();
2921
3351
  PromiseResult6* p = result.value_if_ready();
2922
- GRPC_TRACE_VLOG(promise_primitives, 2)
3352
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2923
3353
  .AtLocation(whence.file(), whence.line())
2924
3354
  << "seq[" << this << "]: poll step 7/10 gets "
2925
3355
  << (p != nullptr
@@ -2941,14 +3371,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2941
3371
  Construct(&prior.prior.current_promise, std::move(next_promise));
2942
3372
  state = State::kState7;
2943
3373
  }
2944
- ABSL_FALLTHROUGH_INTENDED;
3374
+ [[fallthrough]];
2945
3375
  case State::kState7: {
2946
- GRPC_TRACE_VLOG(promise_primitives, 2)
3376
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2947
3377
  .AtLocation(whence.file(), whence.line())
2948
3378
  << "seq[" << this << "]: begin poll step 8/10";
2949
3379
  auto result = prior.prior.current_promise();
2950
3380
  PromiseResult7* p = result.value_if_ready();
2951
- GRPC_TRACE_VLOG(promise_primitives, 2)
3381
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2952
3382
  .AtLocation(whence.file(), whence.line())
2953
3383
  << "seq[" << this << "]: poll step 8/10 gets "
2954
3384
  << (p != nullptr
@@ -2970,14 +3400,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2970
3400
  Construct(&prior.current_promise, std::move(next_promise));
2971
3401
  state = State::kState8;
2972
3402
  }
2973
- ABSL_FALLTHROUGH_INTENDED;
3403
+ [[fallthrough]];
2974
3404
  case State::kState8: {
2975
- GRPC_TRACE_VLOG(promise_primitives, 2)
3405
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2976
3406
  .AtLocation(whence.file(), whence.line())
2977
3407
  << "seq[" << this << "]: begin poll step 9/10";
2978
3408
  auto result = prior.current_promise();
2979
3409
  PromiseResult8* p = result.value_if_ready();
2980
- GRPC_TRACE_VLOG(promise_primitives, 2)
3410
+ GRPC_TRACE_LOG(promise_primitives, INFO)
2981
3411
  .AtLocation(whence.file(), whence.line())
2982
3412
  << "seq[" << this << "]: poll step 9/10 gets "
2983
3413
  << (p != nullptr
@@ -2999,14 +3429,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
2999
3429
  Construct(&current_promise, std::move(next_promise));
3000
3430
  state = State::kState9;
3001
3431
  }
3002
- ABSL_FALLTHROUGH_INTENDED;
3432
+ [[fallthrough]];
3003
3433
  default:
3004
3434
  case State::kState9: {
3005
- GRPC_TRACE_VLOG(promise_primitives, 2)
3435
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3006
3436
  .AtLocation(whence.file(), whence.line())
3007
3437
  << "seq[" << this << "]: begin poll step 10/10";
3008
3438
  auto result = current_promise();
3009
- GRPC_TRACE_VLOG(promise_primitives, 2)
3439
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3010
3440
  .AtLocation(whence.file(), whence.line())
3011
3441
  << "seq[" << this << "]: poll step 10/10 gets "
3012
3442
  << (result.ready() ? "ready" : "pending");
@@ -3253,37 +3683,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3253
3683
  tail9:
3254
3684
  Destruct(&prior.next_factory);
3255
3685
  }
3256
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
3257
- : state(other.state), whence(other.whence) {
3258
- DCHECK(state == State::kState0);
3259
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3260
- .current_promise,
3261
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3262
- .current_promise);
3263
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3264
- .next_factory,
3265
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3266
- .next_factory);
3267
- Construct(
3268
- &prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
3269
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior
3270
- .next_factory);
3271
- Construct(
3272
- &prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
3273
- other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
3274
- Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
3275
- other.prior.prior.prior.prior.prior.prior.prior.next_factory);
3276
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
3277
- other.prior.prior.prior.prior.prior.prior.next_factory);
3278
- Construct(&prior.prior.prior.prior.prior.next_factory,
3279
- other.prior.prior.prior.prior.prior.next_factory);
3280
- Construct(&prior.prior.prior.prior.next_factory,
3281
- other.prior.prior.prior.prior.next_factory);
3282
- Construct(&prior.prior.prior.next_factory,
3283
- other.prior.prior.prior.next_factory);
3284
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
3285
- Construct(&prior.next_factory, other.prior.next_factory);
3286
- }
3686
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
3687
+ const SeqState& other) noexcept = delete;
3287
3688
  SeqState& operator=(const SeqState& other) = delete;
3288
3689
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
3289
3690
  : state(other.state), whence(other.whence) {
@@ -3322,16 +3723,119 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3322
3723
  }
3323
3724
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
3324
3725
  delete;
3726
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
3727
+ grpc_channelz_v2_Promise* promise_proto,
3728
+ upb_Arena* arena) const {
3729
+ auto* seq_promise =
3730
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
3731
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
3732
+ auto** steps =
3733
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 11, arena);
3734
+ for (int i = 0; i < 11; i++) {
3735
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
3736
+ }
3737
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3738
+ steps[0], StdStringToUpbString(TypeName<P>()));
3739
+ if (state == State::kState0) {
3740
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3741
+ .current_promise,
3742
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3743
+ steps[0], arena),
3744
+ arena);
3745
+ }
3746
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3747
+ steps[1], StdStringToUpbString(TypeName<F0>()));
3748
+ if (state == State::kState1) {
3749
+ PromiseAsProto(
3750
+ prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
3751
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[1],
3752
+ arena),
3753
+ arena);
3754
+ }
3755
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3756
+ steps[2], StdStringToUpbString(TypeName<F1>()));
3757
+ if (state == State::kState2) {
3758
+ PromiseAsProto(
3759
+ prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
3760
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[2],
3761
+ arena),
3762
+ arena);
3763
+ }
3764
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3765
+ steps[3], StdStringToUpbString(TypeName<F2>()));
3766
+ if (state == State::kState3) {
3767
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
3768
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3769
+ steps[3], arena),
3770
+ arena);
3771
+ }
3772
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3773
+ steps[4], StdStringToUpbString(TypeName<F3>()));
3774
+ if (state == State::kState4) {
3775
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
3776
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3777
+ steps[4], arena),
3778
+ arena);
3779
+ }
3780
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3781
+ steps[5], StdStringToUpbString(TypeName<F4>()));
3782
+ if (state == State::kState5) {
3783
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
3784
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3785
+ steps[5], arena),
3786
+ arena);
3787
+ }
3788
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3789
+ steps[6], StdStringToUpbString(TypeName<F5>()));
3790
+ if (state == State::kState6) {
3791
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
3792
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3793
+ steps[6], arena),
3794
+ arena);
3795
+ }
3796
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3797
+ steps[7], StdStringToUpbString(TypeName<F6>()));
3798
+ if (state == State::kState7) {
3799
+ PromiseAsProto(prior.prior.prior.current_promise,
3800
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3801
+ steps[7], arena),
3802
+ arena);
3803
+ }
3804
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3805
+ steps[8], StdStringToUpbString(TypeName<F7>()));
3806
+ if (state == State::kState8) {
3807
+ PromiseAsProto(prior.prior.current_promise,
3808
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3809
+ steps[8], arena),
3810
+ arena);
3811
+ }
3812
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3813
+ steps[9], StdStringToUpbString(TypeName<F8>()));
3814
+ if (state == State::kState9) {
3815
+ PromiseAsProto(prior.current_promise,
3816
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3817
+ steps[9], arena),
3818
+ arena);
3819
+ }
3820
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
3821
+ steps[10], StdStringToUpbString(TypeName<F9>()));
3822
+ if (state == State::kState10) {
3823
+ PromiseAsProto(current_promise,
3824
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
3825
+ steps[10], arena),
3826
+ arena);
3827
+ }
3828
+ }
3325
3829
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
3326
3830
  switch (state) {
3327
3831
  case State::kState0: {
3328
- GRPC_TRACE_VLOG(promise_primitives, 2)
3832
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3329
3833
  .AtLocation(whence.file(), whence.line())
3330
3834
  << "seq[" << this << "]: begin poll step 1/11";
3331
3835
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
3332
3836
  .prior.current_promise();
3333
3837
  PromiseResult0* p = result.value_if_ready();
3334
- GRPC_TRACE_VLOG(promise_primitives, 2)
3838
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3335
3839
  .AtLocation(whence.file(), whence.line())
3336
3840
  << "seq[" << this << "]: poll step 1/11 gets "
3337
3841
  << (p != nullptr
@@ -3359,15 +3863,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3359
3863
  std::move(next_promise));
3360
3864
  state = State::kState1;
3361
3865
  }
3362
- ABSL_FALLTHROUGH_INTENDED;
3866
+ [[fallthrough]];
3363
3867
  case State::kState1: {
3364
- GRPC_TRACE_VLOG(promise_primitives, 2)
3868
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3365
3869
  .AtLocation(whence.file(), whence.line())
3366
3870
  << "seq[" << this << "]: begin poll step 2/11";
3367
3871
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
3368
3872
  .current_promise();
3369
3873
  PromiseResult1* p = result.value_if_ready();
3370
- GRPC_TRACE_VLOG(promise_primitives, 2)
3874
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3371
3875
  .AtLocation(whence.file(), whence.line())
3372
3876
  << "seq[" << this << "]: poll step 2/11 gets "
3373
3877
  << (p != nullptr
@@ -3394,15 +3898,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3394
3898
  std::move(next_promise));
3395
3899
  state = State::kState2;
3396
3900
  }
3397
- ABSL_FALLTHROUGH_INTENDED;
3901
+ [[fallthrough]];
3398
3902
  case State::kState2: {
3399
- GRPC_TRACE_VLOG(promise_primitives, 2)
3903
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3400
3904
  .AtLocation(whence.file(), whence.line())
3401
3905
  << "seq[" << this << "]: begin poll step 3/11";
3402
3906
  auto result =
3403
3907
  prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
3404
3908
  PromiseResult2* p = result.value_if_ready();
3405
- GRPC_TRACE_VLOG(promise_primitives, 2)
3909
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3406
3910
  .AtLocation(whence.file(), whence.line())
3407
3911
  << "seq[" << this << "]: poll step 3/11 gets "
3408
3912
  << (p != nullptr
@@ -3427,15 +3931,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3427
3931
  std::move(next_promise));
3428
3932
  state = State::kState3;
3429
3933
  }
3430
- ABSL_FALLTHROUGH_INTENDED;
3934
+ [[fallthrough]];
3431
3935
  case State::kState3: {
3432
- GRPC_TRACE_VLOG(promise_primitives, 2)
3936
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3433
3937
  .AtLocation(whence.file(), whence.line())
3434
3938
  << "seq[" << this << "]: begin poll step 4/11";
3435
3939
  auto result =
3436
3940
  prior.prior.prior.prior.prior.prior.prior.current_promise();
3437
3941
  PromiseResult3* p = result.value_if_ready();
3438
- GRPC_TRACE_VLOG(promise_primitives, 2)
3942
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3439
3943
  .AtLocation(whence.file(), whence.line())
3440
3944
  << "seq[" << this << "]: poll step 4/11 gets "
3441
3945
  << (p != nullptr
@@ -3459,14 +3963,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3459
3963
  std::move(next_promise));
3460
3964
  state = State::kState4;
3461
3965
  }
3462
- ABSL_FALLTHROUGH_INTENDED;
3966
+ [[fallthrough]];
3463
3967
  case State::kState4: {
3464
- GRPC_TRACE_VLOG(promise_primitives, 2)
3968
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3465
3969
  .AtLocation(whence.file(), whence.line())
3466
3970
  << "seq[" << this << "]: begin poll step 5/11";
3467
3971
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
3468
3972
  PromiseResult4* p = result.value_if_ready();
3469
- GRPC_TRACE_VLOG(promise_primitives, 2)
3973
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3470
3974
  .AtLocation(whence.file(), whence.line())
3471
3975
  << "seq[" << this << "]: poll step 5/11 gets "
3472
3976
  << (p != nullptr
@@ -3489,14 +3993,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3489
3993
  std::move(next_promise));
3490
3994
  state = State::kState5;
3491
3995
  }
3492
- ABSL_FALLTHROUGH_INTENDED;
3996
+ [[fallthrough]];
3493
3997
  case State::kState5: {
3494
- GRPC_TRACE_VLOG(promise_primitives, 2)
3998
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3495
3999
  .AtLocation(whence.file(), whence.line())
3496
4000
  << "seq[" << this << "]: begin poll step 6/11";
3497
4001
  auto result = prior.prior.prior.prior.prior.current_promise();
3498
4002
  PromiseResult5* p = result.value_if_ready();
3499
- GRPC_TRACE_VLOG(promise_primitives, 2)
4003
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3500
4004
  .AtLocation(whence.file(), whence.line())
3501
4005
  << "seq[" << this << "]: poll step 6/11 gets "
3502
4006
  << (p != nullptr
@@ -3519,14 +4023,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3519
4023
  std::move(next_promise));
3520
4024
  state = State::kState6;
3521
4025
  }
3522
- ABSL_FALLTHROUGH_INTENDED;
4026
+ [[fallthrough]];
3523
4027
  case State::kState6: {
3524
- GRPC_TRACE_VLOG(promise_primitives, 2)
4028
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3525
4029
  .AtLocation(whence.file(), whence.line())
3526
4030
  << "seq[" << this << "]: begin poll step 7/11";
3527
4031
  auto result = prior.prior.prior.prior.current_promise();
3528
4032
  PromiseResult6* p = result.value_if_ready();
3529
- GRPC_TRACE_VLOG(promise_primitives, 2)
4033
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3530
4034
  .AtLocation(whence.file(), whence.line())
3531
4035
  << "seq[" << this << "]: poll step 7/11 gets "
3532
4036
  << (p != nullptr
@@ -3548,14 +4052,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3548
4052
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
3549
4053
  state = State::kState7;
3550
4054
  }
3551
- ABSL_FALLTHROUGH_INTENDED;
4055
+ [[fallthrough]];
3552
4056
  case State::kState7: {
3553
- GRPC_TRACE_VLOG(promise_primitives, 2)
4057
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3554
4058
  .AtLocation(whence.file(), whence.line())
3555
4059
  << "seq[" << this << "]: begin poll step 8/11";
3556
4060
  auto result = prior.prior.prior.current_promise();
3557
4061
  PromiseResult7* p = result.value_if_ready();
3558
- GRPC_TRACE_VLOG(promise_primitives, 2)
4062
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3559
4063
  .AtLocation(whence.file(), whence.line())
3560
4064
  << "seq[" << this << "]: poll step 8/11 gets "
3561
4065
  << (p != nullptr
@@ -3577,14 +4081,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3577
4081
  Construct(&prior.prior.current_promise, std::move(next_promise));
3578
4082
  state = State::kState8;
3579
4083
  }
3580
- ABSL_FALLTHROUGH_INTENDED;
4084
+ [[fallthrough]];
3581
4085
  case State::kState8: {
3582
- GRPC_TRACE_VLOG(promise_primitives, 2)
4086
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3583
4087
  .AtLocation(whence.file(), whence.line())
3584
4088
  << "seq[" << this << "]: begin poll step 9/11";
3585
4089
  auto result = prior.prior.current_promise();
3586
4090
  PromiseResult8* p = result.value_if_ready();
3587
- GRPC_TRACE_VLOG(promise_primitives, 2)
4091
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3588
4092
  .AtLocation(whence.file(), whence.line())
3589
4093
  << "seq[" << this << "]: poll step 9/11 gets "
3590
4094
  << (p != nullptr
@@ -3606,14 +4110,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3606
4110
  Construct(&prior.current_promise, std::move(next_promise));
3607
4111
  state = State::kState9;
3608
4112
  }
3609
- ABSL_FALLTHROUGH_INTENDED;
4113
+ [[fallthrough]];
3610
4114
  case State::kState9: {
3611
- GRPC_TRACE_VLOG(promise_primitives, 2)
4115
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3612
4116
  .AtLocation(whence.file(), whence.line())
3613
4117
  << "seq[" << this << "]: begin poll step 10/11";
3614
4118
  auto result = prior.current_promise();
3615
4119
  PromiseResult9* p = result.value_if_ready();
3616
- GRPC_TRACE_VLOG(promise_primitives, 2)
4120
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3617
4121
  .AtLocation(whence.file(), whence.line())
3618
4122
  << "seq[" << this << "]: poll step 10/11 gets "
3619
4123
  << (p != nullptr
@@ -3635,14 +4139,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
3635
4139
  Construct(&current_promise, std::move(next_promise));
3636
4140
  state = State::kState10;
3637
4141
  }
3638
- ABSL_FALLTHROUGH_INTENDED;
4142
+ [[fallthrough]];
3639
4143
  default:
3640
4144
  case State::kState10: {
3641
- GRPC_TRACE_VLOG(promise_primitives, 2)
4145
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3642
4146
  .AtLocation(whence.file(), whence.line())
3643
4147
  << "seq[" << this << "]: begin poll step 11/11";
3644
4148
  auto result = current_promise();
3645
- GRPC_TRACE_VLOG(promise_primitives, 2)
4149
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3646
4150
  .AtLocation(whence.file(), whence.line())
3647
4151
  << "seq[" << this << "]: poll step 11/11 gets "
3648
4152
  << (result.ready() ? "ready" : "pending");
@@ -3912,41 +4416,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
3912
4416
  tail10:
3913
4417
  Destruct(&prior.next_factory);
3914
4418
  }
3915
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
3916
- : state(other.state), whence(other.whence) {
3917
- DCHECK(state == State::kState0);
3918
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3919
- .current_promise,
3920
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3921
- .prior.current_promise);
3922
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3923
- .next_factory,
3924
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3925
- .prior.next_factory);
3926
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3927
- .next_factory,
3928
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
3929
- .next_factory);
3930
- Construct(
3931
- &prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
3932
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior
3933
- .next_factory);
3934
- Construct(
3935
- &prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
3936
- other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
3937
- Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
3938
- other.prior.prior.prior.prior.prior.prior.prior.next_factory);
3939
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
3940
- other.prior.prior.prior.prior.prior.prior.next_factory);
3941
- Construct(&prior.prior.prior.prior.prior.next_factory,
3942
- other.prior.prior.prior.prior.prior.next_factory);
3943
- Construct(&prior.prior.prior.prior.next_factory,
3944
- other.prior.prior.prior.prior.next_factory);
3945
- Construct(&prior.prior.prior.next_factory,
3946
- other.prior.prior.prior.next_factory);
3947
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
3948
- Construct(&prior.next_factory, other.prior.next_factory);
3949
- }
4419
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
4420
+ const SeqState& other) noexcept = delete;
3950
4421
  SeqState& operator=(const SeqState& other) = delete;
3951
4422
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
3952
4423
  : state(other.state), whence(other.whence) {
@@ -3989,16 +4460,128 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
3989
4460
  }
3990
4461
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
3991
4462
  delete;
4463
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
4464
+ grpc_channelz_v2_Promise* promise_proto,
4465
+ upb_Arena* arena) const {
4466
+ auto* seq_promise =
4467
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
4468
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
4469
+ auto** steps =
4470
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 12, arena);
4471
+ for (int i = 0; i < 12; i++) {
4472
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
4473
+ }
4474
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4475
+ steps[0], StdStringToUpbString(TypeName<P>()));
4476
+ if (state == State::kState0) {
4477
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4478
+ .prior.current_promise,
4479
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4480
+ steps[0], arena),
4481
+ arena);
4482
+ }
4483
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4484
+ steps[1], StdStringToUpbString(TypeName<F0>()));
4485
+ if (state == State::kState1) {
4486
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4487
+ .current_promise,
4488
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4489
+ steps[1], arena),
4490
+ arena);
4491
+ }
4492
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4493
+ steps[2], StdStringToUpbString(TypeName<F1>()));
4494
+ if (state == State::kState2) {
4495
+ PromiseAsProto(
4496
+ prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
4497
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[2],
4498
+ arena),
4499
+ arena);
4500
+ }
4501
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4502
+ steps[3], StdStringToUpbString(TypeName<F2>()));
4503
+ if (state == State::kState3) {
4504
+ PromiseAsProto(
4505
+ prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
4506
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[3],
4507
+ arena),
4508
+ arena);
4509
+ }
4510
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4511
+ steps[4], StdStringToUpbString(TypeName<F3>()));
4512
+ if (state == State::kState4) {
4513
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
4514
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4515
+ steps[4], arena),
4516
+ arena);
4517
+ }
4518
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4519
+ steps[5], StdStringToUpbString(TypeName<F4>()));
4520
+ if (state == State::kState5) {
4521
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
4522
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4523
+ steps[5], arena),
4524
+ arena);
4525
+ }
4526
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4527
+ steps[6], StdStringToUpbString(TypeName<F5>()));
4528
+ if (state == State::kState6) {
4529
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
4530
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4531
+ steps[6], arena),
4532
+ arena);
4533
+ }
4534
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4535
+ steps[7], StdStringToUpbString(TypeName<F6>()));
4536
+ if (state == State::kState7) {
4537
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
4538
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4539
+ steps[7], arena),
4540
+ arena);
4541
+ }
4542
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4543
+ steps[8], StdStringToUpbString(TypeName<F7>()));
4544
+ if (state == State::kState8) {
4545
+ PromiseAsProto(prior.prior.prior.current_promise,
4546
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4547
+ steps[8], arena),
4548
+ arena);
4549
+ }
4550
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4551
+ steps[9], StdStringToUpbString(TypeName<F8>()));
4552
+ if (state == State::kState9) {
4553
+ PromiseAsProto(prior.prior.current_promise,
4554
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4555
+ steps[9], arena),
4556
+ arena);
4557
+ }
4558
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4559
+ steps[10], StdStringToUpbString(TypeName<F9>()));
4560
+ if (state == State::kState10) {
4561
+ PromiseAsProto(prior.current_promise,
4562
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4563
+ steps[10], arena),
4564
+ arena);
4565
+ }
4566
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
4567
+ steps[11], StdStringToUpbString(TypeName<F10>()));
4568
+ if (state == State::kState11) {
4569
+ PromiseAsProto(current_promise,
4570
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
4571
+ steps[11], arena),
4572
+ arena);
4573
+ }
4574
+ }
3992
4575
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
3993
4576
  switch (state) {
3994
4577
  case State::kState0: {
3995
- GRPC_TRACE_VLOG(promise_primitives, 2)
4578
+ GRPC_TRACE_LOG(promise_primitives, INFO)
3996
4579
  .AtLocation(whence.file(), whence.line())
3997
4580
  << "seq[" << this << "]: begin poll step 1/12";
3998
4581
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
3999
4582
  .prior.prior.current_promise();
4000
4583
  PromiseResult0* p = result.value_if_ready();
4001
- GRPC_TRACE_VLOG(promise_primitives, 2)
4584
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4002
4585
  .AtLocation(whence.file(), whence.line())
4003
4586
  << "seq[" << this << "]: poll step 1/12 gets "
4004
4587
  << (p != nullptr
@@ -4026,15 +4609,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4026
4609
  std::move(next_promise));
4027
4610
  state = State::kState1;
4028
4611
  }
4029
- ABSL_FALLTHROUGH_INTENDED;
4612
+ [[fallthrough]];
4030
4613
  case State::kState1: {
4031
- GRPC_TRACE_VLOG(promise_primitives, 2)
4614
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4032
4615
  .AtLocation(whence.file(), whence.line())
4033
4616
  << "seq[" << this << "]: begin poll step 2/12";
4034
4617
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
4035
4618
  .prior.current_promise();
4036
4619
  PromiseResult1* p = result.value_if_ready();
4037
- GRPC_TRACE_VLOG(promise_primitives, 2)
4620
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4038
4621
  .AtLocation(whence.file(), whence.line())
4039
4622
  << "seq[" << this << "]: poll step 2/12 gets "
4040
4623
  << (p != nullptr
@@ -4062,15 +4645,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4062
4645
  std::move(next_promise));
4063
4646
  state = State::kState2;
4064
4647
  }
4065
- ABSL_FALLTHROUGH_INTENDED;
4648
+ [[fallthrough]];
4066
4649
  case State::kState2: {
4067
- GRPC_TRACE_VLOG(promise_primitives, 2)
4650
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4068
4651
  .AtLocation(whence.file(), whence.line())
4069
4652
  << "seq[" << this << "]: begin poll step 3/12";
4070
4653
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
4071
4654
  .current_promise();
4072
4655
  PromiseResult2* p = result.value_if_ready();
4073
- GRPC_TRACE_VLOG(promise_primitives, 2)
4656
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4074
4657
  .AtLocation(whence.file(), whence.line())
4075
4658
  << "seq[" << this << "]: poll step 3/12 gets "
4076
4659
  << (p != nullptr
@@ -4097,15 +4680,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4097
4680
  std::move(next_promise));
4098
4681
  state = State::kState3;
4099
4682
  }
4100
- ABSL_FALLTHROUGH_INTENDED;
4683
+ [[fallthrough]];
4101
4684
  case State::kState3: {
4102
- GRPC_TRACE_VLOG(promise_primitives, 2)
4685
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4103
4686
  .AtLocation(whence.file(), whence.line())
4104
4687
  << "seq[" << this << "]: begin poll step 4/12";
4105
4688
  auto result =
4106
4689
  prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
4107
4690
  PromiseResult3* p = result.value_if_ready();
4108
- GRPC_TRACE_VLOG(promise_primitives, 2)
4691
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4109
4692
  .AtLocation(whence.file(), whence.line())
4110
4693
  << "seq[" << this << "]: poll step 4/12 gets "
4111
4694
  << (p != nullptr
@@ -4130,15 +4713,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4130
4713
  std::move(next_promise));
4131
4714
  state = State::kState4;
4132
4715
  }
4133
- ABSL_FALLTHROUGH_INTENDED;
4716
+ [[fallthrough]];
4134
4717
  case State::kState4: {
4135
- GRPC_TRACE_VLOG(promise_primitives, 2)
4718
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4136
4719
  .AtLocation(whence.file(), whence.line())
4137
4720
  << "seq[" << this << "]: begin poll step 5/12";
4138
4721
  auto result =
4139
4722
  prior.prior.prior.prior.prior.prior.prior.current_promise();
4140
4723
  PromiseResult4* p = result.value_if_ready();
4141
- GRPC_TRACE_VLOG(promise_primitives, 2)
4724
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4142
4725
  .AtLocation(whence.file(), whence.line())
4143
4726
  << "seq[" << this << "]: poll step 5/12 gets "
4144
4727
  << (p != nullptr
@@ -4162,14 +4745,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4162
4745
  std::move(next_promise));
4163
4746
  state = State::kState5;
4164
4747
  }
4165
- ABSL_FALLTHROUGH_INTENDED;
4748
+ [[fallthrough]];
4166
4749
  case State::kState5: {
4167
- GRPC_TRACE_VLOG(promise_primitives, 2)
4750
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4168
4751
  .AtLocation(whence.file(), whence.line())
4169
4752
  << "seq[" << this << "]: begin poll step 6/12";
4170
4753
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
4171
4754
  PromiseResult5* p = result.value_if_ready();
4172
- GRPC_TRACE_VLOG(promise_primitives, 2)
4755
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4173
4756
  .AtLocation(whence.file(), whence.line())
4174
4757
  << "seq[" << this << "]: poll step 6/12 gets "
4175
4758
  << (p != nullptr
@@ -4192,14 +4775,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4192
4775
  std::move(next_promise));
4193
4776
  state = State::kState6;
4194
4777
  }
4195
- ABSL_FALLTHROUGH_INTENDED;
4778
+ [[fallthrough]];
4196
4779
  case State::kState6: {
4197
- GRPC_TRACE_VLOG(promise_primitives, 2)
4780
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4198
4781
  .AtLocation(whence.file(), whence.line())
4199
4782
  << "seq[" << this << "]: begin poll step 7/12";
4200
4783
  auto result = prior.prior.prior.prior.prior.current_promise();
4201
4784
  PromiseResult6* p = result.value_if_ready();
4202
- GRPC_TRACE_VLOG(promise_primitives, 2)
4785
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4203
4786
  .AtLocation(whence.file(), whence.line())
4204
4787
  << "seq[" << this << "]: poll step 7/12 gets "
4205
4788
  << (p != nullptr
@@ -4222,14 +4805,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4222
4805
  std::move(next_promise));
4223
4806
  state = State::kState7;
4224
4807
  }
4225
- ABSL_FALLTHROUGH_INTENDED;
4808
+ [[fallthrough]];
4226
4809
  case State::kState7: {
4227
- GRPC_TRACE_VLOG(promise_primitives, 2)
4810
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4228
4811
  .AtLocation(whence.file(), whence.line())
4229
4812
  << "seq[" << this << "]: begin poll step 8/12";
4230
4813
  auto result = prior.prior.prior.prior.current_promise();
4231
4814
  PromiseResult7* p = result.value_if_ready();
4232
- GRPC_TRACE_VLOG(promise_primitives, 2)
4815
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4233
4816
  .AtLocation(whence.file(), whence.line())
4234
4817
  << "seq[" << this << "]: poll step 8/12 gets "
4235
4818
  << (p != nullptr
@@ -4251,14 +4834,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4251
4834
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
4252
4835
  state = State::kState8;
4253
4836
  }
4254
- ABSL_FALLTHROUGH_INTENDED;
4837
+ [[fallthrough]];
4255
4838
  case State::kState8: {
4256
- GRPC_TRACE_VLOG(promise_primitives, 2)
4839
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4257
4840
  .AtLocation(whence.file(), whence.line())
4258
4841
  << "seq[" << this << "]: begin poll step 9/12";
4259
4842
  auto result = prior.prior.prior.current_promise();
4260
4843
  PromiseResult8* p = result.value_if_ready();
4261
- GRPC_TRACE_VLOG(promise_primitives, 2)
4844
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4262
4845
  .AtLocation(whence.file(), whence.line())
4263
4846
  << "seq[" << this << "]: poll step 9/12 gets "
4264
4847
  << (p != nullptr
@@ -4280,14 +4863,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4280
4863
  Construct(&prior.prior.current_promise, std::move(next_promise));
4281
4864
  state = State::kState9;
4282
4865
  }
4283
- ABSL_FALLTHROUGH_INTENDED;
4866
+ [[fallthrough]];
4284
4867
  case State::kState9: {
4285
- GRPC_TRACE_VLOG(promise_primitives, 2)
4868
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4286
4869
  .AtLocation(whence.file(), whence.line())
4287
4870
  << "seq[" << this << "]: begin poll step 10/12";
4288
4871
  auto result = prior.prior.current_promise();
4289
4872
  PromiseResult9* p = result.value_if_ready();
4290
- GRPC_TRACE_VLOG(promise_primitives, 2)
4873
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4291
4874
  .AtLocation(whence.file(), whence.line())
4292
4875
  << "seq[" << this << "]: poll step 10/12 gets "
4293
4876
  << (p != nullptr
@@ -4309,14 +4892,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4309
4892
  Construct(&prior.current_promise, std::move(next_promise));
4310
4893
  state = State::kState10;
4311
4894
  }
4312
- ABSL_FALLTHROUGH_INTENDED;
4895
+ [[fallthrough]];
4313
4896
  case State::kState10: {
4314
- GRPC_TRACE_VLOG(promise_primitives, 2)
4897
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4315
4898
  .AtLocation(whence.file(), whence.line())
4316
4899
  << "seq[" << this << "]: begin poll step 11/12";
4317
4900
  auto result = prior.current_promise();
4318
4901
  PromiseResult10* p = result.value_if_ready();
4319
- GRPC_TRACE_VLOG(promise_primitives, 2)
4902
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4320
4903
  .AtLocation(whence.file(), whence.line())
4321
4904
  << "seq[" << this << "]: poll step 11/12 gets "
4322
4905
  << (p != nullptr
@@ -4339,14 +4922,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
4339
4922
  Construct(&current_promise, std::move(next_promise));
4340
4923
  state = State::kState11;
4341
4924
  }
4342
- ABSL_FALLTHROUGH_INTENDED;
4925
+ [[fallthrough]];
4343
4926
  default:
4344
4927
  case State::kState11: {
4345
- GRPC_TRACE_VLOG(promise_primitives, 2)
4928
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4346
4929
  .AtLocation(whence.file(), whence.line())
4347
4930
  << "seq[" << this << "]: begin poll step 12/12";
4348
4931
  auto result = current_promise();
4349
- GRPC_TRACE_VLOG(promise_primitives, 2)
4932
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4350
4933
  .AtLocation(whence.file(), whence.line())
4351
4934
  << "seq[" << this << "]: poll step 12/12 gets "
4352
4935
  << (result.ready() ? "ready" : "pending");
@@ -4641,45 +5224,8 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4641
5224
  tail11:
4642
5225
  Destruct(&prior.next_factory);
4643
5226
  }
4644
- GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
4645
- : state(other.state), whence(other.whence) {
4646
- DCHECK(state == State::kState0);
4647
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4648
- .prior.current_promise,
4649
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4650
- .prior.prior.current_promise);
4651
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4652
- .prior.next_factory,
4653
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4654
- .prior.prior.next_factory);
4655
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4656
- .next_factory,
4657
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4658
- .prior.next_factory);
4659
- Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4660
- .next_factory,
4661
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
4662
- .next_factory);
4663
- Construct(
4664
- &prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
4665
- other.prior.prior.prior.prior.prior.prior.prior.prior.prior
4666
- .next_factory);
4667
- Construct(
4668
- &prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
4669
- other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
4670
- Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
4671
- other.prior.prior.prior.prior.prior.prior.prior.next_factory);
4672
- Construct(&prior.prior.prior.prior.prior.prior.next_factory,
4673
- other.prior.prior.prior.prior.prior.prior.next_factory);
4674
- Construct(&prior.prior.prior.prior.prior.next_factory,
4675
- other.prior.prior.prior.prior.prior.next_factory);
4676
- Construct(&prior.prior.prior.prior.next_factory,
4677
- other.prior.prior.prior.prior.next_factory);
4678
- Construct(&prior.prior.prior.next_factory,
4679
- other.prior.prior.prior.next_factory);
4680
- Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
4681
- Construct(&prior.next_factory, other.prior.next_factory);
4682
- }
5227
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(
5228
+ const SeqState& other) noexcept = delete;
4683
5229
  SeqState& operator=(const SeqState& other) = delete;
4684
5230
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
4685
5231
  : state(other.state), whence(other.whence) {
@@ -4726,16 +5272,137 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4726
5272
  }
4727
5273
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
4728
5274
  delete;
5275
+ void ToProto(grpc_channelz_v2_Promise_CompositionKind kind,
5276
+ grpc_channelz_v2_Promise* promise_proto,
5277
+ upb_Arena* arena) const {
5278
+ auto* seq_promise =
5279
+ grpc_channelz_v2_Promise_mutable_seq_promise(promise_proto, arena);
5280
+ grpc_channelz_v2_Promise_Seq_set_kind(seq_promise, kind);
5281
+ auto** steps =
5282
+ grpc_channelz_v2_Promise_Seq_resize_steps(seq_promise, 13, arena);
5283
+ for (int i = 0; i < 13; i++) {
5284
+ steps[i] = grpc_channelz_v2_Promise_SeqStep_new(arena);
5285
+ }
5286
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5287
+ steps[0], StdStringToUpbString(TypeName<P>()));
5288
+ if (state == State::kState0) {
5289
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
5290
+ .prior.prior.current_promise,
5291
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5292
+ steps[0], arena),
5293
+ arena);
5294
+ }
5295
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5296
+ steps[1], StdStringToUpbString(TypeName<F0>()));
5297
+ if (state == State::kState1) {
5298
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
5299
+ .prior.current_promise,
5300
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5301
+ steps[1], arena),
5302
+ arena);
5303
+ }
5304
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5305
+ steps[2], StdStringToUpbString(TypeName<F1>()));
5306
+ if (state == State::kState2) {
5307
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
5308
+ .current_promise,
5309
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5310
+ steps[2], arena),
5311
+ arena);
5312
+ }
5313
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5314
+ steps[3], StdStringToUpbString(TypeName<F2>()));
5315
+ if (state == State::kState3) {
5316
+ PromiseAsProto(
5317
+ prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
5318
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[3],
5319
+ arena),
5320
+ arena);
5321
+ }
5322
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5323
+ steps[4], StdStringToUpbString(TypeName<F3>()));
5324
+ if (state == State::kState4) {
5325
+ PromiseAsProto(
5326
+ prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
5327
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(steps[4],
5328
+ arena),
5329
+ arena);
5330
+ }
5331
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5332
+ steps[5], StdStringToUpbString(TypeName<F4>()));
5333
+ if (state == State::kState5) {
5334
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.prior.current_promise,
5335
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5336
+ steps[5], arena),
5337
+ arena);
5338
+ }
5339
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5340
+ steps[6], StdStringToUpbString(TypeName<F5>()));
5341
+ if (state == State::kState6) {
5342
+ PromiseAsProto(prior.prior.prior.prior.prior.prior.current_promise,
5343
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5344
+ steps[6], arena),
5345
+ arena);
5346
+ }
5347
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5348
+ steps[7], StdStringToUpbString(TypeName<F6>()));
5349
+ if (state == State::kState7) {
5350
+ PromiseAsProto(prior.prior.prior.prior.prior.current_promise,
5351
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5352
+ steps[7], arena),
5353
+ arena);
5354
+ }
5355
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5356
+ steps[8], StdStringToUpbString(TypeName<F7>()));
5357
+ if (state == State::kState8) {
5358
+ PromiseAsProto(prior.prior.prior.prior.current_promise,
5359
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5360
+ steps[8], arena),
5361
+ arena);
5362
+ }
5363
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5364
+ steps[9], StdStringToUpbString(TypeName<F8>()));
5365
+ if (state == State::kState9) {
5366
+ PromiseAsProto(prior.prior.prior.current_promise,
5367
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5368
+ steps[9], arena),
5369
+ arena);
5370
+ }
5371
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5372
+ steps[10], StdStringToUpbString(TypeName<F9>()));
5373
+ if (state == State::kState10) {
5374
+ PromiseAsProto(prior.prior.current_promise,
5375
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5376
+ steps[10], arena),
5377
+ arena);
5378
+ }
5379
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5380
+ steps[11], StdStringToUpbString(TypeName<F10>()));
5381
+ if (state == State::kState11) {
5382
+ PromiseAsProto(prior.current_promise,
5383
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5384
+ steps[11], arena),
5385
+ arena);
5386
+ }
5387
+ grpc_channelz_v2_Promise_SeqStep_set_factory(
5388
+ steps[12], StdStringToUpbString(TypeName<F11>()));
5389
+ if (state == State::kState12) {
5390
+ PromiseAsProto(current_promise,
5391
+ grpc_channelz_v2_Promise_SeqStep_mutable_polling_promise(
5392
+ steps[12], arena),
5393
+ arena);
5394
+ }
5395
+ }
4729
5396
  GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
4730
5397
  switch (state) {
4731
5398
  case State::kState0: {
4732
- GRPC_TRACE_VLOG(promise_primitives, 2)
5399
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4733
5400
  .AtLocation(whence.file(), whence.line())
4734
5401
  << "seq[" << this << "]: begin poll step 1/13";
4735
5402
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
4736
5403
  .prior.prior.prior.current_promise();
4737
5404
  PromiseResult0* p = result.value_if_ready();
4738
- GRPC_TRACE_VLOG(promise_primitives, 2)
5405
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4739
5406
  .AtLocation(whence.file(), whence.line())
4740
5407
  << "seq[" << this << "]: poll step 1/13 gets "
4741
5408
  << (p != nullptr
@@ -4763,15 +5430,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4763
5430
  std::move(next_promise));
4764
5431
  state = State::kState1;
4765
5432
  }
4766
- ABSL_FALLTHROUGH_INTENDED;
5433
+ [[fallthrough]];
4767
5434
  case State::kState1: {
4768
- GRPC_TRACE_VLOG(promise_primitives, 2)
5435
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4769
5436
  .AtLocation(whence.file(), whence.line())
4770
5437
  << "seq[" << this << "]: begin poll step 2/13";
4771
5438
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
4772
5439
  .prior.prior.current_promise();
4773
5440
  PromiseResult1* p = result.value_if_ready();
4774
- GRPC_TRACE_VLOG(promise_primitives, 2)
5441
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4775
5442
  .AtLocation(whence.file(), whence.line())
4776
5443
  << "seq[" << this << "]: poll step 2/13 gets "
4777
5444
  << (p != nullptr
@@ -4799,15 +5466,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4799
5466
  std::move(next_promise));
4800
5467
  state = State::kState2;
4801
5468
  }
4802
- ABSL_FALLTHROUGH_INTENDED;
5469
+ [[fallthrough]];
4803
5470
  case State::kState2: {
4804
- GRPC_TRACE_VLOG(promise_primitives, 2)
5471
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4805
5472
  .AtLocation(whence.file(), whence.line())
4806
5473
  << "seq[" << this << "]: begin poll step 3/13";
4807
5474
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
4808
5475
  .prior.current_promise();
4809
5476
  PromiseResult2* p = result.value_if_ready();
4810
- GRPC_TRACE_VLOG(promise_primitives, 2)
5477
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4811
5478
  .AtLocation(whence.file(), whence.line())
4812
5479
  << "seq[" << this << "]: poll step 3/13 gets "
4813
5480
  << (p != nullptr
@@ -4835,15 +5502,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4835
5502
  std::move(next_promise));
4836
5503
  state = State::kState3;
4837
5504
  }
4838
- ABSL_FALLTHROUGH_INTENDED;
5505
+ [[fallthrough]];
4839
5506
  case State::kState3: {
4840
- GRPC_TRACE_VLOG(promise_primitives, 2)
5507
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4841
5508
  .AtLocation(whence.file(), whence.line())
4842
5509
  << "seq[" << this << "]: begin poll step 4/13";
4843
5510
  auto result = prior.prior.prior.prior.prior.prior.prior.prior.prior
4844
5511
  .current_promise();
4845
5512
  PromiseResult3* p = result.value_if_ready();
4846
- GRPC_TRACE_VLOG(promise_primitives, 2)
5513
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4847
5514
  .AtLocation(whence.file(), whence.line())
4848
5515
  << "seq[" << this << "]: poll step 4/13 gets "
4849
5516
  << (p != nullptr
@@ -4870,15 +5537,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4870
5537
  std::move(next_promise));
4871
5538
  state = State::kState4;
4872
5539
  }
4873
- ABSL_FALLTHROUGH_INTENDED;
5540
+ [[fallthrough]];
4874
5541
  case State::kState4: {
4875
- GRPC_TRACE_VLOG(promise_primitives, 2)
5542
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4876
5543
  .AtLocation(whence.file(), whence.line())
4877
5544
  << "seq[" << this << "]: begin poll step 5/13";
4878
5545
  auto result =
4879
5546
  prior.prior.prior.prior.prior.prior.prior.prior.current_promise();
4880
5547
  PromiseResult4* p = result.value_if_ready();
4881
- GRPC_TRACE_VLOG(promise_primitives, 2)
5548
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4882
5549
  .AtLocation(whence.file(), whence.line())
4883
5550
  << "seq[" << this << "]: poll step 5/13 gets "
4884
5551
  << (p != nullptr
@@ -4903,15 +5570,15 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4903
5570
  std::move(next_promise));
4904
5571
  state = State::kState5;
4905
5572
  }
4906
- ABSL_FALLTHROUGH_INTENDED;
5573
+ [[fallthrough]];
4907
5574
  case State::kState5: {
4908
- GRPC_TRACE_VLOG(promise_primitives, 2)
5575
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4909
5576
  .AtLocation(whence.file(), whence.line())
4910
5577
  << "seq[" << this << "]: begin poll step 6/13";
4911
5578
  auto result =
4912
5579
  prior.prior.prior.prior.prior.prior.prior.current_promise();
4913
5580
  PromiseResult5* p = result.value_if_ready();
4914
- GRPC_TRACE_VLOG(promise_primitives, 2)
5581
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4915
5582
  .AtLocation(whence.file(), whence.line())
4916
5583
  << "seq[" << this << "]: poll step 6/13 gets "
4917
5584
  << (p != nullptr
@@ -4935,14 +5602,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4935
5602
  std::move(next_promise));
4936
5603
  state = State::kState6;
4937
5604
  }
4938
- ABSL_FALLTHROUGH_INTENDED;
5605
+ [[fallthrough]];
4939
5606
  case State::kState6: {
4940
- GRPC_TRACE_VLOG(promise_primitives, 2)
5607
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4941
5608
  .AtLocation(whence.file(), whence.line())
4942
5609
  << "seq[" << this << "]: begin poll step 7/13";
4943
5610
  auto result = prior.prior.prior.prior.prior.prior.current_promise();
4944
5611
  PromiseResult6* p = result.value_if_ready();
4945
- GRPC_TRACE_VLOG(promise_primitives, 2)
5612
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4946
5613
  .AtLocation(whence.file(), whence.line())
4947
5614
  << "seq[" << this << "]: poll step 7/13 gets "
4948
5615
  << (p != nullptr
@@ -4965,14 +5632,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4965
5632
  std::move(next_promise));
4966
5633
  state = State::kState7;
4967
5634
  }
4968
- ABSL_FALLTHROUGH_INTENDED;
5635
+ [[fallthrough]];
4969
5636
  case State::kState7: {
4970
- GRPC_TRACE_VLOG(promise_primitives, 2)
5637
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4971
5638
  .AtLocation(whence.file(), whence.line())
4972
5639
  << "seq[" << this << "]: begin poll step 8/13";
4973
5640
  auto result = prior.prior.prior.prior.prior.current_promise();
4974
5641
  PromiseResult7* p = result.value_if_ready();
4975
- GRPC_TRACE_VLOG(promise_primitives, 2)
5642
+ GRPC_TRACE_LOG(promise_primitives, INFO)
4976
5643
  .AtLocation(whence.file(), whence.line())
4977
5644
  << "seq[" << this << "]: poll step 8/13 gets "
4978
5645
  << (p != nullptr
@@ -4995,14 +5662,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
4995
5662
  std::move(next_promise));
4996
5663
  state = State::kState8;
4997
5664
  }
4998
- ABSL_FALLTHROUGH_INTENDED;
5665
+ [[fallthrough]];
4999
5666
  case State::kState8: {
5000
- GRPC_TRACE_VLOG(promise_primitives, 2)
5667
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5001
5668
  .AtLocation(whence.file(), whence.line())
5002
5669
  << "seq[" << this << "]: begin poll step 9/13";
5003
5670
  auto result = prior.prior.prior.prior.current_promise();
5004
5671
  PromiseResult8* p = result.value_if_ready();
5005
- GRPC_TRACE_VLOG(promise_primitives, 2)
5672
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5006
5673
  .AtLocation(whence.file(), whence.line())
5007
5674
  << "seq[" << this << "]: poll step 9/13 gets "
5008
5675
  << (p != nullptr
@@ -5024,14 +5691,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
5024
5691
  Construct(&prior.prior.prior.current_promise, std::move(next_promise));
5025
5692
  state = State::kState9;
5026
5693
  }
5027
- ABSL_FALLTHROUGH_INTENDED;
5694
+ [[fallthrough]];
5028
5695
  case State::kState9: {
5029
- GRPC_TRACE_VLOG(promise_primitives, 2)
5696
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5030
5697
  .AtLocation(whence.file(), whence.line())
5031
5698
  << "seq[" << this << "]: begin poll step 10/13";
5032
5699
  auto result = prior.prior.prior.current_promise();
5033
5700
  PromiseResult9* p = result.value_if_ready();
5034
- GRPC_TRACE_VLOG(promise_primitives, 2)
5701
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5035
5702
  .AtLocation(whence.file(), whence.line())
5036
5703
  << "seq[" << this << "]: poll step 10/13 gets "
5037
5704
  << (p != nullptr
@@ -5053,14 +5720,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
5053
5720
  Construct(&prior.prior.current_promise, std::move(next_promise));
5054
5721
  state = State::kState10;
5055
5722
  }
5056
- ABSL_FALLTHROUGH_INTENDED;
5723
+ [[fallthrough]];
5057
5724
  case State::kState10: {
5058
- GRPC_TRACE_VLOG(promise_primitives, 2)
5725
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5059
5726
  .AtLocation(whence.file(), whence.line())
5060
5727
  << "seq[" << this << "]: begin poll step 11/13";
5061
5728
  auto result = prior.prior.current_promise();
5062
5729
  PromiseResult10* p = result.value_if_ready();
5063
- GRPC_TRACE_VLOG(promise_primitives, 2)
5730
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5064
5731
  .AtLocation(whence.file(), whence.line())
5065
5732
  << "seq[" << this << "]: poll step 11/13 gets "
5066
5733
  << (p != nullptr
@@ -5083,14 +5750,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
5083
5750
  Construct(&prior.current_promise, std::move(next_promise));
5084
5751
  state = State::kState11;
5085
5752
  }
5086
- ABSL_FALLTHROUGH_INTENDED;
5753
+ [[fallthrough]];
5087
5754
  case State::kState11: {
5088
- GRPC_TRACE_VLOG(promise_primitives, 2)
5755
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5089
5756
  .AtLocation(whence.file(), whence.line())
5090
5757
  << "seq[" << this << "]: begin poll step 12/13";
5091
5758
  auto result = prior.current_promise();
5092
5759
  PromiseResult11* p = result.value_if_ready();
5093
- GRPC_TRACE_VLOG(promise_primitives, 2)
5760
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5094
5761
  .AtLocation(whence.file(), whence.line())
5095
5762
  << "seq[" << this << "]: poll step 12/13 gets "
5096
5763
  << (p != nullptr
@@ -5113,14 +5780,14 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
5113
5780
  Construct(&current_promise, std::move(next_promise));
5114
5781
  state = State::kState12;
5115
5782
  }
5116
- ABSL_FALLTHROUGH_INTENDED;
5783
+ [[fallthrough]];
5117
5784
  default:
5118
5785
  case State::kState12: {
5119
- GRPC_TRACE_VLOG(promise_primitives, 2)
5786
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5120
5787
  .AtLocation(whence.file(), whence.line())
5121
5788
  << "seq[" << this << "]: begin poll step 13/13";
5122
5789
  auto result = current_promise();
5123
- GRPC_TRACE_VLOG(promise_primitives, 2)
5790
+ GRPC_TRACE_LOG(promise_primitives, INFO)
5124
5791
  .AtLocation(whence.file(), whence.line())
5125
5792
  << "seq[" << this << "]: poll step 13/13 gets "
5126
5793
  << (result.ready() ? "ready" : "pending");