grpc 1.42.0 → 1.43.1
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 +85 -34
- data/include/grpc/event_engine/event_engine.h +37 -13
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -31
- data/include/grpc/event_engine/memory_allocator.h +27 -11
- data/include/grpc/event_engine/memory_request.h +57 -0
- data/include/grpc/grpc_security.h +276 -145
- data/include/grpc/grpc_security_constants.h +1 -14
- data/include/grpc/impl/codegen/port_platform.h +7 -3
- data/src/core/ext/filters/client_channel/backend_metric.cc +6 -7
- data/src/core/ext/filters/client_channel/backend_metric.h +3 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +81 -40
- data/src/core/ext/filters/client_channel/client_channel.h +5 -4
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -2
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +4 -4
- data/src/core/ext/filters/client_channel/health/health_check_client.h +1 -1
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +12 -14
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -2
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -3
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +27 -80
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +82 -34
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +47 -91
- data/src/core/ext/filters/client_channel/lb_policy.h +75 -59
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +8 -12
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +6 -12
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +222 -294
- data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -7
- data/src/core/ext/filters/client_channel/resolver_registry.h +1 -2
- data/src/core/ext/filters/client_channel/subchannel.cc +4 -4
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +14 -30
- data/src/core/ext/filters/http/http_filters_plugin.cc +3 -5
- data/src/core/ext/filters/http/server/http_server_filter.cc +11 -28
- data/src/core/ext/filters/server_config_selector/server_config_selector.cc +67 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +70 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +265 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +32 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +4 -20
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +0 -2
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +8 -5
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +11 -14
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +6 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +54 -79
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +2 -3
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +9 -13
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +53 -62
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -2
- data/src/core/ext/transport/chttp2/transport/context_list.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/context_list.h +2 -3
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +8 -8
- data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +83 -19
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +33 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +66 -92
- data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
- data/src/core/ext/transport/inproc/inproc_transport.cc +16 -7
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +197 -165
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +41 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +18 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +26 -2
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +107 -82
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +188 -160
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +35 -22
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +253 -218
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +16 -5
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +36 -25
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +56 -39
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +16 -5
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +162 -128
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +51 -36
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +15 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +25 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +114 -90
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +89 -71
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +17 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +117 -93
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +13 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +21 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +18 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +22 -11
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +17 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +41 -27
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +59 -43
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +58 -43
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +15 -4
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +73 -57
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +81 -64
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +25 -14
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +19 -7
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +63 -45
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +66 -47
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +93 -75
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +41 -28
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +503 -440
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +26 -13
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +21 -9
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +13 -2
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +35 -20
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +44 -31
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +22 -11
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +210 -181
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +7 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -3
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +64 -48
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +33 -20
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +81 -65
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +12 -1
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +12 -1
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +75 -58
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +12 -1
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +12 -1
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +25 -13
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +12 -1
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +12 -1
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +61 -46
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +26 -12
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +22 -10
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +17 -6
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +16 -5
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +15 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +27 -14
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +25 -13
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +20 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +30 -17
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +38 -21
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +41 -26
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +7 -0
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +17 -5
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +22 -9
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +2 -0
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +15 -4
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +2 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +20 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +7 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +116 -93
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +2 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c +102 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h +306 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c +56 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h +135 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +122 -98
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +2 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c +115 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h +371 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +35 -22
- data/src/core/ext/upb-generated/google/api/http.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +14 -3
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +247 -210
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +14 -3
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +12 -1
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +37 -23
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +14 -3
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +2 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +37 -18
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +2 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +17 -6
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +2 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +26 -14
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +2 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +105 -83
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +2 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +20 -8
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +2 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +16 -4
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +2 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +65 -47
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +34 -36
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +26 -13
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +2 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +67 -7
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +27 -0
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +27 -3
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +19 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +27 -3
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +26 -2
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +320 -251
- data/src/core/ext/upb-generated/validate/validate.upb.h +20 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +54 -9
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +17 -0
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +13 -2
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +24 -12
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +19 -7
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +18 -7
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +27 -15
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +18 -7
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +28 -15
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +2 -0
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +16 -5
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +2 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +2 -49
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +2 -2
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +2 -35
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +2 -41
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +2 -55
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +2 -19
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +2 -53
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +2 -15
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +2 -33
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +2 -21
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +2 -33
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -13
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +2 -17
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +2 -15
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +2 -17
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +2 -19
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +2 -21
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +2 -23
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +2 -111
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -15
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +2 -43
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -2
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +2 -17
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -17
- data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +2 -19
- data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +2 -15
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +2 -13
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +2 -19
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -15
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +2 -2
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +2 -2
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +2 -59
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +2 -13
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +2 -23
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +2 -11
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +2 -2
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +2 -51
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +2 -13
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +2 -9
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +2 -7
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +2 -7
- data/src/core/ext/xds/certificate_provider_registry.cc +1 -1
- data/src/core/ext/xds/certificate_provider_store.h +1 -1
- data/src/core/ext/xds/xds_api.cc +409 -304
- data/src/core/ext/xds/xds_api.h +3 -1
- data/src/core/ext/xds/xds_bootstrap.cc +6 -3
- data/src/core/ext/xds/xds_certificate_provider.h +1 -2
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +3 -4
- data/src/core/ext/xds/xds_client.cc +395 -291
- data/src/core/ext/xds/xds_client.h +47 -38
- data/src/core/ext/xds/xds_routing.cc +247 -0
- data/src/core/ext/xds/xds_routing.h +98 -0
- data/src/core/ext/xds/xds_server_config_fetcher.cc +975 -261
- data/src/core/lib/avl/avl.h +389 -88
- data/src/core/lib/backoff/backoff.cc +2 -2
- data/src/core/lib/channel/channel_args.cc +17 -17
- data/src/core/lib/channel/channel_args.h +11 -10
- data/src/core/lib/channel/channel_args_preconditioning.cc +47 -0
- data/src/core/lib/channel/channel_args_preconditioning.h +62 -0
- data/src/core/lib/channel/channel_stack_builder.cc +0 -2
- data/src/core/lib/channel/channel_trace.cc +6 -6
- data/src/core/lib/channel/channelz.cc +1 -1
- data/src/core/lib/compression/compression_args.cc +7 -5
- data/src/core/lib/compression/compression_args.h +6 -4
- data/src/core/lib/config/core_configuration.cc +3 -1
- data/src/core/lib/config/core_configuration.h +11 -0
- data/src/core/lib/debug/trace.h +2 -2
- data/src/core/lib/event_engine/{endpoint_config.cc → channel_args_endpoint_config.cc} +2 -1
- data/src/core/lib/event_engine/{endpoint_config_internal.h → channel_args_endpoint_config.h} +3 -3
- data/src/core/lib/event_engine/event_engine.cc +0 -13
- data/src/core/lib/event_engine/event_engine_factory.cc +49 -0
- data/src/core/lib/event_engine/event_engine_factory.h +33 -0
- data/src/core/lib/event_engine/memory_allocator.cc +70 -0
- data/src/core/lib/gpr/tls.h +6 -0
- data/src/core/lib/gprpp/cpp_impl_of.h +45 -0
- data/src/core/lib/gprpp/global_config_env.cc +7 -7
- data/src/core/lib/gprpp/global_config_env.h +2 -2
- data/src/core/lib/gprpp/manual_constructor.h +2 -3
- data/src/core/lib/gprpp/orphanable.h +1 -1
- data/src/core/lib/gprpp/ref_counted.h +1 -1
- data/src/core/lib/gprpp/ref_counted_ptr.h +2 -4
- data/src/core/lib/gprpp/status_helper.h +1 -1
- data/src/core/lib/gprpp/table.h +13 -1
- data/src/core/lib/http/httpcli.cc +30 -26
- data/src/core/lib/http/httpcli.h +14 -12
- data/src/core/lib/iomgr/buffer_list.cc +9 -9
- data/src/core/lib/iomgr/buffer_list.h +13 -13
- data/src/core/lib/iomgr/call_combiner.cc +2 -3
- data/src/core/lib/iomgr/endpoint.h +0 -1
- data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -24
- data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +9 -11
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -14
- data/src/core/lib/iomgr/event_engine/endpoint.cc +2 -3
- data/src/core/lib/iomgr/event_engine/iomgr.cc +5 -25
- data/src/core/lib/iomgr/event_engine/resolver.cc +3 -2
- data/src/core/lib/iomgr/event_engine/tcp.cc +7 -5
- data/src/core/lib/iomgr/event_engine/timer.cc +4 -3
- data/src/core/lib/iomgr/exec_ctx.h +11 -11
- data/src/core/lib/iomgr/executor.cc +12 -15
- data/src/core/lib/iomgr/executor.h +1 -1
- data/src/core/lib/iomgr/tcp_client.cc +2 -4
- data/src/core/lib/iomgr/tcp_client.h +1 -3
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +1 -9
- data/src/core/lib/iomgr/tcp_client_custom.cc +4 -10
- data/src/core/lib/iomgr/tcp_client_posix.cc +7 -23
- data/src/core/lib/iomgr/tcp_client_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_client_windows.cc +1 -10
- data/src/core/lib/iomgr/tcp_custom.cc +9 -36
- data/src/core/lib/iomgr/tcp_custom.h +0 -1
- data/src/core/lib/iomgr/tcp_posix.cc +28 -33
- data/src/core/lib/iomgr/tcp_posix.h +1 -3
- data/src/core/lib/iomgr/tcp_server.cc +4 -6
- data/src/core/lib/iomgr/tcp_server.h +6 -8
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -15
- data/src/core/lib/iomgr/tcp_server_posix.cc +18 -22
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +19 -18
- data/src/core/lib/iomgr/tcp_server_windows.cc +5 -12
- data/src/core/lib/iomgr/tcp_windows.cc +2 -7
- data/src/core/lib/iomgr/tcp_windows.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +1 -1
- data/src/core/lib/iomgr/unix_sockets_posix.h +1 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +1 -1
- data/src/core/lib/iomgr/work_serializer.cc +115 -44
- data/src/core/lib/iomgr/work_serializer.h +16 -4
- data/src/core/lib/json/json_reader.cc +83 -35
- data/src/core/lib/json/json_util.cc +1 -1
- data/src/core/lib/promise/activity.cc +115 -0
- data/src/core/lib/promise/activity.h +499 -0
- data/src/core/lib/promise/context.h +86 -0
- data/src/core/lib/promise/detail/basic_seq.h +407 -0
- data/src/core/lib/promise/detail/promise_factory.h +189 -0
- data/src/core/lib/promise/detail/promise_like.h +85 -0
- data/src/core/lib/promise/detail/status.h +44 -0
- data/src/core/lib/promise/detail/switch.h +1455 -0
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
- data/src/core/lib/promise/loop.h +108 -0
- data/src/core/lib/promise/map.h +88 -0
- data/src/core/lib/promise/poll.h +60 -0
- data/src/core/lib/promise/race.h +84 -0
- data/src/core/lib/promise/seq.h +71 -0
- data/src/core/lib/resource_quota/api.cc +108 -0
- data/src/core/lib/resource_quota/api.h +41 -0
- data/src/core/lib/resource_quota/memory_quota.cc +454 -0
- data/src/core/lib/resource_quota/memory_quota.h +421 -0
- data/src/core/lib/resource_quota/resource_quota.cc +33 -0
- data/src/core/lib/resource_quota/resource_quota.h +58 -0
- data/src/core/lib/resource_quota/thread_quota.cc +43 -0
- data/src/core/lib/resource_quota/thread_quota.h +57 -0
- data/src/core/lib/resource_quota/trace.cc +19 -0
- data/src/core/lib/resource_quota/trace.h +24 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +13 -19
- data/src/core/lib/security/authorization/evaluate_args.h +2 -1
- data/src/core/lib/security/authorization/sdk_server_authz_filter.cc +3 -1
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +11 -12
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +9 -10
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +3 -4
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +4 -6
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +4 -6
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +18 -22
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +11 -12
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +7 -8
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +201 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +106 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +11 -90
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +19 -82
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +21 -10
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +28 -33
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +3 -3
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +3 -4
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +2 -2
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +7 -7
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +1 -2
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +4 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +10 -2
- data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +344 -195
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +64 -41
- data/src/core/lib/security/transport/security_handshaker.cc +2 -2
- data/src/core/lib/slice/percent_encoding.cc +30 -86
- data/src/core/lib/slice/percent_encoding.h +5 -11
- data/src/core/lib/slice/slice.cc +7 -7
- data/src/core/lib/slice/slice.h +341 -0
- data/src/core/lib/slice/slice_buffer.cc +4 -0
- data/src/core/lib/slice/slice_intern.cc +1 -1
- data/src/core/lib/slice/slice_refcount.h +5 -1
- data/src/core/lib/slice/slice_refcount_base.h +19 -11
- data/src/core/lib/slice/static_slice.cc +331 -483
- data/src/core/lib/slice/static_slice.h +101 -132
- data/src/core/lib/surface/builtins.cc +1 -1
- data/src/core/lib/surface/call.cc +85 -59
- data/src/core/lib/surface/channel.cc +4 -29
- data/src/core/lib/surface/channel.h +2 -12
- data/src/core/lib/surface/completion_queue.cc +2 -2
- data/src/core/lib/surface/init.cc +0 -1
- data/src/core/lib/surface/lame_client.cc +24 -17
- data/src/core/lib/surface/server.cc +22 -22
- data/src/core/lib/surface/server.h +8 -9
- data/src/core/lib/surface/validate_metadata.cc +2 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +1 -1
- data/src/core/lib/transport/byte_stream.cc +4 -0
- data/src/core/lib/transport/metadata.h +4 -4
- data/src/core/lib/transport/metadata_batch.cc +5 -0
- data/src/core/lib/transport/metadata_batch.h +174 -99
- data/src/core/lib/transport/parsed_metadata.cc +35 -0
- data/src/core/lib/transport/parsed_metadata.h +180 -61
- data/src/core/lib/transport/pid_controller.cc +4 -4
- data/src/core/lib/transport/static_metadata.cc +529 -614
- data/src/core/lib/transport/static_metadata.h +0 -18
- data/src/core/lib/transport/transport.cc +4 -26
- data/src/core/lib/transport/transport.h +0 -1
- data/src/core/lib/transport/transport_op_string.cc +1 -1
- data/src/core/lib/uri/uri_parser.cc +19 -19
- data/src/core/lib/uri/uri_parser.h +2 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
- data/src/core/tsi/local_transport_security.cc +15 -15
- data/src/core/tsi/ssl_transport_security.cc +30 -1
- data/src/core/tsi/ssl_transport_security.h +1 -0
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/container.h +101 -91
- data/third_party/abseil-cpp/absl/base/attributes.h +64 -31
- data/third_party/abseil-cpp/absl/base/config.h +67 -37
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +1 -26
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +2 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +69 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +4 -4
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +16 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +4 -4
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/container/fixed_array.h +0 -5
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +105 -97
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +17 -15
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +18 -102
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +37 -78
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +388 -423
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +3 -2
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -8
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +251 -120
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +11 -1
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +12 -11
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +6 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +12 -5
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +25 -7
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +8 -2
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +21 -3
- data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +2 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +2 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +14 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
- data/third_party/abseil-cpp/absl/functional/function_ref.h +4 -1
- data/third_party/abseil-cpp/absl/hash/hash.h +22 -0
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +15 -16
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +88 -37
- data/third_party/abseil-cpp/absl/hash/internal/{wyhash.cc → low_level_hash.cc} +23 -11
- data/third_party/abseil-cpp/absl/hash/internal/{wyhash.h → low_level_hash.h} +14 -12
- data/third_party/abseil-cpp/absl/memory/memory.h +1 -1
- data/third_party/abseil-cpp/absl/meta/type_traits.h +32 -2
- data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -10
- data/third_party/abseil-cpp/absl/numeric/int128.h +146 -73
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
- data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.cc +4 -4
- data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.h +6 -6
- data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +5 -5
- data/third_party/abseil-cpp/absl/status/status.cc +9 -17
- data/third_party/abseil-cpp/absl/status/status.h +19 -15
- data/third_party/abseil-cpp/absl/status/statusor.cc +34 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +31 -21
- data/third_party/abseil-cpp/absl/strings/charconv.cc +3 -3
- data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +453 -359
- data/third_party/abseil-cpp/absl/strings/cord.h +197 -70
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +6 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +140 -63
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +7 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +55 -181
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +42 -24
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +4 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +36 -18
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +62 -73
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +24 -16
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -35
- data/third_party/abseil-cpp/absl/strings/numbers.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/numbers.h +34 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -2
- data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
- data/third_party/abseil-cpp/absl/strings/string_view.h +120 -39
- data/third_party/abseil-cpp/absl/strings/substitute.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/substitute.h +99 -74
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +25 -15
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +5 -3
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -1
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +3 -3
- data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +93 -20
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +83 -21
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -3
- data/third_party/abseil-cpp/absl/time/time.h +67 -36
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
- data/third_party/abseil-cpp/absl/types/bad_variant_access.h +2 -2
- data/third_party/abseil-cpp/absl/types/span.h +3 -3
- data/third_party/boringssl-with-bazel/err_data.c +681 -677
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +19 -11
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +41 -30
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +59 -47
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +24 -28
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +48 -272
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -6
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -23
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +2 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +216 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +21 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +971 -253
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +3 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +0 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +17 -41
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +8 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +29 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +3 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +24 -28
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +6 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +12 -43
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +4 -3
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +3 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +4 -0
- data/third_party/upb/upb/decode.c +309 -178
- data/third_party/upb/upb/decode_fast.c +1 -1
- data/third_party/upb/upb/decode_internal.h +1 -0
- data/third_party/upb/upb/def.c +330 -85
- data/third_party/upb/upb/def.h +45 -14
- data/third_party/upb/upb/def.hpp +17 -4
- data/third_party/upb/upb/encode.c +100 -40
- data/third_party/upb/upb/msg.c +22 -9
- data/third_party/upb/upb/msg_internal.h +90 -8
- data/third_party/upb/upb/reflection.c +98 -58
- data/third_party/upb/upb/reflection.h +6 -2
- data/third_party/upb/upb/text_encode.c +3 -3
- data/third_party/upb/upb/upb.c +8 -0
- metadata +116 -56
- data/src/core/lib/avl/avl.cc +0 -306
- data/src/core/lib/gprpp/match.h +0 -73
- data/src/core/lib/gprpp/overload.h +0 -59
- data/src/core/lib/iomgr/event_engine/iomgr.h +0 -42
- data/src/core/lib/iomgr/resource_quota.cc +0 -1106
- data/src/core/lib/iomgr/resource_quota.h +0 -226
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
@@ -0,0 +1,298 @@
|
|
1
|
+
// Copyright 2019 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_STRINGS_CORDZ_INFO_H_
|
16
|
+
#define ABSL_STRINGS_CORDZ_INFO_H_
|
17
|
+
|
18
|
+
#include <atomic>
|
19
|
+
#include <cstdint>
|
20
|
+
#include <functional>
|
21
|
+
|
22
|
+
#include "absl/base/config.h"
|
23
|
+
#include "absl/base/internal/raw_logging.h"
|
24
|
+
#include "absl/base/internal/spinlock.h"
|
25
|
+
#include "absl/base/thread_annotations.h"
|
26
|
+
#include "absl/strings/internal/cord_internal.h"
|
27
|
+
#include "absl/strings/internal/cordz_functions.h"
|
28
|
+
#include "absl/strings/internal/cordz_handle.h"
|
29
|
+
#include "absl/strings/internal/cordz_statistics.h"
|
30
|
+
#include "absl/strings/internal/cordz_update_tracker.h"
|
31
|
+
#include "absl/synchronization/mutex.h"
|
32
|
+
#include "absl/types/span.h"
|
33
|
+
|
34
|
+
namespace absl {
|
35
|
+
ABSL_NAMESPACE_BEGIN
|
36
|
+
namespace cord_internal {
|
37
|
+
|
38
|
+
// CordzInfo tracks a profiled Cord. Each of these objects can be in two places.
|
39
|
+
// If a Cord is alive, the CordzInfo will be in the global_cordz_infos map, and
|
40
|
+
// can also be retrieved via the linked list starting with
|
41
|
+
// global_cordz_infos_head and continued via the cordz_info_next() method. When
|
42
|
+
// a Cord has reached the end of its lifespan, the CordzInfo object will be
|
43
|
+
// migrated out of the global_cordz_infos list and the global_cordz_infos_map,
|
44
|
+
// and will either be deleted or appended to the global_delete_queue. If it is
|
45
|
+
// placed on the global_delete_queue, the CordzInfo object will be cleaned in
|
46
|
+
// the destructor of a CordzSampleToken object.
|
47
|
+
class ABSL_LOCKABLE CordzInfo : public CordzHandle {
|
48
|
+
public:
|
49
|
+
using MethodIdentifier = CordzUpdateTracker::MethodIdentifier;
|
50
|
+
|
51
|
+
// TrackCord creates a CordzInfo instance which tracks important metrics of
|
52
|
+
// a sampled cord, and stores the created CordzInfo instance into `cord'. All
|
53
|
+
// CordzInfo instances are placed in a global list which is used to discover
|
54
|
+
// and snapshot all actively tracked cords. Callers are responsible for
|
55
|
+
// calling UntrackCord() before the tracked Cord instance is deleted, or to
|
56
|
+
// stop tracking the sampled Cord. Callers are also responsible for guarding
|
57
|
+
// changes to the 'tree' value of a Cord (InlineData.tree) through the Lock()
|
58
|
+
// and Unlock() calls. Any change resulting in a new tree value for the cord
|
59
|
+
// requires a call to SetCordRep() before the old tree has been unreffed
|
60
|
+
// and/or deleted. `method` identifies the Cord public API method initiating
|
61
|
+
// the cord to be sampled.
|
62
|
+
// Requires `cord` to hold a tree, and `cord.cordz_info()` to be null.
|
63
|
+
static void TrackCord(InlineData& cord, MethodIdentifier method);
|
64
|
+
|
65
|
+
// Identical to TrackCord(), except that this function fills the
|
66
|
+
// `parent_stack` and `parent_method` properties of the returned CordzInfo
|
67
|
+
// instance from the provided `src` instance if `src` is sampled.
|
68
|
+
// This function should be used for sampling 'copy constructed' and 'copy
|
69
|
+
// assigned' cords. This function allows 'cord` to be already sampled, in
|
70
|
+
// which case the CordzInfo will be newly created from `src`.
|
71
|
+
static void TrackCord(InlineData& cord, const InlineData& src,
|
72
|
+
MethodIdentifier method);
|
73
|
+
|
74
|
+
// Maybe sample the cord identified by 'cord' for method 'method'.
|
75
|
+
// Uses `cordz_should_profile` to randomly pick cords to be sampled, and if
|
76
|
+
// so, invokes `TrackCord` to start sampling `cord`.
|
77
|
+
static void MaybeTrackCord(InlineData& cord, MethodIdentifier method);
|
78
|
+
|
79
|
+
// Maybe sample the cord identified by 'cord' for method 'method'.
|
80
|
+
// `src` identifies a 'parent' cord which is assigned to `cord`, typically the
|
81
|
+
// input cord for a copy constructor, or an assign method such as `operator=`
|
82
|
+
// `cord` will be sampled if (and only if) `src` is sampled.
|
83
|
+
// If `cord` is currently being sampled and `src` is not being sampled, then
|
84
|
+
// this function will stop sampling the cord and reset the cord's cordz_info.
|
85
|
+
//
|
86
|
+
// Previously this function defined that `cord` will be sampled if either
|
87
|
+
// `src` is sampled, or if `cord` is randomly picked for sampling. However,
|
88
|
+
// this can cause issues, as there may be paths where some cord is assigned an
|
89
|
+
// indirect copy of it's own value. As such a 'string of copies' would then
|
90
|
+
// remain sampled (`src.is_profiled`), then assigning such a cord back to
|
91
|
+
// 'itself' creates a cycle where the cord will converge to 'always sampled`.
|
92
|
+
//
|
93
|
+
// For example:
|
94
|
+
//
|
95
|
+
// Cord x;
|
96
|
+
// for (...) {
|
97
|
+
// // Copy ctor --> y.is_profiled := x.is_profiled | random(...)
|
98
|
+
// Cord y = x;
|
99
|
+
// ...
|
100
|
+
// // Assign x = y --> x.is_profiled = y.is_profiled | random(...)
|
101
|
+
// // ==> x.is_profiled |= random(...)
|
102
|
+
// // ==> x converges to 'always profiled'
|
103
|
+
// x = y;
|
104
|
+
// }
|
105
|
+
static void MaybeTrackCord(InlineData& cord, const InlineData& src,
|
106
|
+
MethodIdentifier method);
|
107
|
+
|
108
|
+
// Stops tracking changes for a sampled cord, and deletes the provided info.
|
109
|
+
// This function must be called before the sampled cord instance is deleted,
|
110
|
+
// and before the root cordrep of the sampled cord is unreffed.
|
111
|
+
// This function may extend the lifetime of the cordrep in cases where the
|
112
|
+
// CordInfo instance is being held by a concurrent collection thread.
|
113
|
+
void Untrack();
|
114
|
+
|
115
|
+
// Invokes UntrackCord() on `info` if `info` is not null.
|
116
|
+
static void MaybeUntrackCord(CordzInfo* info);
|
117
|
+
|
118
|
+
CordzInfo() = delete;
|
119
|
+
CordzInfo(const CordzInfo&) = delete;
|
120
|
+
CordzInfo& operator=(const CordzInfo&) = delete;
|
121
|
+
|
122
|
+
// Retrieves the oldest existing CordzInfo.
|
123
|
+
static CordzInfo* Head(const CordzSnapshot& snapshot)
|
124
|
+
ABSL_NO_THREAD_SAFETY_ANALYSIS;
|
125
|
+
|
126
|
+
// Retrieves the next oldest existing CordzInfo older than 'this' instance.
|
127
|
+
CordzInfo* Next(const CordzSnapshot& snapshot) const
|
128
|
+
ABSL_NO_THREAD_SAFETY_ANALYSIS;
|
129
|
+
|
130
|
+
// Locks this instance for the update identified by `method`.
|
131
|
+
// Increases the count for `method` in `update_tracker`.
|
132
|
+
void Lock(MethodIdentifier method) ABSL_EXCLUSIVE_LOCK_FUNCTION(mutex_);
|
133
|
+
|
134
|
+
// Unlocks this instance. If the contained `rep` has been set to null
|
135
|
+
// indicating the Cord has been cleared or is otherwise no longer sampled,
|
136
|
+
// then this method will delete this CordzInfo instance.
|
137
|
+
void Unlock() ABSL_UNLOCK_FUNCTION(mutex_);
|
138
|
+
|
139
|
+
// Asserts that this CordzInfo instance is locked.
|
140
|
+
void AssertHeld() ABSL_ASSERT_EXCLUSIVE_LOCK(mutex_);
|
141
|
+
|
142
|
+
// Updates the `rep` property of this instance. This methods is invoked by
|
143
|
+
// Cord logic each time the root node of a sampled Cord changes, and before
|
144
|
+
// the old root reference count is deleted. This guarantees that collection
|
145
|
+
// code can always safely take a reference on the tracked cord.
|
146
|
+
// Requires a lock to be held through the `Lock()` method.
|
147
|
+
// TODO(b/117940323): annotate with ABSL_EXCLUSIVE_LOCKS_REQUIRED once all
|
148
|
+
// Cord code is in a state where this can be proven true by the compiler.
|
149
|
+
void SetCordRep(CordRep* rep);
|
150
|
+
|
151
|
+
// Returns the current `rep` property of this instance with a reference
|
152
|
+
// added, or null if this instance represents a cord that has since been
|
153
|
+
// deleted or untracked.
|
154
|
+
CordRep* RefCordRep() const ABSL_LOCKS_EXCLUDED(mutex_);
|
155
|
+
|
156
|
+
// Returns the current value of `rep_` for testing purposes only.
|
157
|
+
CordRep* GetCordRepForTesting() const ABSL_NO_THREAD_SAFETY_ANALYSIS {
|
158
|
+
return rep_;
|
159
|
+
}
|
160
|
+
|
161
|
+
// Sets the current value of `rep_` for testing purposes only.
|
162
|
+
void SetCordRepForTesting(CordRep* rep) ABSL_NO_THREAD_SAFETY_ANALYSIS {
|
163
|
+
rep_ = rep;
|
164
|
+
}
|
165
|
+
|
166
|
+
// Returns the stack trace for where the cord was first sampled. Cords are
|
167
|
+
// potentially sampled when they promote from an inlined cord to a tree or
|
168
|
+
// ring representation, which is not necessarily the location where the cord
|
169
|
+
// was first created. Some cords are created as inlined cords, and only as
|
170
|
+
// data is added do they become a non-inlined cord. However, typically the
|
171
|
+
// location represents reasonably well where the cord is 'created'.
|
172
|
+
absl::Span<void* const> GetStack() const;
|
173
|
+
|
174
|
+
// Returns the stack trace for a sampled cord's 'parent stack trace'. This
|
175
|
+
// value may be set if the cord is sampled (promoted) after being created
|
176
|
+
// from, or being assigned the value of an existing (sampled) cord.
|
177
|
+
absl::Span<void* const> GetParentStack() const;
|
178
|
+
|
179
|
+
// Retrieves the CordzStatistics associated with this Cord. The statistics
|
180
|
+
// are only updated when a Cord goes through a mutation, such as an Append
|
181
|
+
// or RemovePrefix.
|
182
|
+
CordzStatistics GetCordzStatistics() const;
|
183
|
+
|
184
|
+
private:
|
185
|
+
using SpinLock = absl::base_internal::SpinLock;
|
186
|
+
using SpinLockHolder = ::absl::base_internal::SpinLockHolder;
|
187
|
+
|
188
|
+
// Global cordz info list. CordzInfo stores a pointer to the global list
|
189
|
+
// instance to harden against ODR violations.
|
190
|
+
struct List {
|
191
|
+
constexpr explicit List(absl::ConstInitType)
|
192
|
+
: mutex(absl::kConstInit,
|
193
|
+
absl::base_internal::SCHEDULE_COOPERATIVE_AND_KERNEL) {}
|
194
|
+
|
195
|
+
SpinLock mutex;
|
196
|
+
std::atomic<CordzInfo*> head ABSL_GUARDED_BY(mutex){nullptr};
|
197
|
+
};
|
198
|
+
|
199
|
+
static constexpr int kMaxStackDepth = 64;
|
200
|
+
|
201
|
+
explicit CordzInfo(CordRep* rep, const CordzInfo* src,
|
202
|
+
MethodIdentifier method);
|
203
|
+
~CordzInfo() override;
|
204
|
+
|
205
|
+
// Sets `rep_` without holding a lock.
|
206
|
+
void UnsafeSetCordRep(CordRep* rep) ABSL_NO_THREAD_SAFETY_ANALYSIS;
|
207
|
+
|
208
|
+
void Track();
|
209
|
+
|
210
|
+
// Returns the parent method from `src`, which is either `parent_method_` or
|
211
|
+
// `method_` depending on `parent_method_` being kUnknown.
|
212
|
+
// Returns kUnknown if `src` is null.
|
213
|
+
static MethodIdentifier GetParentMethod(const CordzInfo* src);
|
214
|
+
|
215
|
+
// Fills the provided stack from `src`, copying either `parent_stack_` or
|
216
|
+
// `stack_` depending on `parent_stack_` being empty, returning the size of
|
217
|
+
// the parent stack.
|
218
|
+
// Returns 0 if `src` is null.
|
219
|
+
static int FillParentStack(const CordzInfo* src, void** stack);
|
220
|
+
|
221
|
+
void ODRCheck() const {
|
222
|
+
#ifndef NDEBUG
|
223
|
+
ABSL_RAW_CHECK(list_ == &global_list_, "ODR violation in Cord");
|
224
|
+
#endif
|
225
|
+
}
|
226
|
+
|
227
|
+
// Non-inlined implementation of `MaybeTrackCord`, which is executed if
|
228
|
+
// either `src` is sampled or `cord` is sampled, and either untracks or
|
229
|
+
// tracks `cord` as documented per `MaybeTrackCord`.
|
230
|
+
static void MaybeTrackCordImpl(InlineData& cord, const InlineData& src,
|
231
|
+
MethodIdentifier method);
|
232
|
+
|
233
|
+
ABSL_CONST_INIT static List global_list_;
|
234
|
+
List* const list_ = &global_list_;
|
235
|
+
|
236
|
+
// ci_prev_ and ci_next_ require the global list mutex to be held.
|
237
|
+
// Unfortunately we can't use thread annotations such that the thread safety
|
238
|
+
// analysis understands that list_ and global_list_ are one and the same.
|
239
|
+
std::atomic<CordzInfo*> ci_prev_{nullptr};
|
240
|
+
std::atomic<CordzInfo*> ci_next_{nullptr};
|
241
|
+
|
242
|
+
mutable absl::Mutex mutex_;
|
243
|
+
CordRep* rep_ ABSL_GUARDED_BY(mutex_);
|
244
|
+
|
245
|
+
void* stack_[kMaxStackDepth];
|
246
|
+
void* parent_stack_[kMaxStackDepth];
|
247
|
+
const int stack_depth_;
|
248
|
+
const int parent_stack_depth_;
|
249
|
+
const MethodIdentifier method_;
|
250
|
+
const MethodIdentifier parent_method_;
|
251
|
+
CordzUpdateTracker update_tracker_;
|
252
|
+
const absl::Time create_time_;
|
253
|
+
};
|
254
|
+
|
255
|
+
inline ABSL_ATTRIBUTE_ALWAYS_INLINE void CordzInfo::MaybeTrackCord(
|
256
|
+
InlineData& cord, MethodIdentifier method) {
|
257
|
+
if (ABSL_PREDICT_FALSE(cordz_should_profile())) {
|
258
|
+
TrackCord(cord, method);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
inline ABSL_ATTRIBUTE_ALWAYS_INLINE void CordzInfo::MaybeTrackCord(
|
263
|
+
InlineData& cord, const InlineData& src, MethodIdentifier method) {
|
264
|
+
if (ABSL_PREDICT_FALSE(InlineData::is_either_profiled(cord, src))) {
|
265
|
+
MaybeTrackCordImpl(cord, src, method);
|
266
|
+
}
|
267
|
+
}
|
268
|
+
|
269
|
+
inline ABSL_ATTRIBUTE_ALWAYS_INLINE void CordzInfo::MaybeUntrackCord(
|
270
|
+
CordzInfo* info) {
|
271
|
+
if (ABSL_PREDICT_FALSE(info)) {
|
272
|
+
info->Untrack();
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
inline void CordzInfo::AssertHeld() ABSL_ASSERT_EXCLUSIVE_LOCK(mutex_) {
|
277
|
+
#ifndef NDEBUG
|
278
|
+
mutex_.AssertHeld();
|
279
|
+
#endif
|
280
|
+
}
|
281
|
+
|
282
|
+
inline void CordzInfo::SetCordRep(CordRep* rep) {
|
283
|
+
AssertHeld();
|
284
|
+
rep_ = rep;
|
285
|
+
}
|
286
|
+
|
287
|
+
inline void CordzInfo::UnsafeSetCordRep(CordRep* rep) { rep_ = rep; }
|
288
|
+
|
289
|
+
inline CordRep* CordzInfo::RefCordRep() const ABSL_LOCKS_EXCLUDED(mutex_) {
|
290
|
+
MutexLock lock(&mutex_);
|
291
|
+
return rep_ ? CordRep::Ref(rep_) : nullptr;
|
292
|
+
}
|
293
|
+
|
294
|
+
} // namespace cord_internal
|
295
|
+
ABSL_NAMESPACE_END
|
296
|
+
} // namespace absl
|
297
|
+
|
298
|
+
#endif // ABSL_STRINGS_CORDZ_INFO_H_
|
@@ -0,0 +1,87 @@
|
|
1
|
+
// Copyright 2019 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_STRINGS_INTERNAL_CORDZ_STATISTICS_H_
|
16
|
+
#define ABSL_STRINGS_INTERNAL_CORDZ_STATISTICS_H_
|
17
|
+
|
18
|
+
#include <cstdint>
|
19
|
+
|
20
|
+
#include "absl/base/config.h"
|
21
|
+
#include "absl/strings/internal/cordz_update_tracker.h"
|
22
|
+
|
23
|
+
namespace absl {
|
24
|
+
ABSL_NAMESPACE_BEGIN
|
25
|
+
namespace cord_internal {
|
26
|
+
|
27
|
+
// CordzStatistics captures some meta information about a Cord's shape.
|
28
|
+
struct CordzStatistics {
|
29
|
+
using MethodIdentifier = CordzUpdateTracker::MethodIdentifier;
|
30
|
+
|
31
|
+
// Node counts information
|
32
|
+
struct NodeCounts {
|
33
|
+
size_t flat = 0; // #flats
|
34
|
+
size_t flat_64 = 0; // #flats up to 64 bytes
|
35
|
+
size_t flat_128 = 0; // #flats up to 128 bytes
|
36
|
+
size_t flat_256 = 0; // #flats up to 256 bytes
|
37
|
+
size_t flat_512 = 0; // #flats up to 512 bytes
|
38
|
+
size_t flat_1k = 0; // #flats up to 1K bytes
|
39
|
+
size_t external = 0; // #external reps
|
40
|
+
size_t substring = 0; // #substring reps
|
41
|
+
size_t concat = 0; // #concat reps
|
42
|
+
size_t ring = 0; // #ring buffer reps
|
43
|
+
size_t btree = 0; // #btree reps
|
44
|
+
};
|
45
|
+
|
46
|
+
// The size of the cord in bytes. This matches the result of Cord::size().
|
47
|
+
int64_t size = 0;
|
48
|
+
|
49
|
+
// The estimated memory used by the sampled cord. This value matches the
|
50
|
+
// value as reported by Cord::EstimatedMemoryUsage().
|
51
|
+
// A value of 0 implies the property has not been recorded.
|
52
|
+
int64_t estimated_memory_usage = 0;
|
53
|
+
|
54
|
+
// The effective memory used by the sampled cord, inversely weighted by the
|
55
|
+
// effective indegree of each allocated node. This is a representation of the
|
56
|
+
// fair share of memory usage that should be attributed to the sampled cord.
|
57
|
+
// This value is more useful for cases where one or more nodes are referenced
|
58
|
+
// by multiple Cord instances, and for cases where a Cord includes the same
|
59
|
+
// node multiple times (either directly or indirectly).
|
60
|
+
// A value of 0 implies the property has not been recorded.
|
61
|
+
int64_t estimated_fair_share_memory_usage = 0;
|
62
|
+
|
63
|
+
// The total number of nodes referenced by this cord.
|
64
|
+
// For ring buffer Cords, this includes the 'ring buffer' node.
|
65
|
+
// For btree Cords, this includes all 'CordRepBtree' tree nodes as well as all
|
66
|
+
// the substring, flat and external nodes referenced by the tree.
|
67
|
+
// A value of 0 implies the property has not been recorded.
|
68
|
+
int64_t node_count = 0;
|
69
|
+
|
70
|
+
// Detailed node counts per type
|
71
|
+
NodeCounts node_counts;
|
72
|
+
|
73
|
+
// The cord method responsible for sampling the cord.
|
74
|
+
MethodIdentifier method = MethodIdentifier::kUnknown;
|
75
|
+
|
76
|
+
// The cord method responsible for sampling the parent cord if applicable.
|
77
|
+
MethodIdentifier parent_method = MethodIdentifier::kUnknown;
|
78
|
+
|
79
|
+
// Update tracker tracking invocation count per cord method.
|
80
|
+
CordzUpdateTracker update_tracker;
|
81
|
+
};
|
82
|
+
|
83
|
+
} // namespace cord_internal
|
84
|
+
ABSL_NAMESPACE_END
|
85
|
+
} // namespace absl
|
86
|
+
|
87
|
+
#endif // ABSL_STRINGS_INTERNAL_CORDZ_STATISTICS_H_
|
@@ -0,0 +1,71 @@
|
|
1
|
+
// Copyright 2021 The Abseil Authors
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_STRINGS_INTERNAL_CORDZ_UPDATE_SCOPE_H_
|
16
|
+
#define ABSL_STRINGS_INTERNAL_CORDZ_UPDATE_SCOPE_H_
|
17
|
+
|
18
|
+
#include "absl/base/config.h"
|
19
|
+
#include "absl/base/optimization.h"
|
20
|
+
#include "absl/base/thread_annotations.h"
|
21
|
+
#include "absl/strings/internal/cord_internal.h"
|
22
|
+
#include "absl/strings/internal/cordz_info.h"
|
23
|
+
#include "absl/strings/internal/cordz_update_tracker.h"
|
24
|
+
|
25
|
+
namespace absl {
|
26
|
+
ABSL_NAMESPACE_BEGIN
|
27
|
+
namespace cord_internal {
|
28
|
+
|
29
|
+
// CordzUpdateScope scopes an update to the provided CordzInfo.
|
30
|
+
// The class invokes `info->Lock(method)` and `info->Unlock()` to guard
|
31
|
+
// cordrep updates. This class does nothing if `info` is null.
|
32
|
+
// See also the 'Lock`, `Unlock` and `SetCordRep` methods in `CordzInfo`.
|
33
|
+
class ABSL_SCOPED_LOCKABLE CordzUpdateScope {
|
34
|
+
public:
|
35
|
+
CordzUpdateScope(CordzInfo* info, CordzUpdateTracker::MethodIdentifier method)
|
36
|
+
ABSL_EXCLUSIVE_LOCK_FUNCTION(info)
|
37
|
+
: info_(info) {
|
38
|
+
if (ABSL_PREDICT_FALSE(info_)) {
|
39
|
+
info->Lock(method);
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
// CordzUpdateScope can not be copied or assigned to.
|
44
|
+
CordzUpdateScope(CordzUpdateScope&& rhs) = delete;
|
45
|
+
CordzUpdateScope(const CordzUpdateScope&) = delete;
|
46
|
+
CordzUpdateScope& operator=(CordzUpdateScope&& rhs) = delete;
|
47
|
+
CordzUpdateScope& operator=(const CordzUpdateScope&) = delete;
|
48
|
+
|
49
|
+
~CordzUpdateScope() ABSL_UNLOCK_FUNCTION() {
|
50
|
+
if (ABSL_PREDICT_FALSE(info_)) {
|
51
|
+
info_->Unlock();
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
void SetCordRep(CordRep* rep) const {
|
56
|
+
if (ABSL_PREDICT_FALSE(info_)) {
|
57
|
+
info_->SetCordRep(rep);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
CordzInfo* info() const { return info_; }
|
62
|
+
|
63
|
+
private:
|
64
|
+
CordzInfo* info_;
|
65
|
+
};
|
66
|
+
|
67
|
+
} // namespace cord_internal
|
68
|
+
ABSL_NAMESPACE_END
|
69
|
+
} // namespace absl
|
70
|
+
|
71
|
+
#endif // ABSL_STRINGS_INTERNAL_CORDZ_UPDATE_SCOPE_H_
|
@@ -0,0 +1,121 @@
|
|
1
|
+
// Copyright 2021 The Abseil Authors
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_STRINGS_INTERNAL_CORDZ_UPDATE_TRACKER_H_
|
16
|
+
#define ABSL_STRINGS_INTERNAL_CORDZ_UPDATE_TRACKER_H_
|
17
|
+
|
18
|
+
#include <atomic>
|
19
|
+
#include <cstdint>
|
20
|
+
|
21
|
+
#include "absl/base/config.h"
|
22
|
+
|
23
|
+
namespace absl {
|
24
|
+
ABSL_NAMESPACE_BEGIN
|
25
|
+
namespace cord_internal {
|
26
|
+
|
27
|
+
// CordzUpdateTracker tracks counters for Cord update methods.
|
28
|
+
//
|
29
|
+
// The purpose of CordzUpdateTracker is to track the number of calls to methods
|
30
|
+
// updating Cord data for sampled cords. The class internally uses 'lossy'
|
31
|
+
// atomic operations: Cord is thread-compatible, so there is no need to
|
32
|
+
// synchronize updates. However, Cordz collection threads may call 'Value()' at
|
33
|
+
// any point, so the class needs to provide thread safe access.
|
34
|
+
//
|
35
|
+
// This class is thread-safe. But as per above comments, all non-const methods
|
36
|
+
// should be used single-threaded only: updates are thread-safe but lossy.
|
37
|
+
class CordzUpdateTracker {
|
38
|
+
public:
|
39
|
+
// Tracked update methods.
|
40
|
+
enum MethodIdentifier {
|
41
|
+
kUnknown,
|
42
|
+
kAppendBuffer,
|
43
|
+
kAppendCord,
|
44
|
+
kAppendExternalMemory,
|
45
|
+
kAppendString,
|
46
|
+
kAssignCord,
|
47
|
+
kAssignString,
|
48
|
+
kClear,
|
49
|
+
kConstructorCord,
|
50
|
+
kConstructorString,
|
51
|
+
kCordReader,
|
52
|
+
kFlatten,
|
53
|
+
kGetAppendRegion,
|
54
|
+
kMakeCordFromExternal,
|
55
|
+
kMoveAppendCord,
|
56
|
+
kMoveAssignCord,
|
57
|
+
kMovePrependCord,
|
58
|
+
kPrependBuffer,
|
59
|
+
kPrependCord,
|
60
|
+
kPrependString,
|
61
|
+
kRemovePrefix,
|
62
|
+
kRemoveSuffix,
|
63
|
+
kSubCord,
|
64
|
+
|
65
|
+
// kNumMethods defines the number of entries: must be the last entry.
|
66
|
+
kNumMethods,
|
67
|
+
};
|
68
|
+
|
69
|
+
// Constructs a new instance. All counters are zero-initialized.
|
70
|
+
constexpr CordzUpdateTracker() noexcept : values_{} {}
|
71
|
+
|
72
|
+
// Copy constructs a new instance.
|
73
|
+
CordzUpdateTracker(const CordzUpdateTracker& rhs) noexcept { *this = rhs; }
|
74
|
+
|
75
|
+
// Assigns the provided value to this instance.
|
76
|
+
CordzUpdateTracker& operator=(const CordzUpdateTracker& rhs) noexcept {
|
77
|
+
for (int i = 0; i < kNumMethods; ++i) {
|
78
|
+
values_[i].store(rhs.values_[i].load(std::memory_order_relaxed),
|
79
|
+
std::memory_order_relaxed);
|
80
|
+
}
|
81
|
+
return *this;
|
82
|
+
}
|
83
|
+
|
84
|
+
// Returns the value for the specified method.
|
85
|
+
int64_t Value(MethodIdentifier method) const {
|
86
|
+
return values_[method].load(std::memory_order_relaxed);
|
87
|
+
}
|
88
|
+
|
89
|
+
// Increases the value for the specified method by `n`
|
90
|
+
void LossyAdd(MethodIdentifier method, int64_t n = 1) {
|
91
|
+
auto& value = values_[method];
|
92
|
+
value.store(value.load(std::memory_order_relaxed) + n,
|
93
|
+
std::memory_order_relaxed);
|
94
|
+
}
|
95
|
+
|
96
|
+
// Adds all the values from `src` to this instance
|
97
|
+
void LossyAdd(const CordzUpdateTracker& src) {
|
98
|
+
for (int i = 0; i < kNumMethods; ++i) {
|
99
|
+
MethodIdentifier method = static_cast<MethodIdentifier>(i);
|
100
|
+
if (int64_t value = src.Value(method)) {
|
101
|
+
LossyAdd(method, value);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
private:
|
107
|
+
// Until C++20 std::atomic is not constexpr default-constructible, so we need
|
108
|
+
// a wrapper for this class to be constexpr constructible.
|
109
|
+
class Counter : public std::atomic<int64_t> {
|
110
|
+
public:
|
111
|
+
constexpr Counter() noexcept : std::atomic<int64_t>(0) {}
|
112
|
+
};
|
113
|
+
|
114
|
+
Counter values_[kNumMethods];
|
115
|
+
};
|
116
|
+
|
117
|
+
} // namespace cord_internal
|
118
|
+
ABSL_NAMESPACE_END
|
119
|
+
} // namespace absl
|
120
|
+
|
121
|
+
#endif // ABSL_STRINGS_INTERNAL_CORDZ_UPDATE_TRACKER_H_
|
@@ -17,6 +17,7 @@
|
|
17
17
|
#ifndef ABSL_STRINGS_INTERNAL_RESIZE_UNINITIALIZED_H_
|
18
18
|
#define ABSL_STRINGS_INTERNAL_RESIZE_UNINITIALIZED_H_
|
19
19
|
|
20
|
+
#include <algorithm>
|
20
21
|
#include <string>
|
21
22
|
#include <type_traits>
|
22
23
|
#include <utility>
|
@@ -28,8 +29,9 @@ namespace absl {
|
|
28
29
|
ABSL_NAMESPACE_BEGIN
|
29
30
|
namespace strings_internal {
|
30
31
|
|
31
|
-
//
|
32
|
-
//
|
32
|
+
// In this type trait, we look for a __resize_default_init member function, and
|
33
|
+
// we use it if available, otherwise, we use resize. We provide HasMember to
|
34
|
+
// indicate whether __resize_default_init is present.
|
33
35
|
template <typename string_type, typename = void>
|
34
36
|
struct ResizeUninitializedTraits {
|
35
37
|
using HasMember = std::false_type;
|
@@ -66,6 +68,50 @@ inline void STLStringResizeUninitialized(string_type* s, size_t new_size) {
|
|
66
68
|
ResizeUninitializedTraits<string_type>::Resize(s, new_size);
|
67
69
|
}
|
68
70
|
|
71
|
+
// Used to ensure exponential growth so that the amortized complexity of
|
72
|
+
// increasing the string size by a small amount is O(1), in contrast to
|
73
|
+
// O(str->size()) in the case of precise growth.
|
74
|
+
template <typename string_type>
|
75
|
+
void STLStringReserveAmortized(string_type* s, size_t new_size) {
|
76
|
+
const size_t cap = s->capacity();
|
77
|
+
if (new_size > cap) {
|
78
|
+
// Make sure to always grow by at least a factor of 2x.
|
79
|
+
s->reserve((std::max)(new_size, 2 * cap));
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
// In this type trait, we look for an __append_default_init member function, and
|
84
|
+
// we use it if available, otherwise, we use append.
|
85
|
+
template <typename string_type, typename = void>
|
86
|
+
struct AppendUninitializedTraits {
|
87
|
+
static void Append(string_type* s, size_t n) {
|
88
|
+
s->append(n, typename string_type::value_type());
|
89
|
+
}
|
90
|
+
};
|
91
|
+
|
92
|
+
template <typename string_type>
|
93
|
+
struct AppendUninitializedTraits<
|
94
|
+
string_type, absl::void_t<decltype(std::declval<string_type&>()
|
95
|
+
.__append_default_init(237))> > {
|
96
|
+
static void Append(string_type* s, size_t n) {
|
97
|
+
s->__append_default_init(n);
|
98
|
+
}
|
99
|
+
};
|
100
|
+
|
101
|
+
// Like STLStringResizeUninitialized(str, new_size), except guaranteed to use
|
102
|
+
// exponential growth so that the amortized complexity of increasing the string
|
103
|
+
// size by a small amount is O(1), in contrast to O(str->size()) in the case of
|
104
|
+
// precise growth.
|
105
|
+
template <typename string_type>
|
106
|
+
void STLStringResizeUninitializedAmortized(string_type* s, size_t new_size) {
|
107
|
+
const size_t size = s->size();
|
108
|
+
if (new_size > size) {
|
109
|
+
AppendUninitializedTraits<string_type>::Append(s, new_size - size);
|
110
|
+
} else {
|
111
|
+
s->erase(new_size);
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
69
115
|
} // namespace strings_internal
|
70
116
|
ABSL_NAMESPACE_END
|
71
117
|
} // namespace absl
|
@@ -122,6 +122,14 @@ StringConvertResult FormatConvertImpl(const std::string& v,
|
|
122
122
|
StringConvertResult FormatConvertImpl(string_view v,
|
123
123
|
FormatConversionSpecImpl conv,
|
124
124
|
FormatSinkImpl* sink);
|
125
|
+
#if defined(ABSL_HAVE_STD_STRING_VIEW) && !defined(ABSL_USES_STD_STRING_VIEW)
|
126
|
+
inline StringConvertResult FormatConvertImpl(std::string_view v,
|
127
|
+
FormatConversionSpecImpl conv,
|
128
|
+
FormatSinkImpl* sink) {
|
129
|
+
return FormatConvertImpl(absl::string_view(v.data(), v.size()), conv, sink);
|
130
|
+
}
|
131
|
+
#endif // ABSL_HAVE_STD_STRING_VIEW && !ABSL_USES_STD_STRING_VIEW
|
132
|
+
|
125
133
|
ArgConvertResult<FormatConversionCharSetUnion(
|
126
134
|
FormatConversionCharSetInternal::s, FormatConversionCharSetInternal::p)>
|
127
135
|
FormatConvertImpl(const char* v, const FormatConversionSpecImpl conv,
|
@@ -58,7 +58,7 @@ inline bool ArgContext::Bind(const UnboundConversion* unbound,
|
|
58
58
|
if (static_cast<size_t>(arg_position - 1) >= pack_.size()) return false;
|
59
59
|
arg = &pack_[arg_position - 1]; // 1-based
|
60
60
|
|
61
|
-
if (
|
61
|
+
if (unbound->flags != Flags::kBasic) {
|
62
62
|
int width = unbound->width.value();
|
63
63
|
bool force_left = false;
|
64
64
|
if (unbound->width.is_from_arg()) {
|
@@ -84,9 +84,8 @@ inline bool ArgContext::Bind(const UnboundConversion* unbound,
|
|
84
84
|
FormatConversionSpecImplFriend::SetPrecision(precision, bound);
|
85
85
|
|
86
86
|
if (force_left) {
|
87
|
-
|
88
|
-
|
89
|
-
FormatConversionSpecImplFriend::SetFlags(flags, bound);
|
87
|
+
FormatConversionSpecImplFriend::SetFlags(unbound->flags | Flags::kLeft,
|
88
|
+
bound);
|
90
89
|
} else {
|
91
90
|
FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound);
|
92
91
|
}
|