grpc 1.30.2 → 1.35.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +1055 -18213
- data/etc/roots.pem +257 -573
- data/include/grpc/compression.h +1 -1
- data/include/grpc/grpc.h +15 -7
- data/include/grpc/grpc_security.h +254 -186
- data/include/grpc/grpc_security_constants.h +3 -0
- data/include/grpc/impl/codegen/README.md +22 -0
- data/include/grpc/impl/codegen/atm_windows.h +4 -0
- data/include/grpc/impl/codegen/byte_buffer.h +1 -1
- data/include/grpc/impl/codegen/grpc_types.h +16 -12
- data/include/grpc/impl/codegen/log.h +0 -2
- data/include/grpc/impl/codegen/port_platform.h +28 -88
- data/include/grpc/impl/codegen/sync_windows.h +4 -0
- data/include/grpc/slice_buffer.h +3 -3
- data/include/grpc/support/sync.h +3 -3
- data/include/grpc/support/time.h +7 -7
- data/src/core/ext/filters/client_channel/backend_metric.cc +14 -13
- data/src/core/ext/filters/client_channel/backup_poller.cc +3 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +2991 -1559
- data/src/core/ext/filters/client_channel/client_channel.h +1 -5
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +0 -3
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
- data/src/core/ext/filters/client_channel/config_selector.cc +58 -0
- data/src/core/ext/filters/client_channel/config_selector.h +125 -0
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +186 -0
- data/src/core/ext/filters/client_channel/dynamic_filters.h +99 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +18 -8
- data/src/core/ext/filters/client_channel/health/health_check_client.h +4 -4
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +13 -14
- data/src/core/ext/filters/client_channel/http_proxy.cc +27 -24
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +48 -35
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +10 -7
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +248 -214
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +0 -13
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +0 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -37
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +3 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +3 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +23 -17
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +79 -30
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +10 -9
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +14 -36
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +29 -19
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +350 -130
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +52 -24
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +24 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +812 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +722 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +1262 -0
- data/src/core/ext/filters/client_channel/lb_policy.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy.h +10 -7
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +12 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +14 -18
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -32
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +8 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +10 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +7 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +488 -65
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +13 -12
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +4 -4
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +35 -28
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +673 -69
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +28 -0
- data/src/core/ext/filters/client_channel/resolver.cc +3 -1
- data/src/core/ext/filters/client_channel/resolver.h +4 -1
- data/src/core/ext/filters/client_channel/resolver_factory.h +6 -6
- data/src/core/ext/filters/client_channel/resolver_registry.cc +49 -49
- data/src/core/ext/filters/client_channel/resolver_registry.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +35 -81
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +12 -11
- data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -3
- data/src/core/ext/filters/client_channel/retry_throttle.h +4 -2
- data/src/core/ext/filters/client_channel/server_address.cc +120 -7
- data/src/core/ext/filters/client_channel/server_address.h +44 -21
- data/src/core/ext/filters/client_channel/service_config.cc +18 -13
- data/src/core/ext/filters/client_channel/service_config.h +8 -5
- data/src/core/ext/filters/client_channel/service_config_call_data.h +19 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +8 -6
- data/src/core/ext/filters/client_channel/service_config_parser.h +8 -5
- data/src/core/ext/filters/client_channel/subchannel.cc +116 -88
- data/src/core/ext/filters/client_channel/subchannel.h +30 -24
- data/src/core/ext/filters/client_channel/subchannel_interface.h +41 -5
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +6 -2
- data/src/core/ext/filters/deadline/deadline_filter.cc +87 -79
- data/src/core/ext/filters/deadline/deadline_filter.h +7 -11
- data/src/core/ext/filters/http/client/http_client_filter.cc +6 -6
- data/src/core/ext/filters/http/client_authority_filter.cc +6 -6
- data/src/core/ext/filters/http/http_filters_plugin.cc +8 -4
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +74 -33
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +3 -1
- data/src/core/ext/filters/http/server/http_server_filter.cc +3 -3
- data/src/core/ext/filters/max_age/max_age_filter.cc +3 -2
- data/src/core/ext/filters/message_size/message_size_filter.cc +59 -82
- data/src/core/ext/filters/message_size/message_size_filter.h +8 -1
- data/src/core/ext/filters/workarounds/workaround_utils.cc +1 -1
- data/src/core/ext/transport/chttp2/client/authority.cc +3 -3
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -31
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +19 -2
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +20 -8
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +21 -10
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +34 -47
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +478 -342
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +7 -2
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +3 -3
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +19 -18
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +9 -9
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +7 -7
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +284 -321
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +33 -30
- data/src/core/ext/transport/chttp2/transport/flow_control.h +27 -19
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +6 -7
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +8 -9
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +15 -18
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +37 -37
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
- data/src/core/ext/transport/chttp2/transport/internal.h +23 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +52 -74
- data/src/core/ext/transport/chttp2/transport/writing.cc +17 -22
- data/src/core/ext/transport/inproc/inproc_transport.cc +87 -33
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +1 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +10 -4
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +244 -0
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +865 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +253 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +458 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1818 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +77 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +349 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +124 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +428 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +88 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +310 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +991 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +103 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +388 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +149 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +241 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +839 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +170 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +752 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +88 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +176 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +730 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/{api/v2/core → config/core/v3}/socket_option.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +95 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +92 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +243 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +305 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +367 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +73 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +128 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +512 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +155 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +591 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +41 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +107 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +178 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +662 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +220 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +900 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +3640 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +60 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +159 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +50 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +122 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +364 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1475 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +20 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +35 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +110 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +426 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +76 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +236 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +147 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +621 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/cluster/v3}/cds.upb.c +6 -7
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +56 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/{v2 → v3}/ads.upb.c +6 -5
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +56 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +139 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +487 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/endpoint/v3}/eds.upb.c +6 -7
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +56 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/listener/v3}/lds.upb.c +6 -7
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +56 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +151 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/route/v3}/rds.upb.c +6 -7
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +56 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/route/v3}/srds.upb.c +6 -7
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +56 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +47 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +128 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +84 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +64 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +166 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +146 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +207 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +301 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +90 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +283 -0
- data/src/core/ext/upb-generated/envoy/type/{http.upb.c → v3/http.upb.c} +2 -2
- data/src/core/ext/upb-generated/envoy/type/{http.upb.h → v3/http.upb.h} +9 -9
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +40 -0
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +99 -0
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +130 -0
- data/src/core/ext/upb-generated/envoy/type/{semantic_version.upb.c → v3/semantic_version.upb.c} +7 -6
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +68 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -1
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +242 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +830 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +234 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +842 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
- data/src/core/ext/upb-generated/google/api/http.upb.h +52 -32
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +12 -6
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +106 -106
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +688 -499
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +12 -6
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +8 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +5 -5
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +55 -57
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +12 -6
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +9 -9
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +82 -28
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +17 -10
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +5 -5
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +40 -45
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +43 -43
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +236 -184
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +5 -5
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +29 -13
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +19 -7
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +17 -17
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +122 -62
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +30 -12
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +31 -0
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +64 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +2 -2
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +12 -6
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +27 -0
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +60 -0
- data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.h +60 -0
- data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c +52 -0
- data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.h +143 -0
- data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c +42 -0
- data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.h +84 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.c +36 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.h +94 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c +54 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.h +173 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c +36 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.h +92 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +9 -9
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +48 -68
- data/src/core/ext/upb-generated/validate/validate.upb.c +68 -68
- data/src/core/ext/upb-generated/validate/validate.upb.h +727 -587
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +38 -0
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +41 -0
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +254 -0
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +105 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +100 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +558 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +145 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +133 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +127 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +266 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +125 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +143 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +66 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +263 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +233 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +228 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +80 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +110 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +113 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +146 -0
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +190 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +185 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +62 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +97 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +915 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +280 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +71 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +64 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +511 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +115 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +166 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +105 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +249 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +60 -0
- data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +72 -0
- data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +152 -0
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +60 -0
- data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +83 -0
- data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +82 -0
- data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +83 -0
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +86 -0
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +74 -0
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +64 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +54 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +73 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +72 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +81 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +92 -0
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +95 -0
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +34 -0
- data/src/core/ext/{upb-generated/gogoproto/gogo.upb.h → upbdefs-generated/envoy/type/v3/http.upbdefs.h} +10 -10
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +54 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +61 -0
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +39 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +386 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +165 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +37 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +65 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +66 -0
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +75 -0
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +42 -0
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +70 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +33 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +43 -0
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/authority.upbdefs.c +42 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/authority.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/collection_entry.upbdefs.c +62 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/collection_entry.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/context_params.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/context_params.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_locator.upbdefs.c +68 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_locator.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_name.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_name.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +307 -0
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +145 -0
- data/src/core/ext/xds/certificate_provider_factory.h +61 -0
- data/src/core/ext/xds/certificate_provider_registry.cc +103 -0
- data/src/core/ext/xds/certificate_provider_registry.h +57 -0
- data/src/core/ext/xds/certificate_provider_store.cc +87 -0
- data/src/core/ext/xds/certificate_provider_store.h +112 -0
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +144 -0
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +69 -0
- data/src/core/ext/xds/xds_api.cc +2308 -0
- data/src/core/ext/xds/xds_api.h +469 -0
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_bootstrap.cc +220 -42
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_bootstrap.h +31 -11
- data/src/core/ext/xds/xds_certificate_provider.cc +299 -0
- data/src/core/ext/xds/xds_certificate_provider.h +112 -0
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_channel_args.h +9 -6
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.cc +661 -791
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.h +126 -99
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.cc +61 -18
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.h +48 -20
- data/src/core/ext/xds/xds_server_config_fetcher.cc +131 -0
- data/src/core/lib/channel/channel_args.cc +9 -8
- data/src/core/lib/channel/channel_args.h +0 -1
- data/src/core/lib/channel/channel_trace.cc +6 -8
- data/src/core/lib/channel/channel_trace.h +1 -1
- data/src/core/lib/channel/channelz.cc +41 -88
- data/src/core/lib/channel/channelz.h +14 -23
- data/src/core/lib/channel/channelz_registry.cc +15 -12
- data/src/core/lib/channel/channelz_registry.h +3 -1
- data/src/core/lib/channel/handshaker.cc +2 -2
- data/src/core/lib/channel/handshaker.h +2 -2
- data/src/core/lib/compression/compression.cc +8 -4
- data/src/core/lib/compression/compression_args.cc +3 -2
- data/src/core/lib/compression/compression_internal.cc +10 -5
- data/src/core/lib/compression/compression_internal.h +2 -1
- data/src/core/lib/compression/stream_compression_identity.cc +1 -3
- data/src/core/lib/debug/stats.h +2 -2
- data/src/core/lib/debug/stats_data.cc +1 -0
- data/src/core/lib/debug/stats_data.h +13 -13
- data/src/core/lib/gpr/alloc.cc +3 -2
- data/src/core/lib/gpr/cpu_iphone.cc +10 -2
- data/src/core/lib/gpr/log.cc +53 -16
- data/src/core/lib/gpr/log_linux.cc +23 -9
- data/src/core/lib/gpr/log_posix.cc +19 -7
- data/src/core/lib/gpr/log_windows.cc +18 -4
- data/src/core/lib/gpr/murmur_hash.cc +1 -1
- data/src/core/lib/gpr/spinlock.h +10 -2
- data/src/core/lib/gpr/string.cc +33 -31
- data/src/core/lib/gpr/string.h +9 -8
- data/src/core/lib/gpr/sync.cc +4 -4
- data/src/core/lib/gpr/sync_posix.cc +2 -8
- data/src/core/lib/gpr/time.cc +12 -12
- data/src/core/lib/gpr/time_precise.cc +5 -2
- data/src/core/lib/gpr/time_precise.h +6 -2
- data/src/core/lib/gpr/tls.h +4 -0
- data/src/core/lib/gpr/tls_msvc.h +2 -0
- data/src/core/lib/gpr/tls_stdcpp.h +48 -0
- data/src/core/lib/gpr/useful.h +5 -4
- data/src/core/lib/gprpp/arena.h +3 -2
- data/src/core/lib/gprpp/dual_ref_counted.h +331 -0
- data/src/core/lib/gprpp/examine_stack.cc +43 -0
- data/src/core/lib/gprpp/examine_stack.h +46 -0
- data/src/core/lib/gprpp/fork.cc +2 -2
- data/src/core/lib/gprpp/global_config_env.cc +8 -6
- data/src/core/lib/gprpp/manual_constructor.h +1 -1
- data/src/core/lib/gprpp/orphanable.h +4 -8
- data/src/core/lib/gprpp/ref_counted.h +91 -68
- data/src/core/lib/gprpp/ref_counted_ptr.h +166 -7
- data/src/core/lib/gprpp/stat.h +38 -0
- data/src/core/lib/gprpp/stat_posix.cc +49 -0
- data/src/core/lib/gprpp/stat_windows.cc +48 -0
- data/src/core/lib/gprpp/thd.h +2 -2
- data/src/core/lib/gprpp/thd_posix.cc +42 -37
- data/src/core/lib/gprpp/thd_windows.cc +3 -1
- data/src/core/lib/http/httpcli.cc +14 -11
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +6 -6
- data/src/core/lib/http/parser.cc +47 -27
- data/src/core/lib/iomgr/call_combiner.cc +8 -5
- data/src/core/lib/iomgr/cfstream_handle.cc +1 -0
- data/src/core/lib/iomgr/combiner.cc +2 -1
- data/src/core/lib/iomgr/endpoint.cc +5 -1
- data/src/core/lib/iomgr/endpoint.h +8 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +36 -11
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
- data/src/core/lib/iomgr/error.cc +17 -12
- data/src/core/lib/iomgr/error_cfstream.cc +9 -8
- data/src/core/lib/iomgr/error_internal.h +1 -1
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +25 -19
- data/src/core/lib/iomgr/ev_epollex_linux.cc +40 -38
- data/src/core/lib/iomgr/ev_poll_posix.cc +15 -12
- data/src/core/lib/iomgr/exec_ctx.cc +1 -1
- data/src/core/lib/iomgr/exec_ctx.h +16 -12
- data/src/core/lib/iomgr/executor/mpmcqueue.h +5 -5
- data/src/core/lib/iomgr/executor/threadpool.h +4 -4
- data/src/core/lib/iomgr/executor.cc +2 -1
- data/src/core/lib/iomgr/executor.h +1 -1
- data/src/core/lib/iomgr/iomgr.cc +1 -1
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
- data/src/core/lib/iomgr/load_file.h +1 -1
- data/src/core/lib/iomgr/lockfree_event.cc +19 -14
- data/src/core/lib/iomgr/lockfree_event.h +2 -2
- data/src/core/{ext/filters/client_channel → lib/iomgr}/parse_address.cc +128 -44
- data/src/core/lib/iomgr/parse_address.h +77 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +2 -1
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +1 -1
- data/src/core/lib/iomgr/pollset_set_custom.cc +1 -1
- data/src/core/lib/iomgr/port.h +1 -21
- data/src/core/lib/iomgr/python_util.h +4 -4
- data/src/core/lib/iomgr/resolve_address.cc +4 -4
- data/src/core/lib/iomgr/resolve_address_custom.cc +13 -18
- data/src/core/lib/iomgr/resolve_address_posix.cc +1 -5
- data/src/core/lib/iomgr/resolve_address_windows.cc +8 -8
- data/src/core/lib/iomgr/resource_quota.cc +34 -31
- data/src/core/lib/iomgr/sockaddr_utils.cc +19 -16
- data/src/core/lib/iomgr/sockaddr_utils.h +4 -3
- data/src/core/lib/iomgr/socket_factory_posix.cc +3 -2
- data/src/core/lib/iomgr/socket_mutator.cc +3 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +95 -55
- data/src/core/lib/iomgr/socket_windows.cc +4 -5
- data/src/core/lib/iomgr/tcp_client.cc +3 -3
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +9 -11
- data/src/core/lib/iomgr/tcp_client_custom.cc +13 -15
- data/src/core/lib/iomgr/tcp_client_posix.cc +27 -36
- data/src/core/lib/iomgr/tcp_client_windows.cc +9 -9
- data/src/core/lib/iomgr/tcp_custom.cc +54 -33
- data/src/core/lib/iomgr/tcp_custom.h +1 -1
- data/src/core/lib/iomgr/tcp_posix.cc +43 -21
- data/src/core/lib/iomgr/tcp_server.cc +3 -4
- data/src/core/lib/iomgr/tcp_server.h +7 -5
- data/src/core/lib/iomgr/tcp_server_custom.cc +34 -36
- data/src/core/lib/iomgr/tcp_server_posix.cc +34 -41
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -7
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -9
- data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
- data/src/core/lib/iomgr/tcp_windows.cc +26 -10
- data/src/core/lib/iomgr/timer_custom.cc +5 -5
- data/src/core/lib/iomgr/timer_generic.cc +16 -15
- data/src/core/lib/iomgr/timer_manager.cc +2 -2
- data/src/core/lib/iomgr/udp_server.cc +25 -25
- data/src/core/lib/iomgr/udp_server.h +6 -4
- data/src/core/lib/iomgr/unix_sockets_posix.cc +36 -30
- data/src/core/lib/iomgr/unix_sockets_posix.h +8 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +12 -2
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -2
- data/src/core/lib/json/json.h +12 -2
- data/src/core/lib/json/json_reader.cc +28 -25
- data/src/core/lib/json/json_util.cc +58 -0
- data/src/core/lib/json/json_util.h +204 -0
- data/src/core/lib/json/json_writer.cc +2 -1
- data/src/core/lib/security/authorization/authorization_engine.cc +177 -0
- data/src/core/lib/security/authorization/authorization_engine.h +84 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +148 -0
- data/src/core/lib/security/authorization/evaluate_args.h +59 -0
- data/src/core/lib/security/authorization/mock_cel/activation.h +57 -0
- data/src/core/lib/security/authorization/mock_cel/cel_expr_builder_factory.h +44 -0
- data/src/core/lib/security/authorization/mock_cel/cel_expression.h +69 -0
- data/src/core/lib/security/authorization/mock_cel/cel_value.h +97 -0
- data/src/core/lib/security/authorization/mock_cel/evaluator_core.h +67 -0
- data/src/core/lib/security/authorization/mock_cel/flat_expr_builder.h +57 -0
- data/src/core/lib/security/context/security_context.cc +4 -3
- data/src/core/lib/security/context/security_context.h +3 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
- data/src/core/lib/security/credentials/credentials.cc +7 -7
- data/src/core/lib/security/credentials/credentials.h +8 -6
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +413 -0
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +80 -0
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +213 -0
- data/src/core/lib/security/credentials/external/aws_request_signer.h +72 -0
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +497 -0
- data/src/core/lib/security/credentials/external/external_account_credentials.h +120 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +135 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +48 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +213 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +58 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -1
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +82 -55
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +64 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +6 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +4 -3
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +8 -4
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +58 -74
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -4
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +7 -7
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +25 -5
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +11 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +346 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +213 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +399 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +138 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +78 -150
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +65 -185
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +16 -12
- data/src/core/lib/security/credentials/tls/tls_credentials.h +2 -2
- data/src/core/lib/security/credentials/tls/tls_utils.cc +91 -0
- data/src/core/lib/security/credentials/tls/tls_utils.h +38 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +175 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.h +69 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +20 -25
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +121 -0
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +87 -0
- data/src/core/lib/security/security_connector/load_system_roots.h +4 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +2 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +3 -3
- data/src/core/lib/security/security_connector/security_connector.cc +6 -3
- data/src/core/lib/security/security_connector/security_connector.h +5 -3
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +22 -15
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +5 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +46 -25
- data/src/core/lib/security/security_connector/ssl_utils.h +25 -21
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +359 -293
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +105 -61
- data/src/core/lib/security/transport/client_auth_filter.cc +10 -9
- data/src/core/lib/security/transport/secure_endpoint.cc +9 -3
- data/src/core/lib/security/transport/security_handshaker.cc +3 -3
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -1
- data/src/core/lib/security/util/json_util.cc +12 -13
- data/src/core/lib/security/util/json_util.h +1 -0
- data/src/core/lib/slice/slice.cc +45 -5
- data/src/core/lib/slice/slice_buffer.cc +2 -1
- data/src/core/lib/slice/slice_intern.cc +6 -7
- data/src/core/lib/slice/slice_internal.h +3 -2
- data/src/core/lib/surface/call.cc +93 -85
- data/src/core/lib/surface/call.h +2 -1
- data/src/core/lib/surface/call_details.cc +8 -8
- data/src/core/lib/surface/channel.cc +53 -61
- data/src/core/lib/surface/channel.h +21 -5
- data/src/core/lib/surface/channel_init.cc +1 -1
- data/src/core/lib/surface/completion_queue.cc +30 -29
- data/src/core/lib/surface/completion_queue.h +16 -16
- data/src/core/lib/surface/init.cc +32 -14
- data/src/core/lib/surface/lame_client.cc +20 -46
- data/src/core/lib/surface/lame_client.h +4 -0
- data/src/core/lib/surface/server.cc +1144 -1343
- data/src/core/lib/surface/server.h +400 -70
- data/src/core/lib/surface/validate_metadata.h +3 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/authority_override.cc +40 -0
- data/src/core/lib/transport/authority_override.h +37 -0
- data/src/core/lib/transport/bdp_estimator.cc +1 -1
- data/src/core/lib/transport/bdp_estimator.h +2 -1
- data/src/core/lib/transport/byte_stream.h +3 -3
- data/src/core/lib/transport/connectivity_state.cc +18 -13
- data/src/core/lib/transport/connectivity_state.h +26 -12
- data/src/core/lib/transport/error_utils.cc +13 -0
- data/src/core/lib/transport/error_utils.h +7 -1
- data/src/core/lib/transport/metadata.cc +11 -1
- data/src/core/lib/transport/metadata.h +2 -2
- data/src/core/lib/transport/metadata_batch.h +4 -4
- data/src/core/lib/transport/static_metadata.cc +296 -277
- data/src/core/lib/transport/static_metadata.h +80 -73
- data/src/core/lib/transport/status_metadata.cc +4 -3
- data/src/core/lib/transport/timeout_encoding.cc +4 -4
- data/src/core/lib/transport/transport.cc +5 -3
- data/src/core/lib/transport/transport.h +21 -8
- data/src/core/lib/uri/uri_parser.cc +135 -258
- data/src/core/lib/uri/uri_parser.h +58 -20
- data/src/core/plugin_registry/grpc_plugin_registry.cc +45 -20
- data/src/core/tsi/alts/crypt/gsec.cc +5 -4
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +8 -6
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +24 -14
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +51 -26
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +8 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +4 -4
- data/src/core/tsi/fake_transport_security.cc +6 -3
- data/src/core/tsi/local_transport_security.cc +5 -1
- data/src/core/tsi/local_transport_security.h +6 -7
- data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -1
- data/src/core/tsi/ssl_transport_security.cc +177 -66
- data/src/core/tsi/ssl_transport_security.h +23 -8
- data/src/core/tsi/transport_security.cc +10 -8
- data/src/core/tsi/transport_security_interface.h +6 -1
- data/src/ruby/bin/math_services_pb.rb +4 -4
- data/src/ruby/ext/grpc/extconf.rb +6 -3
- data/src/ruby/ext/grpc/rb_call.c +3 -2
- data/src/ruby/ext/grpc/rb_call.h +4 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +54 -10
- data/src/ruby/ext/grpc/rb_channel_credentials.c +9 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +38 -18
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +74 -44
- data/src/ruby/lib/grpc/generic/client_stub.rb +1 -1
- data/src/ruby/lib/grpc/generic/interceptors.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +2 -2
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +33 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +46 -12
- data/src/ruby/spec/channel_credentials_spec.rb +10 -0
- data/src/ruby/spec/generic/active_call_spec.rb +19 -8
- data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +22 -6
- data/src/ruby/spec/user_agent_spec.rb +74 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +1764 -0
- data/third_party/abseil-cpp/absl/base/attributes.h +99 -38
- data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
- data/third_party/abseil-cpp/absl/base/casts.h +9 -6
- data/third_party/abseil-cpp/absl/base/config.h +60 -17
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +428 -335
- data/third_party/abseil-cpp/absl/base/internal/bits.h +17 -16
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +166 -0
- data/third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h +398 -0
- data/third_party/abseil-cpp/absl/base/internal/exponential_biased.cc +93 -0
- data/third_party/abseil-cpp/absl/base/internal/exponential_biased.h +130 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +4 -4
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +620 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +126 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +29 -1
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +7 -5
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +25 -38
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +19 -25
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +8 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +28 -5
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +8 -0
- data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +2 -2
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +3 -3
- data/third_party/abseil-cpp/absl/base/macros.h +36 -109
- data/third_party/abseil-cpp/absl/base/optimization.h +61 -1
- data/third_party/abseil-cpp/absl/base/options.h +31 -4
- data/third_party/abseil-cpp/absl/base/policy_checks.h +1 -1
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +94 -39
- data/third_party/abseil-cpp/absl/container/fixed_array.h +532 -0
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +606 -0
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +504 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +33 -36
- data/third_party/abseil-cpp/absl/container/internal/common.h +206 -0
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +33 -8
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +460 -0
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +161 -0
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +208 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +270 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +321 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +30 -0
- data/third_party/abseil-cpp/absl/container/internal/have_sse.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/layout.h +743 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +197 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +48 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1903 -0
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +139 -0
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1945 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +71 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +382 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +134 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +196 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +134 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +89 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +108 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +248 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +93 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +346 -0
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +149 -0
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +173 -0
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
- data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +140 -0
- data/third_party/abseil-cpp/absl/debugging/stacktrace.h +231 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +36 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +101 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1560 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +81 -0
- data/third_party/abseil-cpp/absl/functional/bind_front.h +184 -0
- data/third_party/abseil-cpp/absl/functional/function_ref.h +139 -0
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +95 -0
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +106 -0
- data/third_party/abseil-cpp/absl/hash/hash.h +325 -0
- data/third_party/abseil-cpp/absl/hash/internal/city.cc +346 -0
- data/third_party/abseil-cpp/absl/hash/internal/city.h +96 -0
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +55 -0
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +996 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +4 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +2 -8
- data/third_party/abseil-cpp/absl/numeric/int128.cc +13 -27
- data/third_party/abseil-cpp/absl/numeric/int128.h +16 -15
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +51 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +399 -0
- data/third_party/abseil-cpp/absl/status/status.cc +445 -0
- data/third_party/abseil-cpp/absl/status/status.h +817 -0
- data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +38 -0
- data/third_party/abseil-cpp/absl/status/status_payload_printer.h +51 -0
- data/third_party/abseil-cpp/absl/status/statusor.cc +71 -0
- data/third_party/abseil-cpp/absl/status/statusor.h +760 -0
- data/third_party/abseil-cpp/absl/strings/charconv.cc +2 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +1998 -0
- data/third_party/abseil-cpp/absl/strings/cord.h +1276 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +173 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +222 -136
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +136 -64
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +14 -21
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +7 -14
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +31 -7
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +147 -135
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +999 -87
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +4 -12
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +8 -6
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +13 -11
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +2 -2
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/str_cat.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_format.h +289 -13
- data/third_party/abseil-cpp/absl/strings/str_split.cc +2 -2
- data/third_party/abseil-cpp/absl/strings/str_split.h +1 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +26 -19
- data/third_party/abseil-cpp/absl/strings/substitute.cc +5 -5
- data/third_party/abseil-cpp/absl/strings/substitute.h +32 -29
- data/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
- data/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +57 -0
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +99 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +140 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +697 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +141 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +155 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +249 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +115 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +492 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +159 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +2739 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +1065 -0
- data/third_party/abseil-cpp/absl/synchronization/notification.cc +78 -0
- data/third_party/abseil-cpp/absl/synchronization/notification.h +123 -0
- data/third_party/abseil-cpp/absl/time/civil_time.cc +9 -9
- data/third_party/abseil-cpp/absl/time/clock.cc +3 -3
- data/third_party/abseil-cpp/absl/time/duration.cc +90 -59
- data/third_party/abseil-cpp/absl/time/format.cc +43 -36
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +26 -16
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +4 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +136 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +13 -21
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +136 -129
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +4 -5
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +8 -7
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +6 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -1
- data/third_party/abseil-cpp/absl/time/time.h +15 -16
- data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +64 -0
- data/third_party/abseil-cpp/absl/types/bad_variant_access.h +82 -0
- data/third_party/abseil-cpp/absl/types/internal/variant.h +1646 -0
- data/third_party/abseil-cpp/absl/types/optional.h +9 -9
- data/third_party/abseil-cpp/absl/types/span.h +49 -36
- data/third_party/abseil-cpp/absl/types/variant.h +861 -0
- data/third_party/abseil-cpp/absl/utility/utility.h +2 -2
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +2 -0
- data/third_party/boringssl-with-bazel/err_data.c +482 -464
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +9 -43
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +55 -4
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +34 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +12 -52
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +6 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +11 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +173 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +13 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +24 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +20 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +30 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +56 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +70 -2
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +543 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +29 -15
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +110 -70
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +348 -423
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +217 -79
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +766 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +20 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +21 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +65 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +7 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +67 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +57 -44
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +38 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +10 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +37 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +28 -40
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +20 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +30 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +5 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +126 -40
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +24 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +54 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +22 -23
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +7 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +12 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +9 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +73 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +202 -134
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +136 -26
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +5 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +43 -24
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +942 -747
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +482 -432
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +18 -5
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +38 -3
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +27 -20
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +4 -5
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +10 -1
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +66 -24
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +48 -7
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +3 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +8 -9
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +105 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +11 -34
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -24
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +250 -20
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +1 -2
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +88 -40
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +152 -50
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +5 -3
- data/third_party/re2/re2/bitmap256.h +117 -0
- data/third_party/re2/re2/bitstate.cc +385 -0
- data/third_party/re2/re2/compile.cc +1279 -0
- data/third_party/re2/re2/dfa.cc +2130 -0
- data/third_party/re2/re2/filtered_re2.cc +121 -0
- data/third_party/re2/re2/filtered_re2.h +109 -0
- data/third_party/re2/re2/mimics_pcre.cc +197 -0
- data/third_party/re2/re2/nfa.cc +713 -0
- data/third_party/re2/re2/onepass.cc +623 -0
- data/third_party/re2/re2/parse.cc +2464 -0
- data/third_party/re2/re2/perl_groups.cc +119 -0
- data/third_party/re2/re2/pod_array.h +55 -0
- data/third_party/re2/re2/prefilter.cc +710 -0
- data/third_party/re2/re2/prefilter.h +108 -0
- data/third_party/re2/re2/prefilter_tree.cc +407 -0
- data/third_party/re2/re2/prefilter_tree.h +139 -0
- data/third_party/re2/re2/prog.cc +988 -0
- data/third_party/re2/re2/prog.h +436 -0
- data/third_party/re2/re2/re2.cc +1362 -0
- data/third_party/re2/re2/re2.h +1002 -0
- data/third_party/re2/re2/regexp.cc +980 -0
- data/third_party/re2/re2/regexp.h +659 -0
- data/third_party/re2/re2/set.cc +154 -0
- data/third_party/re2/re2/set.h +80 -0
- data/third_party/re2/re2/simplify.cc +657 -0
- data/third_party/re2/re2/sparse_array.h +392 -0
- data/third_party/re2/re2/sparse_set.h +264 -0
- data/third_party/re2/re2/stringpiece.cc +65 -0
- data/third_party/re2/re2/stringpiece.h +210 -0
- data/third_party/re2/re2/tostring.cc +351 -0
- data/third_party/re2/re2/unicode_casefold.cc +582 -0
- data/third_party/re2/re2/unicode_casefold.h +78 -0
- data/third_party/re2/re2/unicode_groups.cc +6269 -0
- data/third_party/re2/re2/unicode_groups.h +67 -0
- data/third_party/re2/re2/walker-inl.h +246 -0
- data/third_party/re2/util/benchmark.h +156 -0
- data/third_party/re2/util/flags.h +26 -0
- data/third_party/re2/util/logging.h +109 -0
- data/third_party/re2/util/malloc_counter.h +19 -0
- data/third_party/re2/util/mix.h +41 -0
- data/third_party/re2/util/mutex.h +148 -0
- data/third_party/re2/util/pcre.cc +1025 -0
- data/third_party/re2/util/pcre.h +681 -0
- data/third_party/re2/util/rune.cc +260 -0
- data/third_party/re2/util/strutil.cc +149 -0
- data/third_party/re2/util/strutil.h +21 -0
- data/third_party/re2/util/test.h +50 -0
- data/third_party/re2/util/utf.h +44 -0
- data/third_party/re2/util/util.h +42 -0
- data/third_party/upb/third_party/wyhash/wyhash.h +145 -0
- data/third_party/upb/upb/decode.c +604 -511
- data/third_party/upb/upb/decode.h +20 -1
- data/third_party/upb/upb/decode.int.h +163 -0
- data/third_party/upb/upb/decode_fast.c +1040 -0
- data/third_party/upb/upb/decode_fast.h +126 -0
- data/third_party/upb/upb/def.c +2178 -0
- data/third_party/upb/upb/def.h +315 -0
- data/third_party/upb/upb/def.hpp +439 -0
- data/third_party/upb/upb/encode.c +311 -211
- data/third_party/upb/upb/encode.h +27 -2
- data/third_party/upb/upb/json_decode.c +1443 -0
- data/third_party/upb/upb/json_decode.h +23 -0
- data/third_party/upb/upb/json_encode.c +713 -0
- data/third_party/upb/upb/json_encode.h +36 -0
- data/third_party/upb/upb/msg.c +215 -70
- data/third_party/upb/upb/msg.h +558 -14
- data/third_party/upb/upb/port_def.inc +105 -63
- data/third_party/upb/upb/port_undef.inc +10 -7
- data/third_party/upb/upb/reflection.c +408 -0
- data/third_party/upb/upb/reflection.h +168 -0
- data/third_party/upb/upb/table.c +73 -269
- data/third_party/upb/upb/table.int.h +25 -57
- data/third_party/upb/upb/text_encode.c +421 -0
- data/third_party/upb/upb/text_encode.h +38 -0
- data/third_party/upb/upb/upb.c +138 -135
- data/third_party/upb/upb/upb.h +119 -146
- data/third_party/upb/upb/upb.hpp +88 -0
- data/third_party/upb/upb/upb.int.h +29 -0
- metadata +560 -166
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +0 -938
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +0 -528
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +0 -834
- data/src/core/ext/filters/client_channel/parse_address.h +0 -53
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +0 -484
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +0 -68
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +0 -348
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +0 -123
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +0 -1906
- data/src/core/ext/filters/client_channel/xds/xds_api.h +0 -280
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +0 -46
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +0 -106
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +0 -21
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +0 -35
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +0 -114
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +0 -418
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +0 -72
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +0 -197
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +0 -105
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +0 -378
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +0 -74
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +0 -218
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +0 -35
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +0 -69
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +0 -55
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +0 -305
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +0 -403
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +0 -1447
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +0 -112
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +0 -328
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +0 -35
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +0 -78
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +0 -313
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +0 -897
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +0 -96
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +0 -322
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +0 -34
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +0 -72
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +0 -197
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +0 -642
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +0 -172
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +0 -673
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +0 -36
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +0 -80
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +0 -152
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +0 -518
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +0 -89
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +0 -129
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +0 -392
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +0 -18
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -33
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +0 -91
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +0 -266
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +0 -112
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +0 -324
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +0 -92
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +0 -240
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +0 -18
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -33
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +0 -145
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +0 -527
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +0 -43
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +0 -112
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +0 -109
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +0 -399
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +0 -18
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -33
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +0 -815
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +0 -3032
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +0 -63
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +0 -199
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +0 -59
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +0 -134
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +0 -228
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +0 -725
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +0 -316
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +0 -1132
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +0 -33
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +0 -65
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +0 -51
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +0 -125
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +0 -50
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +0 -54
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +0 -134
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +0 -63
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +0 -144
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +0 -53
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +0 -133
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +0 -88
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +0 -258
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +0 -39
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +0 -87
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +0 -50
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +0 -112
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +0 -62
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +0 -89
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +0 -249
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +0 -17
- data/src/core/lib/gprpp/map.h +0 -53
- data/src/core/lib/security/transport/target_authority_table.cc +0 -75
- data/src/core/lib/security/transport/target_authority_table.h +0 -40
- data/src/core/lib/slice/slice_hash_table.h +0 -199
- data/src/core/lib/slice/slice_weak_hash_table.h +0 -102
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +0 -129
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +0 -110
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +0 -274
- data/third_party/upb/upb/generated_util.h +0 -105
- data/third_party/upb/upb/port.c +0 -26
@@ -0,0 +1,1002 @@
|
|
1
|
+
// Copyright 2003-2009 The RE2 Authors. All Rights Reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
#ifndef RE2_RE2_H_
|
6
|
+
#define RE2_RE2_H_
|
7
|
+
|
8
|
+
// C++ interface to the re2 regular-expression library.
|
9
|
+
// RE2 supports Perl-style regular expressions (with extensions like
|
10
|
+
// \d, \w, \s, ...).
|
11
|
+
//
|
12
|
+
// -----------------------------------------------------------------------
|
13
|
+
// REGEXP SYNTAX:
|
14
|
+
//
|
15
|
+
// This module uses the re2 library and hence supports
|
16
|
+
// its syntax for regular expressions, which is similar to Perl's with
|
17
|
+
// some of the more complicated things thrown away. In particular,
|
18
|
+
// backreferences and generalized assertions are not available, nor is \Z.
|
19
|
+
//
|
20
|
+
// See https://github.com/google/re2/wiki/Syntax for the syntax
|
21
|
+
// supported by RE2, and a comparison with PCRE and PERL regexps.
|
22
|
+
//
|
23
|
+
// For those not familiar with Perl's regular expressions,
|
24
|
+
// here are some examples of the most commonly used extensions:
|
25
|
+
//
|
26
|
+
// "hello (\\w+) world" -- \w matches a "word" character
|
27
|
+
// "version (\\d+)" -- \d matches a digit
|
28
|
+
// "hello\\s+world" -- \s matches any whitespace character
|
29
|
+
// "\\b(\\w+)\\b" -- \b matches non-empty string at word boundary
|
30
|
+
// "(?i)hello" -- (?i) turns on case-insensitive matching
|
31
|
+
// "/\\*(.*?)\\*/" -- .*? matches . minimum no. of times possible
|
32
|
+
//
|
33
|
+
// The double backslashes are needed when writing C++ string literals.
|
34
|
+
// However, they should NOT be used when writing C++11 raw string literals:
|
35
|
+
//
|
36
|
+
// R"(hello (\w+) world)" -- \w matches a "word" character
|
37
|
+
// R"(version (\d+))" -- \d matches a digit
|
38
|
+
// R"(hello\s+world)" -- \s matches any whitespace character
|
39
|
+
// R"(\b(\w+)\b)" -- \b matches non-empty string at word boundary
|
40
|
+
// R"((?i)hello)" -- (?i) turns on case-insensitive matching
|
41
|
+
// R"(/\*(.*?)\*/)" -- .*? matches . minimum no. of times possible
|
42
|
+
//
|
43
|
+
// -----------------------------------------------------------------------
|
44
|
+
// MATCHING INTERFACE:
|
45
|
+
//
|
46
|
+
// The "FullMatch" operation checks that supplied text matches a
|
47
|
+
// supplied pattern exactly.
|
48
|
+
//
|
49
|
+
// Example: successful match
|
50
|
+
// CHECK(RE2::FullMatch("hello", "h.*o"));
|
51
|
+
//
|
52
|
+
// Example: unsuccessful match (requires full match):
|
53
|
+
// CHECK(!RE2::FullMatch("hello", "e"));
|
54
|
+
//
|
55
|
+
// -----------------------------------------------------------------------
|
56
|
+
// UTF-8 AND THE MATCHING INTERFACE:
|
57
|
+
//
|
58
|
+
// By default, the pattern and input text are interpreted as UTF-8.
|
59
|
+
// The RE2::Latin1 option causes them to be interpreted as Latin-1.
|
60
|
+
//
|
61
|
+
// Example:
|
62
|
+
// CHECK(RE2::FullMatch(utf8_string, RE2(utf8_pattern)));
|
63
|
+
// CHECK(RE2::FullMatch(latin1_string, RE2(latin1_pattern, RE2::Latin1)));
|
64
|
+
//
|
65
|
+
// -----------------------------------------------------------------------
|
66
|
+
// MATCHING WITH SUBSTRING EXTRACTION:
|
67
|
+
//
|
68
|
+
// You can supply extra pointer arguments to extract matched substrings.
|
69
|
+
// On match failure, none of the pointees will have been modified.
|
70
|
+
// On match success, the substrings will be converted (as necessary) and
|
71
|
+
// their values will be assigned to their pointees until all conversions
|
72
|
+
// have succeeded or one conversion has failed.
|
73
|
+
// On conversion failure, the pointees will be in an indeterminate state
|
74
|
+
// because the caller has no way of knowing which conversion failed.
|
75
|
+
// However, conversion cannot fail for types like string and StringPiece
|
76
|
+
// that do not inspect the substring contents. Hence, in the common case
|
77
|
+
// where all of the pointees are of such types, failure is always due to
|
78
|
+
// match failure and thus none of the pointees will have been modified.
|
79
|
+
//
|
80
|
+
// Example: extracts "ruby" into "s" and 1234 into "i"
|
81
|
+
// int i;
|
82
|
+
// std::string s;
|
83
|
+
// CHECK(RE2::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s, &i));
|
84
|
+
//
|
85
|
+
// Example: fails because string cannot be stored in integer
|
86
|
+
// CHECK(!RE2::FullMatch("ruby", "(.*)", &i));
|
87
|
+
//
|
88
|
+
// Example: fails because there aren't enough sub-patterns
|
89
|
+
// CHECK(!RE2::FullMatch("ruby:1234", "\\w+:\\d+", &s));
|
90
|
+
//
|
91
|
+
// Example: does not try to extract any extra sub-patterns
|
92
|
+
// CHECK(RE2::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s));
|
93
|
+
//
|
94
|
+
// Example: does not try to extract into NULL
|
95
|
+
// CHECK(RE2::FullMatch("ruby:1234", "(\\w+):(\\d+)", NULL, &i));
|
96
|
+
//
|
97
|
+
// Example: integer overflow causes failure
|
98
|
+
// CHECK(!RE2::FullMatch("ruby:1234567891234", "\\w+:(\\d+)", &i));
|
99
|
+
//
|
100
|
+
// NOTE(rsc): Asking for substrings slows successful matches quite a bit.
|
101
|
+
// This may get a little faster in the future, but right now is slower
|
102
|
+
// than PCRE. On the other hand, failed matches run *very* fast (faster
|
103
|
+
// than PCRE), as do matches without substring extraction.
|
104
|
+
//
|
105
|
+
// -----------------------------------------------------------------------
|
106
|
+
// PARTIAL MATCHES
|
107
|
+
//
|
108
|
+
// You can use the "PartialMatch" operation when you want the pattern
|
109
|
+
// to match any substring of the text.
|
110
|
+
//
|
111
|
+
// Example: simple search for a string:
|
112
|
+
// CHECK(RE2::PartialMatch("hello", "ell"));
|
113
|
+
//
|
114
|
+
// Example: find first number in a string
|
115
|
+
// int number;
|
116
|
+
// CHECK(RE2::PartialMatch("x*100 + 20", "(\\d+)", &number));
|
117
|
+
// CHECK_EQ(number, 100);
|
118
|
+
//
|
119
|
+
// -----------------------------------------------------------------------
|
120
|
+
// PRE-COMPILED REGULAR EXPRESSIONS
|
121
|
+
//
|
122
|
+
// RE2 makes it easy to use any string as a regular expression, without
|
123
|
+
// requiring a separate compilation step.
|
124
|
+
//
|
125
|
+
// If speed is of the essence, you can create a pre-compiled "RE2"
|
126
|
+
// object from the pattern and use it multiple times. If you do so,
|
127
|
+
// you can typically parse text faster than with sscanf.
|
128
|
+
//
|
129
|
+
// Example: precompile pattern for faster matching:
|
130
|
+
// RE2 pattern("h.*o");
|
131
|
+
// while (ReadLine(&str)) {
|
132
|
+
// if (RE2::FullMatch(str, pattern)) ...;
|
133
|
+
// }
|
134
|
+
//
|
135
|
+
// -----------------------------------------------------------------------
|
136
|
+
// SCANNING TEXT INCREMENTALLY
|
137
|
+
//
|
138
|
+
// The "Consume" operation may be useful if you want to repeatedly
|
139
|
+
// match regular expressions at the front of a string and skip over
|
140
|
+
// them as they match. This requires use of the "StringPiece" type,
|
141
|
+
// which represents a sub-range of a real string.
|
142
|
+
//
|
143
|
+
// Example: read lines of the form "var = value" from a string.
|
144
|
+
// std::string contents = ...; // Fill string somehow
|
145
|
+
// StringPiece input(contents); // Wrap a StringPiece around it
|
146
|
+
//
|
147
|
+
// std::string var;
|
148
|
+
// int value;
|
149
|
+
// while (RE2::Consume(&input, "(\\w+) = (\\d+)\n", &var, &value)) {
|
150
|
+
// ...;
|
151
|
+
// }
|
152
|
+
//
|
153
|
+
// Each successful call to "Consume" will set "var/value", and also
|
154
|
+
// advance "input" so it points past the matched text. Note that if the
|
155
|
+
// regular expression matches an empty string, input will advance
|
156
|
+
// by 0 bytes. If the regular expression being used might match
|
157
|
+
// an empty string, the loop body must check for this case and either
|
158
|
+
// advance the string or break out of the loop.
|
159
|
+
//
|
160
|
+
// The "FindAndConsume" operation is similar to "Consume" but does not
|
161
|
+
// anchor your match at the beginning of the string. For example, you
|
162
|
+
// could extract all words from a string by repeatedly calling
|
163
|
+
// RE2::FindAndConsume(&input, "(\\w+)", &word)
|
164
|
+
//
|
165
|
+
// -----------------------------------------------------------------------
|
166
|
+
// USING VARIABLE NUMBER OF ARGUMENTS
|
167
|
+
//
|
168
|
+
// The above operations require you to know the number of arguments
|
169
|
+
// when you write the code. This is not always possible or easy (for
|
170
|
+
// example, the regular expression may be calculated at run time).
|
171
|
+
// You can use the "N" version of the operations when the number of
|
172
|
+
// match arguments are determined at run time.
|
173
|
+
//
|
174
|
+
// Example:
|
175
|
+
// const RE2::Arg* args[10];
|
176
|
+
// int n;
|
177
|
+
// // ... populate args with pointers to RE2::Arg values ...
|
178
|
+
// // ... set n to the number of RE2::Arg objects ...
|
179
|
+
// bool match = RE2::FullMatchN(input, pattern, args, n);
|
180
|
+
//
|
181
|
+
// The last statement is equivalent to
|
182
|
+
//
|
183
|
+
// bool match = RE2::FullMatch(input, pattern,
|
184
|
+
// *args[0], *args[1], ..., *args[n - 1]);
|
185
|
+
//
|
186
|
+
// -----------------------------------------------------------------------
|
187
|
+
// PARSING HEX/OCTAL/C-RADIX NUMBERS
|
188
|
+
//
|
189
|
+
// By default, if you pass a pointer to a numeric value, the
|
190
|
+
// corresponding text is interpreted as a base-10 number. You can
|
191
|
+
// instead wrap the pointer with a call to one of the operators Hex(),
|
192
|
+
// Octal(), or CRadix() to interpret the text in another base. The
|
193
|
+
// CRadix operator interprets C-style "0" (base-8) and "0x" (base-16)
|
194
|
+
// prefixes, but defaults to base-10.
|
195
|
+
//
|
196
|
+
// Example:
|
197
|
+
// int a, b, c, d;
|
198
|
+
// CHECK(RE2::FullMatch("100 40 0100 0x40", "(.*) (.*) (.*) (.*)",
|
199
|
+
// RE2::Octal(&a), RE2::Hex(&b), RE2::CRadix(&c), RE2::CRadix(&d));
|
200
|
+
// will leave 64 in a, b, c, and d.
|
201
|
+
|
202
|
+
#include <stddef.h>
|
203
|
+
#include <stdint.h>
|
204
|
+
#include <algorithm>
|
205
|
+
#include <map>
|
206
|
+
#include <mutex>
|
207
|
+
#include <string>
|
208
|
+
#include <vector>
|
209
|
+
|
210
|
+
#if defined(__APPLE__)
|
211
|
+
#include <TargetConditionals.h>
|
212
|
+
#endif
|
213
|
+
|
214
|
+
#include "re2/stringpiece.h"
|
215
|
+
|
216
|
+
namespace re2 {
|
217
|
+
class Prog;
|
218
|
+
class Regexp;
|
219
|
+
} // namespace re2
|
220
|
+
|
221
|
+
namespace re2 {
|
222
|
+
|
223
|
+
// Interface for regular expression matching. Also corresponds to a
|
224
|
+
// pre-compiled regular expression. An "RE2" object is safe for
|
225
|
+
// concurrent use by multiple threads.
|
226
|
+
class RE2 {
|
227
|
+
public:
|
228
|
+
// We convert user-passed pointers into special Arg objects
|
229
|
+
class Arg;
|
230
|
+
class Options;
|
231
|
+
|
232
|
+
// Defined in set.h.
|
233
|
+
class Set;
|
234
|
+
|
235
|
+
enum ErrorCode {
|
236
|
+
NoError = 0,
|
237
|
+
|
238
|
+
// Unexpected error
|
239
|
+
ErrorInternal,
|
240
|
+
|
241
|
+
// Parse errors
|
242
|
+
ErrorBadEscape, // bad escape sequence
|
243
|
+
ErrorBadCharClass, // bad character class
|
244
|
+
ErrorBadCharRange, // bad character class range
|
245
|
+
ErrorMissingBracket, // missing closing ]
|
246
|
+
ErrorMissingParen, // missing closing )
|
247
|
+
ErrorTrailingBackslash, // trailing \ at end of regexp
|
248
|
+
ErrorRepeatArgument, // repeat argument missing, e.g. "*"
|
249
|
+
ErrorRepeatSize, // bad repetition argument
|
250
|
+
ErrorRepeatOp, // bad repetition operator
|
251
|
+
ErrorBadPerlOp, // bad perl operator
|
252
|
+
ErrorBadUTF8, // invalid UTF-8 in regexp
|
253
|
+
ErrorBadNamedCapture, // bad named capture group
|
254
|
+
ErrorPatternTooLarge // pattern too large (compile failed)
|
255
|
+
};
|
256
|
+
|
257
|
+
// Predefined common options.
|
258
|
+
// If you need more complicated things, instantiate
|
259
|
+
// an Option class, possibly passing one of these to
|
260
|
+
// the Option constructor, change the settings, and pass that
|
261
|
+
// Option class to the RE2 constructor.
|
262
|
+
enum CannedOptions {
|
263
|
+
DefaultOptions = 0,
|
264
|
+
Latin1, // treat input as Latin-1 (default UTF-8)
|
265
|
+
POSIX, // POSIX syntax, leftmost-longest match
|
266
|
+
Quiet // do not log about regexp parse errors
|
267
|
+
};
|
268
|
+
|
269
|
+
// Need to have the const char* and const std::string& forms for implicit
|
270
|
+
// conversions when passing string literals to FullMatch and PartialMatch.
|
271
|
+
// Otherwise the StringPiece form would be sufficient.
|
272
|
+
#ifndef SWIG
|
273
|
+
RE2(const char* pattern);
|
274
|
+
RE2(const std::string& pattern);
|
275
|
+
#endif
|
276
|
+
RE2(const StringPiece& pattern);
|
277
|
+
RE2(const StringPiece& pattern, const Options& options);
|
278
|
+
~RE2();
|
279
|
+
|
280
|
+
// Returns whether RE2 was created properly.
|
281
|
+
bool ok() const { return error_code() == NoError; }
|
282
|
+
|
283
|
+
// The string specification for this RE2. E.g.
|
284
|
+
// RE2 re("ab*c?d+");
|
285
|
+
// re.pattern(); // "ab*c?d+"
|
286
|
+
const std::string& pattern() const { return pattern_; }
|
287
|
+
|
288
|
+
// If RE2 could not be created properly, returns an error string.
|
289
|
+
// Else returns the empty string.
|
290
|
+
const std::string& error() const { return *error_; }
|
291
|
+
|
292
|
+
// If RE2 could not be created properly, returns an error code.
|
293
|
+
// Else returns RE2::NoError (== 0).
|
294
|
+
ErrorCode error_code() const { return error_code_; }
|
295
|
+
|
296
|
+
// If RE2 could not be created properly, returns the offending
|
297
|
+
// portion of the regexp.
|
298
|
+
const std::string& error_arg() const { return error_arg_; }
|
299
|
+
|
300
|
+
// Returns the program size, a very approximate measure of a regexp's "cost".
|
301
|
+
// Larger numbers are more expensive than smaller numbers.
|
302
|
+
int ProgramSize() const;
|
303
|
+
int ReverseProgramSize() const;
|
304
|
+
|
305
|
+
// If histogram is not null, outputs the program fanout
|
306
|
+
// as a histogram bucketed by powers of 2.
|
307
|
+
// Returns the number of the largest non-empty bucket.
|
308
|
+
int ProgramFanout(std::vector<int>* histogram) const;
|
309
|
+
int ReverseProgramFanout(std::vector<int>* histogram) const;
|
310
|
+
|
311
|
+
// Returns the underlying Regexp; not for general use.
|
312
|
+
// Returns entire_regexp_ so that callers don't need
|
313
|
+
// to know about prefix_ and prefix_foldcase_.
|
314
|
+
re2::Regexp* Regexp() const { return entire_regexp_; }
|
315
|
+
|
316
|
+
/***** The array-based matching interface ******/
|
317
|
+
|
318
|
+
// The functions here have names ending in 'N' and are used to implement
|
319
|
+
// the functions whose names are the prefix before the 'N'. It is sometimes
|
320
|
+
// useful to invoke them directly, but the syntax is awkward, so the 'N'-less
|
321
|
+
// versions should be preferred.
|
322
|
+
static bool FullMatchN(const StringPiece& text, const RE2& re,
|
323
|
+
const Arg* const args[], int n);
|
324
|
+
static bool PartialMatchN(const StringPiece& text, const RE2& re,
|
325
|
+
const Arg* const args[], int n);
|
326
|
+
static bool ConsumeN(StringPiece* input, const RE2& re,
|
327
|
+
const Arg* const args[], int n);
|
328
|
+
static bool FindAndConsumeN(StringPiece* input, const RE2& re,
|
329
|
+
const Arg* const args[], int n);
|
330
|
+
|
331
|
+
#ifndef SWIG
|
332
|
+
private:
|
333
|
+
template <typename F, typename SP>
|
334
|
+
static inline bool Apply(F f, SP sp, const RE2& re) {
|
335
|
+
return f(sp, re, NULL, 0);
|
336
|
+
}
|
337
|
+
|
338
|
+
template <typename F, typename SP, typename... A>
|
339
|
+
static inline bool Apply(F f, SP sp, const RE2& re, const A&... a) {
|
340
|
+
const Arg* const args[] = {&a...};
|
341
|
+
const int n = sizeof...(a);
|
342
|
+
return f(sp, re, args, n);
|
343
|
+
}
|
344
|
+
|
345
|
+
public:
|
346
|
+
// In order to allow FullMatch() et al. to be called with a varying number
|
347
|
+
// of arguments of varying types, we use two layers of variadic templates.
|
348
|
+
// The first layer constructs the temporary Arg objects. The second layer
|
349
|
+
// (above) constructs the array of pointers to the temporary Arg objects.
|
350
|
+
|
351
|
+
/***** The useful part: the matching interface *****/
|
352
|
+
|
353
|
+
// Matches "text" against "re". If pointer arguments are
|
354
|
+
// supplied, copies matched sub-patterns into them.
|
355
|
+
//
|
356
|
+
// You can pass in a "const char*" or a "std::string" for "text".
|
357
|
+
// You can pass in a "const char*" or a "std::string" or a "RE2" for "re".
|
358
|
+
//
|
359
|
+
// The provided pointer arguments can be pointers to any scalar numeric
|
360
|
+
// type, or one of:
|
361
|
+
// std::string (matched piece is copied to string)
|
362
|
+
// StringPiece (StringPiece is mutated to point to matched piece)
|
363
|
+
// T (where "bool T::ParseFrom(const char*, size_t)" exists)
|
364
|
+
// (void*)NULL (the corresponding matched sub-pattern is not copied)
|
365
|
+
//
|
366
|
+
// Returns true iff all of the following conditions are satisfied:
|
367
|
+
// a. "text" matches "re" exactly
|
368
|
+
// b. The number of matched sub-patterns is >= number of supplied pointers
|
369
|
+
// c. The "i"th argument has a suitable type for holding the
|
370
|
+
// string captured as the "i"th sub-pattern. If you pass in
|
371
|
+
// NULL for the "i"th argument, or pass fewer arguments than
|
372
|
+
// number of sub-patterns, "i"th captured sub-pattern is
|
373
|
+
// ignored.
|
374
|
+
//
|
375
|
+
// CAVEAT: An optional sub-pattern that does not exist in the
|
376
|
+
// matched string is assigned the empty string. Therefore, the
|
377
|
+
// following will return false (because the empty string is not a
|
378
|
+
// valid number):
|
379
|
+
// int number;
|
380
|
+
// RE2::FullMatch("abc", "[a-z]+(\\d+)?", &number);
|
381
|
+
template <typename... A>
|
382
|
+
static bool FullMatch(const StringPiece& text, const RE2& re, A&&... a) {
|
383
|
+
return Apply(FullMatchN, text, re, Arg(std::forward<A>(a))...);
|
384
|
+
}
|
385
|
+
|
386
|
+
// Exactly like FullMatch(), except that "re" is allowed to match
|
387
|
+
// a substring of "text".
|
388
|
+
template <typename... A>
|
389
|
+
static bool PartialMatch(const StringPiece& text, const RE2& re, A&&... a) {
|
390
|
+
return Apply(PartialMatchN, text, re, Arg(std::forward<A>(a))...);
|
391
|
+
}
|
392
|
+
|
393
|
+
// Like FullMatch() and PartialMatch(), except that "re" has to match
|
394
|
+
// a prefix of the text, and "input" is advanced past the matched
|
395
|
+
// text. Note: "input" is modified iff this routine returns true
|
396
|
+
// and "re" matched a non-empty substring of "text".
|
397
|
+
template <typename... A>
|
398
|
+
static bool Consume(StringPiece* input, const RE2& re, A&&... a) {
|
399
|
+
return Apply(ConsumeN, input, re, Arg(std::forward<A>(a))...);
|
400
|
+
}
|
401
|
+
|
402
|
+
// Like Consume(), but does not anchor the match at the beginning of
|
403
|
+
// the text. That is, "re" need not start its match at the beginning
|
404
|
+
// of "input". For example, "FindAndConsume(s, "(\\w+)", &word)" finds
|
405
|
+
// the next word in "s" and stores it in "word".
|
406
|
+
template <typename... A>
|
407
|
+
static bool FindAndConsume(StringPiece* input, const RE2& re, A&&... a) {
|
408
|
+
return Apply(FindAndConsumeN, input, re, Arg(std::forward<A>(a))...);
|
409
|
+
}
|
410
|
+
#endif
|
411
|
+
|
412
|
+
// Replace the first match of "re" in "str" with "rewrite".
|
413
|
+
// Within "rewrite", backslash-escaped digits (\1 to \9) can be
|
414
|
+
// used to insert text matching corresponding parenthesized group
|
415
|
+
// from the pattern. \0 in "rewrite" refers to the entire matching
|
416
|
+
// text. E.g.,
|
417
|
+
//
|
418
|
+
// std::string s = "yabba dabba doo";
|
419
|
+
// CHECK(RE2::Replace(&s, "b+", "d"));
|
420
|
+
//
|
421
|
+
// will leave "s" containing "yada dabba doo"
|
422
|
+
//
|
423
|
+
// Returns true if the pattern matches and a replacement occurs,
|
424
|
+
// false otherwise.
|
425
|
+
static bool Replace(std::string* str,
|
426
|
+
const RE2& re,
|
427
|
+
const StringPiece& rewrite);
|
428
|
+
|
429
|
+
// Like Replace(), except replaces successive non-overlapping occurrences
|
430
|
+
// of the pattern in the string with the rewrite. E.g.
|
431
|
+
//
|
432
|
+
// std::string s = "yabba dabba doo";
|
433
|
+
// CHECK(RE2::GlobalReplace(&s, "b+", "d"));
|
434
|
+
//
|
435
|
+
// will leave "s" containing "yada dada doo"
|
436
|
+
// Replacements are not subject to re-matching.
|
437
|
+
//
|
438
|
+
// Because GlobalReplace only replaces non-overlapping matches,
|
439
|
+
// replacing "ana" within "banana" makes only one replacement, not two.
|
440
|
+
//
|
441
|
+
// Returns the number of replacements made.
|
442
|
+
static int GlobalReplace(std::string* str,
|
443
|
+
const RE2& re,
|
444
|
+
const StringPiece& rewrite);
|
445
|
+
|
446
|
+
// Like Replace, except that if the pattern matches, "rewrite"
|
447
|
+
// is copied into "out" with substitutions. The non-matching
|
448
|
+
// portions of "text" are ignored.
|
449
|
+
//
|
450
|
+
// Returns true iff a match occurred and the extraction happened
|
451
|
+
// successfully; if no match occurs, the string is left unaffected.
|
452
|
+
//
|
453
|
+
// REQUIRES: "text" must not alias any part of "*out".
|
454
|
+
static bool Extract(const StringPiece& text,
|
455
|
+
const RE2& re,
|
456
|
+
const StringPiece& rewrite,
|
457
|
+
std::string* out);
|
458
|
+
|
459
|
+
// Escapes all potentially meaningful regexp characters in
|
460
|
+
// 'unquoted'. The returned string, used as a regular expression,
|
461
|
+
// will match exactly the original string. For example,
|
462
|
+
// 1.5-2.0?
|
463
|
+
// may become:
|
464
|
+
// 1\.5\-2\.0\?
|
465
|
+
static std::string QuoteMeta(const StringPiece& unquoted);
|
466
|
+
|
467
|
+
// Computes range for any strings matching regexp. The min and max can in
|
468
|
+
// some cases be arbitrarily precise, so the caller gets to specify the
|
469
|
+
// maximum desired length of string returned.
|
470
|
+
//
|
471
|
+
// Assuming PossibleMatchRange(&min, &max, N) returns successfully, any
|
472
|
+
// string s that is an anchored match for this regexp satisfies
|
473
|
+
// min <= s && s <= max.
|
474
|
+
//
|
475
|
+
// Note that PossibleMatchRange() will only consider the first copy of an
|
476
|
+
// infinitely repeated element (i.e., any regexp element followed by a '*' or
|
477
|
+
// '+' operator). Regexps with "{N}" constructions are not affected, as those
|
478
|
+
// do not compile down to infinite repetitions.
|
479
|
+
//
|
480
|
+
// Returns true on success, false on error.
|
481
|
+
bool PossibleMatchRange(std::string* min, std::string* max,
|
482
|
+
int maxlen) const;
|
483
|
+
|
484
|
+
// Generic matching interface
|
485
|
+
|
486
|
+
// Type of match.
|
487
|
+
enum Anchor {
|
488
|
+
UNANCHORED, // No anchoring
|
489
|
+
ANCHOR_START, // Anchor at start only
|
490
|
+
ANCHOR_BOTH // Anchor at start and end
|
491
|
+
};
|
492
|
+
|
493
|
+
// Return the number of capturing subpatterns, or -1 if the
|
494
|
+
// regexp wasn't valid on construction. The overall match ($0)
|
495
|
+
// does not count: if the regexp is "(a)(b)", returns 2.
|
496
|
+
int NumberOfCapturingGroups() const { return num_captures_; }
|
497
|
+
|
498
|
+
// Return a map from names to capturing indices.
|
499
|
+
// The map records the index of the leftmost group
|
500
|
+
// with the given name.
|
501
|
+
// Only valid until the re is deleted.
|
502
|
+
const std::map<std::string, int>& NamedCapturingGroups() const;
|
503
|
+
|
504
|
+
// Return a map from capturing indices to names.
|
505
|
+
// The map has no entries for unnamed groups.
|
506
|
+
// Only valid until the re is deleted.
|
507
|
+
const std::map<int, std::string>& CapturingGroupNames() const;
|
508
|
+
|
509
|
+
// General matching routine.
|
510
|
+
// Match against text starting at offset startpos
|
511
|
+
// and stopping the search at offset endpos.
|
512
|
+
// Returns true if match found, false if not.
|
513
|
+
// On a successful match, fills in submatch[] (up to nsubmatch entries)
|
514
|
+
// with information about submatches.
|
515
|
+
// I.e. matching RE2("(foo)|(bar)baz") on "barbazbla" will return true, with
|
516
|
+
// submatch[0] = "barbaz", submatch[1].data() = NULL, submatch[2] = "bar",
|
517
|
+
// submatch[3].data() = NULL, ..., up to submatch[nsubmatch-1].data() = NULL.
|
518
|
+
// Caveat: submatch[] may be clobbered even on match failure.
|
519
|
+
//
|
520
|
+
// Don't ask for more match information than you will use:
|
521
|
+
// runs much faster with nsubmatch == 1 than nsubmatch > 1, and
|
522
|
+
// runs even faster if nsubmatch == 0.
|
523
|
+
// Doesn't make sense to use nsubmatch > 1 + NumberOfCapturingGroups(),
|
524
|
+
// but will be handled correctly.
|
525
|
+
//
|
526
|
+
// Passing text == StringPiece(NULL, 0) will be handled like any other
|
527
|
+
// empty string, but note that on return, it will not be possible to tell
|
528
|
+
// whether submatch i matched the empty string or did not match:
|
529
|
+
// either way, submatch[i].data() == NULL.
|
530
|
+
bool Match(const StringPiece& text,
|
531
|
+
size_t startpos,
|
532
|
+
size_t endpos,
|
533
|
+
Anchor re_anchor,
|
534
|
+
StringPiece* submatch,
|
535
|
+
int nsubmatch) const;
|
536
|
+
|
537
|
+
// Check that the given rewrite string is suitable for use with this
|
538
|
+
// regular expression. It checks that:
|
539
|
+
// * The regular expression has enough parenthesized subexpressions
|
540
|
+
// to satisfy all of the \N tokens in rewrite
|
541
|
+
// * The rewrite string doesn't have any syntax errors. E.g.,
|
542
|
+
// '\' followed by anything other than a digit or '\'.
|
543
|
+
// A true return value guarantees that Replace() and Extract() won't
|
544
|
+
// fail because of a bad rewrite string.
|
545
|
+
bool CheckRewriteString(const StringPiece& rewrite,
|
546
|
+
std::string* error) const;
|
547
|
+
|
548
|
+
// Returns the maximum submatch needed for the rewrite to be done by
|
549
|
+
// Replace(). E.g. if rewrite == "foo \\2,\\1", returns 2.
|
550
|
+
static int MaxSubmatch(const StringPiece& rewrite);
|
551
|
+
|
552
|
+
// Append the "rewrite" string, with backslash subsitutions from "vec",
|
553
|
+
// to string "out".
|
554
|
+
// Returns true on success. This method can fail because of a malformed
|
555
|
+
// rewrite string. CheckRewriteString guarantees that the rewrite will
|
556
|
+
// be sucessful.
|
557
|
+
bool Rewrite(std::string* out,
|
558
|
+
const StringPiece& rewrite,
|
559
|
+
const StringPiece* vec,
|
560
|
+
int veclen) const;
|
561
|
+
|
562
|
+
// Constructor options
|
563
|
+
class Options {
|
564
|
+
public:
|
565
|
+
// The options are (defaults in parentheses):
|
566
|
+
//
|
567
|
+
// utf8 (true) text and pattern are UTF-8; otherwise Latin-1
|
568
|
+
// posix_syntax (false) restrict regexps to POSIX egrep syntax
|
569
|
+
// longest_match (false) search for longest match, not first match
|
570
|
+
// log_errors (true) log syntax and execution errors to ERROR
|
571
|
+
// max_mem (see below) approx. max memory footprint of RE2
|
572
|
+
// literal (false) interpret string as literal, not regexp
|
573
|
+
// never_nl (false) never match \n, even if it is in regexp
|
574
|
+
// dot_nl (false) dot matches everything including new line
|
575
|
+
// never_capture (false) parse all parens as non-capturing
|
576
|
+
// case_sensitive (true) match is case-sensitive (regexp can override
|
577
|
+
// with (?i) unless in posix_syntax mode)
|
578
|
+
//
|
579
|
+
// The following options are only consulted when posix_syntax == true.
|
580
|
+
// When posix_syntax == false, these features are always enabled and
|
581
|
+
// cannot be turned off; to perform multi-line matching in that case,
|
582
|
+
// begin the regexp with (?m).
|
583
|
+
// perl_classes (false) allow Perl's \d \s \w \D \S \W
|
584
|
+
// word_boundary (false) allow Perl's \b \B (word boundary and not)
|
585
|
+
// one_line (false) ^ and $ only match beginning and end of text
|
586
|
+
//
|
587
|
+
// The max_mem option controls how much memory can be used
|
588
|
+
// to hold the compiled form of the regexp (the Prog) and
|
589
|
+
// its cached DFA graphs. Code Search placed limits on the number
|
590
|
+
// of Prog instructions and DFA states: 10,000 for both.
|
591
|
+
// In RE2, those limits would translate to about 240 KB per Prog
|
592
|
+
// and perhaps 2.5 MB per DFA (DFA state sizes vary by regexp; RE2 does a
|
593
|
+
// better job of keeping them small than Code Search did).
|
594
|
+
// Each RE2 has two Progs (one forward, one reverse), and each Prog
|
595
|
+
// can have two DFAs (one first match, one longest match).
|
596
|
+
// That makes 4 DFAs:
|
597
|
+
//
|
598
|
+
// forward, first-match - used for UNANCHORED or ANCHOR_START searches
|
599
|
+
// if opt.longest_match() == false
|
600
|
+
// forward, longest-match - used for all ANCHOR_BOTH searches,
|
601
|
+
// and the other two kinds if
|
602
|
+
// opt.longest_match() == true
|
603
|
+
// reverse, first-match - never used
|
604
|
+
// reverse, longest-match - used as second phase for unanchored searches
|
605
|
+
//
|
606
|
+
// The RE2 memory budget is statically divided between the two
|
607
|
+
// Progs and then the DFAs: two thirds to the forward Prog
|
608
|
+
// and one third to the reverse Prog. The forward Prog gives half
|
609
|
+
// of what it has left over to each of its DFAs. The reverse Prog
|
610
|
+
// gives it all to its longest-match DFA.
|
611
|
+
//
|
612
|
+
// Once a DFA fills its budget, it flushes its cache and starts over.
|
613
|
+
// If this happens too often, RE2 falls back on the NFA implementation.
|
614
|
+
|
615
|
+
// For now, make the default budget something close to Code Search.
|
616
|
+
static const int kDefaultMaxMem = 8<<20;
|
617
|
+
|
618
|
+
enum Encoding {
|
619
|
+
EncodingUTF8 = 1,
|
620
|
+
EncodingLatin1
|
621
|
+
};
|
622
|
+
|
623
|
+
Options() :
|
624
|
+
encoding_(EncodingUTF8),
|
625
|
+
posix_syntax_(false),
|
626
|
+
longest_match_(false),
|
627
|
+
log_errors_(true),
|
628
|
+
max_mem_(kDefaultMaxMem),
|
629
|
+
literal_(false),
|
630
|
+
never_nl_(false),
|
631
|
+
dot_nl_(false),
|
632
|
+
never_capture_(false),
|
633
|
+
case_sensitive_(true),
|
634
|
+
perl_classes_(false),
|
635
|
+
word_boundary_(false),
|
636
|
+
one_line_(false) {
|
637
|
+
}
|
638
|
+
|
639
|
+
/*implicit*/ Options(CannedOptions);
|
640
|
+
|
641
|
+
Encoding encoding() const { return encoding_; }
|
642
|
+
void set_encoding(Encoding encoding) { encoding_ = encoding; }
|
643
|
+
|
644
|
+
bool posix_syntax() const { return posix_syntax_; }
|
645
|
+
void set_posix_syntax(bool b) { posix_syntax_ = b; }
|
646
|
+
|
647
|
+
bool longest_match() const { return longest_match_; }
|
648
|
+
void set_longest_match(bool b) { longest_match_ = b; }
|
649
|
+
|
650
|
+
bool log_errors() const { return log_errors_; }
|
651
|
+
void set_log_errors(bool b) { log_errors_ = b; }
|
652
|
+
|
653
|
+
int64_t max_mem() const { return max_mem_; }
|
654
|
+
void set_max_mem(int64_t m) { max_mem_ = m; }
|
655
|
+
|
656
|
+
bool literal() const { return literal_; }
|
657
|
+
void set_literal(bool b) { literal_ = b; }
|
658
|
+
|
659
|
+
bool never_nl() const { return never_nl_; }
|
660
|
+
void set_never_nl(bool b) { never_nl_ = b; }
|
661
|
+
|
662
|
+
bool dot_nl() const { return dot_nl_; }
|
663
|
+
void set_dot_nl(bool b) { dot_nl_ = b; }
|
664
|
+
|
665
|
+
bool never_capture() const { return never_capture_; }
|
666
|
+
void set_never_capture(bool b) { never_capture_ = b; }
|
667
|
+
|
668
|
+
bool case_sensitive() const { return case_sensitive_; }
|
669
|
+
void set_case_sensitive(bool b) { case_sensitive_ = b; }
|
670
|
+
|
671
|
+
bool perl_classes() const { return perl_classes_; }
|
672
|
+
void set_perl_classes(bool b) { perl_classes_ = b; }
|
673
|
+
|
674
|
+
bool word_boundary() const { return word_boundary_; }
|
675
|
+
void set_word_boundary(bool b) { word_boundary_ = b; }
|
676
|
+
|
677
|
+
bool one_line() const { return one_line_; }
|
678
|
+
void set_one_line(bool b) { one_line_ = b; }
|
679
|
+
|
680
|
+
void Copy(const Options& src) {
|
681
|
+
*this = src;
|
682
|
+
}
|
683
|
+
|
684
|
+
int ParseFlags() const;
|
685
|
+
|
686
|
+
private:
|
687
|
+
Encoding encoding_;
|
688
|
+
bool posix_syntax_;
|
689
|
+
bool longest_match_;
|
690
|
+
bool log_errors_;
|
691
|
+
int64_t max_mem_;
|
692
|
+
bool literal_;
|
693
|
+
bool never_nl_;
|
694
|
+
bool dot_nl_;
|
695
|
+
bool never_capture_;
|
696
|
+
bool case_sensitive_;
|
697
|
+
bool perl_classes_;
|
698
|
+
bool word_boundary_;
|
699
|
+
bool one_line_;
|
700
|
+
};
|
701
|
+
|
702
|
+
// Returns the options set in the constructor.
|
703
|
+
const Options& options() const { return options_; }
|
704
|
+
|
705
|
+
// Argument converters; see below.
|
706
|
+
static inline Arg CRadix(short* x);
|
707
|
+
static inline Arg CRadix(unsigned short* x);
|
708
|
+
static inline Arg CRadix(int* x);
|
709
|
+
static inline Arg CRadix(unsigned int* x);
|
710
|
+
static inline Arg CRadix(long* x);
|
711
|
+
static inline Arg CRadix(unsigned long* x);
|
712
|
+
static inline Arg CRadix(long long* x);
|
713
|
+
static inline Arg CRadix(unsigned long long* x);
|
714
|
+
|
715
|
+
static inline Arg Hex(short* x);
|
716
|
+
static inline Arg Hex(unsigned short* x);
|
717
|
+
static inline Arg Hex(int* x);
|
718
|
+
static inline Arg Hex(unsigned int* x);
|
719
|
+
static inline Arg Hex(long* x);
|
720
|
+
static inline Arg Hex(unsigned long* x);
|
721
|
+
static inline Arg Hex(long long* x);
|
722
|
+
static inline Arg Hex(unsigned long long* x);
|
723
|
+
|
724
|
+
static inline Arg Octal(short* x);
|
725
|
+
static inline Arg Octal(unsigned short* x);
|
726
|
+
static inline Arg Octal(int* x);
|
727
|
+
static inline Arg Octal(unsigned int* x);
|
728
|
+
static inline Arg Octal(long* x);
|
729
|
+
static inline Arg Octal(unsigned long* x);
|
730
|
+
static inline Arg Octal(long long* x);
|
731
|
+
static inline Arg Octal(unsigned long long* x);
|
732
|
+
|
733
|
+
private:
|
734
|
+
void Init(const StringPiece& pattern, const Options& options);
|
735
|
+
|
736
|
+
bool DoMatch(const StringPiece& text,
|
737
|
+
Anchor re_anchor,
|
738
|
+
size_t* consumed,
|
739
|
+
const Arg* const args[],
|
740
|
+
int n) const;
|
741
|
+
|
742
|
+
re2::Prog* ReverseProg() const;
|
743
|
+
|
744
|
+
std::string pattern_; // string regular expression
|
745
|
+
Options options_; // option flags
|
746
|
+
re2::Regexp* entire_regexp_; // parsed regular expression
|
747
|
+
const std::string* error_; // error indicator (or points to empty string)
|
748
|
+
ErrorCode error_code_; // error code
|
749
|
+
std::string error_arg_; // fragment of regexp showing error
|
750
|
+
std::string prefix_; // required prefix (before suffix_regexp_)
|
751
|
+
bool prefix_foldcase_; // prefix_ is ASCII case-insensitive
|
752
|
+
re2::Regexp* suffix_regexp_; // parsed regular expression, prefix_ removed
|
753
|
+
re2::Prog* prog_; // compiled program for regexp
|
754
|
+
int num_captures_; // number of capturing groups
|
755
|
+
bool is_one_pass_; // can use prog_->SearchOnePass?
|
756
|
+
|
757
|
+
// Reverse Prog for DFA execution only
|
758
|
+
mutable re2::Prog* rprog_;
|
759
|
+
// Map from capture names to indices
|
760
|
+
mutable const std::map<std::string, int>* named_groups_;
|
761
|
+
// Map from capture indices to names
|
762
|
+
mutable const std::map<int, std::string>* group_names_;
|
763
|
+
|
764
|
+
mutable std::once_flag rprog_once_;
|
765
|
+
mutable std::once_flag named_groups_once_;
|
766
|
+
mutable std::once_flag group_names_once_;
|
767
|
+
|
768
|
+
RE2(const RE2&) = delete;
|
769
|
+
RE2& operator=(const RE2&) = delete;
|
770
|
+
};
|
771
|
+
|
772
|
+
/***** Implementation details *****/
|
773
|
+
|
774
|
+
// Hex/Octal/Binary?
|
775
|
+
|
776
|
+
// Special class for parsing into objects that define a ParseFrom() method
|
777
|
+
template <class T>
|
778
|
+
class _RE2_MatchObject {
|
779
|
+
public:
|
780
|
+
static inline bool Parse(const char* str, size_t n, void* dest) {
|
781
|
+
if (dest == NULL) return true;
|
782
|
+
T* object = reinterpret_cast<T*>(dest);
|
783
|
+
return object->ParseFrom(str, n);
|
784
|
+
}
|
785
|
+
};
|
786
|
+
|
787
|
+
class RE2::Arg {
|
788
|
+
public:
|
789
|
+
// Empty constructor so we can declare arrays of RE2::Arg
|
790
|
+
Arg();
|
791
|
+
|
792
|
+
// Constructor specially designed for NULL arguments
|
793
|
+
Arg(void*);
|
794
|
+
Arg(std::nullptr_t);
|
795
|
+
|
796
|
+
typedef bool (*Parser)(const char* str, size_t n, void* dest);
|
797
|
+
|
798
|
+
// Type-specific parsers
|
799
|
+
#define MAKE_PARSER(type, name) \
|
800
|
+
Arg(type* p) : arg_(p), parser_(name) {} \
|
801
|
+
Arg(type* p, Parser parser) : arg_(p), parser_(parser) {}
|
802
|
+
|
803
|
+
MAKE_PARSER(char, parse_char)
|
804
|
+
MAKE_PARSER(signed char, parse_schar)
|
805
|
+
MAKE_PARSER(unsigned char, parse_uchar)
|
806
|
+
MAKE_PARSER(float, parse_float)
|
807
|
+
MAKE_PARSER(double, parse_double)
|
808
|
+
MAKE_PARSER(std::string, parse_string)
|
809
|
+
MAKE_PARSER(StringPiece, parse_stringpiece)
|
810
|
+
|
811
|
+
MAKE_PARSER(short, parse_short)
|
812
|
+
MAKE_PARSER(unsigned short, parse_ushort)
|
813
|
+
MAKE_PARSER(int, parse_int)
|
814
|
+
MAKE_PARSER(unsigned int, parse_uint)
|
815
|
+
MAKE_PARSER(long, parse_long)
|
816
|
+
MAKE_PARSER(unsigned long, parse_ulong)
|
817
|
+
MAKE_PARSER(long long, parse_longlong)
|
818
|
+
MAKE_PARSER(unsigned long long, parse_ulonglong)
|
819
|
+
|
820
|
+
#undef MAKE_PARSER
|
821
|
+
|
822
|
+
// Generic constructor templates
|
823
|
+
template <class T> Arg(T* p)
|
824
|
+
: arg_(p), parser_(_RE2_MatchObject<T>::Parse) { }
|
825
|
+
template <class T> Arg(T* p, Parser parser)
|
826
|
+
: arg_(p), parser_(parser) { }
|
827
|
+
|
828
|
+
// Parse the data
|
829
|
+
bool Parse(const char* str, size_t n) const;
|
830
|
+
|
831
|
+
private:
|
832
|
+
void* arg_;
|
833
|
+
Parser parser_;
|
834
|
+
|
835
|
+
static bool parse_null (const char* str, size_t n, void* dest);
|
836
|
+
static bool parse_char (const char* str, size_t n, void* dest);
|
837
|
+
static bool parse_schar (const char* str, size_t n, void* dest);
|
838
|
+
static bool parse_uchar (const char* str, size_t n, void* dest);
|
839
|
+
static bool parse_float (const char* str, size_t n, void* dest);
|
840
|
+
static bool parse_double (const char* str, size_t n, void* dest);
|
841
|
+
static bool parse_string (const char* str, size_t n, void* dest);
|
842
|
+
static bool parse_stringpiece (const char* str, size_t n, void* dest);
|
843
|
+
|
844
|
+
#define DECLARE_INTEGER_PARSER(name) \
|
845
|
+
private: \
|
846
|
+
static bool parse_##name(const char* str, size_t n, void* dest); \
|
847
|
+
static bool parse_##name##_radix(const char* str, size_t n, void* dest, \
|
848
|
+
int radix); \
|
849
|
+
\
|
850
|
+
public: \
|
851
|
+
static bool parse_##name##_hex(const char* str, size_t n, void* dest); \
|
852
|
+
static bool parse_##name##_octal(const char* str, size_t n, void* dest); \
|
853
|
+
static bool parse_##name##_cradix(const char* str, size_t n, void* dest);
|
854
|
+
|
855
|
+
DECLARE_INTEGER_PARSER(short)
|
856
|
+
DECLARE_INTEGER_PARSER(ushort)
|
857
|
+
DECLARE_INTEGER_PARSER(int)
|
858
|
+
DECLARE_INTEGER_PARSER(uint)
|
859
|
+
DECLARE_INTEGER_PARSER(long)
|
860
|
+
DECLARE_INTEGER_PARSER(ulong)
|
861
|
+
DECLARE_INTEGER_PARSER(longlong)
|
862
|
+
DECLARE_INTEGER_PARSER(ulonglong)
|
863
|
+
|
864
|
+
#undef DECLARE_INTEGER_PARSER
|
865
|
+
|
866
|
+
};
|
867
|
+
|
868
|
+
inline RE2::Arg::Arg() : arg_(NULL), parser_(parse_null) { }
|
869
|
+
inline RE2::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { }
|
870
|
+
inline RE2::Arg::Arg(std::nullptr_t p) : arg_(p), parser_(parse_null) { }
|
871
|
+
|
872
|
+
inline bool RE2::Arg::Parse(const char* str, size_t n) const {
|
873
|
+
return (*parser_)(str, n, arg_);
|
874
|
+
}
|
875
|
+
|
876
|
+
// This part of the parser, appropriate only for ints, deals with bases
|
877
|
+
#define MAKE_INTEGER_PARSER(type, name) \
|
878
|
+
inline RE2::Arg RE2::Hex(type* ptr) { \
|
879
|
+
return RE2::Arg(ptr, RE2::Arg::parse_##name##_hex); \
|
880
|
+
} \
|
881
|
+
inline RE2::Arg RE2::Octal(type* ptr) { \
|
882
|
+
return RE2::Arg(ptr, RE2::Arg::parse_##name##_octal); \
|
883
|
+
} \
|
884
|
+
inline RE2::Arg RE2::CRadix(type* ptr) { \
|
885
|
+
return RE2::Arg(ptr, RE2::Arg::parse_##name##_cradix); \
|
886
|
+
}
|
887
|
+
|
888
|
+
MAKE_INTEGER_PARSER(short, short)
|
889
|
+
MAKE_INTEGER_PARSER(unsigned short, ushort)
|
890
|
+
MAKE_INTEGER_PARSER(int, int)
|
891
|
+
MAKE_INTEGER_PARSER(unsigned int, uint)
|
892
|
+
MAKE_INTEGER_PARSER(long, long)
|
893
|
+
MAKE_INTEGER_PARSER(unsigned long, ulong)
|
894
|
+
MAKE_INTEGER_PARSER(long long, longlong)
|
895
|
+
MAKE_INTEGER_PARSER(unsigned long long, ulonglong)
|
896
|
+
|
897
|
+
#undef MAKE_INTEGER_PARSER
|
898
|
+
|
899
|
+
#ifndef SWIG
|
900
|
+
// Silence warnings about missing initializers for members of LazyRE2.
|
901
|
+
#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ >= 6
|
902
|
+
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
903
|
+
#endif
|
904
|
+
|
905
|
+
// Helper for writing global or static RE2s safely.
|
906
|
+
// Write
|
907
|
+
// static LazyRE2 re = {".*"};
|
908
|
+
// and then use *re instead of writing
|
909
|
+
// static RE2 re(".*");
|
910
|
+
// The former is more careful about multithreaded
|
911
|
+
// situations than the latter.
|
912
|
+
//
|
913
|
+
// N.B. This class never deletes the RE2 object that
|
914
|
+
// it constructs: that's a feature, so that it can be used
|
915
|
+
// for global and function static variables.
|
916
|
+
class LazyRE2 {
|
917
|
+
private:
|
918
|
+
struct NoArg {};
|
919
|
+
|
920
|
+
public:
|
921
|
+
typedef RE2 element_type; // support std::pointer_traits
|
922
|
+
|
923
|
+
// Constructor omitted to preserve braced initialization in C++98.
|
924
|
+
|
925
|
+
// Pretend to be a pointer to Type (never NULL due to on-demand creation):
|
926
|
+
RE2& operator*() const { return *get(); }
|
927
|
+
RE2* operator->() const { return get(); }
|
928
|
+
|
929
|
+
// Named accessor/initializer:
|
930
|
+
RE2* get() const {
|
931
|
+
std::call_once(once_, &LazyRE2::Init, this);
|
932
|
+
return ptr_;
|
933
|
+
}
|
934
|
+
|
935
|
+
// All data fields must be public to support {"foo"} initialization.
|
936
|
+
const char* pattern_;
|
937
|
+
RE2::CannedOptions options_;
|
938
|
+
NoArg barrier_against_excess_initializers_;
|
939
|
+
|
940
|
+
mutable RE2* ptr_;
|
941
|
+
mutable std::once_flag once_;
|
942
|
+
|
943
|
+
private:
|
944
|
+
static void Init(const LazyRE2* lazy_re2) {
|
945
|
+
lazy_re2->ptr_ = new RE2(lazy_re2->pattern_, lazy_re2->options_);
|
946
|
+
}
|
947
|
+
|
948
|
+
void operator=(const LazyRE2&); // disallowed
|
949
|
+
};
|
950
|
+
#endif
|
951
|
+
|
952
|
+
namespace hooks {
|
953
|
+
|
954
|
+
// Most platforms support thread_local. Older versions of iOS don't support
|
955
|
+
// thread_local, but for the sake of brevity, we lump together all versions
|
956
|
+
// of Apple platforms that aren't macOS. If an iOS application really needs
|
957
|
+
// the context pointee someday, we can get more specific then...
|
958
|
+
#define RE2_HAVE_THREAD_LOCAL
|
959
|
+
#if defined(__APPLE__) && !TARGET_OS_OSX
|
960
|
+
#undef RE2_HAVE_THREAD_LOCAL
|
961
|
+
#endif
|
962
|
+
|
963
|
+
// A hook must not make any assumptions regarding the lifetime of the context
|
964
|
+
// pointee beyond the current invocation of the hook. Pointers and references
|
965
|
+
// obtained via the context pointee should be considered invalidated when the
|
966
|
+
// hook returns. Hence, any data about the context pointee (e.g. its pattern)
|
967
|
+
// would have to be copied in order for it to be kept for an indefinite time.
|
968
|
+
//
|
969
|
+
// A hook must not use RE2 for matching. Control flow reentering RE2::Match()
|
970
|
+
// could result in infinite mutual recursion. To discourage that possibility,
|
971
|
+
// RE2 will not maintain the context pointer correctly when used in that way.
|
972
|
+
#ifdef RE2_HAVE_THREAD_LOCAL
|
973
|
+
extern thread_local const RE2* context;
|
974
|
+
#endif
|
975
|
+
|
976
|
+
struct DFAStateCacheReset {
|
977
|
+
int64_t state_budget;
|
978
|
+
size_t state_cache_size;
|
979
|
+
};
|
980
|
+
|
981
|
+
struct DFASearchFailure {
|
982
|
+
// Nothing yet...
|
983
|
+
};
|
984
|
+
|
985
|
+
#define DECLARE_HOOK(type) \
|
986
|
+
using type##Callback = void(const type&); \
|
987
|
+
void Set##type##Hook(type##Callback* cb); \
|
988
|
+
type##Callback* Get##type##Hook();
|
989
|
+
|
990
|
+
DECLARE_HOOK(DFAStateCacheReset)
|
991
|
+
DECLARE_HOOK(DFASearchFailure)
|
992
|
+
|
993
|
+
#undef DECLARE_HOOK
|
994
|
+
|
995
|
+
} // namespace hooks
|
996
|
+
|
997
|
+
} // namespace re2
|
998
|
+
|
999
|
+
using re2::RE2;
|
1000
|
+
using re2::LazyRE2;
|
1001
|
+
|
1002
|
+
#endif // RE2_RE2_H_
|