grpc 1.62.0 → 1.69.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2831) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +552 -2066
  3. data/include/grpc/byte_buffer.h +1 -2
  4. data/include/grpc/census.h +1 -2
  5. data/include/grpc/compression.h +2 -4
  6. data/include/grpc/credentials.h +1221 -0
  7. data/include/grpc/event_engine/README.md +1 -1
  8. data/include/grpc/event_engine/event_engine.h +41 -15
  9. data/include/grpc/event_engine/extensible.h +3 -0
  10. data/include/grpc/event_engine/internal/memory_allocator_impl.h +2 -3
  11. data/include/grpc/event_engine/internal/slice_cast.h +1 -1
  12. data/include/grpc/event_engine/memory_allocator.h +2 -4
  13. data/include/grpc/event_engine/memory_request.h +18 -1
  14. data/include/grpc/event_engine/slice.h +2 -5
  15. data/include/grpc/event_engine/slice_buffer.h +5 -8
  16. data/include/grpc/grpc.h +9 -10
  17. data/include/grpc/grpc_audit_logging.h +1 -2
  18. data/include/grpc/grpc_crl_provider.h +4 -3
  19. data/include/grpc/grpc_cronet.h +1 -2
  20. data/include/grpc/grpc_posix.h +2 -4
  21. data/include/grpc/grpc_security.h +2 -1175
  22. data/include/grpc/impl/call.h +1 -2
  23. data/include/grpc/impl/channel_arg_names.h +14 -7
  24. data/include/grpc/impl/grpc_types.h +2 -4
  25. data/include/grpc/impl/slice_type.h +0 -1
  26. data/include/grpc/module.modulemap +3 -0
  27. data/include/grpc/passive_listener.h +62 -0
  28. data/include/grpc/slice.h +1 -2
  29. data/include/grpc/slice_buffer.h +1 -2
  30. data/include/grpc/support/alloc.h +0 -1
  31. data/include/grpc/support/json.h +0 -1
  32. data/include/grpc/support/log.h +36 -63
  33. data/include/grpc/support/metrics.h +66 -0
  34. data/include/grpc/support/port_platform.h +31 -1
  35. data/include/grpc/support/string_util.h +0 -1
  36. data/include/grpc/support/sync.h +0 -1
  37. data/include/grpc/support/sync_abseil.h +0 -1
  38. data/include/grpc/support/sync_custom.h +0 -1
  39. data/include/grpc/support/sync_generic.h +3 -6
  40. data/include/grpc/support/sync_posix.h +1 -3
  41. data/include/grpc/support/time.h +0 -1
  42. data/src/core/channelz/channel_trace.cc +180 -0
  43. data/src/core/channelz/channel_trace.h +138 -0
  44. data/src/core/channelz/channelz.cc +670 -0
  45. data/src/core/channelz/channelz.h +421 -0
  46. data/src/core/channelz/channelz_registry.cc +281 -0
  47. data/src/core/channelz/channelz_registry.h +101 -0
  48. data/src/core/client_channel/backup_poller.cc +25 -16
  49. data/src/core/client_channel/client_channel.cc +1426 -0
  50. data/src/core/client_channel/client_channel.h +245 -0
  51. data/src/core/client_channel/client_channel_factory.cc +2 -2
  52. data/src/core/client_channel/client_channel_factory.h +1 -2
  53. data/src/core/client_channel/client_channel_filter.cc +437 -944
  54. data/src/core/client_channel/client_channel_filter.h +30 -93
  55. data/src/core/client_channel/client_channel_internal.h +27 -12
  56. data/src/core/client_channel/client_channel_plugin.cc +3 -18
  57. data/src/core/client_channel/client_channel_service_config.cc +2 -3
  58. data/src/core/client_channel/client_channel_service_config.h +12 -13
  59. data/src/core/client_channel/config_selector.h +26 -26
  60. data/src/core/client_channel/connector.h +4 -4
  61. data/src/core/client_channel/direct_channel.cc +83 -0
  62. data/src/core/client_channel/direct_channel.h +101 -0
  63. data/src/core/client_channel/dynamic_filters.cc +19 -16
  64. data/src/core/client_channel/dynamic_filters.h +10 -11
  65. data/src/core/client_channel/global_subchannel_pool.cc +2 -2
  66. data/src/core/client_channel/global_subchannel_pool.h +2 -3
  67. data/src/core/client_channel/lb_metadata.cc +120 -0
  68. data/src/core/client_channel/lb_metadata.h +55 -0
  69. data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
  70. data/src/core/client_channel/load_balanced_call_destination.h +48 -0
  71. data/src/core/client_channel/local_subchannel_pool.cc +6 -7
  72. data/src/core/client_channel/local_subchannel_pool.h +1 -1
  73. data/src/core/client_channel/retry_filter.cc +8 -17
  74. data/src/core/client_channel/retry_filter.h +10 -18
  75. data/src/core/client_channel/retry_filter_legacy_call_data.cc +215 -324
  76. data/src/core/client_channel/retry_filter_legacy_call_data.h +20 -23
  77. data/src/core/client_channel/retry_service_config.cc +10 -13
  78. data/src/core/client_channel/retry_service_config.h +9 -11
  79. data/src/core/client_channel/retry_throttle.cc +3 -4
  80. data/src/core/client_channel/retry_throttle.h +7 -9
  81. data/src/core/client_channel/subchannel.cc +295 -176
  82. data/src/core/client_channel/subchannel.h +53 -46
  83. data/src/core/client_channel/subchannel_interface_internal.h +1 -1
  84. data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
  85. data/src/core/client_channel/subchannel_pool_interface.h +5 -8
  86. data/src/core/client_channel/subchannel_stream_client.cc +47 -65
  87. data/src/core/client_channel/subchannel_stream_client.h +12 -16
  88. data/src/core/config/config_vars.cc +151 -0
  89. data/src/core/config/config_vars.h +128 -0
  90. data/src/core/config/config_vars_non_generated.cc +49 -0
  91. data/src/core/config/core_configuration.cc +111 -0
  92. data/src/core/config/core_configuration.h +242 -0
  93. data/src/core/config/load_config.cc +77 -0
  94. data/src/core/config/load_config.h +54 -0
  95. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +30 -80
  96. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +5 -15
  97. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
  98. data/src/core/ext/filters/census/grpc_context.cc +7 -10
  99. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
  100. data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
  101. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +48 -57
  102. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +22 -19
  103. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +25 -29
  104. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +8 -7
  105. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
  106. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +7 -10
  107. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
  108. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
  109. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
  110. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
  111. data/src/core/ext/filters/http/client/http_client_filter.cc +19 -12
  112. data/src/core/ext/filters/http/client/http_client_filter.h +8 -6
  113. data/src/core/ext/filters/http/client_authority_filter.cc +13 -11
  114. data/src/core/ext/filters/http/client_authority_filter.h +8 -5
  115. data/src/core/ext/filters/http/http_filters_plugin.cc +16 -37
  116. data/src/core/ext/filters/http/message_compress/compression_filter.cc +67 -61
  117. data/src/core/ext/filters/http/message_compress/compression_filter.h +18 -13
  118. data/src/core/ext/filters/http/server/http_server_filter.cc +19 -16
  119. data/src/core/ext/filters/http/server/http_server_filter.h +8 -6
  120. data/src/core/ext/filters/message_size/message_size_filter.cc +51 -55
  121. data/src/core/ext/filters/message_size/message_size_filter.h +20 -16
  122. data/src/core/ext/filters/rbac/rbac_filter.cc +14 -19
  123. data/src/core/ext/filters/rbac/rbac_filter.h +8 -7
  124. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +18 -12
  125. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +3 -5
  126. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +26 -28
  127. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +8 -6
  128. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
  129. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +6 -8
  130. data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -5
  131. data/src/core/ext/transport/chttp2/alpn/alpn.h +0 -1
  132. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -124
  133. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -12
  134. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +465 -316
  135. data/src/core/ext/transport/chttp2/server/chttp2_server.h +34 -1
  136. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +26 -38
  137. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -3
  138. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +10 -12
  139. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -3
  140. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
  141. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
  142. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +699 -622
  143. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +37 -20
  144. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +14 -12
  145. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
  146. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
  147. data/src/core/ext/transport/chttp2/transport/flow_control.cc +11 -16
  148. data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -9
  149. data/src/core/ext/transport/chttp2/transport/frame.cc +25 -8
  150. data/src/core/ext/transport/chttp2/transport/frame.h +11 -2
  151. data/src/core/ext/transport/chttp2/transport/frame_data.cc +21 -22
  152. data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -5
  153. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -10
  154. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -3
  155. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +16 -21
  156. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -3
  157. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +19 -20
  158. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
  159. data/src/core/ext/transport/chttp2/transport/frame_security.cc +82 -0
  160. data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
  161. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +36 -21
  162. data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -4
  163. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +31 -10
  164. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -4
  165. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +21 -22
  166. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +18 -15
  167. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -10
  168. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -4
  169. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -5
  170. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +5 -8
  171. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +80 -123
  172. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +5 -8
  173. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +45 -20
  174. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +28 -9
  175. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +12 -4
  176. data/src/core/ext/transport/chttp2/transport/http2_settings.h +10 -4
  177. data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
  178. data/src/core/ext/transport/chttp2/transport/internal.h +73 -81
  179. data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
  180. data/src/core/ext/transport/chttp2/transport/parsing.cc +140 -131
  181. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -4
  182. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +1 -1
  183. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +4 -7
  184. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +2 -7
  185. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -19
  186. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -7
  187. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -21
  188. data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
  189. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
  190. data/src/core/ext/transport/chttp2/transport/varint.h +2 -3
  191. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -4
  192. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
  193. data/src/core/ext/transport/chttp2/transport/writing.cc +196 -155
  194. data/src/core/ext/transport/inproc/inproc_transport.cc +154 -70
  195. data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
  196. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +136 -137
  197. data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
  198. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +278 -234
  199. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +73 -57
  200. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +10 -4
  201. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +325 -269
  202. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +87 -77
  203. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +9 -4
  204. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +277 -230
  205. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +75 -61
  206. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +10 -4
  207. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +1074 -886
  208. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +299 -247
  209. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +24 -4
  210. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +87 -80
  211. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +22 -12
  212. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +7 -4
  213. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +103 -88
  214. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +28 -18
  215. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +7 -4
  216. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +54 -46
  217. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +20 -14
  218. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +6 -4
  219. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +33 -28
  220. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +14 -8
  221. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +6 -4
  222. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +33 -28
  223. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +14 -8
  224. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +6 -4
  225. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +407 -321
  226. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +104 -92
  227. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +7 -4
  228. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +30 -24
  229. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +14 -10
  230. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +6 -4
  231. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +45 -36
  232. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +11 -5
  233. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +5 -4
  234. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +38 -24
  235. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +17 -10
  236. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +6 -4
  237. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +578 -477
  238. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +194 -148
  239. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +21 -4
  240. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1501 -1112
  241. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +419 -331
  242. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +29 -4
  243. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +194 -156
  244. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +50 -50
  245. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +8 -4
  246. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1627 -1141
  247. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +450 -395
  248. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +31 -4
  249. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +41 -32
  250. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +16 -12
  251. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +6 -4
  252. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +360 -192
  253. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +84 -73
  254. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +6 -4
  255. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +660 -512
  256. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +214 -160
  257. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +20 -4
  258. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +384 -313
  259. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +114 -94
  260. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +13 -4
  261. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +34 -26
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +14 -14
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +6 -4
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +1473 -692
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +450 -223
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +39 -4
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +413 -347
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +113 -91
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +12 -4
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +26 -20
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +13 -7
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +6 -4
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +30 -24
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +14 -10
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +6 -4
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +87 -80
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +22 -12
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +7 -4
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +681 -474
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +213 -162
  281. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +19 -4
  282. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +808 -634
  283. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +192 -150
  284. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +14 -4
  285. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +56 -47
  286. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +16 -10
  287. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +6 -4
  288. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +42 -34
  289. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +17 -11
  290. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +6 -4
  291. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +872 -641
  292. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +266 -236
  293. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +21 -4
  294. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +72 -65
  295. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +23 -15
  296. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +7 -4
  297. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +77 -65
  298. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +24 -16
  299. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +7 -4
  300. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +101 -87
  301. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +30 -20
  302. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +7 -4
  303. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +118 -97
  304. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +35 -25
  305. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +7 -4
  306. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +34 -26
  307. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +14 -14
  308. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +6 -4
  309. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +197 -149
  310. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +59 -49
  311. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +9 -4
  312. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +390 -291
  313. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +118 -90
  314. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +12 -4
  315. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +578 -313
  316. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +132 -78
  317. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +12 -4
  318. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +23 -18
  319. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +12 -10
  320. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +6 -4
  321. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +615 -482
  322. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +165 -132
  323. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +15 -4
  324. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +561 -472
  325. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +134 -116
  326. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +12 -4
  327. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +172 -82
  328. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +33 -41
  329. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +6 -4
  330. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +52 -40
  331. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +21 -29
  332. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +7 -4
  333. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +55 -44
  334. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +22 -16
  335. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +6 -4
  336. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +340 -283
  337. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +107 -77
  338. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +13 -4
  339. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +433 -362
  340. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +127 -85
  341. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +15 -4
  342. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +665 -494
  343. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +195 -161
  344. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +16 -4
  345. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +391 -331
  346. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +69 -77
  347. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +8 -4
  348. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3886 -3149
  349. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +1036 -851
  350. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +63 -4
  351. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +114 -95
  352. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +39 -25
  353. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +8 -4
  354. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +541 -434
  355. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +171 -135
  356. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +17 -4
  357. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +134 -28
  358. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
  359. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +8 -4
  360. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +30 -24
  361. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +14 -10
  362. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +6 -4
  363. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +51 -40
  364. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +24 -18
  365. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +7 -4
  366. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +65 -59
  367. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +18 -16
  368. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +6 -4
  369. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +157 -140
  370. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +39 -33
  371. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +6 -4
  372. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +85 -69
  373. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +24 -18
  374. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +6 -4
  375. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +23 -18
  376. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +12 -10
  377. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +6 -4
  378. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +78 -62
  379. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +29 -29
  380. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +7 -4
  381. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +5 -4
  382. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
  383. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -4
  384. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +77 -60
  385. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +29 -25
  386. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +7 -4
  387. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +65 -54
  388. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +25 -19
  389. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +6 -4
  390. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +1104 -836
  391. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +359 -304
  392. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +21 -4
  393. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +40 -39
  394. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +10 -4
  395. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +6 -4
  396. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +119 -92
  397. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +52 -30
  398. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +10 -4
  399. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +248 -208
  400. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +65 -67
  401. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +8 -4
  402. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
  403. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
  404. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
  405. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +113 -62
  406. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +36 -30
  407. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +7 -4
  408. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +181 -157
  409. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +43 -35
  410. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +7 -4
  411. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +60 -48
  412. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +27 -17
  413. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +7 -4
  414. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1546 -1234
  415. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +422 -351
  416. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +26 -4
  417. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +23 -18
  418. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +12 -10
  419. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +6 -4
  420. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +78 -58
  421. 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 +22 -26
  422. 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 +6 -4
  423. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +145 -112
  424. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +60 -46
  425. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +10 -4
  426. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +19 -16
  427. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +10 -4
  428. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +6 -4
  429. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +81 -62
  430. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +29 -23
  431. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +6 -4
  432. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +23 -18
  433. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +12 -10
  434. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +6 -4
  435. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
  436. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
  437. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
  438. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -4
  439. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
  440. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +5 -4
  441. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +662 -498
  442. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +142 -122
  443. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +14 -4
  444. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +109 -84
  445. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +44 -36
  446. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +8 -4
  447. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +574 -461
  448. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +153 -137
  449. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +12 -4
  450. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +70 -59
  451. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +24 -16
  452. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +7 -4
  453. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +248 -189
  454. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +75 -73
  455. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +9 -4
  456. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +12 -10
  457. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +8 -2
  458. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +6 -4
  459. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +852 -714
  460. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +219 -171
  461. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +19 -4
  462. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +116 -102
  463. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +32 -22
  464. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +7 -4
  465. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +355 -292
  466. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +100 -78
  467. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +10 -4
  468. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +37 -30
  469. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +17 -11
  470. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +6 -4
  471. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +91 -75
  472. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +36 -18
  473. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +9 -4
  474. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +33 -26
  475. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +15 -9
  476. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +6 -4
  477. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +75 -64
  478. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +38 -16
  479. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +10 -4
  480. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +89 -75
  481. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +27 -17
  482. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +7 -4
  483. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +56 -47
  484. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +16 -10
  485. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +6 -4
  486. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +35 -28
  487. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +15 -9
  488. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +6 -4
  489. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +26 -20
  490. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +13 -7
  491. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +6 -4
  492. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +76 -60
  493. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +36 -26
  494. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +8 -4
  495. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +19 -16
  496. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +13 -3
  497. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +7 -4
  498. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +142 -93
  499. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +45 -24
  500. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +7 -4
  501. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +75 -63
  502. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +23 -13
  503. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +7 -4
  504. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +156 -125
  505. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +54 -36
  506. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +9 -4
  507. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +153 -125
  508. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +61 -31
  509. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +12 -4
  510. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +158 -126
  511. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +64 -42
  512. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +10 -4
  513. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +58 -46
  514. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +28 -14
  515. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +8 -4
  516. data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +5 -4
  517. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
  518. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +5 -4
  519. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +19 -16
  520. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +10 -4
  521. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +6 -4
  522. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +40 -34
  523. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +19 -9
  524. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +7 -4
  525. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +68 -58
  526. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +30 -16
  527. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +8 -4
  528. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +67 -54
  529. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +27 -17
  530. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +7 -4
  531. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +5 -4
  532. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
  533. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +5 -4
  534. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +33 -28
  535. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +14 -8
  536. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +6 -4
  537. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +41 -32
  538. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +16 -12
  539. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +6 -4
  540. data/src/core/ext/upb-gen/google/api/annotations.upb.h +24 -12
  541. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +6 -3
  542. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +5 -4
  543. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +684 -528
  544. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +203 -166
  545. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +18 -4
  546. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +1075 -547
  547. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +296 -178
  548. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +23 -4
  549. data/src/core/ext/upb-gen/google/api/http.upb.h +194 -166
  550. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +53 -39
  551. data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +8 -4
  552. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +59 -51
  553. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +17 -11
  554. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +6 -4
  555. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +27 -22
  556. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +12 -6
  557. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +6 -4
  558. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2875 -2375
  559. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +660 -618
  560. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +56 -21
  561. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +27 -22
  562. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +12 -6
  563. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +6 -4
  564. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +13 -10
  565. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +8 -2
  566. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +6 -4
  567. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +161 -120
  568. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +54 -38
  569. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +9 -4
  570. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +27 -22
  571. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +12 -6
  572. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +6 -4
  573. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +132 -112
  574. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +66 -28
  575. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +14 -4
  576. data/src/core/ext/upb-gen/google/rpc/status.upb.h +59 -51
  577. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +17 -11
  578. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
  579. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +119 -96
  580. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +48 -30
  581. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +9 -4
  582. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +90 -65
  583. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +34 -24
  584. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +7 -4
  585. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +640 -522
  586. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +188 -144
  587. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +17 -4
  588. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +56 -44
  589. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +23 -19
  590. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -4
  591. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +34 -28
  592. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +17 -7
  593. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +7 -4
  594. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +294 -242
  595. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +106 -74
  596. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +14 -4
  597. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +108 -86
  598. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +36 -22
  599. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +8 -4
  600. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +553 -470
  601. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +128 -94
  602. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +14 -4
  603. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +149 -86
  604. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +47 -28
  605. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +8 -4
  606. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +45 -30
  607. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +19 -12
  608. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +6 -4
  609. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +15 -12
  610. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +5 -2
  611. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +5 -4
  612. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +45 -30
  613. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +19 -12
  614. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +6 -4
  615. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +38 -24
  616. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +17 -10
  617. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
  618. data/src/core/ext/upb-gen/validate/validate.upb.h +2716 -2462
  619. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +505 -551
  620. data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +29 -5
  621. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +149 -86
  622. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +47 -28
  623. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +8 -4
  624. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +45 -30
  625. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +19 -12
  626. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +6 -4
  627. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +15 -12
  628. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +5 -2
  629. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +5 -4
  630. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +125 -82
  631. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +49 -28
  632. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +9 -4
  633. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +38 -24
  634. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +17 -10
  635. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +6 -4
  636. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +19 -16
  637. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +10 -4
  638. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +6 -4
  639. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +30 -24
  640. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +14 -10
  641. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +6 -4
  642. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +69 -54
  643. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +30 -20
  644. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +7 -4
  645. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +44 -27
  646. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +21 -11
  647. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +7 -4
  648. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +30 -24
  649. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +14 -10
  650. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +6 -4
  651. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +41 -32
  652. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +18 -12
  653. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +6 -4
  654. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +117 -97
  655. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +36 -26
  656. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +7 -4
  657. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +44 -36
  658. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +18 -16
  659. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +6 -4
  660. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +150 -97
  661. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +55 -37
  662. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +9 -4
  663. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +51 -47
  664. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +15 -9
  665. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +6 -4
  666. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +30 -24
  667. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +15 -9
  668. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +6 -4
  669. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +91 -82
  670. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +24 -16
  671. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +7 -4
  672. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +12 -10
  673. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +8 -2
  674. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +6 -4
  675. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +103 -88
  676. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +28 -18
  677. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +7 -4
  678. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +387 -289
  679. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +137 -103
  680. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +15 -4
  681. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +278 -238
  682. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +69 -49
  683. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +11 -4
  684. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +40 -32
  685. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +20 -10
  686. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +7 -4
  687. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +109 -93
  688. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +33 -23
  689. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +7 -4
  690. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +66 -50
  691. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +27 -23
  692. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +7 -4
  693. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +69 -58
  694. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +30 -16
  695. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +8 -4
  696. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +30 -24
  697. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +14 -10
  698. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +6 -4
  699. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
  700. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +7 -9
  701. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
  702. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +7 -9
  703. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
  704. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +7 -9
  705. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
  706. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +7 -9
  707. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
  708. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +7 -9
  709. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
  710. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +7 -9
  711. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
  712. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +7 -9
  713. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
  714. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +7 -9
  715. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
  716. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +7 -9
  717. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
  718. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +7 -9
  719. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
  720. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +7 -9
  721. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
  722. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +7 -9
  723. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
  724. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +7 -9
  725. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
  726. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +7 -9
  727. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
  728. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +12 -9
  729. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
  730. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +7 -9
  731. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
  732. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +12 -9
  733. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
  734. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +7 -9
  735. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
  736. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +7 -9
  737. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
  738. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +7 -9
  739. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
  740. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +7 -9
  741. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
  742. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +7 -9
  743. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
  744. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +32 -9
  745. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
  746. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +7 -9
  747. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
  748. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +7 -9
  749. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
  750. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +7 -9
  751. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
  752. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +7 -9
  753. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
  754. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +7 -9
  755. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
  756. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +7 -9
  757. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
  758. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +7 -9
  759. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
  760. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +7 -9
  761. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
  762. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +7 -9
  763. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
  764. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +7 -9
  765. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
  766. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +7 -9
  767. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
  768. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +7 -9
  769. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
  770. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +7 -9
  771. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
  772. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +7 -9
  773. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
  774. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +7 -9
  775. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
  776. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +7 -9
  777. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
  778. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +12 -9
  779. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
  780. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +7 -9
  781. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
  782. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +7 -9
  783. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
  784. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +7 -9
  785. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
  786. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +7 -9
  787. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
  788. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +7 -9
  789. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
  790. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +7 -9
  791. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
  792. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +7 -9
  793. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
  794. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +7 -9
  795. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
  796. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +7 -9
  797. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
  798. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +7 -9
  799. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
  800. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +7 -9
  801. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
  802. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +7 -9
  803. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
  804. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +7 -9
  805. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
  806. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +12 -9
  807. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
  808. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +7 -9
  809. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
  810. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +7 -9
  811. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
  812. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +7 -9
  813. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
  814. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +7 -9
  815. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
  816. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +7 -9
  817. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
  818. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +7 -9
  819. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
  820. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +7 -9
  821. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
  822. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +7 -9
  823. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
  824. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +7 -9
  825. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
  826. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +7 -9
  827. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
  828. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +7 -9
  829. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
  830. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +7 -9
  831. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
  832. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +7 -9
  833. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
  834. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +7 -9
  835. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
  836. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
  837. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
  838. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +7 -9
  839. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
  840. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +7 -9
  841. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
  842. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +7 -9
  843. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
  844. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +7 -9
  845. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
  846. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +7 -9
  847. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
  848. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
  849. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
  850. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +7 -9
  851. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
  852. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +12 -9
  853. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
  854. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +7 -9
  855. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
  856. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +7 -9
  857. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
  858. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +7 -9
  859. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
  860. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +7 -9
  861. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
  862. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +7 -9
  863. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
  864. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +7 -9
  865. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
  866. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +7 -9
  867. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
  868. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +7 -9
  869. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
  870. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +7 -9
  871. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
  872. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +7 -9
  873. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
  874. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +7 -9
  875. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  876. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +7 -9
  877. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
  878. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +7 -9
  879. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
  880. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +7 -9
  881. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
  882. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +7 -9
  883. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
  884. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +7 -9
  885. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
  886. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +7 -9
  887. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
  888. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +7 -9
  889. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
  890. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +7 -9
  891. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
  892. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +7 -9
  893. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
  894. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +7 -9
  895. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
  896. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +7 -9
  897. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
  898. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +7 -9
  899. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
  900. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +7 -9
  901. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
  902. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +7 -9
  903. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
  904. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +7 -9
  905. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
  906. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +7 -9
  907. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
  908. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +7 -9
  909. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
  910. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +7 -9
  911. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
  912. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +7 -9
  913. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
  914. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +7 -9
  915. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
  916. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +7 -9
  917. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
  918. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +7 -9
  919. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
  920. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +7 -9
  921. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
  922. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +17 -9
  923. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
  924. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +7 -9
  925. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
  926. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +7 -9
  927. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
  928. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +7 -9
  929. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +478 -450
  930. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +12 -9
  931. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
  932. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +7 -9
  933. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
  934. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +7 -9
  935. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
  936. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +7 -9
  937. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
  938. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +7 -9
  939. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
  940. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +7 -9
  941. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
  942. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +7 -9
  943. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
  944. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +7 -9
  945. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
  946. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +7 -9
  947. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
  948. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +7 -9
  949. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
  950. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +7 -9
  951. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
  952. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +7 -9
  953. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
  954. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +7 -9
  955. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
  956. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +7 -9
  957. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
  958. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +7 -9
  959. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
  960. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +7 -9
  961. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
  962. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +7 -9
  963. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
  964. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +7 -9
  965. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
  966. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +7 -9
  967. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
  968. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +7 -9
  969. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
  970. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +7 -9
  971. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
  972. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +7 -9
  973. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
  974. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +7 -9
  975. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
  976. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +7 -9
  977. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
  978. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +7 -9
  979. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
  980. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +7 -9
  981. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
  982. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +7 -9
  983. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
  984. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +7 -9
  985. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
  986. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +7 -9
  987. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
  988. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +7 -9
  989. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  990. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +7 -9
  991. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
  992. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +7 -9
  993. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
  994. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +7 -9
  995. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
  996. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +7 -9
  997. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
  998. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +7 -9
  999. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
  1000. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +7 -9
  1001. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
  1002. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +7 -9
  1003. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
  1004. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +7 -9
  1005. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
  1006. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +7 -9
  1007. data/src/core/filter/blackboard.cc +33 -0
  1008. data/src/core/filter/blackboard.h +70 -0
  1009. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +81 -0
  1010. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
  1011. data/src/core/handshaker/handshaker.cc +199 -0
  1012. data/src/core/handshaker/handshaker.h +170 -0
  1013. data/src/core/handshaker/handshaker_factory.h +89 -0
  1014. data/src/core/handshaker/handshaker_registry.cc +60 -0
  1015. data/src/core/handshaker/handshaker_registry.h +69 -0
  1016. data/src/core/handshaker/http_connect/http_connect_handshaker.cc +359 -0
  1017. data/src/core/handshaker/http_connect/http_connect_handshaker.h +42 -0
  1018. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +297 -0
  1019. data/src/core/handshaker/http_connect/http_proxy_mapper.h +52 -0
  1020. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
  1021. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
  1022. data/src/core/handshaker/proxy_mapper.h +52 -0
  1023. data/src/core/handshaker/proxy_mapper_registry.cc +71 -0
  1024. data/src/core/handshaker/proxy_mapper_registry.h +74 -0
  1025. data/src/core/handshaker/security/secure_endpoint.cc +578 -0
  1026. data/src/core/handshaker/security/secure_endpoint.h +41 -0
  1027. data/src/core/handshaker/security/security_handshaker.cc +628 -0
  1028. data/src/core/handshaker/security/security_handshaker.h +45 -0
  1029. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +230 -0
  1030. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +39 -0
  1031. data/src/core/lib/address_utils/parse_address.cc +41 -45
  1032. data/src/core/lib/address_utils/parse_address.h +1 -3
  1033. data/src/core/lib/address_utils/sockaddr_utils.cc +30 -20
  1034. data/src/core/lib/address_utils/sockaddr_utils.h +0 -2
  1035. data/src/core/lib/channel/call_finalization.h +1 -1
  1036. data/src/core/lib/channel/channel_args.cc +20 -26
  1037. data/src/core/lib/channel/channel_args.h +34 -21
  1038. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  1039. data/src/core/lib/channel/channel_args_preconditioning.h +2 -3
  1040. data/src/core/lib/channel/channel_stack.cc +21 -74
  1041. data/src/core/lib/channel/channel_stack.h +31 -62
  1042. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  1043. data/src/core/lib/channel/channel_stack_builder.h +1 -7
  1044. data/src/core/lib/channel/channel_stack_builder_impl.cc +18 -30
  1045. data/src/core/lib/channel/channel_stack_builder_impl.h +13 -3
  1046. data/src/core/lib/channel/connected_channel.cc +49 -709
  1047. data/src/core/lib/channel/promise_based_filter.cc +249 -324
  1048. data/src/core/lib/channel/promise_based_filter.h +269 -508
  1049. data/src/core/lib/channel/status_util.cc +2 -4
  1050. data/src/core/lib/channel/status_util.h +1 -2
  1051. data/src/core/lib/compression/compression.cc +7 -10
  1052. data/src/core/lib/compression/compression_internal.cc +39 -9
  1053. data/src/core/lib/compression/compression_internal.h +5 -5
  1054. data/src/core/lib/compression/message_compress.cc +16 -18
  1055. data/src/core/lib/compression/message_compress.h +1 -2
  1056. data/src/core/lib/debug/trace.cc +48 -67
  1057. data/src/core/lib/debug/trace.h +2 -97
  1058. data/src/core/lib/debug/trace_flags.cc +242 -0
  1059. data/src/core/lib/debug/trace_flags.h +131 -0
  1060. data/src/core/lib/debug/trace_impl.h +125 -0
  1061. data/src/core/lib/event_engine/ares_resolver.cc +165 -92
  1062. data/src/core/lib/event_engine/ares_resolver.h +11 -18
  1063. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +14 -15
  1064. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  1065. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +47 -34
  1066. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
  1067. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
  1068. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +28 -31
  1069. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +5 -6
  1070. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -5
  1071. data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -3
  1072. data/src/core/lib/event_engine/common_closures.h +1 -2
  1073. data/src/core/lib/event_engine/default_event_engine.cc +13 -16
  1074. data/src/core/lib/event_engine/default_event_engine.h +3 -10
  1075. data/src/core/lib/event_engine/default_event_engine_factory.cc +3 -4
  1076. data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
  1077. data/src/core/lib/event_engine/event_engine.cc +35 -5
  1078. data/src/core/lib/event_engine/event_engine_context.h +32 -0
  1079. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +64 -0
  1080. data/src/core/lib/event_engine/extensions/supports_fd.h +25 -2
  1081. data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
  1082. data/src/core/lib/event_engine/forkable.cc +12 -13
  1083. data/src/core/lib/event_engine/forkable.h +0 -13
  1084. data/src/core/lib/event_engine/grpc_polled_fd.h +2 -4
  1085. data/src/core/lib/event_engine/handle_containers.h +1 -3
  1086. data/src/core/lib/event_engine/memory_allocator_factory.h +1 -3
  1087. data/src/core/lib/event_engine/nameser.h +1 -1
  1088. data/src/core/lib/event_engine/poller.h +1 -2
  1089. data/src/core/lib/event_engine/posix.h +9 -2
  1090. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +28 -30
  1091. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +6 -8
  1092. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +27 -31
  1093. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +2 -4
  1094. data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -3
  1095. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -3
  1096. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +3 -6
  1097. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -6
  1098. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +0 -1
  1099. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -9
  1100. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +0 -1
  1101. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
  1102. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +0 -1
  1103. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +96 -103
  1104. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +22 -23
  1105. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +84 -65
  1106. data/src/core/lib/event_engine/posix_engine/posix_engine.h +16 -13
  1107. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
  1108. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +28 -31
  1109. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +13 -13
  1110. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +28 -33
  1111. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -3
  1112. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +53 -40
  1113. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
  1114. data/src/core/lib/event_engine/posix_engine/timer.cc +5 -6
  1115. data/src/core/lib/event_engine/posix_engine/timer.h +4 -7
  1116. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -3
  1117. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +16 -25
  1118. data/src/core/lib/event_engine/posix_engine/timer_manager.h +4 -7
  1119. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +7 -10
  1120. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +2 -5
  1121. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +3 -4
  1122. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +0 -1
  1123. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -3
  1124. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +0 -1
  1125. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +0 -1
  1126. data/src/core/lib/event_engine/query_extensions.h +3 -2
  1127. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -5
  1128. data/src/core/lib/event_engine/resolved_address.cc +8 -7
  1129. data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
  1130. data/src/core/lib/event_engine/shim.cc +3 -3
  1131. data/src/core/lib/event_engine/slice.cc +5 -7
  1132. data/src/core/lib/event_engine/slice_buffer.cc +2 -4
  1133. data/src/core/lib/event_engine/tcp_socket_utils.cc +29 -27
  1134. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -4
  1135. data/src/core/lib/event_engine/thread_local.cc +2 -2
  1136. data/src/core/lib/event_engine/thread_local.h +1 -1
  1137. data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -8
  1138. data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -6
  1139. data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -4
  1140. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +1 -2
  1141. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +46 -53
  1142. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -15
  1143. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
  1144. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +7 -7
  1145. data/src/core/lib/event_engine/time_util.cc +3 -4
  1146. data/src/core/lib/event_engine/time_util.h +1 -3
  1147. data/src/core/lib/event_engine/utils.cc +19 -6
  1148. data/src/core/lib/event_engine/utils.h +9 -4
  1149. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +158 -132
  1150. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
  1151. data/src/core/lib/event_engine/windows/iocp.cc +24 -22
  1152. data/src/core/lib/event_engine/windows/iocp.h +2 -3
  1153. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
  1154. data/src/core/lib/event_engine/windows/win_socket.cc +51 -36
  1155. data/src/core/lib/event_engine/windows/win_socket.h +11 -10
  1156. data/src/core/lib/event_engine/windows/windows_endpoint.cc +58 -44
  1157. data/src/core/lib/event_engine/windows/windows_engine.cc +265 -123
  1158. data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
  1159. data/src/core/lib/event_engine/windows/windows_listener.cc +83 -49
  1160. data/src/core/lib/event_engine/windows/windows_listener.h +18 -5
  1161. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
  1162. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -5
  1163. data/src/core/lib/event_engine/work_queue/work_queue.h +1 -3
  1164. data/src/core/lib/experiments/config.cc +111 -66
  1165. data/src/core/lib/experiments/config.h +55 -2
  1166. data/src/core/lib/experiments/experiments.cc +308 -510
  1167. data/src/core/lib/experiments/experiments.h +148 -240
  1168. data/src/core/lib/iomgr/buffer_list.cc +7 -8
  1169. data/src/core/lib/iomgr/buffer_list.h +2 -4
  1170. data/src/core/lib/iomgr/call_combiner.cc +42 -68
  1171. data/src/core/lib/iomgr/call_combiner.h +12 -17
  1172. data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
  1173. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  1174. data/src/core/lib/iomgr/closure.cc +2 -2
  1175. data/src/core/lib/iomgr/closure.h +17 -21
  1176. data/src/core/lib/iomgr/combiner.cc +38 -52
  1177. data/src/core/lib/iomgr/combiner.h +2 -6
  1178. data/src/core/lib/iomgr/endpoint.cc +1 -7
  1179. data/src/core/lib/iomgr/endpoint.h +4 -6
  1180. data/src/core/lib/iomgr/endpoint_cfstream.cc +45 -76
  1181. data/src/core/lib/iomgr/endpoint_pair_posix.cc +8 -10
  1182. data/src/core/lib/iomgr/endpoint_pair_windows.cc +16 -17
  1183. data/src/core/lib/iomgr/error.cc +24 -34
  1184. data/src/core/lib/iomgr/error.h +8 -11
  1185. data/src/core/lib/iomgr/error_cfstream.cc +1 -3
  1186. data/src/core/lib/iomgr/ev_apple.cc +16 -24
  1187. data/src/core/lib/iomgr/ev_epoll1_linux.cc +81 -126
  1188. data/src/core/lib/iomgr/ev_poll_posix.cc +62 -62
  1189. data/src/core/lib/iomgr/ev_posix.cc +68 -60
  1190. data/src/core/lib/iomgr/ev_posix.h +9 -12
  1191. data/src/core/lib/iomgr/event_engine_shims/closure.cc +11 -15
  1192. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -3
  1193. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +35 -53
  1194. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
  1195. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +10 -15
  1196. data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
  1197. data/src/core/lib/iomgr/exec_ctx.cc +14 -18
  1198. data/src/core/lib/iomgr/exec_ctx.h +33 -23
  1199. data/src/core/lib/iomgr/executor.cc +60 -59
  1200. data/src/core/lib/iomgr/executor.h +2 -2
  1201. data/src/core/lib/iomgr/fork_posix.cc +11 -15
  1202. data/src/core/lib/iomgr/fork_windows.cc +3 -2
  1203. data/src/core/lib/iomgr/internal_errqueue.cc +5 -6
  1204. data/src/core/lib/iomgr/iocp_windows.cc +16 -15
  1205. data/src/core/lib/iomgr/iocp_windows.h +0 -1
  1206. data/src/core/lib/iomgr/iomgr.cc +19 -26
  1207. data/src/core/lib/iomgr/iomgr.h +0 -1
  1208. data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
  1209. data/src/core/lib/iomgr/iomgr_internal.h +0 -1
  1210. data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
  1211. data/src/core/lib/iomgr/iomgr_windows.cc +7 -6
  1212. data/src/core/lib/iomgr/lockfree_event.cc +12 -21
  1213. data/src/core/lib/iomgr/lockfree_event.h +1 -2
  1214. data/src/core/lib/iomgr/nameser.h +1 -1
  1215. data/src/core/lib/iomgr/polling_entity.cc +17 -11
  1216. data/src/core/lib/iomgr/pollset.cc +2 -2
  1217. data/src/core/lib/iomgr/pollset.h +0 -3
  1218. data/src/core/lib/iomgr/pollset_set.cc +2 -2
  1219. data/src/core/lib/iomgr/pollset_set_windows.cc +0 -1
  1220. data/src/core/lib/iomgr/pollset_windows.cc +2 -6
  1221. data/src/core/lib/iomgr/pollset_windows.h +0 -1
  1222. data/src/core/lib/iomgr/port.h +5 -2
  1223. data/src/core/lib/iomgr/python_util.h +1 -2
  1224. data/src/core/lib/iomgr/resolve_address.cc +4 -7
  1225. data/src/core/lib/iomgr/resolve_address.h +3 -6
  1226. data/src/core/lib/iomgr/resolve_address_impl.h +0 -1
  1227. data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
  1228. data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
  1229. data/src/core/lib/iomgr/resolved_address.h +0 -1
  1230. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +5 -6
  1231. data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
  1232. data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
  1233. data/src/core/lib/iomgr/socket_mutator.cc +3 -5
  1234. data/src/core/lib/iomgr/socket_mutator.h +2 -4
  1235. data/src/core/lib/iomgr/socket_utils.h +0 -1
  1236. data/src/core/lib/iomgr/socket_utils_common_posix.cc +45 -52
  1237. data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
  1238. data/src/core/lib/iomgr/socket_utils_posix.cc +3 -6
  1239. data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
  1240. data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
  1241. data/src/core/lib/iomgr/socket_windows.cc +11 -14
  1242. data/src/core/lib/iomgr/socket_windows.h +1 -2
  1243. data/src/core/lib/iomgr/tcp_client.cc +2 -2
  1244. data/src/core/lib/iomgr/tcp_client.h +1 -2
  1245. data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
  1246. data/src/core/lib/iomgr/tcp_client_posix.cc +24 -36
  1247. data/src/core/lib/iomgr/tcp_client_windows.cc +33 -17
  1248. data/src/core/lib/iomgr/tcp_posix.cc +167 -189
  1249. data/src/core/lib/iomgr/tcp_posix.h +1 -3
  1250. data/src/core/lib/iomgr/tcp_server.cc +2 -2
  1251. data/src/core/lib/iomgr/tcp_server.h +3 -4
  1252. data/src/core/lib/iomgr/tcp_server_posix.cc +152 -156
  1253. data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
  1254. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +13 -17
  1255. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +13 -14
  1256. data/src/core/lib/iomgr/tcp_server_windows.cc +94 -50
  1257. data/src/core/lib/iomgr/tcp_windows.cc +38 -66
  1258. data/src/core/lib/iomgr/timer.cc +2 -2
  1259. data/src/core/lib/iomgr/timer.h +2 -3
  1260. data/src/core/lib/iomgr/timer_generic.cc +73 -106
  1261. data/src/core/lib/iomgr/timer_generic.h +0 -1
  1262. data/src/core/lib/iomgr/timer_heap.cc +4 -6
  1263. data/src/core/lib/iomgr/timer_manager.cc +27 -44
  1264. data/src/core/lib/iomgr/timer_manager.h +0 -1
  1265. data/src/core/lib/iomgr/unix_sockets_posix.cc +18 -6
  1266. data/src/core/lib/iomgr/unix_sockets_posix.h +1 -3
  1267. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -4
  1268. data/src/core/lib/iomgr/vsock.cc +5 -8
  1269. data/src/core/lib/iomgr/vsock.h +1 -3
  1270. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
  1271. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +6 -7
  1272. data/src/core/lib/promise/activity.cc +4 -5
  1273. data/src/core/lib/promise/activity.h +54 -22
  1274. data/src/core/lib/promise/all_ok.h +52 -9
  1275. data/src/core/lib/promise/arena_promise.h +1 -3
  1276. data/src/core/lib/promise/cancel_callback.h +34 -6
  1277. data/src/core/lib/promise/context.h +20 -11
  1278. data/src/core/lib/promise/detail/basic_seq.h +33 -20
  1279. data/src/core/lib/promise/detail/join_state.h +555 -760
  1280. data/src/core/lib/promise/detail/promise_factory.h +45 -29
  1281. data/src/core/lib/promise/detail/promise_like.h +49 -11
  1282. data/src/core/lib/promise/detail/seq_state.h +1314 -1977
  1283. data/src/core/lib/promise/detail/status.h +36 -14
  1284. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +1 -2
  1285. data/src/core/lib/promise/for_each.h +97 -39
  1286. data/src/core/lib/promise/if.h +21 -17
  1287. data/src/core/lib/promise/interceptor_list.h +22 -36
  1288. data/src/core/lib/promise/latch.h +25 -40
  1289. data/src/core/lib/promise/loop.h +23 -10
  1290. data/src/core/lib/promise/map.h +77 -9
  1291. data/src/core/lib/promise/observable.h +181 -0
  1292. data/src/core/lib/promise/party.cc +263 -125
  1293. data/src/core/lib/promise/party.h +187 -391
  1294. data/src/core/lib/promise/pipe.h +34 -57
  1295. data/src/core/lib/promise/poll.h +117 -39
  1296. data/src/core/lib/promise/promise.h +12 -6
  1297. data/src/core/lib/promise/race.h +10 -5
  1298. data/src/core/lib/promise/seq.h +57 -64
  1299. data/src/core/lib/promise/sleep.cc +5 -6
  1300. data/src/core/lib/promise/sleep.h +2 -4
  1301. data/src/core/lib/promise/status_flag.h +165 -51
  1302. data/src/core/lib/promise/try_join.h +37 -20
  1303. data/src/core/lib/promise/try_seq.h +113 -77
  1304. data/src/core/lib/resource_quota/api.cc +4 -7
  1305. data/src/core/lib/resource_quota/api.h +3 -5
  1306. data/src/core/lib/resource_quota/arena.cc +64 -87
  1307. data/src/core/lib/resource_quota/arena.h +145 -215
  1308. data/src/core/lib/resource_quota/connection_quota.cc +69 -0
  1309. data/src/core/lib/resource_quota/connection_quota.h +60 -0
  1310. data/src/core/lib/resource_quota/memory_quota.cc +51 -52
  1311. data/src/core/lib/resource_quota/memory_quota.h +27 -21
  1312. data/src/core/lib/resource_quota/periodic_update.cc +5 -5
  1313. data/src/core/lib/resource_quota/periodic_update.h +1 -3
  1314. data/src/core/lib/resource_quota/resource_quota.cc +2 -2
  1315. data/src/core/lib/resource_quota/resource_quota.h +6 -8
  1316. data/src/core/lib/resource_quota/thread_quota.cc +4 -4
  1317. data/src/core/lib/resource_quota/thread_quota.h +3 -4
  1318. data/src/core/lib/security/authorization/audit_logging.cc +10 -12
  1319. data/src/core/lib/security/authorization/audit_logging.h +3 -5
  1320. data/src/core/lib/security/authorization/authorization_engine.h +1 -1
  1321. data/src/core/lib/security/authorization/authorization_policy_provider.h +5 -7
  1322. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -4
  1323. data/src/core/lib/security/authorization/evaluate_args.cc +16 -20
  1324. data/src/core/lib/security/authorization/evaluate_args.h +4 -6
  1325. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -5
  1326. data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -3
  1327. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +29 -41
  1328. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +11 -11
  1329. data/src/core/lib/security/authorization/matchers.cc +5 -8
  1330. data/src/core/lib/security/authorization/matchers.h +1 -3
  1331. data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
  1332. data/src/core/lib/security/authorization/rbac_policy.h +2 -5
  1333. data/src/core/lib/security/authorization/stdout_logger.cc +7 -7
  1334. data/src/core/lib/security/authorization/stdout_logger.h +2 -3
  1335. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +7 -8
  1336. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
  1337. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -1
  1338. data/src/core/lib/security/context/security_context.cc +51 -49
  1339. data/src/core/lib/security/context/security_context.h +46 -17
  1340. data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -7
  1341. data/src/core/lib/security/credentials/alts/alts_credentials.h +11 -7
  1342. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -5
  1343. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
  1344. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
  1345. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
  1346. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +5 -7
  1347. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
  1348. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
  1349. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
  1350. data/src/core/lib/security/credentials/call_creds_util.cc +8 -8
  1351. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  1352. data/src/core/lib/security/credentials/channel_creds_registry.h +5 -6
  1353. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
  1354. data/src/core/lib/security/credentials/composite/composite_credentials.cc +18 -21
  1355. data/src/core/lib/security/credentials/composite/composite_credentials.h +9 -8
  1356. data/src/core/lib/security/credentials/credentials.cc +20 -20
  1357. data/src/core/lib/security/credentials/credentials.h +13 -14
  1358. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +336 -339
  1359. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +58 -46
  1360. data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
  1361. data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
  1362. data/src/core/lib/security/credentials/external/external_account_credentials.cc +410 -374
  1363. data/src/core/lib/security/credentials/external/external_account_credentials.h +127 -59
  1364. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -53
  1365. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +30 -9
  1366. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +103 -129
  1367. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +20 -22
  1368. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
  1369. data/src/core/lib/security/credentials/fake/fake_credentials.h +10 -9
  1370. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
  1371. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  1372. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +4 -6
  1373. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +60 -77
  1374. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -7
  1375. data/src/core/lib/security/credentials/iam/iam_credentials.cc +9 -14
  1376. data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
  1377. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  1378. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +4 -4
  1379. data/src/core/lib/security/credentials/jwt/json_token.cc +35 -34
  1380. data/src/core/lib/security/credentials/jwt/json_token.h +2 -4
  1381. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +24 -30
  1382. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +9 -9
  1383. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +90 -102
  1384. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -5
  1385. data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
  1386. data/src/core/lib/security/credentials/local/local_credentials.h +5 -5
  1387. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +202 -302
  1388. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +48 -71
  1389. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +22 -35
  1390. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +11 -13
  1391. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +47 -59
  1392. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -9
  1393. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +28 -28
  1394. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -3
  1395. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -2
  1396. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +107 -46
  1397. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +15 -14
  1398. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +8 -12
  1399. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -10
  1400. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +27 -29
  1401. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +2 -1
  1402. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +23 -20
  1403. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +13 -12
  1404. data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -24
  1405. data/src/core/lib/security/credentials/tls/tls_credentials.h +7 -5
  1406. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -7
  1407. data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
  1408. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +305 -0
  1409. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +181 -0
  1410. data/src/core/lib/security/credentials/xds/xds_credentials.cc +21 -19
  1411. data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
  1412. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +35 -40
  1413. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
  1414. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +28 -28
  1415. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +3 -3
  1416. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -10
  1417. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
  1418. data/src/core/lib/security/security_connector/load_system_roots.h +4 -2
  1419. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
  1420. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +8 -10
  1421. data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
  1422. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +85 -0
  1423. data/src/core/lib/security/security_connector/local/local_security_connector.cc +35 -35
  1424. data/src/core/lib/security/security_connector/local/local_security_connector.h +3 -3
  1425. data/src/core/lib/security/security_connector/security_connector.cc +11 -15
  1426. data/src/core/lib/security/security_connector/security_connector.h +8 -11
  1427. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +28 -32
  1428. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -5
  1429. data/src/core/lib/security/security_connector/ssl_utils.cc +42 -42
  1430. data/src/core/lib/security/security_connector/ssl_utils.h +6 -9
  1431. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +49 -62
  1432. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +6 -7
  1433. data/src/core/lib/security/transport/auth_filters.h +17 -38
  1434. data/src/core/lib/security/transport/client_auth_filter.cc +19 -27
  1435. data/src/core/lib/security/transport/server_auth_filter.cc +23 -32
  1436. data/src/core/lib/security/util/json_util.cc +4 -6
  1437. data/src/core/lib/security/util/json_util.h +1 -1
  1438. data/src/core/lib/slice/percent_encoding.cc +4 -6
  1439. data/src/core/lib/slice/slice.cc +44 -20
  1440. data/src/core/lib/slice/slice.h +8 -11
  1441. data/src/core/lib/slice/slice_buffer.cc +67 -30
  1442. data/src/core/lib/slice/slice_buffer.h +16 -5
  1443. data/src/core/lib/slice/slice_internal.h +11 -7
  1444. data/src/core/lib/slice/slice_refcount.h +7 -15
  1445. data/src/core/lib/slice/slice_string_helpers.cc +3 -3
  1446. data/src/core/lib/slice/slice_string_helpers.h +1 -3
  1447. data/src/core/lib/surface/byte_buffer.cc +2 -4
  1448. data/src/core/lib/surface/byte_buffer_reader.cc +5 -7
  1449. data/src/core/lib/surface/call.cc +205 -3997
  1450. data/src/core/lib/surface/call.h +177 -101
  1451. data/src/core/lib/surface/call_details.cc +5 -5
  1452. data/src/core/lib/surface/call_log_batch.cc +7 -11
  1453. data/src/core/lib/surface/call_test_only.h +2 -4
  1454. data/src/core/lib/surface/call_utils.cc +231 -0
  1455. data/src/core/lib/surface/call_utils.h +486 -0
  1456. data/src/core/lib/surface/channel.cc +131 -340
  1457. data/src/core/lib/surface/channel.h +100 -118
  1458. data/src/core/lib/surface/channel_create.cc +125 -0
  1459. data/src/core/lib/surface/channel_create.h +42 -0
  1460. data/src/core/lib/surface/channel_init.cc +275 -271
  1461. data/src/core/lib/surface/channel_init.h +190 -115
  1462. data/src/core/lib/surface/channel_stack_type.cc +2 -2
  1463. data/src/core/lib/surface/client_call.cc +441 -0
  1464. data/src/core/lib/surface/client_call.h +187 -0
  1465. data/src/core/lib/surface/completion_queue.cc +127 -124
  1466. data/src/core/lib/surface/completion_queue.h +4 -14
  1467. data/src/core/lib/surface/completion_queue_factory.cc +8 -9
  1468. data/src/core/lib/surface/completion_queue_factory.h +1 -2
  1469. data/src/core/lib/surface/connection_context.cc +77 -0
  1470. data/src/core/lib/surface/connection_context.h +156 -0
  1471. data/src/core/lib/surface/event_string.cc +2 -2
  1472. data/src/core/lib/surface/event_string.h +1 -2
  1473. data/src/core/lib/surface/filter_stack_call.cc +1156 -0
  1474. data/src/core/lib/surface/filter_stack_call.h +366 -0
  1475. data/src/core/lib/surface/init.cc +66 -32
  1476. data/src/core/lib/surface/init.h +5 -0
  1477. data/src/core/lib/surface/init_internally.cc +2 -2
  1478. data/src/core/lib/surface/lame_client.cc +23 -54
  1479. data/src/core/lib/surface/lame_client.h +16 -15
  1480. data/src/core/lib/surface/legacy_channel.cc +428 -0
  1481. data/src/core/lib/surface/legacy_channel.h +113 -0
  1482. data/src/core/lib/surface/metadata_array.cc +6 -7
  1483. data/src/core/lib/surface/server_call.cc +227 -0
  1484. data/src/core/lib/surface/server_call.h +167 -0
  1485. data/src/core/lib/surface/validate_metadata.cc +4 -6
  1486. data/src/core/lib/surface/validate_metadata.h +3 -6
  1487. data/src/core/lib/surface/version.cc +3 -4
  1488. data/src/core/lib/transport/bdp_estimator.cc +14 -20
  1489. data/src/core/lib/transport/bdp_estimator.h +12 -18
  1490. data/src/core/lib/transport/call_arena_allocator.cc +27 -0
  1491. data/src/core/lib/transport/call_arena_allocator.h +91 -0
  1492. data/src/core/lib/transport/call_destination.h +76 -0
  1493. data/src/core/lib/transport/call_filters.cc +79 -308
  1494. data/src/core/lib/transport/call_filters.h +875 -476
  1495. data/src/core/lib/transport/call_final_info.cc +2 -2
  1496. data/src/core/lib/transport/call_final_info.h +3 -4
  1497. data/src/core/lib/transport/call_spine.cc +99 -79
  1498. data/src/core/lib/transport/call_spine.h +254 -248
  1499. data/src/core/lib/transport/call_state.cc +39 -0
  1500. data/src/core/lib/transport/call_state.h +1061 -0
  1501. data/src/core/lib/transport/connectivity_state.cc +38 -47
  1502. data/src/core/lib/transport/connectivity_state.h +3 -7
  1503. data/src/core/lib/transport/error_utils.cc +3 -5
  1504. data/src/core/lib/transport/error_utils.h +2 -4
  1505. data/src/core/lib/transport/interception_chain.cc +147 -0
  1506. data/src/core/lib/transport/interception_chain.h +253 -0
  1507. data/src/core/lib/transport/message.cc +3 -4
  1508. data/src/core/lib/transport/message.h +5 -0
  1509. data/src/core/lib/transport/metadata.cc +29 -5
  1510. data/src/core/lib/transport/metadata.h +37 -2
  1511. data/src/core/lib/transport/metadata_batch.cc +76 -8
  1512. data/src/core/lib/transport/metadata_batch.h +116 -31
  1513. data/src/core/lib/transport/metadata_compression_traits.h +2 -3
  1514. data/src/core/lib/transport/metadata_info.cc +55 -0
  1515. data/src/core/lib/transport/metadata_info.h +85 -0
  1516. data/src/core/lib/transport/parsed_metadata.cc +2 -2
  1517. data/src/core/lib/transport/parsed_metadata.h +2 -5
  1518. data/src/core/lib/transport/simple_slice_based_metadata.h +0 -1
  1519. data/src/core/lib/transport/status_conversion.cc +2 -2
  1520. data/src/core/lib/transport/status_conversion.h +2 -3
  1521. data/src/core/lib/transport/timeout_encoding.cc +11 -12
  1522. data/src/core/lib/transport/timeout_encoding.h +1 -3
  1523. data/src/core/lib/transport/transport.cc +7 -13
  1524. data/src/core/lib/transport/transport.h +94 -88
  1525. data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
  1526. data/src/core/lib/transport/transport_op_string.cc +2 -13
  1527. data/src/core/load_balancing/address_filtering.cc +3 -5
  1528. data/src/core/load_balancing/address_filtering.h +3 -4
  1529. data/src/core/load_balancing/backend_metric_parser.cc +94 -0
  1530. data/src/core/load_balancing/backend_metric_parser.h +45 -0
  1531. data/src/core/load_balancing/child_policy_handler.cc +43 -47
  1532. data/src/core/load_balancing/child_policy_handler.h +2 -3
  1533. data/src/core/load_balancing/delegating_helper.h +14 -8
  1534. data/src/core/load_balancing/endpoint_list.cc +18 -22
  1535. data/src/core/load_balancing/endpoint_list.h +20 -16
  1536. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +38 -34
  1537. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +23 -7
  1538. data/src/core/load_balancing/grpclb/grpclb.cc +216 -255
  1539. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
  1540. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
  1541. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +3 -5
  1542. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -8
  1543. data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -11
  1544. data/src/core/load_balancing/grpclb/load_balancer_api.h +3 -6
  1545. data/src/core/load_balancing/health_check_client.cc +68 -89
  1546. data/src/core/load_balancing/health_check_client.h +1 -1
  1547. data/src/core/load_balancing/health_check_client_internal.h +10 -13
  1548. data/src/core/load_balancing/lb_policy.cc +7 -10
  1549. data/src/core/load_balancing/lb_policy.h +84 -42
  1550. data/src/core/load_balancing/lb_policy_factory.h +3 -4
  1551. data/src/core/load_balancing/lb_policy_registry.cc +7 -9
  1552. data/src/core/load_balancing/lb_policy_registry.h +5 -6
  1553. data/src/core/load_balancing/oob_backend_metric.cc +28 -35
  1554. data/src/core/load_balancing/oob_backend_metric.h +1 -1
  1555. data/src/core/load_balancing/oob_backend_metric_internal.h +12 -14
  1556. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +172 -217
  1557. data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -7
  1558. data/src/core/load_balancing/pick_first/pick_first.cc +1235 -409
  1559. data/src/core/load_balancing/priority/priority.cc +115 -153
  1560. data/src/core/load_balancing/ring_hash/ring_hash.cc +94 -101
  1561. data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
  1562. data/src/core/load_balancing/rls/rls.cc +516 -391
  1563. data/src/core/load_balancing/rls/rls.h +26 -0
  1564. data/src/core/load_balancing/round_robin/round_robin.cc +88 -559
  1565. data/src/core/load_balancing/subchannel_interface.h +18 -7
  1566. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +7 -8
  1567. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +2 -3
  1568. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +240 -1042
  1569. data/src/core/load_balancing/weighted_target/weighted_target.cc +91 -124
  1570. data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
  1571. data/src/core/load_balancing/xds/cds.cc +70 -87
  1572. data/src/core/load_balancing/xds/xds_cluster_impl.cc +257 -188
  1573. data/src/core/load_balancing/xds/xds_cluster_manager.cc +59 -92
  1574. data/src/core/load_balancing/xds/xds_override_host.cc +141 -203
  1575. data/src/core/load_balancing/xds/xds_override_host.h +6 -7
  1576. data/src/core/load_balancing/xds/xds_wrr_locality.cc +45 -55
  1577. data/src/core/plugin_registry/grpc_plugin_registry.cc +28 -16
  1578. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +7 -4
  1579. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +97 -72
  1580. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
  1581. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -5
  1582. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +8 -11
  1583. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +156 -137
  1584. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +177 -162
  1585. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -18
  1586. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
  1587. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
  1588. data/src/core/resolver/dns/dns_resolver_plugin.cc +11 -13
  1589. data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
  1590. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +58 -65
  1591. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +5 -4
  1592. data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
  1593. data/src/core/resolver/dns/native/dns_resolver.cc +24 -34
  1594. data/src/core/resolver/dns/native/dns_resolver.h +1 -1
  1595. data/src/core/resolver/endpoint_addresses.cc +5 -8
  1596. data/src/core/resolver/endpoint_addresses.h +7 -5
  1597. data/src/core/resolver/fake/fake_resolver.cc +12 -14
  1598. data/src/core/resolver/fake/fake_resolver.h +7 -9
  1599. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +38 -35
  1600. data/src/core/resolver/polling_resolver.cc +42 -58
  1601. data/src/core/resolver/polling_resolver.h +6 -8
  1602. data/src/core/resolver/resolver.cc +3 -7
  1603. data/src/core/resolver/resolver.h +2 -8
  1604. data/src/core/resolver/resolver_factory.h +2 -3
  1605. data/src/core/resolver/resolver_registry.cc +12 -14
  1606. data/src/core/resolver/resolver_registry.h +4 -5
  1607. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +12 -14
  1608. data/src/core/resolver/xds/xds_config.cc +95 -0
  1609. data/src/core/resolver/xds/xds_config.h +108 -0
  1610. data/src/core/resolver/xds/xds_dependency_manager.cc +100 -183
  1611. data/src/core/resolver/xds/xds_dependency_manager.h +16 -81
  1612. data/src/core/resolver/xds/xds_resolver.cc +157 -142
  1613. data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
  1614. data/src/core/server/server.cc +1931 -0
  1615. data/src/core/server/server.h +569 -0
  1616. data/src/core/server/server_call_tracer_filter.cc +117 -0
  1617. data/src/core/server/server_call_tracer_filter.h +28 -0
  1618. data/src/core/server/server_config_selector.h +82 -0
  1619. data/src/core/server/server_config_selector_filter.cc +175 -0
  1620. data/src/core/server/server_config_selector_filter.h +33 -0
  1621. data/src/core/server/server_interface.h +45 -0
  1622. data/src/core/server/xds_channel_stack_modifier.cc +107 -0
  1623. data/src/core/server/xds_channel_stack_modifier.h +62 -0
  1624. data/src/core/server/xds_server_config_fetcher.cc +1384 -0
  1625. data/src/core/service_config/service_config.h +3 -6
  1626. data/src/core/service_config/service_config_call_data.h +20 -19
  1627. data/src/core/service_config/service_config_channel_arg_filter.cc +139 -0
  1628. data/src/core/service_config/service_config_impl.cc +9 -11
  1629. data/src/core/service_config/service_config_impl.h +6 -9
  1630. data/src/core/service_config/service_config_parser.cc +4 -9
  1631. data/src/core/service_config/service_config_parser.h +3 -5
  1632. data/src/core/telemetry/call_tracer.cc +386 -0
  1633. data/src/core/telemetry/call_tracer.h +263 -0
  1634. data/src/core/telemetry/histogram_view.cc +69 -0
  1635. data/src/core/telemetry/histogram_view.h +36 -0
  1636. data/src/core/telemetry/metrics.cc +180 -0
  1637. data/src/core/telemetry/metrics.h +569 -0
  1638. data/src/core/telemetry/stats.cc +67 -0
  1639. data/src/core/telemetry/stats.h +62 -0
  1640. data/src/core/telemetry/stats_data.cc +931 -0
  1641. data/src/core/telemetry/stats_data.h +705 -0
  1642. data/src/core/telemetry/tcp_tracer.h +143 -0
  1643. data/src/core/tsi/alts/crypt/aes_gcm.cc +4 -8
  1644. data/src/core/tsi/alts/crypt/gsec.cc +2 -4
  1645. data/src/core/tsi/alts/crypt/gsec.h +3 -5
  1646. data/src/core/tsi/alts/frame_protector/alts_counter.cc +2 -4
  1647. data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -4
  1648. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +2 -4
  1649. data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -3
  1650. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -19
  1651. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +0 -1
  1652. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
  1653. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
  1654. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +2 -3
  1655. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +2 -3
  1656. data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -13
  1657. data/src/core/tsi/alts/frame_protector/frame_handler.h +0 -1
  1658. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +84 -86
  1659. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
  1660. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -6
  1661. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +2 -3
  1662. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +77 -76
  1663. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
  1664. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +6 -5
  1665. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
  1666. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
  1667. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +4 -6
  1668. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +17 -19
  1669. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +0 -1
  1670. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -14
  1671. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +0 -1
  1672. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
  1673. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +16 -14
  1674. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -6
  1675. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +0 -1
  1676. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +13 -16
  1677. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +0 -1
  1678. data/src/core/tsi/fake_transport_security.cc +31 -34
  1679. data/src/core/tsi/local_transport_security.cc +9 -11
  1680. data/src/core/tsi/local_transport_security.h +1 -2
  1681. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +14 -16
  1682. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +7 -10
  1683. data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -5
  1684. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -17
  1685. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +8 -10
  1686. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +4 -7
  1687. data/src/core/tsi/ssl_transport_security.cc +344 -193
  1688. data/src/core/tsi/ssl_transport_security.h +5 -8
  1689. data/src/core/tsi/ssl_transport_security_utils.cc +208 -27
  1690. data/src/core/tsi/ssl_transport_security_utils.h +40 -5
  1691. data/src/core/tsi/ssl_types.h +0 -1
  1692. data/src/core/tsi/transport_security.cc +3 -9
  1693. data/src/core/tsi/transport_security.h +0 -3
  1694. data/src/core/tsi/transport_security_grpc.cc +2 -2
  1695. data/src/core/tsi/transport_security_grpc.h +1 -2
  1696. data/src/core/tsi/transport_security_interface.h +2 -7
  1697. data/src/core/util/alloc.cc +69 -0
  1698. data/src/core/util/alloc.h +28 -0
  1699. data/src/core/util/atm.cc +34 -0
  1700. data/src/core/util/atomic_utils.h +47 -0
  1701. data/src/core/util/avl.h +324 -0
  1702. data/src/core/util/backoff.cc +46 -0
  1703. data/src/core/util/backoff.h +86 -0
  1704. data/src/core/util/bitset.h +224 -0
  1705. data/src/core/util/chunked_vector.h +256 -0
  1706. data/src/core/util/construct_destruct.h +41 -0
  1707. data/src/core/util/cpp_impl_of.h +49 -0
  1708. data/src/core/util/crash.cc +40 -0
  1709. data/src/core/util/crash.h +36 -0
  1710. data/src/core/util/debug_location.h +106 -0
  1711. data/src/core/util/directory_reader.h +48 -0
  1712. data/src/core/util/down_cast.h +48 -0
  1713. data/src/core/util/dual_ref_counted.h +376 -0
  1714. data/src/core/util/dump_args.cc +54 -0
  1715. data/src/core/util/dump_args.h +122 -0
  1716. data/src/core/util/env.h +53 -0
  1717. data/src/core/util/event_log.cc +87 -0
  1718. data/src/core/util/event_log.h +79 -0
  1719. data/src/core/util/examine_stack.cc +43 -0
  1720. data/src/core/util/examine_stack.h +45 -0
  1721. data/src/core/util/fork.cc +241 -0
  1722. data/src/core/util/fork.h +98 -0
  1723. data/src/core/util/gcp_metadata_query.cc +132 -0
  1724. data/src/core/util/gcp_metadata_query.h +86 -0
  1725. data/src/core/util/gethostname.h +26 -0
  1726. data/src/core/util/gethostname_fallback.cc +30 -0
  1727. data/src/core/util/gethostname_host_name_max.cc +39 -0
  1728. data/src/core/util/gethostname_sysconf.cc +39 -0
  1729. data/src/core/util/glob.cc +70 -0
  1730. data/src/core/util/glob.h +29 -0
  1731. data/src/core/util/gpr_time.cc +268 -0
  1732. data/src/core/util/grpc_if_nametoindex.h +29 -0
  1733. data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
  1734. data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
  1735. data/src/core/util/host_port.cc +114 -0
  1736. data/src/core/util/host_port.h +57 -0
  1737. data/src/core/util/http_client/format_request.cc +134 -0
  1738. data/src/core/util/http_client/format_request.h +37 -0
  1739. data/src/core/util/http_client/httpcli.cc +380 -0
  1740. data/src/core/util/http_client/httpcli.h +269 -0
  1741. data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
  1742. data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
  1743. data/src/core/util/http_client/parser.cc +447 -0
  1744. data/src/core/util/http_client/parser.h +126 -0
  1745. data/src/core/util/if_list.h +4530 -0
  1746. data/src/core/util/iphone/cpu.cc +43 -0
  1747. data/src/core/util/json/json.h +29 -0
  1748. data/src/core/util/json/json_args.h +34 -0
  1749. data/src/core/util/json/json_channel_args.h +41 -0
  1750. data/src/core/util/json/json_object_loader.cc +215 -0
  1751. data/src/core/util/json/json_object_loader.h +644 -0
  1752. data/src/core/util/json/json_reader.cc +953 -0
  1753. data/src/core/util/json/json_reader.h +33 -0
  1754. data/src/core/util/json/json_util.cc +101 -0
  1755. data/src/core/util/json/json_util.h +163 -0
  1756. data/src/core/util/json/json_writer.cc +337 -0
  1757. data/src/core/util/json/json_writer.h +33 -0
  1758. data/src/core/util/latent_see.cc +163 -0
  1759. data/src/core/util/latent_see.h +334 -0
  1760. data/src/core/util/linux/cpu.cc +86 -0
  1761. data/src/core/util/linux/env.cc +62 -0
  1762. data/src/core/util/load_file.cc +75 -0
  1763. data/src/core/util/load_file.h +33 -0
  1764. data/src/core/util/log.cc +127 -0
  1765. data/src/core/util/lru_cache.h +122 -0
  1766. data/src/core/util/manual_constructor.h +145 -0
  1767. data/src/core/util/match.h +74 -0
  1768. data/src/core/util/matchers.cc +337 -0
  1769. data/src/core/util/matchers.h +167 -0
  1770. data/src/core/util/memory.h +52 -0
  1771. data/src/core/util/mpscq.cc +108 -0
  1772. data/src/core/util/mpscq.h +98 -0
  1773. data/src/core/util/msys/tmpfile.cc +57 -0
  1774. data/src/core/util/no_destruct.h +95 -0
  1775. data/src/core/util/notification.h +66 -0
  1776. data/src/core/util/orphanable.h +153 -0
  1777. data/src/core/util/overload.h +59 -0
  1778. data/src/core/util/packed_table.h +40 -0
  1779. data/src/core/util/per_cpu.cc +34 -0
  1780. data/src/core/util/per_cpu.h +102 -0
  1781. data/src/core/util/posix/cpu.cc +83 -0
  1782. data/src/core/util/posix/directory_reader.cc +82 -0
  1783. data/src/core/util/posix/env.cc +47 -0
  1784. data/src/core/util/posix/stat.cc +54 -0
  1785. data/src/core/util/posix/string.cc +71 -0
  1786. data/src/core/util/posix/sync.cc +158 -0
  1787. data/src/core/util/posix/thd.cc +243 -0
  1788. data/src/core/util/posix/time.cc +123 -0
  1789. data/src/core/util/posix/tmpfile.cc +71 -0
  1790. data/src/core/util/random_early_detection.cc +33 -0
  1791. data/src/core/util/random_early_detection.h +61 -0
  1792. data/src/core/util/ref_counted.h +402 -0
  1793. data/src/core/util/ref_counted_ptr.h +443 -0
  1794. data/src/core/util/ref_counted_string.cc +42 -0
  1795. data/src/core/util/ref_counted_string.h +159 -0
  1796. data/src/core/util/ring_buffer.h +123 -0
  1797. data/src/core/util/single_set_ptr.h +89 -0
  1798. data/src/core/util/sorted_pack.h +89 -0
  1799. data/src/core/util/spinlock.h +51 -0
  1800. data/src/core/util/stat.h +35 -0
  1801. data/src/core/util/status_helper.cc +431 -0
  1802. data/src/core/util/status_helper.h +160 -0
  1803. data/src/core/util/strerror.cc +40 -0
  1804. data/src/core/util/strerror.h +29 -0
  1805. data/src/core/util/string.cc +341 -0
  1806. data/src/core/util/string.h +110 -0
  1807. data/src/core/util/sync.cc +123 -0
  1808. data/src/core/util/sync.h +199 -0
  1809. data/src/core/util/sync_abseil.cc +107 -0
  1810. data/src/core/util/table.h +486 -0
  1811. data/src/core/util/tchar.cc +49 -0
  1812. data/src/core/util/tchar.h +33 -0
  1813. data/src/core/util/thd.h +193 -0
  1814. data/src/core/util/time.cc +240 -0
  1815. data/src/core/util/time.h +385 -0
  1816. data/src/core/util/time_averaged_stats.cc +60 -0
  1817. data/src/core/util/time_averaged_stats.h +79 -0
  1818. data/src/core/util/time_precise.cc +168 -0
  1819. data/src/core/util/time_precise.h +68 -0
  1820. data/src/core/util/time_util.cc +80 -0
  1821. data/src/core/util/time_util.h +41 -0
  1822. data/src/core/util/tmpfile.h +31 -0
  1823. data/src/core/util/type_list.h +32 -0
  1824. data/src/core/util/unique_ptr_with_bitset.h +86 -0
  1825. data/src/core/util/unique_type_name.h +123 -0
  1826. data/src/core/util/upb_utils.h +43 -0
  1827. data/src/core/util/uri.cc +376 -0
  1828. data/src/core/util/uri.h +105 -0
  1829. data/src/core/util/useful.h +155 -0
  1830. data/src/core/util/uuid_v4.cc +37 -0
  1831. data/src/core/util/uuid_v4.h +35 -0
  1832. data/src/core/util/validation_errors.cc +73 -0
  1833. data/src/core/util/validation_errors.h +144 -0
  1834. data/src/core/util/windows/cpu.cc +34 -0
  1835. data/src/core/util/windows/directory_reader.cc +79 -0
  1836. data/src/core/util/windows/env.cc +56 -0
  1837. data/src/core/util/windows/stat.cc +50 -0
  1838. data/src/core/util/windows/string.cc +68 -0
  1839. data/src/core/util/windows/string_util.cc +53 -0
  1840. data/src/core/util/windows/sync.cc +122 -0
  1841. data/src/core/util/windows/thd.cc +182 -0
  1842. data/src/core/util/windows/time.cc +105 -0
  1843. data/src/core/util/windows/tmpfile.cc +66 -0
  1844. data/src/core/util/work_serializer.cc +538 -0
  1845. data/src/core/util/work_serializer.h +105 -0
  1846. data/src/core/util/xxhash_inline.h +29 -0
  1847. data/src/core/xds/grpc/certificate_provider_store.cc +153 -0
  1848. data/src/core/xds/grpc/certificate_provider_store.h +132 -0
  1849. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +136 -0
  1850. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +80 -0
  1851. data/src/core/xds/grpc/xds_audit_logger_registry.cc +123 -0
  1852. data/src/core/xds/grpc/xds_audit_logger_registry.h +67 -0
  1853. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +238 -0
  1854. data/src/core/xds/grpc/xds_bootstrap_grpc.h +167 -0
  1855. data/src/core/xds/grpc/xds_certificate_provider.cc +216 -0
  1856. data/src/core/xds/grpc/xds_certificate_provider.h +116 -0
  1857. data/src/core/xds/grpc/xds_client_grpc.cc +445 -0
  1858. data/src/core/xds/grpc/xds_client_grpc.h +115 -0
  1859. data/src/core/xds/grpc/xds_cluster.cc +79 -0
  1860. data/src/core/xds/grpc/xds_cluster.h +135 -0
  1861. data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
  1862. data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
  1863. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +137 -0
  1864. data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +96 -0
  1865. data/src/core/xds/grpc/xds_common_types.cc +103 -0
  1866. data/src/core/xds/grpc/xds_common_types.h +90 -0
  1867. data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
  1868. data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
  1869. data/src/core/xds/grpc/xds_endpoint.cc +97 -0
  1870. data/src/core/xds/grpc/xds_endpoint.h +128 -0
  1871. data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
  1872. data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
  1873. data/src/core/xds/grpc/xds_health_status.cc +73 -0
  1874. data/src/core/xds/grpc/xds_health_status.h +88 -0
  1875. data/src/core/xds/grpc/xds_http_fault_filter.cc +249 -0
  1876. data/src/core/xds/grpc/xds_http_fault_filter.h +62 -0
  1877. data/src/core/xds/grpc/xds_http_filter.h +134 -0
  1878. data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
  1879. data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
  1880. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
  1881. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
  1882. data/src/core/xds/grpc/xds_http_rbac_filter.cc +602 -0
  1883. data/src/core/xds/grpc/xds_http_rbac_filter.h +62 -0
  1884. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +230 -0
  1885. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +62 -0
  1886. data/src/core/xds/grpc/xds_lb_policy_registry.cc +365 -0
  1887. data/src/core/xds/grpc/xds_lb_policy_registry.h +70 -0
  1888. data/src/core/xds/grpc/xds_listener.cc +175 -0
  1889. data/src/core/xds/grpc/xds_listener.h +203 -0
  1890. data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
  1891. data/src/core/xds/grpc/xds_listener_parser.h +59 -0
  1892. data/src/core/xds/grpc/xds_metadata.cc +62 -0
  1893. data/src/core/xds/grpc/xds_metadata.h +150 -0
  1894. data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
  1895. data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
  1896. data/src/core/xds/grpc/xds_route_config.cc +282 -0
  1897. data/src/core/xds/grpc/xds_route_config.h +220 -0
  1898. data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
  1899. data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
  1900. data/src/core/xds/grpc/xds_routing.cc +297 -0
  1901. data/src/core/xds/grpc/xds_routing.h +112 -0
  1902. data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
  1903. data/src/core/xds/grpc/xds_server_grpc.h +63 -0
  1904. data/src/core/xds/grpc/xds_transport_grpc.cc +393 -0
  1905. data/src/core/xds/grpc/xds_transport_grpc.h +149 -0
  1906. data/src/core/xds/xds_client/lrs_client.cc +1292 -0
  1907. data/src/core/xds/xds_client/lrs_client.h +394 -0
  1908. data/src/core/xds/xds_client/xds_api.cc +353 -0
  1909. data/src/core/xds/xds_client/xds_api.h +166 -0
  1910. data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
  1911. data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
  1912. data/src/core/xds/xds_client/xds_bootstrap.cc +37 -0
  1913. data/src/core/xds/xds_client/xds_bootstrap.h +88 -0
  1914. data/src/core/xds/xds_client/xds_channel_args.h +32 -0
  1915. data/src/core/xds/xds_client/xds_client.cc +1689 -0
  1916. data/src/core/xds/xds_client/xds_client.h +334 -0
  1917. data/src/core/xds/xds_client/xds_locality.h +102 -0
  1918. data/src/core/xds/xds_client/xds_metrics.h +41 -0
  1919. data/src/core/xds/xds_client/xds_resource_type.h +97 -0
  1920. data/src/core/xds/xds_client/xds_resource_type_impl.h +87 -0
  1921. data/src/core/xds/xds_client/xds_transport.h +104 -0
  1922. data/src/ruby/bin/math_pb.rb +1 -22
  1923. data/src/ruby/ext/grpc/extconf.rb +1 -4
  1924. data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
  1925. data/src/ruby/ext/grpc/rb_call.c +15 -8
  1926. data/src/ruby/ext/grpc/rb_call_credentials.c +39 -32
  1927. data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
  1928. data/src/ruby/ext/grpc/rb_channel.c +42 -36
  1929. data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
  1930. data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -5
  1931. data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
  1932. data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
  1933. data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
  1934. data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
  1935. data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
  1936. data/src/ruby/ext/grpc/rb_grpc.c +17 -16
  1937. data/src/ruby/ext/grpc/rb_grpc.h +8 -1
  1938. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +136 -146
  1939. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +205 -219
  1940. data/src/ruby/ext/grpc/rb_server.c +47 -27
  1941. data/src/ruby/ext/grpc/rb_server_credentials.c +4 -3
  1942. data/src/ruby/ext/grpc/rb_server_credentials.h +2 -2
  1943. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -5
  1944. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
  1945. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +5 -4
  1946. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +2 -2
  1947. data/src/ruby/lib/grpc/generic/active_call.rb +16 -7
  1948. data/src/ruby/lib/grpc/logconfig.rb +13 -0
  1949. data/src/ruby/lib/grpc/version.rb +1 -1
  1950. data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
  1951. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
  1952. data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
  1953. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
  1954. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
  1955. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
  1956. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
  1957. data/src/ruby/spec/call_spec.rb +53 -40
  1958. data/src/ruby/spec/channel_spec.rb +4 -2
  1959. data/src/ruby/spec/client_server_spec.rb +148 -507
  1960. data/src/ruby/spec/generic/active_call_spec.rb +64 -86
  1961. data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
  1962. data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
  1963. data/src/ruby/spec/logconfig_spec.rb +30 -0
  1964. data/src/ruby/spec/support/services.rb +3 -0
  1965. data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
  1966. data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
  1967. data/third_party/abseil-cpp/absl/base/config.h +32 -51
  1968. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
  1969. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
  1970. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
  1971. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
  1972. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
  1973. data/third_party/abseil-cpp/absl/base/macros.h +48 -0
  1974. data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
  1975. data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
  1976. data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
  1977. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1978. data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
  1979. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
  1980. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
  1981. data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
  1982. data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
  1983. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
  1984. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
  1985. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
  1986. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
  1987. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
  1988. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
  1989. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
  1990. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
  1991. data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
  1992. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
  1993. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
  1994. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
  1995. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
  1996. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
  1997. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
  1998. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
  1999. data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
  2000. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
  2001. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
  2002. data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  2003. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  2004. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
  2005. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
  2006. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
  2007. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
  2008. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
  2009. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
  2010. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
  2011. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
  2012. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
  2013. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
  2014. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  2015. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
  2016. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
  2017. data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
  2018. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
  2019. data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
  2020. data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
  2021. data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
  2022. data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
  2023. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
  2024. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
  2025. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
  2026. data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
  2027. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
  2028. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
  2029. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
  2030. data/third_party/abseil-cpp/absl/log/check.h +209 -0
  2031. data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
  2032. data/third_party/abseil-cpp/absl/log/globals.h +231 -0
  2033. data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
  2034. data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
  2035. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +138 -0
  2036. data/third_party/abseil-cpp/absl/log/internal/check_op.h +462 -0
  2037. data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
  2038. data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
  2039. data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
  2040. data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
  2041. data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
  2042. data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
  2043. data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
  2044. data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
  2045. data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
  2046. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
  2047. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +690 -0
  2048. data/third_party/abseil-cpp/absl/log/internal/log_message.h +394 -0
  2049. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
  2050. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
  2051. data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
  2052. data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
  2053. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +127 -0
  2054. data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
  2055. data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
  2056. data/third_party/abseil-cpp/absl/log/internal/strip.h +108 -0
  2057. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
  2058. data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
  2059. data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
  2060. data/third_party/abseil-cpp/absl/log/log.h +365 -0
  2061. data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
  2062. data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
  2063. data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
  2064. data/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
  2065. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
  2066. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
  2067. data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
  2068. data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
  2069. data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
  2070. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
  2071. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
  2072. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
  2073. data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
  2074. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
  2075. data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
  2076. data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
  2077. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
  2078. data/third_party/abseil-cpp/absl/status/status.cc +0 -4
  2079. data/third_party/abseil-cpp/absl/status/status.h +4 -4
  2080. data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
  2081. data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
  2082. data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
  2083. data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
  2084. data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
  2085. data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
  2086. data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
  2087. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
  2088. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
  2089. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
  2090. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
  2091. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
  2092. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
  2093. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
  2094. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
  2095. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
  2096. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
  2097. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
  2098. data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
  2099. data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
  2100. data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
  2101. data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
  2102. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
  2103. data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
  2104. data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
  2105. data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
  2106. data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
  2107. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
  2108. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
  2109. data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
  2110. data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
  2111. data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
  2112. data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
  2113. data/third_party/abseil-cpp/absl/time/format.cc +2 -1
  2114. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  2115. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
  2116. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
  2117. data/third_party/abseil-cpp/absl/time/time.h +73 -29
  2118. data/third_party/abseil-cpp/absl/types/compare.h +505 -0
  2119. data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
  2120. data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
  2121. data/third_party/abseil-cpp/absl/types/optional.h +15 -18
  2122. data/third_party/abseil-cpp/absl/types/span.h +3 -2
  2123. data/third_party/abseil-cpp/absl/types/variant.h +19 -24
  2124. data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
  2125. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
  2126. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
  2127. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
  2128. data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +113 -0
  2129. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +15 -20
  2130. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
  2131. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -18
  2132. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
  2133. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
  2134. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
  2135. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
  2136. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +63 -94
  2137. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
  2138. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
  2139. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
  2140. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
  2141. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
  2142. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
  2143. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
  2144. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
  2145. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
  2146. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
  2147. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  2148. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
  2149. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
  2150. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
  2151. data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
  2152. data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
  2153. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
  2154. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
  2155. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
  2156. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
  2157. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
  2158. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
  2159. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
  2160. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
  2161. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
  2162. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
  2163. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
  2164. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
  2165. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
  2166. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
  2167. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
  2168. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
  2169. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
  2170. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +127 -0
  2171. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
  2172. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
  2173. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
  2174. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +267 -0
  2175. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +876 -0
  2176. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +87 -0
  2177. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +1320 -0
  2178. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +331 -0
  2179. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
  2180. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc +222 -0
  2181. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +744 -0
  2182. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +1077 -0
  2183. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +354 -0
  2184. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +499 -0
  2185. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +1464 -0
  2186. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
  2187. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +561 -0
  2188. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +734 -0
  2189. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
  2190. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc +173 -0
  2191. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +317 -0
  2192. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
  2193. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
  2194. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
  2195. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +479 -0
  2196. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +420 -0
  2197. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +1038 -0
  2198. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +1351 -0
  2199. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +121 -0
  2200. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +1038 -0
  2201. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
  2202. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc +328 -0
  2203. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
  2204. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +439 -0
  2205. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +359 -0
  2206. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +543 -0
  2207. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +218 -0
  2208. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +295 -2
  2209. data/third_party/boringssl-with-bazel/src/crypto/internal.h +143 -45
  2210. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
  2211. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +2 -1
  2212. data/third_party/boringssl-with-bazel/src/crypto/mem.c +25 -12
  2213. data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
  2214. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
  2215. data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
  2216. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
  2217. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
  2218. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +19 -19
  2219. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +43 -41
  2220. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
  2221. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
  2222. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
  2223. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +195 -0
  2224. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
  2225. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
  2226. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
  2227. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
  2228. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
  2229. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
  2230. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +328 -0
  2231. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
  2232. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
  2233. data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
  2234. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
  2235. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
  2236. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -5
  2237. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
  2238. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
  2239. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
  2240. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
  2241. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
  2242. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
  2243. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
  2244. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -17
  2245. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +51 -78
  2246. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +12 -29
  2247. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
  2248. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
  2249. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
  2250. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +1514 -0
  2251. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +24 -11
  2252. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
  2253. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +88 -45
  2254. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
  2255. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
  2256. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -11
  2257. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
  2258. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
  2259. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
  2260. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
  2261. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
  2262. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
  2263. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
  2264. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +146 -0
  2265. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +90 -0
  2266. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
  2267. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
  2268. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
  2269. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
  2270. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
  2271. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +66 -57
  2272. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
  2273. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
  2274. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
  2275. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
  2276. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +62 -12
  2277. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +409 -111
  2278. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
  2279. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
  2280. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
  2281. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2927 -2394
  2282. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
  2283. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
  2284. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
  2285. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
  2286. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +301 -66
  2287. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
  2288. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +66 -58
  2289. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
  2290. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
  2291. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +138 -54
  2292. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +159 -117
  2293. data/third_party/boringssl-with-bazel/src/ssl/internal.h +349 -202
  2294. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +45 -17
  2295. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
  2296. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
  2297. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
  2298. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
  2299. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +66 -385
  2300. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
  2301. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
  2302. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
  2303. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +99 -4
  2304. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +139 -83
  2305. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +116 -93
  2306. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
  2307. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
  2308. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
  2309. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +21 -27
  2310. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +54 -7
  2311. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
  2312. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +68 -23
  2313. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
  2314. data/third_party/upb/upb/base/descriptor_constants.h +29 -2
  2315. data/third_party/upb/upb/base/internal/endian.h +46 -0
  2316. data/third_party/upb/upb/base/status.h +1 -1
  2317. data/third_party/upb/upb/base/status.hpp +5 -1
  2318. data/third_party/upb/upb/base/string_view.h +7 -5
  2319. data/third_party/upb/upb/base/upcast.h +29 -0
  2320. data/third_party/upb/upb/generated_code_support.h +2 -1
  2321. data/third_party/upb/upb/json/decode.c +161 -64
  2322. data/third_party/upb/upb/json/decode.h +29 -29
  2323. data/third_party/upb/upb/json/encode.c +5 -28
  2324. data/third_party/upb/upb/json/encode.h +3 -26
  2325. data/third_party/upb/upb/lex/round_trip.c +10 -0
  2326. data/third_party/upb/upb/mem/arena.c +312 -109
  2327. data/third_party/upb/upb/mem/arena.h +27 -68
  2328. data/third_party/upb/upb/mem/arena.hpp +13 -5
  2329. data/third_party/upb/upb/mem/internal/arena.h +78 -57
  2330. data/third_party/upb/upb/message/accessors.c +17 -45
  2331. data/third_party/upb/upb/message/accessors.h +209 -314
  2332. data/third_party/upb/upb/message/array.c +78 -83
  2333. data/third_party/upb/upb/message/array.h +26 -30
  2334. data/third_party/upb/upb/message/compat.c +39 -0
  2335. data/third_party/upb/upb/message/compat.h +41 -0
  2336. data/third_party/upb/upb/message/copy.c +325 -0
  2337. data/third_party/upb/upb/message/copy.h +56 -0
  2338. data/third_party/upb/upb/message/internal/accessors.h +738 -176
  2339. data/third_party/upb/upb/message/internal/array.h +86 -79
  2340. data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
  2341. data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
  2342. data/third_party/upb/upb/message/internal/extension.c +63 -0
  2343. data/third_party/upb/upb/message/internal/extension.h +14 -17
  2344. data/third_party/upb/upb/message/internal/map.h +43 -41
  2345. data/third_party/upb/upb/message/internal/map_entry.h +14 -39
  2346. data/third_party/upb/upb/message/internal/map_sorter.h +19 -39
  2347. data/third_party/upb/upb/message/internal/message.c +75 -0
  2348. data/third_party/upb/upb/message/internal/message.h +36 -41
  2349. data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
  2350. data/third_party/upb/upb/message/internal/types.h +46 -11
  2351. data/third_party/upb/upb/message/map.c +28 -26
  2352. data/third_party/upb/upb/message/map.h +16 -40
  2353. data/third_party/upb/upb/message/map_gencode_util.h +3 -26
  2354. data/third_party/upb/upb/message/map_sorter.c +22 -34
  2355. data/third_party/upb/upb/message/merge.c +38 -0
  2356. data/third_party/upb/upb/message/merge.h +26 -0
  2357. data/third_party/upb/upb/message/message.c +106 -103
  2358. data/third_party/upb/upb/message/message.h +19 -8
  2359. data/third_party/upb/upb/message/tagged_ptr.h +15 -36
  2360. data/third_party/upb/upb/message/value.h +29 -5
  2361. data/third_party/upb/upb/mini_descriptor/build_enum.c +23 -14
  2362. data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
  2363. data/third_party/upb/upb/mini_descriptor/decode.c +145 -109
  2364. data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
  2365. data/third_party/upb/upb/mini_descriptor/link.c +47 -33
  2366. data/third_party/upb/upb/mini_descriptor/link.h +1 -1
  2367. data/third_party/upb/upb/mini_table/enum.h +4 -8
  2368. data/third_party/upb/upb/mini_table/extension.h +29 -0
  2369. data/third_party/upb/upb/mini_table/extension_registry.c +27 -2
  2370. data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
  2371. data/third_party/upb/upb/mini_table/field.h +28 -68
  2372. data/third_party/upb/upb/mini_table/file.h +31 -0
  2373. data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
  2374. data/third_party/upb/upb/mini_table/internal/extension.h +43 -3
  2375. data/third_party/upb/upb/mini_table/internal/field.h +137 -28
  2376. data/third_party/upb/upb/mini_table/internal/file.h +47 -10
  2377. data/third_party/upb/upb/mini_table/internal/message.c +37 -9
  2378. data/third_party/upb/upb/mini_table/internal/message.h +138 -23
  2379. data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
  2380. data/third_party/upb/upb/mini_table/internal/sub.h +44 -4
  2381. data/third_party/upb/upb/mini_table/message.c +18 -19
  2382. data/third_party/upb/upb/mini_table/message.h +35 -25
  2383. data/third_party/upb/upb/mini_table/sub.h +32 -1
  2384. data/third_party/upb/upb/port/def.inc +125 -11
  2385. data/third_party/upb/upb/port/undef.inc +11 -1
  2386. data/third_party/upb/upb/reflection/common.h +1 -11
  2387. data/third_party/upb/upb/reflection/def.hpp +42 -3
  2388. data/third_party/upb/upb/reflection/def_pool.c +81 -2
  2389. data/third_party/upb/upb/reflection/def_pool.h +10 -2
  2390. data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
  2391. data/third_party/upb/upb/reflection/enum_def.c +46 -19
  2392. data/third_party/upb/upb/reflection/enum_def.h +2 -0
  2393. data/third_party/upb/upb/reflection/enum_value_def.c +38 -14
  2394. data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
  2395. data/third_party/upb/upb/reflection/extension_range.c +13 -5
  2396. data/third_party/upb/upb/reflection/extension_range.h +2 -0
  2397. data/third_party/upb/upb/reflection/field_def.c +214 -141
  2398. data/third_party/upb/upb/reflection/field_def.h +14 -1
  2399. data/third_party/upb/upb/reflection/file_def.c +124 -9
  2400. data/third_party/upb/upb/reflection/file_def.h +6 -0
  2401. data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
  2402. data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
  2403. data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
  2404. data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
  2405. data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
  2406. data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
  2407. data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
  2408. data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
  2409. data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
  2410. data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
  2411. data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
  2412. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
  2413. data/third_party/upb/upb/reflection/message.c +52 -20
  2414. data/third_party/upb/upb/reflection/message.h +7 -7
  2415. data/third_party/upb/upb/reflection/message_def.c +68 -34
  2416. data/third_party/upb/upb/reflection/message_def.h +2 -0
  2417. data/third_party/upb/upb/reflection/method_def.c +20 -9
  2418. data/third_party/upb/upb/reflection/method_def.h +10 -7
  2419. data/third_party/upb/upb/reflection/oneof_def.c +20 -11
  2420. data/third_party/upb/upb/reflection/oneof_def.h +3 -1
  2421. data/third_party/upb/upb/reflection/service_def.c +25 -13
  2422. data/third_party/upb/upb/reflection/service_def.h +8 -5
  2423. data/third_party/upb/upb/text/encode.c +65 -311
  2424. data/third_party/upb/upb/text/encode.h +1 -11
  2425. data/third_party/upb/upb/text/internal/encode.c +180 -0
  2426. data/third_party/upb/upb/text/internal/encode.h +240 -0
  2427. data/third_party/upb/upb/text/options.h +22 -0
  2428. data/third_party/upb/upb/wire/decode.c +353 -269
  2429. data/third_party/upb/upb/wire/decode.h +25 -2
  2430. data/third_party/upb/upb/wire/encode.c +160 -105
  2431. data/third_party/upb/upb/wire/encode.h +16 -4
  2432. data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
  2433. data/third_party/upb/upb/wire/internal/decode_fast.c +1000 -0
  2434. data/third_party/upb/upb/wire/internal/decode_fast.h +148 -0
  2435. data/third_party/upb/upb/wire/internal/decoder.h +127 -0
  2436. data/third_party/upb/upb/wire/internal/reader.h +61 -0
  2437. data/third_party/upb/upb/wire/reader.c +10 -8
  2438. data/third_party/upb/upb/wire/reader.h +20 -53
  2439. data/third_party/utf8_range/utf8_range.c +467 -0
  2440. data/third_party/utf8_range/utf8_range.h +9 -8
  2441. metadata +541 -399
  2442. data/src/core/client_channel/backend_metric.cc +0 -95
  2443. data/src/core/client_channel/backend_metric.h +0 -47
  2444. data/src/core/client_channel/channel_connectivity.cc +0 -265
  2445. data/src/core/client_channel/client_channel_channelz.cc +0 -93
  2446. data/src/core/client_channel/client_channel_channelz.h +0 -85
  2447. data/src/core/client_channel/config_selector.cc +0 -60
  2448. data/src/core/client_channel/http_proxy_mapper.cc +0 -305
  2449. data/src/core/client_channel/http_proxy_mapper.h +0 -53
  2450. data/src/core/client_channel/service_config_channel_arg_filter.cc +0 -136
  2451. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
  2452. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
  2453. data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
  2454. data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
  2455. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
  2456. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
  2457. data/src/core/ext/filters/server_config_selector/server_config_selector.h +0 -83
  2458. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +0 -170
  2459. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +0 -33
  2460. data/src/core/ext/gcp/metadata_query.cc +0 -136
  2461. data/src/core/ext/gcp/metadata_query.h +0 -87
  2462. data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
  2463. data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
  2464. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -44
  2465. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
  2466. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
  2467. data/src/core/ext/xds/certificate_provider_store.cc +0 -155
  2468. data/src/core/ext/xds/certificate_provider_store.h +0 -133
  2469. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -138
  2470. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +0 -82
  2471. data/src/core/ext/xds/upb_utils.h +0 -45
  2472. data/src/core/ext/xds/xds_api.cc +0 -572
  2473. data/src/core/ext/xds/xds_api.h +0 -189
  2474. data/src/core/ext/xds/xds_audit_logger_registry.cc +0 -122
  2475. data/src/core/ext/xds/xds_audit_logger_registry.h +0 -68
  2476. data/src/core/ext/xds/xds_bootstrap.cc +0 -38
  2477. data/src/core/ext/xds/xds_bootstrap.h +0 -90
  2478. data/src/core/ext/xds/xds_bootstrap_grpc.cc +0 -365
  2479. data/src/core/ext/xds/xds_bootstrap_grpc.h +0 -182
  2480. data/src/core/ext/xds/xds_certificate_provider.cc +0 -217
  2481. data/src/core/ext/xds/xds_certificate_provider.h +0 -116
  2482. data/src/core/ext/xds/xds_channel_args.h +0 -32
  2483. data/src/core/ext/xds/xds_channel_stack_modifier.cc +0 -107
  2484. data/src/core/ext/xds/xds_channel_stack_modifier.h +0 -63
  2485. data/src/core/ext/xds/xds_client.cc +0 -2123
  2486. data/src/core/ext/xds/xds_client.h +0 -358
  2487. data/src/core/ext/xds/xds_client_grpc.cc +0 -281
  2488. data/src/core/ext/xds/xds_client_grpc.h +0 -96
  2489. data/src/core/ext/xds/xds_client_stats.cc +0 -173
  2490. data/src/core/ext/xds/xds_client_stats.h +0 -251
  2491. data/src/core/ext/xds/xds_cluster.cc +0 -795
  2492. data/src/core/ext/xds/xds_cluster.h +0 -142
  2493. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +0 -140
  2494. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +0 -97
  2495. data/src/core/ext/xds/xds_common_types.cc +0 -509
  2496. data/src/core/ext/xds/xds_common_types.h +0 -108
  2497. data/src/core/ext/xds/xds_endpoint.cc +0 -516
  2498. data/src/core/ext/xds/xds_endpoint.h +0 -150
  2499. data/src/core/ext/xds/xds_health_status.cc +0 -75
  2500. data/src/core/ext/xds/xds_health_status.h +0 -91
  2501. data/src/core/ext/xds/xds_http_fault_filter.cc +0 -238
  2502. data/src/core/ext/xds/xds_http_fault_filter.h +0 -58
  2503. data/src/core/ext/xds/xds_http_filters.cc +0 -117
  2504. data/src/core/ext/xds/xds_http_filters.h +0 -182
  2505. data/src/core/ext/xds/xds_http_rbac_filter.cc +0 -588
  2506. data/src/core/ext/xds/xds_http_rbac_filter.h +0 -58
  2507. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +0 -218
  2508. data/src/core/ext/xds/xds_http_stateful_session_filter.h +0 -58
  2509. data/src/core/ext/xds/xds_lb_policy_registry.cc +0 -371
  2510. data/src/core/ext/xds/xds_lb_policy_registry.h +0 -71
  2511. data/src/core/ext/xds/xds_listener.cc +0 -1142
  2512. data/src/core/ext/xds/xds_listener.h +0 -236
  2513. data/src/core/ext/xds/xds_resource_type.h +0 -98
  2514. data/src/core/ext/xds/xds_resource_type_impl.h +0 -88
  2515. data/src/core/ext/xds/xds_route_config.cc +0 -1198
  2516. data/src/core/ext/xds/xds_route_config.h +0 -253
  2517. data/src/core/ext/xds/xds_routing.cc +0 -264
  2518. data/src/core/ext/xds/xds_routing.h +0 -106
  2519. data/src/core/ext/xds/xds_server_config_fetcher.cc +0 -1392
  2520. data/src/core/ext/xds/xds_transport.h +0 -89
  2521. data/src/core/ext/xds/xds_transport_grpc.cc +0 -365
  2522. data/src/core/ext/xds/xds_transport_grpc.h +0 -139
  2523. data/src/core/lib/avl/avl.h +0 -325
  2524. data/src/core/lib/backoff/backoff.cc +0 -47
  2525. data/src/core/lib/backoff/backoff.h +0 -89
  2526. data/src/core/lib/backoff/random_early_detection.cc +0 -33
  2527. data/src/core/lib/backoff/random_early_detection.h +0 -62
  2528. data/src/core/lib/channel/call_tracer.cc +0 -365
  2529. data/src/core/lib/channel/call_tracer.h +0 -225
  2530. data/src/core/lib/channel/channel_stack_trace.cc +0 -19
  2531. data/src/core/lib/channel/channel_stack_trace.h +0 -24
  2532. data/src/core/lib/channel/channel_trace.cc +0 -187
  2533. data/src/core/lib/channel/channel_trace.h +0 -138
  2534. data/src/core/lib/channel/channelz.cc +0 -610
  2535. data/src/core/lib/channel/channelz.h +0 -381
  2536. data/src/core/lib/channel/channelz_registry.cc +0 -281
  2537. data/src/core/lib/channel/channelz_registry.h +0 -102
  2538. data/src/core/lib/channel/context.h +0 -77
  2539. data/src/core/lib/channel/server_call_tracer_filter.cc +0 -111
  2540. data/src/core/lib/channel/tcp_tracer.h +0 -140
  2541. data/src/core/lib/config/config_vars.cc +0 -152
  2542. data/src/core/lib/config/config_vars.h +0 -127
  2543. data/src/core/lib/config/config_vars_non_generated.cc +0 -49
  2544. data/src/core/lib/config/core_configuration.cc +0 -111
  2545. data/src/core/lib/config/core_configuration.h +0 -244
  2546. data/src/core/lib/config/load_config.cc +0 -79
  2547. data/src/core/lib/config/load_config.h +0 -55
  2548. data/src/core/lib/debug/event_log.cc +0 -88
  2549. data/src/core/lib/debug/event_log.h +0 -81
  2550. data/src/core/lib/debug/histogram_view.cc +0 -69
  2551. data/src/core/lib/debug/histogram_view.h +0 -37
  2552. data/src/core/lib/debug/stats.cc +0 -68
  2553. data/src/core/lib/debug/stats.h +0 -64
  2554. data/src/core/lib/debug/stats_data.cc +0 -509
  2555. data/src/core/lib/debug/stats_data.h +0 -403
  2556. data/src/core/lib/event_engine/trace.cc +0 -25
  2557. data/src/core/lib/event_engine/trace.h +0 -49
  2558. data/src/core/lib/gpr/alloc.cc +0 -71
  2559. data/src/core/lib/gpr/alloc.h +0 -28
  2560. data/src/core/lib/gpr/android/log.cc +0 -79
  2561. data/src/core/lib/gpr/atm.cc +0 -35
  2562. data/src/core/lib/gpr/iphone/cpu.cc +0 -44
  2563. data/src/core/lib/gpr/linux/cpu.cc +0 -87
  2564. data/src/core/lib/gpr/linux/log.cc +0 -114
  2565. data/src/core/lib/gpr/log.cc +0 -140
  2566. data/src/core/lib/gpr/log_internal.h +0 -55
  2567. data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
  2568. data/src/core/lib/gpr/posix/cpu.cc +0 -84
  2569. data/src/core/lib/gpr/posix/log.cc +0 -111
  2570. data/src/core/lib/gpr/posix/string.cc +0 -72
  2571. data/src/core/lib/gpr/posix/sync.cc +0 -159
  2572. data/src/core/lib/gpr/posix/time.cc +0 -182
  2573. data/src/core/lib/gpr/posix/tmpfile.cc +0 -71
  2574. data/src/core/lib/gpr/spinlock.h +0 -53
  2575. data/src/core/lib/gpr/string.cc +0 -344
  2576. data/src/core/lib/gpr/string.h +0 -112
  2577. data/src/core/lib/gpr/sync.cc +0 -124
  2578. data/src/core/lib/gpr/sync_abseil.cc +0 -110
  2579. data/src/core/lib/gpr/time.cc +0 -269
  2580. data/src/core/lib/gpr/time_precise.cc +0 -168
  2581. data/src/core/lib/gpr/time_precise.h +0 -69
  2582. data/src/core/lib/gpr/tmpfile.h +0 -32
  2583. data/src/core/lib/gpr/useful.h +0 -184
  2584. data/src/core/lib/gpr/windows/cpu.cc +0 -35
  2585. data/src/core/lib/gpr/windows/log.cc +0 -116
  2586. data/src/core/lib/gpr/windows/string.cc +0 -69
  2587. data/src/core/lib/gpr/windows/string_util.cc +0 -55
  2588. data/src/core/lib/gpr/windows/sync.cc +0 -122
  2589. data/src/core/lib/gpr/windows/time.cc +0 -105
  2590. data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
  2591. data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
  2592. data/src/core/lib/gprpp/atomic_utils.h +0 -47
  2593. data/src/core/lib/gprpp/bitset.h +0 -225
  2594. data/src/core/lib/gprpp/chunked_vector.h +0 -257
  2595. data/src/core/lib/gprpp/construct_destruct.h +0 -40
  2596. data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
  2597. data/src/core/lib/gprpp/crash.cc +0 -43
  2598. data/src/core/lib/gprpp/crash.h +0 -37
  2599. data/src/core/lib/gprpp/debug_location.h +0 -99
  2600. data/src/core/lib/gprpp/directory_reader.h +0 -48
  2601. data/src/core/lib/gprpp/down_cast.h +0 -49
  2602. data/src/core/lib/gprpp/dual_ref_counted.h +0 -356
  2603. data/src/core/lib/gprpp/env.h +0 -53
  2604. data/src/core/lib/gprpp/examine_stack.cc +0 -43
  2605. data/src/core/lib/gprpp/examine_stack.h +0 -45
  2606. data/src/core/lib/gprpp/fork.cc +0 -242
  2607. data/src/core/lib/gprpp/fork.h +0 -98
  2608. data/src/core/lib/gprpp/host_port.cc +0 -114
  2609. data/src/core/lib/gprpp/host_port.h +0 -57
  2610. data/src/core/lib/gprpp/if_list.h +0 -4530
  2611. data/src/core/lib/gprpp/linux/env.cc +0 -62
  2612. data/src/core/lib/gprpp/load_file.cc +0 -76
  2613. data/src/core/lib/gprpp/load_file.h +0 -34
  2614. data/src/core/lib/gprpp/manual_constructor.h +0 -146
  2615. data/src/core/lib/gprpp/match.h +0 -75
  2616. data/src/core/lib/gprpp/memory.h +0 -53
  2617. data/src/core/lib/gprpp/mpscq.cc +0 -108
  2618. data/src/core/lib/gprpp/mpscq.h +0 -99
  2619. data/src/core/lib/gprpp/no_destruct.h +0 -95
  2620. data/src/core/lib/gprpp/notification.h +0 -67
  2621. data/src/core/lib/gprpp/orphanable.h +0 -150
  2622. data/src/core/lib/gprpp/overload.h +0 -59
  2623. data/src/core/lib/gprpp/packed_table.h +0 -40
  2624. data/src/core/lib/gprpp/per_cpu.cc +0 -35
  2625. data/src/core/lib/gprpp/per_cpu.h +0 -104
  2626. data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
  2627. data/src/core/lib/gprpp/posix/env.cc +0 -47
  2628. data/src/core/lib/gprpp/posix/stat.cc +0 -54
  2629. data/src/core/lib/gprpp/posix/thd.cc +0 -247
  2630. data/src/core/lib/gprpp/ref_counted.h +0 -391
  2631. data/src/core/lib/gprpp/ref_counted_ptr.h +0 -444
  2632. data/src/core/lib/gprpp/ref_counted_string.cc +0 -44
  2633. data/src/core/lib/gprpp/ref_counted_string.h +0 -161
  2634. data/src/core/lib/gprpp/single_set_ptr.h +0 -87
  2635. data/src/core/lib/gprpp/sorted_pack.h +0 -89
  2636. data/src/core/lib/gprpp/stat.h +0 -36
  2637. data/src/core/lib/gprpp/status_helper.cc +0 -453
  2638. data/src/core/lib/gprpp/status_helper.h +0 -190
  2639. data/src/core/lib/gprpp/strerror.cc +0 -41
  2640. data/src/core/lib/gprpp/strerror.h +0 -29
  2641. data/src/core/lib/gprpp/sync.h +0 -200
  2642. data/src/core/lib/gprpp/table.h +0 -452
  2643. data/src/core/lib/gprpp/tchar.cc +0 -49
  2644. data/src/core/lib/gprpp/tchar.h +0 -33
  2645. data/src/core/lib/gprpp/thd.h +0 -195
  2646. data/src/core/lib/gprpp/time.cc +0 -242
  2647. data/src/core/lib/gprpp/time.h +0 -379
  2648. data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
  2649. data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
  2650. data/src/core/lib/gprpp/time_util.cc +0 -81
  2651. data/src/core/lib/gprpp/time_util.h +0 -42
  2652. data/src/core/lib/gprpp/type_list.h +0 -32
  2653. data/src/core/lib/gprpp/unique_type_name.h +0 -104
  2654. data/src/core/lib/gprpp/validation_errors.cc +0 -65
  2655. data/src/core/lib/gprpp/validation_errors.h +0 -134
  2656. data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
  2657. data/src/core/lib/gprpp/windows/env.cc +0 -56
  2658. data/src/core/lib/gprpp/windows/stat.cc +0 -50
  2659. data/src/core/lib/gprpp/windows/thd.cc +0 -182
  2660. data/src/core/lib/gprpp/work_serializer.cc +0 -558
  2661. data/src/core/lib/gprpp/work_serializer.h +0 -107
  2662. data/src/core/lib/gprpp/xxhash_inline.h +0 -29
  2663. data/src/core/lib/handshaker/proxy_mapper.h +0 -53
  2664. data/src/core/lib/handshaker/proxy_mapper_registry.cc +0 -71
  2665. data/src/core/lib/handshaker/proxy_mapper_registry.h +0 -75
  2666. data/src/core/lib/http/format_request.cc +0 -137
  2667. data/src/core/lib/http/format_request.h +0 -38
  2668. data/src/core/lib/http/httpcli.cc +0 -392
  2669. data/src/core/lib/http/httpcli.h +0 -268
  2670. data/src/core/lib/http/httpcli_security_connector.cc +0 -213
  2671. data/src/core/lib/http/httpcli_ssl_credentials.h +0 -39
  2672. data/src/core/lib/http/parser.cc +0 -451
  2673. data/src/core/lib/http/parser.h +0 -130
  2674. data/src/core/lib/iomgr/ev_windows.cc +0 -30
  2675. data/src/core/lib/iomgr/gethostname.h +0 -26
  2676. data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
  2677. data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
  2678. data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
  2679. data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
  2680. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
  2681. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
  2682. data/src/core/lib/json/json.h +0 -30
  2683. data/src/core/lib/json/json_args.h +0 -34
  2684. data/src/core/lib/json/json_channel_args.h +0 -42
  2685. data/src/core/lib/json/json_object_loader.cc +0 -216
  2686. data/src/core/lib/json/json_object_loader.h +0 -645
  2687. data/src/core/lib/json/json_reader.cc +0 -956
  2688. data/src/core/lib/json/json_reader.h +0 -34
  2689. data/src/core/lib/json/json_util.cc +0 -101
  2690. data/src/core/lib/json/json_util.h +0 -164
  2691. data/src/core/lib/json/json_writer.cc +0 -339
  2692. data/src/core/lib/json/json_writer.h +0 -33
  2693. data/src/core/lib/matchers/matchers.cc +0 -330
  2694. data/src/core/lib/matchers/matchers.h +0 -163
  2695. data/src/core/lib/promise/trace.cc +0 -20
  2696. data/src/core/lib/promise/trace.h +0 -24
  2697. data/src/core/lib/resource_quota/trace.cc +0 -19
  2698. data/src/core/lib/resource_quota/trace.h +0 -24
  2699. data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
  2700. data/src/core/lib/security/transport/secure_endpoint.cc +0 -565
  2701. data/src/core/lib/security/transport/secure_endpoint.h +0 -43
  2702. data/src/core/lib/security/transport/security_handshaker.cc +0 -673
  2703. data/src/core/lib/security/transport/security_handshaker.h +0 -45
  2704. data/src/core/lib/security/transport/tsi_error.cc +0 -31
  2705. data/src/core/lib/security/transport/tsi_error.h +0 -30
  2706. data/src/core/lib/slice/b64.cc +0 -239
  2707. data/src/core/lib/slice/b64.h +0 -52
  2708. data/src/core/lib/slice/slice_refcount.cc +0 -20
  2709. data/src/core/lib/surface/api_trace.cc +0 -25
  2710. data/src/core/lib/surface/api_trace.h +0 -53
  2711. data/src/core/lib/surface/builtins.cc +0 -37
  2712. data/src/core/lib/surface/builtins.h +0 -26
  2713. data/src/core/lib/surface/call_trace.cc +0 -163
  2714. data/src/core/lib/surface/call_trace.h +0 -30
  2715. data/src/core/lib/surface/channel_ping.cc +0 -69
  2716. data/src/core/lib/surface/server.cc +0 -2045
  2717. data/src/core/lib/surface/server.h +0 -551
  2718. data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
  2719. data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
  2720. data/src/core/lib/transport/batch_builder.cc +0 -179
  2721. data/src/core/lib/transport/batch_builder.h +0 -478
  2722. data/src/core/lib/transport/call_factory.cc +0 -41
  2723. data/src/core/lib/transport/call_factory.h +0 -56
  2724. data/src/core/lib/transport/call_size_estimator.cc +0 -41
  2725. data/src/core/lib/transport/call_size_estimator.h +0 -52
  2726. data/src/core/lib/transport/handshaker.cc +0 -229
  2727. data/src/core/lib/transport/handshaker.h +0 -165
  2728. data/src/core/lib/transport/handshaker_factory.h +0 -74
  2729. data/src/core/lib/transport/handshaker_registry.cc +0 -61
  2730. data/src/core/lib/transport/handshaker_registry.h +0 -69
  2731. data/src/core/lib/transport/http_connect_handshaker.cc +0 -400
  2732. data/src/core/lib/transport/http_connect_handshaker.h +0 -42
  2733. data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -244
  2734. data/src/core/lib/transport/tcp_connect_handshaker.h +0 -39
  2735. data/src/core/lib/uri/uri_parser.cc +0 -372
  2736. data/src/core/lib/uri/uri_parser.h +0 -101
  2737. data/src/core/load_balancing/subchannel_list.h +0 -455
  2738. data/src/core/resolver/binder/binder_resolver.cc +0 -147
  2739. data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
  2740. data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
  2741. data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
  2742. data/third_party/boringssl-with-bazel/err_data.c +0 -1512
  2743. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
  2744. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
  2745. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
  2746. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
  2747. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
  2748. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
  2749. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -328
  2750. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
  2751. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
  2752. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1070
  2753. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -355
  2754. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
  2755. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
  2756. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -553
  2757. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
  2758. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -169
  2759. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
  2760. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
  2761. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -67
  2762. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
  2763. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
  2764. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
  2765. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
  2766. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1337
  2767. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
  2768. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
  2769. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -331
  2770. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
  2771. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
  2772. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
  2773. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +0 -211
  2774. data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +0 -79
  2775. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +0 -136
  2776. data/third_party/upb/upb/message/types.h +0 -15
  2777. data/third_party/upb/upb/wire/decode_fast.c +0 -996
  2778. data/third_party/upb/upb/wire/decode_fast.h +0 -147
  2779. data/third_party/upb/upb/wire/internal/decode.h +0 -143
  2780. data/third_party/upb/upb/wire/internal/swap.h +0 -45
  2781. data/third_party/utf8_range/naive.c +0 -92
  2782. data/third_party/utf8_range/range2-neon.c +0 -157
  2783. data/third_party/utf8_range/range2-sse.c +0 -170
  2784. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
  2785. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
  2786. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
  2787. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
  2788. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
  2789. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
  2790. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
  2791. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
  2792. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
  2793. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
  2794. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
  2795. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
  2796. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
  2797. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
  2798. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
  2799. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
  2800. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
  2801. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
  2802. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
  2803. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
  2804. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
  2805. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
  2806. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
  2807. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
  2808. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
  2809. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
  2810. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
  2811. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
  2812. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
  2813. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
  2814. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
  2815. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
  2816. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
  2817. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
  2818. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
  2819. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
  2820. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
  2821. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
  2822. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
  2823. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
  2824. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
  2825. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
  2826. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
  2827. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
  2828. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
  2829. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
  2830. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
  2831. /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -3,10 +3,11 @@
3
3
  * src/proto/grpc/lookup/v1/rls_config.proto
4
4
  *
5
5
  * Do not edit -- your changes will be discarded when the file is
6
- * regenerated. */
6
+ * regenerated.
7
+ * NO CHECKED-IN PROTOBUF GENCODE */
7
8
 
8
- #ifndef SRC_PROTO_GRPC_LOOKUP_V1_RLS_CONFIG_PROTO_UPB_H_
9
- #define SRC_PROTO_GRPC_LOOKUP_V1_RLS_CONFIG_PROTO_UPB_H_
9
+ #ifndef SRC_PROTO_GRPC_LOOKUP_V1_RLS_CONFIG_PROTO_UPB_H__UPB_H_
10
+ #define SRC_PROTO_GRPC_LOOKUP_V1_RLS_CONFIG_PROTO_UPB_H__UPB_H_
10
11
 
11
12
  #include "upb/generated_code_support.h"
12
13
 
@@ -21,15 +22,15 @@
21
22
  extern "C" {
22
23
  #endif
23
24
 
24
- typedef struct grpc_lookup_v1_NameMatcher grpc_lookup_v1_NameMatcher;
25
- typedef struct grpc_lookup_v1_GrpcKeyBuilder grpc_lookup_v1_GrpcKeyBuilder;
26
- typedef struct grpc_lookup_v1_GrpcKeyBuilder_Name grpc_lookup_v1_GrpcKeyBuilder_Name;
27
- typedef struct grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys;
28
- typedef struct grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry;
29
- typedef struct grpc_lookup_v1_HttpKeyBuilder grpc_lookup_v1_HttpKeyBuilder;
30
- typedef struct grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry;
31
- typedef struct grpc_lookup_v1_RouteLookupConfig grpc_lookup_v1_RouteLookupConfig;
32
- typedef struct grpc_lookup_v1_RouteLookupClusterSpecifier grpc_lookup_v1_RouteLookupClusterSpecifier;
25
+ typedef struct grpc_lookup_v1_NameMatcher { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_NameMatcher;
26
+ typedef struct grpc_lookup_v1_GrpcKeyBuilder { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_GrpcKeyBuilder;
27
+ typedef struct grpc_lookup_v1_GrpcKeyBuilder_Name { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_GrpcKeyBuilder_Name;
28
+ typedef struct grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys;
29
+ typedef struct grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry;
30
+ typedef struct grpc_lookup_v1_HttpKeyBuilder { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_HttpKeyBuilder;
31
+ typedef struct grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry;
32
+ typedef struct grpc_lookup_v1_RouteLookupConfig { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_RouteLookupConfig;
33
+ typedef struct grpc_lookup_v1_RouteLookupClusterSpecifier { upb_Message UPB_PRIVATE(base); } grpc_lookup_v1_RouteLookupClusterSpecifier;
33
34
  struct google_protobuf_Duration;
34
35
 
35
36
 
@@ -42,7 +43,8 @@ UPB_INLINE grpc_lookup_v1_NameMatcher* grpc_lookup_v1_NameMatcher_new(upb_Arena*
42
43
  UPB_INLINE grpc_lookup_v1_NameMatcher* grpc_lookup_v1_NameMatcher_parse(const char* buf, size_t size, upb_Arena* arena) {
43
44
  grpc_lookup_v1_NameMatcher* ret = grpc_lookup_v1_NameMatcher_new(arena);
44
45
  if (!ret) return NULL;
45
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__NameMatcher_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
46
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__NameMatcher_msg_init, NULL, 0, arena) !=
47
+ kUpb_DecodeStatus_Ok) {
46
48
  return NULL;
47
49
  }
48
50
  return ret;
@@ -52,114 +54,115 @@ UPB_INLINE grpc_lookup_v1_NameMatcher* grpc_lookup_v1_NameMatcher_parse_ex(const
52
54
  int options, upb_Arena* arena) {
53
55
  grpc_lookup_v1_NameMatcher* ret = grpc_lookup_v1_NameMatcher_new(arena);
54
56
  if (!ret) return NULL;
55
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__NameMatcher_msg_init, extreg, options, arena) !=
56
- kUpb_DecodeStatus_Ok) {
57
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__NameMatcher_msg_init, extreg, options,
58
+ arena) != kUpb_DecodeStatus_Ok) {
57
59
  return NULL;
58
60
  }
59
61
  return ret;
60
62
  }
61
63
  UPB_INLINE char* grpc_lookup_v1_NameMatcher_serialize(const grpc_lookup_v1_NameMatcher* msg, upb_Arena* arena, size_t* len) {
62
64
  char* ptr;
63
- (void)upb_Encode(msg, &grpc__lookup__v1__NameMatcher_msg_init, 0, arena, &ptr, len);
65
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__NameMatcher_msg_init, 0, arena, &ptr, len);
64
66
  return ptr;
65
67
  }
66
68
  UPB_INLINE char* grpc_lookup_v1_NameMatcher_serialize_ex(const grpc_lookup_v1_NameMatcher* msg, int options,
67
69
  upb_Arena* arena, size_t* len) {
68
70
  char* ptr;
69
- (void)upb_Encode(msg, &grpc__lookup__v1__NameMatcher_msg_init, options, arena, &ptr, len);
71
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__NameMatcher_msg_init, options, arena, &ptr, len);
70
72
  return ptr;
71
73
  }
72
74
  UPB_INLINE void grpc_lookup_v1_NameMatcher_clear_key(grpc_lookup_v1_NameMatcher* msg) {
73
- const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
74
- _upb_Message_ClearNonExtensionField(msg, &field);
75
+ const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
76
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
75
77
  }
76
78
  UPB_INLINE upb_StringView grpc_lookup_v1_NameMatcher_key(const grpc_lookup_v1_NameMatcher* msg) {
77
79
  upb_StringView default_val = upb_StringView_FromString("");
78
80
  upb_StringView ret;
79
- const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
80
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
81
+ const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
82
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
83
+ &default_val, &ret);
81
84
  return ret;
82
85
  }
83
86
  UPB_INLINE void grpc_lookup_v1_NameMatcher_clear_names(grpc_lookup_v1_NameMatcher* msg) {
84
- const upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
85
- _upb_Message_ClearNonExtensionField(msg, &field);
87
+ const upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
88
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
86
89
  }
87
90
  UPB_INLINE upb_StringView const* grpc_lookup_v1_NameMatcher_names(const grpc_lookup_v1_NameMatcher* msg, size_t* size) {
88
- const upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
89
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
91
+ const upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
92
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
90
93
  if (arr) {
91
- if (size) *size = arr->size;
92
- return (upb_StringView const*)_upb_array_constptr(arr);
94
+ if (size) *size = arr->UPB_PRIVATE(size);
95
+ return (upb_StringView const*)upb_Array_DataPtr(arr);
93
96
  } else {
94
97
  if (size) *size = 0;
95
98
  return NULL;
96
99
  }
97
100
  }
98
101
  UPB_INLINE const upb_Array* _grpc_lookup_v1_NameMatcher_names_upb_array(const grpc_lookup_v1_NameMatcher* msg, size_t* size) {
99
- const upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
100
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
102
+ const upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
103
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
101
104
  if (size) {
102
- *size = arr ? arr->size : 0;
105
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
103
106
  }
104
107
  return arr;
105
108
  }
106
- UPB_INLINE upb_Array* _grpc_lookup_v1_NameMatcher_names_mutable_upb_array(const grpc_lookup_v1_NameMatcher* msg, size_t* size, upb_Arena* arena) {
107
- const upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
108
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
109
- (upb_Message*)msg, &field, arena);
109
+ UPB_INLINE upb_Array* _grpc_lookup_v1_NameMatcher_names_mutable_upb_array(grpc_lookup_v1_NameMatcher* msg, size_t* size, upb_Arena* arena) {
110
+ const upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
111
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
112
+ &field, arena);
110
113
  if (size) {
111
- *size = arr ? arr->size : 0;
114
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
112
115
  }
113
116
  return arr;
114
117
  }
115
- UPB_INLINE bool grpc_lookup_v1_NameMatcher_has_names(const grpc_lookup_v1_NameMatcher* msg) {
116
- size_t size;
117
- grpc_lookup_v1_NameMatcher_names(msg, &size);
118
- return size != 0;
119
- }
120
118
  UPB_INLINE void grpc_lookup_v1_NameMatcher_clear_required_match(grpc_lookup_v1_NameMatcher* msg) {
121
- const upb_MiniTableField field = {3, UPB_SIZE(4, 0), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
122
- _upb_Message_ClearNonExtensionField(msg, &field);
119
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 8), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
120
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
123
121
  }
124
122
  UPB_INLINE bool grpc_lookup_v1_NameMatcher_required_match(const grpc_lookup_v1_NameMatcher* msg) {
125
123
  bool default_val = false;
126
124
  bool ret;
127
- const upb_MiniTableField field = {3, UPB_SIZE(4, 0), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
128
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
125
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 8), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
126
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
127
+ &default_val, &ret);
129
128
  return ret;
130
129
  }
131
130
 
132
131
  UPB_INLINE void grpc_lookup_v1_NameMatcher_set_key(grpc_lookup_v1_NameMatcher *msg, upb_StringView value) {
133
- const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
134
- _upb_Message_SetNonExtensionField(msg, &field, &value);
132
+ const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
133
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
135
134
  }
136
135
  UPB_INLINE upb_StringView* grpc_lookup_v1_NameMatcher_mutable_names(grpc_lookup_v1_NameMatcher* msg, size_t* size) {
137
- upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
138
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
136
+ upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
137
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
139
138
  if (arr) {
140
- if (size) *size = arr->size;
141
- return (upb_StringView*)_upb_array_ptr(arr);
139
+ if (size) *size = arr->UPB_PRIVATE(size);
140
+ return (upb_StringView*)upb_Array_MutableDataPtr(arr);
142
141
  } else {
143
142
  if (size) *size = 0;
144
143
  return NULL;
145
144
  }
146
145
  }
147
146
  UPB_INLINE upb_StringView* grpc_lookup_v1_NameMatcher_resize_names(grpc_lookup_v1_NameMatcher* msg, size_t size, upb_Arena* arena) {
148
- upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
149
- return (upb_StringView*)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
147
+ upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
148
+ return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
149
+ &field, size, arena);
150
150
  }
151
151
  UPB_INLINE bool grpc_lookup_v1_NameMatcher_add_names(grpc_lookup_v1_NameMatcher* msg, upb_StringView val, upb_Arena* arena) {
152
- upb_MiniTableField field = {2, UPB_SIZE(0, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
153
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
154
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
152
+ upb_MiniTableField field = {2, UPB_SIZE(8, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
153
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
154
+ UPB_UPCAST(msg), &field, arena);
155
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
156
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
155
157
  return false;
156
158
  }
157
- _upb_Array_Set(arr, arr->size - 1, &val, sizeof(val));
159
+ UPB_PRIVATE(_upb_Array_Set)
160
+ (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
158
161
  return true;
159
162
  }
160
163
  UPB_INLINE void grpc_lookup_v1_NameMatcher_set_required_match(grpc_lookup_v1_NameMatcher *msg, bool value) {
161
- const upb_MiniTableField field = {3, UPB_SIZE(4, 0), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
162
- _upb_Message_SetNonExtensionField(msg, &field, &value);
164
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 8), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
165
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
163
166
  }
164
167
 
165
168
  /* grpc.lookup.v1.GrpcKeyBuilder */
@@ -170,7 +173,8 @@ UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder* grpc_lookup_v1_GrpcKeyBuilder_new(upb_
170
173
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder* grpc_lookup_v1_GrpcKeyBuilder_parse(const char* buf, size_t size, upb_Arena* arena) {
171
174
  grpc_lookup_v1_GrpcKeyBuilder* ret = grpc_lookup_v1_GrpcKeyBuilder_new(arena);
172
175
  if (!ret) return NULL;
173
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__GrpcKeyBuilder_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
176
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__GrpcKeyBuilder_msg_init, NULL, 0, arena) !=
177
+ kUpb_DecodeStatus_Ok) {
174
178
  return NULL;
175
179
  }
176
180
  return ret;
@@ -180,189 +184,212 @@ UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder* grpc_lookup_v1_GrpcKeyBuilder_parse_ex
180
184
  int options, upb_Arena* arena) {
181
185
  grpc_lookup_v1_GrpcKeyBuilder* ret = grpc_lookup_v1_GrpcKeyBuilder_new(arena);
182
186
  if (!ret) return NULL;
183
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__GrpcKeyBuilder_msg_init, extreg, options, arena) !=
184
- kUpb_DecodeStatus_Ok) {
187
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__GrpcKeyBuilder_msg_init, extreg, options,
188
+ arena) != kUpb_DecodeStatus_Ok) {
185
189
  return NULL;
186
190
  }
187
191
  return ret;
188
192
  }
189
193
  UPB_INLINE char* grpc_lookup_v1_GrpcKeyBuilder_serialize(const grpc_lookup_v1_GrpcKeyBuilder* msg, upb_Arena* arena, size_t* len) {
190
194
  char* ptr;
191
- (void)upb_Encode(msg, &grpc__lookup__v1__GrpcKeyBuilder_msg_init, 0, arena, &ptr, len);
195
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__GrpcKeyBuilder_msg_init, 0, arena, &ptr, len);
192
196
  return ptr;
193
197
  }
194
198
  UPB_INLINE char* grpc_lookup_v1_GrpcKeyBuilder_serialize_ex(const grpc_lookup_v1_GrpcKeyBuilder* msg, int options,
195
199
  upb_Arena* arena, size_t* len) {
196
200
  char* ptr;
197
- (void)upb_Encode(msg, &grpc__lookup__v1__GrpcKeyBuilder_msg_init, options, arena, &ptr, len);
201
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__GrpcKeyBuilder_msg_init, options, arena, &ptr, len);
198
202
  return ptr;
199
203
  }
200
204
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_clear_names(grpc_lookup_v1_GrpcKeyBuilder* msg) {
201
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
202
- _upb_Message_ClearNonExtensionField(msg, &field);
205
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
206
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
203
207
  }
204
208
  UPB_INLINE const grpc_lookup_v1_GrpcKeyBuilder_Name* const* grpc_lookup_v1_GrpcKeyBuilder_names(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size) {
205
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
206
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
209
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
210
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init);
211
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
207
212
  if (arr) {
208
- if (size) *size = arr->size;
209
- return (const grpc_lookup_v1_GrpcKeyBuilder_Name* const*)_upb_array_constptr(arr);
213
+ if (size) *size = arr->UPB_PRIVATE(size);
214
+ return (const grpc_lookup_v1_GrpcKeyBuilder_Name* const*)upb_Array_DataPtr(arr);
210
215
  } else {
211
216
  if (size) *size = 0;
212
217
  return NULL;
213
218
  }
214
219
  }
215
220
  UPB_INLINE const upb_Array* _grpc_lookup_v1_GrpcKeyBuilder_names_upb_array(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size) {
216
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
217
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
221
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
222
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init);
223
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
218
224
  if (size) {
219
- *size = arr ? arr->size : 0;
225
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
220
226
  }
221
227
  return arr;
222
228
  }
223
- UPB_INLINE upb_Array* _grpc_lookup_v1_GrpcKeyBuilder_names_mutable_upb_array(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size, upb_Arena* arena) {
224
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
225
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
226
- (upb_Message*)msg, &field, arena);
229
+ UPB_INLINE upb_Array* _grpc_lookup_v1_GrpcKeyBuilder_names_mutable_upb_array(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size, upb_Arena* arena) {
230
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
231
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init);
232
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
233
+ &field, arena);
227
234
  if (size) {
228
- *size = arr ? arr->size : 0;
235
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
229
236
  }
230
237
  return arr;
231
238
  }
232
- UPB_INLINE bool grpc_lookup_v1_GrpcKeyBuilder_has_names(const grpc_lookup_v1_GrpcKeyBuilder* msg) {
233
- size_t size;
234
- grpc_lookup_v1_GrpcKeyBuilder_names(msg, &size);
235
- return size != 0;
236
- }
237
239
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_clear_headers(grpc_lookup_v1_GrpcKeyBuilder* msg) {
238
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
239
- _upb_Message_ClearNonExtensionField(msg, &field);
240
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
241
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
240
242
  }
241
243
  UPB_INLINE const grpc_lookup_v1_NameMatcher* const* grpc_lookup_v1_GrpcKeyBuilder_headers(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size) {
242
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
243
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
244
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
245
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
246
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
244
247
  if (arr) {
245
- if (size) *size = arr->size;
246
- return (const grpc_lookup_v1_NameMatcher* const*)_upb_array_constptr(arr);
248
+ if (size) *size = arr->UPB_PRIVATE(size);
249
+ return (const grpc_lookup_v1_NameMatcher* const*)upb_Array_DataPtr(arr);
247
250
  } else {
248
251
  if (size) *size = 0;
249
252
  return NULL;
250
253
  }
251
254
  }
252
255
  UPB_INLINE const upb_Array* _grpc_lookup_v1_GrpcKeyBuilder_headers_upb_array(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size) {
253
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
254
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
256
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
257
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
258
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
255
259
  if (size) {
256
- *size = arr ? arr->size : 0;
260
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
257
261
  }
258
262
  return arr;
259
263
  }
260
- UPB_INLINE upb_Array* _grpc_lookup_v1_GrpcKeyBuilder_headers_mutable_upb_array(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size, upb_Arena* arena) {
261
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
262
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
263
- (upb_Message*)msg, &field, arena);
264
+ UPB_INLINE upb_Array* _grpc_lookup_v1_GrpcKeyBuilder_headers_mutable_upb_array(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size, upb_Arena* arena) {
265
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
266
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
267
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
268
+ &field, arena);
264
269
  if (size) {
265
- *size = arr ? arr->size : 0;
270
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
266
271
  }
267
272
  return arr;
268
273
  }
269
- UPB_INLINE bool grpc_lookup_v1_GrpcKeyBuilder_has_headers(const grpc_lookup_v1_GrpcKeyBuilder* msg) {
270
- size_t size;
271
- grpc_lookup_v1_GrpcKeyBuilder_headers(msg, &size);
272
- return size != 0;
273
- }
274
274
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_clear_extra_keys(grpc_lookup_v1_GrpcKeyBuilder* msg) {
275
- const upb_MiniTableField field = {3, UPB_SIZE(12, 24), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
276
- _upb_Message_ClearNonExtensionField(msg, &field);
275
+ const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
276
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
277
277
  }
278
278
  UPB_INLINE const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* grpc_lookup_v1_GrpcKeyBuilder_extra_keys(const grpc_lookup_v1_GrpcKeyBuilder* msg) {
279
279
  const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* default_val = NULL;
280
280
  const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* ret;
281
- const upb_MiniTableField field = {3, UPB_SIZE(12, 24), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
282
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
281
+ const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
282
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init);
283
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
284
+ &default_val, &ret);
283
285
  return ret;
284
286
  }
285
287
  UPB_INLINE bool grpc_lookup_v1_GrpcKeyBuilder_has_extra_keys(const grpc_lookup_v1_GrpcKeyBuilder* msg) {
286
- const upb_MiniTableField field = {3, UPB_SIZE(12, 24), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
287
- return _upb_Message_HasNonExtensionField(msg, &field);
288
+ const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
289
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
288
290
  }
289
291
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_clear_constant_keys(grpc_lookup_v1_GrpcKeyBuilder* msg) {
290
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
291
- _upb_Message_ClearNonExtensionField(msg, &field);
292
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
293
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
292
294
  }
293
295
  UPB_INLINE size_t grpc_lookup_v1_GrpcKeyBuilder_constant_keys_size(const grpc_lookup_v1_GrpcKeyBuilder* msg) {
294
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
295
- const upb_Map* map = upb_Message_GetMap(msg, &field);
296
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
297
+ const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
296
298
  return map ? _upb_Map_Size(map) : 0;
297
299
  }
298
300
  UPB_INLINE bool grpc_lookup_v1_GrpcKeyBuilder_constant_keys_get(const grpc_lookup_v1_GrpcKeyBuilder* msg, upb_StringView key, upb_StringView* val) {
299
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
300
- const upb_Map* map = upb_Message_GetMap(msg, &field);
301
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
302
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ConstantKeysEntry_msg_init);
303
+ const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
301
304
  if (!map) return false;
302
305
  return _upb_Map_Get(map, &key, 0, val, 0);
303
306
  }
304
307
  UPB_INLINE const grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry* grpc_lookup_v1_GrpcKeyBuilder_constant_keys_next(const grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* iter) {
305
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
306
- const upb_Map* map = upb_Message_GetMap(msg, &field);
308
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
309
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ConstantKeysEntry_msg_init);
310
+ const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
307
311
  if (!map) return NULL;
308
312
  return (const grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry*)_upb_map_next(map, iter);
309
313
  }
314
+ UPB_INLINE const upb_Map* _grpc_lookup_v1_GrpcKeyBuilder_constant_keys_upb_map(grpc_lookup_v1_GrpcKeyBuilder* msg) {
315
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
316
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ConstantKeysEntry_msg_init);
317
+ return upb_Message_GetMap(UPB_UPCAST(msg), &field);
318
+ }
319
+ UPB_INLINE upb_Map* _grpc_lookup_v1_GrpcKeyBuilder_constant_keys_mutable_upb_map(grpc_lookup_v1_GrpcKeyBuilder* msg, upb_Arena* a) {
320
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
321
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ConstantKeysEntry_msg_init);
322
+ return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
323
+ }
310
324
 
311
325
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_Name** grpc_lookup_v1_GrpcKeyBuilder_mutable_names(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size) {
312
- upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
313
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
326
+ upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
327
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init);
328
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
314
329
  if (arr) {
315
- if (size) *size = arr->size;
316
- return (grpc_lookup_v1_GrpcKeyBuilder_Name**)_upb_array_ptr(arr);
330
+ if (size) *size = arr->UPB_PRIVATE(size);
331
+ return (grpc_lookup_v1_GrpcKeyBuilder_Name**)upb_Array_MutableDataPtr(arr);
317
332
  } else {
318
333
  if (size) *size = 0;
319
334
  return NULL;
320
335
  }
321
336
  }
322
337
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_Name** grpc_lookup_v1_GrpcKeyBuilder_resize_names(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t size, upb_Arena* arena) {
323
- upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
324
- return (grpc_lookup_v1_GrpcKeyBuilder_Name**)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
338
+ upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
339
+ return (grpc_lookup_v1_GrpcKeyBuilder_Name**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
340
+ &field, size, arena);
325
341
  }
326
342
  UPB_INLINE struct grpc_lookup_v1_GrpcKeyBuilder_Name* grpc_lookup_v1_GrpcKeyBuilder_add_names(grpc_lookup_v1_GrpcKeyBuilder* msg, upb_Arena* arena) {
327
- upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
328
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
329
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
343
+ upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
344
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init);
345
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
346
+ UPB_UPCAST(msg), &field, arena);
347
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
348
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
330
349
  return NULL;
331
350
  }
332
351
  struct grpc_lookup_v1_GrpcKeyBuilder_Name* sub = (struct grpc_lookup_v1_GrpcKeyBuilder_Name*)_upb_Message_New(&grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, arena);
333
352
  if (!arr || !sub) return NULL;
334
- _upb_Array_Set(arr, arr->size - 1, &sub, sizeof(sub));
353
+ UPB_PRIVATE(_upb_Array_Set)
354
+ (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
335
355
  return sub;
336
356
  }
337
357
  UPB_INLINE grpc_lookup_v1_NameMatcher** grpc_lookup_v1_GrpcKeyBuilder_mutable_headers(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* size) {
338
- upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
339
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
358
+ upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
359
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
360
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
340
361
  if (arr) {
341
- if (size) *size = arr->size;
342
- return (grpc_lookup_v1_NameMatcher**)_upb_array_ptr(arr);
362
+ if (size) *size = arr->UPB_PRIVATE(size);
363
+ return (grpc_lookup_v1_NameMatcher**)upb_Array_MutableDataPtr(arr);
343
364
  } else {
344
365
  if (size) *size = 0;
345
366
  return NULL;
346
367
  }
347
368
  }
348
369
  UPB_INLINE grpc_lookup_v1_NameMatcher** grpc_lookup_v1_GrpcKeyBuilder_resize_headers(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t size, upb_Arena* arena) {
349
- upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
350
- return (grpc_lookup_v1_NameMatcher**)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
370
+ upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
371
+ return (grpc_lookup_v1_NameMatcher**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
372
+ &field, size, arena);
351
373
  }
352
374
  UPB_INLINE struct grpc_lookup_v1_NameMatcher* grpc_lookup_v1_GrpcKeyBuilder_add_headers(grpc_lookup_v1_GrpcKeyBuilder* msg, upb_Arena* arena) {
353
- upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
354
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
355
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
375
+ upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
376
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
377
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
378
+ UPB_UPCAST(msg), &field, arena);
379
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
380
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
356
381
  return NULL;
357
382
  }
358
383
  struct grpc_lookup_v1_NameMatcher* sub = (struct grpc_lookup_v1_NameMatcher*)_upb_Message_New(&grpc__lookup__v1__NameMatcher_msg_init, arena);
359
384
  if (!arr || !sub) return NULL;
360
- _upb_Array_Set(arr, arr->size - 1, &sub, sizeof(sub));
385
+ UPB_PRIVATE(_upb_Array_Set)
386
+ (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
361
387
  return sub;
362
388
  }
363
389
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_set_extra_keys(grpc_lookup_v1_GrpcKeyBuilder *msg, grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* value) {
364
- const upb_MiniTableField field = {3, UPB_SIZE(12, 24), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
365
- _upb_Message_SetNonExtensionField(msg, &field, &value);
390
+ const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
391
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init);
392
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
366
393
  }
367
394
  UPB_INLINE struct grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* grpc_lookup_v1_GrpcKeyBuilder_mutable_extra_keys(grpc_lookup_v1_GrpcKeyBuilder* msg, upb_Arena* arena) {
368
395
  struct grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* sub = (struct grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys*)grpc_lookup_v1_GrpcKeyBuilder_extra_keys(msg);
@@ -373,26 +400,29 @@ UPB_INLINE struct grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* grpc_lookup_v1_GrpcKe
373
400
  return sub;
374
401
  }
375
402
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_constant_keys_clear(grpc_lookup_v1_GrpcKeyBuilder* msg) {
376
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
377
- upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
403
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
404
+ upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
378
405
  if (!map) return;
379
406
  _upb_Map_Clear(map);
380
407
  }
381
408
  UPB_INLINE bool grpc_lookup_v1_GrpcKeyBuilder_constant_keys_set(grpc_lookup_v1_GrpcKeyBuilder* msg, upb_StringView key, upb_StringView val, upb_Arena* a) {
382
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
383
- upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg, &field, 0, 0, a);
409
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
410
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ConstantKeysEntry_msg_init);
411
+ upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
412
+ &field, 0, 0, a);
384
413
  return _upb_Map_Insert(map, &key, 0, &val, 0, a) !=
385
414
  kUpb_MapInsertStatus_OutOfMemory;
386
415
  }
387
416
  UPB_INLINE bool grpc_lookup_v1_GrpcKeyBuilder_constant_keys_delete(grpc_lookup_v1_GrpcKeyBuilder* msg, upb_StringView key) {
388
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
389
- upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
417
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
418
+ upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
390
419
  if (!map) return false;
391
420
  return _upb_Map_Delete(map, &key, 0, NULL);
392
421
  }
393
422
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry* grpc_lookup_v1_GrpcKeyBuilder_constant_keys_nextmutable(grpc_lookup_v1_GrpcKeyBuilder* msg, size_t* iter) {
394
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
395
- upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
423
+ const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
424
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder__ConstantKeysEntry_msg_init);
425
+ upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
396
426
  if (!map) return NULL;
397
427
  return (grpc_lookup_v1_GrpcKeyBuilder_ConstantKeysEntry*)_upb_map_next(map, iter);
398
428
  }
@@ -405,7 +435,8 @@ UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_Name* grpc_lookup_v1_GrpcKeyBuilder_Nam
405
435
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_Name* grpc_lookup_v1_GrpcKeyBuilder_Name_parse(const char* buf, size_t size, upb_Arena* arena) {
406
436
  grpc_lookup_v1_GrpcKeyBuilder_Name* ret = grpc_lookup_v1_GrpcKeyBuilder_Name_new(arena);
407
437
  if (!ret) return NULL;
408
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
438
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, NULL, 0, arena) !=
439
+ kUpb_DecodeStatus_Ok) {
409
440
  return NULL;
410
441
  }
411
442
  return ret;
@@ -415,53 +446,55 @@ UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_Name* grpc_lookup_v1_GrpcKeyBuilder_Nam
415
446
  int options, upb_Arena* arena) {
416
447
  grpc_lookup_v1_GrpcKeyBuilder_Name* ret = grpc_lookup_v1_GrpcKeyBuilder_Name_new(arena);
417
448
  if (!ret) return NULL;
418
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, extreg, options, arena) !=
419
- kUpb_DecodeStatus_Ok) {
449
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, extreg, options,
450
+ arena) != kUpb_DecodeStatus_Ok) {
420
451
  return NULL;
421
452
  }
422
453
  return ret;
423
454
  }
424
455
  UPB_INLINE char* grpc_lookup_v1_GrpcKeyBuilder_Name_serialize(const grpc_lookup_v1_GrpcKeyBuilder_Name* msg, upb_Arena* arena, size_t* len) {
425
456
  char* ptr;
426
- (void)upb_Encode(msg, &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, 0, arena, &ptr, len);
457
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, 0, arena, &ptr, len);
427
458
  return ptr;
428
459
  }
429
460
  UPB_INLINE char* grpc_lookup_v1_GrpcKeyBuilder_Name_serialize_ex(const grpc_lookup_v1_GrpcKeyBuilder_Name* msg, int options,
430
461
  upb_Arena* arena, size_t* len) {
431
462
  char* ptr;
432
- (void)upb_Encode(msg, &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, options, arena, &ptr, len);
463
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__GrpcKeyBuilder__Name_msg_init, options, arena, &ptr, len);
433
464
  return ptr;
434
465
  }
435
466
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_Name_clear_service(grpc_lookup_v1_GrpcKeyBuilder_Name* msg) {
436
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
437
- _upb_Message_ClearNonExtensionField(msg, &field);
467
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
468
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
438
469
  }
439
470
  UPB_INLINE upb_StringView grpc_lookup_v1_GrpcKeyBuilder_Name_service(const grpc_lookup_v1_GrpcKeyBuilder_Name* msg) {
440
471
  upb_StringView default_val = upb_StringView_FromString("");
441
472
  upb_StringView ret;
442
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
443
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
473
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
474
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
475
+ &default_val, &ret);
444
476
  return ret;
445
477
  }
446
478
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_Name_clear_method(grpc_lookup_v1_GrpcKeyBuilder_Name* msg) {
447
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
448
- _upb_Message_ClearNonExtensionField(msg, &field);
479
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
480
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
449
481
  }
450
482
  UPB_INLINE upb_StringView grpc_lookup_v1_GrpcKeyBuilder_Name_method(const grpc_lookup_v1_GrpcKeyBuilder_Name* msg) {
451
483
  upb_StringView default_val = upb_StringView_FromString("");
452
484
  upb_StringView ret;
453
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
454
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
485
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
486
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
487
+ &default_val, &ret);
455
488
  return ret;
456
489
  }
457
490
 
458
491
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_Name_set_service(grpc_lookup_v1_GrpcKeyBuilder_Name *msg, upb_StringView value) {
459
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
460
- _upb_Message_SetNonExtensionField(msg, &field, &value);
492
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
493
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
461
494
  }
462
495
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_Name_set_method(grpc_lookup_v1_GrpcKeyBuilder_Name *msg, upb_StringView value) {
463
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
464
- _upb_Message_SetNonExtensionField(msg, &field, &value);
496
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
497
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
465
498
  }
466
499
 
467
500
  /* grpc.lookup.v1.GrpcKeyBuilder.ExtraKeys */
@@ -472,7 +505,8 @@ UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* grpc_lookup_v1_GrpcKeyBuilde
472
505
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_parse(const char* buf, size_t size, upb_Arena* arena) {
473
506
  grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* ret = grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_new(arena);
474
507
  if (!ret) return NULL;
475
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
508
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, NULL, 0, arena) !=
509
+ kUpb_DecodeStatus_Ok) {
476
510
  return NULL;
477
511
  }
478
512
  return ret;
@@ -482,68 +516,71 @@ UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* grpc_lookup_v1_GrpcKeyBuilde
482
516
  int options, upb_Arena* arena) {
483
517
  grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* ret = grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_new(arena);
484
518
  if (!ret) return NULL;
485
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, extreg, options, arena) !=
486
- kUpb_DecodeStatus_Ok) {
519
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, extreg, options,
520
+ arena) != kUpb_DecodeStatus_Ok) {
487
521
  return NULL;
488
522
  }
489
523
  return ret;
490
524
  }
491
525
  UPB_INLINE char* grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_serialize(const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg, upb_Arena* arena, size_t* len) {
492
526
  char* ptr;
493
- (void)upb_Encode(msg, &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, 0, arena, &ptr, len);
527
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, 0, arena, &ptr, len);
494
528
  return ptr;
495
529
  }
496
530
  UPB_INLINE char* grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_serialize_ex(const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg, int options,
497
531
  upb_Arena* arena, size_t* len) {
498
532
  char* ptr;
499
- (void)upb_Encode(msg, &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, options, arena, &ptr, len);
533
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__GrpcKeyBuilder__ExtraKeys_msg_init, options, arena, &ptr, len);
500
534
  return ptr;
501
535
  }
502
536
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_clear_host(grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg) {
503
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
504
- _upb_Message_ClearNonExtensionField(msg, &field);
537
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
538
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
505
539
  }
506
540
  UPB_INLINE upb_StringView grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_host(const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg) {
507
541
  upb_StringView default_val = upb_StringView_FromString("");
508
542
  upb_StringView ret;
509
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
510
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
543
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
544
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
545
+ &default_val, &ret);
511
546
  return ret;
512
547
  }
513
548
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_clear_service(grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg) {
514
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
515
- _upb_Message_ClearNonExtensionField(msg, &field);
549
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
550
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
516
551
  }
517
552
  UPB_INLINE upb_StringView grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_service(const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg) {
518
553
  upb_StringView default_val = upb_StringView_FromString("");
519
554
  upb_StringView ret;
520
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
521
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
555
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
556
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
557
+ &default_val, &ret);
522
558
  return ret;
523
559
  }
524
560
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_clear_method(grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg) {
525
- const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
526
- _upb_Message_ClearNonExtensionField(msg, &field);
561
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
562
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
527
563
  }
528
564
  UPB_INLINE upb_StringView grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_method(const grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys* msg) {
529
565
  upb_StringView default_val = upb_StringView_FromString("");
530
566
  upb_StringView ret;
531
- const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
532
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
567
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
568
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
569
+ &default_val, &ret);
533
570
  return ret;
534
571
  }
535
572
 
536
573
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_set_host(grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys *msg, upb_StringView value) {
537
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
538
- _upb_Message_SetNonExtensionField(msg, &field, &value);
574
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
575
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
539
576
  }
540
577
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_set_service(grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys *msg, upb_StringView value) {
541
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
542
- _upb_Message_SetNonExtensionField(msg, &field, &value);
578
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
579
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
543
580
  }
544
581
  UPB_INLINE void grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys_set_method(grpc_lookup_v1_GrpcKeyBuilder_ExtraKeys *msg, upb_StringView value) {
545
- const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
546
- _upb_Message_SetNonExtensionField(msg, &field, &value);
582
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
583
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
547
584
  }
548
585
 
549
586
  /* grpc.lookup.v1.GrpcKeyBuilder.ConstantKeysEntry */
@@ -571,7 +608,8 @@ UPB_INLINE grpc_lookup_v1_HttpKeyBuilder* grpc_lookup_v1_HttpKeyBuilder_new(upb_
571
608
  UPB_INLINE grpc_lookup_v1_HttpKeyBuilder* grpc_lookup_v1_HttpKeyBuilder_parse(const char* buf, size_t size, upb_Arena* arena) {
572
609
  grpc_lookup_v1_HttpKeyBuilder* ret = grpc_lookup_v1_HttpKeyBuilder_new(arena);
573
610
  if (!ret) return NULL;
574
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__HttpKeyBuilder_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
611
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__HttpKeyBuilder_msg_init, NULL, 0, arena) !=
612
+ kUpb_DecodeStatus_Ok) {
575
613
  return NULL;
576
614
  }
577
615
  return ret;
@@ -581,314 +619,335 @@ UPB_INLINE grpc_lookup_v1_HttpKeyBuilder* grpc_lookup_v1_HttpKeyBuilder_parse_ex
581
619
  int options, upb_Arena* arena) {
582
620
  grpc_lookup_v1_HttpKeyBuilder* ret = grpc_lookup_v1_HttpKeyBuilder_new(arena);
583
621
  if (!ret) return NULL;
584
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__HttpKeyBuilder_msg_init, extreg, options, arena) !=
585
- kUpb_DecodeStatus_Ok) {
622
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__HttpKeyBuilder_msg_init, extreg, options,
623
+ arena) != kUpb_DecodeStatus_Ok) {
586
624
  return NULL;
587
625
  }
588
626
  return ret;
589
627
  }
590
628
  UPB_INLINE char* grpc_lookup_v1_HttpKeyBuilder_serialize(const grpc_lookup_v1_HttpKeyBuilder* msg, upb_Arena* arena, size_t* len) {
591
629
  char* ptr;
592
- (void)upb_Encode(msg, &grpc__lookup__v1__HttpKeyBuilder_msg_init, 0, arena, &ptr, len);
630
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__HttpKeyBuilder_msg_init, 0, arena, &ptr, len);
593
631
  return ptr;
594
632
  }
595
633
  UPB_INLINE char* grpc_lookup_v1_HttpKeyBuilder_serialize_ex(const grpc_lookup_v1_HttpKeyBuilder* msg, int options,
596
634
  upb_Arena* arena, size_t* len) {
597
635
  char* ptr;
598
- (void)upb_Encode(msg, &grpc__lookup__v1__HttpKeyBuilder_msg_init, options, arena, &ptr, len);
636
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__HttpKeyBuilder_msg_init, options, arena, &ptr, len);
599
637
  return ptr;
600
638
  }
601
639
  UPB_INLINE void grpc_lookup_v1_HttpKeyBuilder_clear_host_patterns(grpc_lookup_v1_HttpKeyBuilder* msg) {
602
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
603
- _upb_Message_ClearNonExtensionField(msg, &field);
640
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
641
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
604
642
  }
605
643
  UPB_INLINE upb_StringView const* grpc_lookup_v1_HttpKeyBuilder_host_patterns(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
606
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
607
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
644
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
645
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
608
646
  if (arr) {
609
- if (size) *size = arr->size;
610
- return (upb_StringView const*)_upb_array_constptr(arr);
647
+ if (size) *size = arr->UPB_PRIVATE(size);
648
+ return (upb_StringView const*)upb_Array_DataPtr(arr);
611
649
  } else {
612
650
  if (size) *size = 0;
613
651
  return NULL;
614
652
  }
615
653
  }
616
654
  UPB_INLINE const upb_Array* _grpc_lookup_v1_HttpKeyBuilder_host_patterns_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
617
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
618
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
655
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
656
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
619
657
  if (size) {
620
- *size = arr ? arr->size : 0;
658
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
621
659
  }
622
660
  return arr;
623
661
  }
624
- UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_host_patterns_mutable_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
625
- const upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
626
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
627
- (upb_Message*)msg, &field, arena);
662
+ UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_host_patterns_mutable_upb_array(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
663
+ const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
664
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
665
+ &field, arena);
628
666
  if (size) {
629
- *size = arr ? arr->size : 0;
667
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
630
668
  }
631
669
  return arr;
632
670
  }
633
- UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_has_host_patterns(const grpc_lookup_v1_HttpKeyBuilder* msg) {
634
- size_t size;
635
- grpc_lookup_v1_HttpKeyBuilder_host_patterns(msg, &size);
636
- return size != 0;
637
- }
638
671
  UPB_INLINE void grpc_lookup_v1_HttpKeyBuilder_clear_path_patterns(grpc_lookup_v1_HttpKeyBuilder* msg) {
639
- const upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
640
- _upb_Message_ClearNonExtensionField(msg, &field);
672
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
673
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
641
674
  }
642
675
  UPB_INLINE upb_StringView const* grpc_lookup_v1_HttpKeyBuilder_path_patterns(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
643
- const upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
644
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
676
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
677
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
645
678
  if (arr) {
646
- if (size) *size = arr->size;
647
- return (upb_StringView const*)_upb_array_constptr(arr);
679
+ if (size) *size = arr->UPB_PRIVATE(size);
680
+ return (upb_StringView const*)upb_Array_DataPtr(arr);
648
681
  } else {
649
682
  if (size) *size = 0;
650
683
  return NULL;
651
684
  }
652
685
  }
653
686
  UPB_INLINE const upb_Array* _grpc_lookup_v1_HttpKeyBuilder_path_patterns_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
654
- const upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
655
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
687
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
688
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
656
689
  if (size) {
657
- *size = arr ? arr->size : 0;
690
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
658
691
  }
659
692
  return arr;
660
693
  }
661
- UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_path_patterns_mutable_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
662
- const upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
663
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
664
- (upb_Message*)msg, &field, arena);
694
+ UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_path_patterns_mutable_upb_array(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
695
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
696
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
697
+ &field, arena);
665
698
  if (size) {
666
- *size = arr ? arr->size : 0;
699
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
667
700
  }
668
701
  return arr;
669
702
  }
670
- UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_has_path_patterns(const grpc_lookup_v1_HttpKeyBuilder* msg) {
671
- size_t size;
672
- grpc_lookup_v1_HttpKeyBuilder_path_patterns(msg, &size);
673
- return size != 0;
674
- }
675
703
  UPB_INLINE void grpc_lookup_v1_HttpKeyBuilder_clear_query_parameters(grpc_lookup_v1_HttpKeyBuilder* msg) {
676
- const upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
677
- _upb_Message_ClearNonExtensionField(msg, &field);
704
+ const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
705
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
678
706
  }
679
707
  UPB_INLINE const grpc_lookup_v1_NameMatcher* const* grpc_lookup_v1_HttpKeyBuilder_query_parameters(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
680
- const upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
681
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
708
+ const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
709
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
710
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
682
711
  if (arr) {
683
- if (size) *size = arr->size;
684
- return (const grpc_lookup_v1_NameMatcher* const*)_upb_array_constptr(arr);
712
+ if (size) *size = arr->UPB_PRIVATE(size);
713
+ return (const grpc_lookup_v1_NameMatcher* const*)upb_Array_DataPtr(arr);
685
714
  } else {
686
715
  if (size) *size = 0;
687
716
  return NULL;
688
717
  }
689
718
  }
690
719
  UPB_INLINE const upb_Array* _grpc_lookup_v1_HttpKeyBuilder_query_parameters_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
691
- const upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
692
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
720
+ const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
721
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
722
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
693
723
  if (size) {
694
- *size = arr ? arr->size : 0;
724
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
695
725
  }
696
726
  return arr;
697
727
  }
698
- UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_query_parameters_mutable_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
699
- const upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
700
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
701
- (upb_Message*)msg, &field, arena);
728
+ UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_query_parameters_mutable_upb_array(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
729
+ const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
730
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
731
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
732
+ &field, arena);
702
733
  if (size) {
703
- *size = arr ? arr->size : 0;
734
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
704
735
  }
705
736
  return arr;
706
737
  }
707
- UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_has_query_parameters(const grpc_lookup_v1_HttpKeyBuilder* msg) {
708
- size_t size;
709
- grpc_lookup_v1_HttpKeyBuilder_query_parameters(msg, &size);
710
- return size != 0;
711
- }
712
738
  UPB_INLINE void grpc_lookup_v1_HttpKeyBuilder_clear_headers(grpc_lookup_v1_HttpKeyBuilder* msg) {
713
- const upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
714
- _upb_Message_ClearNonExtensionField(msg, &field);
739
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
740
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
715
741
  }
716
742
  UPB_INLINE const grpc_lookup_v1_NameMatcher* const* grpc_lookup_v1_HttpKeyBuilder_headers(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
717
- const upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
718
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
743
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
744
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
745
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
719
746
  if (arr) {
720
- if (size) *size = arr->size;
721
- return (const grpc_lookup_v1_NameMatcher* const*)_upb_array_constptr(arr);
747
+ if (size) *size = arr->UPB_PRIVATE(size);
748
+ return (const grpc_lookup_v1_NameMatcher* const*)upb_Array_DataPtr(arr);
722
749
  } else {
723
750
  if (size) *size = 0;
724
751
  return NULL;
725
752
  }
726
753
  }
727
754
  UPB_INLINE const upb_Array* _grpc_lookup_v1_HttpKeyBuilder_headers_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
728
- const upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
729
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
755
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
756
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
757
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
730
758
  if (size) {
731
- *size = arr ? arr->size : 0;
759
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
732
760
  }
733
761
  return arr;
734
762
  }
735
- UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_headers_mutable_upb_array(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
736
- const upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
737
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
738
- (upb_Message*)msg, &field, arena);
763
+ UPB_INLINE upb_Array* _grpc_lookup_v1_HttpKeyBuilder_headers_mutable_upb_array(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size, upb_Arena* arena) {
764
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
765
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
766
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
767
+ &field, arena);
739
768
  if (size) {
740
- *size = arr ? arr->size : 0;
769
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
741
770
  }
742
771
  return arr;
743
772
  }
744
- UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_has_headers(const grpc_lookup_v1_HttpKeyBuilder* msg) {
745
- size_t size;
746
- grpc_lookup_v1_HttpKeyBuilder_headers(msg, &size);
747
- return size != 0;
748
- }
749
773
  UPB_INLINE void grpc_lookup_v1_HttpKeyBuilder_clear_constant_keys(grpc_lookup_v1_HttpKeyBuilder* msg) {
750
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
751
- _upb_Message_ClearNonExtensionField(msg, &field);
774
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
775
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
752
776
  }
753
777
  UPB_INLINE size_t grpc_lookup_v1_HttpKeyBuilder_constant_keys_size(const grpc_lookup_v1_HttpKeyBuilder* msg) {
754
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
755
- const upb_Map* map = upb_Message_GetMap(msg, &field);
778
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
779
+ const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
756
780
  return map ? _upb_Map_Size(map) : 0;
757
781
  }
758
782
  UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_constant_keys_get(const grpc_lookup_v1_HttpKeyBuilder* msg, upb_StringView key, upb_StringView* val) {
759
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
760
- const upb_Map* map = upb_Message_GetMap(msg, &field);
783
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
784
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder__ConstantKeysEntry_msg_init);
785
+ const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
761
786
  if (!map) return false;
762
787
  return _upb_Map_Get(map, &key, 0, val, 0);
763
788
  }
764
789
  UPB_INLINE const grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry* grpc_lookup_v1_HttpKeyBuilder_constant_keys_next(const grpc_lookup_v1_HttpKeyBuilder* msg, size_t* iter) {
765
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
766
- const upb_Map* map = upb_Message_GetMap(msg, &field);
790
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
791
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder__ConstantKeysEntry_msg_init);
792
+ const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
767
793
  if (!map) return NULL;
768
794
  return (const grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry*)_upb_map_next(map, iter);
769
795
  }
796
+ UPB_INLINE const upb_Map* _grpc_lookup_v1_HttpKeyBuilder_constant_keys_upb_map(grpc_lookup_v1_HttpKeyBuilder* msg) {
797
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
798
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder__ConstantKeysEntry_msg_init);
799
+ return upb_Message_GetMap(UPB_UPCAST(msg), &field);
800
+ }
801
+ UPB_INLINE upb_Map* _grpc_lookup_v1_HttpKeyBuilder_constant_keys_mutable_upb_map(grpc_lookup_v1_HttpKeyBuilder* msg, upb_Arena* a) {
802
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
803
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder__ConstantKeysEntry_msg_init);
804
+ return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
805
+ }
770
806
 
771
807
  UPB_INLINE upb_StringView* grpc_lookup_v1_HttpKeyBuilder_mutable_host_patterns(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
772
- upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
773
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
808
+ upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
809
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
774
810
  if (arr) {
775
- if (size) *size = arr->size;
776
- return (upb_StringView*)_upb_array_ptr(arr);
811
+ if (size) *size = arr->UPB_PRIVATE(size);
812
+ return (upb_StringView*)upb_Array_MutableDataPtr(arr);
777
813
  } else {
778
814
  if (size) *size = 0;
779
815
  return NULL;
780
816
  }
781
817
  }
782
818
  UPB_INLINE upb_StringView* grpc_lookup_v1_HttpKeyBuilder_resize_host_patterns(grpc_lookup_v1_HttpKeyBuilder* msg, size_t size, upb_Arena* arena) {
783
- upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
784
- return (upb_StringView*)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
819
+ upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
820
+ return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
821
+ &field, size, arena);
785
822
  }
786
823
  UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_add_host_patterns(grpc_lookup_v1_HttpKeyBuilder* msg, upb_StringView val, upb_Arena* arena) {
787
- upb_MiniTableField field = {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
788
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
789
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
824
+ upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
825
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
826
+ UPB_UPCAST(msg), &field, arena);
827
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
828
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
790
829
  return false;
791
830
  }
792
- _upb_Array_Set(arr, arr->size - 1, &val, sizeof(val));
831
+ UPB_PRIVATE(_upb_Array_Set)
832
+ (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
793
833
  return true;
794
834
  }
795
835
  UPB_INLINE upb_StringView* grpc_lookup_v1_HttpKeyBuilder_mutable_path_patterns(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
796
- upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
797
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
836
+ upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
837
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
798
838
  if (arr) {
799
- if (size) *size = arr->size;
800
- return (upb_StringView*)_upb_array_ptr(arr);
839
+ if (size) *size = arr->UPB_PRIVATE(size);
840
+ return (upb_StringView*)upb_Array_MutableDataPtr(arr);
801
841
  } else {
802
842
  if (size) *size = 0;
803
843
  return NULL;
804
844
  }
805
845
  }
806
846
  UPB_INLINE upb_StringView* grpc_lookup_v1_HttpKeyBuilder_resize_path_patterns(grpc_lookup_v1_HttpKeyBuilder* msg, size_t size, upb_Arena* arena) {
807
- upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
808
- return (upb_StringView*)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
847
+ upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
848
+ return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
849
+ &field, size, arena);
809
850
  }
810
851
  UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_add_path_patterns(grpc_lookup_v1_HttpKeyBuilder* msg, upb_StringView val, upb_Arena* arena) {
811
- upb_MiniTableField field = {2, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
812
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
813
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
852
+ upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
853
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
854
+ UPB_UPCAST(msg), &field, arena);
855
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
856
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
814
857
  return false;
815
858
  }
816
- _upb_Array_Set(arr, arr->size - 1, &val, sizeof(val));
859
+ UPB_PRIVATE(_upb_Array_Set)
860
+ (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
817
861
  return true;
818
862
  }
819
863
  UPB_INLINE grpc_lookup_v1_NameMatcher** grpc_lookup_v1_HttpKeyBuilder_mutable_query_parameters(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
820
- upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
821
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
864
+ upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
865
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
866
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
822
867
  if (arr) {
823
- if (size) *size = arr->size;
824
- return (grpc_lookup_v1_NameMatcher**)_upb_array_ptr(arr);
868
+ if (size) *size = arr->UPB_PRIVATE(size);
869
+ return (grpc_lookup_v1_NameMatcher**)upb_Array_MutableDataPtr(arr);
825
870
  } else {
826
871
  if (size) *size = 0;
827
872
  return NULL;
828
873
  }
829
874
  }
830
875
  UPB_INLINE grpc_lookup_v1_NameMatcher** grpc_lookup_v1_HttpKeyBuilder_resize_query_parameters(grpc_lookup_v1_HttpKeyBuilder* msg, size_t size, upb_Arena* arena) {
831
- upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
832
- return (grpc_lookup_v1_NameMatcher**)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
876
+ upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
877
+ return (grpc_lookup_v1_NameMatcher**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
878
+ &field, size, arena);
833
879
  }
834
880
  UPB_INLINE struct grpc_lookup_v1_NameMatcher* grpc_lookup_v1_HttpKeyBuilder_add_query_parameters(grpc_lookup_v1_HttpKeyBuilder* msg, upb_Arena* arena) {
835
- upb_MiniTableField field = {3, UPB_SIZE(8, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
836
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
837
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
881
+ upb_MiniTableField field = {3, UPB_SIZE(16, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
882
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
883
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
884
+ UPB_UPCAST(msg), &field, arena);
885
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
886
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
838
887
  return NULL;
839
888
  }
840
889
  struct grpc_lookup_v1_NameMatcher* sub = (struct grpc_lookup_v1_NameMatcher*)_upb_Message_New(&grpc__lookup__v1__NameMatcher_msg_init, arena);
841
890
  if (!arr || !sub) return NULL;
842
- _upb_Array_Set(arr, arr->size - 1, &sub, sizeof(sub));
891
+ UPB_PRIVATE(_upb_Array_Set)
892
+ (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
843
893
  return sub;
844
894
  }
845
895
  UPB_INLINE grpc_lookup_v1_NameMatcher** grpc_lookup_v1_HttpKeyBuilder_mutable_headers(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* size) {
846
- upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
847
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
896
+ upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
897
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
898
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
848
899
  if (arr) {
849
- if (size) *size = arr->size;
850
- return (grpc_lookup_v1_NameMatcher**)_upb_array_ptr(arr);
900
+ if (size) *size = arr->UPB_PRIVATE(size);
901
+ return (grpc_lookup_v1_NameMatcher**)upb_Array_MutableDataPtr(arr);
851
902
  } else {
852
903
  if (size) *size = 0;
853
904
  return NULL;
854
905
  }
855
906
  }
856
907
  UPB_INLINE grpc_lookup_v1_NameMatcher** grpc_lookup_v1_HttpKeyBuilder_resize_headers(grpc_lookup_v1_HttpKeyBuilder* msg, size_t size, upb_Arena* arena) {
857
- upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
858
- return (grpc_lookup_v1_NameMatcher**)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
908
+ upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
909
+ return (grpc_lookup_v1_NameMatcher**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
910
+ &field, size, arena);
859
911
  }
860
912
  UPB_INLINE struct grpc_lookup_v1_NameMatcher* grpc_lookup_v1_HttpKeyBuilder_add_headers(grpc_lookup_v1_HttpKeyBuilder* msg, upb_Arena* arena) {
861
- upb_MiniTableField field = {4, UPB_SIZE(12, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
862
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
863
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
913
+ upb_MiniTableField field = {4, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
914
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__NameMatcher_msg_init);
915
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
916
+ UPB_UPCAST(msg), &field, arena);
917
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
918
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
864
919
  return NULL;
865
920
  }
866
921
  struct grpc_lookup_v1_NameMatcher* sub = (struct grpc_lookup_v1_NameMatcher*)_upb_Message_New(&grpc__lookup__v1__NameMatcher_msg_init, arena);
867
922
  if (!arr || !sub) return NULL;
868
- _upb_Array_Set(arr, arr->size - 1, &sub, sizeof(sub));
923
+ UPB_PRIVATE(_upb_Array_Set)
924
+ (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
869
925
  return sub;
870
926
  }
871
927
  UPB_INLINE void grpc_lookup_v1_HttpKeyBuilder_constant_keys_clear(grpc_lookup_v1_HttpKeyBuilder* msg) {
872
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
873
- upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
928
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
929
+ upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
874
930
  if (!map) return;
875
931
  _upb_Map_Clear(map);
876
932
  }
877
933
  UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_constant_keys_set(grpc_lookup_v1_HttpKeyBuilder* msg, upb_StringView key, upb_StringView val, upb_Arena* a) {
878
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
879
- upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg, &field, 0, 0, a);
934
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
935
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder__ConstantKeysEntry_msg_init);
936
+ upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
937
+ &field, 0, 0, a);
880
938
  return _upb_Map_Insert(map, &key, 0, &val, 0, a) !=
881
939
  kUpb_MapInsertStatus_OutOfMemory;
882
940
  }
883
941
  UPB_INLINE bool grpc_lookup_v1_HttpKeyBuilder_constant_keys_delete(grpc_lookup_v1_HttpKeyBuilder* msg, upb_StringView key) {
884
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
885
- upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
942
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
943
+ upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
886
944
  if (!map) return false;
887
945
  return _upb_Map_Delete(map, &key, 0, NULL);
888
946
  }
889
947
  UPB_INLINE grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry* grpc_lookup_v1_HttpKeyBuilder_constant_keys_nextmutable(grpc_lookup_v1_HttpKeyBuilder* msg, size_t* iter) {
890
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
891
- upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
948
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
949
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder__ConstantKeysEntry_msg_init);
950
+ upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
892
951
  if (!map) return NULL;
893
952
  return (grpc_lookup_v1_HttpKeyBuilder_ConstantKeysEntry*)_upb_map_next(map, iter);
894
953
  }
@@ -918,7 +977,8 @@ UPB_INLINE grpc_lookup_v1_RouteLookupConfig* grpc_lookup_v1_RouteLookupConfig_ne
918
977
  UPB_INLINE grpc_lookup_v1_RouteLookupConfig* grpc_lookup_v1_RouteLookupConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
919
978
  grpc_lookup_v1_RouteLookupConfig* ret = grpc_lookup_v1_RouteLookupConfig_new(arena);
920
979
  if (!ret) return NULL;
921
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__RouteLookupConfig_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
980
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__RouteLookupConfig_msg_init, NULL, 0, arena) !=
981
+ kUpb_DecodeStatus_Ok) {
922
982
  return NULL;
923
983
  }
924
984
  return ret;
@@ -928,272 +988,285 @@ UPB_INLINE grpc_lookup_v1_RouteLookupConfig* grpc_lookup_v1_RouteLookupConfig_pa
928
988
  int options, upb_Arena* arena) {
929
989
  grpc_lookup_v1_RouteLookupConfig* ret = grpc_lookup_v1_RouteLookupConfig_new(arena);
930
990
  if (!ret) return NULL;
931
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__RouteLookupConfig_msg_init, extreg, options, arena) !=
932
- kUpb_DecodeStatus_Ok) {
991
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__RouteLookupConfig_msg_init, extreg, options,
992
+ arena) != kUpb_DecodeStatus_Ok) {
933
993
  return NULL;
934
994
  }
935
995
  return ret;
936
996
  }
937
997
  UPB_INLINE char* grpc_lookup_v1_RouteLookupConfig_serialize(const grpc_lookup_v1_RouteLookupConfig* msg, upb_Arena* arena, size_t* len) {
938
998
  char* ptr;
939
- (void)upb_Encode(msg, &grpc__lookup__v1__RouteLookupConfig_msg_init, 0, arena, &ptr, len);
999
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__RouteLookupConfig_msg_init, 0, arena, &ptr, len);
940
1000
  return ptr;
941
1001
  }
942
1002
  UPB_INLINE char* grpc_lookup_v1_RouteLookupConfig_serialize_ex(const grpc_lookup_v1_RouteLookupConfig* msg, int options,
943
1003
  upb_Arena* arena, size_t* len) {
944
1004
  char* ptr;
945
- (void)upb_Encode(msg, &grpc__lookup__v1__RouteLookupConfig_msg_init, options, arena, &ptr, len);
1005
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__RouteLookupConfig_msg_init, options, arena, &ptr, len);
946
1006
  return ptr;
947
1007
  }
948
1008
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_http_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg) {
949
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
950
- _upb_Message_ClearNonExtensionField(msg, &field);
1009
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1010
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
951
1011
  }
952
1012
  UPB_INLINE const grpc_lookup_v1_HttpKeyBuilder* const* grpc_lookup_v1_RouteLookupConfig_http_keybuilders(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
953
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
954
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
1013
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1014
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder_msg_init);
1015
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
955
1016
  if (arr) {
956
- if (size) *size = arr->size;
957
- return (const grpc_lookup_v1_HttpKeyBuilder* const*)_upb_array_constptr(arr);
1017
+ if (size) *size = arr->UPB_PRIVATE(size);
1018
+ return (const grpc_lookup_v1_HttpKeyBuilder* const*)upb_Array_DataPtr(arr);
958
1019
  } else {
959
1020
  if (size) *size = 0;
960
1021
  return NULL;
961
1022
  }
962
1023
  }
963
1024
  UPB_INLINE const upb_Array* _grpc_lookup_v1_RouteLookupConfig_http_keybuilders_upb_array(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
964
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
965
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
1025
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1026
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder_msg_init);
1027
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
966
1028
  if (size) {
967
- *size = arr ? arr->size : 0;
1029
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
968
1030
  }
969
1031
  return arr;
970
1032
  }
971
- UPB_INLINE upb_Array* _grpc_lookup_v1_RouteLookupConfig_http_keybuilders_mutable_upb_array(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size, upb_Arena* arena) {
972
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
973
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
974
- (upb_Message*)msg, &field, arena);
1033
+ UPB_INLINE upb_Array* _grpc_lookup_v1_RouteLookupConfig_http_keybuilders_mutable_upb_array(grpc_lookup_v1_RouteLookupConfig* msg, size_t* size, upb_Arena* arena) {
1034
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1035
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder_msg_init);
1036
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1037
+ &field, arena);
975
1038
  if (size) {
976
- *size = arr ? arr->size : 0;
1039
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
977
1040
  }
978
1041
  return arr;
979
1042
  }
980
- UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_has_http_keybuilders(const grpc_lookup_v1_RouteLookupConfig* msg) {
981
- size_t size;
982
- grpc_lookup_v1_RouteLookupConfig_http_keybuilders(msg, &size);
983
- return size != 0;
984
- }
985
1043
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_grpc_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg) {
986
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
987
- _upb_Message_ClearNonExtensionField(msg, &field);
1044
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1045
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
988
1046
  }
989
1047
  UPB_INLINE const grpc_lookup_v1_GrpcKeyBuilder* const* grpc_lookup_v1_RouteLookupConfig_grpc_keybuilders(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
990
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
991
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
1048
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1049
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder_msg_init);
1050
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
992
1051
  if (arr) {
993
- if (size) *size = arr->size;
994
- return (const grpc_lookup_v1_GrpcKeyBuilder* const*)_upb_array_constptr(arr);
1052
+ if (size) *size = arr->UPB_PRIVATE(size);
1053
+ return (const grpc_lookup_v1_GrpcKeyBuilder* const*)upb_Array_DataPtr(arr);
995
1054
  } else {
996
1055
  if (size) *size = 0;
997
1056
  return NULL;
998
1057
  }
999
1058
  }
1000
1059
  UPB_INLINE const upb_Array* _grpc_lookup_v1_RouteLookupConfig_grpc_keybuilders_upb_array(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
1001
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1002
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
1060
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1061
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder_msg_init);
1062
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1003
1063
  if (size) {
1004
- *size = arr ? arr->size : 0;
1064
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
1005
1065
  }
1006
1066
  return arr;
1007
1067
  }
1008
- UPB_INLINE upb_Array* _grpc_lookup_v1_RouteLookupConfig_grpc_keybuilders_mutable_upb_array(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size, upb_Arena* arena) {
1009
- const upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1010
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1011
- (upb_Message*)msg, &field, arena);
1068
+ UPB_INLINE upb_Array* _grpc_lookup_v1_RouteLookupConfig_grpc_keybuilders_mutable_upb_array(grpc_lookup_v1_RouteLookupConfig* msg, size_t* size, upb_Arena* arena) {
1069
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1070
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder_msg_init);
1071
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1072
+ &field, arena);
1012
1073
  if (size) {
1013
- *size = arr ? arr->size : 0;
1074
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
1014
1075
  }
1015
1076
  return arr;
1016
1077
  }
1017
- UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_has_grpc_keybuilders(const grpc_lookup_v1_RouteLookupConfig* msg) {
1018
- size_t size;
1019
- grpc_lookup_v1_RouteLookupConfig_grpc_keybuilders(msg, &size);
1020
- return size != 0;
1021
- }
1022
1078
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_lookup_service(grpc_lookup_v1_RouteLookupConfig* msg) {
1023
- const upb_MiniTableField field = {3, UPB_SIZE(28, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1024
- _upb_Message_ClearNonExtensionField(msg, &field);
1079
+ const upb_MiniTableField field = {3, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1080
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1025
1081
  }
1026
1082
  UPB_INLINE upb_StringView grpc_lookup_v1_RouteLookupConfig_lookup_service(const grpc_lookup_v1_RouteLookupConfig* msg) {
1027
1083
  upb_StringView default_val = upb_StringView_FromString("");
1028
1084
  upb_StringView ret;
1029
- const upb_MiniTableField field = {3, UPB_SIZE(28, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1030
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1085
+ const upb_MiniTableField field = {3, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1086
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1087
+ &default_val, &ret);
1031
1088
  return ret;
1032
1089
  }
1033
1090
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_lookup_service_timeout(grpc_lookup_v1_RouteLookupConfig* msg) {
1034
- const upb_MiniTableField field = {4, UPB_SIZE(12, 40), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1035
- _upb_Message_ClearNonExtensionField(msg, &field);
1091
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1092
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1036
1093
  }
1037
1094
  UPB_INLINE const struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_lookup_service_timeout(const grpc_lookup_v1_RouteLookupConfig* msg) {
1038
1095
  const struct google_protobuf_Duration* default_val = NULL;
1039
1096
  const struct google_protobuf_Duration* ret;
1040
- const upb_MiniTableField field = {4, UPB_SIZE(12, 40), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1041
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1097
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1098
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1099
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1100
+ &default_val, &ret);
1042
1101
  return ret;
1043
1102
  }
1044
1103
  UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_has_lookup_service_timeout(const grpc_lookup_v1_RouteLookupConfig* msg) {
1045
- const upb_MiniTableField field = {4, UPB_SIZE(12, 40), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1046
- return _upb_Message_HasNonExtensionField(msg, &field);
1104
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1105
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1047
1106
  }
1048
1107
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_max_age(grpc_lookup_v1_RouteLookupConfig* msg) {
1049
- const upb_MiniTableField field = {5, UPB_SIZE(16, 48), 2, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1050
- _upb_Message_ClearNonExtensionField(msg, &field);
1108
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1109
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1051
1110
  }
1052
1111
  UPB_INLINE const struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_max_age(const grpc_lookup_v1_RouteLookupConfig* msg) {
1053
1112
  const struct google_protobuf_Duration* default_val = NULL;
1054
1113
  const struct google_protobuf_Duration* ret;
1055
- const upb_MiniTableField field = {5, UPB_SIZE(16, 48), 2, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1056
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1114
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1115
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1116
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1117
+ &default_val, &ret);
1057
1118
  return ret;
1058
1119
  }
1059
1120
  UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_has_max_age(const grpc_lookup_v1_RouteLookupConfig* msg) {
1060
- const upb_MiniTableField field = {5, UPB_SIZE(16, 48), 2, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1061
- return _upb_Message_HasNonExtensionField(msg, &field);
1121
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1122
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1062
1123
  }
1063
1124
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_stale_age(grpc_lookup_v1_RouteLookupConfig* msg) {
1064
- const upb_MiniTableField field = {6, UPB_SIZE(20, 56), 3, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1065
- _upb_Message_ClearNonExtensionField(msg, &field);
1125
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1126
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1066
1127
  }
1067
1128
  UPB_INLINE const struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_stale_age(const grpc_lookup_v1_RouteLookupConfig* msg) {
1068
1129
  const struct google_protobuf_Duration* default_val = NULL;
1069
1130
  const struct google_protobuf_Duration* ret;
1070
- const upb_MiniTableField field = {6, UPB_SIZE(20, 56), 3, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1071
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1131
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1132
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1133
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1134
+ &default_val, &ret);
1072
1135
  return ret;
1073
1136
  }
1074
1137
  UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_has_stale_age(const grpc_lookup_v1_RouteLookupConfig* msg) {
1075
- const upb_MiniTableField field = {6, UPB_SIZE(20, 56), 3, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1076
- return _upb_Message_HasNonExtensionField(msg, &field);
1138
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1139
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1077
1140
  }
1078
1141
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_cache_size_bytes(grpc_lookup_v1_RouteLookupConfig* msg) {
1079
- const upb_MiniTableField field = {7, UPB_SIZE(40, 64), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
1080
- _upb_Message_ClearNonExtensionField(msg, &field);
1142
+ const upb_MiniTableField field = {7, UPB_SIZE(48, 72), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
1143
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1081
1144
  }
1082
1145
  UPB_INLINE int64_t grpc_lookup_v1_RouteLookupConfig_cache_size_bytes(const grpc_lookup_v1_RouteLookupConfig* msg) {
1083
1146
  int64_t default_val = (int64_t)0ll;
1084
1147
  int64_t ret;
1085
- const upb_MiniTableField field = {7, UPB_SIZE(40, 64), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
1086
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1148
+ const upb_MiniTableField field = {7, UPB_SIZE(48, 72), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
1149
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1150
+ &default_val, &ret);
1087
1151
  return ret;
1088
1152
  }
1089
1153
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_valid_targets(grpc_lookup_v1_RouteLookupConfig* msg) {
1090
- const upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1091
- _upb_Message_ClearNonExtensionField(msg, &field);
1154
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1155
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1092
1156
  }
1093
1157
  UPB_INLINE upb_StringView const* grpc_lookup_v1_RouteLookupConfig_valid_targets(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
1094
- const upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1095
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
1158
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1159
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1096
1160
  if (arr) {
1097
- if (size) *size = arr->size;
1098
- return (upb_StringView const*)_upb_array_constptr(arr);
1161
+ if (size) *size = arr->UPB_PRIVATE(size);
1162
+ return (upb_StringView const*)upb_Array_DataPtr(arr);
1099
1163
  } else {
1100
1164
  if (size) *size = 0;
1101
1165
  return NULL;
1102
1166
  }
1103
1167
  }
1104
1168
  UPB_INLINE const upb_Array* _grpc_lookup_v1_RouteLookupConfig_valid_targets_upb_array(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
1105
- const upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1106
- const upb_Array* arr = upb_Message_GetArray(msg, &field);
1169
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1170
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1107
1171
  if (size) {
1108
- *size = arr ? arr->size : 0;
1172
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
1109
1173
  }
1110
1174
  return arr;
1111
1175
  }
1112
- UPB_INLINE upb_Array* _grpc_lookup_v1_RouteLookupConfig_valid_targets_mutable_upb_array(const grpc_lookup_v1_RouteLookupConfig* msg, size_t* size, upb_Arena* arena) {
1113
- const upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1114
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1115
- (upb_Message*)msg, &field, arena);
1176
+ UPB_INLINE upb_Array* _grpc_lookup_v1_RouteLookupConfig_valid_targets_mutable_upb_array(grpc_lookup_v1_RouteLookupConfig* msg, size_t* size, upb_Arena* arena) {
1177
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1178
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1179
+ &field, arena);
1116
1180
  if (size) {
1117
- *size = arr ? arr->size : 0;
1181
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
1118
1182
  }
1119
1183
  return arr;
1120
1184
  }
1121
- UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_has_valid_targets(const grpc_lookup_v1_RouteLookupConfig* msg) {
1122
- size_t size;
1123
- grpc_lookup_v1_RouteLookupConfig_valid_targets(msg, &size);
1124
- return size != 0;
1125
- }
1126
1185
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_clear_default_target(grpc_lookup_v1_RouteLookupConfig* msg) {
1127
- const upb_MiniTableField field = {9, UPB_SIZE(48, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1128
- _upb_Message_ClearNonExtensionField(msg, &field);
1186
+ const upb_MiniTableField field = {9, UPB_SIZE(56, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1187
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1129
1188
  }
1130
1189
  UPB_INLINE upb_StringView grpc_lookup_v1_RouteLookupConfig_default_target(const grpc_lookup_v1_RouteLookupConfig* msg) {
1131
1190
  upb_StringView default_val = upb_StringView_FromString("");
1132
1191
  upb_StringView ret;
1133
- const upb_MiniTableField field = {9, UPB_SIZE(48, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1134
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1192
+ const upb_MiniTableField field = {9, UPB_SIZE(56, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1193
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1194
+ &default_val, &ret);
1135
1195
  return ret;
1136
1196
  }
1137
1197
 
1138
1198
  UPB_INLINE grpc_lookup_v1_HttpKeyBuilder** grpc_lookup_v1_RouteLookupConfig_mutable_http_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
1139
- upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1140
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
1199
+ upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1200
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder_msg_init);
1201
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1141
1202
  if (arr) {
1142
- if (size) *size = arr->size;
1143
- return (grpc_lookup_v1_HttpKeyBuilder**)_upb_array_ptr(arr);
1203
+ if (size) *size = arr->UPB_PRIVATE(size);
1204
+ return (grpc_lookup_v1_HttpKeyBuilder**)upb_Array_MutableDataPtr(arr);
1144
1205
  } else {
1145
1206
  if (size) *size = 0;
1146
1207
  return NULL;
1147
1208
  }
1148
1209
  }
1149
1210
  UPB_INLINE grpc_lookup_v1_HttpKeyBuilder** grpc_lookup_v1_RouteLookupConfig_resize_http_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg, size_t size, upb_Arena* arena) {
1150
- upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1151
- return (grpc_lookup_v1_HttpKeyBuilder**)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
1211
+ upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1212
+ return (grpc_lookup_v1_HttpKeyBuilder**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1213
+ &field, size, arena);
1152
1214
  }
1153
1215
  UPB_INLINE struct grpc_lookup_v1_HttpKeyBuilder* grpc_lookup_v1_RouteLookupConfig_add_http_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg, upb_Arena* arena) {
1154
- upb_MiniTableField field = {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1155
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
1156
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
1216
+ upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1217
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__HttpKeyBuilder_msg_init);
1218
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1219
+ UPB_UPCAST(msg), &field, arena);
1220
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
1221
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
1157
1222
  return NULL;
1158
1223
  }
1159
1224
  struct grpc_lookup_v1_HttpKeyBuilder* sub = (struct grpc_lookup_v1_HttpKeyBuilder*)_upb_Message_New(&grpc__lookup__v1__HttpKeyBuilder_msg_init, arena);
1160
1225
  if (!arr || !sub) return NULL;
1161
- _upb_Array_Set(arr, arr->size - 1, &sub, sizeof(sub));
1226
+ UPB_PRIVATE(_upb_Array_Set)
1227
+ (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
1162
1228
  return sub;
1163
1229
  }
1164
1230
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder** grpc_lookup_v1_RouteLookupConfig_mutable_grpc_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
1165
- upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1166
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
1231
+ upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1232
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder_msg_init);
1233
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1167
1234
  if (arr) {
1168
- if (size) *size = arr->size;
1169
- return (grpc_lookup_v1_GrpcKeyBuilder**)_upb_array_ptr(arr);
1235
+ if (size) *size = arr->UPB_PRIVATE(size);
1236
+ return (grpc_lookup_v1_GrpcKeyBuilder**)upb_Array_MutableDataPtr(arr);
1170
1237
  } else {
1171
1238
  if (size) *size = 0;
1172
1239
  return NULL;
1173
1240
  }
1174
1241
  }
1175
1242
  UPB_INLINE grpc_lookup_v1_GrpcKeyBuilder** grpc_lookup_v1_RouteLookupConfig_resize_grpc_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg, size_t size, upb_Arena* arena) {
1176
- upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1177
- return (grpc_lookup_v1_GrpcKeyBuilder**)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
1243
+ upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1244
+ return (grpc_lookup_v1_GrpcKeyBuilder**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1245
+ &field, size, arena);
1178
1246
  }
1179
1247
  UPB_INLINE struct grpc_lookup_v1_GrpcKeyBuilder* grpc_lookup_v1_RouteLookupConfig_add_grpc_keybuilders(grpc_lookup_v1_RouteLookupConfig* msg, upb_Arena* arena) {
1180
- upb_MiniTableField field = {2, UPB_SIZE(8, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1181
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
1182
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
1248
+ upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1249
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__GrpcKeyBuilder_msg_init);
1250
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1251
+ UPB_UPCAST(msg), &field, arena);
1252
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
1253
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
1183
1254
  return NULL;
1184
1255
  }
1185
1256
  struct grpc_lookup_v1_GrpcKeyBuilder* sub = (struct grpc_lookup_v1_GrpcKeyBuilder*)_upb_Message_New(&grpc__lookup__v1__GrpcKeyBuilder_msg_init, arena);
1186
1257
  if (!arr || !sub) return NULL;
1187
- _upb_Array_Set(arr, arr->size - 1, &sub, sizeof(sub));
1258
+ UPB_PRIVATE(_upb_Array_Set)
1259
+ (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
1188
1260
  return sub;
1189
1261
  }
1190
1262
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_set_lookup_service(grpc_lookup_v1_RouteLookupConfig *msg, upb_StringView value) {
1191
- const upb_MiniTableField field = {3, UPB_SIZE(28, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1192
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1263
+ const upb_MiniTableField field = {3, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1264
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1193
1265
  }
1194
1266
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_set_lookup_service_timeout(grpc_lookup_v1_RouteLookupConfig *msg, struct google_protobuf_Duration* value) {
1195
- const upb_MiniTableField field = {4, UPB_SIZE(12, 40), 1, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1196
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1267
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 64, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1268
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1269
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1197
1270
  }
1198
1271
  UPB_INLINE struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_mutable_lookup_service_timeout(grpc_lookup_v1_RouteLookupConfig* msg, upb_Arena* arena) {
1199
1272
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)grpc_lookup_v1_RouteLookupConfig_lookup_service_timeout(msg);
@@ -1204,8 +1277,9 @@ UPB_INLINE struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_mut
1204
1277
  return sub;
1205
1278
  }
1206
1279
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_set_max_age(grpc_lookup_v1_RouteLookupConfig *msg, struct google_protobuf_Duration* value) {
1207
- const upb_MiniTableField field = {5, UPB_SIZE(16, 48), 2, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1208
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1280
+ const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1281
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1282
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1209
1283
  }
1210
1284
  UPB_INLINE struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_mutable_max_age(grpc_lookup_v1_RouteLookupConfig* msg, upb_Arena* arena) {
1211
1285
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)grpc_lookup_v1_RouteLookupConfig_max_age(msg);
@@ -1216,8 +1290,9 @@ UPB_INLINE struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_mut
1216
1290
  return sub;
1217
1291
  }
1218
1292
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_set_stale_age(grpc_lookup_v1_RouteLookupConfig *msg, struct google_protobuf_Duration* value) {
1219
- const upb_MiniTableField field = {6, UPB_SIZE(20, 56), 3, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1220
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1293
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1294
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1295
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1221
1296
  }
1222
1297
  UPB_INLINE struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_mutable_stale_age(grpc_lookup_v1_RouteLookupConfig* msg, upb_Arena* arena) {
1223
1298
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)grpc_lookup_v1_RouteLookupConfig_stale_age(msg);
@@ -1228,36 +1303,40 @@ UPB_INLINE struct google_protobuf_Duration* grpc_lookup_v1_RouteLookupConfig_mut
1228
1303
  return sub;
1229
1304
  }
1230
1305
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_set_cache_size_bytes(grpc_lookup_v1_RouteLookupConfig *msg, int64_t value) {
1231
- const upb_MiniTableField field = {7, UPB_SIZE(40, 64), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
1232
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1306
+ const upb_MiniTableField field = {7, UPB_SIZE(48, 72), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
1307
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1233
1308
  }
1234
1309
  UPB_INLINE upb_StringView* grpc_lookup_v1_RouteLookupConfig_mutable_valid_targets(grpc_lookup_v1_RouteLookupConfig* msg, size_t* size) {
1235
- upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1236
- upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
1310
+ upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1311
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1237
1312
  if (arr) {
1238
- if (size) *size = arr->size;
1239
- return (upb_StringView*)_upb_array_ptr(arr);
1313
+ if (size) *size = arr->UPB_PRIVATE(size);
1314
+ return (upb_StringView*)upb_Array_MutableDataPtr(arr);
1240
1315
  } else {
1241
1316
  if (size) *size = 0;
1242
1317
  return NULL;
1243
1318
  }
1244
1319
  }
1245
1320
  UPB_INLINE upb_StringView* grpc_lookup_v1_RouteLookupConfig_resize_valid_targets(grpc_lookup_v1_RouteLookupConfig* msg, size_t size, upb_Arena* arena) {
1246
- upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1247
- return (upb_StringView*)upb_Message_ResizeArrayUninitialized(msg, &field, size, arena);
1321
+ upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1322
+ return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1323
+ &field, size, arena);
1248
1324
  }
1249
1325
  UPB_INLINE bool grpc_lookup_v1_RouteLookupConfig_add_valid_targets(grpc_lookup_v1_RouteLookupConfig* msg, upb_StringView val, upb_Arena* arena) {
1250
- upb_MiniTableField field = {8, UPB_SIZE(24, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1251
- upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, &field, arena);
1252
- if (!arr || !_upb_Array_ResizeUninitialized(arr, arr->size + 1, arena)) {
1326
+ upb_MiniTableField field = {8, UPB_SIZE(32, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1327
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1328
+ UPB_UPCAST(msg), &field, arena);
1329
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
1330
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
1253
1331
  return false;
1254
1332
  }
1255
- _upb_Array_Set(arr, arr->size - 1, &val, sizeof(val));
1333
+ UPB_PRIVATE(_upb_Array_Set)
1334
+ (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
1256
1335
  return true;
1257
1336
  }
1258
1337
  UPB_INLINE void grpc_lookup_v1_RouteLookupConfig_set_default_target(grpc_lookup_v1_RouteLookupConfig *msg, upb_StringView value) {
1259
- const upb_MiniTableField field = {9, UPB_SIZE(48, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1260
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1338
+ const upb_MiniTableField field = {9, UPB_SIZE(56, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1339
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1261
1340
  }
1262
1341
 
1263
1342
  /* grpc.lookup.v1.RouteLookupClusterSpecifier */
@@ -1268,7 +1347,8 @@ UPB_INLINE grpc_lookup_v1_RouteLookupClusterSpecifier* grpc_lookup_v1_RouteLooku
1268
1347
  UPB_INLINE grpc_lookup_v1_RouteLookupClusterSpecifier* grpc_lookup_v1_RouteLookupClusterSpecifier_parse(const char* buf, size_t size, upb_Arena* arena) {
1269
1348
  grpc_lookup_v1_RouteLookupClusterSpecifier* ret = grpc_lookup_v1_RouteLookupClusterSpecifier_new(arena);
1270
1349
  if (!ret) return NULL;
1271
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
1350
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, NULL, 0, arena) !=
1351
+ kUpb_DecodeStatus_Ok) {
1272
1352
  return NULL;
1273
1353
  }
1274
1354
  return ret;
@@ -1278,42 +1358,45 @@ UPB_INLINE grpc_lookup_v1_RouteLookupClusterSpecifier* grpc_lookup_v1_RouteLooku
1278
1358
  int options, upb_Arena* arena) {
1279
1359
  grpc_lookup_v1_RouteLookupClusterSpecifier* ret = grpc_lookup_v1_RouteLookupClusterSpecifier_new(arena);
1280
1360
  if (!ret) return NULL;
1281
- if (upb_Decode(buf, size, ret, &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, extreg, options, arena) !=
1282
- kUpb_DecodeStatus_Ok) {
1361
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, extreg, options,
1362
+ arena) != kUpb_DecodeStatus_Ok) {
1283
1363
  return NULL;
1284
1364
  }
1285
1365
  return ret;
1286
1366
  }
1287
1367
  UPB_INLINE char* grpc_lookup_v1_RouteLookupClusterSpecifier_serialize(const grpc_lookup_v1_RouteLookupClusterSpecifier* msg, upb_Arena* arena, size_t* len) {
1288
1368
  char* ptr;
1289
- (void)upb_Encode(msg, &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, 0, arena, &ptr, len);
1369
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, 0, arena, &ptr, len);
1290
1370
  return ptr;
1291
1371
  }
1292
1372
  UPB_INLINE char* grpc_lookup_v1_RouteLookupClusterSpecifier_serialize_ex(const grpc_lookup_v1_RouteLookupClusterSpecifier* msg, int options,
1293
1373
  upb_Arena* arena, size_t* len) {
1294
1374
  char* ptr;
1295
- (void)upb_Encode(msg, &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, options, arena, &ptr, len);
1375
+ (void)upb_Encode(UPB_UPCAST(msg), &grpc__lookup__v1__RouteLookupClusterSpecifier_msg_init, options, arena, &ptr, len);
1296
1376
  return ptr;
1297
1377
  }
1298
1378
  UPB_INLINE void grpc_lookup_v1_RouteLookupClusterSpecifier_clear_route_lookup_config(grpc_lookup_v1_RouteLookupClusterSpecifier* msg) {
1299
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1300
- _upb_Message_ClearNonExtensionField(msg, &field);
1379
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1380
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1301
1381
  }
1302
1382
  UPB_INLINE const grpc_lookup_v1_RouteLookupConfig* grpc_lookup_v1_RouteLookupClusterSpecifier_route_lookup_config(const grpc_lookup_v1_RouteLookupClusterSpecifier* msg) {
1303
1383
  const grpc_lookup_v1_RouteLookupConfig* default_val = NULL;
1304
1384
  const grpc_lookup_v1_RouteLookupConfig* ret;
1305
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1306
- _upb_Message_GetNonExtensionField(msg, &field, &default_val, &ret);
1385
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1386
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__RouteLookupConfig_msg_init);
1387
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1388
+ &default_val, &ret);
1307
1389
  return ret;
1308
1390
  }
1309
1391
  UPB_INLINE bool grpc_lookup_v1_RouteLookupClusterSpecifier_has_route_lookup_config(const grpc_lookup_v1_RouteLookupClusterSpecifier* msg) {
1310
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1311
- return _upb_Message_HasNonExtensionField(msg, &field);
1392
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1393
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1312
1394
  }
1313
1395
 
1314
1396
  UPB_INLINE void grpc_lookup_v1_RouteLookupClusterSpecifier_set_route_lookup_config(grpc_lookup_v1_RouteLookupClusterSpecifier *msg, grpc_lookup_v1_RouteLookupConfig* value) {
1315
- const upb_MiniTableField field = {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1316
- _upb_Message_SetNonExtensionField(msg, &field, &value);
1397
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1398
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&grpc__lookup__v1__RouteLookupConfig_msg_init);
1399
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1317
1400
  }
1318
1401
  UPB_INLINE struct grpc_lookup_v1_RouteLookupConfig* grpc_lookup_v1_RouteLookupClusterSpecifier_mutable_route_lookup_config(grpc_lookup_v1_RouteLookupClusterSpecifier* msg, upb_Arena* arena) {
1319
1402
  struct grpc_lookup_v1_RouteLookupConfig* sub = (struct grpc_lookup_v1_RouteLookupConfig*)grpc_lookup_v1_RouteLookupClusterSpecifier_route_lookup_config(msg);
@@ -1330,4 +1413,4 @@ UPB_INLINE struct grpc_lookup_v1_RouteLookupConfig* grpc_lookup_v1_RouteLookupCl
1330
1413
 
1331
1414
  #include "upb/port/undef.inc"
1332
1415
 
1333
- #endif /* SRC_PROTO_GRPC_LOOKUP_V1_RLS_CONFIG_PROTO_UPB_H_ */
1416
+ #endif /* SRC_PROTO_GRPC_LOOKUP_V1_RLS_CONFIG_PROTO_UPB_H__UPB_H_ */