grpc 1.37.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +501 -260
- data/etc/roots.pem +335 -326
- data/include/grpc/byte_buffer.h +1 -1
- data/include/grpc/byte_buffer_reader.h +1 -1
- data/include/grpc/event_engine/README.md +38 -0
- data/include/grpc/event_engine/endpoint_config.h +43 -0
- data/include/grpc/event_engine/event_engine.h +399 -0
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +68 -0
- data/include/grpc/event_engine/memory_allocator.h +226 -0
- data/include/grpc/event_engine/memory_request.h +57 -0
- data/include/grpc/event_engine/port.h +39 -0
- data/include/grpc/fork.h +1 -1
- data/include/grpc/grpc.h +65 -22
- data/include/grpc/grpc_posix.h +22 -18
- data/include/grpc/grpc_security.h +358 -191
- data/include/grpc/grpc_security_constants.h +17 -14
- data/include/grpc/impl/codegen/atm.h +5 -3
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +2 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
- data/include/grpc/impl/codegen/atm_windows.h +2 -0
- data/include/grpc/impl/codegen/byte_buffer.h +2 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +2 -0
- data/include/grpc/impl/codegen/compression_types.h +2 -2
- data/include/grpc/impl/codegen/connectivity_state.h +2 -0
- data/include/grpc/impl/codegen/fork.h +2 -0
- data/include/grpc/impl/codegen/gpr_slice.h +2 -0
- data/include/grpc/impl/codegen/gpr_types.h +2 -0
- data/include/grpc/impl/codegen/grpc_types.h +61 -28
- data/include/grpc/impl/codegen/log.h +2 -0
- data/include/grpc/impl/codegen/port_platform.h +83 -22
- data/include/grpc/impl/codegen/propagation_bits.h +2 -0
- data/include/grpc/impl/codegen/slice.h +6 -1
- data/include/grpc/impl/codegen/status.h +2 -0
- data/include/grpc/impl/codegen/sync.h +8 -5
- data/include/grpc/impl/codegen/sync_abseil.h +2 -0
- data/include/grpc/impl/codegen/sync_custom.h +2 -0
- data/include/grpc/impl/codegen/sync_generic.h +3 -0
- data/include/grpc/impl/codegen/sync_posix.h +4 -2
- data/include/grpc/impl/codegen/sync_windows.h +2 -0
- data/include/grpc/module.modulemap +14 -14
- data/include/grpc/slice.h +1 -12
- data/include/grpc/status.h +1 -1
- data/include/grpc/support/atm.h +1 -1
- data/include/grpc/support/atm_gcc_atomic.h +1 -1
- data/include/grpc/support/atm_gcc_sync.h +1 -1
- data/include/grpc/support/atm_windows.h +1 -1
- data/include/grpc/support/log.h +1 -1
- data/include/grpc/support/port_platform.h +1 -1
- data/include/grpc/support/sync.h +1 -1
- data/include/grpc/support/sync_abseil.h +1 -1
- data/include/grpc/support/sync_custom.h +1 -1
- data/include/grpc/support/sync_generic.h +1 -1
- data/include/grpc/support/sync_posix.h +1 -1
- data/include/grpc/support/sync_windows.h +1 -1
- data/include/grpc/support/time.h +2 -2
- data/src/core/ext/filters/census/grpc_context.cc +1 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +24 -27
- data/src/core/ext/filters/client_channel/backend_metric.h +4 -3
- data/src/core/ext/filters/client_channel/backup_poller.cc +17 -12
- data/src/core/ext/filters/client_channel/backup_poller.h +1 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +158 -202
- data/src/core/ext/filters/client_channel/client_channel.cc +1231 -3574
- data/src/core/ext/filters/client_channel/client_channel.h +563 -56
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +6 -5
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +2 -2
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +2 -1
- data/src/core/ext/filters/client_channel/client_channel_factory.h +17 -19
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +19 -22
- data/src/core/ext/filters/client_channel/config_selector.cc +2 -1
- data/src/core/ext/filters/client_channel/config_selector.h +22 -10
- data/src/core/ext/filters/client_channel/connector.h +20 -20
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +15 -17
- data/src/core/ext/filters/client_channel/dynamic_filters.h +5 -5
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +2 -22
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +3 -16
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +72 -68
- data/src/core/ext/filters/client_channel/health/health_check_client.h +38 -36
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +54 -55
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +10 -2
- data/src/core/ext/filters/client_channel/http_proxy.cc +16 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +12 -24
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +300 -201
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +3 -6
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +3 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +6 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +17 -18
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -4
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +86 -61
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +73 -68
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +785 -0
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +10 -0
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2551 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +77 -78
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +19 -14
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +37 -34
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +112 -167
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +188 -111
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +46 -65
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +198 -312
- data/src/core/ext/filters/client_channel/lb_policy.cc +17 -30
- data/src/core/ext/filters/client_channel/lb_policy.h +170 -137
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -1
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +8 -11
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +133 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +292 -149
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +23 -12
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc +31 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +24 -19
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +51 -69
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +168 -281
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +39 -26
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc +28 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +138 -120
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +42 -47
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +9 -6
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +102 -79
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +41 -40
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +547 -468
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +42 -253
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +34 -57
- data/src/core/ext/filters/client_channel/retry_filter.cc +2640 -0
- data/src/core/ext/filters/{workarounds/workaround_cronet_compression_filter.h → client_channel/retry_filter.h} +9 -6
- data/src/core/ext/filters/client_channel/retry_service_config.cc +314 -0
- data/src/core/ext/filters/client_channel/retry_service_config.h +102 -0
- data/src/core/ext/filters/client_channel/retry_throttle.cc +14 -59
- data/src/core/ext/filters/client_channel/retry_throttle.h +11 -5
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +56 -41
- data/src/core/ext/filters/client_channel/subchannel.cc +143 -207
- data/src/core/ext/filters/client_channel/subchannel.h +43 -62
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +22 -7
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +11 -2
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +109 -348
- data/src/core/ext/filters/client_idle/idle_filter_state.cc +96 -0
- data/src/core/ext/filters/client_idle/idle_filter_state.h +66 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +41 -43
- data/src/core/ext/filters/deadline/deadline_filter.h +3 -2
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +105 -102
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +21 -31
- data/src/core/ext/filters/fault_injection/service_config_parser.h +11 -5
- data/src/core/ext/filters/http/client/http_client_filter.cc +108 -183
- data/src/core/ext/filters/http/client_authority_filter.cc +36 -95
- data/src/core/ext/filters/http/client_authority_filter.h +23 -5
- data/src/core/ext/filters/http/http_filters_plugin.cc +52 -73
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +67 -157
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +43 -56
- data/src/core/ext/filters/http/server/http_server_filter.cc +115 -207
- data/src/core/ext/filters/max_age/max_age_filter.cc +75 -69
- data/src/core/ext/filters/message_size/message_size_filter.cc +63 -69
- data/src/core/ext/filters/message_size/message_size_filter.h +11 -4
- data/src/core/ext/filters/rbac/rbac_filter.cc +162 -0
- data/src/core/ext/filters/rbac/rbac_filter.h +76 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +606 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +75 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.cc +67 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +71 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +271 -0
- data/src/core/{lib/transport/authority_override.h → ext/filters/server_config_selector/server_config_selector_filter.h} +8 -13
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +251 -19
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +7 -7
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +339 -138
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +2 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +4 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -1
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +386 -463
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +12 -4
- data/src/core/ext/transport/chttp2/transport/context_list.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/context_list.h +4 -6
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +66 -47
- data/src/core/ext/transport/chttp2/transport/flow_control.h +27 -21
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +23 -24
- data/src/core/ext/transport/chttp2/transport/frame_data.h +11 -10
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +21 -20
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +17 -17
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +8 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -15
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +49 -17
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +16 -13
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +5 -6
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +41 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +520 -749
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +183 -71
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +71 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +811 -1193
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +101 -83
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +239 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +115 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +51 -74
- data/src/core/ext/transport/chttp2/transport/parsing.cc +157 -293
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.cc +13 -7
- data/src/core/ext/transport/chttp2/transport/varint.h +39 -28
- data/src/core/ext/transport/chttp2/transport/writing.cc +113 -164
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
- data/src/core/ext/transport/inproc/inproc_transport.cc +186 -215
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +402 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +119 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +453 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +244 -210
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +932 -575
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +56 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +138 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +62 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +146 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +106 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +93 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +88 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +103 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +466 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +48 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +95 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +44 -1
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +20 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +31 -5
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +40 -19
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +144 -117
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +513 -317
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +241 -188
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +954 -530
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +44 -29
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +137 -81
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +328 -250
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1266 -657
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +21 -8
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +41 -23
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +41 -28
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +136 -80
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +290 -0
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +1122 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +73 -54
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +265 -159
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +21 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +41 -23
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +238 -153
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +894 -471
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +63 -46
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +210 -130
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +20 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +33 -19
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +32 -18
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +88 -53
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +58 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +138 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +144 -118
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +529 -329
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +112 -91
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +425 -259
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +22 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +44 -26
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +212 -91
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +932 -266
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +18 -5
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +33 -17
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +60 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +152 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +23 -10
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +47 -25
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +28 -14
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +53 -35
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +48 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +108 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +52 -36
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +133 -85
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +91 -39
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +325 -107
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +71 -54
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +244 -144
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +20 -7
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +36 -20
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +97 -69
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +400 -226
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +99 -78
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +340 -213
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +61 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +27 -11
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +86 -49
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +120 -0
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +82 -62
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +294 -185
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +93 -60
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +349 -181
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +127 -100
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +307 -185
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +59 -27
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +195 -88
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +648 -559
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +2460 -1505
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +39 -20
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +127 -64
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +216 -0
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +870 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +44 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +82 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +49 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +95 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +28 -14
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +69 -40
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +52 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +119 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +62 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +203 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +47 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +69 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +184 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +32 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +42 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +71 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +192 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +126 -0
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +18 -5
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +37 -23
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +46 -29
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +156 -92
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +52 -36
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +175 -107
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +165 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +27 -13
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +69 -41
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +272 -200
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1095 -552
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +10 -1
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +7 -4
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +108 -52
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +448 -171
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +42 -27
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +115 -71
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +103 -83
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +341 -213
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +62 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +146 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +16 -3
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +29 -15
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +92 -73
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +335 -218
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +32 -18
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +87 -54
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +85 -40
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +303 -104
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +48 -0
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +101 -0
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +76 -0
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +228 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +202 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +29 -14
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +81 -46
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +22 -9
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +42 -26
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +21 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +33 -19
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +20 -7
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +33 -19
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +37 -21
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +105 -61
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +32 -18
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +79 -52
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +27 -13
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +70 -43
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +38 -23
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +94 -58
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +51 -32
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +206 -124
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +54 -37
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +191 -115
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +66 -0
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +183 -0
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +10 -1
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +4 -1
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +42 -0
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +136 -0
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +24 -10
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +65 -34
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +31 -16
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +100 -52
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +26 -0
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +41 -0
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +20 -7
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +39 -19
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +114 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +23 -1
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +9 -1
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +151 -126
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +439 -281
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +153 -127
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +483 -298
- data/src/core/ext/upb-generated/google/api/http.upb.c +44 -29
- data/src/core/ext/upb-generated/google/api/http.upb.h +137 -89
- data/src/core/ext/upb-generated/google/api/httpbody.upb.c +46 -0
- data/src/core/ext/upb-generated/google/api/httpbody.upb.h +99 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -6
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +40 -22
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +367 -277
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1252 -764
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -6
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +36 -18
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +16 -3
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +29 -15
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +48 -32
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +100 -64
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -6
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +36 -18
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +58 -37
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +269 -149
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -9
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +44 -26
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +84 -0
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +276 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +33 -19
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +68 -42
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +132 -108
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +458 -285
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +27 -13
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +72 -39
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -9
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +64 -35
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +82 -62
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +321 -197
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +70 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +175 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +76 -14
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +132 -63
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +32 -8
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +41 -18
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +22 -1
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +9 -1
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +32 -6
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +41 -18
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +31 -5
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +40 -19
- data/src/core/ext/upb-generated/validate/validate.upb.c +396 -295
- data/src/core/ext/upb-generated/validate/validate.upb.h +1395 -768
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +110 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +191 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +55 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +87 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +38 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +38 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +105 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +230 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +53 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +81 -0
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +19 -6
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +35 -19
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +32 -18
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +77 -46
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +27 -13
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +39 -25
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +46 -0
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +95 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +24 -11
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +47 -27
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +35 -21
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +87 -54
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +24 -11
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +51 -29
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +73 -0
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +144 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +203 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +726 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +52 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +132 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +65 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +173 -0
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +46 -0
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +95 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +84 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +127 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +16 -61
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +67 -67
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +43 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +142 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +22 -12
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +1 -1
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +10 -13
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +69 -98
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +46 -46
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +349 -339
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +57 -52
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +18 -24
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +488 -484
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +80 -70
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +16 -18
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +18 -20
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +206 -0
- data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +105 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +17 -32
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +22 -22
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +17 -19
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +224 -229
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +79 -64
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +23 -33
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +16 -16
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +16 -19
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +17 -21
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +23 -51
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +43 -43
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +76 -89
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +25 -25
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +16 -19
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +267 -200
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +59 -34
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +14 -16
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +16 -18
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +40 -38
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +20 -28
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +13 -13
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +98 -83
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +23 -13
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +20 -30
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +16 -16
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +16 -18
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +157 -155
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +21 -16
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +147 -153
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +22 -22
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +88 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +40 -36
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +69 -0
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +19 -35
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +25 -25
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +40 -47
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +30 -25
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +190 -0
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +79 -71
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +12 -7
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +717 -773
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +162 -157
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +54 -48
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +188 -0
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +85 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +54 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +57 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +17 -21
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +72 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +99 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +71 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +57 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +75 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +77 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +17 -18
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +19 -29
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +16 -16
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +27 -30
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +26 -24
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +455 -429
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +62 -52
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +17 -13
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +178 -138
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +26 -16
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +21 -27
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +194 -200
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +19 -19
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +58 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +16 -18
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +19 -33
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +22 -22
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +18 -22
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +120 -97
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +18 -13
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +24 -27
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +17 -19
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +17 -19
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +17 -19
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +45 -48
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +17 -21
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +16 -21
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +18 -24
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +15 -29
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +22 -22
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +16 -26
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +16 -16
- data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +12 -10
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +94 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +14 -19
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +13 -19
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +38 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +13 -16
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +57 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +7 -7
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +1 -1
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +5 -14
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +39 -0
- data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +5 -10
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +107 -164
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +82 -82
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +5 -10
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +5 -10
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +5 -16
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +13 -13
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +5 -10
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +5 -26
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +28 -28
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +9 -14
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +67 -0
- data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +10 -18
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +10 -10
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +24 -33
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +9 -8
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +1 -1
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +10 -13
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +10 -14
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +189 -216
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +70 -70
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +63 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +35 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +64 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +18 -22
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +32 -38
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +20 -26
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +41 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +23 -27
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +39 -45
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +7 -7
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +25 -29
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +4 -4
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +126 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +80 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +35 -0
- data/src/core/ext/xds/certificate_provider_factory.h +1 -1
- data/src/core/ext/xds/certificate_provider_registry.cc +3 -3
- data/src/core/ext/xds/certificate_provider_store.h +4 -4
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +7 -7
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +4 -4
- data/src/core/ext/xds/upb_utils.h +67 -0
- data/src/core/ext/xds/xds_api.cc +232 -3313
- data/src/core/ext/xds/xds_api.h +70 -550
- data/src/core/ext/xds/xds_bootstrap.cc +315 -300
- data/src/core/ext/xds/xds_bootstrap.h +54 -33
- data/src/core/ext/xds/xds_certificate_provider.cc +7 -7
- data/src/core/ext/xds/xds_certificate_provider.h +6 -6
- data/src/core/ext/xds/xds_channel_args.h +5 -2
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +109 -0
- data/src/core/ext/xds/xds_channel_stack_modifier.h +53 -0
- data/src/core/ext/xds/xds_client.cc +1093 -957
- data/src/core/ext/xds/xds_client.h +143 -168
- data/src/core/ext/xds/xds_client_stats.cc +31 -30
- data/src/core/ext/xds/xds_client_stats.h +15 -13
- data/src/core/ext/xds/xds_cluster.cc +453 -0
- data/src/core/ext/xds/xds_cluster.h +108 -0
- data/src/core/ext/xds/xds_common_types.cc +388 -0
- data/src/core/ext/xds/xds_common_types.h +95 -0
- data/src/core/ext/xds/xds_endpoint.cc +364 -0
- data/src/core/ext/xds/xds_endpoint.h +135 -0
- data/src/core/ext/xds/xds_http_fault_filter.cc +10 -9
- data/src/core/ext/xds/xds_http_fault_filter.h +6 -5
- data/src/core/ext/xds/xds_http_filters.cc +15 -7
- data/src/core/ext/xds/xds_http_filters.h +7 -4
- data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
- data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
- data/src/core/ext/xds/xds_listener.cc +1039 -0
- data/src/core/ext/xds/xds_listener.h +220 -0
- data/src/core/{lib/transport/authority_override.cc → ext/xds/xds_resource_type.cc} +10 -17
- data/src/core/ext/xds/xds_resource_type.h +98 -0
- data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
- data/src/core/ext/xds/xds_route_config.cc +985 -0
- data/src/core/ext/xds/xds_route_config.h +215 -0
- data/src/core/ext/xds/xds_routing.cc +250 -0
- data/src/core/ext/xds/xds_routing.h +101 -0
- data/src/core/ext/xds/xds_server_config_fetcher.cc +1083 -296
- data/src/core/lib/{iomgr → address_utils}/parse_address.cc +43 -25
- data/src/core/lib/{iomgr → address_utils}/parse_address.h +12 -7
- data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.cc +34 -41
- data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.h +5 -15
- data/src/core/lib/avl/avl.h +389 -88
- data/src/core/lib/backoff/backoff.cc +9 -38
- data/src/core/lib/backoff/backoff.h +11 -11
- data/src/core/lib/channel/call_finalization.h +86 -0
- data/src/core/lib/channel/call_tracer.h +85 -0
- data/src/core/lib/channel/channel_args.cc +87 -9
- data/src/core/lib/channel/channel_args.h +13 -1
- data/src/core/lib/channel/channel_args_preconditioning.cc +48 -0
- data/src/core/lib/channel/channel_args_preconditioning.h +62 -0
- data/src/core/lib/channel/channel_stack.cc +25 -15
- data/src/core/lib/channel/channel_stack.h +53 -16
- data/src/core/lib/channel/channel_stack_builder.cc +68 -262
- data/src/core/lib/channel/channel_stack_builder.h +95 -155
- data/src/core/lib/channel/channel_trace.cc +8 -10
- data/src/core/lib/channel/channel_trace.h +2 -1
- data/src/core/lib/channel/channelz.cc +65 -52
- data/src/core/lib/channel/channelz.h +32 -29
- data/src/core/lib/channel/channelz_registry.cc +8 -7
- data/src/core/lib/channel/channelz_registry.h +1 -1
- data/src/core/lib/channel/connected_channel.cc +14 -10
- data/src/core/lib/channel/connected_channel.h +1 -2
- data/src/core/lib/channel/context.h +14 -0
- data/src/core/lib/channel/handshaker.cc +10 -8
- data/src/core/lib/channel/handshaker.h +7 -8
- data/src/core/lib/channel/handshaker_factory.h +10 -2
- data/src/core/lib/channel/handshaker_registry.cc +15 -70
- data/src/core/lib/channel/handshaker_registry.h +29 -12
- data/src/core/lib/channel/promise_based_filter.cc +669 -0
- data/src/core/lib/channel/promise_based_filter.h +423 -0
- data/src/core/lib/channel/status_util.h +6 -2
- data/src/core/lib/compression/compression.cc +22 -114
- data/src/core/lib/compression/compression_internal.cc +145 -207
- data/src/core/lib/compression/compression_internal.h +64 -69
- data/src/core/lib/compression/message_compress.cc +13 -13
- data/src/core/lib/compression/message_compress.h +2 -2
- data/src/core/lib/config/core_configuration.cc +104 -0
- data/src/core/lib/config/core_configuration.h +196 -0
- data/src/core/lib/debug/stats.cc +1 -1
- data/src/core/lib/debug/stats.h +2 -1
- data/src/core/lib/debug/stats_data.cc +15 -14
- data/src/core/lib/debug/stats_data.h +1 -0
- data/src/core/lib/debug/trace.cc +1 -0
- data/src/core/lib/debug/trace.h +4 -3
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +46 -0
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +42 -0
- data/src/core/lib/event_engine/default_event_engine_factory.cc +27 -0
- data/src/core/lib/event_engine/event_engine.cc +52 -0
- data/src/core/lib/event_engine/event_engine_factory.h +36 -0
- data/src/core/lib/event_engine/memory_allocator.cc +66 -0
- data/src/core/lib/event_engine/resolved_address.cc +39 -0
- data/src/core/lib/event_engine/sockaddr.cc +40 -0
- data/src/core/lib/event_engine/sockaddr.h +44 -0
- data/src/core/lib/gpr/alloc.cc +4 -3
- data/src/core/lib/gpr/atm.cc +1 -1
- data/src/core/lib/gpr/cpu_posix.cc +1 -1
- data/src/core/lib/gpr/env_linux.cc +1 -2
- data/src/core/lib/gpr/env_posix.cc +2 -3
- data/src/core/lib/gpr/log.cc +3 -3
- data/src/core/lib/gpr/log_android.cc +3 -2
- data/src/core/lib/gpr/log_linux.cc +7 -4
- data/src/core/lib/gpr/log_posix.cc +6 -3
- data/src/core/lib/gpr/murmur_hash.cc +4 -2
- data/src/core/lib/gpr/string.cc +2 -2
- data/src/core/lib/gpr/string.h +2 -2
- data/src/core/lib/gpr/sync.cc +2 -2
- data/src/core/lib/gpr/sync_abseil.cc +7 -6
- data/src/core/lib/gpr/sync_posix.cc +4 -3
- data/src/core/lib/gpr/time.cc +5 -3
- data/src/core/lib/gpr/time_windows.cc +3 -2
- data/src/core/lib/gpr/tls.h +125 -40
- data/src/core/lib/gpr/tmpfile_posix.cc +1 -2
- data/src/core/lib/gpr/useful.h +97 -32
- data/src/core/lib/gpr/wrap_memcpy.cc +2 -1
- data/src/core/lib/gprpp/atomic_utils.h +47 -0
- data/src/core/lib/gprpp/bitset.h +195 -0
- data/src/core/lib/gprpp/capture.h +76 -0
- data/src/core/lib/gprpp/chunked_vector.h +253 -0
- data/src/core/lib/gprpp/construct_destruct.h +39 -0
- data/src/core/lib/gprpp/cpp_impl_of.h +45 -0
- data/src/core/lib/gprpp/debug_location.h +2 -0
- data/src/core/lib/gprpp/dual_ref_counted.h +25 -26
- data/src/core/lib/gprpp/fork.cc +14 -12
- data/src/core/lib/gprpp/fork.h +4 -4
- data/src/core/lib/gprpp/global_config.h +1 -2
- data/src/core/lib/gprpp/global_config_env.cc +14 -14
- data/src/core/lib/gprpp/global_config_env.h +2 -2
- data/src/core/lib/gprpp/global_config_generic.h +2 -2
- data/src/core/lib/gprpp/manual_constructor.h +11 -9
- data/src/core/lib/gprpp/memory.h +9 -3
- data/src/core/lib/gprpp/mpscq.cc +7 -7
- data/src/core/lib/gprpp/mpscq.h +6 -5
- data/src/core/lib/gprpp/orphanable.h +7 -7
- data/src/core/lib/gprpp/ref_counted.h +47 -33
- data/src/core/lib/gprpp/ref_counted_ptr.h +2 -4
- data/src/core/lib/gprpp/status_helper.cc +419 -0
- data/src/core/lib/gprpp/status_helper.h +181 -0
- data/src/core/lib/gprpp/sync.h +5 -31
- data/src/core/lib/gprpp/table.h +434 -0
- data/src/core/lib/gprpp/thd_posix.cc +5 -5
- data/src/core/lib/gprpp/thd_windows.cc +4 -11
- data/src/core/lib/gprpp/time.cc +186 -0
- data/src/core/lib/gprpp/time.h +292 -0
- data/src/core/lib/gprpp/time_util.cc +2 -2
- data/src/core/lib/gprpp/time_util.h +2 -2
- data/src/core/lib/http/format_request.cc +28 -23
- data/src/core/lib/http/format_request.h +8 -6
- data/src/core/lib/http/httpcli.cc +299 -209
- data/src/core/lib/http/httpcli.h +183 -85
- data/src/core/lib/http/httpcli_security_connector.cc +71 -81
- data/src/core/lib/http/httpcli_ssl_credentials.h +37 -0
- data/src/core/lib/http/parser.cc +18 -18
- data/src/core/lib/http/parser.h +6 -5
- data/src/core/lib/iomgr/buffer_list.cc +16 -17
- data/src/core/lib/iomgr/buffer_list.h +22 -24
- data/src/core/lib/iomgr/call_combiner.cc +55 -23
- data/src/core/lib/iomgr/call_combiner.h +12 -14
- data/src/core/lib/iomgr/cfstream_handle.cc +4 -4
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.h +33 -12
- data/src/core/lib/iomgr/combiner.cc +46 -36
- data/src/core/lib/iomgr/combiner.h +3 -2
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +1 -0
- data/src/core/lib/iomgr/endpoint.cc +1 -5
- data/src/core/lib/iomgr/endpoint.h +3 -6
- data/src/core/lib/iomgr/endpoint_cfstream.cc +25 -54
- data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
- data/src/core/lib/iomgr/endpoint_pair.h +1 -0
- data/src/core/lib/iomgr/endpoint_pair_event_engine.cc +32 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +11 -9
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -6
- data/src/core/lib/iomgr/error.cc +270 -99
- data/src/core/lib/iomgr/error.h +277 -113
- data/src/core/lib/iomgr/error_cfstream.cc +10 -4
- data/src/core/lib/iomgr/error_cfstream.h +2 -2
- data/src/core/lib/iomgr/error_internal.h +6 -1
- data/src/core/lib/iomgr/ev_apple.cc +10 -9
- data/src/core/lib/iomgr/ev_apple.h +1 -1
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +42 -48
- data/src/core/lib/iomgr/ev_epollex_linux.cc +80 -81
- data/src/core/lib/iomgr/ev_poll_posix.cc +73 -73
- data/src/core/lib/iomgr/ev_posix.cc +12 -12
- data/src/core/lib/iomgr/ev_posix.h +9 -9
- data/src/core/lib/iomgr/event_engine/closure.cc +77 -0
- data/src/core/lib/iomgr/event_engine/closure.h +42 -0
- data/src/core/lib/iomgr/event_engine/endpoint.cc +172 -0
- data/src/core/lib/iomgr/event_engine/endpoint.h +52 -0
- data/src/core/lib/iomgr/event_engine/iomgr.cc +85 -0
- data/src/core/lib/iomgr/event_engine/pollset.cc +87 -0
- data/src/core/lib/iomgr/event_engine/pollset.h +25 -0
- data/src/core/lib/iomgr/event_engine/promise.h +51 -0
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +47 -0
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +37 -0
- data/src/core/lib/iomgr/event_engine/resolver.cc +133 -0
- data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
- data/src/core/lib/iomgr/event_engine/tcp.cc +296 -0
- data/src/core/lib/iomgr/event_engine/timer.cc +62 -0
- data/src/core/lib/iomgr/exec_ctx.cc +29 -102
- data/src/core/lib/iomgr/exec_ctx.h +32 -57
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +15 -16
- data/src/core/lib/iomgr/executor/mpmcqueue.h +7 -11
- data/src/core/lib/iomgr/executor/threadpool.cc +4 -5
- data/src/core/lib/iomgr/executor/threadpool.h +4 -3
- data/src/core/lib/iomgr/executor.cc +37 -46
- data/src/core/lib/iomgr/executor.h +3 -3
- data/src/core/lib/iomgr/fork_posix.cc +3 -2
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +3 -2
- data/src/core/lib/iomgr/iocp_windows.cc +10 -9
- data/src/core/lib/iomgr/iocp_windows.h +1 -1
- data/src/core/lib/iomgr/iomgr.cc +5 -3
- data/src/core/lib/iomgr/iomgr.h +3 -3
- data/src/core/lib/iomgr/iomgr_internal.cc +8 -12
- data/src/core/lib/iomgr/iomgr_internal.h +6 -5
- data/src/core/lib/iomgr/iomgr_posix.cc +5 -3
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +44 -14
- data/src/core/lib/iomgr/iomgr_windows.cc +4 -5
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +4 -4
- data/src/core/lib/iomgr/load_file.cc +6 -6
- data/src/core/lib/iomgr/load_file.h +2 -2
- data/src/core/lib/iomgr/lockfree_event.cc +23 -5
- data/src/core/lib/iomgr/lockfree_event.h +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +2 -2
- data/src/core/lib/iomgr/polling_entity.h +6 -0
- data/src/core/lib/iomgr/pollset.cc +5 -5
- data/src/core/lib/iomgr/pollset.h +9 -9
- data/src/core/lib/iomgr/pollset_set_windows.cc +1 -0
- data/src/core/lib/iomgr/pollset_windows.cc +6 -6
- data/src/core/lib/iomgr/port.h +8 -14
- data/src/core/lib/iomgr/python_util.h +3 -2
- data/src/core/lib/iomgr/resolve_address.cc +10 -24
- data/src/core/lib/iomgr/resolve_address.h +48 -43
- data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +91 -79
- data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +102 -85
- data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
- data/src/core/lib/iomgr/resolved_address.h +39 -0
- data/src/core/lib/iomgr/sockaddr.h +2 -1
- data/src/core/lib/iomgr/{socket_utils_uv.cc → sockaddr_utils_posix.cc} +21 -8
- data/src/core/lib/iomgr/socket_factory_posix.cc +5 -5
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -0
- data/src/core/lib/iomgr/socket_mutator.cc +17 -4
- data/src/core/lib/iomgr/socket_mutator.h +27 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +28 -44
- data/src/core/lib/iomgr/socket_utils_linux.cc +4 -4
- data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
- data/src/core/lib/iomgr/socket_utils_posix.h +22 -22
- data/src/core/lib/iomgr/socket_utils_windows.cc +2 -2
- data/src/core/lib/iomgr/tcp_client.cc +1 -1
- data/src/core/lib/iomgr/tcp_client.h +5 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -28
- data/src/core/lib/iomgr/tcp_client_posix.cc +38 -45
- data/src/core/lib/iomgr/tcp_client_posix.h +7 -6
- data/src/core/lib/iomgr/tcp_client_windows.cc +15 -15
- data/src/core/lib/iomgr/tcp_posix.cc +129 -159
- data/src/core/lib/iomgr/tcp_posix.h +17 -12
- data/src/core/lib/iomgr/tcp_server.cc +6 -6
- data/src/core/lib/iomgr/tcp_server.h +16 -14
- data/src/core/lib/iomgr/tcp_server_posix.cc +44 -34
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +34 -29
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +23 -20
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +12 -12
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +32 -35
- data/src/core/lib/iomgr/tcp_windows.cc +35 -52
- data/src/core/lib/iomgr/tcp_windows.h +3 -3
- data/src/core/lib/iomgr/timer.cc +3 -2
- data/src/core/lib/iomgr/timer.h +17 -8
- data/src/core/lib/iomgr/timer_generic.cc +116 -127
- data/src/core/lib/iomgr/timer_generic.h +1 -0
- data/src/core/lib/iomgr/timer_heap.cc +2 -3
- data/src/core/lib/iomgr/timer_manager.cc +16 -15
- data/src/core/lib/iomgr/unix_sockets_posix.cc +25 -39
- data/src/core/lib/iomgr/unix_sockets_posix.h +6 -10
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +12 -18
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -3
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +1 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +6 -7
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +4 -3
- data/src/core/lib/iomgr/wakeup_fd_posix.h +8 -6
- data/src/core/lib/iomgr/work_serializer.cc +120 -44
- data/src/core/lib/iomgr/work_serializer.h +33 -5
- data/src/core/lib/json/json.h +1 -1
- data/src/core/lib/json/json_reader.cc +97 -58
- data/src/core/lib/json/json_util.cc +71 -3
- data/src/core/lib/json/json_util.h +66 -116
- data/src/core/lib/json/json_writer.cc +0 -3
- data/src/core/lib/matchers/matchers.cc +47 -59
- data/src/core/lib/matchers/matchers.h +30 -30
- data/src/core/lib/profiling/basic_timers.cc +8 -6
- data/src/core/lib/profiling/stap_timers.cc +2 -2
- data/src/core/lib/promise/activity.cc +121 -0
- data/src/core/lib/promise/activity.h +540 -0
- data/src/core/lib/promise/arena_promise.h +188 -0
- data/src/core/lib/promise/context.h +86 -0
- data/src/core/lib/promise/detail/basic_seq.h +496 -0
- data/src/core/lib/promise/detail/promise_factory.h +189 -0
- data/src/core/lib/promise/detail/promise_like.h +85 -0
- data/src/core/lib/promise/detail/status.h +49 -0
- data/src/core/lib/promise/detail/switch.h +1455 -0
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
- data/src/core/lib/promise/loop.h +134 -0
- data/src/core/lib/promise/map.h +88 -0
- data/src/core/lib/promise/poll.h +66 -0
- data/src/core/lib/promise/promise.h +95 -0
- data/src/core/lib/promise/race.h +84 -0
- data/src/core/lib/promise/seq.h +89 -0
- data/src/core/lib/promise/sleep.cc +74 -0
- data/src/core/lib/promise/sleep.h +66 -0
- data/src/core/lib/promise/try_seq.h +157 -0
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +32 -29
- data/src/core/lib/resolver/resolver_registry.cc +156 -0
- data/src/core/lib/resolver/resolver_registry.h +113 -0
- data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +2 -2
- data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +5 -5
- data/src/core/lib/resource_quota/api.cc +108 -0
- data/src/core/lib/resource_quota/api.h +40 -0
- data/src/core/lib/{gprpp → resource_quota}/arena.cc +18 -14
- data/src/core/lib/{gprpp → resource_quota}/arena.h +37 -16
- data/src/core/lib/resource_quota/memory_quota.cc +478 -0
- data/src/core/lib/resource_quota/memory_quota.h +457 -0
- data/src/core/lib/resource_quota/resource_quota.cc +33 -0
- data/src/core/lib/resource_quota/resource_quota.h +58 -0
- data/src/core/lib/resource_quota/thread_quota.cc +43 -0
- data/src/core/lib/resource_quota/thread_quota.h +57 -0
- data/src/core/lib/resource_quota/trace.cc +19 -0
- data/src/core/lib/resource_quota/trace.h +24 -0
- data/src/core/lib/security/authorization/authorization_engine.h +44 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +33 -0
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +46 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +212 -0
- data/src/core/lib/security/authorization/evaluate_args.h +92 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +109 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +51 -0
- data/src/core/lib/security/authorization/matchers.cc +227 -0
- data/src/core/lib/security/authorization/matchers.h +211 -0
- data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
- data/src/core/lib/security/authorization/rbac_policy.h +171 -0
- data/src/core/lib/security/context/security_context.cc +15 -10
- data/src/core/lib/security/context/security_context.h +1 -1
- data/src/core/lib/security/credentials/alts/alts_credentials.h +6 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +2 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +2 -2
- data/src/core/lib/security/credentials/call_creds_util.cc +87 -0
- data/src/core/lib/security/credentials/call_creds_util.h +42 -0
- data/src/core/lib/security/credentials/channel_creds_registry.h +97 -0
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +70 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +21 -84
- data/src/core/lib/security/credentials/composite/composite_credentials.h +21 -9
- data/src/core/lib/security/credentials/credentials.cc +11 -10
- data/src/core/lib/security/credentials/credentials.h +75 -59
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +78 -72
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +15 -13
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +5 -4
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +127 -80
- data/src/core/lib/security/credentials/external/external_account_credentials.h +15 -17
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -5
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +4 -3
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +43 -26
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +10 -7
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +18 -18
- data/src/core/lib/security/credentials/fake/fake_credentials.h +14 -16
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +1 -2
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +85 -30
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +6 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +21 -28
- data/src/core/lib/security/credentials/iam/iam_credentials.h +11 -9
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +13 -7
- data/src/core/lib/security/credentials/jwt/json_token.cc +7 -9
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -1
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +52 -51
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +23 -15
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +66 -59
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -4
- data/src/core/lib/security/credentials/local/local_credentials.h +6 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +166 -193
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +54 -34
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +97 -157
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +54 -27
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +5 -14
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +6 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +11 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +19 -15
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +80 -25
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +20 -12
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +201 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +106 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +35 -85
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +38 -85
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +21 -10
- data/src/core/lib/security/credentials/tls/tls_credentials.h +6 -0
- data/src/core/lib/security/credentials/tls/tls_utils.cc +32 -0
- data/src/core/lib/security/credentials/tls/tls_utils.h +13 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +31 -36
- data/src/core/lib/security/credentials/xds/xds_credentials.h +6 -1
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -18
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +24 -25
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -2
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -18
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +21 -16
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +1 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +5 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +32 -24
- data/src/core/lib/security/security_connector/security_connector.cc +8 -15
- data/src/core/lib/security/security_connector/security_connector.h +24 -24
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +24 -22
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -2
- data/src/core/lib/security/security_connector/ssl_utils.cc +67 -39
- data/src/core/lib/security/security_connector/ssl_utils.h +17 -21
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +409 -272
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +118 -79
- data/src/core/lib/security/transport/auth_filters.h +38 -4
- data/src/core/lib/security/transport/client_auth_filter.cc +88 -353
- data/src/core/lib/security/transport/secure_endpoint.cc +8 -18
- data/src/core/lib/security/transport/secure_endpoint.h +1 -0
- data/src/core/lib/security/transport/security_handshaker.cc +138 -90
- data/src/core/lib/security/transport/security_handshaker.h +2 -1
- data/src/core/lib/security/transport/server_auth_filter.cc +58 -48
- data/src/core/lib/security/transport/tsi_error.cc +5 -6
- data/src/core/lib/security/transport/tsi_error.h +2 -1
- data/src/core/lib/security/util/json_util.cc +8 -10
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/service_config/service_config.h +82 -0
- data/src/core/{ext/filters/client_channel → lib/service_config}/service_config_call_data.h +17 -31
- data/src/core/{ext/filters/client_channel/service_config.cc → lib/service_config/service_config_impl.cc} +31 -27
- data/src/core/{ext/filters/client_channel/service_config.h → lib/service_config/service_config_impl.h} +22 -23
- data/src/core/{ext/filters/client_channel → lib/service_config}/service_config_parser.cc +35 -31
- data/src/core/lib/service_config/service_config_parser.h +106 -0
- data/src/core/lib/slice/percent_encoding.cc +84 -97
- data/src/core/lib/slice/percent_encoding.h +23 -28
- data/src/core/lib/slice/slice.cc +81 -191
- data/src/core/lib/slice/slice.h +384 -0
- data/src/core/lib/{gpr/tls_pthread.cc → slice/slice_api.cc} +15 -6
- data/src/core/lib/slice/slice_buffer.cc +10 -7
- data/src/core/lib/slice/slice_internal.h +15 -276
- data/src/core/lib/slice/slice_refcount.cc +35 -0
- data/src/core/lib/slice/slice_refcount.h +46 -0
- data/src/core/lib/slice/slice_refcount_base.h +61 -0
- data/src/core/lib/slice/slice_split.cc +100 -0
- data/src/core/lib/slice/slice_split.h +40 -0
- data/src/core/lib/slice/slice_string_helpers.cc +0 -83
- data/src/core/lib/slice/slice_string_helpers.h +0 -11
- data/src/core/lib/surface/api_trace.cc +2 -1
- data/src/core/lib/surface/api_trace.h +1 -0
- data/src/core/lib/surface/builtins.cc +49 -0
- data/src/core/lib/surface/builtins.h +26 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +1 -1
- data/src/core/lib/surface/call.cc +316 -521
- data/src/core/lib/surface/call.h +14 -9
- data/src/core/lib/surface/call_details.cc +2 -2
- data/src/core/lib/surface/call_log_batch.cc +2 -2
- data/src/core/lib/surface/channel.cc +75 -107
- data/src/core/lib/surface/channel.h +17 -24
- data/src/core/lib/surface/channel_init.cc +23 -76
- data/src/core/lib/surface/channel_init.h +52 -44
- data/src/core/lib/surface/channel_ping.cc +2 -3
- data/src/core/lib/surface/channel_stack_type.cc +2 -1
- data/src/core/lib/surface/completion_queue.cc +136 -145
- data/src/core/lib/surface/completion_queue.h +3 -2
- data/src/core/lib/surface/completion_queue_factory.cc +3 -3
- data/src/core/lib/surface/completion_queue_factory.h +1 -0
- data/src/core/lib/surface/event_string.cc +1 -0
- data/src/core/lib/surface/init.cc +82 -60
- data/src/core/lib/surface/init.h +10 -4
- data/src/core/lib/surface/lame_client.cc +50 -35
- data/src/core/lib/surface/lame_client.h +1 -1
- data/src/core/lib/surface/metadata_array.cc +2 -2
- data/src/core/lib/surface/server.cc +100 -128
- data/src/core/lib/surface/server.h +58 -53
- data/src/core/lib/surface/validate_metadata.cc +55 -24
- data/src/core/lib/surface/validate_metadata.h +3 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +11 -12
- data/src/core/lib/transport/bdp_estimator.h +2 -2
- data/src/core/lib/transport/byte_stream.cc +9 -5
- data/src/core/lib/transport/byte_stream.h +9 -8
- data/src/core/lib/transport/connectivity_state.cc +9 -6
- data/src/core/lib/transport/connectivity_state.h +2 -2
- data/src/core/lib/transport/error_utils.cc +68 -29
- data/src/core/lib/transport/error_utils.h +13 -6
- data/src/core/lib/transport/metadata_batch.h +1348 -163
- data/src/core/lib/transport/parsed_metadata.cc +37 -0
- data/src/core/lib/transport/parsed_metadata.h +401 -0
- data/src/core/lib/transport/pid_controller.cc +4 -4
- data/src/core/lib/transport/status_conversion.cc +2 -2
- data/src/core/lib/transport/status_conversion.h +1 -1
- data/src/core/lib/transport/timeout_encoding.cc +204 -67
- data/src/core/lib/transport/timeout_encoding.h +40 -10
- data/src/core/lib/transport/transport.cc +15 -35
- data/src/core/lib/transport/transport.h +94 -8
- data/src/core/lib/transport/transport_impl.h +13 -0
- data/src/core/lib/transport/transport_op_string.cc +13 -35
- data/src/core/lib/uri/uri_parser.cc +237 -63
- data/src/core/lib/uri/uri_parser.h +39 -23
- data/src/core/plugin_registry/grpc_plugin_registry.cc +75 -102
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +85 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +6 -3
- data/src/core/tsi/alts/crypt/gsec.h +5 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -12
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +10 -11
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +36 -31
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +2 -3
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +9 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +38 -19
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +2 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +2 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +1 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +2 -2
- data/src/core/tsi/fake_transport_security.cc +15 -7
- data/src/core/tsi/local_transport_security.cc +42 -87
- data/src/core/tsi/local_transport_security.h +1 -4
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +141 -0
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +81 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +20 -53
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +6 -7
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -2
- data/src/core/tsi/ssl_transport_security.cc +186 -38
- data/src/core/tsi/ssl_transport_security.h +45 -11
- data/src/core/tsi/transport_security.cc +15 -3
- data/src/core/tsi/transport_security.h +16 -1
- data/src/core/tsi/transport_security_grpc.h +1 -0
- data/src/core/tsi/transport_security_interface.h +26 -0
- data/src/ruby/bin/math_services_pb.rb +1 -1
- data/src/ruby/ext/grpc/extconf.rb +22 -10
- data/src/ruby/ext/grpc/rb_byte_buffer.c +2 -1
- data/src/ruby/ext/grpc/rb_call.c +5 -5
- data/src/ruby/ext/grpc/rb_call_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_channel.c +15 -10
- data/src/ruby/ext/grpc/rb_channel_args.c +2 -2
- data/src/ruby/ext/grpc/rb_channel_credentials.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +3 -2
- data/src/ruby/ext/grpc/rb_compression_options.c +5 -4
- data/src/ruby/ext/grpc/rb_event_thread.c +4 -4
- data/src/ruby/ext/grpc/rb_grpc.c +5 -4
- data/src/ruby/ext/grpc/rb_grpc.h +1 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +36 -34
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +56 -53
- data/src/ruby/ext/grpc/rb_server.c +13 -9
- data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +8 -5
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +3 -1
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +6 -5
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +3 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +6 -6
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/container.h +104 -94
- data/third_party/abseil-cpp/absl/base/attributes.h +88 -35
- data/third_party/abseil-cpp/absl/base/call_once.h +2 -9
- data/third_party/abseil-cpp/absl/base/config.h +102 -44
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +25 -36
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +4 -1
- data/third_party/abseil-cpp/absl/base/internal/endian.h +61 -0
- data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +2 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +34 -32
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +16 -6
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +11 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +17 -6
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +3 -3
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +13 -11
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +5 -5
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +70 -1
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -6
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +58 -52
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +111 -7
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +0 -76
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +17 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +4 -4
- data/third_party/abseil-cpp/absl/base/log_severity.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +11 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +10 -7
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/port.h +0 -1
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +1 -1
- data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -7
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +110 -100
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +17 -15
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +23 -103
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +39 -79
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +2 -1
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +469 -429
- data/third_party/abseil-cpp/absl/container/internal/layout.h +4 -4
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +3 -2
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +21 -2
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +374 -243
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +27 -13
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +12 -11
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +6 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +5 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +15 -17
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +6 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +25 -7
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +11 -7
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +21 -3
- data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +2 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +2 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +2 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +16 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
- data/third_party/abseil-cpp/absl/functional/function_ref.h +4 -1
- data/third_party/abseil-cpp/absl/hash/hash.h +22 -0
- data/third_party/abseil-cpp/absl/hash/internal/city.cc +15 -12
- data/third_party/abseil-cpp/absl/hash/internal/city.h +1 -19
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +27 -13
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +145 -45
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +123 -0
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +50 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +1 -1
- data/third_party/abseil-cpp/absl/meta/type_traits.h +47 -3
- data/third_party/abseil-cpp/absl/numeric/bits.h +177 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +6 -13
- data/third_party/abseil-cpp/absl/numeric/int128.h +146 -73
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +358 -0
- data/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
- data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.cc +4 -4
- data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.h +6 -6
- data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
- data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
- data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
- data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
- data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
- data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
- data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
- data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
- data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
- data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
- data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
- data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
- data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
- data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
- data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
- data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
- data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
- data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
- data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
- data/third_party/abseil-cpp/absl/random/random.h +189 -0
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
- data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
- data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
- data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
- data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +18 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +4 -7
- data/third_party/abseil-cpp/absl/status/status.cc +27 -28
- data/third_party/abseil-cpp/absl/status/status.h +98 -33
- data/third_party/abseil-cpp/absl/status/statusor.cc +34 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +34 -24
- data/third_party/abseil-cpp/absl/strings/charconv.cc +8 -8
- data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +619 -570
- data/third_party/abseil-cpp/absl/strings/cord.h +346 -101
- data/third_party/abseil-cpp/absl/strings/escaping.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +7 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +89 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +478 -31
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +146 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +771 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +607 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +118 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +22 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +18 -5
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +20 -5
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +36 -18
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +36 -18
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +76 -73
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +38 -16
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +49 -74
- data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +64 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +6 -3
- data/third_party/abseil-cpp/absl/strings/match.h +16 -6
- data/third_party/abseil-cpp/absl/strings/numbers.cc +133 -5
- data/third_party/abseil-cpp/absl/strings/numbers.h +44 -10
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -2
- data/third_party/abseil-cpp/absl/strings/str_join.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_split.h +38 -4
- data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
- data/third_party/abseil-cpp/absl/strings/string_view.h +120 -39
- data/third_party/abseil-cpp/absl/strings/substitute.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/substitute.h +99 -74
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +25 -15
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +5 -3
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +154 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +2 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +2 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +4 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +2 -66
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -6
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +71 -59
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +82 -65
- data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -3
- data/third_party/abseil-cpp/absl/time/clock.cc +146 -130
- data/third_party/abseil-cpp/absl/time/clock.h +2 -2
- data/third_party/abseil-cpp/absl/time/duration.cc +3 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +7 -11
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +93 -20
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +83 -21
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +7 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -5
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -3
- data/third_party/abseil-cpp/absl/time/time.cc +4 -3
- data/third_party/abseil-cpp/absl/time/time.h +93 -60
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
- data/third_party/abseil-cpp/absl/types/bad_variant_access.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +1 -1
- data/third_party/abseil-cpp/absl/types/span.h +3 -3
- data/third_party/abseil-cpp/absl/types/variant.h +9 -4
- data/third_party/address_sorting/address_sorting_posix.c +1 -0
- data/third_party/boringssl-with-bazel/err_data.c +696 -662
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +67 -54
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +22 -23
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +6 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +16 -23
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +64 -44
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +19 -29
- data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/a_strex.c +269 -272
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +106 -153
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +19 -9
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +1 -40
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +60 -49
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +24 -28
- data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/charmap.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{asn1_locl.h → internal.h} +91 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +57 -281
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +292 -200
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +10 -10
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +10 -14
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -6
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +24 -8
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +1 -7
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -5
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +1 -7
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -17
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +38 -47
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +49 -65
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +1 -88
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +14 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +119 -273
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +14 -3
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +6 -3
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +87 -80
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +32 -34
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +26 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +6 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +5 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +23 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +35 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +10 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +10 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +87 -160
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +105 -95
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +56 -72
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +56 -73
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +33 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +17 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +1 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +6 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +2 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +30 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +50 -33
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +14 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +21 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +93 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +91 -113
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +50 -86
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +397 -311
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +219 -121
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +9 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +125 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +253 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +28 -23
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +46 -9
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +10 -6
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -9
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -8
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +16 -7
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +38 -4
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +156 -15
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +96 -49
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -22
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +6 -6
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -28
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +15 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +2 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +351 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +246 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +15 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +10 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -179
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +7 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +24 -47
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +1 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +42 -89
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +9 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +25 -22
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +25 -69
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +54 -74
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +21 -19
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +3 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +7 -25
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +14 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +23 -21
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +25 -22
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +5 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +12 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +239 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +5 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +24 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +18 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +8 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +23 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +112 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +14 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +80 -38
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +1 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +66 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +1517 -495
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +5 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +57 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +3 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +3 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +10 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +21 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +8 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +24 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +9 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +27 -41
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +5 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +41 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +3 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +55 -104
- data/third_party/boringssl-with-bazel/src/{crypto/x509/x509_r2x.c → include/openssl/evp_errors.h} +41 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +350 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +14 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +4 -205
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +12 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +26 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +42 -18
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +15 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +128 -91
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +37 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +386 -104
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +41 -48
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1160 -331
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +16 -679
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +54 -17
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +16 -18
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +1084 -0
- data/third_party/boringssl-with-bazel/src/ssl/{t1_lib.cc → extensions.cc} +660 -747
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +298 -22
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +90 -43
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +307 -201
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +173 -36
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +474 -156
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +9 -3
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +14 -19
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +34 -31
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +56 -110
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +2 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +129 -96
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +3 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +10 -15
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +11 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +28 -23
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +79 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +235 -178
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +146 -110
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +241 -132
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +4 -2
- data/third_party/cares/cares/{ares.h → include/ares.h} +73 -1
- data/third_party/cares/cares/{ares_dns.h → include/ares_dns.h} +9 -0
- data/third_party/cares/cares/{ares_rules.h → include/ares_rules.h} +0 -0
- data/third_party/cares/cares/{ares_version.h → include/ares_version.h} +3 -3
- data/third_party/cares/cares/{ares__close_sockets.c → src/lib/ares__close_sockets.c} +2 -2
- data/third_party/cares/cares/{ares__get_hostent.c → src/lib/ares__get_hostent.c} +1 -2
- data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +260 -0
- data/third_party/cares/cares/{ares__read_line.c → src/lib/ares__read_line.c} +0 -0
- data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +264 -0
- data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +499 -0
- data/third_party/cares/cares/{ares__timeval.c → src/lib/ares__timeval.c} +0 -0
- data/third_party/cares/cares/src/lib/ares_android.c +444 -0
- data/third_party/cares/cares/src/lib/ares_android.h +27 -0
- data/third_party/cares/cares/{ares_cancel.c → src/lib/ares_cancel.c} +0 -0
- data/third_party/cares/cares/{ares_create_query.c → src/lib/ares_create_query.c} +8 -17
- data/third_party/cares/cares/{ares_data.c → src/lib/ares_data.c} +18 -0
- data/third_party/cares/cares/{ares_data.h → src/lib/ares_data.h} +2 -0
- data/third_party/cares/cares/{ares_destroy.c → src/lib/ares_destroy.c} +0 -0
- data/third_party/cares/cares/{ares_expand_name.c → src/lib/ares_expand_name.c} +114 -23
- data/third_party/cares/cares/{ares_expand_string.c → src/lib/ares_expand_string.c} +2 -5
- data/third_party/cares/cares/{ares_fds.c → src/lib/ares_fds.c} +0 -0
- data/third_party/cares/cares/{ares_free_hostent.c → src/lib/ares_free_hostent.c} +6 -4
- data/third_party/cares/cares/{ares_free_string.c → src/lib/ares_free_string.c} +0 -0
- data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +59 -0
- data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +772 -0
- data/third_party/cares/cares/{ares_getenv.c → src/lib/ares_getenv.c} +0 -2
- data/third_party/cares/cares/{ares_getenv.h → src/lib/ares_getenv.h} +0 -0
- data/third_party/cares/cares/{ares_gethostbyaddr.c → src/lib/ares_gethostbyaddr.c} +2 -9
- data/third_party/cares/cares/{ares_gethostbyname.c → src/lib/ares_gethostbyname.c} +25 -20
- data/third_party/cares/cares/{ares_getnameinfo.c → src/lib/ares_getnameinfo.c} +4 -10
- data/third_party/cares/cares/{ares_getsock.c → src/lib/ares_getsock.c} +0 -0
- data/third_party/cares/cares/{ares_inet_net_pton.h → src/lib/ares_inet_net_pton.h} +0 -0
- data/third_party/cares/cares/{ares_init.c → src/lib/ares_init.c} +79 -40
- data/third_party/cares/cares/{ares_iphlpapi.h → src/lib/ares_iphlpapi.h} +0 -0
- data/third_party/cares/cares/{ares_ipv6.h → src/lib/ares_ipv6.h} +7 -0
- data/third_party/cares/cares/{ares_library_init.c → src/lib/ares_library_init.c} +7 -2
- data/third_party/cares/cares/{ares_library_init.h → src/lib/ares_library_init.h} +1 -1
- data/third_party/cares/cares/{ares_llist.c → src/lib/ares_llist.c} +0 -0
- data/third_party/cares/cares/{ares_llist.h → src/lib/ares_llist.h} +0 -0
- data/third_party/cares/cares/{ares_mkquery.c → src/lib/ares_mkquery.c} +0 -0
- data/third_party/cares/cares/src/lib/ares_nameser.h +482 -0
- data/third_party/cares/cares/{ares_nowarn.c → src/lib/ares_nowarn.c} +0 -0
- data/third_party/cares/cares/{ares_nowarn.h → src/lib/ares_nowarn.h} +0 -0
- data/third_party/cares/cares/{ares_options.c → src/lib/ares_options.c} +0 -0
- data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +209 -0
- data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +212 -0
- data/third_party/cares/cares/src/lib/ares_parse_caa_reply.c +199 -0
- data/third_party/cares/cares/{ares_parse_mx_reply.c → src/lib/ares_parse_mx_reply.c} +2 -8
- data/third_party/cares/cares/{ares_parse_naptr_reply.c → src/lib/ares_parse_naptr_reply.c} +2 -13
- data/third_party/cares/cares/{ares_parse_ns_reply.c → src/lib/ares_parse_ns_reply.c} +5 -11
- data/third_party/cares/cares/{ares_parse_ptr_reply.c → src/lib/ares_parse_ptr_reply.c} +53 -46
- data/third_party/cares/cares/src/lib/ares_parse_soa_reply.c +179 -0
- data/third_party/cares/cares/{ares_parse_srv_reply.c → src/lib/ares_parse_srv_reply.c} +2 -13
- data/third_party/cares/cares/{ares_parse_txt_reply.c → src/lib/ares_parse_txt_reply.c} +3 -9
- data/third_party/cares/cares/{ares_platform.c → src/lib/ares_platform.c} +0 -0
- data/third_party/cares/cares/{ares_platform.h → src/lib/ares_platform.h} +0 -0
- data/third_party/cares/cares/{ares_private.h → src/lib/ares_private.h} +52 -11
- data/third_party/cares/cares/{ares_process.c → src/lib/ares_process.c} +127 -52
- data/third_party/cares/cares/{ares_query.c → src/lib/ares_query.c} +3 -9
- data/third_party/cares/cares/{ares_search.c → src/lib/ares_search.c} +5 -7
- data/third_party/cares/cares/{ares_send.c → src/lib/ares_send.c} +2 -8
- data/third_party/cares/cares/{ares_setup.h → src/lib/ares_setup.h} +4 -1
- data/third_party/cares/cares/{ares_strcasecmp.c → src/lib/ares_strcasecmp.c} +0 -0
- data/third_party/cares/cares/{ares_strcasecmp.h → src/lib/ares_strcasecmp.h} +0 -0
- data/third_party/cares/cares/{ares_strdup.c → src/lib/ares_strdup.c} +0 -0
- data/third_party/cares/cares/{ares_strdup.h → src/lib/ares_strdup.h} +0 -0
- data/third_party/cares/cares/{ares_strerror.c → src/lib/ares_strerror.c} +0 -0
- data/third_party/cares/cares/{ares_strsplit.c → src/lib/ares_strsplit.c} +4 -0
- data/third_party/cares/cares/{ares_strsplit.h → src/lib/ares_strsplit.h} +0 -0
- data/third_party/cares/cares/{ares_timeout.c → src/lib/ares_timeout.c} +0 -0
- data/third_party/cares/cares/{ares_version.c → src/lib/ares_version.c} +0 -0
- data/third_party/cares/cares/{ares_writev.c → src/lib/ares_writev.c} +0 -0
- data/third_party/cares/cares/src/lib/ares_writev.h +36 -0
- data/third_party/cares/cares/{bitncmp.c → src/lib/bitncmp.c} +0 -0
- data/third_party/cares/cares/{bitncmp.h → src/lib/bitncmp.h} +0 -0
- data/third_party/cares/cares/src/lib/config-dos.h +115 -0
- data/third_party/cares/cares/{config-win32.h → src/lib/config-win32.h} +0 -0
- data/third_party/cares/cares/{inet_net_pton.c → src/lib/inet_net_pton.c} +2 -8
- data/third_party/cares/cares/{inet_ntop.c → src/lib/inet_ntop.c} +2 -8
- data/third_party/cares/cares/{setup_once.h → src/lib/setup_once.h} +0 -0
- data/third_party/cares/cares/{windows_port.c → src/lib/windows_port.c} +0 -0
- data/third_party/re2/re2/compile.cc +91 -109
- data/third_party/re2/re2/dfa.cc +27 -39
- data/third_party/re2/re2/filtered_re2.cc +18 -2
- data/third_party/re2/re2/filtered_re2.h +10 -5
- data/third_party/re2/re2/nfa.cc +1 -1
- data/third_party/re2/re2/parse.cc +42 -23
- data/third_party/re2/re2/perl_groups.cc +34 -34
- data/third_party/re2/re2/prefilter.cc +3 -2
- data/third_party/re2/re2/prog.cc +182 -4
- data/third_party/re2/re2/prog.h +28 -9
- data/third_party/re2/re2/re2.cc +87 -118
- data/third_party/re2/re2/re2.h +156 -141
- data/third_party/re2/re2/regexp.cc +12 -5
- data/third_party/re2/re2/regexp.h +8 -2
- data/third_party/re2/re2/set.cc +31 -9
- data/third_party/re2/re2/set.h +9 -4
- data/third_party/re2/re2/simplify.cc +11 -3
- data/third_party/re2/re2/tostring.cc +1 -1
- data/third_party/re2/re2/walker-inl.h +1 -1
- data/third_party/re2/util/mutex.h +2 -2
- data/third_party/re2/util/pcre.h +3 -3
- data/third_party/upb/third_party/utf8_range/naive.c +92 -0
- data/third_party/upb/third_party/utf8_range/range2-neon.c +157 -0
- data/third_party/upb/third_party/utf8_range/range2-sse.c +170 -0
- data/third_party/upb/third_party/utf8_range/utf8_range.h +9 -0
- data/third_party/upb/upb/decode.c +758 -351
- data/third_party/upb/upb/decode.h +66 -12
- data/third_party/upb/upb/decode_fast.c +596 -581
- data/third_party/upb/upb/decode_fast.h +40 -13
- data/third_party/upb/upb/decode_internal.h +211 -0
- data/third_party/upb/upb/def.c +2089 -1069
- data/third_party/upb/upb/def.h +341 -256
- data/third_party/upb/upb/def.hpp +160 -161
- data/third_party/upb/upb/encode.c +285 -165
- data/third_party/upb/upb/encode.h +38 -13
- data/third_party/upb/upb/msg.c +276 -102
- data/third_party/upb/upb/msg.h +84 -582
- data/third_party/upb/upb/msg_internal.h +818 -0
- data/third_party/upb/upb/port_def.inc +85 -24
- data/third_party/upb/upb/port_undef.inc +38 -1
- data/third_party/upb/upb/reflection.c +312 -240
- data/third_party/upb/upb/reflection.h +119 -67
- data/third_party/upb/upb/reflection.hpp +37 -0
- data/third_party/upb/upb/table.c +398 -193
- data/third_party/upb/upb/table_internal.h +383 -0
- data/third_party/upb/upb/text_encode.c +141 -90
- data/third_party/upb/upb/text_encode.h +31 -5
- data/third_party/upb/upb/upb.c +164 -66
- data/third_party/upb/upb/upb.h +145 -139
- data/third_party/upb/upb/upb.hpp +50 -23
- data/third_party/upb/upb/upb_internal.h +68 -0
- data/third_party/xxhash/xxhash.h +679 -542
- metadata +597 -254
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +0 -44
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +0 -84
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +0 -179
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +0 -38
- data/src/core/ext/filters/client_channel/resolver_registry.cc +0 -197
- data/src/core/ext/filters/client_channel/resolver_registry.h +0 -89
- data/src/core/ext/filters/client_channel/service_config_parser.h +0 -92
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +0 -210
- data/src/core/ext/filters/workarounds/workaround_utils.cc +0 -53
- data/src/core/ext/filters/workarounds/workaround_utils.h +0 -39
- data/src/core/ext/transport/chttp2/client/authority.cc +0 -42
- data/src/core/ext/transport/chttp2/client/authority.h +0 -36
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +0 -125
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +0 -90
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +0 -213
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +0 -55
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +0 -76
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +0 -130
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -37
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +0 -242
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +0 -148
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -66
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +0 -58
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +0 -27
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +0 -56
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +0 -27
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +0 -56
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +0 -27
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +0 -56
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +0 -27
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +0 -56
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +0 -27
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +0 -56
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +0 -58
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +0 -124
- data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.c +0 -33
- data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.h +0 -77
- data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +0 -72
- data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +0 -73
- data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +0 -72
- data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +0 -80
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +0 -74
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.c +0 -44
- data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.h +0 -35
- data/src/core/lib/avl/avl.cc +0 -306
- data/src/core/lib/compression/algorithm_metadata.h +0 -61
- data/src/core/lib/compression/compression_args.cc +0 -135
- data/src/core/lib/compression/compression_args.h +0 -56
- data/src/core/lib/compression/stream_compression.cc +0 -80
- data/src/core/lib/compression/stream_compression.h +0 -116
- data/src/core/lib/compression/stream_compression_gzip.cc +0 -230
- data/src/core/lib/compression/stream_compression_gzip.h +0 -28
- data/src/core/lib/compression/stream_compression_identity.cc +0 -90
- data/src/core/lib/compression/stream_compression_identity.h +0 -29
- data/src/core/lib/gpr/arena.h +0 -47
- data/src/core/lib/gpr/tls_gcc.h +0 -52
- data/src/core/lib/gpr/tls_msvc.h +0 -54
- data/src/core/lib/gpr/tls_pthread.h +0 -56
- data/src/core/lib/gpr/tls_stdcpp.h +0 -48
- data/src/core/lib/gprpp/atomic.h +0 -104
- data/src/core/lib/iomgr/endpoint_pair_uv.cc +0 -40
- data/src/core/lib/iomgr/iomgr_custom.cc +0 -79
- data/src/core/lib/iomgr/iomgr_custom.h +0 -49
- data/src/core/lib/iomgr/iomgr_uv.cc +0 -43
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +0 -88
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +0 -88
- data/src/core/lib/iomgr/pollset_custom.cc +0 -106
- data/src/core/lib/iomgr/pollset_custom.h +0 -35
- data/src/core/lib/iomgr/pollset_set_custom.cc +0 -48
- data/src/core/lib/iomgr/pollset_set_custom.h +0 -26
- data/src/core/lib/iomgr/pollset_uv.cc +0 -93
- data/src/core/lib/iomgr/pollset_uv.h +0 -32
- data/src/core/lib/iomgr/resolve_address_custom.cc +0 -168
- data/src/core/lib/iomgr/resolve_address_custom.h +0 -45
- data/src/core/lib/iomgr/resource_quota.cc +0 -1016
- data/src/core/lib/iomgr/resource_quota.h +0 -177
- data/src/core/lib/iomgr/sockaddr_custom.h +0 -54
- data/src/core/lib/iomgr/tcp_client_custom.cc +0 -161
- data/src/core/lib/iomgr/tcp_custom.cc +0 -391
- data/src/core/lib/iomgr/tcp_custom.h +0 -84
- data/src/core/lib/iomgr/tcp_server_custom.cc +0 -483
- data/src/core/lib/iomgr/tcp_uv.cc +0 -419
- data/src/core/lib/iomgr/timer_custom.cc +0 -95
- data/src/core/lib/iomgr/timer_custom.h +0 -43
- data/src/core/lib/iomgr/timer_uv.cc +0 -66
- data/src/core/lib/iomgr/udp_server.cc +0 -747
- data/src/core/lib/iomgr/udp_server.h +0 -103
- data/src/core/lib/security/credentials/credentials_metadata.cc +0 -62
- data/src/core/lib/slice/slice_intern.cc +0 -373
- data/src/core/lib/slice/slice_utils.h +0 -200
- data/src/core/lib/surface/init_secure.cc +0 -81
- data/src/core/lib/transport/metadata.cc +0 -693
- data/src/core/lib/transport/metadata.h +0 -446
- data/src/core/lib/transport/metadata_batch.cc +0 -419
- data/src/core/lib/transport/static_metadata.cc +0 -1249
- data/src/core/lib/transport/static_metadata.h +0 -604
- data/src/core/lib/transport/status_metadata.cc +0 -62
- data/src/core/lib/transport/status_metadata.h +0 -48
- data/third_party/abseil-cpp/absl/base/internal/bits.h +0 -219
- data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +0 -249
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +0 -29
- data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +0 -246
- data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +0 -71
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
- data/third_party/cares/cares/ares_getopt.c +0 -122
- data/third_party/cares/cares/ares_getopt.h +0 -53
- data/third_party/cares/cares/ares_parse_a_reply.c +0 -264
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +0 -264
- data/third_party/cares/cares/ares_parse_soa_reply.c +0 -133
- data/third_party/upb/third_party/wyhash/wyhash.h +0 -145
- data/third_party/upb/upb/decode.int.h +0 -163
- data/third_party/upb/upb/table.int.h +0 -475
- data/third_party/upb/upb/upb.int.h +0 -29
@@ -9,7 +9,7 @@
|
|
9
9
|
#ifndef VALIDATE_VALIDATE_PROTO_UPB_H_
|
10
10
|
#define VALIDATE_VALIDATE_PROTO_UPB_H_
|
11
11
|
|
12
|
-
#include "upb/
|
12
|
+
#include "upb/msg_internal.h"
|
13
13
|
#include "upb/decode.h"
|
14
14
|
#include "upb/decode_fast.h"
|
15
15
|
#include "upb/encode.h"
|
@@ -66,33 +66,43 @@ typedef struct validate_MapRules validate_MapRules;
|
|
66
66
|
typedef struct validate_AnyRules validate_AnyRules;
|
67
67
|
typedef struct validate_DurationRules validate_DurationRules;
|
68
68
|
typedef struct validate_TimestampRules validate_TimestampRules;
|
69
|
-
extern const
|
70
|
-
extern const
|
71
|
-
extern const
|
72
|
-
extern const
|
73
|
-
extern const
|
74
|
-
extern const
|
75
|
-
extern const
|
76
|
-
extern const
|
77
|
-
extern const
|
78
|
-
extern const
|
79
|
-
extern const
|
80
|
-
extern const
|
81
|
-
extern const
|
82
|
-
extern const
|
83
|
-
extern const
|
84
|
-
extern const
|
85
|
-
extern const
|
86
|
-
extern const
|
87
|
-
extern const
|
88
|
-
extern const
|
89
|
-
extern const
|
90
|
-
extern const
|
91
|
-
extern const
|
69
|
+
extern const upb_MiniTable validate_FieldRules_msginit;
|
70
|
+
extern const upb_MiniTable validate_FloatRules_msginit;
|
71
|
+
extern const upb_MiniTable validate_DoubleRules_msginit;
|
72
|
+
extern const upb_MiniTable validate_Int32Rules_msginit;
|
73
|
+
extern const upb_MiniTable validate_Int64Rules_msginit;
|
74
|
+
extern const upb_MiniTable validate_UInt32Rules_msginit;
|
75
|
+
extern const upb_MiniTable validate_UInt64Rules_msginit;
|
76
|
+
extern const upb_MiniTable validate_SInt32Rules_msginit;
|
77
|
+
extern const upb_MiniTable validate_SInt64Rules_msginit;
|
78
|
+
extern const upb_MiniTable validate_Fixed32Rules_msginit;
|
79
|
+
extern const upb_MiniTable validate_Fixed64Rules_msginit;
|
80
|
+
extern const upb_MiniTable validate_SFixed32Rules_msginit;
|
81
|
+
extern const upb_MiniTable validate_SFixed64Rules_msginit;
|
82
|
+
extern const upb_MiniTable validate_BoolRules_msginit;
|
83
|
+
extern const upb_MiniTable validate_StringRules_msginit;
|
84
|
+
extern const upb_MiniTable validate_BytesRules_msginit;
|
85
|
+
extern const upb_MiniTable validate_EnumRules_msginit;
|
86
|
+
extern const upb_MiniTable validate_MessageRules_msginit;
|
87
|
+
extern const upb_MiniTable validate_RepeatedRules_msginit;
|
88
|
+
extern const upb_MiniTable validate_MapRules_msginit;
|
89
|
+
extern const upb_MiniTable validate_AnyRules_msginit;
|
90
|
+
extern const upb_MiniTable validate_DurationRules_msginit;
|
91
|
+
extern const upb_MiniTable validate_TimestampRules_msginit;
|
92
|
+
extern const upb_MiniTable_Extension validate_disabled_ext;
|
93
|
+
extern const upb_MiniTable_Extension validate_ignored_ext;
|
94
|
+
extern const upb_MiniTable_Extension validate_required_ext;
|
95
|
+
extern const upb_MiniTable_Extension validate_rules_ext;
|
92
96
|
struct google_protobuf_Duration;
|
97
|
+
struct google_protobuf_FieldOptions;
|
98
|
+
struct google_protobuf_MessageOptions;
|
99
|
+
struct google_protobuf_OneofOptions;
|
93
100
|
struct google_protobuf_Timestamp;
|
94
|
-
extern const
|
95
|
-
extern const
|
101
|
+
extern const upb_MiniTable google_protobuf_Duration_msginit;
|
102
|
+
extern const upb_MiniTable google_protobuf_FieldOptions_msginit;
|
103
|
+
extern const upb_MiniTable google_protobuf_MessageOptions_msginit;
|
104
|
+
extern const upb_MiniTable google_protobuf_OneofOptions_msginit;
|
105
|
+
extern const upb_MiniTable google_protobuf_Timestamp_msginit;
|
96
106
|
|
97
107
|
typedef enum {
|
98
108
|
validate_UNKNOWN = 0,
|
@@ -101,26 +111,39 @@ typedef enum {
|
|
101
111
|
} validate_KnownRegex;
|
102
112
|
|
103
113
|
|
114
|
+
extern const upb_MiniTable_Enum validate_KnownRegex_enuminit;
|
115
|
+
|
104
116
|
/* validate.FieldRules */
|
105
117
|
|
106
|
-
UPB_INLINE validate_FieldRules
|
107
|
-
return (validate_FieldRules
|
118
|
+
UPB_INLINE validate_FieldRules* validate_FieldRules_new(upb_Arena* arena) {
|
119
|
+
return (validate_FieldRules*)_upb_Message_New(&validate_FieldRules_msginit, arena);
|
108
120
|
}
|
109
|
-
UPB_INLINE validate_FieldRules
|
110
|
-
|
111
|
-
|
112
|
-
|
121
|
+
UPB_INLINE validate_FieldRules* validate_FieldRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
122
|
+
validate_FieldRules* ret = validate_FieldRules_new(arena);
|
123
|
+
if (!ret) return NULL;
|
124
|
+
if (upb_Decode(buf, size, ret, &validate_FieldRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
125
|
+
return NULL;
|
126
|
+
}
|
127
|
+
return ret;
|
128
|
+
}
|
129
|
+
UPB_INLINE validate_FieldRules* validate_FieldRules_parse_ex(const char* buf, size_t size,
|
130
|
+
const upb_ExtensionRegistry* extreg,
|
131
|
+
int options, upb_Arena* arena) {
|
132
|
+
validate_FieldRules* ret = validate_FieldRules_new(arena);
|
133
|
+
if (!ret) return NULL;
|
134
|
+
if (upb_Decode(buf, size, ret, &validate_FieldRules_msginit, extreg, options, arena) !=
|
135
|
+
kUpb_DecodeStatus_Ok) {
|
136
|
+
return NULL;
|
137
|
+
}
|
138
|
+
return ret;
|
113
139
|
}
|
114
|
-
UPB_INLINE
|
115
|
-
|
116
|
-
validate_FieldRules *ret = validate_FieldRules_new(arena);
|
117
|
-
return (ret && _upb_decode(buf, size, ret, &validate_FieldRules_msginit, arena, options))
|
118
|
-
? ret : NULL;
|
140
|
+
UPB_INLINE char* validate_FieldRules_serialize(const validate_FieldRules* msg, upb_Arena* arena, size_t* len) {
|
141
|
+
return upb_Encode(msg, &validate_FieldRules_msginit, 0, arena, len);
|
119
142
|
}
|
120
|
-
UPB_INLINE char
|
121
|
-
|
143
|
+
UPB_INLINE char* validate_FieldRules_serialize_ex(const validate_FieldRules* msg, int options,
|
144
|
+
upb_Arena* arena, size_t* len) {
|
145
|
+
return upb_Encode(msg, &validate_FieldRules_msginit, options, arena, len);
|
122
146
|
}
|
123
|
-
|
124
147
|
typedef enum {
|
125
148
|
validate_FieldRules_type_float = 1,
|
126
149
|
validate_FieldRules_type_double = 2,
|
@@ -180,7 +203,9 @@ UPB_INLINE const validate_BytesRules* validate_FieldRules_bytes(const validate_F
|
|
180
203
|
UPB_INLINE bool validate_FieldRules_has_enum(const validate_FieldRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(12, 24)) == 16; }
|
181
204
|
UPB_INLINE const validate_EnumRules* validate_FieldRules_enum(const validate_FieldRules *msg) { return UPB_READ_ONEOF(msg, const validate_EnumRules*, UPB_SIZE(8, 16), UPB_SIZE(12, 24), 16, NULL); }
|
182
205
|
UPB_INLINE bool validate_FieldRules_has_message(const validate_FieldRules *msg) { return _upb_hasbit(msg, 1); }
|
183
|
-
UPB_INLINE const validate_MessageRules* validate_FieldRules_message(const validate_FieldRules
|
206
|
+
UPB_INLINE const validate_MessageRules* validate_FieldRules_message(const validate_FieldRules* msg) {
|
207
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const validate_MessageRules*);
|
208
|
+
}
|
184
209
|
UPB_INLINE bool validate_FieldRules_has_repeated(const validate_FieldRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(12, 24)) == 18; }
|
185
210
|
UPB_INLINE const validate_RepeatedRules* validate_FieldRules_repeated(const validate_FieldRules *msg) { return UPB_READ_ONEOF(msg, const validate_RepeatedRules*, UPB_SIZE(8, 16), UPB_SIZE(12, 24), 18, NULL); }
|
186
211
|
UPB_INLINE bool validate_FieldRules_has_map(const validate_FieldRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(12, 24)) == 19; }
|
@@ -195,10 +220,10 @@ UPB_INLINE const validate_TimestampRules* validate_FieldRules_timestamp(const va
|
|
195
220
|
UPB_INLINE void validate_FieldRules_set_float(validate_FieldRules *msg, validate_FloatRules* value) {
|
196
221
|
UPB_WRITE_ONEOF(msg, validate_FloatRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 1);
|
197
222
|
}
|
198
|
-
UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validate_FieldRules *msg,
|
223
|
+
UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validate_FieldRules *msg, upb_Arena *arena) {
|
199
224
|
struct validate_FloatRules* sub = (struct validate_FloatRules*)validate_FieldRules_float(msg);
|
200
225
|
if (sub == NULL) {
|
201
|
-
sub = (struct validate_FloatRules*)
|
226
|
+
sub = (struct validate_FloatRules*)_upb_Message_New(&validate_FloatRules_msginit, arena);
|
202
227
|
if (!sub) return NULL;
|
203
228
|
validate_FieldRules_set_float(msg, sub);
|
204
229
|
}
|
@@ -207,10 +232,10 @@ UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validat
|
|
207
232
|
UPB_INLINE void validate_FieldRules_set_double(validate_FieldRules *msg, validate_DoubleRules* value) {
|
208
233
|
UPB_WRITE_ONEOF(msg, validate_DoubleRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 2);
|
209
234
|
}
|
210
|
-
UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(validate_FieldRules *msg,
|
235
|
+
UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(validate_FieldRules *msg, upb_Arena *arena) {
|
211
236
|
struct validate_DoubleRules* sub = (struct validate_DoubleRules*)validate_FieldRules_double(msg);
|
212
237
|
if (sub == NULL) {
|
213
|
-
sub = (struct validate_DoubleRules*)
|
238
|
+
sub = (struct validate_DoubleRules*)_upb_Message_New(&validate_DoubleRules_msginit, arena);
|
214
239
|
if (!sub) return NULL;
|
215
240
|
validate_FieldRules_set_double(msg, sub);
|
216
241
|
}
|
@@ -219,10 +244,10 @@ UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(valid
|
|
219
244
|
UPB_INLINE void validate_FieldRules_set_int32(validate_FieldRules *msg, validate_Int32Rules* value) {
|
220
245
|
UPB_WRITE_ONEOF(msg, validate_Int32Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 3);
|
221
246
|
}
|
222
|
-
UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validate_FieldRules *msg,
|
247
|
+
UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validate_FieldRules *msg, upb_Arena *arena) {
|
223
248
|
struct validate_Int32Rules* sub = (struct validate_Int32Rules*)validate_FieldRules_int32(msg);
|
224
249
|
if (sub == NULL) {
|
225
|
-
sub = (struct validate_Int32Rules*)
|
250
|
+
sub = (struct validate_Int32Rules*)_upb_Message_New(&validate_Int32Rules_msginit, arena);
|
226
251
|
if (!sub) return NULL;
|
227
252
|
validate_FieldRules_set_int32(msg, sub);
|
228
253
|
}
|
@@ -231,10 +256,10 @@ UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validat
|
|
231
256
|
UPB_INLINE void validate_FieldRules_set_int64(validate_FieldRules *msg, validate_Int64Rules* value) {
|
232
257
|
UPB_WRITE_ONEOF(msg, validate_Int64Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 4);
|
233
258
|
}
|
234
|
-
UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validate_FieldRules *msg,
|
259
|
+
UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validate_FieldRules *msg, upb_Arena *arena) {
|
235
260
|
struct validate_Int64Rules* sub = (struct validate_Int64Rules*)validate_FieldRules_int64(msg);
|
236
261
|
if (sub == NULL) {
|
237
|
-
sub = (struct validate_Int64Rules*)
|
262
|
+
sub = (struct validate_Int64Rules*)_upb_Message_New(&validate_Int64Rules_msginit, arena);
|
238
263
|
if (!sub) return NULL;
|
239
264
|
validate_FieldRules_set_int64(msg, sub);
|
240
265
|
}
|
@@ -243,10 +268,10 @@ UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validat
|
|
243
268
|
UPB_INLINE void validate_FieldRules_set_uint32(validate_FieldRules *msg, validate_UInt32Rules* value) {
|
244
269
|
UPB_WRITE_ONEOF(msg, validate_UInt32Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 5);
|
245
270
|
}
|
246
|
-
UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(validate_FieldRules *msg,
|
271
|
+
UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(validate_FieldRules *msg, upb_Arena *arena) {
|
247
272
|
struct validate_UInt32Rules* sub = (struct validate_UInt32Rules*)validate_FieldRules_uint32(msg);
|
248
273
|
if (sub == NULL) {
|
249
|
-
sub = (struct validate_UInt32Rules*)
|
274
|
+
sub = (struct validate_UInt32Rules*)_upb_Message_New(&validate_UInt32Rules_msginit, arena);
|
250
275
|
if (!sub) return NULL;
|
251
276
|
validate_FieldRules_set_uint32(msg, sub);
|
252
277
|
}
|
@@ -255,10 +280,10 @@ UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(valid
|
|
255
280
|
UPB_INLINE void validate_FieldRules_set_uint64(validate_FieldRules *msg, validate_UInt64Rules* value) {
|
256
281
|
UPB_WRITE_ONEOF(msg, validate_UInt64Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 6);
|
257
282
|
}
|
258
|
-
UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(validate_FieldRules *msg,
|
283
|
+
UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(validate_FieldRules *msg, upb_Arena *arena) {
|
259
284
|
struct validate_UInt64Rules* sub = (struct validate_UInt64Rules*)validate_FieldRules_uint64(msg);
|
260
285
|
if (sub == NULL) {
|
261
|
-
sub = (struct validate_UInt64Rules*)
|
286
|
+
sub = (struct validate_UInt64Rules*)_upb_Message_New(&validate_UInt64Rules_msginit, arena);
|
262
287
|
if (!sub) return NULL;
|
263
288
|
validate_FieldRules_set_uint64(msg, sub);
|
264
289
|
}
|
@@ -267,10 +292,10 @@ UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(valid
|
|
267
292
|
UPB_INLINE void validate_FieldRules_set_sint32(validate_FieldRules *msg, validate_SInt32Rules* value) {
|
268
293
|
UPB_WRITE_ONEOF(msg, validate_SInt32Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 7);
|
269
294
|
}
|
270
|
-
UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(validate_FieldRules *msg,
|
295
|
+
UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(validate_FieldRules *msg, upb_Arena *arena) {
|
271
296
|
struct validate_SInt32Rules* sub = (struct validate_SInt32Rules*)validate_FieldRules_sint32(msg);
|
272
297
|
if (sub == NULL) {
|
273
|
-
sub = (struct validate_SInt32Rules*)
|
298
|
+
sub = (struct validate_SInt32Rules*)_upb_Message_New(&validate_SInt32Rules_msginit, arena);
|
274
299
|
if (!sub) return NULL;
|
275
300
|
validate_FieldRules_set_sint32(msg, sub);
|
276
301
|
}
|
@@ -279,10 +304,10 @@ UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(valid
|
|
279
304
|
UPB_INLINE void validate_FieldRules_set_sint64(validate_FieldRules *msg, validate_SInt64Rules* value) {
|
280
305
|
UPB_WRITE_ONEOF(msg, validate_SInt64Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 8);
|
281
306
|
}
|
282
|
-
UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(validate_FieldRules *msg,
|
307
|
+
UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(validate_FieldRules *msg, upb_Arena *arena) {
|
283
308
|
struct validate_SInt64Rules* sub = (struct validate_SInt64Rules*)validate_FieldRules_sint64(msg);
|
284
309
|
if (sub == NULL) {
|
285
|
-
sub = (struct validate_SInt64Rules*)
|
310
|
+
sub = (struct validate_SInt64Rules*)_upb_Message_New(&validate_SInt64Rules_msginit, arena);
|
286
311
|
if (!sub) return NULL;
|
287
312
|
validate_FieldRules_set_sint64(msg, sub);
|
288
313
|
}
|
@@ -291,10 +316,10 @@ UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(valid
|
|
291
316
|
UPB_INLINE void validate_FieldRules_set_fixed32(validate_FieldRules *msg, validate_Fixed32Rules* value) {
|
292
317
|
UPB_WRITE_ONEOF(msg, validate_Fixed32Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 9);
|
293
318
|
}
|
294
|
-
UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(validate_FieldRules *msg,
|
319
|
+
UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(validate_FieldRules *msg, upb_Arena *arena) {
|
295
320
|
struct validate_Fixed32Rules* sub = (struct validate_Fixed32Rules*)validate_FieldRules_fixed32(msg);
|
296
321
|
if (sub == NULL) {
|
297
|
-
sub = (struct validate_Fixed32Rules*)
|
322
|
+
sub = (struct validate_Fixed32Rules*)_upb_Message_New(&validate_Fixed32Rules_msginit, arena);
|
298
323
|
if (!sub) return NULL;
|
299
324
|
validate_FieldRules_set_fixed32(msg, sub);
|
300
325
|
}
|
@@ -303,10 +328,10 @@ UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(val
|
|
303
328
|
UPB_INLINE void validate_FieldRules_set_fixed64(validate_FieldRules *msg, validate_Fixed64Rules* value) {
|
304
329
|
UPB_WRITE_ONEOF(msg, validate_Fixed64Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 10);
|
305
330
|
}
|
306
|
-
UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(validate_FieldRules *msg,
|
331
|
+
UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(validate_FieldRules *msg, upb_Arena *arena) {
|
307
332
|
struct validate_Fixed64Rules* sub = (struct validate_Fixed64Rules*)validate_FieldRules_fixed64(msg);
|
308
333
|
if (sub == NULL) {
|
309
|
-
sub = (struct validate_Fixed64Rules*)
|
334
|
+
sub = (struct validate_Fixed64Rules*)_upb_Message_New(&validate_Fixed64Rules_msginit, arena);
|
310
335
|
if (!sub) return NULL;
|
311
336
|
validate_FieldRules_set_fixed64(msg, sub);
|
312
337
|
}
|
@@ -315,10 +340,10 @@ UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(val
|
|
315
340
|
UPB_INLINE void validate_FieldRules_set_sfixed32(validate_FieldRules *msg, validate_SFixed32Rules* value) {
|
316
341
|
UPB_WRITE_ONEOF(msg, validate_SFixed32Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 11);
|
317
342
|
}
|
318
|
-
UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(validate_FieldRules *msg,
|
343
|
+
UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(validate_FieldRules *msg, upb_Arena *arena) {
|
319
344
|
struct validate_SFixed32Rules* sub = (struct validate_SFixed32Rules*)validate_FieldRules_sfixed32(msg);
|
320
345
|
if (sub == NULL) {
|
321
|
-
sub = (struct validate_SFixed32Rules*)
|
346
|
+
sub = (struct validate_SFixed32Rules*)_upb_Message_New(&validate_SFixed32Rules_msginit, arena);
|
322
347
|
if (!sub) return NULL;
|
323
348
|
validate_FieldRules_set_sfixed32(msg, sub);
|
324
349
|
}
|
@@ -327,10 +352,10 @@ UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(v
|
|
327
352
|
UPB_INLINE void validate_FieldRules_set_sfixed64(validate_FieldRules *msg, validate_SFixed64Rules* value) {
|
328
353
|
UPB_WRITE_ONEOF(msg, validate_SFixed64Rules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 12);
|
329
354
|
}
|
330
|
-
UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(validate_FieldRules *msg,
|
355
|
+
UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(validate_FieldRules *msg, upb_Arena *arena) {
|
331
356
|
struct validate_SFixed64Rules* sub = (struct validate_SFixed64Rules*)validate_FieldRules_sfixed64(msg);
|
332
357
|
if (sub == NULL) {
|
333
|
-
sub = (struct validate_SFixed64Rules*)
|
358
|
+
sub = (struct validate_SFixed64Rules*)_upb_Message_New(&validate_SFixed64Rules_msginit, arena);
|
334
359
|
if (!sub) return NULL;
|
335
360
|
validate_FieldRules_set_sfixed64(msg, sub);
|
336
361
|
}
|
@@ -339,10 +364,10 @@ UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(v
|
|
339
364
|
UPB_INLINE void validate_FieldRules_set_bool(validate_FieldRules *msg, validate_BoolRules* value) {
|
340
365
|
UPB_WRITE_ONEOF(msg, validate_BoolRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 13);
|
341
366
|
}
|
342
|
-
UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_FieldRules *msg,
|
367
|
+
UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_FieldRules *msg, upb_Arena *arena) {
|
343
368
|
struct validate_BoolRules* sub = (struct validate_BoolRules*)validate_FieldRules_bool(msg);
|
344
369
|
if (sub == NULL) {
|
345
|
-
sub = (struct validate_BoolRules*)
|
370
|
+
sub = (struct validate_BoolRules*)_upb_Message_New(&validate_BoolRules_msginit, arena);
|
346
371
|
if (!sub) return NULL;
|
347
372
|
validate_FieldRules_set_bool(msg, sub);
|
348
373
|
}
|
@@ -351,10 +376,10 @@ UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_
|
|
351
376
|
UPB_INLINE void validate_FieldRules_set_string(validate_FieldRules *msg, validate_StringRules* value) {
|
352
377
|
UPB_WRITE_ONEOF(msg, validate_StringRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 14);
|
353
378
|
}
|
354
|
-
UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(validate_FieldRules *msg,
|
379
|
+
UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(validate_FieldRules *msg, upb_Arena *arena) {
|
355
380
|
struct validate_StringRules* sub = (struct validate_StringRules*)validate_FieldRules_string(msg);
|
356
381
|
if (sub == NULL) {
|
357
|
-
sub = (struct validate_StringRules*)
|
382
|
+
sub = (struct validate_StringRules*)_upb_Message_New(&validate_StringRules_msginit, arena);
|
358
383
|
if (!sub) return NULL;
|
359
384
|
validate_FieldRules_set_string(msg, sub);
|
360
385
|
}
|
@@ -363,10 +388,10 @@ UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(valid
|
|
363
388
|
UPB_INLINE void validate_FieldRules_set_bytes(validate_FieldRules *msg, validate_BytesRules* value) {
|
364
389
|
UPB_WRITE_ONEOF(msg, validate_BytesRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 15);
|
365
390
|
}
|
366
|
-
UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validate_FieldRules *msg,
|
391
|
+
UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validate_FieldRules *msg, upb_Arena *arena) {
|
367
392
|
struct validate_BytesRules* sub = (struct validate_BytesRules*)validate_FieldRules_bytes(msg);
|
368
393
|
if (sub == NULL) {
|
369
|
-
sub = (struct validate_BytesRules*)
|
394
|
+
sub = (struct validate_BytesRules*)_upb_Message_New(&validate_BytesRules_msginit, arena);
|
370
395
|
if (!sub) return NULL;
|
371
396
|
validate_FieldRules_set_bytes(msg, sub);
|
372
397
|
}
|
@@ -375,10 +400,10 @@ UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validat
|
|
375
400
|
UPB_INLINE void validate_FieldRules_set_enum(validate_FieldRules *msg, validate_EnumRules* value) {
|
376
401
|
UPB_WRITE_ONEOF(msg, validate_EnumRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 16);
|
377
402
|
}
|
378
|
-
UPB_INLINE struct validate_EnumRules* validate_FieldRules_mutable_enum(validate_FieldRules *msg,
|
403
|
+
UPB_INLINE struct validate_EnumRules* validate_FieldRules_mutable_enum(validate_FieldRules *msg, upb_Arena *arena) {
|
379
404
|
struct validate_EnumRules* sub = (struct validate_EnumRules*)validate_FieldRules_enum(msg);
|
380
405
|
if (sub == NULL) {
|
381
|
-
sub = (struct validate_EnumRules*)
|
406
|
+
sub = (struct validate_EnumRules*)_upb_Message_New(&validate_EnumRules_msginit, arena);
|
382
407
|
if (!sub) return NULL;
|
383
408
|
validate_FieldRules_set_enum(msg, sub);
|
384
409
|
}
|
@@ -388,10 +413,10 @@ UPB_INLINE void validate_FieldRules_set_message(validate_FieldRules *msg, valida
|
|
388
413
|
_upb_sethas(msg, 1);
|
389
414
|
*UPB_PTR_AT(msg, UPB_SIZE(4, 8), validate_MessageRules*) = value;
|
390
415
|
}
|
391
|
-
UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(validate_FieldRules *msg,
|
416
|
+
UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(validate_FieldRules *msg, upb_Arena *arena) {
|
392
417
|
struct validate_MessageRules* sub = (struct validate_MessageRules*)validate_FieldRules_message(msg);
|
393
418
|
if (sub == NULL) {
|
394
|
-
sub = (struct validate_MessageRules*)
|
419
|
+
sub = (struct validate_MessageRules*)_upb_Message_New(&validate_MessageRules_msginit, arena);
|
395
420
|
if (!sub) return NULL;
|
396
421
|
validate_FieldRules_set_message(msg, sub);
|
397
422
|
}
|
@@ -400,10 +425,10 @@ UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(val
|
|
400
425
|
UPB_INLINE void validate_FieldRules_set_repeated(validate_FieldRules *msg, validate_RepeatedRules* value) {
|
401
426
|
UPB_WRITE_ONEOF(msg, validate_RepeatedRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 18);
|
402
427
|
}
|
403
|
-
UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(validate_FieldRules *msg,
|
428
|
+
UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(validate_FieldRules *msg, upb_Arena *arena) {
|
404
429
|
struct validate_RepeatedRules* sub = (struct validate_RepeatedRules*)validate_FieldRules_repeated(msg);
|
405
430
|
if (sub == NULL) {
|
406
|
-
sub = (struct validate_RepeatedRules*)
|
431
|
+
sub = (struct validate_RepeatedRules*)_upb_Message_New(&validate_RepeatedRules_msginit, arena);
|
407
432
|
if (!sub) return NULL;
|
408
433
|
validate_FieldRules_set_repeated(msg, sub);
|
409
434
|
}
|
@@ -412,10 +437,10 @@ UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(v
|
|
412
437
|
UPB_INLINE void validate_FieldRules_set_map(validate_FieldRules *msg, validate_MapRules* value) {
|
413
438
|
UPB_WRITE_ONEOF(msg, validate_MapRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 19);
|
414
439
|
}
|
415
|
-
UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_FieldRules *msg,
|
440
|
+
UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_FieldRules *msg, upb_Arena *arena) {
|
416
441
|
struct validate_MapRules* sub = (struct validate_MapRules*)validate_FieldRules_map(msg);
|
417
442
|
if (sub == NULL) {
|
418
|
-
sub = (struct validate_MapRules*)
|
443
|
+
sub = (struct validate_MapRules*)_upb_Message_New(&validate_MapRules_msginit, arena);
|
419
444
|
if (!sub) return NULL;
|
420
445
|
validate_FieldRules_set_map(msg, sub);
|
421
446
|
}
|
@@ -424,10 +449,10 @@ UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_Fi
|
|
424
449
|
UPB_INLINE void validate_FieldRules_set_any(validate_FieldRules *msg, validate_AnyRules* value) {
|
425
450
|
UPB_WRITE_ONEOF(msg, validate_AnyRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 20);
|
426
451
|
}
|
427
|
-
UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_FieldRules *msg,
|
452
|
+
UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_FieldRules *msg, upb_Arena *arena) {
|
428
453
|
struct validate_AnyRules* sub = (struct validate_AnyRules*)validate_FieldRules_any(msg);
|
429
454
|
if (sub == NULL) {
|
430
|
-
sub = (struct validate_AnyRules*)
|
455
|
+
sub = (struct validate_AnyRules*)_upb_Message_New(&validate_AnyRules_msginit, arena);
|
431
456
|
if (!sub) return NULL;
|
432
457
|
validate_FieldRules_set_any(msg, sub);
|
433
458
|
}
|
@@ -436,10 +461,10 @@ UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_Fi
|
|
436
461
|
UPB_INLINE void validate_FieldRules_set_duration(validate_FieldRules *msg, validate_DurationRules* value) {
|
437
462
|
UPB_WRITE_ONEOF(msg, validate_DurationRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 21);
|
438
463
|
}
|
439
|
-
UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(validate_FieldRules *msg,
|
464
|
+
UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(validate_FieldRules *msg, upb_Arena *arena) {
|
440
465
|
struct validate_DurationRules* sub = (struct validate_DurationRules*)validate_FieldRules_duration(msg);
|
441
466
|
if (sub == NULL) {
|
442
|
-
sub = (struct validate_DurationRules*)
|
467
|
+
sub = (struct validate_DurationRules*)_upb_Message_New(&validate_DurationRules_msginit, arena);
|
443
468
|
if (!sub) return NULL;
|
444
469
|
validate_FieldRules_set_duration(msg, sub);
|
445
470
|
}
|
@@ -448,10 +473,10 @@ UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(v
|
|
448
473
|
UPB_INLINE void validate_FieldRules_set_timestamp(validate_FieldRules *msg, validate_TimestampRules* value) {
|
449
474
|
UPB_WRITE_ONEOF(msg, validate_TimestampRules*, UPB_SIZE(8, 16), value, UPB_SIZE(12, 24), 22);
|
450
475
|
}
|
451
|
-
UPB_INLINE struct validate_TimestampRules* validate_FieldRules_mutable_timestamp(validate_FieldRules *msg,
|
476
|
+
UPB_INLINE struct validate_TimestampRules* validate_FieldRules_mutable_timestamp(validate_FieldRules *msg, upb_Arena *arena) {
|
452
477
|
struct validate_TimestampRules* sub = (struct validate_TimestampRules*)validate_FieldRules_timestamp(msg);
|
453
478
|
if (sub == NULL) {
|
454
|
-
sub = (struct validate_TimestampRules*)
|
479
|
+
sub = (struct validate_TimestampRules*)_upb_Message_New(&validate_TimestampRules_msginit, arena);
|
455
480
|
if (!sub) return NULL;
|
456
481
|
validate_FieldRules_set_timestamp(msg, sub);
|
457
482
|
}
|
@@ -460,36 +485,61 @@ UPB_INLINE struct validate_TimestampRules* validate_FieldRules_mutable_timestamp
|
|
460
485
|
|
461
486
|
/* validate.FloatRules */
|
462
487
|
|
463
|
-
UPB_INLINE validate_FloatRules
|
464
|
-
return (validate_FloatRules
|
488
|
+
UPB_INLINE validate_FloatRules* validate_FloatRules_new(upb_Arena* arena) {
|
489
|
+
return (validate_FloatRules*)_upb_Message_New(&validate_FloatRules_msginit, arena);
|
465
490
|
}
|
466
|
-
UPB_INLINE validate_FloatRules
|
467
|
-
|
468
|
-
|
469
|
-
|
491
|
+
UPB_INLINE validate_FloatRules* validate_FloatRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
492
|
+
validate_FloatRules* ret = validate_FloatRules_new(arena);
|
493
|
+
if (!ret) return NULL;
|
494
|
+
if (upb_Decode(buf, size, ret, &validate_FloatRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
495
|
+
return NULL;
|
496
|
+
}
|
497
|
+
return ret;
|
498
|
+
}
|
499
|
+
UPB_INLINE validate_FloatRules* validate_FloatRules_parse_ex(const char* buf, size_t size,
|
500
|
+
const upb_ExtensionRegistry* extreg,
|
501
|
+
int options, upb_Arena* arena) {
|
502
|
+
validate_FloatRules* ret = validate_FloatRules_new(arena);
|
503
|
+
if (!ret) return NULL;
|
504
|
+
if (upb_Decode(buf, size, ret, &validate_FloatRules_msginit, extreg, options, arena) !=
|
505
|
+
kUpb_DecodeStatus_Ok) {
|
506
|
+
return NULL;
|
507
|
+
}
|
508
|
+
return ret;
|
470
509
|
}
|
471
|
-
UPB_INLINE
|
472
|
-
|
473
|
-
validate_FloatRules *ret = validate_FloatRules_new(arena);
|
474
|
-
return (ret && _upb_decode(buf, size, ret, &validate_FloatRules_msginit, arena, options))
|
475
|
-
? ret : NULL;
|
510
|
+
UPB_INLINE char* validate_FloatRules_serialize(const validate_FloatRules* msg, upb_Arena* arena, size_t* len) {
|
511
|
+
return upb_Encode(msg, &validate_FloatRules_msginit, 0, arena, len);
|
476
512
|
}
|
477
|
-
UPB_INLINE char
|
478
|
-
|
513
|
+
UPB_INLINE char* validate_FloatRules_serialize_ex(const validate_FloatRules* msg, int options,
|
514
|
+
upb_Arena* arena, size_t* len) {
|
515
|
+
return upb_Encode(msg, &validate_FloatRules_msginit, options, arena, len);
|
479
516
|
}
|
480
|
-
|
481
517
|
UPB_INLINE bool validate_FloatRules_has_const(const validate_FloatRules *msg) { return _upb_hasbit(msg, 1); }
|
482
|
-
UPB_INLINE float validate_FloatRules_const(const validate_FloatRules
|
518
|
+
UPB_INLINE float validate_FloatRules_const(const validate_FloatRules* msg) {
|
519
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), float);
|
520
|
+
}
|
483
521
|
UPB_INLINE bool validate_FloatRules_has_lt(const validate_FloatRules *msg) { return _upb_hasbit(msg, 2); }
|
484
|
-
UPB_INLINE float validate_FloatRules_lt(const validate_FloatRules
|
522
|
+
UPB_INLINE float validate_FloatRules_lt(const validate_FloatRules* msg) {
|
523
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), float);
|
524
|
+
}
|
485
525
|
UPB_INLINE bool validate_FloatRules_has_lte(const validate_FloatRules *msg) { return _upb_hasbit(msg, 3); }
|
486
|
-
UPB_INLINE float validate_FloatRules_lte(const validate_FloatRules
|
526
|
+
UPB_INLINE float validate_FloatRules_lte(const validate_FloatRules* msg) {
|
527
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), float);
|
528
|
+
}
|
487
529
|
UPB_INLINE bool validate_FloatRules_has_gt(const validate_FloatRules *msg) { return _upb_hasbit(msg, 4); }
|
488
|
-
UPB_INLINE float validate_FloatRules_gt(const validate_FloatRules
|
530
|
+
UPB_INLINE float validate_FloatRules_gt(const validate_FloatRules* msg) {
|
531
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), float);
|
532
|
+
}
|
489
533
|
UPB_INLINE bool validate_FloatRules_has_gte(const validate_FloatRules *msg) { return _upb_hasbit(msg, 5); }
|
490
|
-
UPB_INLINE float validate_FloatRules_gte(const validate_FloatRules
|
491
|
-
|
492
|
-
|
534
|
+
UPB_INLINE float validate_FloatRules_gte(const validate_FloatRules* msg) {
|
535
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), float);
|
536
|
+
}
|
537
|
+
UPB_INLINE float const* validate_FloatRules_in(const validate_FloatRules *msg, size_t *len) { return (float const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
538
|
+
UPB_INLINE float const* validate_FloatRules_not_in(const validate_FloatRules *msg, size_t *len) { return (float const*)_upb_array_accessor(msg, UPB_SIZE(32, 40), len); }
|
539
|
+
UPB_INLINE bool validate_FloatRules_has_ignore_empty(const validate_FloatRules *msg) { return _upb_hasbit(msg, 6); }
|
540
|
+
UPB_INLINE bool validate_FloatRules_ignore_empty(const validate_FloatRules* msg) {
|
541
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
542
|
+
}
|
493
543
|
|
494
544
|
UPB_INLINE void validate_FloatRules_set_const(validate_FloatRules *msg, float value) {
|
495
545
|
_upb_sethas(msg, 1);
|
@@ -512,58 +562,87 @@ UPB_INLINE void validate_FloatRules_set_gte(validate_FloatRules *msg, float valu
|
|
512
562
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 20), float) = value;
|
513
563
|
}
|
514
564
|
UPB_INLINE float* validate_FloatRules_mutable_in(validate_FloatRules *msg, size_t *len) {
|
515
|
-
return (float*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
565
|
+
return (float*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
516
566
|
}
|
517
|
-
UPB_INLINE float* validate_FloatRules_resize_in(validate_FloatRules *msg, size_t len,
|
518
|
-
return (float*)
|
567
|
+
UPB_INLINE float* validate_FloatRules_resize_in(validate_FloatRules *msg, size_t len, upb_Arena *arena) {
|
568
|
+
return (float*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 32), len, 2, arena);
|
519
569
|
}
|
520
|
-
UPB_INLINE bool validate_FloatRules_add_in(validate_FloatRules *msg, float val,
|
521
|
-
return
|
570
|
+
UPB_INLINE bool validate_FloatRules_add_in(validate_FloatRules *msg, float val, upb_Arena *arena) {
|
571
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 32), 2, &val,
|
522
572
|
arena);
|
523
573
|
}
|
524
574
|
UPB_INLINE float* validate_FloatRules_mutable_not_in(validate_FloatRules *msg, size_t *len) {
|
525
|
-
return (float*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
575
|
+
return (float*)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 40), len);
|
526
576
|
}
|
527
|
-
UPB_INLINE float* validate_FloatRules_resize_not_in(validate_FloatRules *msg, size_t len,
|
528
|
-
return (float*)
|
577
|
+
UPB_INLINE float* validate_FloatRules_resize_not_in(validate_FloatRules *msg, size_t len, upb_Arena *arena) {
|
578
|
+
return (float*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(32, 40), len, 2, arena);
|
529
579
|
}
|
530
|
-
UPB_INLINE bool validate_FloatRules_add_not_in(validate_FloatRules *msg, float val,
|
531
|
-
return
|
580
|
+
UPB_INLINE bool validate_FloatRules_add_not_in(validate_FloatRules *msg, float val, upb_Arena *arena) {
|
581
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(32, 40), 2, &val,
|
532
582
|
arena);
|
533
583
|
}
|
584
|
+
UPB_INLINE void validate_FloatRules_set_ignore_empty(validate_FloatRules *msg, bool value) {
|
585
|
+
_upb_sethas(msg, 6);
|
586
|
+
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool) = value;
|
587
|
+
}
|
534
588
|
|
535
589
|
/* validate.DoubleRules */
|
536
590
|
|
537
|
-
UPB_INLINE validate_DoubleRules
|
538
|
-
return (validate_DoubleRules
|
591
|
+
UPB_INLINE validate_DoubleRules* validate_DoubleRules_new(upb_Arena* arena) {
|
592
|
+
return (validate_DoubleRules*)_upb_Message_New(&validate_DoubleRules_msginit, arena);
|
539
593
|
}
|
540
|
-
UPB_INLINE validate_DoubleRules
|
541
|
-
|
542
|
-
|
543
|
-
|
594
|
+
UPB_INLINE validate_DoubleRules* validate_DoubleRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
595
|
+
validate_DoubleRules* ret = validate_DoubleRules_new(arena);
|
596
|
+
if (!ret) return NULL;
|
597
|
+
if (upb_Decode(buf, size, ret, &validate_DoubleRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
598
|
+
return NULL;
|
599
|
+
}
|
600
|
+
return ret;
|
601
|
+
}
|
602
|
+
UPB_INLINE validate_DoubleRules* validate_DoubleRules_parse_ex(const char* buf, size_t size,
|
603
|
+
const upb_ExtensionRegistry* extreg,
|
604
|
+
int options, upb_Arena* arena) {
|
605
|
+
validate_DoubleRules* ret = validate_DoubleRules_new(arena);
|
606
|
+
if (!ret) return NULL;
|
607
|
+
if (upb_Decode(buf, size, ret, &validate_DoubleRules_msginit, extreg, options, arena) !=
|
608
|
+
kUpb_DecodeStatus_Ok) {
|
609
|
+
return NULL;
|
610
|
+
}
|
611
|
+
return ret;
|
544
612
|
}
|
545
|
-
UPB_INLINE
|
546
|
-
|
547
|
-
validate_DoubleRules *ret = validate_DoubleRules_new(arena);
|
548
|
-
return (ret && _upb_decode(buf, size, ret, &validate_DoubleRules_msginit, arena, options))
|
549
|
-
? ret : NULL;
|
613
|
+
UPB_INLINE char* validate_DoubleRules_serialize(const validate_DoubleRules* msg, upb_Arena* arena, size_t* len) {
|
614
|
+
return upb_Encode(msg, &validate_DoubleRules_msginit, 0, arena, len);
|
550
615
|
}
|
551
|
-
UPB_INLINE char
|
552
|
-
|
616
|
+
UPB_INLINE char* validate_DoubleRules_serialize_ex(const validate_DoubleRules* msg, int options,
|
617
|
+
upb_Arena* arena, size_t* len) {
|
618
|
+
return upb_Encode(msg, &validate_DoubleRules_msginit, options, arena, len);
|
553
619
|
}
|
554
|
-
|
555
620
|
UPB_INLINE bool validate_DoubleRules_has_const(const validate_DoubleRules *msg) { return _upb_hasbit(msg, 1); }
|
556
|
-
UPB_INLINE double validate_DoubleRules_const(const validate_DoubleRules
|
621
|
+
UPB_INLINE double validate_DoubleRules_const(const validate_DoubleRules* msg) {
|
622
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), double);
|
623
|
+
}
|
557
624
|
UPB_INLINE bool validate_DoubleRules_has_lt(const validate_DoubleRules *msg) { return _upb_hasbit(msg, 2); }
|
558
|
-
UPB_INLINE double validate_DoubleRules_lt(const validate_DoubleRules
|
625
|
+
UPB_INLINE double validate_DoubleRules_lt(const validate_DoubleRules* msg) {
|
626
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), double);
|
627
|
+
}
|
559
628
|
UPB_INLINE bool validate_DoubleRules_has_lte(const validate_DoubleRules *msg) { return _upb_hasbit(msg, 3); }
|
560
|
-
UPB_INLINE double validate_DoubleRules_lte(const validate_DoubleRules
|
629
|
+
UPB_INLINE double validate_DoubleRules_lte(const validate_DoubleRules* msg) {
|
630
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), double);
|
631
|
+
}
|
561
632
|
UPB_INLINE bool validate_DoubleRules_has_gt(const validate_DoubleRules *msg) { return _upb_hasbit(msg, 4); }
|
562
|
-
UPB_INLINE double validate_DoubleRules_gt(const validate_DoubleRules
|
633
|
+
UPB_INLINE double validate_DoubleRules_gt(const validate_DoubleRules* msg) {
|
634
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), double);
|
635
|
+
}
|
563
636
|
UPB_INLINE bool validate_DoubleRules_has_gte(const validate_DoubleRules *msg) { return _upb_hasbit(msg, 5); }
|
564
|
-
UPB_INLINE double validate_DoubleRules_gte(const validate_DoubleRules
|
565
|
-
|
566
|
-
|
637
|
+
UPB_INLINE double validate_DoubleRules_gte(const validate_DoubleRules* msg) {
|
638
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), double);
|
639
|
+
}
|
640
|
+
UPB_INLINE double const* validate_DoubleRules_in(const validate_DoubleRules *msg, size_t *len) { return (double const*)_upb_array_accessor(msg, UPB_SIZE(52, 56), len); }
|
641
|
+
UPB_INLINE double const* validate_DoubleRules_not_in(const validate_DoubleRules *msg, size_t *len) { return (double const*)_upb_array_accessor(msg, UPB_SIZE(56, 64), len); }
|
642
|
+
UPB_INLINE bool validate_DoubleRules_has_ignore_empty(const validate_DoubleRules *msg) { return _upb_hasbit(msg, 6); }
|
643
|
+
UPB_INLINE bool validate_DoubleRules_ignore_empty(const validate_DoubleRules* msg) {
|
644
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool);
|
645
|
+
}
|
567
646
|
|
568
647
|
UPB_INLINE void validate_DoubleRules_set_const(validate_DoubleRules *msg, double value) {
|
569
648
|
_upb_sethas(msg, 1);
|
@@ -586,58 +665,87 @@ UPB_INLINE void validate_DoubleRules_set_gte(validate_DoubleRules *msg, double v
|
|
586
665
|
*UPB_PTR_AT(msg, UPB_SIZE(40, 40), double) = value;
|
587
666
|
}
|
588
667
|
UPB_INLINE double* validate_DoubleRules_mutable_in(validate_DoubleRules *msg, size_t *len) {
|
589
|
-
return (double*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
668
|
+
return (double*)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 56), len);
|
590
669
|
}
|
591
|
-
UPB_INLINE double* validate_DoubleRules_resize_in(validate_DoubleRules *msg, size_t len,
|
592
|
-
return (double*)
|
670
|
+
UPB_INLINE double* validate_DoubleRules_resize_in(validate_DoubleRules *msg, size_t len, upb_Arena *arena) {
|
671
|
+
return (double*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(52, 56), len, 3, arena);
|
593
672
|
}
|
594
|
-
UPB_INLINE bool validate_DoubleRules_add_in(validate_DoubleRules *msg, double val,
|
595
|
-
return
|
673
|
+
UPB_INLINE bool validate_DoubleRules_add_in(validate_DoubleRules *msg, double val, upb_Arena *arena) {
|
674
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(52, 56), 3, &val,
|
596
675
|
arena);
|
597
676
|
}
|
598
677
|
UPB_INLINE double* validate_DoubleRules_mutable_not_in(validate_DoubleRules *msg, size_t *len) {
|
599
|
-
return (double*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
678
|
+
return (double*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 64), len);
|
600
679
|
}
|
601
|
-
UPB_INLINE double* validate_DoubleRules_resize_not_in(validate_DoubleRules *msg, size_t len,
|
602
|
-
return (double*)
|
680
|
+
UPB_INLINE double* validate_DoubleRules_resize_not_in(validate_DoubleRules *msg, size_t len, upb_Arena *arena) {
|
681
|
+
return (double*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(56, 64), len, 3, arena);
|
603
682
|
}
|
604
|
-
UPB_INLINE bool validate_DoubleRules_add_not_in(validate_DoubleRules *msg, double val,
|
605
|
-
return
|
683
|
+
UPB_INLINE bool validate_DoubleRules_add_not_in(validate_DoubleRules *msg, double val, upb_Arena *arena) {
|
684
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(56, 64), 3, &val,
|
606
685
|
arena);
|
607
686
|
}
|
687
|
+
UPB_INLINE void validate_DoubleRules_set_ignore_empty(validate_DoubleRules *msg, bool value) {
|
688
|
+
_upb_sethas(msg, 6);
|
689
|
+
*UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool) = value;
|
690
|
+
}
|
608
691
|
|
609
692
|
/* validate.Int32Rules */
|
610
693
|
|
611
|
-
UPB_INLINE validate_Int32Rules
|
612
|
-
return (validate_Int32Rules
|
694
|
+
UPB_INLINE validate_Int32Rules* validate_Int32Rules_new(upb_Arena* arena) {
|
695
|
+
return (validate_Int32Rules*)_upb_Message_New(&validate_Int32Rules_msginit, arena);
|
613
696
|
}
|
614
|
-
UPB_INLINE validate_Int32Rules
|
615
|
-
|
616
|
-
|
617
|
-
|
697
|
+
UPB_INLINE validate_Int32Rules* validate_Int32Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
698
|
+
validate_Int32Rules* ret = validate_Int32Rules_new(arena);
|
699
|
+
if (!ret) return NULL;
|
700
|
+
if (upb_Decode(buf, size, ret, &validate_Int32Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
701
|
+
return NULL;
|
702
|
+
}
|
703
|
+
return ret;
|
704
|
+
}
|
705
|
+
UPB_INLINE validate_Int32Rules* validate_Int32Rules_parse_ex(const char* buf, size_t size,
|
706
|
+
const upb_ExtensionRegistry* extreg,
|
707
|
+
int options, upb_Arena* arena) {
|
708
|
+
validate_Int32Rules* ret = validate_Int32Rules_new(arena);
|
709
|
+
if (!ret) return NULL;
|
710
|
+
if (upb_Decode(buf, size, ret, &validate_Int32Rules_msginit, extreg, options, arena) !=
|
711
|
+
kUpb_DecodeStatus_Ok) {
|
712
|
+
return NULL;
|
713
|
+
}
|
714
|
+
return ret;
|
618
715
|
}
|
619
|
-
UPB_INLINE
|
620
|
-
|
621
|
-
validate_Int32Rules *ret = validate_Int32Rules_new(arena);
|
622
|
-
return (ret && _upb_decode(buf, size, ret, &validate_Int32Rules_msginit, arena, options))
|
623
|
-
? ret : NULL;
|
716
|
+
UPB_INLINE char* validate_Int32Rules_serialize(const validate_Int32Rules* msg, upb_Arena* arena, size_t* len) {
|
717
|
+
return upb_Encode(msg, &validate_Int32Rules_msginit, 0, arena, len);
|
624
718
|
}
|
625
|
-
UPB_INLINE char
|
626
|
-
|
719
|
+
UPB_INLINE char* validate_Int32Rules_serialize_ex(const validate_Int32Rules* msg, int options,
|
720
|
+
upb_Arena* arena, size_t* len) {
|
721
|
+
return upb_Encode(msg, &validate_Int32Rules_msginit, options, arena, len);
|
627
722
|
}
|
628
|
-
|
629
723
|
UPB_INLINE bool validate_Int32Rules_has_const(const validate_Int32Rules *msg) { return _upb_hasbit(msg, 1); }
|
630
|
-
UPB_INLINE int32_t validate_Int32Rules_const(const validate_Int32Rules
|
724
|
+
UPB_INLINE int32_t validate_Int32Rules_const(const validate_Int32Rules* msg) {
|
725
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t);
|
726
|
+
}
|
631
727
|
UPB_INLINE bool validate_Int32Rules_has_lt(const validate_Int32Rules *msg) { return _upb_hasbit(msg, 2); }
|
632
|
-
UPB_INLINE int32_t validate_Int32Rules_lt(const validate_Int32Rules
|
728
|
+
UPB_INLINE int32_t validate_Int32Rules_lt(const validate_Int32Rules* msg) {
|
729
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t);
|
730
|
+
}
|
633
731
|
UPB_INLINE bool validate_Int32Rules_has_lte(const validate_Int32Rules *msg) { return _upb_hasbit(msg, 3); }
|
634
|
-
UPB_INLINE int32_t validate_Int32Rules_lte(const validate_Int32Rules
|
732
|
+
UPB_INLINE int32_t validate_Int32Rules_lte(const validate_Int32Rules* msg) {
|
733
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), int32_t);
|
734
|
+
}
|
635
735
|
UPB_INLINE bool validate_Int32Rules_has_gt(const validate_Int32Rules *msg) { return _upb_hasbit(msg, 4); }
|
636
|
-
UPB_INLINE int32_t validate_Int32Rules_gt(const validate_Int32Rules
|
736
|
+
UPB_INLINE int32_t validate_Int32Rules_gt(const validate_Int32Rules* msg) {
|
737
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int32_t);
|
738
|
+
}
|
637
739
|
UPB_INLINE bool validate_Int32Rules_has_gte(const validate_Int32Rules *msg) { return _upb_hasbit(msg, 5); }
|
638
|
-
UPB_INLINE int32_t validate_Int32Rules_gte(const validate_Int32Rules
|
639
|
-
|
640
|
-
|
740
|
+
UPB_INLINE int32_t validate_Int32Rules_gte(const validate_Int32Rules* msg) {
|
741
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), int32_t);
|
742
|
+
}
|
743
|
+
UPB_INLINE int32_t const* validate_Int32Rules_in(const validate_Int32Rules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
744
|
+
UPB_INLINE int32_t const* validate_Int32Rules_not_in(const validate_Int32Rules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(32, 40), len); }
|
745
|
+
UPB_INLINE bool validate_Int32Rules_has_ignore_empty(const validate_Int32Rules *msg) { return _upb_hasbit(msg, 6); }
|
746
|
+
UPB_INLINE bool validate_Int32Rules_ignore_empty(const validate_Int32Rules* msg) {
|
747
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
748
|
+
}
|
641
749
|
|
642
750
|
UPB_INLINE void validate_Int32Rules_set_const(validate_Int32Rules *msg, int32_t value) {
|
643
751
|
_upb_sethas(msg, 1);
|
@@ -660,58 +768,87 @@ UPB_INLINE void validate_Int32Rules_set_gte(validate_Int32Rules *msg, int32_t va
|
|
660
768
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 20), int32_t) = value;
|
661
769
|
}
|
662
770
|
UPB_INLINE int32_t* validate_Int32Rules_mutable_in(validate_Int32Rules *msg, size_t *len) {
|
663
|
-
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
771
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
664
772
|
}
|
665
|
-
UPB_INLINE int32_t* validate_Int32Rules_resize_in(validate_Int32Rules *msg, size_t len,
|
666
|
-
return (int32_t*)
|
773
|
+
UPB_INLINE int32_t* validate_Int32Rules_resize_in(validate_Int32Rules *msg, size_t len, upb_Arena *arena) {
|
774
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 32), len, 2, arena);
|
667
775
|
}
|
668
|
-
UPB_INLINE bool validate_Int32Rules_add_in(validate_Int32Rules *msg, int32_t val,
|
669
|
-
return
|
776
|
+
UPB_INLINE bool validate_Int32Rules_add_in(validate_Int32Rules *msg, int32_t val, upb_Arena *arena) {
|
777
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 32), 2, &val,
|
670
778
|
arena);
|
671
779
|
}
|
672
780
|
UPB_INLINE int32_t* validate_Int32Rules_mutable_not_in(validate_Int32Rules *msg, size_t *len) {
|
673
|
-
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
781
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 40), len);
|
674
782
|
}
|
675
|
-
UPB_INLINE int32_t* validate_Int32Rules_resize_not_in(validate_Int32Rules *msg, size_t len,
|
676
|
-
return (int32_t*)
|
783
|
+
UPB_INLINE int32_t* validate_Int32Rules_resize_not_in(validate_Int32Rules *msg, size_t len, upb_Arena *arena) {
|
784
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(32, 40), len, 2, arena);
|
677
785
|
}
|
678
|
-
UPB_INLINE bool validate_Int32Rules_add_not_in(validate_Int32Rules *msg, int32_t val,
|
679
|
-
return
|
786
|
+
UPB_INLINE bool validate_Int32Rules_add_not_in(validate_Int32Rules *msg, int32_t val, upb_Arena *arena) {
|
787
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(32, 40), 2, &val,
|
680
788
|
arena);
|
681
789
|
}
|
790
|
+
UPB_INLINE void validate_Int32Rules_set_ignore_empty(validate_Int32Rules *msg, bool value) {
|
791
|
+
_upb_sethas(msg, 6);
|
792
|
+
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool) = value;
|
793
|
+
}
|
682
794
|
|
683
795
|
/* validate.Int64Rules */
|
684
796
|
|
685
|
-
UPB_INLINE validate_Int64Rules
|
686
|
-
return (validate_Int64Rules
|
797
|
+
UPB_INLINE validate_Int64Rules* validate_Int64Rules_new(upb_Arena* arena) {
|
798
|
+
return (validate_Int64Rules*)_upb_Message_New(&validate_Int64Rules_msginit, arena);
|
687
799
|
}
|
688
|
-
UPB_INLINE validate_Int64Rules
|
689
|
-
|
690
|
-
|
691
|
-
|
800
|
+
UPB_INLINE validate_Int64Rules* validate_Int64Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
801
|
+
validate_Int64Rules* ret = validate_Int64Rules_new(arena);
|
802
|
+
if (!ret) return NULL;
|
803
|
+
if (upb_Decode(buf, size, ret, &validate_Int64Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
804
|
+
return NULL;
|
805
|
+
}
|
806
|
+
return ret;
|
807
|
+
}
|
808
|
+
UPB_INLINE validate_Int64Rules* validate_Int64Rules_parse_ex(const char* buf, size_t size,
|
809
|
+
const upb_ExtensionRegistry* extreg,
|
810
|
+
int options, upb_Arena* arena) {
|
811
|
+
validate_Int64Rules* ret = validate_Int64Rules_new(arena);
|
812
|
+
if (!ret) return NULL;
|
813
|
+
if (upb_Decode(buf, size, ret, &validate_Int64Rules_msginit, extreg, options, arena) !=
|
814
|
+
kUpb_DecodeStatus_Ok) {
|
815
|
+
return NULL;
|
816
|
+
}
|
817
|
+
return ret;
|
692
818
|
}
|
693
|
-
UPB_INLINE
|
694
|
-
|
695
|
-
validate_Int64Rules *ret = validate_Int64Rules_new(arena);
|
696
|
-
return (ret && _upb_decode(buf, size, ret, &validate_Int64Rules_msginit, arena, options))
|
697
|
-
? ret : NULL;
|
819
|
+
UPB_INLINE char* validate_Int64Rules_serialize(const validate_Int64Rules* msg, upb_Arena* arena, size_t* len) {
|
820
|
+
return upb_Encode(msg, &validate_Int64Rules_msginit, 0, arena, len);
|
698
821
|
}
|
699
|
-
UPB_INLINE char
|
700
|
-
|
822
|
+
UPB_INLINE char* validate_Int64Rules_serialize_ex(const validate_Int64Rules* msg, int options,
|
823
|
+
upb_Arena* arena, size_t* len) {
|
824
|
+
return upb_Encode(msg, &validate_Int64Rules_msginit, options, arena, len);
|
701
825
|
}
|
702
|
-
|
703
826
|
UPB_INLINE bool validate_Int64Rules_has_const(const validate_Int64Rules *msg) { return _upb_hasbit(msg, 1); }
|
704
|
-
UPB_INLINE int64_t validate_Int64Rules_const(const validate_Int64Rules
|
827
|
+
UPB_INLINE int64_t validate_Int64Rules_const(const validate_Int64Rules* msg) {
|
828
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int64_t);
|
829
|
+
}
|
705
830
|
UPB_INLINE bool validate_Int64Rules_has_lt(const validate_Int64Rules *msg) { return _upb_hasbit(msg, 2); }
|
706
|
-
UPB_INLINE int64_t validate_Int64Rules_lt(const validate_Int64Rules
|
831
|
+
UPB_INLINE int64_t validate_Int64Rules_lt(const validate_Int64Rules* msg) {
|
832
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int64_t);
|
833
|
+
}
|
707
834
|
UPB_INLINE bool validate_Int64Rules_has_lte(const validate_Int64Rules *msg) { return _upb_hasbit(msg, 3); }
|
708
|
-
UPB_INLINE int64_t validate_Int64Rules_lte(const validate_Int64Rules
|
835
|
+
UPB_INLINE int64_t validate_Int64Rules_lte(const validate_Int64Rules* msg) {
|
836
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), int64_t);
|
837
|
+
}
|
709
838
|
UPB_INLINE bool validate_Int64Rules_has_gt(const validate_Int64Rules *msg) { return _upb_hasbit(msg, 4); }
|
710
|
-
UPB_INLINE int64_t validate_Int64Rules_gt(const validate_Int64Rules
|
839
|
+
UPB_INLINE int64_t validate_Int64Rules_gt(const validate_Int64Rules* msg) {
|
840
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), int64_t);
|
841
|
+
}
|
711
842
|
UPB_INLINE bool validate_Int64Rules_has_gte(const validate_Int64Rules *msg) { return _upb_hasbit(msg, 5); }
|
712
|
-
UPB_INLINE int64_t validate_Int64Rules_gte(const validate_Int64Rules
|
713
|
-
|
714
|
-
|
843
|
+
UPB_INLINE int64_t validate_Int64Rules_gte(const validate_Int64Rules* msg) {
|
844
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), int64_t);
|
845
|
+
}
|
846
|
+
UPB_INLINE int64_t const* validate_Int64Rules_in(const validate_Int64Rules *msg, size_t *len) { return (int64_t const*)_upb_array_accessor(msg, UPB_SIZE(52, 56), len); }
|
847
|
+
UPB_INLINE int64_t const* validate_Int64Rules_not_in(const validate_Int64Rules *msg, size_t *len) { return (int64_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 64), len); }
|
848
|
+
UPB_INLINE bool validate_Int64Rules_has_ignore_empty(const validate_Int64Rules *msg) { return _upb_hasbit(msg, 6); }
|
849
|
+
UPB_INLINE bool validate_Int64Rules_ignore_empty(const validate_Int64Rules* msg) {
|
850
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool);
|
851
|
+
}
|
715
852
|
|
716
853
|
UPB_INLINE void validate_Int64Rules_set_const(validate_Int64Rules *msg, int64_t value) {
|
717
854
|
_upb_sethas(msg, 1);
|
@@ -734,58 +871,87 @@ UPB_INLINE void validate_Int64Rules_set_gte(validate_Int64Rules *msg, int64_t va
|
|
734
871
|
*UPB_PTR_AT(msg, UPB_SIZE(40, 40), int64_t) = value;
|
735
872
|
}
|
736
873
|
UPB_INLINE int64_t* validate_Int64Rules_mutable_in(validate_Int64Rules *msg, size_t *len) {
|
737
|
-
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
874
|
+
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 56), len);
|
738
875
|
}
|
739
|
-
UPB_INLINE int64_t* validate_Int64Rules_resize_in(validate_Int64Rules *msg, size_t len,
|
740
|
-
return (int64_t*)
|
876
|
+
UPB_INLINE int64_t* validate_Int64Rules_resize_in(validate_Int64Rules *msg, size_t len, upb_Arena *arena) {
|
877
|
+
return (int64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(52, 56), len, 3, arena);
|
741
878
|
}
|
742
|
-
UPB_INLINE bool validate_Int64Rules_add_in(validate_Int64Rules *msg, int64_t val,
|
743
|
-
return
|
879
|
+
UPB_INLINE bool validate_Int64Rules_add_in(validate_Int64Rules *msg, int64_t val, upb_Arena *arena) {
|
880
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(52, 56), 3, &val,
|
744
881
|
arena);
|
745
882
|
}
|
746
883
|
UPB_INLINE int64_t* validate_Int64Rules_mutable_not_in(validate_Int64Rules *msg, size_t *len) {
|
747
|
-
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
884
|
+
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 64), len);
|
748
885
|
}
|
749
|
-
UPB_INLINE int64_t* validate_Int64Rules_resize_not_in(validate_Int64Rules *msg, size_t len,
|
750
|
-
return (int64_t*)
|
886
|
+
UPB_INLINE int64_t* validate_Int64Rules_resize_not_in(validate_Int64Rules *msg, size_t len, upb_Arena *arena) {
|
887
|
+
return (int64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(56, 64), len, 3, arena);
|
751
888
|
}
|
752
|
-
UPB_INLINE bool validate_Int64Rules_add_not_in(validate_Int64Rules *msg, int64_t val,
|
753
|
-
return
|
889
|
+
UPB_INLINE bool validate_Int64Rules_add_not_in(validate_Int64Rules *msg, int64_t val, upb_Arena *arena) {
|
890
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(56, 64), 3, &val,
|
754
891
|
arena);
|
755
892
|
}
|
893
|
+
UPB_INLINE void validate_Int64Rules_set_ignore_empty(validate_Int64Rules *msg, bool value) {
|
894
|
+
_upb_sethas(msg, 6);
|
895
|
+
*UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool) = value;
|
896
|
+
}
|
756
897
|
|
757
898
|
/* validate.UInt32Rules */
|
758
899
|
|
759
|
-
UPB_INLINE validate_UInt32Rules
|
760
|
-
return (validate_UInt32Rules
|
900
|
+
UPB_INLINE validate_UInt32Rules* validate_UInt32Rules_new(upb_Arena* arena) {
|
901
|
+
return (validate_UInt32Rules*)_upb_Message_New(&validate_UInt32Rules_msginit, arena);
|
761
902
|
}
|
762
|
-
UPB_INLINE validate_UInt32Rules
|
763
|
-
|
764
|
-
|
765
|
-
|
903
|
+
UPB_INLINE validate_UInt32Rules* validate_UInt32Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
904
|
+
validate_UInt32Rules* ret = validate_UInt32Rules_new(arena);
|
905
|
+
if (!ret) return NULL;
|
906
|
+
if (upb_Decode(buf, size, ret, &validate_UInt32Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
907
|
+
return NULL;
|
908
|
+
}
|
909
|
+
return ret;
|
910
|
+
}
|
911
|
+
UPB_INLINE validate_UInt32Rules* validate_UInt32Rules_parse_ex(const char* buf, size_t size,
|
912
|
+
const upb_ExtensionRegistry* extreg,
|
913
|
+
int options, upb_Arena* arena) {
|
914
|
+
validate_UInt32Rules* ret = validate_UInt32Rules_new(arena);
|
915
|
+
if (!ret) return NULL;
|
916
|
+
if (upb_Decode(buf, size, ret, &validate_UInt32Rules_msginit, extreg, options, arena) !=
|
917
|
+
kUpb_DecodeStatus_Ok) {
|
918
|
+
return NULL;
|
919
|
+
}
|
920
|
+
return ret;
|
766
921
|
}
|
767
|
-
UPB_INLINE
|
768
|
-
|
769
|
-
validate_UInt32Rules *ret = validate_UInt32Rules_new(arena);
|
770
|
-
return (ret && _upb_decode(buf, size, ret, &validate_UInt32Rules_msginit, arena, options))
|
771
|
-
? ret : NULL;
|
922
|
+
UPB_INLINE char* validate_UInt32Rules_serialize(const validate_UInt32Rules* msg, upb_Arena* arena, size_t* len) {
|
923
|
+
return upb_Encode(msg, &validate_UInt32Rules_msginit, 0, arena, len);
|
772
924
|
}
|
773
|
-
UPB_INLINE char
|
774
|
-
|
925
|
+
UPB_INLINE char* validate_UInt32Rules_serialize_ex(const validate_UInt32Rules* msg, int options,
|
926
|
+
upb_Arena* arena, size_t* len) {
|
927
|
+
return upb_Encode(msg, &validate_UInt32Rules_msginit, options, arena, len);
|
775
928
|
}
|
776
|
-
|
777
929
|
UPB_INLINE bool validate_UInt32Rules_has_const(const validate_UInt32Rules *msg) { return _upb_hasbit(msg, 1); }
|
778
|
-
UPB_INLINE uint32_t validate_UInt32Rules_const(const validate_UInt32Rules
|
930
|
+
UPB_INLINE uint32_t validate_UInt32Rules_const(const validate_UInt32Rules* msg) {
|
931
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), uint32_t);
|
932
|
+
}
|
779
933
|
UPB_INLINE bool validate_UInt32Rules_has_lt(const validate_UInt32Rules *msg) { return _upb_hasbit(msg, 2); }
|
780
|
-
UPB_INLINE uint32_t validate_UInt32Rules_lt(const validate_UInt32Rules
|
934
|
+
UPB_INLINE uint32_t validate_UInt32Rules_lt(const validate_UInt32Rules* msg) {
|
935
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint32_t);
|
936
|
+
}
|
781
937
|
UPB_INLINE bool validate_UInt32Rules_has_lte(const validate_UInt32Rules *msg) { return _upb_hasbit(msg, 3); }
|
782
|
-
UPB_INLINE uint32_t validate_UInt32Rules_lte(const validate_UInt32Rules
|
938
|
+
UPB_INLINE uint32_t validate_UInt32Rules_lte(const validate_UInt32Rules* msg) {
|
939
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), uint32_t);
|
940
|
+
}
|
783
941
|
UPB_INLINE bool validate_UInt32Rules_has_gt(const validate_UInt32Rules *msg) { return _upb_hasbit(msg, 4); }
|
784
|
-
UPB_INLINE uint32_t validate_UInt32Rules_gt(const validate_UInt32Rules
|
942
|
+
UPB_INLINE uint32_t validate_UInt32Rules_gt(const validate_UInt32Rules* msg) {
|
943
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint32_t);
|
944
|
+
}
|
785
945
|
UPB_INLINE bool validate_UInt32Rules_has_gte(const validate_UInt32Rules *msg) { return _upb_hasbit(msg, 5); }
|
786
|
-
UPB_INLINE uint32_t validate_UInt32Rules_gte(const validate_UInt32Rules
|
787
|
-
|
788
|
-
|
946
|
+
UPB_INLINE uint32_t validate_UInt32Rules_gte(const validate_UInt32Rules* msg) {
|
947
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), uint32_t);
|
948
|
+
}
|
949
|
+
UPB_INLINE uint32_t const* validate_UInt32Rules_in(const validate_UInt32Rules *msg, size_t *len) { return (uint32_t const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
950
|
+
UPB_INLINE uint32_t const* validate_UInt32Rules_not_in(const validate_UInt32Rules *msg, size_t *len) { return (uint32_t const*)_upb_array_accessor(msg, UPB_SIZE(32, 40), len); }
|
951
|
+
UPB_INLINE bool validate_UInt32Rules_has_ignore_empty(const validate_UInt32Rules *msg) { return _upb_hasbit(msg, 6); }
|
952
|
+
UPB_INLINE bool validate_UInt32Rules_ignore_empty(const validate_UInt32Rules* msg) {
|
953
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
954
|
+
}
|
789
955
|
|
790
956
|
UPB_INLINE void validate_UInt32Rules_set_const(validate_UInt32Rules *msg, uint32_t value) {
|
791
957
|
_upb_sethas(msg, 1);
|
@@ -808,58 +974,87 @@ UPB_INLINE void validate_UInt32Rules_set_gte(validate_UInt32Rules *msg, uint32_t
|
|
808
974
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 20), uint32_t) = value;
|
809
975
|
}
|
810
976
|
UPB_INLINE uint32_t* validate_UInt32Rules_mutable_in(validate_UInt32Rules *msg, size_t *len) {
|
811
|
-
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
977
|
+
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
812
978
|
}
|
813
|
-
UPB_INLINE uint32_t* validate_UInt32Rules_resize_in(validate_UInt32Rules *msg, size_t len,
|
814
|
-
return (uint32_t*)
|
979
|
+
UPB_INLINE uint32_t* validate_UInt32Rules_resize_in(validate_UInt32Rules *msg, size_t len, upb_Arena *arena) {
|
980
|
+
return (uint32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 32), len, 2, arena);
|
815
981
|
}
|
816
|
-
UPB_INLINE bool validate_UInt32Rules_add_in(validate_UInt32Rules *msg, uint32_t val,
|
817
|
-
return
|
982
|
+
UPB_INLINE bool validate_UInt32Rules_add_in(validate_UInt32Rules *msg, uint32_t val, upb_Arena *arena) {
|
983
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 32), 2, &val,
|
818
984
|
arena);
|
819
985
|
}
|
820
986
|
UPB_INLINE uint32_t* validate_UInt32Rules_mutable_not_in(validate_UInt32Rules *msg, size_t *len) {
|
821
|
-
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
987
|
+
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 40), len);
|
822
988
|
}
|
823
|
-
UPB_INLINE uint32_t* validate_UInt32Rules_resize_not_in(validate_UInt32Rules *msg, size_t len,
|
824
|
-
return (uint32_t*)
|
989
|
+
UPB_INLINE uint32_t* validate_UInt32Rules_resize_not_in(validate_UInt32Rules *msg, size_t len, upb_Arena *arena) {
|
990
|
+
return (uint32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(32, 40), len, 2, arena);
|
825
991
|
}
|
826
|
-
UPB_INLINE bool validate_UInt32Rules_add_not_in(validate_UInt32Rules *msg, uint32_t val,
|
827
|
-
return
|
992
|
+
UPB_INLINE bool validate_UInt32Rules_add_not_in(validate_UInt32Rules *msg, uint32_t val, upb_Arena *arena) {
|
993
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(32, 40), 2, &val,
|
828
994
|
arena);
|
829
995
|
}
|
996
|
+
UPB_INLINE void validate_UInt32Rules_set_ignore_empty(validate_UInt32Rules *msg, bool value) {
|
997
|
+
_upb_sethas(msg, 6);
|
998
|
+
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool) = value;
|
999
|
+
}
|
830
1000
|
|
831
1001
|
/* validate.UInt64Rules */
|
832
1002
|
|
833
|
-
UPB_INLINE validate_UInt64Rules
|
834
|
-
return (validate_UInt64Rules
|
1003
|
+
UPB_INLINE validate_UInt64Rules* validate_UInt64Rules_new(upb_Arena* arena) {
|
1004
|
+
return (validate_UInt64Rules*)_upb_Message_New(&validate_UInt64Rules_msginit, arena);
|
835
1005
|
}
|
836
|
-
UPB_INLINE validate_UInt64Rules
|
837
|
-
|
838
|
-
|
839
|
-
|
1006
|
+
UPB_INLINE validate_UInt64Rules* validate_UInt64Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1007
|
+
validate_UInt64Rules* ret = validate_UInt64Rules_new(arena);
|
1008
|
+
if (!ret) return NULL;
|
1009
|
+
if (upb_Decode(buf, size, ret, &validate_UInt64Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1010
|
+
return NULL;
|
1011
|
+
}
|
1012
|
+
return ret;
|
1013
|
+
}
|
1014
|
+
UPB_INLINE validate_UInt64Rules* validate_UInt64Rules_parse_ex(const char* buf, size_t size,
|
1015
|
+
const upb_ExtensionRegistry* extreg,
|
1016
|
+
int options, upb_Arena* arena) {
|
1017
|
+
validate_UInt64Rules* ret = validate_UInt64Rules_new(arena);
|
1018
|
+
if (!ret) return NULL;
|
1019
|
+
if (upb_Decode(buf, size, ret, &validate_UInt64Rules_msginit, extreg, options, arena) !=
|
1020
|
+
kUpb_DecodeStatus_Ok) {
|
1021
|
+
return NULL;
|
1022
|
+
}
|
1023
|
+
return ret;
|
840
1024
|
}
|
841
|
-
UPB_INLINE
|
842
|
-
|
843
|
-
validate_UInt64Rules *ret = validate_UInt64Rules_new(arena);
|
844
|
-
return (ret && _upb_decode(buf, size, ret, &validate_UInt64Rules_msginit, arena, options))
|
845
|
-
? ret : NULL;
|
1025
|
+
UPB_INLINE char* validate_UInt64Rules_serialize(const validate_UInt64Rules* msg, upb_Arena* arena, size_t* len) {
|
1026
|
+
return upb_Encode(msg, &validate_UInt64Rules_msginit, 0, arena, len);
|
846
1027
|
}
|
847
|
-
UPB_INLINE char
|
848
|
-
|
1028
|
+
UPB_INLINE char* validate_UInt64Rules_serialize_ex(const validate_UInt64Rules* msg, int options,
|
1029
|
+
upb_Arena* arena, size_t* len) {
|
1030
|
+
return upb_Encode(msg, &validate_UInt64Rules_msginit, options, arena, len);
|
849
1031
|
}
|
850
|
-
|
851
1032
|
UPB_INLINE bool validate_UInt64Rules_has_const(const validate_UInt64Rules *msg) { return _upb_hasbit(msg, 1); }
|
852
|
-
UPB_INLINE uint64_t validate_UInt64Rules_const(const validate_UInt64Rules
|
1033
|
+
UPB_INLINE uint64_t validate_UInt64Rules_const(const validate_UInt64Rules* msg) {
|
1034
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t);
|
1035
|
+
}
|
853
1036
|
UPB_INLINE bool validate_UInt64Rules_has_lt(const validate_UInt64Rules *msg) { return _upb_hasbit(msg, 2); }
|
854
|
-
UPB_INLINE uint64_t validate_UInt64Rules_lt(const validate_UInt64Rules
|
1037
|
+
UPB_INLINE uint64_t validate_UInt64Rules_lt(const validate_UInt64Rules* msg) {
|
1038
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t);
|
1039
|
+
}
|
855
1040
|
UPB_INLINE bool validate_UInt64Rules_has_lte(const validate_UInt64Rules *msg) { return _upb_hasbit(msg, 3); }
|
856
|
-
UPB_INLINE uint64_t validate_UInt64Rules_lte(const validate_UInt64Rules
|
1041
|
+
UPB_INLINE uint64_t validate_UInt64Rules_lte(const validate_UInt64Rules* msg) {
|
1042
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), uint64_t);
|
1043
|
+
}
|
857
1044
|
UPB_INLINE bool validate_UInt64Rules_has_gt(const validate_UInt64Rules *msg) { return _upb_hasbit(msg, 4); }
|
858
|
-
UPB_INLINE uint64_t validate_UInt64Rules_gt(const validate_UInt64Rules
|
1045
|
+
UPB_INLINE uint64_t validate_UInt64Rules_gt(const validate_UInt64Rules* msg) {
|
1046
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), uint64_t);
|
1047
|
+
}
|
859
1048
|
UPB_INLINE bool validate_UInt64Rules_has_gte(const validate_UInt64Rules *msg) { return _upb_hasbit(msg, 5); }
|
860
|
-
UPB_INLINE uint64_t validate_UInt64Rules_gte(const validate_UInt64Rules
|
861
|
-
|
862
|
-
|
1049
|
+
UPB_INLINE uint64_t validate_UInt64Rules_gte(const validate_UInt64Rules* msg) {
|
1050
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), uint64_t);
|
1051
|
+
}
|
1052
|
+
UPB_INLINE uint64_t const* validate_UInt64Rules_in(const validate_UInt64Rules *msg, size_t *len) { return (uint64_t const*)_upb_array_accessor(msg, UPB_SIZE(52, 56), len); }
|
1053
|
+
UPB_INLINE uint64_t const* validate_UInt64Rules_not_in(const validate_UInt64Rules *msg, size_t *len) { return (uint64_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 64), len); }
|
1054
|
+
UPB_INLINE bool validate_UInt64Rules_has_ignore_empty(const validate_UInt64Rules *msg) { return _upb_hasbit(msg, 6); }
|
1055
|
+
UPB_INLINE bool validate_UInt64Rules_ignore_empty(const validate_UInt64Rules* msg) {
|
1056
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool);
|
1057
|
+
}
|
863
1058
|
|
864
1059
|
UPB_INLINE void validate_UInt64Rules_set_const(validate_UInt64Rules *msg, uint64_t value) {
|
865
1060
|
_upb_sethas(msg, 1);
|
@@ -882,58 +1077,87 @@ UPB_INLINE void validate_UInt64Rules_set_gte(validate_UInt64Rules *msg, uint64_t
|
|
882
1077
|
*UPB_PTR_AT(msg, UPB_SIZE(40, 40), uint64_t) = value;
|
883
1078
|
}
|
884
1079
|
UPB_INLINE uint64_t* validate_UInt64Rules_mutable_in(validate_UInt64Rules *msg, size_t *len) {
|
885
|
-
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1080
|
+
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 56), len);
|
886
1081
|
}
|
887
|
-
UPB_INLINE uint64_t* validate_UInt64Rules_resize_in(validate_UInt64Rules *msg, size_t len,
|
888
|
-
return (uint64_t*)
|
1082
|
+
UPB_INLINE uint64_t* validate_UInt64Rules_resize_in(validate_UInt64Rules *msg, size_t len, upb_Arena *arena) {
|
1083
|
+
return (uint64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(52, 56), len, 3, arena);
|
889
1084
|
}
|
890
|
-
UPB_INLINE bool validate_UInt64Rules_add_in(validate_UInt64Rules *msg, uint64_t val,
|
891
|
-
return
|
1085
|
+
UPB_INLINE bool validate_UInt64Rules_add_in(validate_UInt64Rules *msg, uint64_t val, upb_Arena *arena) {
|
1086
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(52, 56), 3, &val,
|
892
1087
|
arena);
|
893
1088
|
}
|
894
1089
|
UPB_INLINE uint64_t* validate_UInt64Rules_mutable_not_in(validate_UInt64Rules *msg, size_t *len) {
|
895
|
-
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1090
|
+
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 64), len);
|
896
1091
|
}
|
897
|
-
UPB_INLINE uint64_t* validate_UInt64Rules_resize_not_in(validate_UInt64Rules *msg, size_t len,
|
898
|
-
return (uint64_t*)
|
1092
|
+
UPB_INLINE uint64_t* validate_UInt64Rules_resize_not_in(validate_UInt64Rules *msg, size_t len, upb_Arena *arena) {
|
1093
|
+
return (uint64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(56, 64), len, 3, arena);
|
899
1094
|
}
|
900
|
-
UPB_INLINE bool validate_UInt64Rules_add_not_in(validate_UInt64Rules *msg, uint64_t val,
|
901
|
-
return
|
1095
|
+
UPB_INLINE bool validate_UInt64Rules_add_not_in(validate_UInt64Rules *msg, uint64_t val, upb_Arena *arena) {
|
1096
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(56, 64), 3, &val,
|
902
1097
|
arena);
|
903
1098
|
}
|
1099
|
+
UPB_INLINE void validate_UInt64Rules_set_ignore_empty(validate_UInt64Rules *msg, bool value) {
|
1100
|
+
_upb_sethas(msg, 6);
|
1101
|
+
*UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool) = value;
|
1102
|
+
}
|
904
1103
|
|
905
1104
|
/* validate.SInt32Rules */
|
906
1105
|
|
907
|
-
UPB_INLINE validate_SInt32Rules
|
908
|
-
return (validate_SInt32Rules
|
1106
|
+
UPB_INLINE validate_SInt32Rules* validate_SInt32Rules_new(upb_Arena* arena) {
|
1107
|
+
return (validate_SInt32Rules*)_upb_Message_New(&validate_SInt32Rules_msginit, arena);
|
909
1108
|
}
|
910
|
-
UPB_INLINE validate_SInt32Rules
|
911
|
-
|
912
|
-
|
913
|
-
|
1109
|
+
UPB_INLINE validate_SInt32Rules* validate_SInt32Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1110
|
+
validate_SInt32Rules* ret = validate_SInt32Rules_new(arena);
|
1111
|
+
if (!ret) return NULL;
|
1112
|
+
if (upb_Decode(buf, size, ret, &validate_SInt32Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1113
|
+
return NULL;
|
1114
|
+
}
|
1115
|
+
return ret;
|
1116
|
+
}
|
1117
|
+
UPB_INLINE validate_SInt32Rules* validate_SInt32Rules_parse_ex(const char* buf, size_t size,
|
1118
|
+
const upb_ExtensionRegistry* extreg,
|
1119
|
+
int options, upb_Arena* arena) {
|
1120
|
+
validate_SInt32Rules* ret = validate_SInt32Rules_new(arena);
|
1121
|
+
if (!ret) return NULL;
|
1122
|
+
if (upb_Decode(buf, size, ret, &validate_SInt32Rules_msginit, extreg, options, arena) !=
|
1123
|
+
kUpb_DecodeStatus_Ok) {
|
1124
|
+
return NULL;
|
1125
|
+
}
|
1126
|
+
return ret;
|
914
1127
|
}
|
915
|
-
UPB_INLINE
|
916
|
-
|
917
|
-
validate_SInt32Rules *ret = validate_SInt32Rules_new(arena);
|
918
|
-
return (ret && _upb_decode(buf, size, ret, &validate_SInt32Rules_msginit, arena, options))
|
919
|
-
? ret : NULL;
|
1128
|
+
UPB_INLINE char* validate_SInt32Rules_serialize(const validate_SInt32Rules* msg, upb_Arena* arena, size_t* len) {
|
1129
|
+
return upb_Encode(msg, &validate_SInt32Rules_msginit, 0, arena, len);
|
920
1130
|
}
|
921
|
-
UPB_INLINE char
|
922
|
-
|
1131
|
+
UPB_INLINE char* validate_SInt32Rules_serialize_ex(const validate_SInt32Rules* msg, int options,
|
1132
|
+
upb_Arena* arena, size_t* len) {
|
1133
|
+
return upb_Encode(msg, &validate_SInt32Rules_msginit, options, arena, len);
|
923
1134
|
}
|
924
|
-
|
925
1135
|
UPB_INLINE bool validate_SInt32Rules_has_const(const validate_SInt32Rules *msg) { return _upb_hasbit(msg, 1); }
|
926
|
-
UPB_INLINE int32_t validate_SInt32Rules_const(const validate_SInt32Rules
|
1136
|
+
UPB_INLINE int32_t validate_SInt32Rules_const(const validate_SInt32Rules* msg) {
|
1137
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t);
|
1138
|
+
}
|
927
1139
|
UPB_INLINE bool validate_SInt32Rules_has_lt(const validate_SInt32Rules *msg) { return _upb_hasbit(msg, 2); }
|
928
|
-
UPB_INLINE int32_t validate_SInt32Rules_lt(const validate_SInt32Rules
|
1140
|
+
UPB_INLINE int32_t validate_SInt32Rules_lt(const validate_SInt32Rules* msg) {
|
1141
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t);
|
1142
|
+
}
|
929
1143
|
UPB_INLINE bool validate_SInt32Rules_has_lte(const validate_SInt32Rules *msg) { return _upb_hasbit(msg, 3); }
|
930
|
-
UPB_INLINE int32_t validate_SInt32Rules_lte(const validate_SInt32Rules
|
1144
|
+
UPB_INLINE int32_t validate_SInt32Rules_lte(const validate_SInt32Rules* msg) {
|
1145
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), int32_t);
|
1146
|
+
}
|
931
1147
|
UPB_INLINE bool validate_SInt32Rules_has_gt(const validate_SInt32Rules *msg) { return _upb_hasbit(msg, 4); }
|
932
|
-
UPB_INLINE int32_t validate_SInt32Rules_gt(const validate_SInt32Rules
|
1148
|
+
UPB_INLINE int32_t validate_SInt32Rules_gt(const validate_SInt32Rules* msg) {
|
1149
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int32_t);
|
1150
|
+
}
|
933
1151
|
UPB_INLINE bool validate_SInt32Rules_has_gte(const validate_SInt32Rules *msg) { return _upb_hasbit(msg, 5); }
|
934
|
-
UPB_INLINE int32_t validate_SInt32Rules_gte(const validate_SInt32Rules
|
935
|
-
|
936
|
-
|
1152
|
+
UPB_INLINE int32_t validate_SInt32Rules_gte(const validate_SInt32Rules* msg) {
|
1153
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), int32_t);
|
1154
|
+
}
|
1155
|
+
UPB_INLINE int32_t const* validate_SInt32Rules_in(const validate_SInt32Rules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
1156
|
+
UPB_INLINE int32_t const* validate_SInt32Rules_not_in(const validate_SInt32Rules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(32, 40), len); }
|
1157
|
+
UPB_INLINE bool validate_SInt32Rules_has_ignore_empty(const validate_SInt32Rules *msg) { return _upb_hasbit(msg, 6); }
|
1158
|
+
UPB_INLINE bool validate_SInt32Rules_ignore_empty(const validate_SInt32Rules* msg) {
|
1159
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
1160
|
+
}
|
937
1161
|
|
938
1162
|
UPB_INLINE void validate_SInt32Rules_set_const(validate_SInt32Rules *msg, int32_t value) {
|
939
1163
|
_upb_sethas(msg, 1);
|
@@ -956,58 +1180,87 @@ UPB_INLINE void validate_SInt32Rules_set_gte(validate_SInt32Rules *msg, int32_t
|
|
956
1180
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 20), int32_t) = value;
|
957
1181
|
}
|
958
1182
|
UPB_INLINE int32_t* validate_SInt32Rules_mutable_in(validate_SInt32Rules *msg, size_t *len) {
|
959
|
-
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1183
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
960
1184
|
}
|
961
|
-
UPB_INLINE int32_t* validate_SInt32Rules_resize_in(validate_SInt32Rules *msg, size_t len,
|
962
|
-
return (int32_t*)
|
1185
|
+
UPB_INLINE int32_t* validate_SInt32Rules_resize_in(validate_SInt32Rules *msg, size_t len, upb_Arena *arena) {
|
1186
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 32), len, 2, arena);
|
963
1187
|
}
|
964
|
-
UPB_INLINE bool validate_SInt32Rules_add_in(validate_SInt32Rules *msg, int32_t val,
|
965
|
-
return
|
1188
|
+
UPB_INLINE bool validate_SInt32Rules_add_in(validate_SInt32Rules *msg, int32_t val, upb_Arena *arena) {
|
1189
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 32), 2, &val,
|
966
1190
|
arena);
|
967
1191
|
}
|
968
1192
|
UPB_INLINE int32_t* validate_SInt32Rules_mutable_not_in(validate_SInt32Rules *msg, size_t *len) {
|
969
|
-
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1193
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 40), len);
|
970
1194
|
}
|
971
|
-
UPB_INLINE int32_t* validate_SInt32Rules_resize_not_in(validate_SInt32Rules *msg, size_t len,
|
972
|
-
return (int32_t*)
|
1195
|
+
UPB_INLINE int32_t* validate_SInt32Rules_resize_not_in(validate_SInt32Rules *msg, size_t len, upb_Arena *arena) {
|
1196
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(32, 40), len, 2, arena);
|
973
1197
|
}
|
974
|
-
UPB_INLINE bool validate_SInt32Rules_add_not_in(validate_SInt32Rules *msg, int32_t val,
|
975
|
-
return
|
1198
|
+
UPB_INLINE bool validate_SInt32Rules_add_not_in(validate_SInt32Rules *msg, int32_t val, upb_Arena *arena) {
|
1199
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(32, 40), 2, &val,
|
976
1200
|
arena);
|
977
1201
|
}
|
1202
|
+
UPB_INLINE void validate_SInt32Rules_set_ignore_empty(validate_SInt32Rules *msg, bool value) {
|
1203
|
+
_upb_sethas(msg, 6);
|
1204
|
+
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool) = value;
|
1205
|
+
}
|
978
1206
|
|
979
1207
|
/* validate.SInt64Rules */
|
980
1208
|
|
981
|
-
UPB_INLINE validate_SInt64Rules
|
982
|
-
return (validate_SInt64Rules
|
1209
|
+
UPB_INLINE validate_SInt64Rules* validate_SInt64Rules_new(upb_Arena* arena) {
|
1210
|
+
return (validate_SInt64Rules*)_upb_Message_New(&validate_SInt64Rules_msginit, arena);
|
983
1211
|
}
|
984
|
-
UPB_INLINE validate_SInt64Rules
|
985
|
-
|
986
|
-
|
987
|
-
|
1212
|
+
UPB_INLINE validate_SInt64Rules* validate_SInt64Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1213
|
+
validate_SInt64Rules* ret = validate_SInt64Rules_new(arena);
|
1214
|
+
if (!ret) return NULL;
|
1215
|
+
if (upb_Decode(buf, size, ret, &validate_SInt64Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1216
|
+
return NULL;
|
1217
|
+
}
|
1218
|
+
return ret;
|
1219
|
+
}
|
1220
|
+
UPB_INLINE validate_SInt64Rules* validate_SInt64Rules_parse_ex(const char* buf, size_t size,
|
1221
|
+
const upb_ExtensionRegistry* extreg,
|
1222
|
+
int options, upb_Arena* arena) {
|
1223
|
+
validate_SInt64Rules* ret = validate_SInt64Rules_new(arena);
|
1224
|
+
if (!ret) return NULL;
|
1225
|
+
if (upb_Decode(buf, size, ret, &validate_SInt64Rules_msginit, extreg, options, arena) !=
|
1226
|
+
kUpb_DecodeStatus_Ok) {
|
1227
|
+
return NULL;
|
1228
|
+
}
|
1229
|
+
return ret;
|
988
1230
|
}
|
989
|
-
UPB_INLINE
|
990
|
-
|
991
|
-
validate_SInt64Rules *ret = validate_SInt64Rules_new(arena);
|
992
|
-
return (ret && _upb_decode(buf, size, ret, &validate_SInt64Rules_msginit, arena, options))
|
993
|
-
? ret : NULL;
|
1231
|
+
UPB_INLINE char* validate_SInt64Rules_serialize(const validate_SInt64Rules* msg, upb_Arena* arena, size_t* len) {
|
1232
|
+
return upb_Encode(msg, &validate_SInt64Rules_msginit, 0, arena, len);
|
994
1233
|
}
|
995
|
-
UPB_INLINE char
|
996
|
-
|
1234
|
+
UPB_INLINE char* validate_SInt64Rules_serialize_ex(const validate_SInt64Rules* msg, int options,
|
1235
|
+
upb_Arena* arena, size_t* len) {
|
1236
|
+
return upb_Encode(msg, &validate_SInt64Rules_msginit, options, arena, len);
|
997
1237
|
}
|
998
|
-
|
999
1238
|
UPB_INLINE bool validate_SInt64Rules_has_const(const validate_SInt64Rules *msg) { return _upb_hasbit(msg, 1); }
|
1000
|
-
UPB_INLINE int64_t validate_SInt64Rules_const(const validate_SInt64Rules
|
1239
|
+
UPB_INLINE int64_t validate_SInt64Rules_const(const validate_SInt64Rules* msg) {
|
1240
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int64_t);
|
1241
|
+
}
|
1001
1242
|
UPB_INLINE bool validate_SInt64Rules_has_lt(const validate_SInt64Rules *msg) { return _upb_hasbit(msg, 2); }
|
1002
|
-
UPB_INLINE int64_t validate_SInt64Rules_lt(const validate_SInt64Rules
|
1243
|
+
UPB_INLINE int64_t validate_SInt64Rules_lt(const validate_SInt64Rules* msg) {
|
1244
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int64_t);
|
1245
|
+
}
|
1003
1246
|
UPB_INLINE bool validate_SInt64Rules_has_lte(const validate_SInt64Rules *msg) { return _upb_hasbit(msg, 3); }
|
1004
|
-
UPB_INLINE int64_t validate_SInt64Rules_lte(const validate_SInt64Rules
|
1247
|
+
UPB_INLINE int64_t validate_SInt64Rules_lte(const validate_SInt64Rules* msg) {
|
1248
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), int64_t);
|
1249
|
+
}
|
1005
1250
|
UPB_INLINE bool validate_SInt64Rules_has_gt(const validate_SInt64Rules *msg) { return _upb_hasbit(msg, 4); }
|
1006
|
-
UPB_INLINE int64_t validate_SInt64Rules_gt(const validate_SInt64Rules
|
1251
|
+
UPB_INLINE int64_t validate_SInt64Rules_gt(const validate_SInt64Rules* msg) {
|
1252
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), int64_t);
|
1253
|
+
}
|
1007
1254
|
UPB_INLINE bool validate_SInt64Rules_has_gte(const validate_SInt64Rules *msg) { return _upb_hasbit(msg, 5); }
|
1008
|
-
UPB_INLINE int64_t validate_SInt64Rules_gte(const validate_SInt64Rules
|
1009
|
-
|
1010
|
-
|
1255
|
+
UPB_INLINE int64_t validate_SInt64Rules_gte(const validate_SInt64Rules* msg) {
|
1256
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), int64_t);
|
1257
|
+
}
|
1258
|
+
UPB_INLINE int64_t const* validate_SInt64Rules_in(const validate_SInt64Rules *msg, size_t *len) { return (int64_t const*)_upb_array_accessor(msg, UPB_SIZE(52, 56), len); }
|
1259
|
+
UPB_INLINE int64_t const* validate_SInt64Rules_not_in(const validate_SInt64Rules *msg, size_t *len) { return (int64_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 64), len); }
|
1260
|
+
UPB_INLINE bool validate_SInt64Rules_has_ignore_empty(const validate_SInt64Rules *msg) { return _upb_hasbit(msg, 6); }
|
1261
|
+
UPB_INLINE bool validate_SInt64Rules_ignore_empty(const validate_SInt64Rules* msg) {
|
1262
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool);
|
1263
|
+
}
|
1011
1264
|
|
1012
1265
|
UPB_INLINE void validate_SInt64Rules_set_const(validate_SInt64Rules *msg, int64_t value) {
|
1013
1266
|
_upb_sethas(msg, 1);
|
@@ -1030,58 +1283,87 @@ UPB_INLINE void validate_SInt64Rules_set_gte(validate_SInt64Rules *msg, int64_t
|
|
1030
1283
|
*UPB_PTR_AT(msg, UPB_SIZE(40, 40), int64_t) = value;
|
1031
1284
|
}
|
1032
1285
|
UPB_INLINE int64_t* validate_SInt64Rules_mutable_in(validate_SInt64Rules *msg, size_t *len) {
|
1033
|
-
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1286
|
+
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 56), len);
|
1034
1287
|
}
|
1035
|
-
UPB_INLINE int64_t* validate_SInt64Rules_resize_in(validate_SInt64Rules *msg, size_t len,
|
1036
|
-
return (int64_t*)
|
1288
|
+
UPB_INLINE int64_t* validate_SInt64Rules_resize_in(validate_SInt64Rules *msg, size_t len, upb_Arena *arena) {
|
1289
|
+
return (int64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(52, 56), len, 3, arena);
|
1037
1290
|
}
|
1038
|
-
UPB_INLINE bool validate_SInt64Rules_add_in(validate_SInt64Rules *msg, int64_t val,
|
1039
|
-
return
|
1291
|
+
UPB_INLINE bool validate_SInt64Rules_add_in(validate_SInt64Rules *msg, int64_t val, upb_Arena *arena) {
|
1292
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(52, 56), 3, &val,
|
1040
1293
|
arena);
|
1041
1294
|
}
|
1042
1295
|
UPB_INLINE int64_t* validate_SInt64Rules_mutable_not_in(validate_SInt64Rules *msg, size_t *len) {
|
1043
|
-
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1296
|
+
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 64), len);
|
1044
1297
|
}
|
1045
|
-
UPB_INLINE int64_t* validate_SInt64Rules_resize_not_in(validate_SInt64Rules *msg, size_t len,
|
1046
|
-
return (int64_t*)
|
1298
|
+
UPB_INLINE int64_t* validate_SInt64Rules_resize_not_in(validate_SInt64Rules *msg, size_t len, upb_Arena *arena) {
|
1299
|
+
return (int64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(56, 64), len, 3, arena);
|
1047
1300
|
}
|
1048
|
-
UPB_INLINE bool validate_SInt64Rules_add_not_in(validate_SInt64Rules *msg, int64_t val,
|
1049
|
-
return
|
1301
|
+
UPB_INLINE bool validate_SInt64Rules_add_not_in(validate_SInt64Rules *msg, int64_t val, upb_Arena *arena) {
|
1302
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(56, 64), 3, &val,
|
1050
1303
|
arena);
|
1051
1304
|
}
|
1305
|
+
UPB_INLINE void validate_SInt64Rules_set_ignore_empty(validate_SInt64Rules *msg, bool value) {
|
1306
|
+
_upb_sethas(msg, 6);
|
1307
|
+
*UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool) = value;
|
1308
|
+
}
|
1052
1309
|
|
1053
1310
|
/* validate.Fixed32Rules */
|
1054
1311
|
|
1055
|
-
UPB_INLINE validate_Fixed32Rules
|
1056
|
-
return (validate_Fixed32Rules
|
1312
|
+
UPB_INLINE validate_Fixed32Rules* validate_Fixed32Rules_new(upb_Arena* arena) {
|
1313
|
+
return (validate_Fixed32Rules*)_upb_Message_New(&validate_Fixed32Rules_msginit, arena);
|
1057
1314
|
}
|
1058
|
-
UPB_INLINE validate_Fixed32Rules
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1315
|
+
UPB_INLINE validate_Fixed32Rules* validate_Fixed32Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1316
|
+
validate_Fixed32Rules* ret = validate_Fixed32Rules_new(arena);
|
1317
|
+
if (!ret) return NULL;
|
1318
|
+
if (upb_Decode(buf, size, ret, &validate_Fixed32Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1319
|
+
return NULL;
|
1320
|
+
}
|
1321
|
+
return ret;
|
1322
|
+
}
|
1323
|
+
UPB_INLINE validate_Fixed32Rules* validate_Fixed32Rules_parse_ex(const char* buf, size_t size,
|
1324
|
+
const upb_ExtensionRegistry* extreg,
|
1325
|
+
int options, upb_Arena* arena) {
|
1326
|
+
validate_Fixed32Rules* ret = validate_Fixed32Rules_new(arena);
|
1327
|
+
if (!ret) return NULL;
|
1328
|
+
if (upb_Decode(buf, size, ret, &validate_Fixed32Rules_msginit, extreg, options, arena) !=
|
1329
|
+
kUpb_DecodeStatus_Ok) {
|
1330
|
+
return NULL;
|
1331
|
+
}
|
1332
|
+
return ret;
|
1062
1333
|
}
|
1063
|
-
UPB_INLINE
|
1064
|
-
|
1065
|
-
validate_Fixed32Rules *ret = validate_Fixed32Rules_new(arena);
|
1066
|
-
return (ret && _upb_decode(buf, size, ret, &validate_Fixed32Rules_msginit, arena, options))
|
1067
|
-
? ret : NULL;
|
1334
|
+
UPB_INLINE char* validate_Fixed32Rules_serialize(const validate_Fixed32Rules* msg, upb_Arena* arena, size_t* len) {
|
1335
|
+
return upb_Encode(msg, &validate_Fixed32Rules_msginit, 0, arena, len);
|
1068
1336
|
}
|
1069
|
-
UPB_INLINE char
|
1070
|
-
|
1337
|
+
UPB_INLINE char* validate_Fixed32Rules_serialize_ex(const validate_Fixed32Rules* msg, int options,
|
1338
|
+
upb_Arena* arena, size_t* len) {
|
1339
|
+
return upb_Encode(msg, &validate_Fixed32Rules_msginit, options, arena, len);
|
1071
1340
|
}
|
1072
|
-
|
1073
1341
|
UPB_INLINE bool validate_Fixed32Rules_has_const(const validate_Fixed32Rules *msg) { return _upb_hasbit(msg, 1); }
|
1074
|
-
UPB_INLINE uint32_t validate_Fixed32Rules_const(const validate_Fixed32Rules
|
1342
|
+
UPB_INLINE uint32_t validate_Fixed32Rules_const(const validate_Fixed32Rules* msg) {
|
1343
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), uint32_t);
|
1344
|
+
}
|
1075
1345
|
UPB_INLINE bool validate_Fixed32Rules_has_lt(const validate_Fixed32Rules *msg) { return _upb_hasbit(msg, 2); }
|
1076
|
-
UPB_INLINE uint32_t validate_Fixed32Rules_lt(const validate_Fixed32Rules
|
1346
|
+
UPB_INLINE uint32_t validate_Fixed32Rules_lt(const validate_Fixed32Rules* msg) {
|
1347
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint32_t);
|
1348
|
+
}
|
1077
1349
|
UPB_INLINE bool validate_Fixed32Rules_has_lte(const validate_Fixed32Rules *msg) { return _upb_hasbit(msg, 3); }
|
1078
|
-
UPB_INLINE uint32_t validate_Fixed32Rules_lte(const validate_Fixed32Rules
|
1350
|
+
UPB_INLINE uint32_t validate_Fixed32Rules_lte(const validate_Fixed32Rules* msg) {
|
1351
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), uint32_t);
|
1352
|
+
}
|
1079
1353
|
UPB_INLINE bool validate_Fixed32Rules_has_gt(const validate_Fixed32Rules *msg) { return _upb_hasbit(msg, 4); }
|
1080
|
-
UPB_INLINE uint32_t validate_Fixed32Rules_gt(const validate_Fixed32Rules
|
1354
|
+
UPB_INLINE uint32_t validate_Fixed32Rules_gt(const validate_Fixed32Rules* msg) {
|
1355
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint32_t);
|
1356
|
+
}
|
1081
1357
|
UPB_INLINE bool validate_Fixed32Rules_has_gte(const validate_Fixed32Rules *msg) { return _upb_hasbit(msg, 5); }
|
1082
|
-
UPB_INLINE uint32_t validate_Fixed32Rules_gte(const validate_Fixed32Rules
|
1083
|
-
|
1084
|
-
|
1358
|
+
UPB_INLINE uint32_t validate_Fixed32Rules_gte(const validate_Fixed32Rules* msg) {
|
1359
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), uint32_t);
|
1360
|
+
}
|
1361
|
+
UPB_INLINE uint32_t const* validate_Fixed32Rules_in(const validate_Fixed32Rules *msg, size_t *len) { return (uint32_t const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
1362
|
+
UPB_INLINE uint32_t const* validate_Fixed32Rules_not_in(const validate_Fixed32Rules *msg, size_t *len) { return (uint32_t const*)_upb_array_accessor(msg, UPB_SIZE(32, 40), len); }
|
1363
|
+
UPB_INLINE bool validate_Fixed32Rules_has_ignore_empty(const validate_Fixed32Rules *msg) { return _upb_hasbit(msg, 6); }
|
1364
|
+
UPB_INLINE bool validate_Fixed32Rules_ignore_empty(const validate_Fixed32Rules* msg) {
|
1365
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
1366
|
+
}
|
1085
1367
|
|
1086
1368
|
UPB_INLINE void validate_Fixed32Rules_set_const(validate_Fixed32Rules *msg, uint32_t value) {
|
1087
1369
|
_upb_sethas(msg, 1);
|
@@ -1104,58 +1386,87 @@ UPB_INLINE void validate_Fixed32Rules_set_gte(validate_Fixed32Rules *msg, uint32
|
|
1104
1386
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 20), uint32_t) = value;
|
1105
1387
|
}
|
1106
1388
|
UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_in(validate_Fixed32Rules *msg, size_t *len) {
|
1107
|
-
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1389
|
+
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
1108
1390
|
}
|
1109
|
-
UPB_INLINE uint32_t* validate_Fixed32Rules_resize_in(validate_Fixed32Rules *msg, size_t len,
|
1110
|
-
return (uint32_t*)
|
1391
|
+
UPB_INLINE uint32_t* validate_Fixed32Rules_resize_in(validate_Fixed32Rules *msg, size_t len, upb_Arena *arena) {
|
1392
|
+
return (uint32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 32), len, 2, arena);
|
1111
1393
|
}
|
1112
|
-
UPB_INLINE bool validate_Fixed32Rules_add_in(validate_Fixed32Rules *msg, uint32_t val,
|
1113
|
-
return
|
1394
|
+
UPB_INLINE bool validate_Fixed32Rules_add_in(validate_Fixed32Rules *msg, uint32_t val, upb_Arena *arena) {
|
1395
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 32), 2, &val,
|
1114
1396
|
arena);
|
1115
1397
|
}
|
1116
1398
|
UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_not_in(validate_Fixed32Rules *msg, size_t *len) {
|
1117
|
-
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1399
|
+
return (uint32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 40), len);
|
1118
1400
|
}
|
1119
|
-
UPB_INLINE uint32_t* validate_Fixed32Rules_resize_not_in(validate_Fixed32Rules *msg, size_t len,
|
1120
|
-
return (uint32_t*)
|
1401
|
+
UPB_INLINE uint32_t* validate_Fixed32Rules_resize_not_in(validate_Fixed32Rules *msg, size_t len, upb_Arena *arena) {
|
1402
|
+
return (uint32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(32, 40), len, 2, arena);
|
1121
1403
|
}
|
1122
|
-
UPB_INLINE bool validate_Fixed32Rules_add_not_in(validate_Fixed32Rules *msg, uint32_t val,
|
1123
|
-
return
|
1404
|
+
UPB_INLINE bool validate_Fixed32Rules_add_not_in(validate_Fixed32Rules *msg, uint32_t val, upb_Arena *arena) {
|
1405
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(32, 40), 2, &val,
|
1124
1406
|
arena);
|
1125
1407
|
}
|
1408
|
+
UPB_INLINE void validate_Fixed32Rules_set_ignore_empty(validate_Fixed32Rules *msg, bool value) {
|
1409
|
+
_upb_sethas(msg, 6);
|
1410
|
+
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool) = value;
|
1411
|
+
}
|
1126
1412
|
|
1127
1413
|
/* validate.Fixed64Rules */
|
1128
1414
|
|
1129
|
-
UPB_INLINE validate_Fixed64Rules
|
1130
|
-
return (validate_Fixed64Rules
|
1415
|
+
UPB_INLINE validate_Fixed64Rules* validate_Fixed64Rules_new(upb_Arena* arena) {
|
1416
|
+
return (validate_Fixed64Rules*)_upb_Message_New(&validate_Fixed64Rules_msginit, arena);
|
1131
1417
|
}
|
1132
|
-
UPB_INLINE validate_Fixed64Rules
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1418
|
+
UPB_INLINE validate_Fixed64Rules* validate_Fixed64Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1419
|
+
validate_Fixed64Rules* ret = validate_Fixed64Rules_new(arena);
|
1420
|
+
if (!ret) return NULL;
|
1421
|
+
if (upb_Decode(buf, size, ret, &validate_Fixed64Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1422
|
+
return NULL;
|
1423
|
+
}
|
1424
|
+
return ret;
|
1425
|
+
}
|
1426
|
+
UPB_INLINE validate_Fixed64Rules* validate_Fixed64Rules_parse_ex(const char* buf, size_t size,
|
1427
|
+
const upb_ExtensionRegistry* extreg,
|
1428
|
+
int options, upb_Arena* arena) {
|
1429
|
+
validate_Fixed64Rules* ret = validate_Fixed64Rules_new(arena);
|
1430
|
+
if (!ret) return NULL;
|
1431
|
+
if (upb_Decode(buf, size, ret, &validate_Fixed64Rules_msginit, extreg, options, arena) !=
|
1432
|
+
kUpb_DecodeStatus_Ok) {
|
1433
|
+
return NULL;
|
1434
|
+
}
|
1435
|
+
return ret;
|
1136
1436
|
}
|
1137
|
-
UPB_INLINE
|
1138
|
-
|
1139
|
-
validate_Fixed64Rules *ret = validate_Fixed64Rules_new(arena);
|
1140
|
-
return (ret && _upb_decode(buf, size, ret, &validate_Fixed64Rules_msginit, arena, options))
|
1141
|
-
? ret : NULL;
|
1437
|
+
UPB_INLINE char* validate_Fixed64Rules_serialize(const validate_Fixed64Rules* msg, upb_Arena* arena, size_t* len) {
|
1438
|
+
return upb_Encode(msg, &validate_Fixed64Rules_msginit, 0, arena, len);
|
1142
1439
|
}
|
1143
|
-
UPB_INLINE char
|
1144
|
-
|
1440
|
+
UPB_INLINE char* validate_Fixed64Rules_serialize_ex(const validate_Fixed64Rules* msg, int options,
|
1441
|
+
upb_Arena* arena, size_t* len) {
|
1442
|
+
return upb_Encode(msg, &validate_Fixed64Rules_msginit, options, arena, len);
|
1145
1443
|
}
|
1146
|
-
|
1147
1444
|
UPB_INLINE bool validate_Fixed64Rules_has_const(const validate_Fixed64Rules *msg) { return _upb_hasbit(msg, 1); }
|
1148
|
-
UPB_INLINE uint64_t validate_Fixed64Rules_const(const validate_Fixed64Rules
|
1445
|
+
UPB_INLINE uint64_t validate_Fixed64Rules_const(const validate_Fixed64Rules* msg) {
|
1446
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t);
|
1447
|
+
}
|
1149
1448
|
UPB_INLINE bool validate_Fixed64Rules_has_lt(const validate_Fixed64Rules *msg) { return _upb_hasbit(msg, 2); }
|
1150
|
-
UPB_INLINE uint64_t validate_Fixed64Rules_lt(const validate_Fixed64Rules
|
1449
|
+
UPB_INLINE uint64_t validate_Fixed64Rules_lt(const validate_Fixed64Rules* msg) {
|
1450
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t);
|
1451
|
+
}
|
1151
1452
|
UPB_INLINE bool validate_Fixed64Rules_has_lte(const validate_Fixed64Rules *msg) { return _upb_hasbit(msg, 3); }
|
1152
|
-
UPB_INLINE uint64_t validate_Fixed64Rules_lte(const validate_Fixed64Rules
|
1453
|
+
UPB_INLINE uint64_t validate_Fixed64Rules_lte(const validate_Fixed64Rules* msg) {
|
1454
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), uint64_t);
|
1455
|
+
}
|
1153
1456
|
UPB_INLINE bool validate_Fixed64Rules_has_gt(const validate_Fixed64Rules *msg) { return _upb_hasbit(msg, 4); }
|
1154
|
-
UPB_INLINE uint64_t validate_Fixed64Rules_gt(const validate_Fixed64Rules
|
1457
|
+
UPB_INLINE uint64_t validate_Fixed64Rules_gt(const validate_Fixed64Rules* msg) {
|
1458
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), uint64_t);
|
1459
|
+
}
|
1155
1460
|
UPB_INLINE bool validate_Fixed64Rules_has_gte(const validate_Fixed64Rules *msg) { return _upb_hasbit(msg, 5); }
|
1156
|
-
UPB_INLINE uint64_t validate_Fixed64Rules_gte(const validate_Fixed64Rules
|
1157
|
-
|
1158
|
-
|
1461
|
+
UPB_INLINE uint64_t validate_Fixed64Rules_gte(const validate_Fixed64Rules* msg) {
|
1462
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), uint64_t);
|
1463
|
+
}
|
1464
|
+
UPB_INLINE uint64_t const* validate_Fixed64Rules_in(const validate_Fixed64Rules *msg, size_t *len) { return (uint64_t const*)_upb_array_accessor(msg, UPB_SIZE(52, 56), len); }
|
1465
|
+
UPB_INLINE uint64_t const* validate_Fixed64Rules_not_in(const validate_Fixed64Rules *msg, size_t *len) { return (uint64_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 64), len); }
|
1466
|
+
UPB_INLINE bool validate_Fixed64Rules_has_ignore_empty(const validate_Fixed64Rules *msg) { return _upb_hasbit(msg, 6); }
|
1467
|
+
UPB_INLINE bool validate_Fixed64Rules_ignore_empty(const validate_Fixed64Rules* msg) {
|
1468
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool);
|
1469
|
+
}
|
1159
1470
|
|
1160
1471
|
UPB_INLINE void validate_Fixed64Rules_set_const(validate_Fixed64Rules *msg, uint64_t value) {
|
1161
1472
|
_upb_sethas(msg, 1);
|
@@ -1178,58 +1489,87 @@ UPB_INLINE void validate_Fixed64Rules_set_gte(validate_Fixed64Rules *msg, uint64
|
|
1178
1489
|
*UPB_PTR_AT(msg, UPB_SIZE(40, 40), uint64_t) = value;
|
1179
1490
|
}
|
1180
1491
|
UPB_INLINE uint64_t* validate_Fixed64Rules_mutable_in(validate_Fixed64Rules *msg, size_t *len) {
|
1181
|
-
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1492
|
+
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 56), len);
|
1182
1493
|
}
|
1183
|
-
UPB_INLINE uint64_t* validate_Fixed64Rules_resize_in(validate_Fixed64Rules *msg, size_t len,
|
1184
|
-
return (uint64_t*)
|
1494
|
+
UPB_INLINE uint64_t* validate_Fixed64Rules_resize_in(validate_Fixed64Rules *msg, size_t len, upb_Arena *arena) {
|
1495
|
+
return (uint64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(52, 56), len, 3, arena);
|
1185
1496
|
}
|
1186
|
-
UPB_INLINE bool validate_Fixed64Rules_add_in(validate_Fixed64Rules *msg, uint64_t val,
|
1187
|
-
return
|
1497
|
+
UPB_INLINE bool validate_Fixed64Rules_add_in(validate_Fixed64Rules *msg, uint64_t val, upb_Arena *arena) {
|
1498
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(52, 56), 3, &val,
|
1188
1499
|
arena);
|
1189
1500
|
}
|
1190
1501
|
UPB_INLINE uint64_t* validate_Fixed64Rules_mutable_not_in(validate_Fixed64Rules *msg, size_t *len) {
|
1191
|
-
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1502
|
+
return (uint64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 64), len);
|
1192
1503
|
}
|
1193
|
-
UPB_INLINE uint64_t* validate_Fixed64Rules_resize_not_in(validate_Fixed64Rules *msg, size_t len,
|
1194
|
-
return (uint64_t*)
|
1504
|
+
UPB_INLINE uint64_t* validate_Fixed64Rules_resize_not_in(validate_Fixed64Rules *msg, size_t len, upb_Arena *arena) {
|
1505
|
+
return (uint64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(56, 64), len, 3, arena);
|
1195
1506
|
}
|
1196
|
-
UPB_INLINE bool validate_Fixed64Rules_add_not_in(validate_Fixed64Rules *msg, uint64_t val,
|
1197
|
-
return
|
1507
|
+
UPB_INLINE bool validate_Fixed64Rules_add_not_in(validate_Fixed64Rules *msg, uint64_t val, upb_Arena *arena) {
|
1508
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(56, 64), 3, &val,
|
1198
1509
|
arena);
|
1199
1510
|
}
|
1511
|
+
UPB_INLINE void validate_Fixed64Rules_set_ignore_empty(validate_Fixed64Rules *msg, bool value) {
|
1512
|
+
_upb_sethas(msg, 6);
|
1513
|
+
*UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool) = value;
|
1514
|
+
}
|
1200
1515
|
|
1201
1516
|
/* validate.SFixed32Rules */
|
1202
1517
|
|
1203
|
-
UPB_INLINE validate_SFixed32Rules
|
1204
|
-
return (validate_SFixed32Rules
|
1518
|
+
UPB_INLINE validate_SFixed32Rules* validate_SFixed32Rules_new(upb_Arena* arena) {
|
1519
|
+
return (validate_SFixed32Rules*)_upb_Message_New(&validate_SFixed32Rules_msginit, arena);
|
1205
1520
|
}
|
1206
|
-
UPB_INLINE validate_SFixed32Rules
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1521
|
+
UPB_INLINE validate_SFixed32Rules* validate_SFixed32Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1522
|
+
validate_SFixed32Rules* ret = validate_SFixed32Rules_new(arena);
|
1523
|
+
if (!ret) return NULL;
|
1524
|
+
if (upb_Decode(buf, size, ret, &validate_SFixed32Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1525
|
+
return NULL;
|
1526
|
+
}
|
1527
|
+
return ret;
|
1528
|
+
}
|
1529
|
+
UPB_INLINE validate_SFixed32Rules* validate_SFixed32Rules_parse_ex(const char* buf, size_t size,
|
1530
|
+
const upb_ExtensionRegistry* extreg,
|
1531
|
+
int options, upb_Arena* arena) {
|
1532
|
+
validate_SFixed32Rules* ret = validate_SFixed32Rules_new(arena);
|
1533
|
+
if (!ret) return NULL;
|
1534
|
+
if (upb_Decode(buf, size, ret, &validate_SFixed32Rules_msginit, extreg, options, arena) !=
|
1535
|
+
kUpb_DecodeStatus_Ok) {
|
1536
|
+
return NULL;
|
1537
|
+
}
|
1538
|
+
return ret;
|
1210
1539
|
}
|
1211
|
-
UPB_INLINE
|
1212
|
-
|
1213
|
-
validate_SFixed32Rules *ret = validate_SFixed32Rules_new(arena);
|
1214
|
-
return (ret && _upb_decode(buf, size, ret, &validate_SFixed32Rules_msginit, arena, options))
|
1215
|
-
? ret : NULL;
|
1540
|
+
UPB_INLINE char* validate_SFixed32Rules_serialize(const validate_SFixed32Rules* msg, upb_Arena* arena, size_t* len) {
|
1541
|
+
return upb_Encode(msg, &validate_SFixed32Rules_msginit, 0, arena, len);
|
1216
1542
|
}
|
1217
|
-
UPB_INLINE char
|
1218
|
-
|
1543
|
+
UPB_INLINE char* validate_SFixed32Rules_serialize_ex(const validate_SFixed32Rules* msg, int options,
|
1544
|
+
upb_Arena* arena, size_t* len) {
|
1545
|
+
return upb_Encode(msg, &validate_SFixed32Rules_msginit, options, arena, len);
|
1219
1546
|
}
|
1220
|
-
|
1221
1547
|
UPB_INLINE bool validate_SFixed32Rules_has_const(const validate_SFixed32Rules *msg) { return _upb_hasbit(msg, 1); }
|
1222
|
-
UPB_INLINE int32_t validate_SFixed32Rules_const(const validate_SFixed32Rules
|
1548
|
+
UPB_INLINE int32_t validate_SFixed32Rules_const(const validate_SFixed32Rules* msg) {
|
1549
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t);
|
1550
|
+
}
|
1223
1551
|
UPB_INLINE bool validate_SFixed32Rules_has_lt(const validate_SFixed32Rules *msg) { return _upb_hasbit(msg, 2); }
|
1224
|
-
UPB_INLINE int32_t validate_SFixed32Rules_lt(const validate_SFixed32Rules
|
1552
|
+
UPB_INLINE int32_t validate_SFixed32Rules_lt(const validate_SFixed32Rules* msg) {
|
1553
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t);
|
1554
|
+
}
|
1225
1555
|
UPB_INLINE bool validate_SFixed32Rules_has_lte(const validate_SFixed32Rules *msg) { return _upb_hasbit(msg, 3); }
|
1226
|
-
UPB_INLINE int32_t validate_SFixed32Rules_lte(const validate_SFixed32Rules
|
1556
|
+
UPB_INLINE int32_t validate_SFixed32Rules_lte(const validate_SFixed32Rules* msg) {
|
1557
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), int32_t);
|
1558
|
+
}
|
1227
1559
|
UPB_INLINE bool validate_SFixed32Rules_has_gt(const validate_SFixed32Rules *msg) { return _upb_hasbit(msg, 4); }
|
1228
|
-
UPB_INLINE int32_t validate_SFixed32Rules_gt(const validate_SFixed32Rules
|
1560
|
+
UPB_INLINE int32_t validate_SFixed32Rules_gt(const validate_SFixed32Rules* msg) {
|
1561
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int32_t);
|
1562
|
+
}
|
1229
1563
|
UPB_INLINE bool validate_SFixed32Rules_has_gte(const validate_SFixed32Rules *msg) { return _upb_hasbit(msg, 5); }
|
1230
|
-
UPB_INLINE int32_t validate_SFixed32Rules_gte(const validate_SFixed32Rules
|
1231
|
-
|
1232
|
-
|
1564
|
+
UPB_INLINE int32_t validate_SFixed32Rules_gte(const validate_SFixed32Rules* msg) {
|
1565
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), int32_t);
|
1566
|
+
}
|
1567
|
+
UPB_INLINE int32_t const* validate_SFixed32Rules_in(const validate_SFixed32Rules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
1568
|
+
UPB_INLINE int32_t const* validate_SFixed32Rules_not_in(const validate_SFixed32Rules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(32, 40), len); }
|
1569
|
+
UPB_INLINE bool validate_SFixed32Rules_has_ignore_empty(const validate_SFixed32Rules *msg) { return _upb_hasbit(msg, 6); }
|
1570
|
+
UPB_INLINE bool validate_SFixed32Rules_ignore_empty(const validate_SFixed32Rules* msg) {
|
1571
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
1572
|
+
}
|
1233
1573
|
|
1234
1574
|
UPB_INLINE void validate_SFixed32Rules_set_const(validate_SFixed32Rules *msg, int32_t value) {
|
1235
1575
|
_upb_sethas(msg, 1);
|
@@ -1252,58 +1592,87 @@ UPB_INLINE void validate_SFixed32Rules_set_gte(validate_SFixed32Rules *msg, int3
|
|
1252
1592
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 20), int32_t) = value;
|
1253
1593
|
}
|
1254
1594
|
UPB_INLINE int32_t* validate_SFixed32Rules_mutable_in(validate_SFixed32Rules *msg, size_t *len) {
|
1255
|
-
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1595
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
1256
1596
|
}
|
1257
|
-
UPB_INLINE int32_t* validate_SFixed32Rules_resize_in(validate_SFixed32Rules *msg, size_t len,
|
1258
|
-
return (int32_t*)
|
1597
|
+
UPB_INLINE int32_t* validate_SFixed32Rules_resize_in(validate_SFixed32Rules *msg, size_t len, upb_Arena *arena) {
|
1598
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 32), len, 2, arena);
|
1259
1599
|
}
|
1260
|
-
UPB_INLINE bool validate_SFixed32Rules_add_in(validate_SFixed32Rules *msg, int32_t val,
|
1261
|
-
return
|
1600
|
+
UPB_INLINE bool validate_SFixed32Rules_add_in(validate_SFixed32Rules *msg, int32_t val, upb_Arena *arena) {
|
1601
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 32), 2, &val,
|
1262
1602
|
arena);
|
1263
1603
|
}
|
1264
1604
|
UPB_INLINE int32_t* validate_SFixed32Rules_mutable_not_in(validate_SFixed32Rules *msg, size_t *len) {
|
1265
|
-
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1605
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 40), len);
|
1266
1606
|
}
|
1267
|
-
UPB_INLINE int32_t* validate_SFixed32Rules_resize_not_in(validate_SFixed32Rules *msg, size_t len,
|
1268
|
-
return (int32_t*)
|
1607
|
+
UPB_INLINE int32_t* validate_SFixed32Rules_resize_not_in(validate_SFixed32Rules *msg, size_t len, upb_Arena *arena) {
|
1608
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(32, 40), len, 2, arena);
|
1269
1609
|
}
|
1270
|
-
UPB_INLINE bool validate_SFixed32Rules_add_not_in(validate_SFixed32Rules *msg, int32_t val,
|
1271
|
-
return
|
1610
|
+
UPB_INLINE bool validate_SFixed32Rules_add_not_in(validate_SFixed32Rules *msg, int32_t val, upb_Arena *arena) {
|
1611
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(32, 40), 2, &val,
|
1272
1612
|
arena);
|
1273
1613
|
}
|
1614
|
+
UPB_INLINE void validate_SFixed32Rules_set_ignore_empty(validate_SFixed32Rules *msg, bool value) {
|
1615
|
+
_upb_sethas(msg, 6);
|
1616
|
+
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool) = value;
|
1617
|
+
}
|
1274
1618
|
|
1275
1619
|
/* validate.SFixed64Rules */
|
1276
1620
|
|
1277
|
-
UPB_INLINE validate_SFixed64Rules
|
1278
|
-
return (validate_SFixed64Rules
|
1621
|
+
UPB_INLINE validate_SFixed64Rules* validate_SFixed64Rules_new(upb_Arena* arena) {
|
1622
|
+
return (validate_SFixed64Rules*)_upb_Message_New(&validate_SFixed64Rules_msginit, arena);
|
1279
1623
|
}
|
1280
|
-
UPB_INLINE validate_SFixed64Rules
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1624
|
+
UPB_INLINE validate_SFixed64Rules* validate_SFixed64Rules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1625
|
+
validate_SFixed64Rules* ret = validate_SFixed64Rules_new(arena);
|
1626
|
+
if (!ret) return NULL;
|
1627
|
+
if (upb_Decode(buf, size, ret, &validate_SFixed64Rules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1628
|
+
return NULL;
|
1629
|
+
}
|
1630
|
+
return ret;
|
1631
|
+
}
|
1632
|
+
UPB_INLINE validate_SFixed64Rules* validate_SFixed64Rules_parse_ex(const char* buf, size_t size,
|
1633
|
+
const upb_ExtensionRegistry* extreg,
|
1634
|
+
int options, upb_Arena* arena) {
|
1635
|
+
validate_SFixed64Rules* ret = validate_SFixed64Rules_new(arena);
|
1636
|
+
if (!ret) return NULL;
|
1637
|
+
if (upb_Decode(buf, size, ret, &validate_SFixed64Rules_msginit, extreg, options, arena) !=
|
1638
|
+
kUpb_DecodeStatus_Ok) {
|
1639
|
+
return NULL;
|
1640
|
+
}
|
1641
|
+
return ret;
|
1284
1642
|
}
|
1285
|
-
UPB_INLINE
|
1286
|
-
|
1287
|
-
validate_SFixed64Rules *ret = validate_SFixed64Rules_new(arena);
|
1288
|
-
return (ret && _upb_decode(buf, size, ret, &validate_SFixed64Rules_msginit, arena, options))
|
1289
|
-
? ret : NULL;
|
1643
|
+
UPB_INLINE char* validate_SFixed64Rules_serialize(const validate_SFixed64Rules* msg, upb_Arena* arena, size_t* len) {
|
1644
|
+
return upb_Encode(msg, &validate_SFixed64Rules_msginit, 0, arena, len);
|
1290
1645
|
}
|
1291
|
-
UPB_INLINE char
|
1292
|
-
|
1646
|
+
UPB_INLINE char* validate_SFixed64Rules_serialize_ex(const validate_SFixed64Rules* msg, int options,
|
1647
|
+
upb_Arena* arena, size_t* len) {
|
1648
|
+
return upb_Encode(msg, &validate_SFixed64Rules_msginit, options, arena, len);
|
1293
1649
|
}
|
1294
|
-
|
1295
1650
|
UPB_INLINE bool validate_SFixed64Rules_has_const(const validate_SFixed64Rules *msg) { return _upb_hasbit(msg, 1); }
|
1296
|
-
UPB_INLINE int64_t validate_SFixed64Rules_const(const validate_SFixed64Rules
|
1651
|
+
UPB_INLINE int64_t validate_SFixed64Rules_const(const validate_SFixed64Rules* msg) {
|
1652
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int64_t);
|
1653
|
+
}
|
1297
1654
|
UPB_INLINE bool validate_SFixed64Rules_has_lt(const validate_SFixed64Rules *msg) { return _upb_hasbit(msg, 2); }
|
1298
|
-
UPB_INLINE int64_t validate_SFixed64Rules_lt(const validate_SFixed64Rules
|
1655
|
+
UPB_INLINE int64_t validate_SFixed64Rules_lt(const validate_SFixed64Rules* msg) {
|
1656
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int64_t);
|
1657
|
+
}
|
1299
1658
|
UPB_INLINE bool validate_SFixed64Rules_has_lte(const validate_SFixed64Rules *msg) { return _upb_hasbit(msg, 3); }
|
1300
|
-
UPB_INLINE int64_t validate_SFixed64Rules_lte(const validate_SFixed64Rules
|
1659
|
+
UPB_INLINE int64_t validate_SFixed64Rules_lte(const validate_SFixed64Rules* msg) {
|
1660
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), int64_t);
|
1661
|
+
}
|
1301
1662
|
UPB_INLINE bool validate_SFixed64Rules_has_gt(const validate_SFixed64Rules *msg) { return _upb_hasbit(msg, 4); }
|
1302
|
-
UPB_INLINE int64_t validate_SFixed64Rules_gt(const validate_SFixed64Rules
|
1663
|
+
UPB_INLINE int64_t validate_SFixed64Rules_gt(const validate_SFixed64Rules* msg) {
|
1664
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), int64_t);
|
1665
|
+
}
|
1303
1666
|
UPB_INLINE bool validate_SFixed64Rules_has_gte(const validate_SFixed64Rules *msg) { return _upb_hasbit(msg, 5); }
|
1304
|
-
UPB_INLINE int64_t validate_SFixed64Rules_gte(const validate_SFixed64Rules
|
1305
|
-
|
1306
|
-
|
1667
|
+
UPB_INLINE int64_t validate_SFixed64Rules_gte(const validate_SFixed64Rules* msg) {
|
1668
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), int64_t);
|
1669
|
+
}
|
1670
|
+
UPB_INLINE int64_t const* validate_SFixed64Rules_in(const validate_SFixed64Rules *msg, size_t *len) { return (int64_t const*)_upb_array_accessor(msg, UPB_SIZE(52, 56), len); }
|
1671
|
+
UPB_INLINE int64_t const* validate_SFixed64Rules_not_in(const validate_SFixed64Rules *msg, size_t *len) { return (int64_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 64), len); }
|
1672
|
+
UPB_INLINE bool validate_SFixed64Rules_has_ignore_empty(const validate_SFixed64Rules *msg) { return _upb_hasbit(msg, 6); }
|
1673
|
+
UPB_INLINE bool validate_SFixed64Rules_ignore_empty(const validate_SFixed64Rules* msg) {
|
1674
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool);
|
1675
|
+
}
|
1307
1676
|
|
1308
1677
|
UPB_INLINE void validate_SFixed64Rules_set_const(validate_SFixed64Rules *msg, int64_t value) {
|
1309
1678
|
_upb_sethas(msg, 1);
|
@@ -1326,48 +1695,65 @@ UPB_INLINE void validate_SFixed64Rules_set_gte(validate_SFixed64Rules *msg, int6
|
|
1326
1695
|
*UPB_PTR_AT(msg, UPB_SIZE(40, 40), int64_t) = value;
|
1327
1696
|
}
|
1328
1697
|
UPB_INLINE int64_t* validate_SFixed64Rules_mutable_in(validate_SFixed64Rules *msg, size_t *len) {
|
1329
|
-
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1698
|
+
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 56), len);
|
1330
1699
|
}
|
1331
|
-
UPB_INLINE int64_t* validate_SFixed64Rules_resize_in(validate_SFixed64Rules *msg, size_t len,
|
1332
|
-
return (int64_t*)
|
1700
|
+
UPB_INLINE int64_t* validate_SFixed64Rules_resize_in(validate_SFixed64Rules *msg, size_t len, upb_Arena *arena) {
|
1701
|
+
return (int64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(52, 56), len, 3, arena);
|
1333
1702
|
}
|
1334
|
-
UPB_INLINE bool validate_SFixed64Rules_add_in(validate_SFixed64Rules *msg, int64_t val,
|
1335
|
-
return
|
1703
|
+
UPB_INLINE bool validate_SFixed64Rules_add_in(validate_SFixed64Rules *msg, int64_t val, upb_Arena *arena) {
|
1704
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(52, 56), 3, &val,
|
1336
1705
|
arena);
|
1337
1706
|
}
|
1338
1707
|
UPB_INLINE int64_t* validate_SFixed64Rules_mutable_not_in(validate_SFixed64Rules *msg, size_t *len) {
|
1339
|
-
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(
|
1708
|
+
return (int64_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 64), len);
|
1340
1709
|
}
|
1341
|
-
UPB_INLINE int64_t* validate_SFixed64Rules_resize_not_in(validate_SFixed64Rules *msg, size_t len,
|
1342
|
-
return (int64_t*)
|
1710
|
+
UPB_INLINE int64_t* validate_SFixed64Rules_resize_not_in(validate_SFixed64Rules *msg, size_t len, upb_Arena *arena) {
|
1711
|
+
return (int64_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(56, 64), len, 3, arena);
|
1343
1712
|
}
|
1344
|
-
UPB_INLINE bool validate_SFixed64Rules_add_not_in(validate_SFixed64Rules *msg, int64_t val,
|
1345
|
-
return
|
1713
|
+
UPB_INLINE bool validate_SFixed64Rules_add_not_in(validate_SFixed64Rules *msg, int64_t val, upb_Arena *arena) {
|
1714
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(56, 64), 3, &val,
|
1346
1715
|
arena);
|
1347
1716
|
}
|
1717
|
+
UPB_INLINE void validate_SFixed64Rules_set_ignore_empty(validate_SFixed64Rules *msg, bool value) {
|
1718
|
+
_upb_sethas(msg, 6);
|
1719
|
+
*UPB_PTR_AT(msg, UPB_SIZE(48, 48), bool) = value;
|
1720
|
+
}
|
1348
1721
|
|
1349
1722
|
/* validate.BoolRules */
|
1350
1723
|
|
1351
|
-
UPB_INLINE validate_BoolRules
|
1352
|
-
return (validate_BoolRules
|
1724
|
+
UPB_INLINE validate_BoolRules* validate_BoolRules_new(upb_Arena* arena) {
|
1725
|
+
return (validate_BoolRules*)_upb_Message_New(&validate_BoolRules_msginit, arena);
|
1353
1726
|
}
|
1354
|
-
UPB_INLINE validate_BoolRules
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1727
|
+
UPB_INLINE validate_BoolRules* validate_BoolRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1728
|
+
validate_BoolRules* ret = validate_BoolRules_new(arena);
|
1729
|
+
if (!ret) return NULL;
|
1730
|
+
if (upb_Decode(buf, size, ret, &validate_BoolRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1731
|
+
return NULL;
|
1732
|
+
}
|
1733
|
+
return ret;
|
1734
|
+
}
|
1735
|
+
UPB_INLINE validate_BoolRules* validate_BoolRules_parse_ex(const char* buf, size_t size,
|
1736
|
+
const upb_ExtensionRegistry* extreg,
|
1737
|
+
int options, upb_Arena* arena) {
|
1738
|
+
validate_BoolRules* ret = validate_BoolRules_new(arena);
|
1739
|
+
if (!ret) return NULL;
|
1740
|
+
if (upb_Decode(buf, size, ret, &validate_BoolRules_msginit, extreg, options, arena) !=
|
1741
|
+
kUpb_DecodeStatus_Ok) {
|
1742
|
+
return NULL;
|
1743
|
+
}
|
1744
|
+
return ret;
|
1358
1745
|
}
|
1359
|
-
UPB_INLINE
|
1360
|
-
|
1361
|
-
validate_BoolRules *ret = validate_BoolRules_new(arena);
|
1362
|
-
return (ret && _upb_decode(buf, size, ret, &validate_BoolRules_msginit, arena, options))
|
1363
|
-
? ret : NULL;
|
1746
|
+
UPB_INLINE char* validate_BoolRules_serialize(const validate_BoolRules* msg, upb_Arena* arena, size_t* len) {
|
1747
|
+
return upb_Encode(msg, &validate_BoolRules_msginit, 0, arena, len);
|
1364
1748
|
}
|
1365
|
-
UPB_INLINE char
|
1366
|
-
|
1749
|
+
UPB_INLINE char* validate_BoolRules_serialize_ex(const validate_BoolRules* msg, int options,
|
1750
|
+
upb_Arena* arena, size_t* len) {
|
1751
|
+
return upb_Encode(msg, &validate_BoolRules_msginit, options, arena, len);
|
1367
1752
|
}
|
1368
|
-
|
1369
1753
|
UPB_INLINE bool validate_BoolRules_has_const(const validate_BoolRules *msg) { return _upb_hasbit(msg, 1); }
|
1370
|
-
UPB_INLINE bool validate_BoolRules_const(const validate_BoolRules
|
1754
|
+
UPB_INLINE bool validate_BoolRules_const(const validate_BoolRules* msg) {
|
1755
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool);
|
1756
|
+
}
|
1371
1757
|
|
1372
1758
|
UPB_INLINE void validate_BoolRules_set_const(validate_BoolRules *msg, bool value) {
|
1373
1759
|
_upb_sethas(msg, 1);
|
@@ -1376,24 +1762,35 @@ UPB_INLINE void validate_BoolRules_set_const(validate_BoolRules *msg, bool value
|
|
1376
1762
|
|
1377
1763
|
/* validate.StringRules */
|
1378
1764
|
|
1379
|
-
UPB_INLINE validate_StringRules
|
1380
|
-
return (validate_StringRules
|
1765
|
+
UPB_INLINE validate_StringRules* validate_StringRules_new(upb_Arena* arena) {
|
1766
|
+
return (validate_StringRules*)_upb_Message_New(&validate_StringRules_msginit, arena);
|
1381
1767
|
}
|
1382
|
-
UPB_INLINE validate_StringRules
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1768
|
+
UPB_INLINE validate_StringRules* validate_StringRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1769
|
+
validate_StringRules* ret = validate_StringRules_new(arena);
|
1770
|
+
if (!ret) return NULL;
|
1771
|
+
if (upb_Decode(buf, size, ret, &validate_StringRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
1772
|
+
return NULL;
|
1773
|
+
}
|
1774
|
+
return ret;
|
1775
|
+
}
|
1776
|
+
UPB_INLINE validate_StringRules* validate_StringRules_parse_ex(const char* buf, size_t size,
|
1777
|
+
const upb_ExtensionRegistry* extreg,
|
1778
|
+
int options, upb_Arena* arena) {
|
1779
|
+
validate_StringRules* ret = validate_StringRules_new(arena);
|
1780
|
+
if (!ret) return NULL;
|
1781
|
+
if (upb_Decode(buf, size, ret, &validate_StringRules_msginit, extreg, options, arena) !=
|
1782
|
+
kUpb_DecodeStatus_Ok) {
|
1783
|
+
return NULL;
|
1784
|
+
}
|
1785
|
+
return ret;
|
1386
1786
|
}
|
1387
|
-
UPB_INLINE
|
1388
|
-
|
1389
|
-
validate_StringRules *ret = validate_StringRules_new(arena);
|
1390
|
-
return (ret && _upb_decode(buf, size, ret, &validate_StringRules_msginit, arena, options))
|
1391
|
-
? ret : NULL;
|
1787
|
+
UPB_INLINE char* validate_StringRules_serialize(const validate_StringRules* msg, upb_Arena* arena, size_t* len) {
|
1788
|
+
return upb_Encode(msg, &validate_StringRules_msginit, 0, arena, len);
|
1392
1789
|
}
|
1393
|
-
UPB_INLINE char
|
1394
|
-
|
1790
|
+
UPB_INLINE char* validate_StringRules_serialize_ex(const validate_StringRules* msg, int options,
|
1791
|
+
upb_Arena* arena, size_t* len) {
|
1792
|
+
return upb_Encode(msg, &validate_StringRules_msginit, options, arena, len);
|
1395
1793
|
}
|
1396
|
-
|
1397
1794
|
typedef enum {
|
1398
1795
|
validate_StringRules_well_known_email = 12,
|
1399
1796
|
validate_StringRules_well_known_hostname = 13,
|
@@ -1410,25 +1807,43 @@ typedef enum {
|
|
1410
1807
|
UPB_INLINE validate_StringRules_well_known_oneofcases validate_StringRules_well_known_case(const validate_StringRules* msg) { return (validate_StringRules_well_known_oneofcases)*UPB_PTR_AT(msg, UPB_SIZE(120, 180), int32_t); }
|
1411
1808
|
|
1412
1809
|
UPB_INLINE bool validate_StringRules_has_const(const validate_StringRules *msg) { return _upb_hasbit(msg, 1); }
|
1413
|
-
UPB_INLINE
|
1810
|
+
UPB_INLINE upb_StringView validate_StringRules_const(const validate_StringRules* msg) {
|
1811
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(60, 64), upb_StringView);
|
1812
|
+
}
|
1414
1813
|
UPB_INLINE bool validate_StringRules_has_min_len(const validate_StringRules *msg) { return _upb_hasbit(msg, 2); }
|
1415
|
-
UPB_INLINE uint64_t validate_StringRules_min_len(const validate_StringRules
|
1814
|
+
UPB_INLINE uint64_t validate_StringRules_min_len(const validate_StringRules* msg) {
|
1815
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t);
|
1816
|
+
}
|
1416
1817
|
UPB_INLINE bool validate_StringRules_has_max_len(const validate_StringRules *msg) { return _upb_hasbit(msg, 3); }
|
1417
|
-
UPB_INLINE uint64_t validate_StringRules_max_len(const validate_StringRules
|
1818
|
+
UPB_INLINE uint64_t validate_StringRules_max_len(const validate_StringRules* msg) {
|
1819
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t);
|
1820
|
+
}
|
1418
1821
|
UPB_INLINE bool validate_StringRules_has_min_bytes(const validate_StringRules *msg) { return _upb_hasbit(msg, 4); }
|
1419
|
-
UPB_INLINE uint64_t validate_StringRules_min_bytes(const validate_StringRules
|
1822
|
+
UPB_INLINE uint64_t validate_StringRules_min_bytes(const validate_StringRules* msg) {
|
1823
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), uint64_t);
|
1824
|
+
}
|
1420
1825
|
UPB_INLINE bool validate_StringRules_has_max_bytes(const validate_StringRules *msg) { return _upb_hasbit(msg, 5); }
|
1421
|
-
UPB_INLINE uint64_t validate_StringRules_max_bytes(const validate_StringRules
|
1826
|
+
UPB_INLINE uint64_t validate_StringRules_max_bytes(const validate_StringRules* msg) {
|
1827
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), uint64_t);
|
1828
|
+
}
|
1422
1829
|
UPB_INLINE bool validate_StringRules_has_pattern(const validate_StringRules *msg) { return _upb_hasbit(msg, 6); }
|
1423
|
-
UPB_INLINE
|
1830
|
+
UPB_INLINE upb_StringView validate_StringRules_pattern(const validate_StringRules* msg) {
|
1831
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(68, 80), upb_StringView);
|
1832
|
+
}
|
1424
1833
|
UPB_INLINE bool validate_StringRules_has_prefix(const validate_StringRules *msg) { return _upb_hasbit(msg, 7); }
|
1425
|
-
UPB_INLINE
|
1834
|
+
UPB_INLINE upb_StringView validate_StringRules_prefix(const validate_StringRules* msg) {
|
1835
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(76, 96), upb_StringView);
|
1836
|
+
}
|
1426
1837
|
UPB_INLINE bool validate_StringRules_has_suffix(const validate_StringRules *msg) { return _upb_hasbit(msg, 8); }
|
1427
|
-
UPB_INLINE
|
1838
|
+
UPB_INLINE upb_StringView validate_StringRules_suffix(const validate_StringRules* msg) {
|
1839
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(84, 112), upb_StringView);
|
1840
|
+
}
|
1428
1841
|
UPB_INLINE bool validate_StringRules_has_contains(const validate_StringRules *msg) { return _upb_hasbit(msg, 9); }
|
1429
|
-
UPB_INLINE
|
1430
|
-
|
1431
|
-
|
1842
|
+
UPB_INLINE upb_StringView validate_StringRules_contains(const validate_StringRules* msg) {
|
1843
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(92, 128), upb_StringView);
|
1844
|
+
}
|
1845
|
+
UPB_INLINE upb_StringView const* validate_StringRules_in(const validate_StringRules *msg, size_t *len) { return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(108, 160), len); }
|
1846
|
+
UPB_INLINE upb_StringView const* validate_StringRules_not_in(const validate_StringRules *msg, size_t *len) { return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(112, 168), len); }
|
1432
1847
|
UPB_INLINE bool validate_StringRules_has_email(const validate_StringRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(120, 180)) == 12; }
|
1433
1848
|
UPB_INLINE bool validate_StringRules_email(const validate_StringRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(116, 176), UPB_SIZE(120, 180), 12, false); }
|
1434
1849
|
UPB_INLINE bool validate_StringRules_has_hostname(const validate_StringRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(120, 180)) == 13; }
|
@@ -1444,23 +1859,35 @@ UPB_INLINE bool validate_StringRules_uri(const validate_StringRules *msg) { retu
|
|
1444
1859
|
UPB_INLINE bool validate_StringRules_has_uri_ref(const validate_StringRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(120, 180)) == 18; }
|
1445
1860
|
UPB_INLINE bool validate_StringRules_uri_ref(const validate_StringRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(116, 176), UPB_SIZE(120, 180), 18, false); }
|
1446
1861
|
UPB_INLINE bool validate_StringRules_has_len(const validate_StringRules *msg) { return _upb_hasbit(msg, 10); }
|
1447
|
-
UPB_INLINE uint64_t validate_StringRules_len(const validate_StringRules
|
1862
|
+
UPB_INLINE uint64_t validate_StringRules_len(const validate_StringRules* msg) {
|
1863
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(40, 40), uint64_t);
|
1864
|
+
}
|
1448
1865
|
UPB_INLINE bool validate_StringRules_has_len_bytes(const validate_StringRules *msg) { return _upb_hasbit(msg, 11); }
|
1449
|
-
UPB_INLINE uint64_t validate_StringRules_len_bytes(const validate_StringRules
|
1866
|
+
UPB_INLINE uint64_t validate_StringRules_len_bytes(const validate_StringRules* msg) {
|
1867
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(48, 48), uint64_t);
|
1868
|
+
}
|
1450
1869
|
UPB_INLINE bool validate_StringRules_has_address(const validate_StringRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(120, 180)) == 21; }
|
1451
1870
|
UPB_INLINE bool validate_StringRules_address(const validate_StringRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(116, 176), UPB_SIZE(120, 180), 21, false); }
|
1452
1871
|
UPB_INLINE bool validate_StringRules_has_uuid(const validate_StringRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(120, 180)) == 22; }
|
1453
1872
|
UPB_INLINE bool validate_StringRules_uuid(const validate_StringRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(116, 176), UPB_SIZE(120, 180), 22, false); }
|
1454
1873
|
UPB_INLINE bool validate_StringRules_has_not_contains(const validate_StringRules *msg) { return _upb_hasbit(msg, 12); }
|
1455
|
-
UPB_INLINE
|
1874
|
+
UPB_INLINE upb_StringView validate_StringRules_not_contains(const validate_StringRules* msg) {
|
1875
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(100, 144), upb_StringView);
|
1876
|
+
}
|
1456
1877
|
UPB_INLINE bool validate_StringRules_has_well_known_regex(const validate_StringRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(120, 180)) == 24; }
|
1457
1878
|
UPB_INLINE int32_t validate_StringRules_well_known_regex(const validate_StringRules *msg) { return UPB_READ_ONEOF(msg, int32_t, UPB_SIZE(116, 176), UPB_SIZE(120, 180), 24, 0); }
|
1458
1879
|
UPB_INLINE bool validate_StringRules_has_strict(const validate_StringRules *msg) { return _upb_hasbit(msg, 13); }
|
1459
|
-
UPB_INLINE bool validate_StringRules_strict(const validate_StringRules
|
1880
|
+
UPB_INLINE bool validate_StringRules_strict(const validate_StringRules* msg) {
|
1881
|
+
return validate_StringRules_has_strict(msg) ? *UPB_PTR_AT(msg, UPB_SIZE(56, 56), bool) : true;
|
1882
|
+
}
|
1883
|
+
UPB_INLINE bool validate_StringRules_has_ignore_empty(const validate_StringRules *msg) { return _upb_hasbit(msg, 14); }
|
1884
|
+
UPB_INLINE bool validate_StringRules_ignore_empty(const validate_StringRules* msg) {
|
1885
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(57, 57), bool);
|
1886
|
+
}
|
1460
1887
|
|
1461
|
-
UPB_INLINE void validate_StringRules_set_const(validate_StringRules *msg,
|
1888
|
+
UPB_INLINE void validate_StringRules_set_const(validate_StringRules *msg, upb_StringView value) {
|
1462
1889
|
_upb_sethas(msg, 1);
|
1463
|
-
*UPB_PTR_AT(msg, UPB_SIZE(60, 64),
|
1890
|
+
*UPB_PTR_AT(msg, UPB_SIZE(60, 64), upb_StringView) = value;
|
1464
1891
|
}
|
1465
1892
|
UPB_INLINE void validate_StringRules_set_min_len(validate_StringRules *msg, uint64_t value) {
|
1466
1893
|
_upb_sethas(msg, 2);
|
@@ -1478,40 +1905,40 @@ UPB_INLINE void validate_StringRules_set_max_bytes(validate_StringRules *msg, ui
|
|
1478
1905
|
_upb_sethas(msg, 5);
|
1479
1906
|
*UPB_PTR_AT(msg, UPB_SIZE(32, 32), uint64_t) = value;
|
1480
1907
|
}
|
1481
|
-
UPB_INLINE void validate_StringRules_set_pattern(validate_StringRules *msg,
|
1908
|
+
UPB_INLINE void validate_StringRules_set_pattern(validate_StringRules *msg, upb_StringView value) {
|
1482
1909
|
_upb_sethas(msg, 6);
|
1483
|
-
*UPB_PTR_AT(msg, UPB_SIZE(68, 80),
|
1910
|
+
*UPB_PTR_AT(msg, UPB_SIZE(68, 80), upb_StringView) = value;
|
1484
1911
|
}
|
1485
|
-
UPB_INLINE void validate_StringRules_set_prefix(validate_StringRules *msg,
|
1912
|
+
UPB_INLINE void validate_StringRules_set_prefix(validate_StringRules *msg, upb_StringView value) {
|
1486
1913
|
_upb_sethas(msg, 7);
|
1487
|
-
*UPB_PTR_AT(msg, UPB_SIZE(76, 96),
|
1914
|
+
*UPB_PTR_AT(msg, UPB_SIZE(76, 96), upb_StringView) = value;
|
1488
1915
|
}
|
1489
|
-
UPB_INLINE void validate_StringRules_set_suffix(validate_StringRules *msg,
|
1916
|
+
UPB_INLINE void validate_StringRules_set_suffix(validate_StringRules *msg, upb_StringView value) {
|
1490
1917
|
_upb_sethas(msg, 8);
|
1491
|
-
*UPB_PTR_AT(msg, UPB_SIZE(84, 112),
|
1918
|
+
*UPB_PTR_AT(msg, UPB_SIZE(84, 112), upb_StringView) = value;
|
1492
1919
|
}
|
1493
|
-
UPB_INLINE void validate_StringRules_set_contains(validate_StringRules *msg,
|
1920
|
+
UPB_INLINE void validate_StringRules_set_contains(validate_StringRules *msg, upb_StringView value) {
|
1494
1921
|
_upb_sethas(msg, 9);
|
1495
|
-
*UPB_PTR_AT(msg, UPB_SIZE(92, 128),
|
1922
|
+
*UPB_PTR_AT(msg, UPB_SIZE(92, 128), upb_StringView) = value;
|
1496
1923
|
}
|
1497
|
-
UPB_INLINE
|
1498
|
-
return (
|
1924
|
+
UPB_INLINE upb_StringView* validate_StringRules_mutable_in(validate_StringRules *msg, size_t *len) {
|
1925
|
+
return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(108, 160), len);
|
1499
1926
|
}
|
1500
|
-
UPB_INLINE
|
1501
|
-
return (
|
1927
|
+
UPB_INLINE upb_StringView* validate_StringRules_resize_in(validate_StringRules *msg, size_t len, upb_Arena *arena) {
|
1928
|
+
return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(108, 160), len, UPB_SIZE(3, 4), arena);
|
1502
1929
|
}
|
1503
|
-
UPB_INLINE bool validate_StringRules_add_in(validate_StringRules *msg,
|
1504
|
-
return
|
1930
|
+
UPB_INLINE bool validate_StringRules_add_in(validate_StringRules *msg, upb_StringView val, upb_Arena *arena) {
|
1931
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(108, 160), UPB_SIZE(3, 4), &val,
|
1505
1932
|
arena);
|
1506
1933
|
}
|
1507
|
-
UPB_INLINE
|
1508
|
-
return (
|
1934
|
+
UPB_INLINE upb_StringView* validate_StringRules_mutable_not_in(validate_StringRules *msg, size_t *len) {
|
1935
|
+
return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(112, 168), len);
|
1509
1936
|
}
|
1510
|
-
UPB_INLINE
|
1511
|
-
return (
|
1937
|
+
UPB_INLINE upb_StringView* validate_StringRules_resize_not_in(validate_StringRules *msg, size_t len, upb_Arena *arena) {
|
1938
|
+
return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(112, 168), len, UPB_SIZE(3, 4), arena);
|
1512
1939
|
}
|
1513
|
-
UPB_INLINE bool validate_StringRules_add_not_in(validate_StringRules *msg,
|
1514
|
-
return
|
1940
|
+
UPB_INLINE bool validate_StringRules_add_not_in(validate_StringRules *msg, upb_StringView val, upb_Arena *arena) {
|
1941
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(112, 168), UPB_SIZE(3, 4), &val,
|
1515
1942
|
arena);
|
1516
1943
|
}
|
1517
1944
|
UPB_INLINE void validate_StringRules_set_email(validate_StringRules *msg, bool value) {
|
@@ -1549,9 +1976,9 @@ UPB_INLINE void validate_StringRules_set_address(validate_StringRules *msg, bool
|
|
1549
1976
|
UPB_INLINE void validate_StringRules_set_uuid(validate_StringRules *msg, bool value) {
|
1550
1977
|
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(116, 176), value, UPB_SIZE(120, 180), 22);
|
1551
1978
|
}
|
1552
|
-
UPB_INLINE void validate_StringRules_set_not_contains(validate_StringRules *msg,
|
1979
|
+
UPB_INLINE void validate_StringRules_set_not_contains(validate_StringRules *msg, upb_StringView value) {
|
1553
1980
|
_upb_sethas(msg, 12);
|
1554
|
-
*UPB_PTR_AT(msg, UPB_SIZE(100, 144),
|
1981
|
+
*UPB_PTR_AT(msg, UPB_SIZE(100, 144), upb_StringView) = value;
|
1555
1982
|
}
|
1556
1983
|
UPB_INLINE void validate_StringRules_set_well_known_regex(validate_StringRules *msg, int32_t value) {
|
1557
1984
|
UPB_WRITE_ONEOF(msg, int32_t, UPB_SIZE(116, 176), value, UPB_SIZE(120, 180), 24);
|
@@ -1560,63 +1987,98 @@ UPB_INLINE void validate_StringRules_set_strict(validate_StringRules *msg, bool
|
|
1560
1987
|
_upb_sethas(msg, 13);
|
1561
1988
|
*UPB_PTR_AT(msg, UPB_SIZE(56, 56), bool) = value;
|
1562
1989
|
}
|
1990
|
+
UPB_INLINE void validate_StringRules_set_ignore_empty(validate_StringRules *msg, bool value) {
|
1991
|
+
_upb_sethas(msg, 14);
|
1992
|
+
*UPB_PTR_AT(msg, UPB_SIZE(57, 57), bool) = value;
|
1993
|
+
}
|
1563
1994
|
|
1564
1995
|
/* validate.BytesRules */
|
1565
1996
|
|
1566
|
-
UPB_INLINE validate_BytesRules
|
1567
|
-
return (validate_BytesRules
|
1997
|
+
UPB_INLINE validate_BytesRules* validate_BytesRules_new(upb_Arena* arena) {
|
1998
|
+
return (validate_BytesRules*)_upb_Message_New(&validate_BytesRules_msginit, arena);
|
1568
1999
|
}
|
1569
|
-
UPB_INLINE validate_BytesRules
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
2000
|
+
UPB_INLINE validate_BytesRules* validate_BytesRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2001
|
+
validate_BytesRules* ret = validate_BytesRules_new(arena);
|
2002
|
+
if (!ret) return NULL;
|
2003
|
+
if (upb_Decode(buf, size, ret, &validate_BytesRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2004
|
+
return NULL;
|
2005
|
+
}
|
2006
|
+
return ret;
|
2007
|
+
}
|
2008
|
+
UPB_INLINE validate_BytesRules* validate_BytesRules_parse_ex(const char* buf, size_t size,
|
2009
|
+
const upb_ExtensionRegistry* extreg,
|
2010
|
+
int options, upb_Arena* arena) {
|
2011
|
+
validate_BytesRules* ret = validate_BytesRules_new(arena);
|
2012
|
+
if (!ret) return NULL;
|
2013
|
+
if (upb_Decode(buf, size, ret, &validate_BytesRules_msginit, extreg, options, arena) !=
|
2014
|
+
kUpb_DecodeStatus_Ok) {
|
2015
|
+
return NULL;
|
2016
|
+
}
|
2017
|
+
return ret;
|
1573
2018
|
}
|
1574
|
-
UPB_INLINE
|
1575
|
-
|
1576
|
-
validate_BytesRules *ret = validate_BytesRules_new(arena);
|
1577
|
-
return (ret && _upb_decode(buf, size, ret, &validate_BytesRules_msginit, arena, options))
|
1578
|
-
? ret : NULL;
|
2019
|
+
UPB_INLINE char* validate_BytesRules_serialize(const validate_BytesRules* msg, upb_Arena* arena, size_t* len) {
|
2020
|
+
return upb_Encode(msg, &validate_BytesRules_msginit, 0, arena, len);
|
1579
2021
|
}
|
1580
|
-
UPB_INLINE char
|
1581
|
-
|
2022
|
+
UPB_INLINE char* validate_BytesRules_serialize_ex(const validate_BytesRules* msg, int options,
|
2023
|
+
upb_Arena* arena, size_t* len) {
|
2024
|
+
return upb_Encode(msg, &validate_BytesRules_msginit, options, arena, len);
|
1582
2025
|
}
|
1583
|
-
|
1584
2026
|
typedef enum {
|
1585
2027
|
validate_BytesRules_well_known_ip = 10,
|
1586
2028
|
validate_BytesRules_well_known_ipv4 = 11,
|
1587
2029
|
validate_BytesRules_well_known_ipv6 = 12,
|
1588
2030
|
validate_BytesRules_well_known_NOT_SET = 0
|
1589
2031
|
} validate_BytesRules_well_known_oneofcases;
|
1590
|
-
UPB_INLINE validate_BytesRules_well_known_oneofcases validate_BytesRules_well_known_case(const validate_BytesRules* msg) { return (validate_BytesRules_well_known_oneofcases)*UPB_PTR_AT(msg, UPB_SIZE(
|
2032
|
+
UPB_INLINE validate_BytesRules_well_known_oneofcases validate_BytesRules_well_known_case(const validate_BytesRules* msg) { return (validate_BytesRules_well_known_oneofcases)*UPB_PTR_AT(msg, UPB_SIZE(88, 140), int32_t); }
|
1591
2033
|
|
1592
2034
|
UPB_INLINE bool validate_BytesRules_has_const(const validate_BytesRules *msg) { return _upb_hasbit(msg, 1); }
|
1593
|
-
UPB_INLINE
|
2035
|
+
UPB_INLINE upb_StringView validate_BytesRules_const(const validate_BytesRules* msg) {
|
2036
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(36, 40), upb_StringView);
|
2037
|
+
}
|
1594
2038
|
UPB_INLINE bool validate_BytesRules_has_min_len(const validate_BytesRules *msg) { return _upb_hasbit(msg, 2); }
|
1595
|
-
UPB_INLINE uint64_t validate_BytesRules_min_len(const validate_BytesRules
|
2039
|
+
UPB_INLINE uint64_t validate_BytesRules_min_len(const validate_BytesRules* msg) {
|
2040
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t);
|
2041
|
+
}
|
1596
2042
|
UPB_INLINE bool validate_BytesRules_has_max_len(const validate_BytesRules *msg) { return _upb_hasbit(msg, 3); }
|
1597
|
-
UPB_INLINE uint64_t validate_BytesRules_max_len(const validate_BytesRules
|
2043
|
+
UPB_INLINE uint64_t validate_BytesRules_max_len(const validate_BytesRules* msg) {
|
2044
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t);
|
2045
|
+
}
|
1598
2046
|
UPB_INLINE bool validate_BytesRules_has_pattern(const validate_BytesRules *msg) { return _upb_hasbit(msg, 4); }
|
1599
|
-
UPB_INLINE
|
2047
|
+
UPB_INLINE upb_StringView validate_BytesRules_pattern(const validate_BytesRules* msg) {
|
2048
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(44, 56), upb_StringView);
|
2049
|
+
}
|
1600
2050
|
UPB_INLINE bool validate_BytesRules_has_prefix(const validate_BytesRules *msg) { return _upb_hasbit(msg, 5); }
|
1601
|
-
UPB_INLINE
|
2051
|
+
UPB_INLINE upb_StringView validate_BytesRules_prefix(const validate_BytesRules* msg) {
|
2052
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(52, 72), upb_StringView);
|
2053
|
+
}
|
1602
2054
|
UPB_INLINE bool validate_BytesRules_has_suffix(const validate_BytesRules *msg) { return _upb_hasbit(msg, 6); }
|
1603
|
-
UPB_INLINE
|
2055
|
+
UPB_INLINE upb_StringView validate_BytesRules_suffix(const validate_BytesRules* msg) {
|
2056
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(60, 88), upb_StringView);
|
2057
|
+
}
|
1604
2058
|
UPB_INLINE bool validate_BytesRules_has_contains(const validate_BytesRules *msg) { return _upb_hasbit(msg, 7); }
|
1605
|
-
UPB_INLINE
|
1606
|
-
|
1607
|
-
|
1608
|
-
UPB_INLINE
|
1609
|
-
UPB_INLINE
|
1610
|
-
UPB_INLINE bool
|
1611
|
-
UPB_INLINE bool
|
1612
|
-
UPB_INLINE bool
|
1613
|
-
UPB_INLINE bool
|
2059
|
+
UPB_INLINE upb_StringView validate_BytesRules_contains(const validate_BytesRules* msg) {
|
2060
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(68, 104), upb_StringView);
|
2061
|
+
}
|
2062
|
+
UPB_INLINE upb_StringView const* validate_BytesRules_in(const validate_BytesRules *msg, size_t *len) { return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(76, 120), len); }
|
2063
|
+
UPB_INLINE upb_StringView const* validate_BytesRules_not_in(const validate_BytesRules *msg, size_t *len) { return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(80, 128), len); }
|
2064
|
+
UPB_INLINE bool validate_BytesRules_has_ip(const validate_BytesRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(88, 140)) == 10; }
|
2065
|
+
UPB_INLINE bool validate_BytesRules_ip(const validate_BytesRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(84, 136), UPB_SIZE(88, 140), 10, false); }
|
2066
|
+
UPB_INLINE bool validate_BytesRules_has_ipv4(const validate_BytesRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(88, 140)) == 11; }
|
2067
|
+
UPB_INLINE bool validate_BytesRules_ipv4(const validate_BytesRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(84, 136), UPB_SIZE(88, 140), 11, false); }
|
2068
|
+
UPB_INLINE bool validate_BytesRules_has_ipv6(const validate_BytesRules *msg) { return _upb_getoneofcase(msg, UPB_SIZE(88, 140)) == 12; }
|
2069
|
+
UPB_INLINE bool validate_BytesRules_ipv6(const validate_BytesRules *msg) { return UPB_READ_ONEOF(msg, bool, UPB_SIZE(84, 136), UPB_SIZE(88, 140), 12, false); }
|
1614
2070
|
UPB_INLINE bool validate_BytesRules_has_len(const validate_BytesRules *msg) { return _upb_hasbit(msg, 8); }
|
1615
|
-
UPB_INLINE uint64_t validate_BytesRules_len(const validate_BytesRules
|
2071
|
+
UPB_INLINE uint64_t validate_BytesRules_len(const validate_BytesRules* msg) {
|
2072
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), uint64_t);
|
2073
|
+
}
|
2074
|
+
UPB_INLINE bool validate_BytesRules_has_ignore_empty(const validate_BytesRules *msg) { return _upb_hasbit(msg, 9); }
|
2075
|
+
UPB_INLINE bool validate_BytesRules_ignore_empty(const validate_BytesRules* msg) {
|
2076
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), bool);
|
2077
|
+
}
|
1616
2078
|
|
1617
|
-
UPB_INLINE void validate_BytesRules_set_const(validate_BytesRules *msg,
|
2079
|
+
UPB_INLINE void validate_BytesRules_set_const(validate_BytesRules *msg, upb_StringView value) {
|
1618
2080
|
_upb_sethas(msg, 1);
|
1619
|
-
*UPB_PTR_AT(msg, UPB_SIZE(
|
2081
|
+
*UPB_PTR_AT(msg, UPB_SIZE(36, 40), upb_StringView) = value;
|
1620
2082
|
}
|
1621
2083
|
UPB_INLINE void validate_BytesRules_set_min_len(validate_BytesRules *msg, uint64_t value) {
|
1622
2084
|
_upb_sethas(msg, 2);
|
@@ -1626,80 +2088,99 @@ UPB_INLINE void validate_BytesRules_set_max_len(validate_BytesRules *msg, uint64
|
|
1626
2088
|
_upb_sethas(msg, 3);
|
1627
2089
|
*UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t) = value;
|
1628
2090
|
}
|
1629
|
-
UPB_INLINE void validate_BytesRules_set_pattern(validate_BytesRules *msg,
|
2091
|
+
UPB_INLINE void validate_BytesRules_set_pattern(validate_BytesRules *msg, upb_StringView value) {
|
1630
2092
|
_upb_sethas(msg, 4);
|
1631
|
-
*UPB_PTR_AT(msg, UPB_SIZE(
|
2093
|
+
*UPB_PTR_AT(msg, UPB_SIZE(44, 56), upb_StringView) = value;
|
1632
2094
|
}
|
1633
|
-
UPB_INLINE void validate_BytesRules_set_prefix(validate_BytesRules *msg,
|
2095
|
+
UPB_INLINE void validate_BytesRules_set_prefix(validate_BytesRules *msg, upb_StringView value) {
|
1634
2096
|
_upb_sethas(msg, 5);
|
1635
|
-
*UPB_PTR_AT(msg, UPB_SIZE(
|
2097
|
+
*UPB_PTR_AT(msg, UPB_SIZE(52, 72), upb_StringView) = value;
|
1636
2098
|
}
|
1637
|
-
UPB_INLINE void validate_BytesRules_set_suffix(validate_BytesRules *msg,
|
2099
|
+
UPB_INLINE void validate_BytesRules_set_suffix(validate_BytesRules *msg, upb_StringView value) {
|
1638
2100
|
_upb_sethas(msg, 6);
|
1639
|
-
*UPB_PTR_AT(msg, UPB_SIZE(
|
2101
|
+
*UPB_PTR_AT(msg, UPB_SIZE(60, 88), upb_StringView) = value;
|
1640
2102
|
}
|
1641
|
-
UPB_INLINE void validate_BytesRules_set_contains(validate_BytesRules *msg,
|
2103
|
+
UPB_INLINE void validate_BytesRules_set_contains(validate_BytesRules *msg, upb_StringView value) {
|
1642
2104
|
_upb_sethas(msg, 7);
|
1643
|
-
*UPB_PTR_AT(msg, UPB_SIZE(
|
2105
|
+
*UPB_PTR_AT(msg, UPB_SIZE(68, 104), upb_StringView) = value;
|
1644
2106
|
}
|
1645
|
-
UPB_INLINE
|
1646
|
-
return (
|
2107
|
+
UPB_INLINE upb_StringView* validate_BytesRules_mutable_in(validate_BytesRules *msg, size_t *len) {
|
2108
|
+
return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(76, 120), len);
|
1647
2109
|
}
|
1648
|
-
UPB_INLINE
|
1649
|
-
return (
|
2110
|
+
UPB_INLINE upb_StringView* validate_BytesRules_resize_in(validate_BytesRules *msg, size_t len, upb_Arena *arena) {
|
2111
|
+
return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(76, 120), len, UPB_SIZE(3, 4), arena);
|
1650
2112
|
}
|
1651
|
-
UPB_INLINE bool validate_BytesRules_add_in(validate_BytesRules *msg,
|
1652
|
-
return
|
2113
|
+
UPB_INLINE bool validate_BytesRules_add_in(validate_BytesRules *msg, upb_StringView val, upb_Arena *arena) {
|
2114
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(76, 120), UPB_SIZE(3, 4), &val,
|
1653
2115
|
arena);
|
1654
2116
|
}
|
1655
|
-
UPB_INLINE
|
1656
|
-
return (
|
2117
|
+
UPB_INLINE upb_StringView* validate_BytesRules_mutable_not_in(validate_BytesRules *msg, size_t *len) {
|
2118
|
+
return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(80, 128), len);
|
1657
2119
|
}
|
1658
|
-
UPB_INLINE
|
1659
|
-
return (
|
2120
|
+
UPB_INLINE upb_StringView* validate_BytesRules_resize_not_in(validate_BytesRules *msg, size_t len, upb_Arena *arena) {
|
2121
|
+
return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(80, 128), len, UPB_SIZE(3, 4), arena);
|
1660
2122
|
}
|
1661
|
-
UPB_INLINE bool validate_BytesRules_add_not_in(validate_BytesRules *msg,
|
1662
|
-
return
|
2123
|
+
UPB_INLINE bool validate_BytesRules_add_not_in(validate_BytesRules *msg, upb_StringView val, upb_Arena *arena) {
|
2124
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(80, 128), UPB_SIZE(3, 4), &val,
|
1663
2125
|
arena);
|
1664
2126
|
}
|
1665
2127
|
UPB_INLINE void validate_BytesRules_set_ip(validate_BytesRules *msg, bool value) {
|
1666
|
-
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(
|
2128
|
+
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(84, 136), value, UPB_SIZE(88, 140), 10);
|
1667
2129
|
}
|
1668
2130
|
UPB_INLINE void validate_BytesRules_set_ipv4(validate_BytesRules *msg, bool value) {
|
1669
|
-
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(
|
2131
|
+
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(84, 136), value, UPB_SIZE(88, 140), 11);
|
1670
2132
|
}
|
1671
2133
|
UPB_INLINE void validate_BytesRules_set_ipv6(validate_BytesRules *msg, bool value) {
|
1672
|
-
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(
|
2134
|
+
UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(84, 136), value, UPB_SIZE(88, 140), 12);
|
1673
2135
|
}
|
1674
2136
|
UPB_INLINE void validate_BytesRules_set_len(validate_BytesRules *msg, uint64_t value) {
|
1675
2137
|
_upb_sethas(msg, 8);
|
1676
2138
|
*UPB_PTR_AT(msg, UPB_SIZE(24, 24), uint64_t) = value;
|
1677
2139
|
}
|
2140
|
+
UPB_INLINE void validate_BytesRules_set_ignore_empty(validate_BytesRules *msg, bool value) {
|
2141
|
+
_upb_sethas(msg, 9);
|
2142
|
+
*UPB_PTR_AT(msg, UPB_SIZE(32, 32), bool) = value;
|
2143
|
+
}
|
1678
2144
|
|
1679
2145
|
/* validate.EnumRules */
|
1680
2146
|
|
1681
|
-
UPB_INLINE validate_EnumRules
|
1682
|
-
return (validate_EnumRules
|
2147
|
+
UPB_INLINE validate_EnumRules* validate_EnumRules_new(upb_Arena* arena) {
|
2148
|
+
return (validate_EnumRules*)_upb_Message_New(&validate_EnumRules_msginit, arena);
|
1683
2149
|
}
|
1684
|
-
UPB_INLINE validate_EnumRules
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
2150
|
+
UPB_INLINE validate_EnumRules* validate_EnumRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2151
|
+
validate_EnumRules* ret = validate_EnumRules_new(arena);
|
2152
|
+
if (!ret) return NULL;
|
2153
|
+
if (upb_Decode(buf, size, ret, &validate_EnumRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2154
|
+
return NULL;
|
2155
|
+
}
|
2156
|
+
return ret;
|
2157
|
+
}
|
2158
|
+
UPB_INLINE validate_EnumRules* validate_EnumRules_parse_ex(const char* buf, size_t size,
|
2159
|
+
const upb_ExtensionRegistry* extreg,
|
2160
|
+
int options, upb_Arena* arena) {
|
2161
|
+
validate_EnumRules* ret = validate_EnumRules_new(arena);
|
2162
|
+
if (!ret) return NULL;
|
2163
|
+
if (upb_Decode(buf, size, ret, &validate_EnumRules_msginit, extreg, options, arena) !=
|
2164
|
+
kUpb_DecodeStatus_Ok) {
|
2165
|
+
return NULL;
|
2166
|
+
}
|
2167
|
+
return ret;
|
1688
2168
|
}
|
1689
|
-
UPB_INLINE
|
1690
|
-
|
1691
|
-
validate_EnumRules *ret = validate_EnumRules_new(arena);
|
1692
|
-
return (ret && _upb_decode(buf, size, ret, &validate_EnumRules_msginit, arena, options))
|
1693
|
-
? ret : NULL;
|
2169
|
+
UPB_INLINE char* validate_EnumRules_serialize(const validate_EnumRules* msg, upb_Arena* arena, size_t* len) {
|
2170
|
+
return upb_Encode(msg, &validate_EnumRules_msginit, 0, arena, len);
|
1694
2171
|
}
|
1695
|
-
UPB_INLINE char
|
1696
|
-
|
2172
|
+
UPB_INLINE char* validate_EnumRules_serialize_ex(const validate_EnumRules* msg, int options,
|
2173
|
+
upb_Arena* arena, size_t* len) {
|
2174
|
+
return upb_Encode(msg, &validate_EnumRules_msginit, options, arena, len);
|
1697
2175
|
}
|
1698
|
-
|
1699
2176
|
UPB_INLINE bool validate_EnumRules_has_const(const validate_EnumRules *msg) { return _upb_hasbit(msg, 1); }
|
1700
|
-
UPB_INLINE int32_t validate_EnumRules_const(const validate_EnumRules
|
2177
|
+
UPB_INLINE int32_t validate_EnumRules_const(const validate_EnumRules* msg) {
|
2178
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t);
|
2179
|
+
}
|
1701
2180
|
UPB_INLINE bool validate_EnumRules_has_defined_only(const validate_EnumRules *msg) { return _upb_hasbit(msg, 2); }
|
1702
|
-
UPB_INLINE bool validate_EnumRules_defined_only(const validate_EnumRules
|
2181
|
+
UPB_INLINE bool validate_EnumRules_defined_only(const validate_EnumRules* msg) {
|
2182
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool);
|
2183
|
+
}
|
1703
2184
|
UPB_INLINE int32_t const* validate_EnumRules_in(const validate_EnumRules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(12, 16), len); }
|
1704
2185
|
UPB_INLINE int32_t const* validate_EnumRules_not_in(const validate_EnumRules *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(16, 24), len); }
|
1705
2186
|
|
@@ -1714,48 +2195,63 @@ UPB_INLINE void validate_EnumRules_set_defined_only(validate_EnumRules *msg, boo
|
|
1714
2195
|
UPB_INLINE int32_t* validate_EnumRules_mutable_in(validate_EnumRules *msg, size_t *len) {
|
1715
2196
|
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(12, 16), len);
|
1716
2197
|
}
|
1717
|
-
UPB_INLINE int32_t* validate_EnumRules_resize_in(validate_EnumRules *msg, size_t len,
|
1718
|
-
return (int32_t*)
|
2198
|
+
UPB_INLINE int32_t* validate_EnumRules_resize_in(validate_EnumRules *msg, size_t len, upb_Arena *arena) {
|
2199
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(12, 16), len, 2, arena);
|
1719
2200
|
}
|
1720
|
-
UPB_INLINE bool validate_EnumRules_add_in(validate_EnumRules *msg, int32_t val,
|
1721
|
-
return
|
2201
|
+
UPB_INLINE bool validate_EnumRules_add_in(validate_EnumRules *msg, int32_t val, upb_Arena *arena) {
|
2202
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(12, 16), 2, &val,
|
1722
2203
|
arena);
|
1723
2204
|
}
|
1724
2205
|
UPB_INLINE int32_t* validate_EnumRules_mutable_not_in(validate_EnumRules *msg, size_t *len) {
|
1725
2206
|
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 24), len);
|
1726
2207
|
}
|
1727
|
-
UPB_INLINE int32_t* validate_EnumRules_resize_not_in(validate_EnumRules *msg, size_t len,
|
1728
|
-
return (int32_t*)
|
2208
|
+
UPB_INLINE int32_t* validate_EnumRules_resize_not_in(validate_EnumRules *msg, size_t len, upb_Arena *arena) {
|
2209
|
+
return (int32_t*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(16, 24), len, 2, arena);
|
1729
2210
|
}
|
1730
|
-
UPB_INLINE bool validate_EnumRules_add_not_in(validate_EnumRules *msg, int32_t val,
|
1731
|
-
return
|
2211
|
+
UPB_INLINE bool validate_EnumRules_add_not_in(validate_EnumRules *msg, int32_t val, upb_Arena *arena) {
|
2212
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(16, 24), 2, &val,
|
1732
2213
|
arena);
|
1733
2214
|
}
|
1734
2215
|
|
1735
2216
|
/* validate.MessageRules */
|
1736
2217
|
|
1737
|
-
UPB_INLINE validate_MessageRules
|
1738
|
-
return (validate_MessageRules
|
2218
|
+
UPB_INLINE validate_MessageRules* validate_MessageRules_new(upb_Arena* arena) {
|
2219
|
+
return (validate_MessageRules*)_upb_Message_New(&validate_MessageRules_msginit, arena);
|
1739
2220
|
}
|
1740
|
-
UPB_INLINE validate_MessageRules
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
2221
|
+
UPB_INLINE validate_MessageRules* validate_MessageRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2222
|
+
validate_MessageRules* ret = validate_MessageRules_new(arena);
|
2223
|
+
if (!ret) return NULL;
|
2224
|
+
if (upb_Decode(buf, size, ret, &validate_MessageRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2225
|
+
return NULL;
|
2226
|
+
}
|
2227
|
+
return ret;
|
2228
|
+
}
|
2229
|
+
UPB_INLINE validate_MessageRules* validate_MessageRules_parse_ex(const char* buf, size_t size,
|
2230
|
+
const upb_ExtensionRegistry* extreg,
|
2231
|
+
int options, upb_Arena* arena) {
|
2232
|
+
validate_MessageRules* ret = validate_MessageRules_new(arena);
|
2233
|
+
if (!ret) return NULL;
|
2234
|
+
if (upb_Decode(buf, size, ret, &validate_MessageRules_msginit, extreg, options, arena) !=
|
2235
|
+
kUpb_DecodeStatus_Ok) {
|
2236
|
+
return NULL;
|
2237
|
+
}
|
2238
|
+
return ret;
|
1744
2239
|
}
|
1745
|
-
UPB_INLINE
|
1746
|
-
|
1747
|
-
validate_MessageRules *ret = validate_MessageRules_new(arena);
|
1748
|
-
return (ret && _upb_decode(buf, size, ret, &validate_MessageRules_msginit, arena, options))
|
1749
|
-
? ret : NULL;
|
2240
|
+
UPB_INLINE char* validate_MessageRules_serialize(const validate_MessageRules* msg, upb_Arena* arena, size_t* len) {
|
2241
|
+
return upb_Encode(msg, &validate_MessageRules_msginit, 0, arena, len);
|
1750
2242
|
}
|
1751
|
-
UPB_INLINE char
|
1752
|
-
|
2243
|
+
UPB_INLINE char* validate_MessageRules_serialize_ex(const validate_MessageRules* msg, int options,
|
2244
|
+
upb_Arena* arena, size_t* len) {
|
2245
|
+
return upb_Encode(msg, &validate_MessageRules_msginit, options, arena, len);
|
1753
2246
|
}
|
1754
|
-
|
1755
2247
|
UPB_INLINE bool validate_MessageRules_has_skip(const validate_MessageRules *msg) { return _upb_hasbit(msg, 1); }
|
1756
|
-
UPB_INLINE bool validate_MessageRules_skip(const validate_MessageRules
|
2248
|
+
UPB_INLINE bool validate_MessageRules_skip(const validate_MessageRules* msg) {
|
2249
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool);
|
2250
|
+
}
|
1757
2251
|
UPB_INLINE bool validate_MessageRules_has_required(const validate_MessageRules *msg) { return _upb_hasbit(msg, 2); }
|
1758
|
-
UPB_INLINE bool validate_MessageRules_required(const validate_MessageRules
|
2252
|
+
UPB_INLINE bool validate_MessageRules_required(const validate_MessageRules* msg) {
|
2253
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool);
|
2254
|
+
}
|
1759
2255
|
|
1760
2256
|
UPB_INLINE void validate_MessageRules_set_skip(validate_MessageRules *msg, bool value) {
|
1761
2257
|
_upb_sethas(msg, 1);
|
@@ -1768,32 +2264,55 @@ UPB_INLINE void validate_MessageRules_set_required(validate_MessageRules *msg, b
|
|
1768
2264
|
|
1769
2265
|
/* validate.RepeatedRules */
|
1770
2266
|
|
1771
|
-
UPB_INLINE validate_RepeatedRules
|
1772
|
-
return (validate_RepeatedRules
|
2267
|
+
UPB_INLINE validate_RepeatedRules* validate_RepeatedRules_new(upb_Arena* arena) {
|
2268
|
+
return (validate_RepeatedRules*)_upb_Message_New(&validate_RepeatedRules_msginit, arena);
|
1773
2269
|
}
|
1774
|
-
UPB_INLINE validate_RepeatedRules
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
2270
|
+
UPB_INLINE validate_RepeatedRules* validate_RepeatedRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2271
|
+
validate_RepeatedRules* ret = validate_RepeatedRules_new(arena);
|
2272
|
+
if (!ret) return NULL;
|
2273
|
+
if (upb_Decode(buf, size, ret, &validate_RepeatedRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2274
|
+
return NULL;
|
2275
|
+
}
|
2276
|
+
return ret;
|
2277
|
+
}
|
2278
|
+
UPB_INLINE validate_RepeatedRules* validate_RepeatedRules_parse_ex(const char* buf, size_t size,
|
2279
|
+
const upb_ExtensionRegistry* extreg,
|
2280
|
+
int options, upb_Arena* arena) {
|
2281
|
+
validate_RepeatedRules* ret = validate_RepeatedRules_new(arena);
|
2282
|
+
if (!ret) return NULL;
|
2283
|
+
if (upb_Decode(buf, size, ret, &validate_RepeatedRules_msginit, extreg, options, arena) !=
|
2284
|
+
kUpb_DecodeStatus_Ok) {
|
2285
|
+
return NULL;
|
2286
|
+
}
|
2287
|
+
return ret;
|
1778
2288
|
}
|
1779
|
-
UPB_INLINE
|
1780
|
-
|
1781
|
-
validate_RepeatedRules *ret = validate_RepeatedRules_new(arena);
|
1782
|
-
return (ret && _upb_decode(buf, size, ret, &validate_RepeatedRules_msginit, arena, options))
|
1783
|
-
? ret : NULL;
|
2289
|
+
UPB_INLINE char* validate_RepeatedRules_serialize(const validate_RepeatedRules* msg, upb_Arena* arena, size_t* len) {
|
2290
|
+
return upb_Encode(msg, &validate_RepeatedRules_msginit, 0, arena, len);
|
1784
2291
|
}
|
1785
|
-
UPB_INLINE char
|
1786
|
-
|
2292
|
+
UPB_INLINE char* validate_RepeatedRules_serialize_ex(const validate_RepeatedRules* msg, int options,
|
2293
|
+
upb_Arena* arena, size_t* len) {
|
2294
|
+
return upb_Encode(msg, &validate_RepeatedRules_msginit, options, arena, len);
|
1787
2295
|
}
|
1788
|
-
|
1789
2296
|
UPB_INLINE bool validate_RepeatedRules_has_min_items(const validate_RepeatedRules *msg) { return _upb_hasbit(msg, 1); }
|
1790
|
-
UPB_INLINE uint64_t validate_RepeatedRules_min_items(const validate_RepeatedRules
|
2297
|
+
UPB_INLINE uint64_t validate_RepeatedRules_min_items(const validate_RepeatedRules* msg) {
|
2298
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t);
|
2299
|
+
}
|
1791
2300
|
UPB_INLINE bool validate_RepeatedRules_has_max_items(const validate_RepeatedRules *msg) { return _upb_hasbit(msg, 2); }
|
1792
|
-
UPB_INLINE uint64_t validate_RepeatedRules_max_items(const validate_RepeatedRules
|
2301
|
+
UPB_INLINE uint64_t validate_RepeatedRules_max_items(const validate_RepeatedRules* msg) {
|
2302
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t);
|
2303
|
+
}
|
1793
2304
|
UPB_INLINE bool validate_RepeatedRules_has_unique(const validate_RepeatedRules *msg) { return _upb_hasbit(msg, 3); }
|
1794
|
-
UPB_INLINE bool validate_RepeatedRules_unique(const validate_RepeatedRules
|
2305
|
+
UPB_INLINE bool validate_RepeatedRules_unique(const validate_RepeatedRules* msg) {
|
2306
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
2307
|
+
}
|
1795
2308
|
UPB_INLINE bool validate_RepeatedRules_has_items(const validate_RepeatedRules *msg) { return _upb_hasbit(msg, 4); }
|
1796
|
-
UPB_INLINE const validate_FieldRules* validate_RepeatedRules_items(const validate_RepeatedRules
|
2309
|
+
UPB_INLINE const validate_FieldRules* validate_RepeatedRules_items(const validate_RepeatedRules* msg) {
|
2310
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(28, 32), const validate_FieldRules*);
|
2311
|
+
}
|
2312
|
+
UPB_INLINE bool validate_RepeatedRules_has_ignore_empty(const validate_RepeatedRules *msg) { return _upb_hasbit(msg, 5); }
|
2313
|
+
UPB_INLINE bool validate_RepeatedRules_ignore_empty(const validate_RepeatedRules* msg) {
|
2314
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(25, 25), bool);
|
2315
|
+
}
|
1797
2316
|
|
1798
2317
|
UPB_INLINE void validate_RepeatedRules_set_min_items(validate_RepeatedRules *msg, uint64_t value) {
|
1799
2318
|
_upb_sethas(msg, 1);
|
@@ -1811,46 +2330,75 @@ UPB_INLINE void validate_RepeatedRules_set_items(validate_RepeatedRules *msg, va
|
|
1811
2330
|
_upb_sethas(msg, 4);
|
1812
2331
|
*UPB_PTR_AT(msg, UPB_SIZE(28, 32), validate_FieldRules*) = value;
|
1813
2332
|
}
|
1814
|
-
UPB_INLINE struct validate_FieldRules* validate_RepeatedRules_mutable_items(validate_RepeatedRules *msg,
|
2333
|
+
UPB_INLINE struct validate_FieldRules* validate_RepeatedRules_mutable_items(validate_RepeatedRules *msg, upb_Arena *arena) {
|
1815
2334
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_RepeatedRules_items(msg);
|
1816
2335
|
if (sub == NULL) {
|
1817
|
-
sub = (struct validate_FieldRules*)
|
2336
|
+
sub = (struct validate_FieldRules*)_upb_Message_New(&validate_FieldRules_msginit, arena);
|
1818
2337
|
if (!sub) return NULL;
|
1819
2338
|
validate_RepeatedRules_set_items(msg, sub);
|
1820
2339
|
}
|
1821
2340
|
return sub;
|
1822
2341
|
}
|
2342
|
+
UPB_INLINE void validate_RepeatedRules_set_ignore_empty(validate_RepeatedRules *msg, bool value) {
|
2343
|
+
_upb_sethas(msg, 5);
|
2344
|
+
*UPB_PTR_AT(msg, UPB_SIZE(25, 25), bool) = value;
|
2345
|
+
}
|
1823
2346
|
|
1824
2347
|
/* validate.MapRules */
|
1825
2348
|
|
1826
|
-
UPB_INLINE validate_MapRules
|
1827
|
-
return (validate_MapRules
|
2349
|
+
UPB_INLINE validate_MapRules* validate_MapRules_new(upb_Arena* arena) {
|
2350
|
+
return (validate_MapRules*)_upb_Message_New(&validate_MapRules_msginit, arena);
|
1828
2351
|
}
|
1829
|
-
UPB_INLINE validate_MapRules
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
2352
|
+
UPB_INLINE validate_MapRules* validate_MapRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2353
|
+
validate_MapRules* ret = validate_MapRules_new(arena);
|
2354
|
+
if (!ret) return NULL;
|
2355
|
+
if (upb_Decode(buf, size, ret, &validate_MapRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2356
|
+
return NULL;
|
2357
|
+
}
|
2358
|
+
return ret;
|
2359
|
+
}
|
2360
|
+
UPB_INLINE validate_MapRules* validate_MapRules_parse_ex(const char* buf, size_t size,
|
2361
|
+
const upb_ExtensionRegistry* extreg,
|
2362
|
+
int options, upb_Arena* arena) {
|
2363
|
+
validate_MapRules* ret = validate_MapRules_new(arena);
|
2364
|
+
if (!ret) return NULL;
|
2365
|
+
if (upb_Decode(buf, size, ret, &validate_MapRules_msginit, extreg, options, arena) !=
|
2366
|
+
kUpb_DecodeStatus_Ok) {
|
2367
|
+
return NULL;
|
2368
|
+
}
|
2369
|
+
return ret;
|
1833
2370
|
}
|
1834
|
-
UPB_INLINE
|
1835
|
-
|
1836
|
-
validate_MapRules *ret = validate_MapRules_new(arena);
|
1837
|
-
return (ret && _upb_decode(buf, size, ret, &validate_MapRules_msginit, arena, options))
|
1838
|
-
? ret : NULL;
|
2371
|
+
UPB_INLINE char* validate_MapRules_serialize(const validate_MapRules* msg, upb_Arena* arena, size_t* len) {
|
2372
|
+
return upb_Encode(msg, &validate_MapRules_msginit, 0, arena, len);
|
1839
2373
|
}
|
1840
|
-
UPB_INLINE char
|
1841
|
-
|
2374
|
+
UPB_INLINE char* validate_MapRules_serialize_ex(const validate_MapRules* msg, int options,
|
2375
|
+
upb_Arena* arena, size_t* len) {
|
2376
|
+
return upb_Encode(msg, &validate_MapRules_msginit, options, arena, len);
|
1842
2377
|
}
|
1843
|
-
|
1844
2378
|
UPB_INLINE bool validate_MapRules_has_min_pairs(const validate_MapRules *msg) { return _upb_hasbit(msg, 1); }
|
1845
|
-
UPB_INLINE uint64_t validate_MapRules_min_pairs(const validate_MapRules
|
2379
|
+
UPB_INLINE uint64_t validate_MapRules_min_pairs(const validate_MapRules* msg) {
|
2380
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t);
|
2381
|
+
}
|
1846
2382
|
UPB_INLINE bool validate_MapRules_has_max_pairs(const validate_MapRules *msg) { return _upb_hasbit(msg, 2); }
|
1847
|
-
UPB_INLINE uint64_t validate_MapRules_max_pairs(const validate_MapRules
|
2383
|
+
UPB_INLINE uint64_t validate_MapRules_max_pairs(const validate_MapRules* msg) {
|
2384
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), uint64_t);
|
2385
|
+
}
|
1848
2386
|
UPB_INLINE bool validate_MapRules_has_no_sparse(const validate_MapRules *msg) { return _upb_hasbit(msg, 3); }
|
1849
|
-
UPB_INLINE bool validate_MapRules_no_sparse(const validate_MapRules
|
2387
|
+
UPB_INLINE bool validate_MapRules_no_sparse(const validate_MapRules* msg) {
|
2388
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), bool);
|
2389
|
+
}
|
1850
2390
|
UPB_INLINE bool validate_MapRules_has_keys(const validate_MapRules *msg) { return _upb_hasbit(msg, 4); }
|
1851
|
-
UPB_INLINE const validate_FieldRules* validate_MapRules_keys(const validate_MapRules
|
2391
|
+
UPB_INLINE const validate_FieldRules* validate_MapRules_keys(const validate_MapRules* msg) {
|
2392
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(28, 32), const validate_FieldRules*);
|
2393
|
+
}
|
1852
2394
|
UPB_INLINE bool validate_MapRules_has_values(const validate_MapRules *msg) { return _upb_hasbit(msg, 5); }
|
1853
|
-
UPB_INLINE const validate_FieldRules* validate_MapRules_values(const validate_MapRules
|
2395
|
+
UPB_INLINE const validate_FieldRules* validate_MapRules_values(const validate_MapRules* msg) {
|
2396
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(32, 40), const validate_FieldRules*);
|
2397
|
+
}
|
2398
|
+
UPB_INLINE bool validate_MapRules_has_ignore_empty(const validate_MapRules *msg) { return _upb_hasbit(msg, 6); }
|
2399
|
+
UPB_INLINE bool validate_MapRules_ignore_empty(const validate_MapRules* msg) {
|
2400
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(25, 25), bool);
|
2401
|
+
}
|
1854
2402
|
|
1855
2403
|
UPB_INLINE void validate_MapRules_set_min_pairs(validate_MapRules *msg, uint64_t value) {
|
1856
2404
|
_upb_sethas(msg, 1);
|
@@ -1868,10 +2416,10 @@ UPB_INLINE void validate_MapRules_set_keys(validate_MapRules *msg, validate_Fiel
|
|
1868
2416
|
_upb_sethas(msg, 4);
|
1869
2417
|
*UPB_PTR_AT(msg, UPB_SIZE(28, 32), validate_FieldRules*) = value;
|
1870
2418
|
}
|
1871
|
-
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_keys(validate_MapRules *msg,
|
2419
|
+
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_keys(validate_MapRules *msg, upb_Arena *arena) {
|
1872
2420
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_MapRules_keys(msg);
|
1873
2421
|
if (sub == NULL) {
|
1874
|
-
sub = (struct validate_FieldRules*)
|
2422
|
+
sub = (struct validate_FieldRules*)_upb_Message_New(&validate_FieldRules_msginit, arena);
|
1875
2423
|
if (!sub) return NULL;
|
1876
2424
|
validate_MapRules_set_keys(msg, sub);
|
1877
2425
|
}
|
@@ -1881,98 +2429,138 @@ UPB_INLINE void validate_MapRules_set_values(validate_MapRules *msg, validate_Fi
|
|
1881
2429
|
_upb_sethas(msg, 5);
|
1882
2430
|
*UPB_PTR_AT(msg, UPB_SIZE(32, 40), validate_FieldRules*) = value;
|
1883
2431
|
}
|
1884
|
-
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_values(validate_MapRules *msg,
|
2432
|
+
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_values(validate_MapRules *msg, upb_Arena *arena) {
|
1885
2433
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_MapRules_values(msg);
|
1886
2434
|
if (sub == NULL) {
|
1887
|
-
sub = (struct validate_FieldRules*)
|
2435
|
+
sub = (struct validate_FieldRules*)_upb_Message_New(&validate_FieldRules_msginit, arena);
|
1888
2436
|
if (!sub) return NULL;
|
1889
2437
|
validate_MapRules_set_values(msg, sub);
|
1890
2438
|
}
|
1891
2439
|
return sub;
|
1892
2440
|
}
|
2441
|
+
UPB_INLINE void validate_MapRules_set_ignore_empty(validate_MapRules *msg, bool value) {
|
2442
|
+
_upb_sethas(msg, 6);
|
2443
|
+
*UPB_PTR_AT(msg, UPB_SIZE(25, 25), bool) = value;
|
2444
|
+
}
|
1893
2445
|
|
1894
2446
|
/* validate.AnyRules */
|
1895
2447
|
|
1896
|
-
UPB_INLINE validate_AnyRules
|
1897
|
-
return (validate_AnyRules
|
2448
|
+
UPB_INLINE validate_AnyRules* validate_AnyRules_new(upb_Arena* arena) {
|
2449
|
+
return (validate_AnyRules*)_upb_Message_New(&validate_AnyRules_msginit, arena);
|
1898
2450
|
}
|
1899
|
-
UPB_INLINE validate_AnyRules
|
1900
|
-
|
1901
|
-
|
1902
|
-
|
2451
|
+
UPB_INLINE validate_AnyRules* validate_AnyRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2452
|
+
validate_AnyRules* ret = validate_AnyRules_new(arena);
|
2453
|
+
if (!ret) return NULL;
|
2454
|
+
if (upb_Decode(buf, size, ret, &validate_AnyRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2455
|
+
return NULL;
|
2456
|
+
}
|
2457
|
+
return ret;
|
2458
|
+
}
|
2459
|
+
UPB_INLINE validate_AnyRules* validate_AnyRules_parse_ex(const char* buf, size_t size,
|
2460
|
+
const upb_ExtensionRegistry* extreg,
|
2461
|
+
int options, upb_Arena* arena) {
|
2462
|
+
validate_AnyRules* ret = validate_AnyRules_new(arena);
|
2463
|
+
if (!ret) return NULL;
|
2464
|
+
if (upb_Decode(buf, size, ret, &validate_AnyRules_msginit, extreg, options, arena) !=
|
2465
|
+
kUpb_DecodeStatus_Ok) {
|
2466
|
+
return NULL;
|
2467
|
+
}
|
2468
|
+
return ret;
|
1903
2469
|
}
|
1904
|
-
UPB_INLINE
|
1905
|
-
|
1906
|
-
validate_AnyRules *ret = validate_AnyRules_new(arena);
|
1907
|
-
return (ret && _upb_decode(buf, size, ret, &validate_AnyRules_msginit, arena, options))
|
1908
|
-
? ret : NULL;
|
2470
|
+
UPB_INLINE char* validate_AnyRules_serialize(const validate_AnyRules* msg, upb_Arena* arena, size_t* len) {
|
2471
|
+
return upb_Encode(msg, &validate_AnyRules_msginit, 0, arena, len);
|
1909
2472
|
}
|
1910
|
-
UPB_INLINE char
|
1911
|
-
|
2473
|
+
UPB_INLINE char* validate_AnyRules_serialize_ex(const validate_AnyRules* msg, int options,
|
2474
|
+
upb_Arena* arena, size_t* len) {
|
2475
|
+
return upb_Encode(msg, &validate_AnyRules_msginit, options, arena, len);
|
1912
2476
|
}
|
1913
|
-
|
1914
2477
|
UPB_INLINE bool validate_AnyRules_has_required(const validate_AnyRules *msg) { return _upb_hasbit(msg, 1); }
|
1915
|
-
UPB_INLINE bool validate_AnyRules_required(const validate_AnyRules
|
1916
|
-
|
1917
|
-
|
2478
|
+
UPB_INLINE bool validate_AnyRules_required(const validate_AnyRules* msg) {
|
2479
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool);
|
2480
|
+
}
|
2481
|
+
UPB_INLINE upb_StringView const* validate_AnyRules_in(const validate_AnyRules *msg, size_t *len) { return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
|
2482
|
+
UPB_INLINE upb_StringView const* validate_AnyRules_not_in(const validate_AnyRules *msg, size_t *len) { return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(8, 16), len); }
|
1918
2483
|
|
1919
2484
|
UPB_INLINE void validate_AnyRules_set_required(validate_AnyRules *msg, bool value) {
|
1920
2485
|
_upb_sethas(msg, 1);
|
1921
2486
|
*UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
|
1922
2487
|
}
|
1923
|
-
UPB_INLINE
|
1924
|
-
return (
|
2488
|
+
UPB_INLINE upb_StringView* validate_AnyRules_mutable_in(validate_AnyRules *msg, size_t *len) {
|
2489
|
+
return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
|
1925
2490
|
}
|
1926
|
-
UPB_INLINE
|
1927
|
-
return (
|
2491
|
+
UPB_INLINE upb_StringView* validate_AnyRules_resize_in(validate_AnyRules *msg, size_t len, upb_Arena *arena) {
|
2492
|
+
return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(4, 8), len, UPB_SIZE(3, 4), arena);
|
1928
2493
|
}
|
1929
|
-
UPB_INLINE bool validate_AnyRules_add_in(validate_AnyRules *msg,
|
1930
|
-
return
|
2494
|
+
UPB_INLINE bool validate_AnyRules_add_in(validate_AnyRules *msg, upb_StringView val, upb_Arena *arena) {
|
2495
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(4, 8), UPB_SIZE(3, 4), &val,
|
1931
2496
|
arena);
|
1932
2497
|
}
|
1933
|
-
UPB_INLINE
|
1934
|
-
return (
|
2498
|
+
UPB_INLINE upb_StringView* validate_AnyRules_mutable_not_in(validate_AnyRules *msg, size_t *len) {
|
2499
|
+
return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(8, 16), len);
|
1935
2500
|
}
|
1936
|
-
UPB_INLINE
|
1937
|
-
return (
|
2501
|
+
UPB_INLINE upb_StringView* validate_AnyRules_resize_not_in(validate_AnyRules *msg, size_t len, upb_Arena *arena) {
|
2502
|
+
return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(8, 16), len, UPB_SIZE(3, 4), arena);
|
1938
2503
|
}
|
1939
|
-
UPB_INLINE bool validate_AnyRules_add_not_in(validate_AnyRules *msg,
|
1940
|
-
return
|
2504
|
+
UPB_INLINE bool validate_AnyRules_add_not_in(validate_AnyRules *msg, upb_StringView val, upb_Arena *arena) {
|
2505
|
+
return _upb_Array_Append_accessor2(msg, UPB_SIZE(8, 16), UPB_SIZE(3, 4), &val,
|
1941
2506
|
arena);
|
1942
2507
|
}
|
1943
2508
|
|
1944
2509
|
/* validate.DurationRules */
|
1945
2510
|
|
1946
|
-
UPB_INLINE validate_DurationRules
|
1947
|
-
return (validate_DurationRules
|
2511
|
+
UPB_INLINE validate_DurationRules* validate_DurationRules_new(upb_Arena* arena) {
|
2512
|
+
return (validate_DurationRules*)_upb_Message_New(&validate_DurationRules_msginit, arena);
|
1948
2513
|
}
|
1949
|
-
UPB_INLINE validate_DurationRules
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
2514
|
+
UPB_INLINE validate_DurationRules* validate_DurationRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2515
|
+
validate_DurationRules* ret = validate_DurationRules_new(arena);
|
2516
|
+
if (!ret) return NULL;
|
2517
|
+
if (upb_Decode(buf, size, ret, &validate_DurationRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2518
|
+
return NULL;
|
2519
|
+
}
|
2520
|
+
return ret;
|
2521
|
+
}
|
2522
|
+
UPB_INLINE validate_DurationRules* validate_DurationRules_parse_ex(const char* buf, size_t size,
|
2523
|
+
const upb_ExtensionRegistry* extreg,
|
2524
|
+
int options, upb_Arena* arena) {
|
2525
|
+
validate_DurationRules* ret = validate_DurationRules_new(arena);
|
2526
|
+
if (!ret) return NULL;
|
2527
|
+
if (upb_Decode(buf, size, ret, &validate_DurationRules_msginit, extreg, options, arena) !=
|
2528
|
+
kUpb_DecodeStatus_Ok) {
|
2529
|
+
return NULL;
|
2530
|
+
}
|
2531
|
+
return ret;
|
1953
2532
|
}
|
1954
|
-
UPB_INLINE
|
1955
|
-
|
1956
|
-
validate_DurationRules *ret = validate_DurationRules_new(arena);
|
1957
|
-
return (ret && _upb_decode(buf, size, ret, &validate_DurationRules_msginit, arena, options))
|
1958
|
-
? ret : NULL;
|
2533
|
+
UPB_INLINE char* validate_DurationRules_serialize(const validate_DurationRules* msg, upb_Arena* arena, size_t* len) {
|
2534
|
+
return upb_Encode(msg, &validate_DurationRules_msginit, 0, arena, len);
|
1959
2535
|
}
|
1960
|
-
UPB_INLINE char
|
1961
|
-
|
2536
|
+
UPB_INLINE char* validate_DurationRules_serialize_ex(const validate_DurationRules* msg, int options,
|
2537
|
+
upb_Arena* arena, size_t* len) {
|
2538
|
+
return upb_Encode(msg, &validate_DurationRules_msginit, options, arena, len);
|
1962
2539
|
}
|
1963
|
-
|
1964
2540
|
UPB_INLINE bool validate_DurationRules_has_required(const validate_DurationRules *msg) { return _upb_hasbit(msg, 1); }
|
1965
|
-
UPB_INLINE bool validate_DurationRules_required(const validate_DurationRules
|
2541
|
+
UPB_INLINE bool validate_DurationRules_required(const validate_DurationRules* msg) {
|
2542
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool);
|
2543
|
+
}
|
1966
2544
|
UPB_INLINE bool validate_DurationRules_has_const(const validate_DurationRules *msg) { return _upb_hasbit(msg, 2); }
|
1967
|
-
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_const(const validate_DurationRules
|
2545
|
+
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_const(const validate_DurationRules* msg) {
|
2546
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct google_protobuf_Duration*);
|
2547
|
+
}
|
1968
2548
|
UPB_INLINE bool validate_DurationRules_has_lt(const validate_DurationRules *msg) { return _upb_hasbit(msg, 3); }
|
1969
|
-
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lt(const validate_DurationRules
|
2549
|
+
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lt(const validate_DurationRules* msg) {
|
2550
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const struct google_protobuf_Duration*);
|
2551
|
+
}
|
1970
2552
|
UPB_INLINE bool validate_DurationRules_has_lte(const validate_DurationRules *msg) { return _upb_hasbit(msg, 4); }
|
1971
|
-
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lte(const validate_DurationRules
|
2553
|
+
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lte(const validate_DurationRules* msg) {
|
2554
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct google_protobuf_Duration*);
|
2555
|
+
}
|
1972
2556
|
UPB_INLINE bool validate_DurationRules_has_gt(const validate_DurationRules *msg) { return _upb_hasbit(msg, 5); }
|
1973
|
-
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gt(const validate_DurationRules
|
2557
|
+
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gt(const validate_DurationRules* msg) {
|
2558
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const struct google_protobuf_Duration*);
|
2559
|
+
}
|
1974
2560
|
UPB_INLINE bool validate_DurationRules_has_gte(const validate_DurationRules *msg) { return _upb_hasbit(msg, 6); }
|
1975
|
-
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gte(const validate_DurationRules
|
2561
|
+
UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gte(const validate_DurationRules* msg) {
|
2562
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct google_protobuf_Duration*);
|
2563
|
+
}
|
1976
2564
|
UPB_INLINE bool validate_DurationRules_has_in(const validate_DurationRules *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(24, 48)); }
|
1977
2565
|
UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_in(const validate_DurationRules *msg, size_t *len) { return (const struct google_protobuf_Duration* const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
|
1978
2566
|
UPB_INLINE bool validate_DurationRules_has_not_in(const validate_DurationRules *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(28, 56)); }
|
@@ -1986,10 +2574,10 @@ UPB_INLINE void validate_DurationRules_set_const(validate_DurationRules *msg, st
|
|
1986
2574
|
_upb_sethas(msg, 2);
|
1987
2575
|
*UPB_PTR_AT(msg, UPB_SIZE(4, 8), struct google_protobuf_Duration*) = value;
|
1988
2576
|
}
|
1989
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_const(validate_DurationRules *msg,
|
2577
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_const(validate_DurationRules *msg, upb_Arena *arena) {
|
1990
2578
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_const(msg);
|
1991
2579
|
if (sub == NULL) {
|
1992
|
-
sub = (struct google_protobuf_Duration*)
|
2580
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
1993
2581
|
if (!sub) return NULL;
|
1994
2582
|
validate_DurationRules_set_const(msg, sub);
|
1995
2583
|
}
|
@@ -1999,10 +2587,10 @@ UPB_INLINE void validate_DurationRules_set_lt(validate_DurationRules *msg, struc
|
|
1999
2587
|
_upb_sethas(msg, 3);
|
2000
2588
|
*UPB_PTR_AT(msg, UPB_SIZE(8, 16), struct google_protobuf_Duration*) = value;
|
2001
2589
|
}
|
2002
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lt(validate_DurationRules *msg,
|
2590
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lt(validate_DurationRules *msg, upb_Arena *arena) {
|
2003
2591
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_lt(msg);
|
2004
2592
|
if (sub == NULL) {
|
2005
|
-
sub = (struct google_protobuf_Duration*)
|
2593
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2006
2594
|
if (!sub) return NULL;
|
2007
2595
|
validate_DurationRules_set_lt(msg, sub);
|
2008
2596
|
}
|
@@ -2012,10 +2600,10 @@ UPB_INLINE void validate_DurationRules_set_lte(validate_DurationRules *msg, stru
|
|
2012
2600
|
_upb_sethas(msg, 4);
|
2013
2601
|
*UPB_PTR_AT(msg, UPB_SIZE(12, 24), struct google_protobuf_Duration*) = value;
|
2014
2602
|
}
|
2015
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lte(validate_DurationRules *msg,
|
2603
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lte(validate_DurationRules *msg, upb_Arena *arena) {
|
2016
2604
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_lte(msg);
|
2017
2605
|
if (sub == NULL) {
|
2018
|
-
sub = (struct google_protobuf_Duration*)
|
2606
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2019
2607
|
if (!sub) return NULL;
|
2020
2608
|
validate_DurationRules_set_lte(msg, sub);
|
2021
2609
|
}
|
@@ -2025,10 +2613,10 @@ UPB_INLINE void validate_DurationRules_set_gt(validate_DurationRules *msg, struc
|
|
2025
2613
|
_upb_sethas(msg, 5);
|
2026
2614
|
*UPB_PTR_AT(msg, UPB_SIZE(16, 32), struct google_protobuf_Duration*) = value;
|
2027
2615
|
}
|
2028
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gt(validate_DurationRules *msg,
|
2616
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gt(validate_DurationRules *msg, upb_Arena *arena) {
|
2029
2617
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_gt(msg);
|
2030
2618
|
if (sub == NULL) {
|
2031
|
-
sub = (struct google_protobuf_Duration*)
|
2619
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2032
2620
|
if (!sub) return NULL;
|
2033
2621
|
validate_DurationRules_set_gt(msg, sub);
|
2034
2622
|
}
|
@@ -2038,10 +2626,10 @@ UPB_INLINE void validate_DurationRules_set_gte(validate_DurationRules *msg, stru
|
|
2038
2626
|
_upb_sethas(msg, 6);
|
2039
2627
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 40), struct google_protobuf_Duration*) = value;
|
2040
2628
|
}
|
2041
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(validate_DurationRules *msg,
|
2629
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(validate_DurationRules *msg, upb_Arena *arena) {
|
2042
2630
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_gte(msg);
|
2043
2631
|
if (sub == NULL) {
|
2044
|
-
sub = (struct google_protobuf_Duration*)
|
2632
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2045
2633
|
if (!sub) return NULL;
|
2046
2634
|
validate_DurationRules_set_gte(msg, sub);
|
2047
2635
|
}
|
@@ -2050,12 +2638,12 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(v
|
|
2050
2638
|
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_mutable_in(validate_DurationRules *msg, size_t *len) {
|
2051
2639
|
return (struct google_protobuf_Duration**)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
|
2052
2640
|
}
|
2053
|
-
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_in(validate_DurationRules *msg, size_t len,
|
2054
|
-
return (struct google_protobuf_Duration**)
|
2641
|
+
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_in(validate_DurationRules *msg, size_t len, upb_Arena *arena) {
|
2642
|
+
return (struct google_protobuf_Duration**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(24, 48), len, UPB_SIZE(2, 3), arena);
|
2055
2643
|
}
|
2056
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(validate_DurationRules *msg,
|
2057
|
-
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)
|
2058
|
-
bool ok =
|
2644
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(validate_DurationRules *msg, upb_Arena *arena) {
|
2645
|
+
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2646
|
+
bool ok = _upb_Array_Append_accessor2(
|
2059
2647
|
msg, UPB_SIZE(24, 48), UPB_SIZE(2, 3), &sub, arena);
|
2060
2648
|
if (!ok) return NULL;
|
2061
2649
|
return sub;
|
@@ -2063,12 +2651,12 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(valida
|
|
2063
2651
|
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_mutable_not_in(validate_DurationRules *msg, size_t *len) {
|
2064
2652
|
return (struct google_protobuf_Duration**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
|
2065
2653
|
}
|
2066
|
-
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_not_in(validate_DurationRules *msg, size_t len,
|
2067
|
-
return (struct google_protobuf_Duration**)
|
2654
|
+
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_not_in(validate_DurationRules *msg, size_t len, upb_Arena *arena) {
|
2655
|
+
return (struct google_protobuf_Duration**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 56), len, UPB_SIZE(2, 3), arena);
|
2068
2656
|
}
|
2069
|
-
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_not_in(validate_DurationRules *msg,
|
2070
|
-
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)
|
2071
|
-
bool ok =
|
2657
|
+
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_not_in(validate_DurationRules *msg, upb_Arena *arena) {
|
2658
|
+
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2659
|
+
bool ok = _upb_Array_Append_accessor2(
|
2072
2660
|
msg, UPB_SIZE(28, 56), UPB_SIZE(2, 3), &sub, arena);
|
2073
2661
|
if (!ok) return NULL;
|
2074
2662
|
return sub;
|
@@ -2076,42 +2664,71 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_not_in(va
|
|
2076
2664
|
|
2077
2665
|
/* validate.TimestampRules */
|
2078
2666
|
|
2079
|
-
UPB_INLINE validate_TimestampRules
|
2080
|
-
return (validate_TimestampRules
|
2667
|
+
UPB_INLINE validate_TimestampRules* validate_TimestampRules_new(upb_Arena* arena) {
|
2668
|
+
return (validate_TimestampRules*)_upb_Message_New(&validate_TimestampRules_msginit, arena);
|
2081
2669
|
}
|
2082
|
-
UPB_INLINE validate_TimestampRules
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2670
|
+
UPB_INLINE validate_TimestampRules* validate_TimestampRules_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2671
|
+
validate_TimestampRules* ret = validate_TimestampRules_new(arena);
|
2672
|
+
if (!ret) return NULL;
|
2673
|
+
if (upb_Decode(buf, size, ret, &validate_TimestampRules_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
|
2674
|
+
return NULL;
|
2675
|
+
}
|
2676
|
+
return ret;
|
2677
|
+
}
|
2678
|
+
UPB_INLINE validate_TimestampRules* validate_TimestampRules_parse_ex(const char* buf, size_t size,
|
2679
|
+
const upb_ExtensionRegistry* extreg,
|
2680
|
+
int options, upb_Arena* arena) {
|
2681
|
+
validate_TimestampRules* ret = validate_TimestampRules_new(arena);
|
2682
|
+
if (!ret) return NULL;
|
2683
|
+
if (upb_Decode(buf, size, ret, &validate_TimestampRules_msginit, extreg, options, arena) !=
|
2684
|
+
kUpb_DecodeStatus_Ok) {
|
2685
|
+
return NULL;
|
2686
|
+
}
|
2687
|
+
return ret;
|
2086
2688
|
}
|
2087
|
-
UPB_INLINE
|
2088
|
-
|
2089
|
-
validate_TimestampRules *ret = validate_TimestampRules_new(arena);
|
2090
|
-
return (ret && _upb_decode(buf, size, ret, &validate_TimestampRules_msginit, arena, options))
|
2091
|
-
? ret : NULL;
|
2689
|
+
UPB_INLINE char* validate_TimestampRules_serialize(const validate_TimestampRules* msg, upb_Arena* arena, size_t* len) {
|
2690
|
+
return upb_Encode(msg, &validate_TimestampRules_msginit, 0, arena, len);
|
2092
2691
|
}
|
2093
|
-
UPB_INLINE char
|
2094
|
-
|
2692
|
+
UPB_INLINE char* validate_TimestampRules_serialize_ex(const validate_TimestampRules* msg, int options,
|
2693
|
+
upb_Arena* arena, size_t* len) {
|
2694
|
+
return upb_Encode(msg, &validate_TimestampRules_msginit, options, arena, len);
|
2095
2695
|
}
|
2096
|
-
|
2097
2696
|
UPB_INLINE bool validate_TimestampRules_has_required(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 1); }
|
2098
|
-
UPB_INLINE bool validate_TimestampRules_required(const validate_TimestampRules
|
2697
|
+
UPB_INLINE bool validate_TimestampRules_required(const validate_TimestampRules* msg) {
|
2698
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool);
|
2699
|
+
}
|
2099
2700
|
UPB_INLINE bool validate_TimestampRules_has_const(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 2); }
|
2100
|
-
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_const(const validate_TimestampRules
|
2701
|
+
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_const(const validate_TimestampRules* msg) {
|
2702
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), const struct google_protobuf_Timestamp*);
|
2703
|
+
}
|
2101
2704
|
UPB_INLINE bool validate_TimestampRules_has_lt(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 3); }
|
2102
|
-
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lt(const validate_TimestampRules
|
2705
|
+
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lt(const validate_TimestampRules* msg) {
|
2706
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(12, 16), const struct google_protobuf_Timestamp*);
|
2707
|
+
}
|
2103
2708
|
UPB_INLINE bool validate_TimestampRules_has_lte(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 4); }
|
2104
|
-
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lte(const validate_TimestampRules
|
2709
|
+
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lte(const validate_TimestampRules* msg) {
|
2710
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(16, 24), const struct google_protobuf_Timestamp*);
|
2711
|
+
}
|
2105
2712
|
UPB_INLINE bool validate_TimestampRules_has_gt(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 5); }
|
2106
|
-
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gt(const validate_TimestampRules
|
2713
|
+
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gt(const validate_TimestampRules* msg) {
|
2714
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(20, 32), const struct google_protobuf_Timestamp*);
|
2715
|
+
}
|
2107
2716
|
UPB_INLINE bool validate_TimestampRules_has_gte(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 6); }
|
2108
|
-
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gte(const validate_TimestampRules
|
2717
|
+
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gte(const validate_TimestampRules* msg) {
|
2718
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(24, 40), const struct google_protobuf_Timestamp*);
|
2719
|
+
}
|
2109
2720
|
UPB_INLINE bool validate_TimestampRules_has_lt_now(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 7); }
|
2110
|
-
UPB_INLINE bool validate_TimestampRules_lt_now(const validate_TimestampRules
|
2721
|
+
UPB_INLINE bool validate_TimestampRules_lt_now(const validate_TimestampRules* msg) {
|
2722
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(3, 3), bool);
|
2723
|
+
}
|
2111
2724
|
UPB_INLINE bool validate_TimestampRules_has_gt_now(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 8); }
|
2112
|
-
UPB_INLINE bool validate_TimestampRules_gt_now(const validate_TimestampRules
|
2725
|
+
UPB_INLINE bool validate_TimestampRules_gt_now(const validate_TimestampRules* msg) {
|
2726
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), bool);
|
2727
|
+
}
|
2113
2728
|
UPB_INLINE bool validate_TimestampRules_has_within(const validate_TimestampRules *msg) { return _upb_hasbit(msg, 9); }
|
2114
|
-
UPB_INLINE const struct google_protobuf_Duration* validate_TimestampRules_within(const validate_TimestampRules
|
2729
|
+
UPB_INLINE const struct google_protobuf_Duration* validate_TimestampRules_within(const validate_TimestampRules* msg) {
|
2730
|
+
return *UPB_PTR_AT(msg, UPB_SIZE(28, 48), const struct google_protobuf_Duration*);
|
2731
|
+
}
|
2115
2732
|
|
2116
2733
|
UPB_INLINE void validate_TimestampRules_set_required(validate_TimestampRules *msg, bool value) {
|
2117
2734
|
_upb_sethas(msg, 1);
|
@@ -2121,10 +2738,10 @@ UPB_INLINE void validate_TimestampRules_set_const(validate_TimestampRules *msg,
|
|
2121
2738
|
_upb_sethas(msg, 2);
|
2122
2739
|
*UPB_PTR_AT(msg, UPB_SIZE(8, 8), struct google_protobuf_Timestamp*) = value;
|
2123
2740
|
}
|
2124
|
-
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_const(validate_TimestampRules *msg,
|
2741
|
+
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_const(validate_TimestampRules *msg, upb_Arena *arena) {
|
2125
2742
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_const(msg);
|
2126
2743
|
if (sub == NULL) {
|
2127
|
-
sub = (struct google_protobuf_Timestamp*)
|
2744
|
+
sub = (struct google_protobuf_Timestamp*)_upb_Message_New(&google_protobuf_Timestamp_msginit, arena);
|
2128
2745
|
if (!sub) return NULL;
|
2129
2746
|
validate_TimestampRules_set_const(msg, sub);
|
2130
2747
|
}
|
@@ -2134,10 +2751,10 @@ UPB_INLINE void validate_TimestampRules_set_lt(validate_TimestampRules *msg, str
|
|
2134
2751
|
_upb_sethas(msg, 3);
|
2135
2752
|
*UPB_PTR_AT(msg, UPB_SIZE(12, 16), struct google_protobuf_Timestamp*) = value;
|
2136
2753
|
}
|
2137
|
-
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lt(validate_TimestampRules *msg,
|
2754
|
+
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lt(validate_TimestampRules *msg, upb_Arena *arena) {
|
2138
2755
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_lt(msg);
|
2139
2756
|
if (sub == NULL) {
|
2140
|
-
sub = (struct google_protobuf_Timestamp*)
|
2757
|
+
sub = (struct google_protobuf_Timestamp*)_upb_Message_New(&google_protobuf_Timestamp_msginit, arena);
|
2141
2758
|
if (!sub) return NULL;
|
2142
2759
|
validate_TimestampRules_set_lt(msg, sub);
|
2143
2760
|
}
|
@@ -2147,10 +2764,10 @@ UPB_INLINE void validate_TimestampRules_set_lte(validate_TimestampRules *msg, st
|
|
2147
2764
|
_upb_sethas(msg, 4);
|
2148
2765
|
*UPB_PTR_AT(msg, UPB_SIZE(16, 24), struct google_protobuf_Timestamp*) = value;
|
2149
2766
|
}
|
2150
|
-
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lte(validate_TimestampRules *msg,
|
2767
|
+
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lte(validate_TimestampRules *msg, upb_Arena *arena) {
|
2151
2768
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_lte(msg);
|
2152
2769
|
if (sub == NULL) {
|
2153
|
-
sub = (struct google_protobuf_Timestamp*)
|
2770
|
+
sub = (struct google_protobuf_Timestamp*)_upb_Message_New(&google_protobuf_Timestamp_msginit, arena);
|
2154
2771
|
if (!sub) return NULL;
|
2155
2772
|
validate_TimestampRules_set_lte(msg, sub);
|
2156
2773
|
}
|
@@ -2160,10 +2777,10 @@ UPB_INLINE void validate_TimestampRules_set_gt(validate_TimestampRules *msg, str
|
|
2160
2777
|
_upb_sethas(msg, 5);
|
2161
2778
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 32), struct google_protobuf_Timestamp*) = value;
|
2162
2779
|
}
|
2163
|
-
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gt(validate_TimestampRules *msg,
|
2780
|
+
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gt(validate_TimestampRules *msg, upb_Arena *arena) {
|
2164
2781
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_gt(msg);
|
2165
2782
|
if (sub == NULL) {
|
2166
|
-
sub = (struct google_protobuf_Timestamp*)
|
2783
|
+
sub = (struct google_protobuf_Timestamp*)_upb_Message_New(&google_protobuf_Timestamp_msginit, arena);
|
2167
2784
|
if (!sub) return NULL;
|
2168
2785
|
validate_TimestampRules_set_gt(msg, sub);
|
2169
2786
|
}
|
@@ -2173,10 +2790,10 @@ UPB_INLINE void validate_TimestampRules_set_gte(validate_TimestampRules *msg, st
|
|
2173
2790
|
_upb_sethas(msg, 6);
|
2174
2791
|
*UPB_PTR_AT(msg, UPB_SIZE(24, 40), struct google_protobuf_Timestamp*) = value;
|
2175
2792
|
}
|
2176
|
-
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gte(validate_TimestampRules *msg,
|
2793
|
+
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gte(validate_TimestampRules *msg, upb_Arena *arena) {
|
2177
2794
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_gte(msg);
|
2178
2795
|
if (sub == NULL) {
|
2179
|
-
sub = (struct google_protobuf_Timestamp*)
|
2796
|
+
sub = (struct google_protobuf_Timestamp*)_upb_Message_New(&google_protobuf_Timestamp_msginit, arena);
|
2180
2797
|
if (!sub) return NULL;
|
2181
2798
|
validate_TimestampRules_set_gte(msg, sub);
|
2182
2799
|
}
|
@@ -2194,16 +2811,26 @@ UPB_INLINE void validate_TimestampRules_set_within(validate_TimestampRules *msg,
|
|
2194
2811
|
_upb_sethas(msg, 9);
|
2195
2812
|
*UPB_PTR_AT(msg, UPB_SIZE(28, 48), struct google_protobuf_Duration*) = value;
|
2196
2813
|
}
|
2197
|
-
UPB_INLINE struct google_protobuf_Duration* validate_TimestampRules_mutable_within(validate_TimestampRules *msg,
|
2814
|
+
UPB_INLINE struct google_protobuf_Duration* validate_TimestampRules_mutable_within(validate_TimestampRules *msg, upb_Arena *arena) {
|
2198
2815
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_TimestampRules_within(msg);
|
2199
2816
|
if (sub == NULL) {
|
2200
|
-
sub = (struct google_protobuf_Duration*)
|
2817
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
|
2201
2818
|
if (!sub) return NULL;
|
2202
2819
|
validate_TimestampRules_set_within(msg, sub);
|
2203
2820
|
}
|
2204
2821
|
return sub;
|
2205
2822
|
}
|
2206
2823
|
|
2824
|
+
UPB_INLINE bool validate_has_disabled(const struct google_protobuf_MessageOptions *msg) { return _upb_Message_Getext(msg, &validate_disabled_ext) != NULL; }
|
2825
|
+
UPB_INLINE bool validate_disabled(const struct google_protobuf_MessageOptions *msg) { const upb_Message_Extension *ext = _upb_Message_Getext(msg, &validate_disabled_ext); return ext ? *UPB_PTR_AT(&ext->data, 0, bool) : false; }
|
2826
|
+
UPB_INLINE bool validate_has_ignored(const struct google_protobuf_MessageOptions *msg) { return _upb_Message_Getext(msg, &validate_ignored_ext) != NULL; }
|
2827
|
+
UPB_INLINE bool validate_ignored(const struct google_protobuf_MessageOptions *msg) { const upb_Message_Extension *ext = _upb_Message_Getext(msg, &validate_ignored_ext); return ext ? *UPB_PTR_AT(&ext->data, 0, bool) : false; }
|
2828
|
+
UPB_INLINE bool validate_has_required(const struct google_protobuf_OneofOptions *msg) { return _upb_Message_Getext(msg, &validate_required_ext) != NULL; }
|
2829
|
+
UPB_INLINE bool validate_required(const struct google_protobuf_OneofOptions *msg) { const upb_Message_Extension *ext = _upb_Message_Getext(msg, &validate_required_ext); return ext ? *UPB_PTR_AT(&ext->data, 0, bool) : false; }
|
2830
|
+
UPB_INLINE bool validate_has_rules(const struct google_protobuf_FieldOptions *msg) { return _upb_Message_Getext(msg, &validate_rules_ext) != NULL; }
|
2831
|
+
UPB_INLINE const validate_FieldRules* validate_rules(const struct google_protobuf_FieldOptions *msg) { const upb_Message_Extension *ext = _upb_Message_Getext(msg, &validate_rules_ext); UPB_ASSERT(ext); return *UPB_PTR_AT(&ext->data, 0, const validate_FieldRules*); }
|
2832
|
+
extern const upb_MiniTable_File validate_validate_proto_upb_file_layout;
|
2833
|
+
|
2207
2834
|
#ifdef __cplusplus
|
2208
2835
|
} /* extern "C" */
|
2209
2836
|
#endif
|