grpc 1.64.0 → 1.68.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +127 -99
- data/include/grpc/compression.h +1 -2
- data/include/grpc/credentials.h +2 -3
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/endpoint_config.h +2 -2
- data/include/grpc/event_engine/event_engine.h +33 -12
- data/include/grpc/event_engine/extensible.h +5 -2
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +3 -4
- data/include/grpc/event_engine/memory_request.h +19 -2
- data/include/grpc/event_engine/slice.h +3 -5
- data/include/grpc/event_engine/slice_buffer.h +6 -8
- data/include/grpc/grpc.h +1 -2
- data/include/grpc/grpc_audit_logging.h +3 -3
- data/include/grpc/grpc_crl_provider.h +5 -5
- data/include/grpc/grpc_posix.h +1 -2
- data/include/grpc/grpc_security.h +1 -2
- data/include/grpc/impl/call.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +8 -4
- data/include/grpc/impl/grpc_types.h +1 -2
- data/include/grpc/impl/slice_type.h +1 -2
- data/include/grpc/module.modulemap +1 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/support/alloc.h +1 -2
- data/include/grpc/support/json.h +1 -2
- data/include/grpc/support/log.h +37 -64
- data/include/grpc/support/metrics.h +21 -6
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/sync_generic.h +2 -4
- data/include/grpc/support/sync_posix.h +1 -2
- data/include/grpc/support/time.h +1 -2
- data/src/core/channelz/channel_trace.cc +6 -7
- data/src/core/channelz/channel_trace.h +6 -8
- data/src/core/channelz/channelz.cc +8 -10
- data/src/core/channelz/channelz.h +15 -17
- data/src/core/channelz/channelz_registry.cc +10 -11
- data/src/core/channelz/channelz_registry.h +4 -5
- data/src/core/client_channel/backup_poller.cc +24 -15
- data/src/core/client_channel/client_channel.cc +1426 -0
- data/src/core/client_channel/client_channel.h +245 -0
- data/src/core/client_channel/client_channel_factory.cc +2 -2
- data/src/core/client_channel/client_channel_factory.h +1 -2
- data/src/core/client_channel/client_channel_filter.cc +348 -861
- data/src/core/client_channel/client_channel_filter.h +23 -76
- data/src/core/client_channel/client_channel_internal.h +23 -9
- data/src/core/client_channel/client_channel_plugin.cc +2 -17
- data/src/core/client_channel/client_channel_service_config.cc +2 -3
- data/src/core/client_channel/client_channel_service_config.h +6 -8
- data/src/core/client_channel/config_selector.h +21 -22
- data/src/core/client_channel/connector.h +3 -3
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +16 -14
- data/src/core/client_channel/dynamic_filters.h +9 -10
- data/src/core/client_channel/global_subchannel_pool.cc +2 -2
- data/src/core/client_channel/global_subchannel_pool.h +2 -3
- data/src/core/client_channel/lb_metadata.cc +120 -0
- data/src/core/client_channel/lb_metadata.h +55 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
- data/src/core/client_channel/load_balanced_call_destination.h +48 -0
- data/src/core/client_channel/local_subchannel_pool.cc +2 -5
- data/src/core/client_channel/local_subchannel_pool.h +1 -1
- data/src/core/client_channel/retry_filter.cc +8 -17
- data/src/core/client_channel/retry_filter.h +6 -15
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +206 -318
- data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -14
- data/src/core/client_channel/retry_service_config.cc +9 -12
- data/src/core/client_channel/retry_service_config.h +5 -7
- data/src/core/client_channel/retry_throttle.cc +3 -4
- data/src/core/client_channel/retry_throttle.h +4 -7
- data/src/core/client_channel/subchannel.cc +282 -164
- data/src/core/client_channel/subchannel.h +48 -40
- data/src/core/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
- data/src/core/client_channel/subchannel_pool_interface.h +4 -7
- data/src/core/client_channel/subchannel_stream_client.cc +43 -59
- data/src/core/client_channel/subchannel_stream_client.h +10 -14
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +22 -27
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +3 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
- data/src/core/ext/filters/census/grpc_context.cc +7 -10
- data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +34 -45
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -8
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +16 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +4 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +6 -9
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +14 -8
- data/src/core/ext/filters/http/client/http_client_filter.h +3 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +8 -7
- data/src/core/ext/filters/http/client_authority_filter.h +3 -1
- data/src/core/ext/filters/http/http_filters_plugin.cc +0 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +48 -44
- data/src/core/ext/filters/http/message_compress/compression_filter.h +8 -4
- data/src/core/ext/filters/http/server/http_server_filter.cc +16 -13
- data/src/core/ext/filters/http/server/http_server_filter.h +3 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +32 -32
- data/src/core/ext/filters/message_size/message_size_filter.h +11 -9
- data/src/core/ext/filters/rbac/rbac_filter.cc +8 -11
- data/src/core/ext/filters/rbac/rbac_filter.h +3 -2
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -10
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +13 -15
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +5 -4
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +5 -7
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -4
- data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +71 -101
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -11
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +426 -314
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +35 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +19 -32
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +562 -516
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +15 -16
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +2 -3
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +6 -11
- data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -7
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/frame.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +7 -13
- data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -6
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -19
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -18
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +20 -20
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +10 -7
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +14 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +16 -12
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +1 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -7
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +56 -51
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +6 -6
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +41 -16
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +29 -10
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/internal.h +46 -79
- data/src/core/ext/transport/chttp2/transport/parsing.cc +101 -109
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +3 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -18
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -8
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +13 -16
- data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.h +1 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +145 -120
- data/src/core/ext/transport/inproc/inproc_transport.cc +149 -67
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -3
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +120 -121
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +0 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +43 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +36 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +56 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +33 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +47 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +39 -17
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +184 -51
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +143 -65
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +21 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +8 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +16 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +126 -79
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +37 -25
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +13 -3
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +88 -31
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +103 -37
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +541 -251
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +247 -131
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +26 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +38 -11
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +28 -14
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +496 -138
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +247 -122
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +28 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +168 -24
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -26
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +124 -32
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +111 -49
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +64 -24
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +55 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +8 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +752 -69
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +304 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +64 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +52 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +8 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +198 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +111 -44
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +193 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +90 -48
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +10 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +228 -73
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +139 -67
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +13 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +20 -8
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +8 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +39 -8
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +31 -13
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +103 -31
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +62 -30
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +278 -34
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +78 -24
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +139 -44
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +85 -42
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +88 -26
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +61 -31
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +90 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +23 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +11 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +48 -19
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +52 -18
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +65 -18
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +64 -22
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +156 -35
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +95 -47
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +13 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +58 -10
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +705 -230
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +454 -217
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +60 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +17 -7
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -6
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +97 -32
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +86 -36
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +115 -13
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +19 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +17 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +14 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +16 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +11 -8
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +213 -99
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +115 -48
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +21 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +31 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +39 -19
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +25 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +53 -10
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +27 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +26 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +10 -5
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +324 -131
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +189 -102
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +23 -1
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +20 -7
- 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 +14 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +28 -11
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +35 -13
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +3 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +19 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +167 -28
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +78 -32
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +22 -9
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +24 -10
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +109 -36
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +67 -37
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +55 -17
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +40 -22
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +119 -37
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +95 -37
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +15 -5
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +62 -21
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +42 -20
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +13 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +24 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +7 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +10 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +13 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +21 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +48 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +28 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +27 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -11
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +21 -7
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +38 -8
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +27 -14
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +31 -9
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +18 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +3 -2
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +12 -2
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +132 -33
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +108 -43
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +15 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +522 -66
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +191 -57
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +20 -1
- data/src/core/ext/upb-gen/google/api/http.upb.h +26 -13
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +20 -6
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +9 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +579 -178
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +292 -131
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +2 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +29 -7
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +28 -10
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +11 -10
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +9 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +18 -11
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +23 -5
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +16 -7
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +95 -36
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +79 -29
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +10 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +4 -3
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +44 -19
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +53 -15
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +12 -5
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +17 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +69 -16
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +56 -18
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +56 -10
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +26 -7
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +3 -2
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +13 -3
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/validate/validate.upb.h +259 -167
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +178 -80
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +25 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +56 -10
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +26 -7
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +14 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +3 -2
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +37 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +29 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +13 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +3 -2
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +13 -6
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +8 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +9 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +18 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +8 -5
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +26 -7
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +23 -5
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +5 -2
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +10 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +2 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +16 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +78 -19
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +75 -33
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +41 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +42 -16
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +8 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +15 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +14 -5
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +8 -7
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +27 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +12 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +283 -257
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -1
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +13 -12
- data/src/core/handshaker/handshaker.cc +127 -159
- data/src/core/handshaker/handshaker.h +58 -52
- data/src/core/handshaker/handshaker_registry.cc +1 -2
- data/src/core/handshaker/handshaker_registry.h +2 -2
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +113 -159
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +30 -37
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +2 -3
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
- data/src/core/handshaker/proxy_mapper.h +2 -3
- data/src/core/handshaker/proxy_mapper_registry.cc +2 -2
- data/src/core/handshaker/proxy_mapper_registry.h +2 -3
- data/src/core/handshaker/security/secure_endpoint.cc +95 -82
- data/src/core/handshaker/security/secure_endpoint.h +6 -7
- data/src/core/handshaker/security/security_handshaker.cc +166 -220
- data/src/core/handshaker/security/security_handshaker.h +2 -3
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +47 -61
- data/src/core/lib/address_utils/parse_address.cc +30 -43
- data/src/core/lib/address_utils/parse_address.h +2 -4
- data/src/core/lib/address_utils/sockaddr_utils.cc +9 -12
- data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
- data/src/core/lib/channel/call_finalization.h +2 -2
- data/src/core/lib/channel/channel_args.cc +17 -23
- data/src/core/lib/channel/channel_args.h +34 -20
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +3 -3
- data/src/core/lib/channel/channel_stack.cc +13 -76
- data/src/core/lib/channel/channel_stack.h +26 -61
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +3 -9
- data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -150
- data/src/core/lib/channel/channel_stack_builder_impl.h +14 -4
- data/src/core/lib/channel/connected_channel.cc +46 -688
- data/src/core/lib/channel/promise_based_filter.cc +180 -250
- data/src/core/lib/channel/promise_based_filter.h +173 -509
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +3 -3
- data/src/core/lib/compression/compression.cc +7 -9
- data/src/core/lib/compression/compression_internal.cc +5 -8
- data/src/core/lib/compression/compression_internal.h +3 -5
- data/src/core/lib/compression/message_compress.cc +9 -12
- data/src/core/lib/config/config_vars.cc +15 -18
- data/src/core/lib/config/config_vars.h +10 -13
- data/src/core/lib/config/config_vars_non_generated.cc +2 -2
- data/src/core/lib/config/core_configuration.cc +2 -3
- data/src/core/lib/config/core_configuration.h +2 -4
- data/src/core/lib/config/load_config.cc +2 -4
- data/src/core/lib/config/load_config.h +1 -2
- data/src/core/lib/debug/trace.cc +47 -65
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +242 -0
- data/src/core/lib/debug/trace_flags.h +131 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +151 -75
- data/src/core/lib/event_engine/ares_resolver.h +13 -20
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +13 -16
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +44 -31
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +19 -26
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -4
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +2 -3
- data/src/core/lib/event_engine/common_closures.h +3 -3
- data/src/core/lib/event_engine/default_event_engine.cc +12 -14
- data/src/core/lib/event_engine/default_event_engine.h +3 -3
- data/src/core/lib/event_engine/default_event_engine_factory.cc +2 -2
- data/src/core/lib/event_engine/default_event_engine_factory.h +2 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -4
- data/src/core/lib/event_engine/event_engine_context.h +4 -2
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +1 -2
- data/src/core/lib/event_engine/extensions/supports_fd.h +27 -3
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +6 -8
- data/src/core/lib/event_engine/forkable.h +2 -14
- data/src/core/lib/event_engine/grpc_polled_fd.h +3 -4
- data/src/core/lib/event_engine/handle_containers.h +2 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +3 -4
- data/src/core/lib/event_engine/poller.h +2 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +21 -23
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +8 -9
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +13 -17
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -5
- data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +4 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +4 -4
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +1 -2
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +5 -7
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -3
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -3
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +73 -79
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +11 -12
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +74 -55
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +18 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +23 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +14 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +22 -28
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +44 -38
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
- data/src/core/lib/event_engine/posix_engine/timer.cc +5 -5
- data/src/core/lib/event_engine/posix_engine/timer.h +5 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +12 -21
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +5 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +6 -8
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +3 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +4 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
- data/src/core/lib/event_engine/query_extensions.h +2 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +3 -5
- data/src/core/lib/event_engine/resolved_address.cc +5 -5
- data/src/core/lib/event_engine/shim.cc +1 -1
- data/src/core/lib/event_engine/slice.cc +3 -6
- data/src/core/lib/event_engine/slice_buffer.cc +1 -2
- data/src/core/lib/event_engine/tcp_socket_utils.cc +9 -12
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -3
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -7
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -3
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +39 -46
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +10 -15
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +9 -8
- data/src/core/lib/event_engine/time_util.cc +2 -2
- data/src/core/lib/event_engine/time_util.h +1 -2
- data/src/core/lib/event_engine/utils.cc +19 -5
- data/src/core/lib/event_engine/utils.h +10 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +125 -100
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +14 -14
- data/src/core/lib/event_engine/windows/iocp.h +2 -3
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
- data/src/core/lib/event_engine/windows/win_socket.cc +42 -33
- data/src/core/lib/event_engine/windows/win_socket.h +8 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +26 -27
- data/src/core/lib/event_engine/windows/windows_engine.cc +242 -134
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +22 -37
- data/src/core/lib/event_engine/windows/windows_listener.h +4 -5
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +3 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +2 -3
- data/src/core/lib/experiments/config.cc +54 -27
- data/src/core/lib/experiments/config.h +56 -3
- data/src/core/lib/experiments/experiments.cc +159 -293
- data/src/core/lib/experiments/experiments.h +84 -124
- data/src/core/lib/iomgr/buffer_list.cc +5 -5
- data/src/core/lib/iomgr/buffer_list.h +2 -3
- data/src/core/lib/iomgr/call_combiner.cc +39 -66
- data/src/core/lib/iomgr/call_combiner.h +12 -16
- data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +12 -19
- data/src/core/lib/iomgr/combiner.cc +33 -48
- data/src/core/lib/iomgr/combiner.h +1 -4
- data/src/core/lib/iomgr/endpoint.cc +0 -6
- data/src/core/lib/iomgr/endpoint.h +3 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +40 -73
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +3 -6
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +6 -8
- data/src/core/lib/iomgr/error.cc +22 -32
- data/src/core/lib/iomgr/error.h +7 -10
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +15 -23
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +67 -113
- data/src/core/lib/iomgr/ev_poll_posix.cc +53 -53
- data/src/core/lib/iomgr/ev_posix.cc +66 -57
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +10 -13
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +33 -51
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +9 -13
- data/src/core/lib/iomgr/exec_ctx.cc +10 -14
- data/src/core/lib/iomgr/exec_ctx.h +33 -25
- data/src/core/lib/iomgr/executor.cc +55 -53
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/fork_posix.cc +11 -15
- data/src/core/lib/iomgr/fork_windows.cc +3 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +4 -4
- data/src/core/lib/iomgr/iocp_windows.cc +8 -10
- data/src/core/lib/iomgr/iomgr.cc +17 -23
- data/src/core/lib/iomgr/iomgr.h +1 -2
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +1 -2
- data/src/core/lib/iomgr/iomgr_windows.cc +1 -4
- data/src/core/lib/iomgr/lockfree_event.cc +10 -20
- data/src/core/lib/iomgr/polling_entity.cc +13 -7
- data/src/core/lib/iomgr/pollset.h +0 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +3 -5
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
- data/src/core/lib/iomgr/resolved_address.h +1 -2
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.cc +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +1 -2
- data/src/core/lib/iomgr/socket_utils.h +1 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +43 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +4 -7
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +7 -11
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +17 -30
- data/src/core/lib/iomgr/tcp_client_windows.cc +5 -10
- data/src/core/lib/iomgr/tcp_posix.cc +85 -155
- data/src/core/lib/iomgr/tcp_posix.h +0 -2
- data/src/core/lib/iomgr/tcp_server.h +2 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +40 -58
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -11
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -11
- data/src/core/lib/iomgr/tcp_server_windows.cc +17 -25
- data/src/core/lib/iomgr/tcp_windows.cc +32 -62
- data/src/core/lib/iomgr/timer.h +2 -2
- data/src/core/lib/iomgr/timer_generic.cc +71 -104
- data/src/core/lib/iomgr/timer_heap.cc +2 -3
- data/src/core/lib/iomgr/timer_manager.cc +25 -43
- data/src/core/lib/iomgr/timer_manager.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +4 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -4
- data/src/core/lib/iomgr/vsock.cc +3 -6
- data/src/core/lib/iomgr/vsock.h +3 -4
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +5 -6
- data/src/core/lib/promise/activity.cc +2 -4
- data/src/core/lib/promise/activity.h +48 -17
- data/src/core/lib/promise/all_ok.h +17 -11
- data/src/core/lib/promise/arena_promise.h +2 -4
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +19 -10
- data/src/core/lib/promise/detail/basic_seq.h +2 -3
- data/src/core/lib/promise/detail/join_state.h +556 -762
- data/src/core/lib/promise/detail/promise_factory.h +46 -30
- data/src/core/lib/promise/detail/promise_like.h +29 -14
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -15
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
- data/src/core/lib/promise/for_each.h +34 -37
- data/src/core/lib/promise/if.h +23 -19
- data/src/core/lib/promise/interceptor_list.h +21 -35
- data/src/core/lib/promise/latch.h +19 -34
- data/src/core/lib/promise/loop.h +16 -12
- data/src/core/lib/promise/map.h +26 -9
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +297 -147
- data/src/core/lib/promise/party.h +139 -361
- data/src/core/lib/promise/pipe.h +21 -44
- data/src/core/lib/promise/poll.h +102 -38
- data/src/core/lib/promise/prioritized_race.h +2 -2
- data/src/core/lib/promise/promise.h +14 -8
- data/src/core/lib/promise/race.h +12 -7
- data/src/core/lib/promise/seq.h +55 -39
- data/src/core/lib/promise/sleep.cc +3 -3
- data/src/core/lib/promise/sleep.h +4 -5
- data/src/core/lib/promise/status_flag.h +148 -49
- data/src/core/lib/promise/try_join.h +37 -21
- data/src/core/lib/promise/try_seq.h +86 -49
- data/src/core/lib/resource_quota/api.cc +4 -6
- data/src/core/lib/resource_quota/api.h +1 -2
- data/src/core/lib/resource_quota/arena.cc +64 -86
- data/src/core/lib/resource_quota/arena.h +143 -215
- data/src/core/lib/resource_quota/connection_quota.cc +2 -3
- data/src/core/lib/resource_quota/connection_quota.h +5 -6
- data/src/core/lib/resource_quota/memory_quota.cc +28 -40
- data/src/core/lib/resource_quota/memory_quota.h +20 -18
- data/src/core/lib/resource_quota/periodic_update.cc +4 -4
- data/src/core/lib/resource_quota/periodic_update.h +2 -4
- data/src/core/lib/resource_quota/resource_quota.h +8 -9
- data/src/core/lib/resource_quota/thread_quota.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.h +5 -6
- data/src/core/lib/security/authorization/audit_logging.cc +5 -7
- data/src/core/lib/security/authorization/audit_logging.h +5 -6
- data/src/core/lib/security/authorization/authorization_engine.h +3 -3
- data/src/core/lib/security/authorization/authorization_policy_provider.h +4 -5
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -2
- data/src/core/lib/security/authorization/evaluate_args.cc +10 -14
- data/src/core/lib/security/authorization/evaluate_args.h +3 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +22 -30
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -3
- data/src/core/lib/security/authorization/matchers.cc +5 -7
- data/src/core/lib/security/authorization/matchers.h +2 -4
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +3 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +4 -5
- data/src/core/lib/security/authorization/stdout_logger.h +4 -4
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -9
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -5
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
- data/src/core/lib/security/context/security_context.cc +48 -48
- data/src/core/lib/security/context/security_context.h +39 -18
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
- data/src/core/lib/security/credentials/alts/alts_credentials.h +9 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -4
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +3 -3
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -7
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +7 -8
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +10 -14
- data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -10
- data/src/core/lib/security/credentials/credentials.cc +18 -19
- data/src/core/lib/security/credentials/credentials.h +12 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +335 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +60 -48
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +408 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +128 -60
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -52
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +32 -11
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +102 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +22 -24
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +6 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +55 -73
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -10
- data/src/core/lib/security/credentials/iam/iam_credentials.h +8 -7
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +25 -29
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +22 -29
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +10 -10
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +67 -74
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
- data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +195 -296
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +50 -73
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -33
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +12 -14
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +35 -47
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -8
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +4 -5
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +102 -42
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +14 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -11
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +10 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -10
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -23
- data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
- data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +175 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +15 -13
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -27
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +24 -24
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -7
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +9 -11
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +4 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +25 -25
- data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +6 -11
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -27
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
- data/src/core/lib/security/security_connector/ssl_utils.cc +33 -34
- data/src/core/lib/security/security_connector/ssl_utils.h +6 -8
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +37 -50
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +7 -8
- data/src/core/lib/security/transport/auth_filters.h +7 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +16 -25
- data/src/core/lib/security/transport/server_auth_filter.cc +20 -31
- data/src/core/lib/security/util/json_util.cc +4 -5
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +2 -5
- data/src/core/lib/slice/slice.cc +4 -7
- data/src/core/lib/slice/slice.h +6 -9
- data/src/core/lib/slice/slice_buffer.cc +4 -7
- data/src/core/lib/slice/slice_buffer.h +3 -4
- data/src/core/lib/slice/slice_internal.h +3 -6
- data/src/core/lib/slice/slice_refcount.h +8 -15
- data/src/core/lib/slice/slice_string_helpers.cc +1 -1
- data/src/core/lib/slice/slice_string_helpers.h +1 -2
- data/src/core/lib/surface/byte_buffer.cc +1 -2
- data/src/core/lib/surface/byte_buffer_reader.cc +3 -6
- data/src/core/lib/surface/call.cc +161 -3826
- data/src/core/lib/surface/call.h +63 -157
- data/src/core/lib/surface/call_details.cc +4 -3
- data/src/core/lib/surface/call_log_batch.cc +8 -11
- data/src/core/lib/surface/call_test_only.h +1 -2
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +482 -0
- data/src/core/lib/surface/channel.cc +41 -40
- data/src/core/lib/surface/channel.h +21 -19
- data/src/core/lib/surface/channel_create.cc +27 -12
- data/src/core/lib/surface/channel_create.h +5 -5
- data/src/core/lib/surface/channel_init.cc +269 -266
- data/src/core/lib/surface/channel_init.h +172 -118
- data/src/core/lib/surface/client_call.cc +427 -0
- data/src/core/lib/surface/client_call.h +179 -0
- data/src/core/lib/surface/completion_queue.cc +110 -106
- data/src/core/lib/surface/completion_queue.h +3 -12
- data/src/core/lib/surface/completion_queue_factory.cc +1 -3
- data/src/core/lib/surface/event_string.cc +2 -2
- data/src/core/lib/surface/event_string.h +2 -2
- data/src/core/lib/surface/filter_stack_call.cc +1156 -0
- data/src/core/lib/surface/filter_stack_call.h +366 -0
- data/src/core/lib/surface/init.cc +55 -18
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/lame_client.cc +11 -14
- data/src/core/lib/surface/lame_client.h +6 -5
- data/src/core/lib/surface/legacy_channel.cc +60 -46
- data/src/core/lib/surface/legacy_channel.h +15 -25
- data/src/core/lib/surface/metadata_array.cc +5 -5
- data/src/core/lib/surface/server_call.cc +221 -0
- data/src/core/lib/surface/server_call.h +168 -0
- data/src/core/lib/surface/validate_metadata.cc +3 -4
- data/src/core/lib/surface/validate_metadata.h +2 -5
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +11 -19
- data/src/core/lib/transport/bdp_estimator.h +10 -16
- data/src/core/lib/transport/call_arena_allocator.cc +4 -18
- data/src/core/lib/transport/call_arena_allocator.h +30 -12
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +61 -405
- data/src/core/lib/transport/call_filters.h +802 -752
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +2 -2
- data/src/core/lib/transport/call_spine.cc +98 -73
- data/src/core/lib/transport/call_spine.h +183 -380
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +1061 -0
- data/src/core/lib/transport/connectivity_state.cc +37 -45
- data/src/core/lib/transport/connectivity_state.h +5 -8
- data/src/core/lib/transport/error_utils.cc +3 -4
- data/src/core/lib/transport/error_utils.h +4 -5
- data/src/core/lib/transport/interception_chain.cc +147 -0
- data/src/core/lib/transport/interception_chain.h +253 -0
- data/src/core/lib/transport/message.cc +2 -2
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +27 -3
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +1 -3
- data/src/core/lib/transport/metadata_batch.h +64 -12
- data/src/core/lib/transport/metadata_compression_traits.h +1 -2
- data/src/core/lib/transport/metadata_info.h +1 -1
- data/src/core/lib/transport/parsed_metadata.h +3 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
- data/src/core/lib/transport/status_conversion.h +1 -1
- data/src/core/lib/transport/timeout_encoding.cc +3 -4
- data/src/core/lib/transport/timeout_encoding.h +2 -4
- data/src/core/lib/transport/transport.cc +7 -12
- data/src/core/lib/transport/transport.h +59 -56
- data/src/core/lib/transport/transport_op_string.cc +4 -6
- data/src/core/load_balancing/address_filtering.cc +2 -4
- data/src/core/load_balancing/address_filtering.h +4 -5
- data/src/core/load_balancing/backend_metric_data.h +2 -2
- data/src/core/load_balancing/backend_metric_parser.cc +1 -2
- data/src/core/load_balancing/backend_metric_parser.h +1 -3
- data/src/core/load_balancing/child_policy_handler.cc +36 -40
- data/src/core/load_balancing/child_policy_handler.h +4 -5
- data/src/core/load_balancing/delegating_helper.h +6 -7
- data/src/core/load_balancing/endpoint_list.cc +11 -13
- data/src/core/load_balancing/endpoint_list.h +7 -9
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +12 -6
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +5 -2
- data/src/core/load_balancing/grpclb/grpclb.cc +153 -187
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -10
- data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
- data/src/core/load_balancing/health_check_client.cc +60 -80
- data/src/core/load_balancing/health_check_client.h +3 -3
- data/src/core/load_balancing/health_check_client_internal.h +8 -9
- data/src/core/load_balancing/lb_policy.cc +5 -8
- data/src/core/load_balancing/lb_policy.h +72 -38
- data/src/core/load_balancing/lb_policy_factory.h +5 -6
- data/src/core/load_balancing/lb_policy_registry.cc +5 -7
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +19 -25
- data/src/core/load_balancing/oob_backend_metric.h +3 -3
- data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +139 -184
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +6 -8
- data/src/core/load_balancing/pick_first/pick_first.cc +219 -303
- data/src/core/load_balancing/priority/priority.cc +93 -137
- data/src/core/load_balancing/ring_hash/ring_hash.cc +52 -76
- data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
- data/src/core/load_balancing/rls/rls.cc +340 -345
- data/src/core/load_balancing/round_robin/round_robin.cc +56 -83
- data/src/core/load_balancing/subchannel_interface.h +17 -6
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +2 -3
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -2
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +138 -155
- data/src/core/load_balancing/weighted_target/weighted_target.cc +71 -107
- data/src/core/load_balancing/xds/cds.cc +53 -69
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +178 -155
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +52 -84
- data/src/core/load_balancing/xds/xds_override_host.cc +117 -179
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +38 -48
- data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -7
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +5 -0
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +85 -60
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +118 -100
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +166 -151
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/resolver/dns/dns_resolver_plugin.cc +9 -10
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +52 -59
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
- data/src/core/resolver/dns/native/dns_resolver.cc +21 -30
- data/src/core/resolver/endpoint_addresses.cc +2 -5
- data/src/core/resolver/endpoint_addresses.h +5 -3
- data/src/core/resolver/fake/fake_resolver.cc +7 -9
- data/src/core/resolver/fake/fake_resolver.h +8 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +23 -25
- data/src/core/resolver/polling_resolver.cc +39 -55
- data/src/core/resolver/polling_resolver.h +8 -9
- data/src/core/resolver/resolver.cc +2 -6
- data/src/core/resolver/resolver.h +4 -10
- data/src/core/resolver/resolver_factory.h +4 -5
- data/src/core/resolver/resolver_registry.cc +8 -10
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +7 -8
- data/src/core/resolver/xds/xds_config.cc +95 -0
- data/src/core/resolver/xds/xds_config.h +108 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +82 -171
- data/src/core/resolver/xds/xds_dependency_manager.h +6 -71
- data/src/core/resolver/xds/xds_resolver.cc +123 -104
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +382 -484
- data/src/core/server/server.h +48 -32
- data/src/core/server/server_call_tracer_filter.cc +20 -19
- data/src/core/server/server_config_selector.h +6 -7
- data/src/core/server/server_config_selector_filter.cc +17 -12
- data/src/core/server/server_interface.h +2 -0
- data/src/core/server/xds_channel_stack_modifier.cc +4 -4
- data/src/core/server/xds_channel_stack_modifier.h +6 -7
- data/src/core/server/xds_server_config_fetcher.cc +63 -73
- data/src/core/service_config/service_config.h +4 -6
- data/src/core/service_config/service_config_call_data.h +21 -20
- data/src/core/service_config/service_config_channel_arg_filter.cc +16 -12
- data/src/core/service_config/service_config_impl.cc +8 -10
- data/src/core/service_config/service_config_impl.h +5 -8
- data/src/core/service_config/service_config_parser.cc +4 -8
- data/src/core/service_config/service_config_parser.h +3 -5
- data/src/core/{lib/channel → telemetry}/call_tracer.cc +56 -34
- data/src/core/{lib/channel → telemetry}/call_tracer.h +51 -14
- data/src/core/{lib/debug → telemetry}/histogram_view.cc +1 -1
- data/src/core/{lib/debug → telemetry}/histogram_view.h +4 -5
- data/src/core/telemetry/metrics.cc +177 -0
- data/src/core/telemetry/metrics.h +565 -0
- data/src/core/{lib/debug → telemetry}/stats.cc +2 -3
- data/src/core/{lib/debug → telemetry}/stats.h +7 -9
- data/src/core/{lib/debug → telemetry}/stats_data.cc +88 -3
- data/src/core/{lib/debug → telemetry}/stats_data.h +73 -8
- data/src/core/{lib/channel → telemetry}/tcp_tracer.h +4 -5
- data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -3
- data/src/core/tsi/alts/crypt/gsec.h +3 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -18
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -12
- data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +41 -46
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -4
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +55 -57
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +14 -17
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +11 -12
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +9 -11
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +9 -13
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
- data/src/core/tsi/fake_transport_security.cc +27 -32
- data/src/core/tsi/local_transport_security.cc +9 -10
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -12
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -9
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
- data/src/core/tsi/ssl_transport_security.cc +126 -111
- data/src/core/tsi/ssl_transport_security.h +4 -6
- data/src/core/tsi/ssl_transport_security_utils.cc +77 -24
- data/src/core/tsi/ssl_transport_security_utils.h +13 -4
- data/src/core/tsi/ssl_types.h +1 -2
- data/src/core/tsi/transport_security.cc +2 -7
- data/src/core/tsi/transport_security.h +1 -4
- data/src/core/tsi/transport_security_interface.h +1 -6
- data/src/core/{lib/gpr → util}/alloc.cc +2 -6
- data/src/core/{lib/gpr → util}/alloc.h +3 -3
- data/src/core/{lib/gpr → util}/atm.cc +2 -3
- data/src/core/{lib/gprpp → util}/atomic_utils.h +5 -5
- data/src/core/{lib/avl → util}/avl.h +7 -8
- data/src/core/{lib/backoff → util}/backoff.cc +10 -11
- data/src/core/{lib/backoff → util}/backoff.h +8 -11
- data/src/core/{lib/gprpp → util}/bitset.h +6 -7
- data/src/core/{lib/gprpp → util}/chunked_vector.h +6 -8
- data/src/core/{lib/gprpp → util}/construct_destruct.h +8 -7
- data/src/core/{lib/gprpp → util}/cpp_impl_of.h +3 -3
- data/src/core/{lib/gprpp → util}/crash.cc +4 -6
- data/src/core/{lib/gprpp → util}/crash.h +5 -6
- data/src/core/{lib/gprpp → util}/debug_location.h +11 -4
- data/src/core/{lib/gprpp → util}/directory_reader.h +5 -5
- data/src/core/{lib/gprpp → util}/down_cast.h +7 -8
- data/src/core/{lib/gprpp → util}/dual_ref_counted.h +54 -43
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +122 -0
- data/src/core/{lib/gprpp → util}/env.h +5 -5
- data/src/core/{lib/debug → util}/event_log.cc +3 -4
- data/src/core/{lib/debug → util}/event_log.h +7 -9
- data/src/core/{lib/gprpp → util}/examine_stack.cc +1 -1
- data/src/core/{lib/gprpp → util}/examine_stack.h +5 -5
- data/src/core/{lib/gprpp → util}/fork.cc +4 -4
- data/src/core/{lib/gprpp → util}/fork.h +5 -5
- data/src/core/{ext/gcp/metadata_query.cc → util/gcp_metadata_query.cc} +31 -36
- data/src/core/{ext/gcp/metadata_query.h → util/gcp_metadata_query.h} +13 -14
- data/src/core/{lib/iomgr → util}/gethostname.h +3 -3
- data/src/core/{lib/iomgr → util}/gethostname_fallback.cc +1 -1
- data/src/core/{lib/iomgr → util}/gethostname_host_name_max.cc +2 -3
- data/src/core/{lib/iomgr → util}/gethostname_sysconf.cc +2 -3
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/{lib/gpr/time.cc → util/gpr_time.cc} +3 -6
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex.h +4 -5
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_posix.cc +4 -6
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_unsupported.cc +5 -8
- data/src/core/{lib/gprpp → util}/host_port.cc +2 -4
- data/src/core/{lib/gprpp → util}/host_port.h +5 -5
- data/src/core/{lib/http → util/http_client}/format_request.cc +4 -6
- data/src/core/{lib/http → util/http_client}/format_request.h +4 -4
- data/src/core/{lib/http → util/http_client}/httpcli.cc +43 -62
- data/src/core/{lib/http → util/http_client}/httpcli.h +32 -30
- data/src/core/{lib/http → util/http_client}/httpcli_security_connector.cc +17 -20
- data/src/core/{lib/http → util/http_client}/httpcli_ssl_credentials.h +4 -4
- data/src/core/{lib/http → util/http_client}/parser.cc +7 -11
- data/src/core/{lib/http → util/http_client}/parser.h +5 -8
- data/src/core/{lib/gprpp → util}/if_list.h +3 -3
- data/src/core/{lib/gpr → util}/iphone/cpu.cc +1 -2
- data/src/core/{lib → util}/json/json.h +3 -3
- data/src/core/{lib → util}/json/json_args.h +5 -5
- data/src/core/{lib → util}/json/json_channel_args.h +6 -7
- data/src/core/{lib → util}/json/json_object_loader.cc +4 -4
- data/src/core/{lib → util}/json/json_object_loader.h +11 -12
- data/src/core/{lib → util}/json/json_reader.cc +4 -7
- data/src/core/{lib → util}/json/json_reader.h +6 -7
- data/src/core/{lib → util}/json/json_util.cc +5 -5
- data/src/core/{lib → util}/json/json_util.h +7 -8
- data/src/core/{lib → util}/json/json_writer.cc +2 -4
- data/src/core/{lib → util}/json/json_writer.h +6 -6
- data/src/core/util/latent_see.cc +142 -0
- data/src/core/util/latent_see.h +327 -0
- data/src/core/{lib/gpr → util}/linux/cpu.cc +11 -12
- data/src/core/{lib/gprpp → util}/linux/env.cc +3 -3
- data/src/core/{lib/gprpp → util}/load_file.cc +4 -6
- data/src/core/{lib/gprpp → util}/load_file.h +5 -6
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/{lib/gprpp → util}/manual_constructor.h +5 -6
- data/src/core/{lib/gprpp → util}/match.h +6 -7
- data/src/core/{lib/matchers → util}/matchers.cc +10 -3
- data/src/core/{lib/matchers → util}/matchers.h +9 -5
- data/src/core/{lib/gprpp → util}/memory.h +6 -6
- data/src/core/{lib/gprpp → util}/mpscq.cc +1 -1
- data/src/core/{lib/gprpp → util}/mpscq.h +6 -8
- data/src/core/{lib/gpr → util}/msys/tmpfile.cc +5 -7
- data/src/core/{lib/gprpp → util}/no_destruct.h +6 -6
- data/src/core/{lib/gprpp → util}/notification.h +6 -7
- data/src/core/{lib/gprpp → util}/orphanable.h +9 -9
- data/src/core/{lib/gprpp → util}/overload.h +5 -5
- data/src/core/{lib/gprpp → util}/packed_table.h +5 -5
- data/src/core/{lib/gprpp → util}/per_cpu.cc +2 -2
- data/src/core/{lib/gprpp → util}/per_cpu.h +5 -6
- data/src/core/{lib/gpr → util}/posix/cpu.cc +6 -7
- data/src/core/{lib/gprpp → util}/posix/directory_reader.cc +4 -4
- data/src/core/{lib/gprpp → util}/posix/env.cc +1 -1
- data/src/core/{lib/gprpp → util}/posix/stat.cc +7 -9
- data/src/core/{lib/gpr → util}/posix/string.cc +2 -3
- data/src/core/{lib/gpr → util}/posix/sync.cc +3 -6
- data/src/core/{lib/gprpp → util}/posix/thd.cc +16 -20
- data/src/core/{lib/gpr → util}/posix/time.cc +5 -7
- data/src/core/{lib/gpr → util}/posix/tmpfile.cc +11 -13
- data/src/core/{lib/backoff → util}/random_early_detection.cc +3 -3
- data/src/core/{lib/backoff → util}/random_early_detection.h +4 -5
- data/src/core/{lib/gprpp → util}/ref_counted.h +39 -32
- data/src/core/{lib/gprpp → util}/ref_counted_ptr.h +6 -8
- data/src/core/{lib/gprpp → util}/ref_counted_string.cc +3 -4
- data/src/core/{lib/gprpp → util}/ref_counted_string.h +6 -8
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/{lib/gprpp → util}/single_set_ptr.h +10 -9
- data/src/core/{lib/gprpp → util}/sorted_pack.h +6 -6
- data/src/core/{lib/gpr → util}/spinlock.h +5 -7
- data/src/core/{lib/gprpp → util}/stat.h +4 -5
- data/src/core/{lib/gprpp → util}/status_helper.cc +16 -38
- data/src/core/{lib/gprpp → util}/status_helper.h +8 -38
- data/src/core/{lib/gprpp → util}/strerror.cc +2 -3
- data/src/core/{lib/gprpp → util}/strerror.h +5 -5
- data/src/core/{lib/gpr → util}/string.cc +13 -16
- data/src/core/{lib/gpr → util}/string.h +4 -6
- data/src/core/{lib/gpr → util}/sync.cc +3 -6
- data/src/core/{lib/gprpp → util}/sync.h +7 -8
- data/src/core/{lib/gpr → util}/sync_abseil.cc +5 -8
- data/src/core/{lib/gprpp → util}/table.h +56 -22
- data/src/core/{lib/gprpp → util}/tchar.cc +1 -1
- data/src/core/{lib/gprpp → util}/tchar.h +3 -3
- data/src/core/{lib/gprpp → util}/thd.h +5 -7
- data/src/core/{lib/gprpp → util}/time.cc +8 -10
- data/src/core/{lib/gprpp → util}/time.h +28 -27
- data/src/core/{lib/gprpp → util}/time_averaged_stats.cc +1 -1
- data/src/core/{lib/gprpp → util}/time_averaged_stats.h +3 -3
- data/src/core/{lib/gpr → util}/time_precise.cc +7 -7
- data/src/core/{lib/gpr → util}/time_precise.h +3 -4
- data/src/core/{lib/gprpp → util}/time_util.cc +3 -5
- data/src/core/{lib/gprpp → util}/time_util.h +5 -5
- data/src/core/{lib/gpr → util}/tmpfile.h +3 -4
- data/src/core/{lib/gprpp → util}/type_list.h +3 -3
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/{lib/gprpp → util}/unique_type_name.h +34 -15
- data/src/core/{xds/grpc → util}/upb_utils.h +3 -5
- data/src/core/{lib/uri/uri_parser.cc → util/uri.cc} +2 -4
- data/src/core/{lib/uri/uri_parser.h → util/uri.h} +5 -5
- data/src/core/{lib/gpr → util}/useful.h +23 -52
- data/src/core/{lib/gprpp → util}/uuid_v4.cc +3 -3
- data/src/core/{lib/gprpp → util}/uuid_v4.h +4 -5
- data/src/core/{lib/gprpp → util}/validation_errors.cc +12 -4
- data/src/core/{lib/gprpp → util}/validation_errors.h +15 -5
- data/src/core/{lib/gpr → util}/windows/cpu.cc +1 -2
- data/src/core/{lib/gprpp → util}/windows/directory_reader.cc +1 -3
- data/src/core/{lib/gprpp → util}/windows/env.cc +2 -2
- data/src/core/{lib/gprpp → util}/windows/stat.cc +6 -8
- data/src/core/{lib/gpr → util}/windows/string.cc +3 -4
- data/src/core/{lib/gpr → util}/windows/string_util.cc +6 -8
- data/src/core/{lib/gpr → util}/windows/sync.cc +2 -4
- data/src/core/{lib/gprpp → util}/windows/thd.cc +8 -10
- data/src/core/{lib/gpr → util}/windows/time.cc +3 -6
- data/src/core/{lib/gpr → util}/windows/tmpfile.cc +5 -7
- data/src/core/{lib/gprpp → util}/work_serializer.cc +75 -95
- data/src/core/{lib/gprpp → util}/work_serializer.h +8 -9
- data/src/core/{lib/gprpp → util}/xxhash_inline.h +3 -3
- data/src/core/xds/grpc/certificate_provider_store.cc +4 -5
- data/src/core/xds/grpc/certificate_provider_store.h +12 -13
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +6 -7
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +9 -10
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +5 -5
- data/src/core/xds/grpc/xds_audit_logger_registry.h +4 -5
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +8 -166
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +9 -39
- data/src/core/xds/grpc/xds_certificate_provider.cc +4 -5
- data/src/core/xds/grpc/xds_certificate_provider.h +12 -11
- data/src/core/xds/grpc/xds_client_grpc.cc +98 -76
- data/src/core/xds/grpc/xds_client_grpc.h +16 -10
- data/src/core/xds/grpc/xds_cluster.cc +12 -737
- data/src/core/xds/grpc/xds_cluster.h +36 -45
- data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +6 -9
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
- data/src/core/xds/grpc/xds_common_types.cc +33 -438
- data/src/core/xds/grpc/xds_common_types.h +10 -28
- data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
- data/src/core/xds/grpc/xds_endpoint.cc +0 -420
- data/src/core/xds/grpc/xds_endpoint.h +7 -29
- data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +0 -2
- data/src/core/xds/grpc/xds_health_status.h +0 -3
- data/src/core/xds/grpc/xds_http_fault_filter.cc +28 -16
- data/src/core/xds/grpc/xds_http_fault_filter.h +11 -7
- data/src/core/xds/grpc/{xds_http_filters.h → xds_http_filter.h} +21 -69
- data/src/core/xds/grpc/{xds_http_filters.cc → xds_http_filter_registry.cc} +11 -5
- data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +64 -49
- data/src/core/xds/grpc/xds_http_rbac_filter.h +11 -7
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +24 -11
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +11 -7
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +22 -27
- data/src/core/xds/grpc/xds_lb_policy_registry.h +4 -5
- data/src/core/xds/grpc/xds_listener.cc +19 -986
- data/src/core/xds/grpc/xds_listener.h +2 -35
- data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
- data/src/core/xds/grpc/xds_listener_parser.h +59 -0
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +150 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
- data/src/core/xds/grpc/xds_route_config.cc +2 -919
- data/src/core/xds/grpc/xds_route_config.h +8 -41
- data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
- data/src/core/xds/grpc/xds_routing.cc +60 -27
- data/src/core/xds/grpc/xds_routing.h +12 -6
- data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
- data/src/core/xds/grpc/xds_server_grpc.h +63 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +98 -55
- data/src/core/xds/grpc/xds_transport_grpc.h +34 -23
- data/src/core/xds/xds_client/lrs_client.cc +1292 -0
- data/src/core/xds/xds_client/lrs_client.h +394 -0
- data/src/core/xds/xds_client/xds_api.cc +38 -256
- data/src/core/xds/xds_client/xds_api.h +13 -36
- data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
- data/src/core/xds/xds_client/xds_bootstrap.cc +3 -4
- data/src/core/xds/xds_client/xds_bootstrap.h +3 -3
- data/src/core/xds/xds_client/xds_client.cc +175 -793
- data/src/core/xds/xds_client/xds_client.h +33 -89
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +2 -2
- data/src/core/xds/xds_client/xds_resource_type.h +4 -5
- data/src/core/xds/xds_client/xds_resource_type_impl.h +3 -4
- data/src/core/xds/xds_client/xds_transport.h +29 -14
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
- data/src/ruby/ext/grpc/rb_call.c +15 -8
- data/src/ruby/ext/grpc/rb_call_credentials.c +39 -33
- data/src/ruby/ext/grpc/rb_channel.c +42 -37
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
- data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
- data/src/ruby/ext/grpc/rb_grpc.c +16 -16
- data/src/ruby/ext/grpc/rb_grpc.h +7 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -14
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -21
- data/src/ruby/ext/grpc/rb_server.c +47 -28
- data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
- data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
- data/third_party/abseil-cpp/absl/base/config.h +32 -51
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +48 -0
- data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
- data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
- data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
- data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
- data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
- data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
- data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
- data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/log/globals.h +28 -15
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
- data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
- data/third_party/abseil-cpp/absl/log/log.h +5 -1
- data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
- data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
- data/third_party/abseil-cpp/absl/status/status.cc +0 -4
- data/third_party/abseil-cpp/absl/status/status.h +4 -4
- data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
- data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
- data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
- data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
- data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
- data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
- data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
- data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
- data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
- data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
- data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
- data/third_party/abseil-cpp/absl/time/time.h +73 -29
- data/third_party/abseil-cpp/absl/types/compare.h +505 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
- data/third_party/abseil-cpp/absl/types/optional.h +15 -18
- data/third_party/abseil-cpp/absl/types/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/variant.h +19 -24
- data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +12 -12
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -5
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +10 -3
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +21 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +45 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +6 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +6 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +98 -24
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +7 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +10 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +48 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +118 -38
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -23
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +296 -61
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +24 -16
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +71 -39
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +16 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +125 -38
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +98 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +69 -29
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +59 -20
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
- data/third_party/upb/upb/base/string_view.h +1 -1
- data/third_party/upb/upb/json/decode.c +21 -3
- data/third_party/upb/upb/json/encode.c +2 -2
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +79 -3
- data/third_party/upb/upb/mem/arena.h +20 -9
- data/third_party/upb/upb/mem/arena.hpp +5 -1
- data/third_party/upb/upb/mem/internal/arena.h +11 -8
- data/third_party/upb/upb/message/accessors.c +6 -7
- data/third_party/upb/upb/message/accessors.h +180 -378
- data/third_party/upb/upb/message/array.c +26 -3
- data/third_party/upb/upb/message/array.h +17 -9
- data/third_party/upb/upb/message/compat.c +5 -5
- data/third_party/upb/upb/message/compat.h +3 -3
- data/third_party/upb/upb/message/copy.c +23 -20
- data/third_party/upb/upb/message/internal/accessors.h +610 -55
- data/third_party/upb/upb/message/internal/array.h +23 -15
- data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
- data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
- data/third_party/upb/upb/message/internal/extension.c +12 -12
- data/third_party/upb/upb/message/internal/extension.h +9 -12
- data/third_party/upb/upb/message/internal/map.h +15 -0
- data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
- data/third_party/upb/upb/message/internal/message.c +19 -3
- data/third_party/upb/upb/message/internal/message.h +11 -0
- data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
- data/third_party/upb/upb/message/internal/types.h +41 -1
- data/third_party/upb/upb/message/map.c +25 -0
- data/third_party/upb/upb/message/map.h +11 -7
- data/third_party/upb/upb/message/merge.c +38 -0
- data/third_party/upb/upb/message/merge.h +26 -0
- data/third_party/upb/upb/message/message.c +83 -4
- data/third_party/upb/upb/message/message.h +16 -1
- data/third_party/upb/upb/message/tagged_ptr.h +4 -8
- data/third_party/upb/upb/message/value.h +26 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +19 -3
- data/third_party/upb/upb/mini_descriptor/link.c +23 -21
- data/third_party/upb/upb/mini_table/enum.h +2 -4
- data/third_party/upb/upb/mini_table/extension.h +4 -12
- data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +12 -38
- data/third_party/upb/upb/mini_table/file.h +6 -19
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
- data/third_party/upb/upb/mini_table/internal/field.h +23 -23
- data/third_party/upb/upb/mini_table/internal/file.h +7 -7
- data/third_party/upb/upb/mini_table/internal/message.c +21 -1
- data/third_party/upb/upb/mini_table/internal/message.h +80 -36
- data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
- data/third_party/upb/upb/mini_table/message.h +23 -22
- data/third_party/upb/upb/mini_table/sub.h +4 -12
- data/third_party/upb/upb/port/def.inc +83 -6
- data/third_party/upb/upb/port/undef.inc +5 -1
- data/third_party/upb/upb/reflection/def.hpp +35 -0
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/enum_def.c +5 -1
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
- data/third_party/upb/upb/reflection/field_def.c +69 -29
- data/third_party/upb/upb/reflection/field_def.h +4 -0
- data/third_party/upb/upb/reflection/file_def.c +30 -4
- data/third_party/upb/upb/reflection/file_def.h +3 -0
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +26 -9
- data/third_party/upb/upb/reflection/message.h +2 -2
- data/third_party/upb/upb/reflection/message_def.c +14 -9
- data/third_party/upb/upb/reflection/method_def.h +8 -7
- data/third_party/upb/upb/reflection/service_def.h +6 -5
- data/third_party/upb/upb/text/encode.c +60 -389
- data/third_party/upb/upb/text/encode.h +1 -11
- data/third_party/upb/upb/text/internal/encode.c +180 -0
- data/third_party/upb/upb/text/internal/encode.h +240 -0
- data/third_party/upb/upb/text/options.h +22 -0
- data/third_party/upb/upb/wire/decode.c +160 -94
- data/third_party/upb/upb/wire/decode.h +14 -1
- data/third_party/upb/upb/wire/encode.c +89 -48
- data/third_party/upb/upb/wire/encode.h +12 -1
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
- data/third_party/upb/upb/wire/internal/reader.h +3 -3
- data/third_party/upb/upb/wire/reader.c +1 -2
- data/third_party/upb/upb/wire/reader.h +4 -8
- metadata +360 -275
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
- data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
- data/src/core/handshaker/security/tsi_error.cc +0 -31
- data/src/core/handshaker/security/tsi_error.h +0 -30
- data/src/core/lib/channel/channel_stack_trace.cc +0 -19
- data/src/core/lib/channel/channel_stack_trace.h +0 -24
- data/src/core/lib/channel/context.h +0 -105
- data/src/core/lib/channel/metrics.cc +0 -334
- data/src/core/lib/channel/metrics.h +0 -365
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -48
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -166
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- data/src/core/lib/promise/trace.cc +0 -20
- data/src/core/lib/promise/trace.h +0 -24
- data/src/core/lib/resource_quota/trace.cc +0 -19
- data/src/core/lib/resource_quota/trace.h +0 -24
- data/src/core/lib/slice/slice_refcount.cc +0 -20
- data/src/core/lib/surface/api_trace.cc +0 -25
- data/src/core/lib/surface/api_trace.h +0 -52
- data/src/core/lib/surface/call_trace.h +0 -24
- data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
- data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
- data/src/core/lib/transport/batch_builder.cc +0 -172
- data/src/core/lib/transport/batch_builder.h +0 -474
- data/src/core/resolver/binder/binder_resolver.cc +0 -154
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/src/core/xds/xds_client/xds_client_stats.cc +0 -172
- data/src/core/xds/xds_client/xds_client_stats.h +0 -258
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -3,7 +3,8 @@
|
|
3
3
|
* validate/validate.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
9
|
#ifndef VALIDATE_VALIDATE_PROTO_UPB_H_
|
9
10
|
#define VALIDATE_VALIDATE_PROTO_UPB_H_
|
@@ -133,6 +134,7 @@ UPB_INLINE const validate_FloatRules* validate_FieldRules_float(const validate_F
|
|
133
134
|
const validate_FloatRules* default_val = NULL;
|
134
135
|
const validate_FloatRules* ret;
|
135
136
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
137
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FloatRules_msg_init);
|
136
138
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
137
139
|
&default_val, &ret);
|
138
140
|
return ret;
|
@@ -149,6 +151,7 @@ UPB_INLINE const validate_DoubleRules* validate_FieldRules_double(const validate
|
|
149
151
|
const validate_DoubleRules* default_val = NULL;
|
150
152
|
const validate_DoubleRules* ret;
|
151
153
|
const upb_MiniTableField field = {2, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
154
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DoubleRules_msg_init);
|
152
155
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
153
156
|
&default_val, &ret);
|
154
157
|
return ret;
|
@@ -165,6 +168,7 @@ UPB_INLINE const validate_Int32Rules* validate_FieldRules_int32(const validate_F
|
|
165
168
|
const validate_Int32Rules* default_val = NULL;
|
166
169
|
const validate_Int32Rules* ret;
|
167
170
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
171
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int32Rules_msg_init);
|
168
172
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
169
173
|
&default_val, &ret);
|
170
174
|
return ret;
|
@@ -181,6 +185,7 @@ UPB_INLINE const validate_Int64Rules* validate_FieldRules_int64(const validate_F
|
|
181
185
|
const validate_Int64Rules* default_val = NULL;
|
182
186
|
const validate_Int64Rules* ret;
|
183
187
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
188
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int64Rules_msg_init);
|
184
189
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
185
190
|
&default_val, &ret);
|
186
191
|
return ret;
|
@@ -197,6 +202,7 @@ UPB_INLINE const validate_UInt32Rules* validate_FieldRules_uint32(const validate
|
|
197
202
|
const validate_UInt32Rules* default_val = NULL;
|
198
203
|
const validate_UInt32Rules* ret;
|
199
204
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
205
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt32Rules_msg_init);
|
200
206
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
201
207
|
&default_val, &ret);
|
202
208
|
return ret;
|
@@ -213,6 +219,7 @@ UPB_INLINE const validate_UInt64Rules* validate_FieldRules_uint64(const validate
|
|
213
219
|
const validate_UInt64Rules* default_val = NULL;
|
214
220
|
const validate_UInt64Rules* ret;
|
215
221
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
222
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt64Rules_msg_init);
|
216
223
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
217
224
|
&default_val, &ret);
|
218
225
|
return ret;
|
@@ -229,6 +236,7 @@ UPB_INLINE const validate_SInt32Rules* validate_FieldRules_sint32(const validate
|
|
229
236
|
const validate_SInt32Rules* default_val = NULL;
|
230
237
|
const validate_SInt32Rules* ret;
|
231
238
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
239
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt32Rules_msg_init);
|
232
240
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
233
241
|
&default_val, &ret);
|
234
242
|
return ret;
|
@@ -245,6 +253,7 @@ UPB_INLINE const validate_SInt64Rules* validate_FieldRules_sint64(const validate
|
|
245
253
|
const validate_SInt64Rules* default_val = NULL;
|
246
254
|
const validate_SInt64Rules* ret;
|
247
255
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
256
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt64Rules_msg_init);
|
248
257
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
249
258
|
&default_val, &ret);
|
250
259
|
return ret;
|
@@ -261,6 +270,7 @@ UPB_INLINE const validate_Fixed32Rules* validate_FieldRules_fixed32(const valida
|
|
261
270
|
const validate_Fixed32Rules* default_val = NULL;
|
262
271
|
const validate_Fixed32Rules* ret;
|
263
272
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
273
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed32Rules_msg_init);
|
264
274
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
265
275
|
&default_val, &ret);
|
266
276
|
return ret;
|
@@ -277,6 +287,7 @@ UPB_INLINE const validate_Fixed64Rules* validate_FieldRules_fixed64(const valida
|
|
277
287
|
const validate_Fixed64Rules* default_val = NULL;
|
278
288
|
const validate_Fixed64Rules* ret;
|
279
289
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
290
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed64Rules_msg_init);
|
280
291
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
281
292
|
&default_val, &ret);
|
282
293
|
return ret;
|
@@ -293,6 +304,7 @@ UPB_INLINE const validate_SFixed32Rules* validate_FieldRules_sfixed32(const vali
|
|
293
304
|
const validate_SFixed32Rules* default_val = NULL;
|
294
305
|
const validate_SFixed32Rules* ret;
|
295
306
|
const upb_MiniTableField field = {11, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
307
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed32Rules_msg_init);
|
296
308
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
297
309
|
&default_val, &ret);
|
298
310
|
return ret;
|
@@ -309,6 +321,7 @@ UPB_INLINE const validate_SFixed64Rules* validate_FieldRules_sfixed64(const vali
|
|
309
321
|
const validate_SFixed64Rules* default_val = NULL;
|
310
322
|
const validate_SFixed64Rules* ret;
|
311
323
|
const upb_MiniTableField field = {12, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
324
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed64Rules_msg_init);
|
312
325
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
313
326
|
&default_val, &ret);
|
314
327
|
return ret;
|
@@ -325,6 +338,7 @@ UPB_INLINE const validate_BoolRules* validate_FieldRules_bool(const validate_Fie
|
|
325
338
|
const validate_BoolRules* default_val = NULL;
|
326
339
|
const validate_BoolRules* ret;
|
327
340
|
const upb_MiniTableField field = {13, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
341
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BoolRules_msg_init);
|
328
342
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
329
343
|
&default_val, &ret);
|
330
344
|
return ret;
|
@@ -341,6 +355,7 @@ UPB_INLINE const validate_StringRules* validate_FieldRules_string(const validate
|
|
341
355
|
const validate_StringRules* default_val = NULL;
|
342
356
|
const validate_StringRules* ret;
|
343
357
|
const upb_MiniTableField field = {14, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
358
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__StringRules_msg_init);
|
344
359
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
345
360
|
&default_val, &ret);
|
346
361
|
return ret;
|
@@ -357,6 +372,7 @@ UPB_INLINE const validate_BytesRules* validate_FieldRules_bytes(const validate_F
|
|
357
372
|
const validate_BytesRules* default_val = NULL;
|
358
373
|
const validate_BytesRules* ret;
|
359
374
|
const upb_MiniTableField field = {15, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
375
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BytesRules_msg_init);
|
360
376
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
361
377
|
&default_val, &ret);
|
362
378
|
return ret;
|
@@ -373,6 +389,7 @@ UPB_INLINE const validate_EnumRules* validate_FieldRules_enum(const validate_Fie
|
|
373
389
|
const validate_EnumRules* default_val = NULL;
|
374
390
|
const validate_EnumRules* ret;
|
375
391
|
const upb_MiniTableField field = {16, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
392
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__EnumRules_msg_init);
|
376
393
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
377
394
|
&default_val, &ret);
|
378
395
|
return ret;
|
@@ -389,6 +406,7 @@ UPB_INLINE const validate_MessageRules* validate_FieldRules_message(const valida
|
|
389
406
|
const validate_MessageRules* default_val = NULL;
|
390
407
|
const validate_MessageRules* ret;
|
391
408
|
const upb_MiniTableField field = {17, UPB_SIZE(12, 16), 64, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
409
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MessageRules_msg_init);
|
392
410
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
393
411
|
&default_val, &ret);
|
394
412
|
return ret;
|
@@ -405,6 +423,7 @@ UPB_INLINE const validate_RepeatedRules* validate_FieldRules_repeated(const vali
|
|
405
423
|
const validate_RepeatedRules* default_val = NULL;
|
406
424
|
const validate_RepeatedRules* ret;
|
407
425
|
const upb_MiniTableField field = {18, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
426
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__RepeatedRules_msg_init);
|
408
427
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
409
428
|
&default_val, &ret);
|
410
429
|
return ret;
|
@@ -421,6 +440,7 @@ UPB_INLINE const validate_MapRules* validate_FieldRules_map(const validate_Field
|
|
421
440
|
const validate_MapRules* default_val = NULL;
|
422
441
|
const validate_MapRules* ret;
|
423
442
|
const upb_MiniTableField field = {19, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
443
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MapRules_msg_init);
|
424
444
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
425
445
|
&default_val, &ret);
|
426
446
|
return ret;
|
@@ -437,6 +457,7 @@ UPB_INLINE const validate_AnyRules* validate_FieldRules_any(const validate_Field
|
|
437
457
|
const validate_AnyRules* default_val = NULL;
|
438
458
|
const validate_AnyRules* ret;
|
439
459
|
const upb_MiniTableField field = {20, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
460
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__AnyRules_msg_init);
|
440
461
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
441
462
|
&default_val, &ret);
|
442
463
|
return ret;
|
@@ -453,6 +474,7 @@ UPB_INLINE const validate_DurationRules* validate_FieldRules_duration(const vali
|
|
453
474
|
const validate_DurationRules* default_val = NULL;
|
454
475
|
const validate_DurationRules* ret;
|
455
476
|
const upb_MiniTableField field = {21, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
477
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DurationRules_msg_init);
|
456
478
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
457
479
|
&default_val, &ret);
|
458
480
|
return ret;
|
@@ -469,6 +491,7 @@ UPB_INLINE const validate_TimestampRules* validate_FieldRules_timestamp(const va
|
|
469
491
|
const validate_TimestampRules* default_val = NULL;
|
470
492
|
const validate_TimestampRules* ret;
|
471
493
|
const upb_MiniTableField field = {22, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
494
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__TimestampRules_msg_init);
|
472
495
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
473
496
|
&default_val, &ret);
|
474
497
|
return ret;
|
@@ -480,7 +503,8 @@ UPB_INLINE bool validate_FieldRules_has_timestamp(const validate_FieldRules* msg
|
|
480
503
|
|
481
504
|
UPB_INLINE void validate_FieldRules_set_float(validate_FieldRules *msg, validate_FloatRules* value) {
|
482
505
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
483
|
-
|
506
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FloatRules_msg_init);
|
507
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
484
508
|
}
|
485
509
|
UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validate_FieldRules* msg, upb_Arena* arena) {
|
486
510
|
struct validate_FloatRules* sub = (struct validate_FloatRules*)validate_FieldRules_float(msg);
|
@@ -492,7 +516,8 @@ UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validat
|
|
492
516
|
}
|
493
517
|
UPB_INLINE void validate_FieldRules_set_double(validate_FieldRules *msg, validate_DoubleRules* value) {
|
494
518
|
const upb_MiniTableField field = {2, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
495
|
-
|
519
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DoubleRules_msg_init);
|
520
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
496
521
|
}
|
497
522
|
UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(validate_FieldRules* msg, upb_Arena* arena) {
|
498
523
|
struct validate_DoubleRules* sub = (struct validate_DoubleRules*)validate_FieldRules_double(msg);
|
@@ -504,7 +529,8 @@ UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(valid
|
|
504
529
|
}
|
505
530
|
UPB_INLINE void validate_FieldRules_set_int32(validate_FieldRules *msg, validate_Int32Rules* value) {
|
506
531
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
507
|
-
|
532
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int32Rules_msg_init);
|
533
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
508
534
|
}
|
509
535
|
UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validate_FieldRules* msg, upb_Arena* arena) {
|
510
536
|
struct validate_Int32Rules* sub = (struct validate_Int32Rules*)validate_FieldRules_int32(msg);
|
@@ -516,7 +542,8 @@ UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validat
|
|
516
542
|
}
|
517
543
|
UPB_INLINE void validate_FieldRules_set_int64(validate_FieldRules *msg, validate_Int64Rules* value) {
|
518
544
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
519
|
-
|
545
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int64Rules_msg_init);
|
546
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
520
547
|
}
|
521
548
|
UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validate_FieldRules* msg, upb_Arena* arena) {
|
522
549
|
struct validate_Int64Rules* sub = (struct validate_Int64Rules*)validate_FieldRules_int64(msg);
|
@@ -528,7 +555,8 @@ UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validat
|
|
528
555
|
}
|
529
556
|
UPB_INLINE void validate_FieldRules_set_uint32(validate_FieldRules *msg, validate_UInt32Rules* value) {
|
530
557
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
531
|
-
|
558
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt32Rules_msg_init);
|
559
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
532
560
|
}
|
533
561
|
UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(validate_FieldRules* msg, upb_Arena* arena) {
|
534
562
|
struct validate_UInt32Rules* sub = (struct validate_UInt32Rules*)validate_FieldRules_uint32(msg);
|
@@ -540,7 +568,8 @@ UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(valid
|
|
540
568
|
}
|
541
569
|
UPB_INLINE void validate_FieldRules_set_uint64(validate_FieldRules *msg, validate_UInt64Rules* value) {
|
542
570
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
543
|
-
|
571
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt64Rules_msg_init);
|
572
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
544
573
|
}
|
545
574
|
UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(validate_FieldRules* msg, upb_Arena* arena) {
|
546
575
|
struct validate_UInt64Rules* sub = (struct validate_UInt64Rules*)validate_FieldRules_uint64(msg);
|
@@ -552,7 +581,8 @@ UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(valid
|
|
552
581
|
}
|
553
582
|
UPB_INLINE void validate_FieldRules_set_sint32(validate_FieldRules *msg, validate_SInt32Rules* value) {
|
554
583
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
555
|
-
|
584
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt32Rules_msg_init);
|
585
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
556
586
|
}
|
557
587
|
UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(validate_FieldRules* msg, upb_Arena* arena) {
|
558
588
|
struct validate_SInt32Rules* sub = (struct validate_SInt32Rules*)validate_FieldRules_sint32(msg);
|
@@ -564,7 +594,8 @@ UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(valid
|
|
564
594
|
}
|
565
595
|
UPB_INLINE void validate_FieldRules_set_sint64(validate_FieldRules *msg, validate_SInt64Rules* value) {
|
566
596
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
567
|
-
|
597
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt64Rules_msg_init);
|
598
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
568
599
|
}
|
569
600
|
UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(validate_FieldRules* msg, upb_Arena* arena) {
|
570
601
|
struct validate_SInt64Rules* sub = (struct validate_SInt64Rules*)validate_FieldRules_sint64(msg);
|
@@ -576,7 +607,8 @@ UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(valid
|
|
576
607
|
}
|
577
608
|
UPB_INLINE void validate_FieldRules_set_fixed32(validate_FieldRules *msg, validate_Fixed32Rules* value) {
|
578
609
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
579
|
-
|
610
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed32Rules_msg_init);
|
611
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
580
612
|
}
|
581
613
|
UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(validate_FieldRules* msg, upb_Arena* arena) {
|
582
614
|
struct validate_Fixed32Rules* sub = (struct validate_Fixed32Rules*)validate_FieldRules_fixed32(msg);
|
@@ -588,7 +620,8 @@ UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(val
|
|
588
620
|
}
|
589
621
|
UPB_INLINE void validate_FieldRules_set_fixed64(validate_FieldRules *msg, validate_Fixed64Rules* value) {
|
590
622
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
591
|
-
|
623
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed64Rules_msg_init);
|
624
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
592
625
|
}
|
593
626
|
UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(validate_FieldRules* msg, upb_Arena* arena) {
|
594
627
|
struct validate_Fixed64Rules* sub = (struct validate_Fixed64Rules*)validate_FieldRules_fixed64(msg);
|
@@ -600,7 +633,8 @@ UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(val
|
|
600
633
|
}
|
601
634
|
UPB_INLINE void validate_FieldRules_set_sfixed32(validate_FieldRules *msg, validate_SFixed32Rules* value) {
|
602
635
|
const upb_MiniTableField field = {11, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
603
|
-
|
636
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed32Rules_msg_init);
|
637
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
604
638
|
}
|
605
639
|
UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(validate_FieldRules* msg, upb_Arena* arena) {
|
606
640
|
struct validate_SFixed32Rules* sub = (struct validate_SFixed32Rules*)validate_FieldRules_sfixed32(msg);
|
@@ -612,7 +646,8 @@ UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(v
|
|
612
646
|
}
|
613
647
|
UPB_INLINE void validate_FieldRules_set_sfixed64(validate_FieldRules *msg, validate_SFixed64Rules* value) {
|
614
648
|
const upb_MiniTableField field = {12, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
615
|
-
|
649
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed64Rules_msg_init);
|
650
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
616
651
|
}
|
617
652
|
UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(validate_FieldRules* msg, upb_Arena* arena) {
|
618
653
|
struct validate_SFixed64Rules* sub = (struct validate_SFixed64Rules*)validate_FieldRules_sfixed64(msg);
|
@@ -624,7 +659,8 @@ UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(v
|
|
624
659
|
}
|
625
660
|
UPB_INLINE void validate_FieldRules_set_bool(validate_FieldRules *msg, validate_BoolRules* value) {
|
626
661
|
const upb_MiniTableField field = {13, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
627
|
-
|
662
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BoolRules_msg_init);
|
663
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
628
664
|
}
|
629
665
|
UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_FieldRules* msg, upb_Arena* arena) {
|
630
666
|
struct validate_BoolRules* sub = (struct validate_BoolRules*)validate_FieldRules_bool(msg);
|
@@ -636,7 +672,8 @@ UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_
|
|
636
672
|
}
|
637
673
|
UPB_INLINE void validate_FieldRules_set_string(validate_FieldRules *msg, validate_StringRules* value) {
|
638
674
|
const upb_MiniTableField field = {14, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
639
|
-
|
675
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__StringRules_msg_init);
|
676
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
640
677
|
}
|
641
678
|
UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(validate_FieldRules* msg, upb_Arena* arena) {
|
642
679
|
struct validate_StringRules* sub = (struct validate_StringRules*)validate_FieldRules_string(msg);
|
@@ -648,7 +685,8 @@ UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(valid
|
|
648
685
|
}
|
649
686
|
UPB_INLINE void validate_FieldRules_set_bytes(validate_FieldRules *msg, validate_BytesRules* value) {
|
650
687
|
const upb_MiniTableField field = {15, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
651
|
-
|
688
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BytesRules_msg_init);
|
689
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
652
690
|
}
|
653
691
|
UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validate_FieldRules* msg, upb_Arena* arena) {
|
654
692
|
struct validate_BytesRules* sub = (struct validate_BytesRules*)validate_FieldRules_bytes(msg);
|
@@ -660,7 +698,8 @@ UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validat
|
|
660
698
|
}
|
661
699
|
UPB_INLINE void validate_FieldRules_set_enum(validate_FieldRules *msg, validate_EnumRules* value) {
|
662
700
|
const upb_MiniTableField field = {16, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
663
|
-
|
701
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__EnumRules_msg_init);
|
702
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
664
703
|
}
|
665
704
|
UPB_INLINE struct validate_EnumRules* validate_FieldRules_mutable_enum(validate_FieldRules* msg, upb_Arena* arena) {
|
666
705
|
struct validate_EnumRules* sub = (struct validate_EnumRules*)validate_FieldRules_enum(msg);
|
@@ -672,7 +711,8 @@ UPB_INLINE struct validate_EnumRules* validate_FieldRules_mutable_enum(validate_
|
|
672
711
|
}
|
673
712
|
UPB_INLINE void validate_FieldRules_set_message(validate_FieldRules *msg, validate_MessageRules* value) {
|
674
713
|
const upb_MiniTableField field = {17, UPB_SIZE(12, 16), 64, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
675
|
-
|
714
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MessageRules_msg_init);
|
715
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
676
716
|
}
|
677
717
|
UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(validate_FieldRules* msg, upb_Arena* arena) {
|
678
718
|
struct validate_MessageRules* sub = (struct validate_MessageRules*)validate_FieldRules_message(msg);
|
@@ -684,7 +724,8 @@ UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(val
|
|
684
724
|
}
|
685
725
|
UPB_INLINE void validate_FieldRules_set_repeated(validate_FieldRules *msg, validate_RepeatedRules* value) {
|
686
726
|
const upb_MiniTableField field = {18, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
687
|
-
|
727
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__RepeatedRules_msg_init);
|
728
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
688
729
|
}
|
689
730
|
UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(validate_FieldRules* msg, upb_Arena* arena) {
|
690
731
|
struct validate_RepeatedRules* sub = (struct validate_RepeatedRules*)validate_FieldRules_repeated(msg);
|
@@ -696,7 +737,8 @@ UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(v
|
|
696
737
|
}
|
697
738
|
UPB_INLINE void validate_FieldRules_set_map(validate_FieldRules *msg, validate_MapRules* value) {
|
698
739
|
const upb_MiniTableField field = {19, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
699
|
-
|
740
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MapRules_msg_init);
|
741
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
700
742
|
}
|
701
743
|
UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_FieldRules* msg, upb_Arena* arena) {
|
702
744
|
struct validate_MapRules* sub = (struct validate_MapRules*)validate_FieldRules_map(msg);
|
@@ -708,7 +750,8 @@ UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_Fi
|
|
708
750
|
}
|
709
751
|
UPB_INLINE void validate_FieldRules_set_any(validate_FieldRules *msg, validate_AnyRules* value) {
|
710
752
|
const upb_MiniTableField field = {20, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
711
|
-
|
753
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__AnyRules_msg_init);
|
754
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
712
755
|
}
|
713
756
|
UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_FieldRules* msg, upb_Arena* arena) {
|
714
757
|
struct validate_AnyRules* sub = (struct validate_AnyRules*)validate_FieldRules_any(msg);
|
@@ -720,7 +763,8 @@ UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_Fi
|
|
720
763
|
}
|
721
764
|
UPB_INLINE void validate_FieldRules_set_duration(validate_FieldRules *msg, validate_DurationRules* value) {
|
722
765
|
const upb_MiniTableField field = {21, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
723
|
-
|
766
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DurationRules_msg_init);
|
767
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
724
768
|
}
|
725
769
|
UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(validate_FieldRules* msg, upb_Arena* arena) {
|
726
770
|
struct validate_DurationRules* sub = (struct validate_DurationRules*)validate_FieldRules_duration(msg);
|
@@ -732,7 +776,8 @@ UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(v
|
|
732
776
|
}
|
733
777
|
UPB_INLINE void validate_FieldRules_set_timestamp(validate_FieldRules *msg, validate_TimestampRules* value) {
|
734
778
|
const upb_MiniTableField field = {22, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
735
|
-
|
779
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__TimestampRules_msg_init);
|
780
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
736
781
|
}
|
737
782
|
UPB_INLINE struct validate_TimestampRules* validate_FieldRules_mutable_timestamp(validate_FieldRules* msg, upb_Arena* arena) {
|
738
783
|
struct validate_TimestampRules* sub = (struct validate_TimestampRules*)validate_FieldRules_timestamp(msg);
|
@@ -942,23 +987,23 @@ UPB_INLINE bool validate_FloatRules_has_ignore_empty(const validate_FloatRules*
|
|
942
987
|
|
943
988
|
UPB_INLINE void validate_FloatRules_set_const(validate_FloatRules *msg, float value) {
|
944
989
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
945
|
-
|
990
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
946
991
|
}
|
947
992
|
UPB_INLINE void validate_FloatRules_set_lt(validate_FloatRules *msg, float value) {
|
948
993
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
949
|
-
|
994
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
950
995
|
}
|
951
996
|
UPB_INLINE void validate_FloatRules_set_lte(validate_FloatRules *msg, float value) {
|
952
997
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
953
|
-
|
998
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
954
999
|
}
|
955
1000
|
UPB_INLINE void validate_FloatRules_set_gt(validate_FloatRules *msg, float value) {
|
956
1001
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
957
|
-
|
1002
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
958
1003
|
}
|
959
1004
|
UPB_INLINE void validate_FloatRules_set_gte(validate_FloatRules *msg, float value) {
|
960
1005
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
961
|
-
|
1006
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
962
1007
|
}
|
963
1008
|
UPB_INLINE float* validate_FloatRules_mutable_in(validate_FloatRules* msg, size_t* size) {
|
964
1009
|
upb_MiniTableField field = {6, UPB_SIZE(32, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -1018,7 +1063,7 @@ UPB_INLINE bool validate_FloatRules_add_not_in(validate_FloatRules* msg, float v
|
|
1018
1063
|
}
|
1019
1064
|
UPB_INLINE void validate_FloatRules_set_ignore_empty(validate_FloatRules *msg, bool value) {
|
1020
1065
|
const upb_MiniTableField field = {8, UPB_SIZE(40, 32), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1021
|
-
|
1066
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1022
1067
|
}
|
1023
1068
|
|
1024
1069
|
/* validate.DoubleRules */
|
@@ -1220,23 +1265,23 @@ UPB_INLINE bool validate_DoubleRules_has_ignore_empty(const validate_DoubleRules
|
|
1220
1265
|
|
1221
1266
|
UPB_INLINE void validate_DoubleRules_set_const(validate_DoubleRules *msg, double value) {
|
1222
1267
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1223
|
-
|
1268
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1224
1269
|
}
|
1225
1270
|
UPB_INLINE void validate_DoubleRules_set_lt(validate_DoubleRules *msg, double value) {
|
1226
1271
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1227
|
-
|
1272
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1228
1273
|
}
|
1229
1274
|
UPB_INLINE void validate_DoubleRules_set_lte(validate_DoubleRules *msg, double value) {
|
1230
1275
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1231
|
-
|
1276
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1232
1277
|
}
|
1233
1278
|
UPB_INLINE void validate_DoubleRules_set_gt(validate_DoubleRules *msg, double value) {
|
1234
1279
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1235
|
-
|
1280
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1236
1281
|
}
|
1237
1282
|
UPB_INLINE void validate_DoubleRules_set_gte(validate_DoubleRules *msg, double value) {
|
1238
1283
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1239
|
-
|
1284
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1240
1285
|
}
|
1241
1286
|
UPB_INLINE double* validate_DoubleRules_mutable_in(validate_DoubleRules* msg, size_t* size) {
|
1242
1287
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -1296,7 +1341,7 @@ UPB_INLINE bool validate_DoubleRules_add_not_in(validate_DoubleRules* msg, doubl
|
|
1296
1341
|
}
|
1297
1342
|
UPB_INLINE void validate_DoubleRules_set_ignore_empty(validate_DoubleRules *msg, bool value) {
|
1298
1343
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 9), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1299
|
-
|
1344
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1300
1345
|
}
|
1301
1346
|
|
1302
1347
|
/* validate.Int32Rules */
|
@@ -1498,23 +1543,23 @@ UPB_INLINE bool validate_Int32Rules_has_ignore_empty(const validate_Int32Rules*
|
|
1498
1543
|
|
1499
1544
|
UPB_INLINE void validate_Int32Rules_set_const(validate_Int32Rules *msg, int32_t value) {
|
1500
1545
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1501
|
-
|
1546
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1502
1547
|
}
|
1503
1548
|
UPB_INLINE void validate_Int32Rules_set_lt(validate_Int32Rules *msg, int32_t value) {
|
1504
1549
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1505
|
-
|
1550
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1506
1551
|
}
|
1507
1552
|
UPB_INLINE void validate_Int32Rules_set_lte(validate_Int32Rules *msg, int32_t value) {
|
1508
1553
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1509
|
-
|
1554
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1510
1555
|
}
|
1511
1556
|
UPB_INLINE void validate_Int32Rules_set_gt(validate_Int32Rules *msg, int32_t value) {
|
1512
1557
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1513
|
-
|
1558
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1514
1559
|
}
|
1515
1560
|
UPB_INLINE void validate_Int32Rules_set_gte(validate_Int32Rules *msg, int32_t value) {
|
1516
1561
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1517
|
-
|
1562
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1518
1563
|
}
|
1519
1564
|
UPB_INLINE int32_t* validate_Int32Rules_mutable_in(validate_Int32Rules* msg, size_t* size) {
|
1520
1565
|
upb_MiniTableField field = {6, UPB_SIZE(32, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -1574,7 +1619,7 @@ UPB_INLINE bool validate_Int32Rules_add_not_in(validate_Int32Rules* msg, int32_t
|
|
1574
1619
|
}
|
1575
1620
|
UPB_INLINE void validate_Int32Rules_set_ignore_empty(validate_Int32Rules *msg, bool value) {
|
1576
1621
|
const upb_MiniTableField field = {8, UPB_SIZE(40, 32), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1577
|
-
|
1622
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1578
1623
|
}
|
1579
1624
|
|
1580
1625
|
/* validate.Int64Rules */
|
@@ -1776,23 +1821,23 @@ UPB_INLINE bool validate_Int64Rules_has_ignore_empty(const validate_Int64Rules*
|
|
1776
1821
|
|
1777
1822
|
UPB_INLINE void validate_Int64Rules_set_const(validate_Int64Rules *msg, int64_t value) {
|
1778
1823
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1779
|
-
|
1824
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1780
1825
|
}
|
1781
1826
|
UPB_INLINE void validate_Int64Rules_set_lt(validate_Int64Rules *msg, int64_t value) {
|
1782
1827
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1783
|
-
|
1828
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1784
1829
|
}
|
1785
1830
|
UPB_INLINE void validate_Int64Rules_set_lte(validate_Int64Rules *msg, int64_t value) {
|
1786
1831
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1787
|
-
|
1832
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1788
1833
|
}
|
1789
1834
|
UPB_INLINE void validate_Int64Rules_set_gt(validate_Int64Rules *msg, int64_t value) {
|
1790
1835
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1791
|
-
|
1836
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1792
1837
|
}
|
1793
1838
|
UPB_INLINE void validate_Int64Rules_set_gte(validate_Int64Rules *msg, int64_t value) {
|
1794
1839
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1795
|
-
|
1840
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1796
1841
|
}
|
1797
1842
|
UPB_INLINE int64_t* validate_Int64Rules_mutable_in(validate_Int64Rules* msg, size_t* size) {
|
1798
1843
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -1852,7 +1897,7 @@ UPB_INLINE bool validate_Int64Rules_add_not_in(validate_Int64Rules* msg, int64_t
|
|
1852
1897
|
}
|
1853
1898
|
UPB_INLINE void validate_Int64Rules_set_ignore_empty(validate_Int64Rules *msg, bool value) {
|
1854
1899
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 9), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1855
|
-
|
1900
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1856
1901
|
}
|
1857
1902
|
|
1858
1903
|
/* validate.UInt32Rules */
|
@@ -2054,23 +2099,23 @@ UPB_INLINE bool validate_UInt32Rules_has_ignore_empty(const validate_UInt32Rules
|
|
2054
2099
|
|
2055
2100
|
UPB_INLINE void validate_UInt32Rules_set_const(validate_UInt32Rules *msg, uint32_t value) {
|
2056
2101
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2057
|
-
|
2102
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2058
2103
|
}
|
2059
2104
|
UPB_INLINE void validate_UInt32Rules_set_lt(validate_UInt32Rules *msg, uint32_t value) {
|
2060
2105
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2061
|
-
|
2106
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2062
2107
|
}
|
2063
2108
|
UPB_INLINE void validate_UInt32Rules_set_lte(validate_UInt32Rules *msg, uint32_t value) {
|
2064
2109
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2065
|
-
|
2110
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2066
2111
|
}
|
2067
2112
|
UPB_INLINE void validate_UInt32Rules_set_gt(validate_UInt32Rules *msg, uint32_t value) {
|
2068
2113
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2069
|
-
|
2114
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2070
2115
|
}
|
2071
2116
|
UPB_INLINE void validate_UInt32Rules_set_gte(validate_UInt32Rules *msg, uint32_t value) {
|
2072
2117
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2073
|
-
|
2118
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2074
2119
|
}
|
2075
2120
|
UPB_INLINE uint32_t* validate_UInt32Rules_mutable_in(validate_UInt32Rules* msg, size_t* size) {
|
2076
2121
|
upb_MiniTableField field = {6, UPB_SIZE(32, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -2130,7 +2175,7 @@ UPB_INLINE bool validate_UInt32Rules_add_not_in(validate_UInt32Rules* msg, uint3
|
|
2130
2175
|
}
|
2131
2176
|
UPB_INLINE void validate_UInt32Rules_set_ignore_empty(validate_UInt32Rules *msg, bool value) {
|
2132
2177
|
const upb_MiniTableField field = {8, UPB_SIZE(40, 32), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2133
|
-
|
2178
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2134
2179
|
}
|
2135
2180
|
|
2136
2181
|
/* validate.UInt64Rules */
|
@@ -2332,23 +2377,23 @@ UPB_INLINE bool validate_UInt64Rules_has_ignore_empty(const validate_UInt64Rules
|
|
2332
2377
|
|
2333
2378
|
UPB_INLINE void validate_UInt64Rules_set_const(validate_UInt64Rules *msg, uint64_t value) {
|
2334
2379
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2335
|
-
|
2380
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2336
2381
|
}
|
2337
2382
|
UPB_INLINE void validate_UInt64Rules_set_lt(validate_UInt64Rules *msg, uint64_t value) {
|
2338
2383
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2339
|
-
|
2384
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2340
2385
|
}
|
2341
2386
|
UPB_INLINE void validate_UInt64Rules_set_lte(validate_UInt64Rules *msg, uint64_t value) {
|
2342
2387
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2343
|
-
|
2388
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2344
2389
|
}
|
2345
2390
|
UPB_INLINE void validate_UInt64Rules_set_gt(validate_UInt64Rules *msg, uint64_t value) {
|
2346
2391
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2347
|
-
|
2392
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2348
2393
|
}
|
2349
2394
|
UPB_INLINE void validate_UInt64Rules_set_gte(validate_UInt64Rules *msg, uint64_t value) {
|
2350
2395
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2351
|
-
|
2396
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2352
2397
|
}
|
2353
2398
|
UPB_INLINE uint64_t* validate_UInt64Rules_mutable_in(validate_UInt64Rules* msg, size_t* size) {
|
2354
2399
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -2408,7 +2453,7 @@ UPB_INLINE bool validate_UInt64Rules_add_not_in(validate_UInt64Rules* msg, uint6
|
|
2408
2453
|
}
|
2409
2454
|
UPB_INLINE void validate_UInt64Rules_set_ignore_empty(validate_UInt64Rules *msg, bool value) {
|
2410
2455
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 9), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2411
|
-
|
2456
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2412
2457
|
}
|
2413
2458
|
|
2414
2459
|
/* validate.SInt32Rules */
|
@@ -2610,23 +2655,23 @@ UPB_INLINE bool validate_SInt32Rules_has_ignore_empty(const validate_SInt32Rules
|
|
2610
2655
|
|
2611
2656
|
UPB_INLINE void validate_SInt32Rules_set_const(validate_SInt32Rules *msg, int32_t value) {
|
2612
2657
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2613
|
-
|
2658
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2614
2659
|
}
|
2615
2660
|
UPB_INLINE void validate_SInt32Rules_set_lt(validate_SInt32Rules *msg, int32_t value) {
|
2616
2661
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2617
|
-
|
2662
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2618
2663
|
}
|
2619
2664
|
UPB_INLINE void validate_SInt32Rules_set_lte(validate_SInt32Rules *msg, int32_t value) {
|
2620
2665
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2621
|
-
|
2666
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2622
2667
|
}
|
2623
2668
|
UPB_INLINE void validate_SInt32Rules_set_gt(validate_SInt32Rules *msg, int32_t value) {
|
2624
2669
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2625
|
-
|
2670
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2626
2671
|
}
|
2627
2672
|
UPB_INLINE void validate_SInt32Rules_set_gte(validate_SInt32Rules *msg, int32_t value) {
|
2628
2673
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2629
|
-
|
2674
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2630
2675
|
}
|
2631
2676
|
UPB_INLINE int32_t* validate_SInt32Rules_mutable_in(validate_SInt32Rules* msg, size_t* size) {
|
2632
2677
|
upb_MiniTableField field = {6, UPB_SIZE(32, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -2686,7 +2731,7 @@ UPB_INLINE bool validate_SInt32Rules_add_not_in(validate_SInt32Rules* msg, int32
|
|
2686
2731
|
}
|
2687
2732
|
UPB_INLINE void validate_SInt32Rules_set_ignore_empty(validate_SInt32Rules *msg, bool value) {
|
2688
2733
|
const upb_MiniTableField field = {8, UPB_SIZE(40, 32), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2689
|
-
|
2734
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2690
2735
|
}
|
2691
2736
|
|
2692
2737
|
/* validate.SInt64Rules */
|
@@ -2888,23 +2933,23 @@ UPB_INLINE bool validate_SInt64Rules_has_ignore_empty(const validate_SInt64Rules
|
|
2888
2933
|
|
2889
2934
|
UPB_INLINE void validate_SInt64Rules_set_const(validate_SInt64Rules *msg, int64_t value) {
|
2890
2935
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2891
|
-
|
2936
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2892
2937
|
}
|
2893
2938
|
UPB_INLINE void validate_SInt64Rules_set_lt(validate_SInt64Rules *msg, int64_t value) {
|
2894
2939
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2895
|
-
|
2940
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2896
2941
|
}
|
2897
2942
|
UPB_INLINE void validate_SInt64Rules_set_lte(validate_SInt64Rules *msg, int64_t value) {
|
2898
2943
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2899
|
-
|
2944
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2900
2945
|
}
|
2901
2946
|
UPB_INLINE void validate_SInt64Rules_set_gt(validate_SInt64Rules *msg, int64_t value) {
|
2902
2947
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2903
|
-
|
2948
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2904
2949
|
}
|
2905
2950
|
UPB_INLINE void validate_SInt64Rules_set_gte(validate_SInt64Rules *msg, int64_t value) {
|
2906
2951
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2907
|
-
|
2952
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2908
2953
|
}
|
2909
2954
|
UPB_INLINE int64_t* validate_SInt64Rules_mutable_in(validate_SInt64Rules* msg, size_t* size) {
|
2910
2955
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 18, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -2964,7 +3009,7 @@ UPB_INLINE bool validate_SInt64Rules_add_not_in(validate_SInt64Rules* msg, int64
|
|
2964
3009
|
}
|
2965
3010
|
UPB_INLINE void validate_SInt64Rules_set_ignore_empty(validate_SInt64Rules *msg, bool value) {
|
2966
3011
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 9), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2967
|
-
|
3012
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2968
3013
|
}
|
2969
3014
|
|
2970
3015
|
/* validate.Fixed32Rules */
|
@@ -3166,23 +3211,23 @@ UPB_INLINE bool validate_Fixed32Rules_has_ignore_empty(const validate_Fixed32Rul
|
|
3166
3211
|
|
3167
3212
|
UPB_INLINE void validate_Fixed32Rules_set_const(validate_Fixed32Rules *msg, uint32_t value) {
|
3168
3213
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3169
|
-
|
3214
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3170
3215
|
}
|
3171
3216
|
UPB_INLINE void validate_Fixed32Rules_set_lt(validate_Fixed32Rules *msg, uint32_t value) {
|
3172
3217
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3173
|
-
|
3218
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3174
3219
|
}
|
3175
3220
|
UPB_INLINE void validate_Fixed32Rules_set_lte(validate_Fixed32Rules *msg, uint32_t value) {
|
3176
3221
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3177
|
-
|
3222
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3178
3223
|
}
|
3179
3224
|
UPB_INLINE void validate_Fixed32Rules_set_gt(validate_Fixed32Rules *msg, uint32_t value) {
|
3180
3225
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3181
|
-
|
3226
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3182
3227
|
}
|
3183
3228
|
UPB_INLINE void validate_Fixed32Rules_set_gte(validate_Fixed32Rules *msg, uint32_t value) {
|
3184
3229
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3185
|
-
|
3230
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3186
3231
|
}
|
3187
3232
|
UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_in(validate_Fixed32Rules* msg, size_t* size) {
|
3188
3233
|
upb_MiniTableField field = {6, UPB_SIZE(32, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -3242,7 +3287,7 @@ UPB_INLINE bool validate_Fixed32Rules_add_not_in(validate_Fixed32Rules* msg, uin
|
|
3242
3287
|
}
|
3243
3288
|
UPB_INLINE void validate_Fixed32Rules_set_ignore_empty(validate_Fixed32Rules *msg, bool value) {
|
3244
3289
|
const upb_MiniTableField field = {8, UPB_SIZE(40, 32), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3245
|
-
|
3290
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3246
3291
|
}
|
3247
3292
|
|
3248
3293
|
/* validate.Fixed64Rules */
|
@@ -3444,23 +3489,23 @@ UPB_INLINE bool validate_Fixed64Rules_has_ignore_empty(const validate_Fixed64Rul
|
|
3444
3489
|
|
3445
3490
|
UPB_INLINE void validate_Fixed64Rules_set_const(validate_Fixed64Rules *msg, uint64_t value) {
|
3446
3491
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3447
|
-
|
3492
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3448
3493
|
}
|
3449
3494
|
UPB_INLINE void validate_Fixed64Rules_set_lt(validate_Fixed64Rules *msg, uint64_t value) {
|
3450
3495
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3451
|
-
|
3496
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3452
3497
|
}
|
3453
3498
|
UPB_INLINE void validate_Fixed64Rules_set_lte(validate_Fixed64Rules *msg, uint64_t value) {
|
3454
3499
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3455
|
-
|
3500
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3456
3501
|
}
|
3457
3502
|
UPB_INLINE void validate_Fixed64Rules_set_gt(validate_Fixed64Rules *msg, uint64_t value) {
|
3458
3503
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3459
|
-
|
3504
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3460
3505
|
}
|
3461
3506
|
UPB_INLINE void validate_Fixed64Rules_set_gte(validate_Fixed64Rules *msg, uint64_t value) {
|
3462
3507
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3463
|
-
|
3508
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3464
3509
|
}
|
3465
3510
|
UPB_INLINE uint64_t* validate_Fixed64Rules_mutable_in(validate_Fixed64Rules* msg, size_t* size) {
|
3466
3511
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 6, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -3520,7 +3565,7 @@ UPB_INLINE bool validate_Fixed64Rules_add_not_in(validate_Fixed64Rules* msg, uin
|
|
3520
3565
|
}
|
3521
3566
|
UPB_INLINE void validate_Fixed64Rules_set_ignore_empty(validate_Fixed64Rules *msg, bool value) {
|
3522
3567
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 9), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3523
|
-
|
3568
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3524
3569
|
}
|
3525
3570
|
|
3526
3571
|
/* validate.SFixed32Rules */
|
@@ -3722,23 +3767,23 @@ UPB_INLINE bool validate_SFixed32Rules_has_ignore_empty(const validate_SFixed32R
|
|
3722
3767
|
|
3723
3768
|
UPB_INLINE void validate_SFixed32Rules_set_const(validate_SFixed32Rules *msg, int32_t value) {
|
3724
3769
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3725
|
-
|
3770
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3726
3771
|
}
|
3727
3772
|
UPB_INLINE void validate_SFixed32Rules_set_lt(validate_SFixed32Rules *msg, int32_t value) {
|
3728
3773
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3729
|
-
|
3774
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3730
3775
|
}
|
3731
3776
|
UPB_INLINE void validate_SFixed32Rules_set_lte(validate_SFixed32Rules *msg, int32_t value) {
|
3732
3777
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3733
|
-
|
3778
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3734
3779
|
}
|
3735
3780
|
UPB_INLINE void validate_SFixed32Rules_set_gt(validate_SFixed32Rules *msg, int32_t value) {
|
3736
3781
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3737
|
-
|
3782
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3738
3783
|
}
|
3739
3784
|
UPB_INLINE void validate_SFixed32Rules_set_gte(validate_SFixed32Rules *msg, int32_t value) {
|
3740
3785
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3741
|
-
|
3786
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3742
3787
|
}
|
3743
3788
|
UPB_INLINE int32_t* validate_SFixed32Rules_mutable_in(validate_SFixed32Rules* msg, size_t* size) {
|
3744
3789
|
upb_MiniTableField field = {6, UPB_SIZE(32, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -3798,7 +3843,7 @@ UPB_INLINE bool validate_SFixed32Rules_add_not_in(validate_SFixed32Rules* msg, i
|
|
3798
3843
|
}
|
3799
3844
|
UPB_INLINE void validate_SFixed32Rules_set_ignore_empty(validate_SFixed32Rules *msg, bool value) {
|
3800
3845
|
const upb_MiniTableField field = {8, UPB_SIZE(40, 32), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3801
|
-
|
3846
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3802
3847
|
}
|
3803
3848
|
|
3804
3849
|
/* validate.SFixed64Rules */
|
@@ -4000,23 +4045,23 @@ UPB_INLINE bool validate_SFixed64Rules_has_ignore_empty(const validate_SFixed64R
|
|
4000
4045
|
|
4001
4046
|
UPB_INLINE void validate_SFixed64Rules_set_const(validate_SFixed64Rules *msg, int64_t value) {
|
4002
4047
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4003
|
-
|
4048
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4004
4049
|
}
|
4005
4050
|
UPB_INLINE void validate_SFixed64Rules_set_lt(validate_SFixed64Rules *msg, int64_t value) {
|
4006
4051
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4007
|
-
|
4052
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4008
4053
|
}
|
4009
4054
|
UPB_INLINE void validate_SFixed64Rules_set_lte(validate_SFixed64Rules *msg, int64_t value) {
|
4010
4055
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4011
|
-
|
4056
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4012
4057
|
}
|
4013
4058
|
UPB_INLINE void validate_SFixed64Rules_set_gt(validate_SFixed64Rules *msg, int64_t value) {
|
4014
4059
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4015
|
-
|
4060
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4016
4061
|
}
|
4017
4062
|
UPB_INLINE void validate_SFixed64Rules_set_gte(validate_SFixed64Rules *msg, int64_t value) {
|
4018
4063
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4019
|
-
|
4064
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4020
4065
|
}
|
4021
4066
|
UPB_INLINE int64_t* validate_SFixed64Rules_mutable_in(validate_SFixed64Rules* msg, size_t* size) {
|
4022
4067
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 16, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -4076,7 +4121,7 @@ UPB_INLINE bool validate_SFixed64Rules_add_not_in(validate_SFixed64Rules* msg, i
|
|
4076
4121
|
}
|
4077
4122
|
UPB_INLINE void validate_SFixed64Rules_set_ignore_empty(validate_SFixed64Rules *msg, bool value) {
|
4078
4123
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 9), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4079
|
-
|
4124
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4080
4125
|
}
|
4081
4126
|
|
4082
4127
|
/* validate.BoolRules */
|
@@ -4134,7 +4179,7 @@ UPB_INLINE bool validate_BoolRules_has_const(const validate_BoolRules* msg) {
|
|
4134
4179
|
|
4135
4180
|
UPB_INLINE void validate_BoolRules_set_const(validate_BoolRules *msg, bool value) {
|
4136
4181
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4137
|
-
|
4182
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4138
4183
|
}
|
4139
4184
|
|
4140
4185
|
/* validate.StringRules */
|
@@ -4642,39 +4687,39 @@ UPB_INLINE bool validate_StringRules_has_ignore_empty(const validate_StringRules
|
|
4642
4687
|
|
4643
4688
|
UPB_INLINE void validate_StringRules_set_const(validate_StringRules *msg, upb_StringView value) {
|
4644
4689
|
const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4645
|
-
|
4690
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4646
4691
|
}
|
4647
4692
|
UPB_INLINE void validate_StringRules_set_min_len(validate_StringRules *msg, uint64_t value) {
|
4648
4693
|
const upb_MiniTableField field = {2, 40, 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4649
|
-
|
4694
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4650
4695
|
}
|
4651
4696
|
UPB_INLINE void validate_StringRules_set_max_len(validate_StringRules *msg, uint64_t value) {
|
4652
4697
|
const upb_MiniTableField field = {3, 48, 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4653
|
-
|
4698
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4654
4699
|
}
|
4655
4700
|
UPB_INLINE void validate_StringRules_set_min_bytes(validate_StringRules *msg, uint64_t value) {
|
4656
4701
|
const upb_MiniTableField field = {4, 56, 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4657
|
-
|
4702
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4658
4703
|
}
|
4659
4704
|
UPB_INLINE void validate_StringRules_set_max_bytes(validate_StringRules *msg, uint64_t value) {
|
4660
4705
|
const upb_MiniTableField field = {5, 64, 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4661
|
-
|
4706
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4662
4707
|
}
|
4663
4708
|
UPB_INLINE void validate_StringRules_set_pattern(validate_StringRules *msg, upb_StringView value) {
|
4664
4709
|
const upb_MiniTableField field = {6, 72, 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4665
|
-
|
4710
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4666
4711
|
}
|
4667
4712
|
UPB_INLINE void validate_StringRules_set_prefix(validate_StringRules *msg, upb_StringView value) {
|
4668
4713
|
const upb_MiniTableField field = {7, UPB_SIZE(80, 88), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4669
|
-
|
4714
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4670
4715
|
}
|
4671
4716
|
UPB_INLINE void validate_StringRules_set_suffix(validate_StringRules *msg, upb_StringView value) {
|
4672
4717
|
const upb_MiniTableField field = {8, UPB_SIZE(88, 104), 71, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4673
|
-
|
4718
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4674
4719
|
}
|
4675
4720
|
UPB_INLINE void validate_StringRules_set_contains(validate_StringRules *msg, upb_StringView value) {
|
4676
4721
|
const upb_MiniTableField field = {9, UPB_SIZE(96, 120), 72, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4677
|
-
|
4722
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4678
4723
|
}
|
4679
4724
|
UPB_INLINE upb_StringView* validate_StringRules_mutable_in(validate_StringRules* msg, size_t* size) {
|
4680
4725
|
upb_MiniTableField field = {10, UPB_SIZE(12, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -4734,63 +4779,63 @@ UPB_INLINE bool validate_StringRules_add_not_in(validate_StringRules* msg, upb_S
|
|
4734
4779
|
}
|
4735
4780
|
UPB_INLINE void validate_StringRules_set_email(validate_StringRules *msg, bool value) {
|
4736
4781
|
const upb_MiniTableField field = {12, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4737
|
-
|
4782
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4738
4783
|
}
|
4739
4784
|
UPB_INLINE void validate_StringRules_set_hostname(validate_StringRules *msg, bool value) {
|
4740
4785
|
const upb_MiniTableField field = {13, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4741
|
-
|
4786
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4742
4787
|
}
|
4743
4788
|
UPB_INLINE void validate_StringRules_set_ip(validate_StringRules *msg, bool value) {
|
4744
4789
|
const upb_MiniTableField field = {14, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4745
|
-
|
4790
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4746
4791
|
}
|
4747
4792
|
UPB_INLINE void validate_StringRules_set_ipv4(validate_StringRules *msg, bool value) {
|
4748
4793
|
const upb_MiniTableField field = {15, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4749
|
-
|
4794
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4750
4795
|
}
|
4751
4796
|
UPB_INLINE void validate_StringRules_set_ipv6(validate_StringRules *msg, bool value) {
|
4752
4797
|
const upb_MiniTableField field = {16, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4753
|
-
|
4798
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4754
4799
|
}
|
4755
4800
|
UPB_INLINE void validate_StringRules_set_uri(validate_StringRules *msg, bool value) {
|
4756
4801
|
const upb_MiniTableField field = {17, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4757
|
-
|
4802
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4758
4803
|
}
|
4759
4804
|
UPB_INLINE void validate_StringRules_set_uri_ref(validate_StringRules *msg, bool value) {
|
4760
4805
|
const upb_MiniTableField field = {18, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4761
|
-
|
4806
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4762
4807
|
}
|
4763
4808
|
UPB_INLINE void validate_StringRules_set_len(validate_StringRules *msg, uint64_t value) {
|
4764
4809
|
const upb_MiniTableField field = {19, UPB_SIZE(104, 152), 73, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4765
|
-
|
4810
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4766
4811
|
}
|
4767
4812
|
UPB_INLINE void validate_StringRules_set_len_bytes(validate_StringRules *msg, uint64_t value) {
|
4768
4813
|
const upb_MiniTableField field = {20, UPB_SIZE(112, 160), 74, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4769
|
-
|
4814
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4770
4815
|
}
|
4771
4816
|
UPB_INLINE void validate_StringRules_set_address(validate_StringRules *msg, bool value) {
|
4772
4817
|
const upb_MiniTableField field = {21, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4773
|
-
|
4818
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4774
4819
|
}
|
4775
4820
|
UPB_INLINE void validate_StringRules_set_uuid(validate_StringRules *msg, bool value) {
|
4776
4821
|
const upb_MiniTableField field = {22, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4777
|
-
|
4822
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4778
4823
|
}
|
4779
4824
|
UPB_INLINE void validate_StringRules_set_not_contains(validate_StringRules *msg, upb_StringView value) {
|
4780
4825
|
const upb_MiniTableField field = {23, UPB_SIZE(120, 168), 75, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4781
|
-
|
4826
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4782
4827
|
}
|
4783
4828
|
UPB_INLINE void validate_StringRules_set_well_known_regex(validate_StringRules *msg, int32_t value) {
|
4784
4829
|
const upb_MiniTableField field = {24, UPB_SIZE(28, 20), UPB_SIZE(-21, -13), 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
4785
|
-
|
4830
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4786
4831
|
}
|
4787
4832
|
UPB_INLINE void validate_StringRules_set_strict(validate_StringRules *msg, bool value) {
|
4788
4833
|
const upb_MiniTableField field = {25, UPB_SIZE(24, 16), 76, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4789
|
-
|
4834
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4790
4835
|
}
|
4791
4836
|
UPB_INLINE void validate_StringRules_set_ignore_empty(validate_StringRules *msg, bool value) {
|
4792
4837
|
const upb_MiniTableField field = {26, UPB_SIZE(25, 17), 77, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4793
|
-
|
4838
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4794
4839
|
}
|
4795
4840
|
|
4796
4841
|
/* validate.BytesRules */
|
@@ -5099,31 +5144,31 @@ UPB_INLINE bool validate_BytesRules_has_ignore_empty(const validate_BytesRules*
|
|
5099
5144
|
|
5100
5145
|
UPB_INLINE void validate_BytesRules_set_const(validate_BytesRules *msg, upb_StringView value) {
|
5101
5146
|
const upb_MiniTableField field = {1, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5102
|
-
|
5147
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5103
5148
|
}
|
5104
5149
|
UPB_INLINE void validate_BytesRules_set_min_len(validate_BytesRules *msg, uint64_t value) {
|
5105
5150
|
const upb_MiniTableField field = {2, 40, 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5106
|
-
|
5151
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5107
5152
|
}
|
5108
5153
|
UPB_INLINE void validate_BytesRules_set_max_len(validate_BytesRules *msg, uint64_t value) {
|
5109
5154
|
const upb_MiniTableField field = {3, 48, 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5110
|
-
|
5155
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5111
5156
|
}
|
5112
5157
|
UPB_INLINE void validate_BytesRules_set_pattern(validate_BytesRules *msg, upb_StringView value) {
|
5113
5158
|
const upb_MiniTableField field = {4, 56, 67, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5114
|
-
|
5159
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5115
5160
|
}
|
5116
5161
|
UPB_INLINE void validate_BytesRules_set_prefix(validate_BytesRules *msg, upb_StringView value) {
|
5117
5162
|
const upb_MiniTableField field = {5, UPB_SIZE(64, 72), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5118
|
-
|
5163
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5119
5164
|
}
|
5120
5165
|
UPB_INLINE void validate_BytesRules_set_suffix(validate_BytesRules *msg, upb_StringView value) {
|
5121
5166
|
const upb_MiniTableField field = {6, UPB_SIZE(72, 88), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5122
|
-
|
5167
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5123
5168
|
}
|
5124
5169
|
UPB_INLINE void validate_BytesRules_set_contains(validate_BytesRules *msg, upb_StringView value) {
|
5125
5170
|
const upb_MiniTableField field = {7, UPB_SIZE(80, 104), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5126
|
-
|
5171
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5127
5172
|
}
|
5128
5173
|
UPB_INLINE upb_StringView* validate_BytesRules_mutable_in(validate_BytesRules* msg, size_t* size) {
|
5129
5174
|
upb_MiniTableField field = {8, UPB_SIZE(12, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -5183,23 +5228,23 @@ UPB_INLINE bool validate_BytesRules_add_not_in(validate_BytesRules* msg, upb_Str
|
|
5183
5228
|
}
|
5184
5229
|
UPB_INLINE void validate_BytesRules_set_ip(validate_BytesRules *msg, bool value) {
|
5185
5230
|
const upb_MiniTableField field = {10, 10, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5186
|
-
|
5231
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5187
5232
|
}
|
5188
5233
|
UPB_INLINE void validate_BytesRules_set_ipv4(validate_BytesRules *msg, bool value) {
|
5189
5234
|
const upb_MiniTableField field = {11, 10, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5190
|
-
|
5235
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5191
5236
|
}
|
5192
5237
|
UPB_INLINE void validate_BytesRules_set_ipv6(validate_BytesRules *msg, bool value) {
|
5193
5238
|
const upb_MiniTableField field = {12, 10, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5194
|
-
|
5239
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5195
5240
|
}
|
5196
5241
|
UPB_INLINE void validate_BytesRules_set_len(validate_BytesRules *msg, uint64_t value) {
|
5197
5242
|
const upb_MiniTableField field = {13, UPB_SIZE(88, 136), 71, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5198
|
-
|
5243
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5199
5244
|
}
|
5200
5245
|
UPB_INLINE void validate_BytesRules_set_ignore_empty(validate_BytesRules *msg, bool value) {
|
5201
5246
|
const upb_MiniTableField field = {14, UPB_SIZE(24, 16), 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5202
|
-
|
5247
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5203
5248
|
}
|
5204
5249
|
|
5205
5250
|
/* validate.EnumRules */
|
@@ -5337,11 +5382,11 @@ UPB_INLINE upb_Array* _validate_EnumRules_not_in_mutable_upb_array(validate_Enum
|
|
5337
5382
|
|
5338
5383
|
UPB_INLINE void validate_EnumRules_set_const(validate_EnumRules *msg, int32_t value) {
|
5339
5384
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
5340
|
-
|
5385
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5341
5386
|
}
|
5342
5387
|
UPB_INLINE void validate_EnumRules_set_defined_only(validate_EnumRules *msg, bool value) {
|
5343
5388
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5344
|
-
|
5389
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5345
5390
|
}
|
5346
5391
|
UPB_INLINE int32_t* validate_EnumRules_mutable_in(validate_EnumRules* msg, size_t* size) {
|
5347
5392
|
upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -5471,11 +5516,11 @@ UPB_INLINE bool validate_MessageRules_has_required(const validate_MessageRules*
|
|
5471
5516
|
|
5472
5517
|
UPB_INLINE void validate_MessageRules_set_skip(validate_MessageRules *msg, bool value) {
|
5473
5518
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5474
|
-
|
5519
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5475
5520
|
}
|
5476
5521
|
UPB_INLINE void validate_MessageRules_set_required(validate_MessageRules *msg, bool value) {
|
5477
5522
|
const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5478
|
-
|
5523
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5479
5524
|
}
|
5480
5525
|
|
5481
5526
|
/* validate.RepeatedRules */
|
@@ -5570,6 +5615,7 @@ UPB_INLINE const validate_FieldRules* validate_RepeatedRules_items(const validat
|
|
5570
5615
|
const validate_FieldRules* default_val = NULL;
|
5571
5616
|
const validate_FieldRules* ret;
|
5572
5617
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5618
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5573
5619
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5574
5620
|
&default_val, &ret);
|
5575
5621
|
return ret;
|
@@ -5597,19 +5643,20 @@ UPB_INLINE bool validate_RepeatedRules_has_ignore_empty(const validate_RepeatedR
|
|
5597
5643
|
|
5598
5644
|
UPB_INLINE void validate_RepeatedRules_set_min_items(validate_RepeatedRules *msg, uint64_t value) {
|
5599
5645
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5600
|
-
|
5646
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5601
5647
|
}
|
5602
5648
|
UPB_INLINE void validate_RepeatedRules_set_max_items(validate_RepeatedRules *msg, uint64_t value) {
|
5603
5649
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5604
|
-
|
5650
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5605
5651
|
}
|
5606
5652
|
UPB_INLINE void validate_RepeatedRules_set_unique(validate_RepeatedRules *msg, bool value) {
|
5607
5653
|
const upb_MiniTableField field = {3, 9, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5608
|
-
|
5654
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5609
5655
|
}
|
5610
5656
|
UPB_INLINE void validate_RepeatedRules_set_items(validate_RepeatedRules *msg, validate_FieldRules* value) {
|
5611
5657
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5612
|
-
|
5658
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5659
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5613
5660
|
}
|
5614
5661
|
UPB_INLINE struct validate_FieldRules* validate_RepeatedRules_mutable_items(validate_RepeatedRules* msg, upb_Arena* arena) {
|
5615
5662
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_RepeatedRules_items(msg);
|
@@ -5621,7 +5668,7 @@ UPB_INLINE struct validate_FieldRules* validate_RepeatedRules_mutable_items(vali
|
|
5621
5668
|
}
|
5622
5669
|
UPB_INLINE void validate_RepeatedRules_set_ignore_empty(validate_RepeatedRules *msg, bool value) {
|
5623
5670
|
const upb_MiniTableField field = {5, UPB_SIZE(16, 10), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5624
|
-
|
5671
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5625
5672
|
}
|
5626
5673
|
|
5627
5674
|
/* validate.MapRules */
|
@@ -5716,6 +5763,7 @@ UPB_INLINE const validate_FieldRules* validate_MapRules_keys(const validate_MapR
|
|
5716
5763
|
const validate_FieldRules* default_val = NULL;
|
5717
5764
|
const validate_FieldRules* ret;
|
5718
5765
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5766
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5719
5767
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5720
5768
|
&default_val, &ret);
|
5721
5769
|
return ret;
|
@@ -5732,6 +5780,7 @@ UPB_INLINE const validate_FieldRules* validate_MapRules_values(const validate_Ma
|
|
5732
5780
|
const validate_FieldRules* default_val = NULL;
|
5733
5781
|
const validate_FieldRules* ret;
|
5734
5782
|
const upb_MiniTableField field = {5, UPB_SIZE(16, 40), 68, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5783
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5735
5784
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5736
5785
|
&default_val, &ret);
|
5737
5786
|
return ret;
|
@@ -5759,19 +5808,20 @@ UPB_INLINE bool validate_MapRules_has_ignore_empty(const validate_MapRules* msg)
|
|
5759
5808
|
|
5760
5809
|
UPB_INLINE void validate_MapRules_set_min_pairs(validate_MapRules *msg, uint64_t value) {
|
5761
5810
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5762
|
-
|
5811
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5763
5812
|
}
|
5764
5813
|
UPB_INLINE void validate_MapRules_set_max_pairs(validate_MapRules *msg, uint64_t value) {
|
5765
5814
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5766
|
-
|
5815
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5767
5816
|
}
|
5768
5817
|
UPB_INLINE void validate_MapRules_set_no_sparse(validate_MapRules *msg, bool value) {
|
5769
5818
|
const upb_MiniTableField field = {3, 9, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5770
|
-
|
5819
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5771
5820
|
}
|
5772
5821
|
UPB_INLINE void validate_MapRules_set_keys(validate_MapRules *msg, validate_FieldRules* value) {
|
5773
5822
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5774
|
-
|
5823
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5824
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5775
5825
|
}
|
5776
5826
|
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_keys(validate_MapRules* msg, upb_Arena* arena) {
|
5777
5827
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_MapRules_keys(msg);
|
@@ -5783,7 +5833,8 @@ UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_keys(validate_M
|
|
5783
5833
|
}
|
5784
5834
|
UPB_INLINE void validate_MapRules_set_values(validate_MapRules *msg, validate_FieldRules* value) {
|
5785
5835
|
const upb_MiniTableField field = {5, UPB_SIZE(16, 40), 68, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5786
|
-
|
5836
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5837
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5787
5838
|
}
|
5788
5839
|
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_values(validate_MapRules* msg, upb_Arena* arena) {
|
5789
5840
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_MapRules_values(msg);
|
@@ -5795,7 +5846,7 @@ UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_values(validate
|
|
5795
5846
|
}
|
5796
5847
|
UPB_INLINE void validate_MapRules_set_ignore_empty(validate_MapRules *msg, bool value) {
|
5797
5848
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5798
|
-
|
5849
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5799
5850
|
}
|
5800
5851
|
|
5801
5852
|
/* validate.AnyRules */
|
@@ -5917,7 +5968,7 @@ UPB_INLINE upb_Array* _validate_AnyRules_not_in_mutable_upb_array(validate_AnyRu
|
|
5917
5968
|
|
5918
5969
|
UPB_INLINE void validate_AnyRules_set_required(validate_AnyRules *msg, bool value) {
|
5919
5970
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5920
|
-
|
5971
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5921
5972
|
}
|
5922
5973
|
UPB_INLINE upb_StringView* validate_AnyRules_mutable_in(validate_AnyRules* msg, size_t* size) {
|
5923
5974
|
upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -6036,6 +6087,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_const(c
|
|
6036
6087
|
const struct google_protobuf_Duration* default_val = NULL;
|
6037
6088
|
const struct google_protobuf_Duration* ret;
|
6038
6089
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6090
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6039
6091
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6040
6092
|
&default_val, &ret);
|
6041
6093
|
return ret;
|
@@ -6052,6 +6104,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lt(cons
|
|
6052
6104
|
const struct google_protobuf_Duration* default_val = NULL;
|
6053
6105
|
const struct google_protobuf_Duration* ret;
|
6054
6106
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6107
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6055
6108
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6056
6109
|
&default_val, &ret);
|
6057
6110
|
return ret;
|
@@ -6068,6 +6121,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lte(con
|
|
6068
6121
|
const struct google_protobuf_Duration* default_val = NULL;
|
6069
6122
|
const struct google_protobuf_Duration* ret;
|
6070
6123
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6124
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6071
6125
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6072
6126
|
&default_val, &ret);
|
6073
6127
|
return ret;
|
@@ -6084,6 +6138,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gt(cons
|
|
6084
6138
|
const struct google_protobuf_Duration* default_val = NULL;
|
6085
6139
|
const struct google_protobuf_Duration* ret;
|
6086
6140
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6141
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6087
6142
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6088
6143
|
&default_val, &ret);
|
6089
6144
|
return ret;
|
@@ -6100,6 +6155,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gte(con
|
|
6100
6155
|
const struct google_protobuf_Duration* default_val = NULL;
|
6101
6156
|
const struct google_protobuf_Duration* ret;
|
6102
6157
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6158
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6103
6159
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6104
6160
|
&default_val, &ret);
|
6105
6161
|
return ret;
|
@@ -6114,6 +6170,7 @@ UPB_INLINE void validate_DurationRules_clear_in(validate_DurationRules* msg) {
|
|
6114
6170
|
}
|
6115
6171
|
UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_in(const validate_DurationRules* msg, size_t* size) {
|
6116
6172
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6173
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6117
6174
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6118
6175
|
if (arr) {
|
6119
6176
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6125,6 +6182,7 @@ UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_
|
|
6125
6182
|
}
|
6126
6183
|
UPB_INLINE const upb_Array* _validate_DurationRules_in_upb_array(const validate_DurationRules* msg, size_t* size) {
|
6127
6184
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6185
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6128
6186
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6129
6187
|
if (size) {
|
6130
6188
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -6133,6 +6191,7 @@ UPB_INLINE const upb_Array* _validate_DurationRules_in_upb_array(const validate_
|
|
6133
6191
|
}
|
6134
6192
|
UPB_INLINE upb_Array* _validate_DurationRules_in_mutable_upb_array(validate_DurationRules* msg, size_t* size, upb_Arena* arena) {
|
6135
6193
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6194
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6136
6195
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
6137
6196
|
&field, arena);
|
6138
6197
|
if (size) {
|
@@ -6146,6 +6205,7 @@ UPB_INLINE void validate_DurationRules_clear_not_in(validate_DurationRules* msg)
|
|
6146
6205
|
}
|
6147
6206
|
UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_not_in(const validate_DurationRules* msg, size_t* size) {
|
6148
6207
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6208
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6149
6209
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6150
6210
|
if (arr) {
|
6151
6211
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6157,6 +6217,7 @@ UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_
|
|
6157
6217
|
}
|
6158
6218
|
UPB_INLINE const upb_Array* _validate_DurationRules_not_in_upb_array(const validate_DurationRules* msg, size_t* size) {
|
6159
6219
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6220
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6160
6221
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6161
6222
|
if (size) {
|
6162
6223
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -6165,6 +6226,7 @@ UPB_INLINE const upb_Array* _validate_DurationRules_not_in_upb_array(const valid
|
|
6165
6226
|
}
|
6166
6227
|
UPB_INLINE upb_Array* _validate_DurationRules_not_in_mutable_upb_array(validate_DurationRules* msg, size_t* size, upb_Arena* arena) {
|
6167
6228
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6229
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6168
6230
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
6169
6231
|
&field, arena);
|
6170
6232
|
if (size) {
|
@@ -6175,11 +6237,12 @@ UPB_INLINE upb_Array* _validate_DurationRules_not_in_mutable_upb_array(validate_
|
|
6175
6237
|
|
6176
6238
|
UPB_INLINE void validate_DurationRules_set_required(validate_DurationRules *msg, bool value) {
|
6177
6239
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6178
|
-
|
6240
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6179
6241
|
}
|
6180
6242
|
UPB_INLINE void validate_DurationRules_set_const(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6181
6243
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6182
|
-
|
6244
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6245
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6183
6246
|
}
|
6184
6247
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_const(validate_DurationRules* msg, upb_Arena* arena) {
|
6185
6248
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_const(msg);
|
@@ -6191,7 +6254,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_const
|
|
6191
6254
|
}
|
6192
6255
|
UPB_INLINE void validate_DurationRules_set_lt(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6193
6256
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6194
|
-
|
6257
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6258
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6195
6259
|
}
|
6196
6260
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lt(validate_DurationRules* msg, upb_Arena* arena) {
|
6197
6261
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_lt(msg);
|
@@ -6203,7 +6267,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lt(va
|
|
6203
6267
|
}
|
6204
6268
|
UPB_INLINE void validate_DurationRules_set_lte(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6205
6269
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6206
|
-
|
6270
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6271
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6207
6272
|
}
|
6208
6273
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lte(validate_DurationRules* msg, upb_Arena* arena) {
|
6209
6274
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_lte(msg);
|
@@ -6215,7 +6280,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lte(v
|
|
6215
6280
|
}
|
6216
6281
|
UPB_INLINE void validate_DurationRules_set_gt(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6217
6282
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6218
|
-
|
6283
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6284
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6219
6285
|
}
|
6220
6286
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gt(validate_DurationRules* msg, upb_Arena* arena) {
|
6221
6287
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_gt(msg);
|
@@ -6227,7 +6293,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gt(va
|
|
6227
6293
|
}
|
6228
6294
|
UPB_INLINE void validate_DurationRules_set_gte(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6229
6295
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6230
|
-
|
6296
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6297
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6231
6298
|
}
|
6232
6299
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(validate_DurationRules* msg, upb_Arena* arena) {
|
6233
6300
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_gte(msg);
|
@@ -6239,6 +6306,7 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(v
|
|
6239
6306
|
}
|
6240
6307
|
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_mutable_in(validate_DurationRules* msg, size_t* size) {
|
6241
6308
|
upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6309
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6242
6310
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
6243
6311
|
if (arr) {
|
6244
6312
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6255,6 +6323,7 @@ UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_in(va
|
|
6255
6323
|
}
|
6256
6324
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(validate_DurationRules* msg, upb_Arena* arena) {
|
6257
6325
|
upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6326
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6258
6327
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
6259
6328
|
UPB_UPCAST(msg), &field, arena);
|
6260
6329
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -6269,6 +6338,7 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(valida
|
|
6269
6338
|
}
|
6270
6339
|
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_mutable_not_in(validate_DurationRules* msg, size_t* size) {
|
6271
6340
|
upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6341
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6272
6342
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
6273
6343
|
if (arr) {
|
6274
6344
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6285,6 +6355,7 @@ UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_not_i
|
|
6285
6355
|
}
|
6286
6356
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_not_in(validate_DurationRules* msg, upb_Arena* arena) {
|
6287
6357
|
upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6358
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6288
6359
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
6289
6360
|
UPB_UPCAST(msg), &field, arena);
|
6290
6361
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -6358,6 +6429,7 @@ UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_const
|
|
6358
6429
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6359
6430
|
const struct google_protobuf_Timestamp* ret;
|
6360
6431
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6432
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6361
6433
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6362
6434
|
&default_val, &ret);
|
6363
6435
|
return ret;
|
@@ -6374,6 +6446,7 @@ UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lt(co
|
|
6374
6446
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6375
6447
|
const struct google_protobuf_Timestamp* ret;
|
6376
6448
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6449
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6377
6450
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6378
6451
|
&default_val, &ret);
|
6379
6452
|
return ret;
|
@@ -6390,6 +6463,7 @@ UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lte(c
|
|
6390
6463
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6391
6464
|
const struct google_protobuf_Timestamp* ret;
|
6392
6465
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6466
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6393
6467
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6394
6468
|
&default_val, &ret);
|
6395
6469
|
return ret;
|
@@ -6406,6 +6480,7 @@ UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gt(co
|
|
6406
6480
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6407
6481
|
const struct google_protobuf_Timestamp* ret;
|
6408
6482
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6483
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6409
6484
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6410
6485
|
&default_val, &ret);
|
6411
6486
|
return ret;
|
@@ -6422,6 +6497,7 @@ UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gte(c
|
|
6422
6497
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6423
6498
|
const struct google_protobuf_Timestamp* ret;
|
6424
6499
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6500
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6425
6501
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6426
6502
|
&default_val, &ret);
|
6427
6503
|
return ret;
|
@@ -6470,6 +6546,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_TimestampRules_within
|
|
6470
6546
|
const struct google_protobuf_Duration* default_val = NULL;
|
6471
6547
|
const struct google_protobuf_Duration* ret;
|
6472
6548
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 72, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6549
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6473
6550
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6474
6551
|
&default_val, &ret);
|
6475
6552
|
return ret;
|
@@ -6481,11 +6558,12 @@ UPB_INLINE bool validate_TimestampRules_has_within(const validate_TimestampRules
|
|
6481
6558
|
|
6482
6559
|
UPB_INLINE void validate_TimestampRules_set_required(validate_TimestampRules *msg, bool value) {
|
6483
6560
|
const upb_MiniTableField field = {1, 10, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6484
|
-
|
6561
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6485
6562
|
}
|
6486
6563
|
UPB_INLINE void validate_TimestampRules_set_const(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6487
6564
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6488
|
-
|
6565
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6566
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6489
6567
|
}
|
6490
6568
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_const(validate_TimestampRules* msg, upb_Arena* arena) {
|
6491
6569
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_const(msg);
|
@@ -6497,7 +6575,8 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_con
|
|
6497
6575
|
}
|
6498
6576
|
UPB_INLINE void validate_TimestampRules_set_lt(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6499
6577
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6500
|
-
|
6578
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6579
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6501
6580
|
}
|
6502
6581
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lt(validate_TimestampRules* msg, upb_Arena* arena) {
|
6503
6582
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_lt(msg);
|
@@ -6509,7 +6588,8 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lt(
|
|
6509
6588
|
}
|
6510
6589
|
UPB_INLINE void validate_TimestampRules_set_lte(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6511
6590
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6512
|
-
|
6591
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6592
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6513
6593
|
}
|
6514
6594
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lte(validate_TimestampRules* msg, upb_Arena* arena) {
|
6515
6595
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_lte(msg);
|
@@ -6521,7 +6601,8 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lte
|
|
6521
6601
|
}
|
6522
6602
|
UPB_INLINE void validate_TimestampRules_set_gt(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6523
6603
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6524
|
-
|
6604
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6605
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6525
6606
|
}
|
6526
6607
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gt(validate_TimestampRules* msg, upb_Arena* arena) {
|
6527
6608
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_gt(msg);
|
@@ -6533,7 +6614,8 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gt(
|
|
6533
6614
|
}
|
6534
6615
|
UPB_INLINE void validate_TimestampRules_set_gte(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6535
6616
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6536
|
-
|
6617
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6618
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6537
6619
|
}
|
6538
6620
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gte(validate_TimestampRules* msg, upb_Arena* arena) {
|
6539
6621
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_gte(msg);
|
@@ -6545,15 +6627,16 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gte
|
|
6545
6627
|
}
|
6546
6628
|
UPB_INLINE void validate_TimestampRules_set_lt_now(validate_TimestampRules *msg, bool value) {
|
6547
6629
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 11), 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6548
|
-
|
6630
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6549
6631
|
}
|
6550
6632
|
UPB_INLINE void validate_TimestampRules_set_gt_now(validate_TimestampRules *msg, bool value) {
|
6551
6633
|
const upb_MiniTableField field = {8, UPB_SIZE(33, 12), 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6552
|
-
|
6634
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6553
6635
|
}
|
6554
6636
|
UPB_INLINE void validate_TimestampRules_set_within(validate_TimestampRules *msg, struct google_protobuf_Duration* value) {
|
6555
6637
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 72, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6556
|
-
|
6638
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6639
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6557
6640
|
}
|
6558
6641
|
UPB_INLINE struct google_protobuf_Duration* validate_TimestampRules_mutable_within(validate_TimestampRules* msg, upb_Arena* arena) {
|
6559
6642
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_TimestampRules_within(msg);
|
@@ -6585,7 +6668,7 @@ UPB_INLINE void validate_set_disabled(struct google_protobuf_MessageOptions* msg
|
|
6585
6668
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6586
6669
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6587
6670
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_1Byte);
|
6588
|
-
bool ok =
|
6671
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6589
6672
|
UPB_ASSERT(ok);
|
6590
6673
|
}
|
6591
6674
|
UPB_INLINE bool validate_has_ignored(const struct google_protobuf_MessageOptions* msg) {
|
@@ -6609,7 +6692,7 @@ UPB_INLINE void validate_set_ignored(struct google_protobuf_MessageOptions* msg,
|
|
6609
6692
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6610
6693
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6611
6694
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_1Byte);
|
6612
|
-
bool ok =
|
6695
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6613
6696
|
UPB_ASSERT(ok);
|
6614
6697
|
}
|
6615
6698
|
UPB_INLINE bool validate_has_required(const struct google_protobuf_OneofOptions* msg) {
|
@@ -6633,7 +6716,7 @@ UPB_INLINE void validate_set_required(struct google_protobuf_OneofOptions* msg,
|
|
6633
6716
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6634
6717
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6635
6718
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_1Byte);
|
6636
|
-
bool ok =
|
6719
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6637
6720
|
UPB_ASSERT(ok);
|
6638
6721
|
}
|
6639
6722
|
UPB_INLINE bool validate_has_rules(const struct google_protobuf_FieldOptions* msg) {
|
@@ -6657,9 +6740,18 @@ UPB_INLINE void validate_set_rules(struct google_protobuf_FieldOptions* msg, con
|
|
6657
6740
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6658
6741
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6659
6742
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_8Byte);
|
6660
|
-
bool ok =
|
6743
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6661
6744
|
UPB_ASSERT(ok);
|
6662
6745
|
}
|
6746
|
+
UPB_INLINE struct validate_FieldRules* validate_mutable_rules(struct google_protobuf_FieldOptions* msg,
|
6747
|
+
upb_Arena* arena) {
|
6748
|
+
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_rules(msg);
|
6749
|
+
if (sub == NULL) {
|
6750
|
+
sub = (struct validate_FieldRules*)_upb_Message_New(&validate__FieldRules_msg_init, arena);
|
6751
|
+
if (sub) validate_set_rules(msg, sub, arena);
|
6752
|
+
}
|
6753
|
+
return sub;
|
6754
|
+
}
|
6663
6755
|
#ifdef __cplusplus
|
6664
6756
|
} /* extern "C" */
|
6665
6757
|
#endif
|