grpc 1.37.1 → 1.40.0.pre1
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 +112 -59
- data/include/grpc/event_engine/README.md +38 -0
- data/include/grpc/event_engine/endpoint_config.h +48 -0
- data/include/grpc/event_engine/event_engine.h +330 -0
- data/include/grpc/event_engine/port.h +41 -0
- data/include/grpc/event_engine/slice_allocator.h +66 -0
- data/include/grpc/grpc.h +11 -4
- data/include/grpc/grpc_security.h +32 -0
- data/include/grpc/grpc_security_constants.h +15 -0
- data/include/grpc/impl/codegen/grpc_types.h +44 -19
- data/include/grpc/impl/codegen/port_platform.h +46 -0
- data/include/grpc/module.modulemap +14 -14
- data/src/core/ext/filters/client_channel/backup_poller.cc +3 -3
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +177 -202
- data/src/core/ext/filters/client_channel/client_channel.cc +975 -3282
- data/src/core/ext/filters/client_channel/client_channel.h +513 -55
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -1
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +4 -1
- data/src/core/ext/filters/client_channel/config_selector.h +20 -7
- data/src/core/ext/filters/client_channel/connector.h +1 -1
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +9 -10
- data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +28 -27
- data/src/core/ext/filters/client_channel/health/health_check_client.h +30 -29
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +24 -21
- data/src/core/ext/filters/client_channel/http_proxy.cc +16 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -6
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +53 -51
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +14 -23
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +16 -16
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +10 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +10 -17
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +17 -20
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +53 -65
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +36 -44
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +33 -55
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +151 -163
- data/src/core/ext/filters/client_channel/lb_policy.cc +2 -16
- data/src/core/ext/filters/client_channel/lb_policy.h +70 -46
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -4
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +24 -18
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc +31 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +14 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +33 -24
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc +28 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_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 +18 -12
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +20 -28
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +7 -5
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +20 -13
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +158 -102
- data/src/core/ext/filters/client_channel/resolver.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +32 -239
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +20 -49
- data/src/core/ext/filters/client_channel/retry_filter.cc +2598 -0
- data/src/core/ext/filters/client_channel/retry_filter.h +30 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +316 -0
- data/src/core/ext/filters/client_channel/retry_service_config.h +96 -0
- data/src/core/ext/filters/client_channel/server_address.cc +1 -1
- data/src/core/ext/filters/client_channel/service_config.cc +15 -14
- data/src/core/ext/filters/client_channel/service_config.h +7 -6
- data/src/core/ext/filters/client_channel/service_config_call_data.h +45 -5
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +5 -4
- data/src/core/ext/filters/client_channel/service_config_parser.cc +6 -6
- data/src/core/ext/filters/client_channel/service_config_parser.h +7 -4
- data/src/core/ext/filters/client_channel/subchannel.cc +17 -16
- data/src/core/ext/filters/client_channel/subchannel.h +7 -6
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +17 -16
- data/src/core/ext/filters/deadline/deadline_filter.cc +10 -10
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +19 -18
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +5 -5
- data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +33 -23
- data/src/core/ext/filters/http/client_authority_filter.cc +3 -3
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +23 -22
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +21 -21
- data/src/core/ext/filters/http/server/http_server_filter.cc +27 -23
- data/src/core/ext/filters/max_age/max_age_filter.cc +12 -10
- data/src/core/ext/filters/message_size/message_size_filter.cc +14 -11
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +4 -3
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +7 -7
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +7 -7
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +2 -2
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +3 -2
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +3 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +49 -46
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +2 -2
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +3 -4
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +5 -4
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.cc +66 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.h +74 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +141 -126
- data/src/core/ext/transport/chttp2/transport/context_list.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/context_list.h +4 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/flow_control.h +9 -9
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +12 -12
- data/src/core/ext/transport/chttp2/transport/frame_data.h +10 -10
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +15 -16
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +7 -7
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +11 -10
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -6
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +652 -736
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +195 -74
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +4 -4
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +33 -28
- data/src/core/ext/transport/chttp2/transport/parsing.cc +129 -106
- data/src/core/ext/transport/chttp2/transport/varint.cc +6 -4
- data/src/core/ext/transport/chttp2/transport/writing.cc +7 -3
- data/src/core/ext/transport/inproc/inproc_transport.cc +72 -60
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +56 -35
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +180 -76
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +35 -27
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +97 -48
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +45 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +67 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +66 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +227 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +121 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +90 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +32 -24
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +120 -73
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +4 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +15 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +48 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +171 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +8 -6
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +27 -19
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +24 -7
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +57 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +29 -17
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +3 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +4 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +6 -5
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +15 -11
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +85 -43
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +274 -91
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +11 -8
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +30 -13
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +33 -5
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +115 -0
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +60 -0
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +181 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +1 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +82 -66
- data/src/core/ext/upb-generated/validate/validate.upb.h +220 -124
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +15 -7
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +53 -52
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +318 -277
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +437 -410
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +198 -170
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +9 -8
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +219 -163
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +15 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +29 -25
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +135 -125
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +131 -123
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +90 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +32 -24
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +69 -55
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +684 -664
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +13 -10
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +13 -10
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +441 -375
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +122 -114
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +112 -79
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +64 -0
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +35 -32
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +4 -4
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +182 -160
- data/src/core/ext/xds/certificate_provider_factory.h +1 -1
- data/src/core/ext/xds/certificate_provider_store.h +3 -3
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +3 -3
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
- data/src/core/ext/xds/xds_api.cc +665 -317
- data/src/core/ext/xds/xds_api.h +52 -14
- data/src/core/ext/xds/xds_bootstrap.cc +101 -160
- data/src/core/ext/xds/xds_bootstrap.h +19 -24
- data/src/core/ext/xds/xds_certificate_provider.cc +4 -4
- data/src/core/ext/xds/xds_certificate_provider.h +4 -4
- data/src/core/ext/xds/xds_channel_args.h +5 -2
- data/src/core/ext/xds/xds_client.cc +370 -215
- data/src/core/ext/xds/xds_client.h +38 -28
- data/src/core/ext/xds/xds_client_stats.h +3 -2
- data/src/core/ext/xds/xds_http_filters.cc +3 -2
- data/src/core/ext/xds/xds_http_filters.h +3 -0
- data/src/core/ext/xds/xds_server_config_fetcher.cc +34 -20
- data/src/core/lib/{iomgr → address_utils}/parse_address.cc +17 -17
- data/src/core/lib/{iomgr → address_utils}/parse_address.h +7 -7
- data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.cc +16 -20
- data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.h +16 -11
- data/src/core/lib/channel/call_tracer.h +85 -0
- data/src/core/lib/channel/channel_stack.cc +10 -9
- data/src/core/lib/channel/channel_stack.h +11 -10
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +1 -1
- data/src/core/lib/channel/channelz.cc +21 -13
- data/src/core/lib/channel/channelz.h +3 -0
- data/src/core/lib/channel/connected_channel.cc +4 -4
- data/src/core/lib/channel/context.h +3 -0
- data/src/core/lib/channel/handshaker.cc +7 -6
- data/src/core/lib/channel/handshaker.h +5 -5
- data/src/core/lib/channel/status_util.h +4 -0
- data/src/core/lib/compression/stream_compression.h +1 -1
- data/src/core/lib/compression/stream_compression_gzip.h +1 -1
- data/src/core/lib/compression/stream_compression_identity.h +1 -1
- data/src/core/lib/debug/stats.h +1 -1
- data/src/core/lib/event_engine/endpoint_config.cc +46 -0
- data/src/core/lib/event_engine/endpoint_config_internal.h +42 -0
- data/src/core/lib/event_engine/event_engine.cc +50 -0
- data/src/core/lib/event_engine/sockaddr.cc +40 -0
- data/src/core/lib/event_engine/sockaddr.h +44 -0
- data/src/core/lib/gpr/murmur_hash.cc +4 -2
- data/src/core/lib/gpr/wrap_memcpy.cc +2 -1
- data/src/core/lib/gprpp/manual_constructor.h +1 -1
- data/src/core/lib/gprpp/orphanable.h +3 -3
- data/src/core/lib/gprpp/ref_counted.h +28 -14
- data/src/core/lib/gprpp/status_helper.cc +407 -0
- data/src/core/lib/gprpp/status_helper.h +183 -0
- data/src/core/lib/gprpp/sync.h +2 -30
- data/src/core/lib/http/httpcli.cc +11 -11
- data/src/core/lib/http/httpcli_security_connector.cc +11 -7
- data/src/core/lib/http/parser.cc +16 -16
- data/src/core/lib/http/parser.h +4 -4
- data/src/core/lib/iomgr/buffer_list.cc +8 -10
- data/src/core/lib/iomgr/buffer_list.h +4 -5
- data/src/core/lib/iomgr/call_combiner.cc +15 -12
- data/src/core/lib/iomgr/call_combiner.h +12 -14
- data/src/core/lib/iomgr/cfstream_handle.cc +3 -3
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.h +7 -6
- data/src/core/lib/iomgr/combiner.cc +14 -12
- data/src/core/lib/iomgr/combiner.h +2 -2
- data/src/core/lib/iomgr/endpoint.cc +1 -1
- data/src/core/lib/iomgr/endpoint.h +2 -2
- data/src/core/lib/iomgr/endpoint_cfstream.cc +11 -13
- data/src/core/lib/iomgr/endpoint_pair_event_engine.cc +33 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -1
- data/src/core/lib/iomgr/error.cc +168 -61
- data/src/core/lib/iomgr/error.h +217 -106
- data/src/core/lib/iomgr/error_cfstream.cc +3 -2
- data/src/core/lib/iomgr/error_cfstream.h +2 -2
- data/src/core/lib/iomgr/error_internal.h +5 -1
- data/src/core/lib/iomgr/ev_apple.cc +5 -5
- data/src/core/lib/iomgr/ev_apple.h +1 -1
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +19 -19
- data/src/core/lib/iomgr/ev_epollex_linux.cc +48 -45
- data/src/core/lib/iomgr/ev_poll_posix.cc +26 -23
- data/src/core/lib/iomgr/ev_posix.cc +9 -8
- data/src/core/lib/iomgr/ev_posix.h +9 -9
- data/src/core/lib/iomgr/event_engine/closure.cc +54 -0
- data/src/core/lib/iomgr/event_engine/closure.h +33 -0
- data/src/core/lib/iomgr/event_engine/endpoint.cc +192 -0
- data/src/core/lib/iomgr/event_engine/endpoint.h +53 -0
- data/src/core/lib/iomgr/event_engine/iomgr.cc +105 -0
- data/src/core/lib/iomgr/event_engine/iomgr.h +24 -0
- data/src/core/lib/iomgr/event_engine/pollset.cc +87 -0
- data/src/core/lib/iomgr/event_engine/pollset.h +25 -0
- data/src/core/lib/iomgr/event_engine/promise.h +51 -0
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +41 -0
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +35 -0
- data/src/core/lib/iomgr/event_engine/resolver.cc +110 -0
- data/src/core/lib/iomgr/event_engine/tcp.cc +263 -0
- data/src/core/lib/iomgr/event_engine/timer.cc +57 -0
- data/src/core/lib/iomgr/exec_ctx.cc +12 -4
- data/src/core/lib/iomgr/exec_ctx.h +4 -5
- data/src/core/lib/iomgr/executor/threadpool.cc +2 -3
- data/src/core/lib/iomgr/executor/threadpool.h +2 -2
- data/src/core/lib/iomgr/executor.cc +8 -8
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/iomgr.cc +2 -2
- data/src/core/lib/iomgr/iomgr.h +1 -1
- data/src/core/lib/iomgr/iomgr_custom.cc +1 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +2 -2
- data/src/core/lib/iomgr/iomgr_internal.h +3 -3
- data/src/core/lib/iomgr/iomgr_posix.cc +3 -1
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +42 -12
- data/src/core/lib/iomgr/iomgr_windows.cc +1 -1
- data/src/core/lib/iomgr/load_file.cc +4 -4
- data/src/core/lib/iomgr/load_file.h +2 -2
- data/src/core/lib/iomgr/lockfree_event.cc +5 -5
- data/src/core/lib/iomgr/lockfree_event.h +1 -1
- data/src/core/lib/iomgr/pollset.cc +5 -5
- data/src/core/lib/iomgr/pollset.h +9 -9
- data/src/core/lib/iomgr/pollset_custom.cc +7 -7
- data/src/core/lib/iomgr/pollset_custom.h +3 -1
- data/src/core/lib/iomgr/pollset_uv.cc +3 -1
- data/src/core/lib/iomgr/pollset_uv.h +5 -1
- data/src/core/lib/iomgr/pollset_windows.cc +5 -5
- data/src/core/lib/iomgr/port.h +7 -5
- data/src/core/lib/iomgr/python_util.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +8 -4
- data/src/core/lib/iomgr/resolve_address.h +12 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +10 -9
- data/src/core/lib/iomgr/resolve_address_custom.h +3 -3
- data/src/core/lib/iomgr/resolve_address_posix.cc +3 -3
- data/src/core/lib/iomgr/resolve_address_windows.cc +4 -4
- data/src/core/lib/iomgr/resource_quota.cc +13 -10
- data/src/core/lib/iomgr/sockaddr.h +1 -0
- data/src/core/lib/iomgr/socket_mutator.cc +15 -2
- data/src/core/lib/iomgr/socket_mutator.h +26 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +24 -22
- data/src/core/lib/iomgr/socket_utils_posix.h +20 -20
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +4 -4
- data/src/core/lib/iomgr/tcp_client_custom.cc +5 -6
- data/src/core/lib/iomgr/tcp_client_posix.cc +22 -19
- data/src/core/lib/iomgr/tcp_client_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_client_windows.cc +7 -5
- data/src/core/lib/iomgr/tcp_custom.cc +14 -16
- data/src/core/lib/iomgr/tcp_custom.h +13 -12
- data/src/core/lib/iomgr/tcp_posix.cc +78 -73
- data/src/core/lib/iomgr/tcp_posix.h +8 -0
- data/src/core/lib/iomgr/tcp_server.cc +6 -6
- data/src/core/lib/iomgr/tcp_server.h +12 -11
- data/src/core/lib/iomgr/tcp_server_custom.cc +26 -25
- data/src/core/lib/iomgr/tcp_server_posix.cc +29 -21
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +13 -12
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +21 -18
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -9
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +26 -25
- data/src/core/lib/iomgr/tcp_uv.cc +25 -23
- data/src/core/lib/iomgr/tcp_windows.cc +13 -13
- data/src/core/lib/iomgr/tcp_windows.h +2 -2
- data/src/core/lib/iomgr/timer.h +6 -1
- data/src/core/lib/iomgr/timer_custom.cc +2 -1
- data/src/core/lib/iomgr/timer_custom.h +1 -1
- data/src/core/lib/iomgr/timer_generic.cc +6 -6
- data/src/core/lib/iomgr/timer_manager.cc +1 -1
- data/src/core/lib/iomgr/udp_server.cc +21 -20
- data/src/core/lib/iomgr/unix_sockets_posix.cc +3 -3
- data/src/core/lib/iomgr/unix_sockets_posix.h +2 -2
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +10 -7
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -3
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +4 -4
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +3 -3
- data/src/core/lib/iomgr/wakeup_fd_posix.h +8 -6
- data/src/core/lib/iomgr/work_serializer.h +17 -1
- data/src/core/lib/json/json.h +1 -1
- data/src/core/lib/json/json_reader.cc +5 -6
- data/src/core/lib/matchers/matchers.cc +46 -58
- data/src/core/lib/matchers/matchers.h +30 -29
- data/src/core/lib/security/authorization/authorization_engine.h +44 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +32 -0
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +46 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +209 -0
- data/src/core/lib/security/authorization/evaluate_args.h +91 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +4 -4
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -2
- data/src/core/lib/security/credentials/credentials.h +2 -2
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +17 -13
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +13 -11
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +2 -1
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +15 -12
- data/src/core/lib/security/credentials/external/external_account_credentials.h +9 -8
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -4
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +4 -3
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +8 -8
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +9 -7
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -2
- data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -2
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +12 -10
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +2 -2
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +3 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +7 -5
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +21 -19
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -5
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +5 -5
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +8 -7
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +9 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +68 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +7 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +4 -0
- data/src/core/lib/security/credentials/tls/tls_utils.cc +32 -0
- data/src/core/lib/security/credentials/tls/tls_utils.h +13 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +3 -3
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +13 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +13 -3
- 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 +12 -2
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +1 -1
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +22 -9
- data/src/core/lib/security/security_connector/security_connector.h +9 -4
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +16 -6
- data/src/core/lib/security/security_connector/ssl_utils.cc +27 -4
- data/src/core/lib/security/security_connector/ssl_utils.h +4 -4
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +60 -76
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +66 -48
- data/src/core/lib/security/transport/client_auth_filter.cc +18 -10
- data/src/core/lib/security/transport/secure_endpoint.cc +4 -4
- data/src/core/lib/security/transport/security_handshaker.cc +45 -36
- data/src/core/lib/security/transport/server_auth_filter.cc +17 -18
- data/src/core/lib/security/transport/tsi_error.cc +2 -1
- data/src/core/lib/security/transport/tsi_error.h +2 -1
- data/src/core/lib/security/util/json_util.cc +2 -2
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/slice_internal.h +1 -0
- data/src/core/lib/surface/call.cc +72 -52
- data/src/core/lib/surface/call.h +13 -2
- data/src/core/lib/surface/channel.cc +6 -6
- data/src/core/lib/surface/channel.h +3 -2
- data/src/core/lib/surface/channel_ping.cc +1 -1
- data/src/core/lib/surface/completion_queue.cc +68 -69
- data/src/core/lib/surface/completion_queue.h +3 -2
- data/src/core/lib/surface/completion_queue_factory.cc +1 -2
- data/src/core/lib/surface/init.cc +1 -3
- data/src/core/lib/surface/init.h +10 -1
- data/src/core/lib/surface/lame_client.cc +11 -11
- data/src/core/lib/surface/lame_client.h +1 -1
- data/src/core/lib/surface/server.cc +31 -23
- data/src/core/lib/surface/server.h +19 -18
- data/src/core/lib/surface/validate_metadata.cc +7 -7
- data/src/core/lib/surface/validate_metadata.h +3 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/byte_stream.cc +5 -5
- data/src/core/lib/transport/byte_stream.h +8 -8
- data/src/core/lib/transport/connectivity_state.cc +1 -1
- data/src/core/lib/transport/error_utils.cc +21 -10
- data/src/core/lib/transport/error_utils.h +11 -5
- data/src/core/lib/transport/metadata_batch.cc +37 -37
- data/src/core/lib/transport/metadata_batch.h +19 -18
- data/src/core/lib/transport/transport.cc +4 -3
- data/src/core/lib/transport/transport.h +6 -4
- data/src/core/lib/transport/transport_op_string.cc +6 -6
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
- data/src/core/tsi/alts/crypt/gsec.h +6 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +5 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +7 -6
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +2 -1
- data/src/core/tsi/ssl_transport_security.cc +32 -14
- data/src/core/tsi/ssl_transport_security.h +3 -4
- data/src/ruby/bin/math_services_pb.rb +1 -1
- data/src/ruby/ext/grpc/extconf.rb +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +11 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +6 -6
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -3
- data/third_party/abseil-cpp/absl/base/attributes.h +24 -4
- data/third_party/abseil-cpp/absl/base/call_once.h +2 -9
- data/third_party/abseil-cpp/absl/base/config.h +37 -9
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +24 -10
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +4 -1
- data/third_party/abseil-cpp/absl/base/internal/endian.h +61 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +2 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +34 -32
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +16 -6
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +11 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +14 -5
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +3 -3
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +5 -5
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +1 -1
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +5 -2
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +43 -42
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +111 -7
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +0 -76
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +1 -3
- data/third_party/abseil-cpp/absl/base/log_severity.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +11 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +10 -7
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/port.h +0 -1
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +1 -1
- data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +5 -3
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +5 -1
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +2 -1
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +2 -1
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +141 -66
- data/third_party/abseil-cpp/absl/container/internal/layout.h +4 -4
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -1
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +136 -136
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +16 -12
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +5 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +3 -12
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +6 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +3 -5
- data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +2 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +2 -2
- data/third_party/abseil-cpp/absl/hash/internal/city.cc +15 -12
- data/third_party/abseil-cpp/absl/hash/internal/city.h +1 -19
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +25 -10
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +86 -37
- data/third_party/abseil-cpp/absl/hash/internal/wyhash.cc +111 -0
- data/third_party/abseil-cpp/absl/hash/internal/wyhash.h +48 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +16 -2
- data/third_party/abseil-cpp/absl/numeric/bits.h +177 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -3
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +358 -0
- data/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +18 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +4 -7
- data/third_party/abseil-cpp/absl/status/status.cc +29 -22
- data/third_party/abseil-cpp/absl/status/status.h +81 -20
- data/third_party/abseil-cpp/absl/status/statusor.h +3 -3
- data/third_party/abseil-cpp/absl/strings/charconv.cc +5 -5
- data/third_party/abseil-cpp/absl/strings/cord.cc +326 -371
- data/third_party/abseil-cpp/absl/strings/cord.h +182 -64
- data/third_party/abseil-cpp/absl/strings/escaping.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +6 -6
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +83 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +387 -17
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +146 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +897 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +589 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +114 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +15 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +19 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +36 -18
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +15 -40
- data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +64 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +6 -3
- data/third_party/abseil-cpp/absl/strings/match.h +16 -6
- data/third_party/abseil-cpp/absl/strings/numbers.cc +132 -4
- data/third_party/abseil-cpp/absl/strings/numbers.h +10 -10
- data/third_party/abseil-cpp/absl/strings/str_join.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_split.h +38 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +154 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +2 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +2 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +4 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -65
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -6
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +71 -59
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +79 -62
- data/third_party/abseil-cpp/absl/time/clock.cc +146 -130
- data/third_party/abseil-cpp/absl/time/clock.h +2 -2
- data/third_party/abseil-cpp/absl/time/duration.cc +3 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +7 -11
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +7 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +4 -4
- data/third_party/abseil-cpp/absl/time/time.cc +4 -3
- data/third_party/abseil-cpp/absl/time/time.h +26 -24
- data/third_party/abseil-cpp/absl/types/internal/variant.h +1 -1
- data/third_party/abseil-cpp/absl/types/variant.h +9 -4
- data/third_party/boringssl-with-bazel/err_data.c +483 -461
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +9 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +18 -8
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +1 -88
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +14 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +119 -273
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +87 -80
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +11 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +25 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +10 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +87 -160
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +104 -93
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +52 -65
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +52 -66
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +33 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +17 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +1 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +26 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +26 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +10 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +14 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +61 -75
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +80 -103
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +40 -49
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +367 -315
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +14 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +5 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +95 -48
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -28
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +120 -11
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +19 -25
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +42 -89
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +9 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +14 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +53 -73
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +21 -17
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +7 -25
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +25 -22
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +5 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +5 -8
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +1 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +66 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +120 -41
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +47 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +0 -8
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +24 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +5 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +33 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +3 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +20 -49
- data/third_party/boringssl-with-bazel/src/{crypto/x509/x509_r2x.c → include/openssl/evp_errors.h} +41 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +325 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +24 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +25 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +9 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +99 -63
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +283 -85
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +13 -19
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +445 -152
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +451 -435
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +7 -2
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +1133 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +298 -22
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +66 -30
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +189 -86
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +154 -24
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +414 -135
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +9 -3
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +14 -19
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +23 -26
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +51 -60
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +2 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +8 -31
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +3 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +4 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -3
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +664 -702
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +65 -7
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +98 -39
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +141 -94
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +213 -118
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +4 -2
- data/third_party/xxhash/xxhash.h +77 -195
- metadata +116 -51
- data/src/core/lib/gpr/arena.h +0 -47
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +0 -88
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +0 -88
- data/third_party/abseil-cpp/absl/base/internal/bits.h +0 -219
- data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +0 -249
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +0 -29
- data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +0 -246
- data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +0 -71
@@ -0,0 +1,55 @@
|
|
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_NUMERIC_INTERNAL_REPRESENTATION_H_
|
16
|
+
#define ABSL_NUMERIC_INTERNAL_REPRESENTATION_H_
|
17
|
+
|
18
|
+
#include <limits>
|
19
|
+
|
20
|
+
#include "absl/base/config.h"
|
21
|
+
|
22
|
+
namespace absl {
|
23
|
+
ABSL_NAMESPACE_BEGIN
|
24
|
+
namespace numeric_internal {
|
25
|
+
|
26
|
+
// Returns true iff long double is represented as a pair of doubles added
|
27
|
+
// together.
|
28
|
+
inline constexpr bool IsDoubleDouble() {
|
29
|
+
// A double-double value always has exactly twice the precision of a double
|
30
|
+
// value--one double carries the high digits and one double carries the low
|
31
|
+
// digits. This property is not shared with any other common floating-point
|
32
|
+
// representation, so this test won't trigger false positives. For reference,
|
33
|
+
// this table gives the number of bits of precision of each common
|
34
|
+
// floating-point representation:
|
35
|
+
//
|
36
|
+
// type precision
|
37
|
+
// IEEE single 24 b
|
38
|
+
// IEEE double 53
|
39
|
+
// x86 long double 64
|
40
|
+
// double-double 106
|
41
|
+
// IEEE quadruple 113
|
42
|
+
//
|
43
|
+
// Note in particular that a quadruple-precision float has greater precision
|
44
|
+
// than a double-double float despite taking up the same amount of memory; the
|
45
|
+
// quad has more of its bits allocated to the mantissa than the double-double
|
46
|
+
// has.
|
47
|
+
return std::numeric_limits<long double>::digits ==
|
48
|
+
2 * std::numeric_limits<double>::digits;
|
49
|
+
}
|
50
|
+
|
51
|
+
} // namespace numeric_internal
|
52
|
+
ABSL_NAMESPACE_END
|
53
|
+
} // namespace absl
|
54
|
+
|
55
|
+
#endif // ABSL_NUMERIC_INTERNAL_REPRESENTATION_H_
|
@@ -19,6 +19,17 @@
|
|
19
19
|
#include "absl/container/inlined_vector.h"
|
20
20
|
#include "absl/strings/cord.h"
|
21
21
|
|
22
|
+
#ifndef SWIG
|
23
|
+
// Disabled for SWIG as it doesn't parse attributes correctly.
|
24
|
+
namespace absl {
|
25
|
+
ABSL_NAMESPACE_BEGIN
|
26
|
+
// Returned Status objects may not be ignored. Codesearch doesn't handle ifdefs
|
27
|
+
// as part of a class definitions (b/6995610), so we use a forward declaration.
|
28
|
+
class ABSL_MUST_USE_RESULT Status;
|
29
|
+
ABSL_NAMESPACE_END
|
30
|
+
} // namespace absl
|
31
|
+
#endif // !SWIG
|
32
|
+
|
22
33
|
namespace absl {
|
23
34
|
ABSL_NAMESPACE_BEGIN
|
24
35
|
|
@@ -36,6 +47,13 @@ using Payloads = absl::InlinedVector<Payload, 1>;
|
|
36
47
|
|
37
48
|
// Reference-counted representation of Status data.
|
38
49
|
struct StatusRep {
|
50
|
+
StatusRep(absl::StatusCode code, std::string message,
|
51
|
+
std::unique_ptr<status_internal::Payloads> payloads)
|
52
|
+
: ref(int32_t{1}),
|
53
|
+
code(code),
|
54
|
+
message(std::move(message)),
|
55
|
+
payloads(std::move(payloads)) {}
|
56
|
+
|
39
57
|
std::atomic<int32_t> ref;
|
40
58
|
absl::StatusCode code;
|
41
59
|
std::string message;
|
@@ -17,6 +17,7 @@
|
|
17
17
|
#include <type_traits>
|
18
18
|
#include <utility>
|
19
19
|
|
20
|
+
#include "absl/base/attributes.h"
|
20
21
|
#include "absl/meta/type_traits.h"
|
21
22
|
#include "absl/status/status.h"
|
22
23
|
#include "absl/utility/utility.h"
|
@@ -135,18 +136,14 @@ class Helper {
|
|
135
136
|
public:
|
136
137
|
// Move type-agnostic error handling to the .cc.
|
137
138
|
static void HandleInvalidStatusCtorArg(Status*);
|
138
|
-
static void Crash(const absl::Status& status);
|
139
|
+
ABSL_ATTRIBUTE_NORETURN static void Crash(const absl::Status& status);
|
139
140
|
};
|
140
141
|
|
141
142
|
// Construct an instance of T in `p` through placement new, passing Args... to
|
142
143
|
// the constructor.
|
143
144
|
// This abstraction is here mostly for the gcc performance fix.
|
144
145
|
template <typename T, typename... Args>
|
145
|
-
void PlacementNew(void* p, Args&&... args) {
|
146
|
-
#if defined(__GNUC__) && !defined(__clang__)
|
147
|
-
// Teach gcc that 'p' cannot be null, fixing code size issues.
|
148
|
-
if (p == nullptr) __builtin_unreachable();
|
149
|
-
#endif
|
146
|
+
ABSL_ATTRIBUTE_NONNULL(1) void PlacementNew(void* p, Args&&... args) {
|
150
147
|
new (p) T(std::forward<Args>(args)...);
|
151
148
|
}
|
152
149
|
|
@@ -215,7 +212,7 @@ class StatusOrData {
|
|
215
212
|
template <typename U,
|
216
213
|
absl::enable_if_t<std::is_constructible<absl::Status, U&&>::value,
|
217
214
|
int> = 0>
|
218
|
-
explicit StatusOrData(U&& v) : status_(v) {
|
215
|
+
explicit StatusOrData(U&& v) : status_(std::forward<U>(v)) {
|
219
216
|
EnsureNotOk();
|
220
217
|
}
|
221
218
|
|
@@ -207,13 +207,12 @@ void Status::UnrefNonInlined(uintptr_t rep) {
|
|
207
207
|
}
|
208
208
|
}
|
209
209
|
|
210
|
-
uintptr_t Status::NewRep(
|
211
|
-
|
212
|
-
|
213
|
-
rep
|
214
|
-
|
215
|
-
|
216
|
-
rep->payloads = std::move(payloads);
|
210
|
+
uintptr_t Status::NewRep(
|
211
|
+
absl::StatusCode code, absl::string_view msg,
|
212
|
+
std::unique_ptr<status_internal::Payloads> payloads) {
|
213
|
+
status_internal::StatusRep* rep = new status_internal::StatusRep(
|
214
|
+
code, std::string(msg.data(), msg.size()),
|
215
|
+
std::move(payloads));
|
217
216
|
return PointerToRep(rep);
|
218
217
|
}
|
219
218
|
|
@@ -239,8 +238,9 @@ absl::StatusCode Status::code() const {
|
|
239
238
|
void Status::PrepareToModify() {
|
240
239
|
ABSL_RAW_CHECK(!ok(), "PrepareToModify shouldn't be called on OK status.");
|
241
240
|
if (IsInlined(rep_)) {
|
242
|
-
rep_ =
|
243
|
-
|
241
|
+
rep_ =
|
242
|
+
NewRep(static_cast<absl::StatusCode>(raw_code()), absl::string_view(),
|
243
|
+
nullptr);
|
244
244
|
return;
|
245
245
|
}
|
246
246
|
|
@@ -251,7 +251,8 @@ void Status::PrepareToModify() {
|
|
251
251
|
if (rep->payloads) {
|
252
252
|
payloads = absl::make_unique<status_internal::Payloads>(*rep->payloads);
|
253
253
|
}
|
254
|
-
rep_ = NewRep(rep->code, message(),
|
254
|
+
rep_ = NewRep(rep->code, message(),
|
255
|
+
std::move(payloads));
|
255
256
|
UnrefNonInlined(rep_i);
|
256
257
|
}
|
257
258
|
}
|
@@ -290,20 +291,26 @@ bool Status::EqualsSlow(const absl::Status& a, const absl::Status& b) {
|
|
290
291
|
return true;
|
291
292
|
}
|
292
293
|
|
293
|
-
std::string Status::ToStringSlow() const {
|
294
|
+
std::string Status::ToStringSlow(StatusToStringMode mode) const {
|
294
295
|
std::string text;
|
295
296
|
absl::StrAppend(&text, absl::StatusCodeToString(code()), ": ", message());
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
297
|
+
|
298
|
+
const bool with_payload = (mode & StatusToStringMode::kWithPayload) ==
|
299
|
+
StatusToStringMode::kWithPayload;
|
300
|
+
|
301
|
+
if (with_payload) {
|
302
|
+
status_internal::StatusPayloadPrinter printer =
|
303
|
+
status_internal::GetStatusPayloadPrinter();
|
304
|
+
this->ForEachPayload([&](absl::string_view type_url,
|
305
|
+
const absl::Cord& payload) {
|
306
|
+
absl::optional<std::string> result;
|
307
|
+
if (printer) result = printer(type_url, payload);
|
308
|
+
absl::StrAppend(
|
309
|
+
&text, " [", type_url, "='",
|
310
|
+
result.has_value() ? *result : absl::CHexEscape(std::string(payload)),
|
311
|
+
"']");
|
312
|
+
});
|
313
|
+
}
|
307
314
|
|
308
315
|
return text;
|
309
316
|
}
|
@@ -57,6 +57,7 @@
|
|
57
57
|
#include "absl/container/inlined_vector.h"
|
58
58
|
#include "absl/status/internal/status_internal.h"
|
59
59
|
#include "absl/strings/cord.h"
|
60
|
+
#include "absl/strings/string_view.h"
|
60
61
|
#include "absl/types/optional.h"
|
61
62
|
|
62
63
|
namespace absl {
|
@@ -98,7 +99,7 @@ enum class StatusCode : int {
|
|
98
99
|
|
99
100
|
// StatusCode::kCancelled
|
100
101
|
//
|
101
|
-
//
|
102
|
+
// kCancelled (gRPC code "CANCELLED") indicates the operation was cancelled,
|
102
103
|
// typically by the caller.
|
103
104
|
kCancelled = 1,
|
104
105
|
|
@@ -198,9 +199,9 @@ enum class StatusCode : int {
|
|
198
199
|
// `kAborted`, and `kUnavailable`.
|
199
200
|
kAborted = 10,
|
200
201
|
|
201
|
-
// StatusCode::
|
202
|
+
// StatusCode::kOutOfRange
|
202
203
|
//
|
203
|
-
//
|
204
|
+
// kOutOfRange (gRPC code "OUT_OF_RANGE") indicates the operation was
|
204
205
|
// attempted past the valid range, such as seeking or reading past an
|
205
206
|
// end-of-file.
|
206
207
|
//
|
@@ -279,6 +280,57 @@ std::string StatusCodeToString(StatusCode code);
|
|
279
280
|
// Streams StatusCodeToString(code) to `os`.
|
280
281
|
std::ostream& operator<<(std::ostream& os, StatusCode code);
|
281
282
|
|
283
|
+
// absl::StatusToStringMode
|
284
|
+
//
|
285
|
+
// An `absl::StatusToStringMode` is an enumerated type indicating how
|
286
|
+
// `absl::Status::ToString()` should construct the output string for an non-ok
|
287
|
+
// status.
|
288
|
+
enum class StatusToStringMode : int {
|
289
|
+
// ToString will not contain any extra data (such as payloads). It will only
|
290
|
+
// contain the error code and message, if any.
|
291
|
+
kWithNoExtraData = 0,
|
292
|
+
// ToString will contain the payloads.
|
293
|
+
kWithPayload = 1 << 0,
|
294
|
+
// ToString will include all the extra data this Status has.
|
295
|
+
kWithEverything = ~kWithNoExtraData,
|
296
|
+
};
|
297
|
+
|
298
|
+
// absl::StatusToStringMode is specified as a bitmask type, which means the
|
299
|
+
// following operations must be provided:
|
300
|
+
inline constexpr StatusToStringMode operator&(StatusToStringMode lhs,
|
301
|
+
StatusToStringMode rhs) {
|
302
|
+
return static_cast<StatusToStringMode>(static_cast<int>(lhs) &
|
303
|
+
static_cast<int>(rhs));
|
304
|
+
}
|
305
|
+
inline constexpr StatusToStringMode operator|(StatusToStringMode lhs,
|
306
|
+
StatusToStringMode rhs) {
|
307
|
+
return static_cast<StatusToStringMode>(static_cast<int>(lhs) |
|
308
|
+
static_cast<int>(rhs));
|
309
|
+
}
|
310
|
+
inline constexpr StatusToStringMode operator^(StatusToStringMode lhs,
|
311
|
+
StatusToStringMode rhs) {
|
312
|
+
return static_cast<StatusToStringMode>(static_cast<int>(lhs) ^
|
313
|
+
static_cast<int>(rhs));
|
314
|
+
}
|
315
|
+
inline constexpr StatusToStringMode operator~(StatusToStringMode arg) {
|
316
|
+
return static_cast<StatusToStringMode>(~static_cast<int>(arg));
|
317
|
+
}
|
318
|
+
inline StatusToStringMode& operator&=(StatusToStringMode& lhs,
|
319
|
+
StatusToStringMode rhs) {
|
320
|
+
lhs = lhs & rhs;
|
321
|
+
return lhs;
|
322
|
+
}
|
323
|
+
inline StatusToStringMode& operator|=(StatusToStringMode& lhs,
|
324
|
+
StatusToStringMode rhs) {
|
325
|
+
lhs = lhs | rhs;
|
326
|
+
return lhs;
|
327
|
+
}
|
328
|
+
inline StatusToStringMode& operator^=(StatusToStringMode& lhs,
|
329
|
+
StatusToStringMode rhs) {
|
330
|
+
lhs = lhs ^ rhs;
|
331
|
+
return lhs;
|
332
|
+
}
|
333
|
+
|
282
334
|
// absl::Status
|
283
335
|
//
|
284
336
|
// The `absl::Status` class is generally used to gracefully handle errors
|
@@ -360,7 +412,12 @@ std::ostream& operator<<(std::ostream& os, StatusCode code);
|
|
360
412
|
// return result;
|
361
413
|
// }
|
362
414
|
//
|
363
|
-
|
415
|
+
// For documentation see https://abseil.io/docs/cpp/guides/status.
|
416
|
+
//
|
417
|
+
// Returned Status objects may not be ignored. status_internal.h has a forward
|
418
|
+
// declaration of the form
|
419
|
+
// class ABSL_MUST_USE_RESULT Status;
|
420
|
+
class Status final {
|
364
421
|
public:
|
365
422
|
// Constructors
|
366
423
|
|
@@ -370,10 +427,10 @@ class ABSL_MUST_USE_RESULT Status final {
|
|
370
427
|
Status();
|
371
428
|
|
372
429
|
// Creates a status in the canonical error space with the specified
|
373
|
-
// `absl::StatusCode` and error message. If `code == absl::StatusCode::kOk`,
|
430
|
+
// `absl::StatusCode` and error message. If `code == absl::StatusCode::kOk`, // NOLINT
|
374
431
|
// `msg` is ignored and an object identical to an OK status is constructed.
|
375
432
|
//
|
376
|
-
// The `msg` string must be in UTF-8. The implementation may complain (e.g.,
|
433
|
+
// The `msg` string must be in UTF-8. The implementation may complain (e.g., // NOLINT
|
377
434
|
// by printing a warning) if it is not.
|
378
435
|
Status(absl::StatusCode code, absl::string_view msg);
|
379
436
|
|
@@ -442,15 +499,17 @@ class ABSL_MUST_USE_RESULT Status final {
|
|
442
499
|
|
443
500
|
// Status::ToString()
|
444
501
|
//
|
445
|
-
// Returns a
|
446
|
-
//
|
447
|
-
//
|
448
|
-
// the exact format of the result of
|
502
|
+
// Returns a string based on the `mode`. By default, it returns combination of
|
503
|
+
// the error code name, the message and any associated payload messages. This
|
504
|
+
// string is designed simply to be human readable and its exact format should
|
505
|
+
// not be load bearing. Do not depend on the exact format of the result of
|
506
|
+
// `ToString()` which is subject to change.
|
449
507
|
//
|
450
508
|
// The printed code name and the message are generally substrings of the
|
451
509
|
// result, and the payloads to be printed use the status payload printer
|
452
510
|
// mechanism (which is internal).
|
453
|
-
std::string ToString(
|
511
|
+
std::string ToString(
|
512
|
+
StatusToStringMode mode = StatusToStringMode::kWithPayload) const;
|
454
513
|
|
455
514
|
// Status::IgnoreError()
|
456
515
|
//
|
@@ -550,8 +609,9 @@ class ABSL_MUST_USE_RESULT Status final {
|
|
550
609
|
status_internal::Payloads* GetPayloads();
|
551
610
|
|
552
611
|
// Takes ownership of payload.
|
553
|
-
static uintptr_t NewRep(
|
554
|
-
|
612
|
+
static uintptr_t NewRep(
|
613
|
+
absl::StatusCode code, absl::string_view msg,
|
614
|
+
std::unique_ptr<status_internal::Payloads> payload);
|
555
615
|
static bool EqualsSlow(const absl::Status& a, const absl::Status& b);
|
556
616
|
|
557
617
|
// MSVC 14.0 limitation requires the const.
|
@@ -580,8 +640,7 @@ class ABSL_MUST_USE_RESULT Status final {
|
|
580
640
|
static uintptr_t PointerToRep(status_internal::StatusRep* r);
|
581
641
|
static status_internal::StatusRep* RepToPointer(uintptr_t r);
|
582
642
|
|
583
|
-
|
584
|
-
std::string ToStringSlow() const;
|
643
|
+
std::string ToStringSlow(StatusToStringMode mode) const;
|
585
644
|
|
586
645
|
// Status supports two different representations.
|
587
646
|
// - When the low bit is off it is an inlined representation.
|
@@ -704,9 +763,11 @@ inline Status::Status(Status&& x) noexcept : rep_(x.rep_) {
|
|
704
763
|
|
705
764
|
inline Status& Status::operator=(Status&& x) {
|
706
765
|
uintptr_t old_rep = rep_;
|
707
|
-
|
708
|
-
|
709
|
-
|
766
|
+
if (x.rep_ != old_rep) {
|
767
|
+
rep_ = x.rep_;
|
768
|
+
x.rep_ = MovedFromRep();
|
769
|
+
Unref(old_rep);
|
770
|
+
}
|
710
771
|
return *this;
|
711
772
|
}
|
712
773
|
|
@@ -743,8 +804,8 @@ inline bool operator!=(const Status& lhs, const Status& rhs) {
|
|
743
804
|
return !(lhs == rhs);
|
744
805
|
}
|
745
806
|
|
746
|
-
inline std::string Status::ToString() const {
|
747
|
-
return ok() ? "OK" : ToStringSlow();
|
807
|
+
inline std::string Status::ToString(StatusToStringMode mode) const {
|
808
|
+
return ok() ? "OK" : ToStringSlow(mode);
|
748
809
|
}
|
749
810
|
|
750
811
|
inline void Status::IgnoreError() const {
|
@@ -129,13 +129,13 @@ class ABSL_MUST_USE_RESULT StatusOr;
|
|
129
129
|
// Example:
|
130
130
|
//
|
131
131
|
// absl::StatusOr<int> i = GetCount();
|
132
|
-
// if (
|
132
|
+
// if (i.ok()) {
|
133
133
|
// updated_total += *i
|
134
134
|
// }
|
135
135
|
//
|
136
136
|
// NOTE: using `absl::StatusOr<T>::value()` when no valid value is present will
|
137
137
|
// throw an exception if exceptions are enabled or terminate the process when
|
138
|
-
//
|
138
|
+
// exceptions are not enabled.
|
139
139
|
//
|
140
140
|
// Example:
|
141
141
|
//
|
@@ -542,7 +542,7 @@ class StatusOr : private internal_statusor::StatusOrData<T>,
|
|
542
542
|
|
543
543
|
// StatusOr<T>::value_or()
|
544
544
|
//
|
545
|
-
// Returns the current value
|
545
|
+
// Returns the current value if `this->ok() == true`. Otherwise constructs a
|
546
546
|
// value using the provided `default_value`.
|
547
547
|
//
|
548
548
|
// Unlike `value`, this function returns by value, copying the current value
|
@@ -20,7 +20,7 @@
|
|
20
20
|
#include <cstring>
|
21
21
|
|
22
22
|
#include "absl/base/casts.h"
|
23
|
-
#include "absl/
|
23
|
+
#include "absl/numeric/bits.h"
|
24
24
|
#include "absl/numeric/int128.h"
|
25
25
|
#include "absl/strings/internal/charconv_bigint.h"
|
26
26
|
#include "absl/strings/internal/charconv_parse.h"
|
@@ -242,11 +242,11 @@ struct CalculatedFloat {
|
|
242
242
|
|
243
243
|
// Returns the bit width of the given uint128. (Equivalently, returns 128
|
244
244
|
// minus the number of leading zero bits.)
|
245
|
-
|
245
|
+
unsigned BitWidth(uint128 value) {
|
246
246
|
if (Uint128High64(value) == 0) {
|
247
|
-
return
|
247
|
+
return static_cast<unsigned>(bit_width(Uint128Low64(value)));
|
248
248
|
}
|
249
|
-
return 128 -
|
249
|
+
return 128 - countl_zero(Uint128High64(value));
|
250
250
|
}
|
251
251
|
|
252
252
|
// Calculates how far to the right a mantissa needs to be shifted to create a
|
@@ -519,7 +519,7 @@ CalculatedFloat CalculateFromParsedHexadecimal(
|
|
519
519
|
const strings_internal::ParsedFloat& parsed_hex) {
|
520
520
|
uint64_t mantissa = parsed_hex.mantissa;
|
521
521
|
int exponent = parsed_hex.exponent;
|
522
|
-
|
522
|
+
auto mantissa_width = static_cast<unsigned>(bit_width(mantissa));
|
523
523
|
const int shift = NormalizedShiftSize<FloatType>(mantissa_width, exponent);
|
524
524
|
bool result_exact;
|
525
525
|
exponent += shift;
|
@@ -36,6 +36,8 @@
|
|
36
36
|
#include "absl/container/inlined_vector.h"
|
37
37
|
#include "absl/strings/escaping.h"
|
38
38
|
#include "absl/strings/internal/cord_internal.h"
|
39
|
+
#include "absl/strings/internal/cord_rep_flat.h"
|
40
|
+
#include "absl/strings/internal/cord_rep_ring.h"
|
39
41
|
#include "absl/strings/internal/resize_uninitialized.h"
|
40
42
|
#include "absl/strings/str_cat.h"
|
41
43
|
#include "absl/strings/str_format.h"
|
@@ -48,98 +50,20 @@ ABSL_NAMESPACE_BEGIN
|
|
48
50
|
using ::absl::cord_internal::CordRep;
|
49
51
|
using ::absl::cord_internal::CordRepConcat;
|
50
52
|
using ::absl::cord_internal::CordRepExternal;
|
53
|
+
using ::absl::cord_internal::CordRepFlat;
|
54
|
+
using ::absl::cord_internal::CordRepRing;
|
51
55
|
using ::absl::cord_internal::CordRepSubstring;
|
56
|
+
using ::absl::cord_internal::kMinFlatLength;
|
57
|
+
using ::absl::cord_internal::kMaxFlatLength;
|
52
58
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
59
|
+
using ::absl::cord_internal::CONCAT;
|
60
|
+
using ::absl::cord_internal::EXTERNAL;
|
61
|
+
using ::absl::cord_internal::FLAT;
|
62
|
+
using ::absl::cord_internal::RING;
|
63
|
+
using ::absl::cord_internal::SUBSTRING;
|
58
64
|
|
59
|
-
|
60
|
-
|
61
|
-
FLAT = 3,
|
62
|
-
};
|
63
|
-
|
64
|
-
namespace cord_internal {
|
65
|
-
|
66
|
-
inline CordRepConcat* CordRep::concat() {
|
67
|
-
assert(tag == CONCAT);
|
68
|
-
return static_cast<CordRepConcat*>(this);
|
69
|
-
}
|
70
|
-
|
71
|
-
inline const CordRepConcat* CordRep::concat() const {
|
72
|
-
assert(tag == CONCAT);
|
73
|
-
return static_cast<const CordRepConcat*>(this);
|
74
|
-
}
|
75
|
-
|
76
|
-
inline CordRepSubstring* CordRep::substring() {
|
77
|
-
assert(tag == SUBSTRING);
|
78
|
-
return static_cast<CordRepSubstring*>(this);
|
79
|
-
}
|
80
|
-
|
81
|
-
inline const CordRepSubstring* CordRep::substring() const {
|
82
|
-
assert(tag == SUBSTRING);
|
83
|
-
return static_cast<const CordRepSubstring*>(this);
|
84
|
-
}
|
85
|
-
|
86
|
-
inline CordRepExternal* CordRep::external() {
|
87
|
-
assert(tag == EXTERNAL);
|
88
|
-
return static_cast<CordRepExternal*>(this);
|
89
|
-
}
|
90
|
-
|
91
|
-
inline const CordRepExternal* CordRep::external() const {
|
92
|
-
assert(tag == EXTERNAL);
|
93
|
-
return static_cast<const CordRepExternal*>(this);
|
94
|
-
}
|
95
|
-
|
96
|
-
} // namespace cord_internal
|
97
|
-
|
98
|
-
static const size_t kFlatOverhead = offsetof(CordRep, data);
|
99
|
-
|
100
|
-
// Largest and smallest flat node lengths we are willing to allocate
|
101
|
-
// Flat allocation size is stored in tag, which currently can encode sizes up
|
102
|
-
// to 4K, encoded as multiple of either 8 or 32 bytes.
|
103
|
-
// If we allow for larger sizes, we need to change this to 8/64, 16/128, etc.
|
104
|
-
static constexpr size_t kMaxFlatSize = 4096;
|
105
|
-
static constexpr size_t kMaxFlatLength = kMaxFlatSize - kFlatOverhead;
|
106
|
-
static constexpr size_t kMinFlatLength = 32 - kFlatOverhead;
|
107
|
-
|
108
|
-
// Prefer copying blocks of at most this size, otherwise reference count.
|
109
|
-
static const size_t kMaxBytesToCopy = 511;
|
110
|
-
|
111
|
-
// Helper functions for rounded div, and rounding to exact sizes.
|
112
|
-
static size_t DivUp(size_t n, size_t m) { return (n + m - 1) / m; }
|
113
|
-
static size_t RoundUp(size_t n, size_t m) { return DivUp(n, m) * m; }
|
114
|
-
|
115
|
-
// Returns the size to the nearest equal or larger value that can be
|
116
|
-
// expressed exactly as a tag value.
|
117
|
-
static size_t RoundUpForTag(size_t size) {
|
118
|
-
return RoundUp(size, (size <= 1024) ? 8 : 32);
|
119
|
-
}
|
120
|
-
|
121
|
-
// Converts the allocated size to a tag, rounding down if the size
|
122
|
-
// does not exactly match a 'tag expressible' size value. The result is
|
123
|
-
// undefined if the size exceeds the maximum size that can be encoded in
|
124
|
-
// a tag, i.e., if size is larger than TagToAllocatedSize(<max tag>).
|
125
|
-
static uint8_t AllocatedSizeToTag(size_t size) {
|
126
|
-
const size_t tag = (size <= 1024) ? size / 8 : 128 + size / 32 - 1024 / 32;
|
127
|
-
assert(tag <= std::numeric_limits<uint8_t>::max());
|
128
|
-
return tag;
|
129
|
-
}
|
130
|
-
|
131
|
-
// Converts the provided tag to the corresponding allocated size
|
132
|
-
static constexpr size_t TagToAllocatedSize(uint8_t tag) {
|
133
|
-
return (tag <= 128) ? (tag * 8) : (1024 + (tag - 128) * 32);
|
134
|
-
}
|
135
|
-
|
136
|
-
// Converts the provided tag to the corresponding available data length
|
137
|
-
static constexpr size_t TagToLength(uint8_t tag) {
|
138
|
-
return TagToAllocatedSize(tag) - kFlatOverhead;
|
139
|
-
}
|
140
|
-
|
141
|
-
// Enforce that kMaxFlatSize maps to a well-known exact tag value.
|
142
|
-
static_assert(TagToAllocatedSize(224) == kMaxFlatSize, "Bad tag logic");
|
65
|
+
using ::absl::cord_internal::kInlinedVectorSize;
|
66
|
+
using ::absl::cord_internal::kMaxBytesToCopy;
|
143
67
|
|
144
68
|
constexpr uint64_t Fibonacci(unsigned char n, uint64_t a = 0, uint64_t b = 1) {
|
145
69
|
return n == 0 ? a : Fibonacci(n - 1, b, a + b);
|
@@ -171,16 +95,10 @@ static constexpr uint64_t min_length[] = {
|
|
171
95
|
|
172
96
|
static const int kMinLengthSize = ABSL_ARRAYSIZE(min_length);
|
173
97
|
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
// It may be desirable for each to use a different inlined size optimized for
|
179
|
-
// that InlinedVector's usage.
|
180
|
-
//
|
181
|
-
// TODO(jgm): Benchmark to see if there's a more optimal value than 47 for
|
182
|
-
// the inlined vector size (47 exists for backward compatibility).
|
183
|
-
static const int kInlinedVectorSize = 47;
|
98
|
+
static inline bool cord_ring_enabled() {
|
99
|
+
return cord_internal::cord_ring_buffer_enabled.load(
|
100
|
+
std::memory_order_relaxed);
|
101
|
+
}
|
184
102
|
|
185
103
|
static inline bool IsRootBalanced(CordRep* node) {
|
186
104
|
if (node->tag != CONCAT) {
|
@@ -197,7 +115,8 @@ static inline bool IsRootBalanced(CordRep* node) {
|
|
197
115
|
}
|
198
116
|
|
199
117
|
static CordRep* Rebalance(CordRep* node);
|
200
|
-
static void DumpNode(CordRep* rep, bool include_data, std::ostream* os
|
118
|
+
static void DumpNode(CordRep* rep, bool include_data, std::ostream* os,
|
119
|
+
int indent = 0);
|
201
120
|
static bool VerifyNode(CordRep* root, CordRep* start_node,
|
202
121
|
bool full_validation);
|
203
122
|
|
@@ -217,96 +136,6 @@ static inline CordRep* VerifyTree(CordRep* node) {
|
|
217
136
|
return node;
|
218
137
|
}
|
219
138
|
|
220
|
-
// --------------------------------------------------------------------
|
221
|
-
// Memory management
|
222
|
-
|
223
|
-
inline CordRep* Ref(CordRep* rep) {
|
224
|
-
if (rep != nullptr) {
|
225
|
-
rep->refcount.Increment();
|
226
|
-
}
|
227
|
-
return rep;
|
228
|
-
}
|
229
|
-
|
230
|
-
// This internal routine is called from the cold path of Unref below. Keeping it
|
231
|
-
// in a separate routine allows good inlining of Unref into many profitable call
|
232
|
-
// sites. However, the call to this function can be highly disruptive to the
|
233
|
-
// register pressure in those callers. To minimize the cost to callers, we use
|
234
|
-
// a special LLVM calling convention that preserves most registers. This allows
|
235
|
-
// the call to this routine in cold paths to not disrupt the caller's register
|
236
|
-
// pressure. This calling convention is not available on all platforms; we
|
237
|
-
// intentionally allow LLVM to ignore the attribute rather than attempting to
|
238
|
-
// hardcode the list of supported platforms.
|
239
|
-
#if defined(__clang__) && !defined(__i386__)
|
240
|
-
#pragma clang diagnostic push
|
241
|
-
#pragma clang diagnostic ignored "-Wattributes"
|
242
|
-
__attribute__((preserve_most))
|
243
|
-
#pragma clang diagnostic pop
|
244
|
-
#endif
|
245
|
-
static void UnrefInternal(CordRep* rep) {
|
246
|
-
assert(rep != nullptr);
|
247
|
-
|
248
|
-
absl::InlinedVector<CordRep*, kInlinedVectorSize> pending;
|
249
|
-
while (true) {
|
250
|
-
if (rep->tag == CONCAT) {
|
251
|
-
CordRepConcat* rep_concat = rep->concat();
|
252
|
-
CordRep* right = rep_concat->right;
|
253
|
-
if (!right->refcount.Decrement()) {
|
254
|
-
pending.push_back(right);
|
255
|
-
}
|
256
|
-
CordRep* left = rep_concat->left;
|
257
|
-
delete rep_concat;
|
258
|
-
rep = nullptr;
|
259
|
-
if (!left->refcount.Decrement()) {
|
260
|
-
rep = left;
|
261
|
-
continue;
|
262
|
-
}
|
263
|
-
} else if (rep->tag == EXTERNAL) {
|
264
|
-
CordRepExternal* rep_external = rep->external();
|
265
|
-
rep_external->releaser_invoker(rep_external);
|
266
|
-
rep = nullptr;
|
267
|
-
} else if (rep->tag == SUBSTRING) {
|
268
|
-
CordRepSubstring* rep_substring = rep->substring();
|
269
|
-
CordRep* child = rep_substring->child;
|
270
|
-
delete rep_substring;
|
271
|
-
rep = nullptr;
|
272
|
-
if (!child->refcount.Decrement()) {
|
273
|
-
rep = child;
|
274
|
-
continue;
|
275
|
-
}
|
276
|
-
} else {
|
277
|
-
// Flat CordReps are allocated and constructed with raw ::operator new
|
278
|
-
// and placement new, and must be destructed and deallocated
|
279
|
-
// accordingly.
|
280
|
-
#if defined(__cpp_sized_deallocation)
|
281
|
-
size_t size = TagToAllocatedSize(rep->tag);
|
282
|
-
rep->~CordRep();
|
283
|
-
::operator delete(rep, size);
|
284
|
-
#else
|
285
|
-
rep->~CordRep();
|
286
|
-
::operator delete(rep);
|
287
|
-
#endif
|
288
|
-
rep = nullptr;
|
289
|
-
}
|
290
|
-
|
291
|
-
if (!pending.empty()) {
|
292
|
-
rep = pending.back();
|
293
|
-
pending.pop_back();
|
294
|
-
} else {
|
295
|
-
break;
|
296
|
-
}
|
297
|
-
}
|
298
|
-
}
|
299
|
-
|
300
|
-
inline void Unref(CordRep* rep) {
|
301
|
-
// Fast-path for two common, hot cases: a null rep and a shared root.
|
302
|
-
if (ABSL_PREDICT_TRUE(rep == nullptr ||
|
303
|
-
rep->refcount.DecrementExpectHighRefcount())) {
|
304
|
-
return;
|
305
|
-
}
|
306
|
-
|
307
|
-
UnrefInternal(rep);
|
308
|
-
}
|
309
|
-
|
310
139
|
// Return the depth of a node
|
311
140
|
static int Depth(const CordRep* rep) {
|
312
141
|
if (rep->tag == CONCAT) {
|
@@ -330,12 +159,14 @@ static void SetConcatChildren(CordRepConcat* concat, CordRep* left,
|
|
330
159
|
// The returned node has a refcount of 1.
|
331
160
|
static CordRep* RawConcat(CordRep* left, CordRep* right) {
|
332
161
|
// Avoid making degenerate concat nodes (one child is empty)
|
333
|
-
if (left == nullptr
|
334
|
-
|
162
|
+
if (left == nullptr) return right;
|
163
|
+
if (right == nullptr) return left;
|
164
|
+
if (left->length == 0) {
|
165
|
+
CordRep::Unref(left);
|
335
166
|
return right;
|
336
167
|
}
|
337
|
-
if (right
|
338
|
-
Unref(right);
|
168
|
+
if (right->length == 0) {
|
169
|
+
CordRep::Unref(right);
|
339
170
|
return left;
|
340
171
|
}
|
341
172
|
|
@@ -374,20 +205,27 @@ static CordRep* MakeBalancedTree(CordRep** reps, size_t n) {
|
|
374
205
|
return reps[0];
|
375
206
|
}
|
376
207
|
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
208
|
+
static CordRepFlat* CreateFlat(const char* data, size_t length,
|
209
|
+
size_t alloc_hint) {
|
210
|
+
CordRepFlat* flat = CordRepFlat::New(length + alloc_hint);
|
211
|
+
flat->length = length;
|
212
|
+
memcpy(flat->Data(), data, length);
|
213
|
+
return flat;
|
214
|
+
}
|
384
215
|
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
216
|
+
// Creates a new flat or ringbuffer out of the specified array.
|
217
|
+
// The returned node has a refcount of 1.
|
218
|
+
static CordRep* RingNewTree(const char* data, size_t length,
|
219
|
+
size_t alloc_hint) {
|
220
|
+
if (length <= kMaxFlatLength) {
|
221
|
+
return CreateFlat(data, length, alloc_hint);
|
222
|
+
}
|
223
|
+
CordRepFlat* flat = CreateFlat(data, kMaxFlatLength, 0);
|
224
|
+
data += kMaxFlatLength;
|
225
|
+
length -= kMaxFlatLength;
|
226
|
+
size_t extra = (length - 1) / kMaxFlatLength + 1;
|
227
|
+
auto* root = CordRepRing::Create(flat, extra);
|
228
|
+
return CordRepRing::Append(root, {data, length}, alloc_hint);
|
391
229
|
}
|
392
230
|
|
393
231
|
// Create a new tree out of the specified array.
|
@@ -396,13 +234,16 @@ static CordRep* NewTree(const char* data,
|
|
396
234
|
size_t length,
|
397
235
|
size_t alloc_hint) {
|
398
236
|
if (length == 0) return nullptr;
|
237
|
+
if (cord_ring_enabled()) {
|
238
|
+
return RingNewTree(data, length, alloc_hint);
|
239
|
+
}
|
399
240
|
absl::FixedArray<CordRep*> reps((length - 1) / kMaxFlatLength + 1);
|
400
241
|
size_t n = 0;
|
401
242
|
do {
|
402
243
|
const size_t len = std::min(length, kMaxFlatLength);
|
403
|
-
|
244
|
+
CordRepFlat* rep = CordRepFlat::New(len + alloc_hint);
|
404
245
|
rep->length = len;
|
405
|
-
memcpy(rep->
|
246
|
+
memcpy(rep->Data(), data, len);
|
406
247
|
reps[n++] = VerifyTree(rep);
|
407
248
|
data += len;
|
408
249
|
length -= len;
|
@@ -425,7 +266,7 @@ void InitializeCordRepExternal(absl::string_view data, CordRepExternal* rep) {
|
|
425
266
|
static CordRep* NewSubstring(CordRep* child, size_t offset, size_t length) {
|
426
267
|
// Never create empty substring nodes
|
427
268
|
if (length == 0) {
|
428
|
-
Unref(child);
|
269
|
+
CordRep::Unref(child);
|
429
270
|
return nullptr;
|
430
271
|
} else {
|
431
272
|
CordRepSubstring* rep = new CordRepSubstring();
|
@@ -447,50 +288,58 @@ inline void Cord::InlineRep::set_data(const char* data, size_t n,
|
|
447
288
|
bool nullify_tail) {
|
448
289
|
static_assert(kMaxInline == 15, "set_data is hard-coded for a length of 15");
|
449
290
|
|
450
|
-
cord_internal::SmallMemmove(data_, data, n, nullify_tail);
|
451
|
-
|
291
|
+
cord_internal::SmallMemmove(data_.as_chars(), data, n, nullify_tail);
|
292
|
+
set_inline_size(n);
|
452
293
|
}
|
453
294
|
|
454
295
|
inline char* Cord::InlineRep::set_data(size_t n) {
|
455
296
|
assert(n <= kMaxInline);
|
456
|
-
|
457
|
-
|
458
|
-
return data_;
|
297
|
+
ResetToEmpty();
|
298
|
+
set_inline_size(n);
|
299
|
+
return data_.as_chars();
|
459
300
|
}
|
460
301
|
|
461
302
|
inline CordRep* Cord::InlineRep::force_tree(size_t extra_hint) {
|
462
|
-
|
463
|
-
|
464
|
-
if (len > kMaxInline) {
|
465
|
-
memcpy(&result, data_, sizeof(result));
|
466
|
-
} else {
|
467
|
-
result = NewFlat(len + extra_hint);
|
468
|
-
result->length = len;
|
469
|
-
memcpy(result->data, data_, len);
|
470
|
-
set_tree(result);
|
303
|
+
if (data_.is_tree()) {
|
304
|
+
return data_.as_tree();
|
471
305
|
}
|
306
|
+
|
307
|
+
size_t len = inline_size();
|
308
|
+
CordRepFlat* result = CordRepFlat::New(len + extra_hint);
|
309
|
+
result->length = len;
|
310
|
+
static_assert(kMinFlatLength >= sizeof(data_), "");
|
311
|
+
memcpy(result->Data(), data_.as_chars(), sizeof(data_));
|
312
|
+
set_tree(result);
|
472
313
|
return result;
|
473
314
|
}
|
474
315
|
|
475
316
|
inline void Cord::InlineRep::reduce_size(size_t n) {
|
476
|
-
size_t tag =
|
317
|
+
size_t tag = inline_size();
|
477
318
|
assert(tag <= kMaxInline);
|
478
319
|
assert(tag >= n);
|
479
320
|
tag -= n;
|
480
|
-
memset(data_ + tag, 0, n);
|
481
|
-
|
321
|
+
memset(data_.as_chars() + tag, 0, n);
|
322
|
+
set_inline_size(static_cast<char>(tag));
|
482
323
|
}
|
483
324
|
|
484
325
|
inline void Cord::InlineRep::remove_prefix(size_t n) {
|
485
|
-
cord_internal::SmallMemmove(data_, data_ + n,
|
326
|
+
cord_internal::SmallMemmove(data_.as_chars(), data_.as_chars() + n,
|
327
|
+
inline_size() - n);
|
486
328
|
reduce_size(n);
|
487
329
|
}
|
488
330
|
|
331
|
+
// Returns `rep` converted into a CordRepRing.
|
332
|
+
// Directly returns `rep` if `rep` is already a CordRepRing.
|
333
|
+
static CordRepRing* ForceRing(CordRep* rep, size_t extra) {
|
334
|
+
return (rep->tag == RING) ? rep->ring() : CordRepRing::Create(rep, extra);
|
335
|
+
}
|
336
|
+
|
489
337
|
void Cord::InlineRep::AppendTree(CordRep* tree) {
|
490
338
|
if (tree == nullptr) return;
|
491
|
-
|
492
|
-
if (len == 0) {
|
339
|
+
if (data_.is_empty()) {
|
493
340
|
set_tree(tree);
|
341
|
+
} else if (cord_ring_enabled()) {
|
342
|
+
set_tree(CordRepRing::Append(ForceRing(force_tree(0), 1), tree));
|
494
343
|
} else {
|
495
344
|
set_tree(Concat(force_tree(0), tree));
|
496
345
|
}
|
@@ -498,9 +347,10 @@ void Cord::InlineRep::AppendTree(CordRep* tree) {
|
|
498
347
|
|
499
348
|
void Cord::InlineRep::PrependTree(CordRep* tree) {
|
500
349
|
assert(tree != nullptr);
|
501
|
-
|
502
|
-
if (len == 0) {
|
350
|
+
if (data_.is_empty()) {
|
503
351
|
set_tree(tree);
|
352
|
+
} else if (cord_ring_enabled()) {
|
353
|
+
set_tree(CordRepRing::Prepend(ForceRing(force_tree(0), 1), tree));
|
504
354
|
} else {
|
505
355
|
set_tree(Concat(tree, force_tree(0)));
|
506
356
|
}
|
@@ -512,6 +362,15 @@ void Cord::InlineRep::PrependTree(CordRep* tree) {
|
|
512
362
|
// written to region and the actual size increase will be written to size.
|
513
363
|
static inline bool PrepareAppendRegion(CordRep* root, char** region,
|
514
364
|
size_t* size, size_t max_length) {
|
365
|
+
if (root->tag == RING && root->refcount.IsOne()) {
|
366
|
+
Span<char> span = root->ring()->GetAppendBuffer(max_length);
|
367
|
+
if (!span.empty()) {
|
368
|
+
*region = span.data();
|
369
|
+
*size = span.size();
|
370
|
+
return true;
|
371
|
+
}
|
372
|
+
}
|
373
|
+
|
515
374
|
// Search down the right-hand path for a non-full FLAT node.
|
516
375
|
CordRep* dst = root;
|
517
376
|
while (dst->tag == CONCAT && dst->refcount.IsOne()) {
|
@@ -525,7 +384,7 @@ static inline bool PrepareAppendRegion(CordRep* root, char** region,
|
|
525
384
|
}
|
526
385
|
|
527
386
|
const size_t in_use = dst->length;
|
528
|
-
const size_t capacity =
|
387
|
+
const size_t capacity = dst->flat()->Capacity();
|
529
388
|
if (in_use == capacity) {
|
530
389
|
*region = nullptr;
|
531
390
|
*size = 0;
|
@@ -540,7 +399,7 @@ static inline bool PrepareAppendRegion(CordRep* root, char** region,
|
|
540
399
|
}
|
541
400
|
dst->length += size_increase;
|
542
401
|
|
543
|
-
*region = dst->
|
402
|
+
*region = dst->flat()->Data() + in_use;
|
544
403
|
*size = size_increase;
|
545
404
|
return true;
|
546
405
|
}
|
@@ -554,12 +413,14 @@ void Cord::InlineRep::GetAppendRegion(char** region, size_t* size,
|
|
554
413
|
}
|
555
414
|
|
556
415
|
// Try to fit in the inline buffer if possible.
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
416
|
+
if (!is_tree()) {
|
417
|
+
size_t inline_length = inline_size();
|
418
|
+
if (max_length <= kMaxInline - inline_length) {
|
419
|
+
*region = data_.as_chars() + inline_length;
|
420
|
+
*size = max_length;
|
421
|
+
set_inline_size(inline_length + max_length);
|
422
|
+
return;
|
423
|
+
}
|
563
424
|
}
|
564
425
|
|
565
426
|
CordRep* root = force_tree(max_length);
|
@@ -569,12 +430,16 @@ void Cord::InlineRep::GetAppendRegion(char** region, size_t* size,
|
|
569
430
|
}
|
570
431
|
|
571
432
|
// Allocate new node.
|
572
|
-
|
573
|
-
|
574
|
-
new_node->length =
|
575
|
-
|
576
|
-
*region = new_node->data;
|
433
|
+
CordRepFlat* new_node =
|
434
|
+
CordRepFlat::New(std::max(static_cast<size_t>(root->length), max_length));
|
435
|
+
new_node->length = std::min(new_node->Capacity(), max_length);
|
436
|
+
*region = new_node->Data();
|
577
437
|
*size = new_node->length;
|
438
|
+
|
439
|
+
if (cord_ring_enabled()) {
|
440
|
+
replace_tree(CordRepRing::Append(ForceRing(root, 1), new_node));
|
441
|
+
return;
|
442
|
+
}
|
578
443
|
replace_tree(Concat(root, new_node));
|
579
444
|
}
|
580
445
|
|
@@ -582,12 +447,14 @@ void Cord::InlineRep::GetAppendRegion(char** region, size_t* size) {
|
|
582
447
|
const size_t max_length = std::numeric_limits<size_t>::max();
|
583
448
|
|
584
449
|
// Try to fit in the inline buffer if possible.
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
450
|
+
if (!data_.is_tree()) {
|
451
|
+
size_t inline_length = inline_size();
|
452
|
+
if (inline_length < kMaxInline) {
|
453
|
+
*region = data_.as_chars() + inline_length;
|
454
|
+
*size = kMaxInline - inline_length;
|
455
|
+
set_inline_size(kMaxInline);
|
456
|
+
return;
|
457
|
+
}
|
591
458
|
}
|
592
459
|
|
593
460
|
CordRep* root = force_tree(max_length);
|
@@ -597,10 +464,15 @@ void Cord::InlineRep::GetAppendRegion(char** region, size_t* size) {
|
|
597
464
|
}
|
598
465
|
|
599
466
|
// Allocate new node.
|
600
|
-
|
601
|
-
new_node->length =
|
602
|
-
*region = new_node->
|
467
|
+
CordRepFlat* new_node = CordRepFlat::New(root->length);
|
468
|
+
new_node->length = new_node->Capacity();
|
469
|
+
*region = new_node->Data();
|
603
470
|
*size = new_node->length;
|
471
|
+
|
472
|
+
if (cord_ring_enabled()) {
|
473
|
+
replace_tree(CordRepRing::Append(ForceRing(root, 1), new_node));
|
474
|
+
return;
|
475
|
+
}
|
604
476
|
replace_tree(Concat(root, new_node));
|
605
477
|
}
|
606
478
|
|
@@ -608,7 +480,7 @@ void Cord::InlineRep::GetAppendRegion(char** region, size_t* size) {
|
|
608
480
|
// will return true.
|
609
481
|
static bool RepMemoryUsageLeaf(const CordRep* rep, size_t* total_mem_usage) {
|
610
482
|
if (rep->tag >= FLAT) {
|
611
|
-
*total_mem_usage +=
|
483
|
+
*total_mem_usage += rep->flat()->AllocatedSize();
|
612
484
|
return true;
|
613
485
|
}
|
614
486
|
if (rep->tag == EXTERNAL) {
|
@@ -621,26 +493,24 @@ static bool RepMemoryUsageLeaf(const CordRep* rep, size_t* total_mem_usage) {
|
|
621
493
|
void Cord::InlineRep::AssignSlow(const Cord::InlineRep& src) {
|
622
494
|
ClearSlow();
|
623
495
|
|
624
|
-
|
496
|
+
data_ = src.data_;
|
625
497
|
if (is_tree()) {
|
626
|
-
|
498
|
+
data_.set_profiled(false);
|
499
|
+
CordRep::Ref(tree());
|
500
|
+
clear_cordz_info();
|
627
501
|
}
|
628
502
|
}
|
629
503
|
|
630
504
|
void Cord::InlineRep::ClearSlow() {
|
631
505
|
if (is_tree()) {
|
632
|
-
Unref(tree());
|
506
|
+
CordRep::Unref(tree());
|
633
507
|
}
|
634
|
-
|
508
|
+
ResetToEmpty();
|
635
509
|
}
|
636
510
|
|
637
511
|
// --------------------------------------------------------------------
|
638
512
|
// Constructors and destructors
|
639
513
|
|
640
|
-
Cord::Cord(const Cord& src) : contents_(src.contents_) {
|
641
|
-
Ref(contents_.tree()); // Does nothing if contents_ has embedded data
|
642
|
-
}
|
643
|
-
|
644
514
|
Cord::Cord(absl::string_view src) {
|
645
515
|
const size_t n = src.size();
|
646
516
|
if (n <= InlineRep::kMaxInline) {
|
@@ -684,14 +554,18 @@ template Cord::Cord(std::string&& src);
|
|
684
554
|
// The destruction code is separate so that the compiler can determine
|
685
555
|
// that it does not need to call the destructor on a moved-from Cord.
|
686
556
|
void Cord::DestroyCordSlow() {
|
687
|
-
|
557
|
+
if (CordRep* tree = contents_.tree()) {
|
558
|
+
CordRep::Unref(VerifyTree(tree));
|
559
|
+
}
|
688
560
|
}
|
689
561
|
|
690
562
|
// --------------------------------------------------------------------
|
691
563
|
// Mutators
|
692
564
|
|
693
565
|
void Cord::Clear() {
|
694
|
-
|
566
|
+
if (CordRep* tree = contents_.clear()) {
|
567
|
+
CordRep::Unref(tree);
|
568
|
+
}
|
695
569
|
}
|
696
570
|
|
697
571
|
Cord& Cord::operator=(absl::string_view src) {
|
@@ -702,19 +576,20 @@ Cord& Cord::operator=(absl::string_view src) {
|
|
702
576
|
if (length <= InlineRep::kMaxInline) {
|
703
577
|
// Embed into this->contents_
|
704
578
|
contents_.set_data(data, length, true);
|
705
|
-
Unref(tree);
|
579
|
+
if (tree) CordRep::Unref(tree);
|
706
580
|
return *this;
|
707
581
|
}
|
708
582
|
if (tree != nullptr && tree->tag >= FLAT &&
|
709
|
-
|
583
|
+
tree->flat()->Capacity() >= length &&
|
584
|
+
tree->refcount.IsOne()) {
|
710
585
|
// Copy in place if the existing FLAT node is reusable.
|
711
|
-
memmove(tree->
|
586
|
+
memmove(tree->flat()->Data(), data, length);
|
712
587
|
tree->length = length;
|
713
588
|
VerifyTree(tree);
|
714
589
|
return *this;
|
715
590
|
}
|
716
591
|
contents_.set_tree(NewTree(data, length, 0));
|
717
|
-
Unref(tree);
|
592
|
+
if (tree) CordRep::Unref(tree);
|
718
593
|
return *this;
|
719
594
|
}
|
720
595
|
|
@@ -734,24 +609,25 @@ template Cord& Cord::operator=(std::string&& src);
|
|
734
609
|
// we keep it here to make diffs easier.
|
735
610
|
void Cord::InlineRep::AppendArray(const char* src_data, size_t src_size) {
|
736
611
|
if (src_size == 0) return; // memcpy(_, nullptr, 0) is undefined.
|
737
|
-
// Try to fit in the inline buffer if possible.
|
738
|
-
size_t inline_length = data_[kMaxInline];
|
739
|
-
if (inline_length < kMaxInline && src_size <= kMaxInline - inline_length) {
|
740
|
-
// Append new data to embedded array
|
741
|
-
data_[kMaxInline] = static_cast<char>(inline_length + src_size);
|
742
|
-
memcpy(data_ + inline_length, src_data, src_size);
|
743
|
-
return;
|
744
|
-
}
|
745
|
-
|
746
|
-
CordRep* root = tree();
|
747
612
|
|
748
613
|
size_t appended = 0;
|
749
|
-
|
614
|
+
CordRep* root = nullptr;
|
615
|
+
if (is_tree()) {
|
616
|
+
root = data_.as_tree();
|
750
617
|
char* region;
|
751
618
|
if (PrepareAppendRegion(root, ®ion, &appended, src_size)) {
|
752
619
|
memcpy(region, src_data, appended);
|
753
620
|
}
|
754
621
|
} else {
|
622
|
+
// Try to fit in the inline buffer if possible.
|
623
|
+
size_t inline_length = inline_size();
|
624
|
+
if (src_size <= kMaxInline - inline_length) {
|
625
|
+
// Append new data to embedded array
|
626
|
+
memcpy(data_.as_chars() + inline_length, src_data, src_size);
|
627
|
+
set_inline_size(inline_length + src_size);
|
628
|
+
return;
|
629
|
+
}
|
630
|
+
|
755
631
|
// It is possible that src_data == data_, but when we transition from an
|
756
632
|
// InlineRep to a tree we need to assign data_ = root via set_tree. To
|
757
633
|
// avoid corrupting the source data before we copy it, delay calling
|
@@ -760,10 +636,11 @@ void Cord::InlineRep::AppendArray(const char* src_data, size_t src_size) {
|
|
760
636
|
// either double the inlined size, or the added size + 10%.
|
761
637
|
const size_t size1 = inline_length * 2 + src_size;
|
762
638
|
const size_t size2 = inline_length + src_size / 10;
|
763
|
-
root =
|
764
|
-
appended = std::min(
|
765
|
-
|
766
|
-
memcpy(root->
|
639
|
+
root = CordRepFlat::New(std::max<size_t>(size1, size2));
|
640
|
+
appended = std::min(
|
641
|
+
src_size, root->flat()->Capacity() - inline_length);
|
642
|
+
memcpy(root->flat()->Data(), data_.as_chars(), inline_length);
|
643
|
+
memcpy(root->flat()->Data() + inline_length, src_data, appended);
|
767
644
|
root->length = inline_length + appended;
|
768
645
|
set_tree(root);
|
769
646
|
}
|
@@ -774,6 +651,13 @@ void Cord::InlineRep::AppendArray(const char* src_data, size_t src_size) {
|
|
774
651
|
return;
|
775
652
|
}
|
776
653
|
|
654
|
+
if (cord_ring_enabled()) {
|
655
|
+
absl::string_view data(src_data, src_size);
|
656
|
+
root = ForceRing(root, (data.size() - 1) / kMaxFlatLength + 1);
|
657
|
+
replace_tree(CordRepRing::Append(root->ring(), data));
|
658
|
+
return;
|
659
|
+
}
|
660
|
+
|
777
661
|
// Use new block(s) for any remaining bytes that were not handled above.
|
778
662
|
// Alloc extra memory only if the right child of the root of the new tree is
|
779
663
|
// going to be a FLAT node, which will permit further inplace appends.
|
@@ -790,7 +674,7 @@ void Cord::InlineRep::AppendArray(const char* src_data, size_t src_size) {
|
|
790
674
|
}
|
791
675
|
|
792
676
|
inline CordRep* Cord::TakeRep() const& {
|
793
|
-
return Ref(contents_.tree());
|
677
|
+
return CordRep::Ref(contents_.tree());
|
794
678
|
}
|
795
679
|
|
796
680
|
inline CordRep* Cord::TakeRep() && {
|
@@ -819,7 +703,7 @@ inline void Cord::AppendImpl(C&& src) {
|
|
819
703
|
}
|
820
704
|
if (src_tree->tag >= FLAT) {
|
821
705
|
// src tree just has one flat node.
|
822
|
-
contents_.AppendArray(src_tree->
|
706
|
+
contents_.AppendArray(src_tree->flat()->Data(), src_size);
|
823
707
|
return;
|
824
708
|
}
|
825
709
|
if (&src == this) {
|
@@ -834,6 +718,7 @@ inline void Cord::AppendImpl(C&& src) {
|
|
834
718
|
return;
|
835
719
|
}
|
836
720
|
|
721
|
+
// Guaranteed to be a tree (kMaxBytesToCopy > kInlinedSize)
|
837
722
|
contents_.AppendTree(std::forward<C>(src).TakeRep());
|
838
723
|
}
|
839
724
|
|
@@ -855,7 +740,7 @@ template void Cord::Append(std::string&& src);
|
|
855
740
|
void Cord::Prepend(const Cord& src) {
|
856
741
|
CordRep* src_tree = src.contents_.tree();
|
857
742
|
if (src_tree != nullptr) {
|
858
|
-
Ref(src_tree);
|
743
|
+
CordRep::Ref(src_tree);
|
859
744
|
contents_.PrependTree(src_tree);
|
860
745
|
return;
|
861
746
|
}
|
@@ -867,18 +752,19 @@ void Cord::Prepend(const Cord& src) {
|
|
867
752
|
|
868
753
|
void Cord::Prepend(absl::string_view src) {
|
869
754
|
if (src.empty()) return; // memcpy(_, nullptr, 0) is undefined.
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
755
|
+
if (!contents_.is_tree()) {
|
756
|
+
size_t cur_size = contents_.inline_size();
|
757
|
+
if (cur_size + src.size() <= InlineRep::kMaxInline) {
|
758
|
+
// Use embedded storage.
|
759
|
+
char data[InlineRep::kMaxInline + 1] = {0};
|
760
|
+
memcpy(data, src.data(), src.size());
|
761
|
+
memcpy(data + src.size(), contents_.data(), cur_size);
|
762
|
+
memcpy(contents_.data_.as_chars(), data, InlineRep::kMaxInline + 1);
|
763
|
+
contents_.set_inline_size(cur_size + src.size());
|
764
|
+
return;
|
765
|
+
}
|
881
766
|
}
|
767
|
+
contents_.PrependTree(NewTree(src.data(), src.size(), 0));
|
882
768
|
}
|
883
769
|
|
884
770
|
template <typename T, Cord::EnableIfString<T>>
|
@@ -894,7 +780,7 @@ template void Cord::Prepend(std::string&& src);
|
|
894
780
|
|
895
781
|
static CordRep* RemovePrefixFrom(CordRep* node, size_t n) {
|
896
782
|
if (n >= node->length) return nullptr;
|
897
|
-
if (n == 0) return Ref(node);
|
783
|
+
if (n == 0) return CordRep::Ref(node);
|
898
784
|
absl::InlinedVector<CordRep*, kInlinedVectorSize> rhs_stack;
|
899
785
|
|
900
786
|
while (node->tag == CONCAT) {
|
@@ -912,7 +798,7 @@ static CordRep* RemovePrefixFrom(CordRep* node, size_t n) {
|
|
912
798
|
assert(n <= node->length);
|
913
799
|
|
914
800
|
if (n == 0) {
|
915
|
-
Ref(node);
|
801
|
+
CordRep::Ref(node);
|
916
802
|
} else {
|
917
803
|
size_t start = n;
|
918
804
|
size_t len = node->length - n;
|
@@ -921,10 +807,10 @@ static CordRep* RemovePrefixFrom(CordRep* node, size_t n) {
|
|
921
807
|
start += node->substring()->start;
|
922
808
|
node = node->substring()->child;
|
923
809
|
}
|
924
|
-
node = NewSubstring(Ref(node), start, len);
|
810
|
+
node = NewSubstring(CordRep::Ref(node), start, len);
|
925
811
|
}
|
926
812
|
while (!rhs_stack.empty()) {
|
927
|
-
node = Concat(node, Ref(rhs_stack.back()));
|
813
|
+
node = Concat(node, CordRep::Ref(rhs_stack.back()));
|
928
814
|
rhs_stack.pop_back();
|
929
815
|
}
|
930
816
|
return node;
|
@@ -935,7 +821,7 @@ static CordRep* RemovePrefixFrom(CordRep* node, size_t n) {
|
|
935
821
|
// edited in place iff that node and all its ancestors have a refcount of 1.
|
936
822
|
static CordRep* RemoveSuffixFrom(CordRep* node, size_t n) {
|
937
823
|
if (n >= node->length) return nullptr;
|
938
|
-
if (n == 0) return Ref(node);
|
824
|
+
if (n == 0) return CordRep::Ref(node);
|
939
825
|
absl::InlinedVector<CordRep*, kInlinedVectorSize> lhs_stack;
|
940
826
|
bool inplace_ok = node->refcount.IsOne();
|
941
827
|
|
@@ -955,11 +841,11 @@ static CordRep* RemoveSuffixFrom(CordRep* node, size_t n) {
|
|
955
841
|
assert(n <= node->length);
|
956
842
|
|
957
843
|
if (n == 0) {
|
958
|
-
Ref(node);
|
844
|
+
CordRep::Ref(node);
|
959
845
|
} else if (inplace_ok && node->tag != EXTERNAL) {
|
960
846
|
// Consider making a new buffer if the current node capacity is much
|
961
847
|
// larger than the new length.
|
962
|
-
Ref(node);
|
848
|
+
CordRep::Ref(node);
|
963
849
|
node->length -= n;
|
964
850
|
} else {
|
965
851
|
size_t start = 0;
|
@@ -968,10 +854,10 @@ static CordRep* RemoveSuffixFrom(CordRep* node, size_t n) {
|
|
968
854
|
start = node->substring()->start;
|
969
855
|
node = node->substring()->child;
|
970
856
|
}
|
971
|
-
node = NewSubstring(Ref(node), start, len);
|
857
|
+
node = NewSubstring(CordRep::Ref(node), start, len);
|
972
858
|
}
|
973
859
|
while (!lhs_stack.empty()) {
|
974
|
-
node = Concat(Ref(lhs_stack.back()), node);
|
860
|
+
node = Concat(CordRep::Ref(lhs_stack.back()), node);
|
975
861
|
lhs_stack.pop_back();
|
976
862
|
}
|
977
863
|
return node;
|
@@ -984,9 +870,11 @@ void Cord::RemovePrefix(size_t n) {
|
|
984
870
|
CordRep* tree = contents_.tree();
|
985
871
|
if (tree == nullptr) {
|
986
872
|
contents_.remove_prefix(n);
|
873
|
+
} else if (tree->tag == RING) {
|
874
|
+
contents_.replace_tree(CordRepRing::RemovePrefix(tree->ring(), n));
|
987
875
|
} else {
|
988
876
|
CordRep* newrep = RemovePrefixFrom(tree, n);
|
989
|
-
Unref(tree);
|
877
|
+
CordRep::Unref(tree);
|
990
878
|
contents_.replace_tree(VerifyTree(newrep));
|
991
879
|
}
|
992
880
|
}
|
@@ -998,9 +886,11 @@ void Cord::RemoveSuffix(size_t n) {
|
|
998
886
|
CordRep* tree = contents_.tree();
|
999
887
|
if (tree == nullptr) {
|
1000
888
|
contents_.reduce_size(n);
|
889
|
+
} else if (tree->tag == RING) {
|
890
|
+
contents_.replace_tree(CordRepRing::RemoveSuffix(tree->ring(), n));
|
1001
891
|
} else {
|
1002
892
|
CordRep* newrep = RemoveSuffixFrom(tree, n);
|
1003
|
-
Unref(tree);
|
893
|
+
CordRep::Unref(tree);
|
1004
894
|
contents_.replace_tree(VerifyTree(newrep));
|
1005
895
|
}
|
1006
896
|
}
|
@@ -1033,13 +923,13 @@ static CordRep* NewSubRange(CordRep* node, size_t pos, size_t n) {
|
|
1033
923
|
results.pop_back();
|
1034
924
|
results.push_back(Concat(left, right));
|
1035
925
|
} else if (pos == 0 && n == node->length) {
|
1036
|
-
results.push_back(Ref(node));
|
926
|
+
results.push_back(CordRep::Ref(node));
|
1037
927
|
} else if (node->tag != CONCAT) {
|
1038
928
|
if (node->tag == SUBSTRING) {
|
1039
929
|
pos += node->substring()->start;
|
1040
930
|
node = node->substring()->child;
|
1041
931
|
}
|
1042
|
-
results.push_back(NewSubstring(Ref(node), pos, n));
|
932
|
+
results.push_back(NewSubstring(CordRep::Ref(node), pos, n));
|
1043
933
|
} else if (pos + n <= node->concat()->left->length) {
|
1044
934
|
todo.push_back(SubRange(node->concat()->left, pos, n));
|
1045
935
|
} else if (pos >= node->concat()->left->length) {
|
@@ -1071,7 +961,7 @@ Cord Cord::Subcord(size_t pos, size_t new_size) const {
|
|
1071
961
|
} else if (new_size <= InlineRep::kMaxInline) {
|
1072
962
|
Cord::ChunkIterator it = chunk_begin();
|
1073
963
|
it.AdvanceBytes(pos);
|
1074
|
-
char* dest = sub_cord.contents_.data_;
|
964
|
+
char* dest = sub_cord.contents_.data_.as_chars();
|
1075
965
|
size_t remaining_size = new_size;
|
1076
966
|
while (remaining_size > it->size()) {
|
1077
967
|
cord_internal::SmallMemmove(dest, it->data(), it->size());
|
@@ -1080,7 +970,10 @@ Cord Cord::Subcord(size_t pos, size_t new_size) const {
|
|
1080
970
|
++it;
|
1081
971
|
}
|
1082
972
|
cord_internal::SmallMemmove(dest, it->data(), remaining_size);
|
1083
|
-
sub_cord.contents_.
|
973
|
+
sub_cord.contents_.set_inline_size(new_size);
|
974
|
+
} else if (tree->tag == RING) {
|
975
|
+
tree = CordRepRing::SubRing(CordRep::Ref(tree)->ring(), pos, new_size);
|
976
|
+
sub_cord.contents_.set_tree(tree);
|
1084
977
|
} else {
|
1085
978
|
sub_cord.contents_.set_tree(NewSubRange(tree, pos, new_size));
|
1086
979
|
}
|
@@ -1117,9 +1010,9 @@ class CordForest {
|
|
1117
1010
|
concat_node->left = concat_freelist_;
|
1118
1011
|
concat_freelist_ = concat_node;
|
1119
1012
|
} else {
|
1120
|
-
Ref(concat_node->right);
|
1121
|
-
Ref(concat_node->left);
|
1122
|
-
Unref(concat_node);
|
1013
|
+
CordRep::Ref(concat_node->right);
|
1014
|
+
CordRep::Ref(concat_node->left);
|
1015
|
+
CordRep::Unref(concat_node);
|
1123
1016
|
}
|
1124
1017
|
} else {
|
1125
1018
|
AddNode(node);
|
@@ -1269,20 +1162,23 @@ bool ComputeCompareResult<bool>(int memcmp_res) {
|
|
1269
1162
|
// Helper routine. Locates the first flat chunk of the Cord without
|
1270
1163
|
// initializing the iterator.
|
1271
1164
|
inline absl::string_view Cord::InlineRep::FindFlatStartPiece() const {
|
1272
|
-
|
1273
|
-
|
1274
|
-
return absl::string_view(data_, n);
|
1165
|
+
if (!is_tree()) {
|
1166
|
+
return absl::string_view(data_.as_chars(), data_.inline_size());
|
1275
1167
|
}
|
1276
1168
|
|
1277
1169
|
CordRep* node = tree();
|
1278
1170
|
if (node->tag >= FLAT) {
|
1279
|
-
return absl::string_view(node->
|
1171
|
+
return absl::string_view(node->flat()->Data(), node->length);
|
1280
1172
|
}
|
1281
1173
|
|
1282
1174
|
if (node->tag == EXTERNAL) {
|
1283
1175
|
return absl::string_view(node->external()->base, node->length);
|
1284
1176
|
}
|
1285
1177
|
|
1178
|
+
if (node->tag == RING) {
|
1179
|
+
return node->ring()->entry_data(node->ring()->head());
|
1180
|
+
}
|
1181
|
+
|
1286
1182
|
// Walk down the left branches until we hit a non-CONCAT node.
|
1287
1183
|
while (node->tag == CONCAT) {
|
1288
1184
|
node = node->concat()->left;
|
@@ -1299,7 +1195,7 @@ inline absl::string_view Cord::InlineRep::FindFlatStartPiece() const {
|
|
1299
1195
|
}
|
1300
1196
|
|
1301
1197
|
if (node->tag >= FLAT) {
|
1302
|
-
return absl::string_view(node->
|
1198
|
+
return absl::string_view(node->flat()->Data() + offset, length);
|
1303
1199
|
}
|
1304
1200
|
|
1305
1201
|
assert((node->tag == EXTERNAL) && "Expect FLAT or EXTERNAL node here");
|
@@ -1482,26 +1378,22 @@ void Cord::CopyToArraySlowPath(char* dst) const {
|
|
1482
1378
|
}
|
1483
1379
|
}
|
1484
1380
|
|
1485
|
-
Cord::ChunkIterator& Cord::ChunkIterator::
|
1486
|
-
|
1487
|
-
|
1488
|
-
assert(bytes_remaining_ >= current_chunk_.size());
|
1489
|
-
bytes_remaining_ -= current_chunk_.size();
|
1490
|
-
|
1491
|
-
if (stack_of_right_children_.empty()) {
|
1381
|
+
Cord::ChunkIterator& Cord::ChunkIterator::AdvanceStack() {
|
1382
|
+
auto& stack_of_right_children = stack_of_right_children_;
|
1383
|
+
if (stack_of_right_children.empty()) {
|
1492
1384
|
assert(!current_chunk_.empty()); // Called on invalid iterator.
|
1493
1385
|
// We have reached the end of the Cord.
|
1494
1386
|
return *this;
|
1495
1387
|
}
|
1496
1388
|
|
1497
1389
|
// Process the next node on the stack.
|
1498
|
-
CordRep* node =
|
1499
|
-
|
1390
|
+
CordRep* node = stack_of_right_children.back();
|
1391
|
+
stack_of_right_children.pop_back();
|
1500
1392
|
|
1501
1393
|
// Walk down the left branches until we hit a non-CONCAT node. Save the
|
1502
1394
|
// right children to the stack for subsequent traversal.
|
1503
1395
|
while (node->tag == CONCAT) {
|
1504
|
-
|
1396
|
+
stack_of_right_children.push_back(node->concat()->right);
|
1505
1397
|
node = node->concat()->left;
|
1506
1398
|
}
|
1507
1399
|
|
@@ -1516,7 +1408,7 @@ Cord::ChunkIterator& Cord::ChunkIterator::operator++() {
|
|
1516
1408
|
assert(node->tag == EXTERNAL || node->tag >= FLAT);
|
1517
1409
|
assert(length != 0);
|
1518
1410
|
const char* data =
|
1519
|
-
node->tag == EXTERNAL ? node->external()->base : node->
|
1411
|
+
node->tag == EXTERNAL ? node->external()->base : node->flat()->Data();
|
1520
1412
|
current_chunk_ = absl::string_view(data + offset, length);
|
1521
1413
|
current_leaf_ = node;
|
1522
1414
|
return *this;
|
@@ -1544,12 +1436,32 @@ Cord Cord::ChunkIterator::AdvanceAndReadBytes(size_t n) {
|
|
1544
1436
|
}
|
1545
1437
|
return subcord;
|
1546
1438
|
}
|
1439
|
+
|
1440
|
+
if (ring_reader_) {
|
1441
|
+
size_t chunk_size = current_chunk_.size();
|
1442
|
+
if (n <= chunk_size && n <= kMaxBytesToCopy) {
|
1443
|
+
subcord = Cord(current_chunk_.substr(0, n));
|
1444
|
+
} else {
|
1445
|
+
auto* ring = CordRep::Ref(ring_reader_.ring())->ring();
|
1446
|
+
size_t offset = ring_reader_.length() - bytes_remaining_;
|
1447
|
+
subcord.contents_.set_tree(CordRepRing::SubRing(ring, offset, n));
|
1448
|
+
}
|
1449
|
+
if (n < chunk_size) {
|
1450
|
+
bytes_remaining_ -= n;
|
1451
|
+
current_chunk_.remove_prefix(n);
|
1452
|
+
} else {
|
1453
|
+
AdvanceBytesRing(n);
|
1454
|
+
}
|
1455
|
+
return subcord;
|
1456
|
+
}
|
1457
|
+
|
1458
|
+
auto& stack_of_right_children = stack_of_right_children_;
|
1547
1459
|
if (n < current_chunk_.size()) {
|
1548
1460
|
// Range to read is a proper subrange of the current chunk.
|
1549
1461
|
assert(current_leaf_ != nullptr);
|
1550
|
-
CordRep* subnode = Ref(current_leaf_);
|
1551
|
-
const char* data =
|
1552
|
-
|
1462
|
+
CordRep* subnode = CordRep::Ref(current_leaf_);
|
1463
|
+
const char* data = subnode->tag == EXTERNAL ? subnode->external()->base
|
1464
|
+
: subnode->flat()->Data();
|
1553
1465
|
subnode = NewSubstring(subnode, current_chunk_.data() - data, n);
|
1554
1466
|
subcord.contents_.set_tree(VerifyTree(subnode));
|
1555
1467
|
RemoveChunkPrefix(n);
|
@@ -1559,10 +1471,10 @@ Cord Cord::ChunkIterator::AdvanceAndReadBytes(size_t n) {
|
|
1559
1471
|
// Range to read begins with a proper subrange of the current chunk.
|
1560
1472
|
assert(!current_chunk_.empty());
|
1561
1473
|
assert(current_leaf_ != nullptr);
|
1562
|
-
CordRep* subnode = Ref(current_leaf_);
|
1474
|
+
CordRep* subnode = CordRep::Ref(current_leaf_);
|
1563
1475
|
if (current_chunk_.size() < subnode->length) {
|
1564
|
-
const char* data =
|
1565
|
-
|
1476
|
+
const char* data = subnode->tag == EXTERNAL ? subnode->external()->base
|
1477
|
+
: subnode->flat()->Data();
|
1566
1478
|
subnode = NewSubstring(subnode, current_chunk_.data() - data,
|
1567
1479
|
current_chunk_.size());
|
1568
1480
|
}
|
@@ -1572,20 +1484,20 @@ Cord Cord::ChunkIterator::AdvanceAndReadBytes(size_t n) {
|
|
1572
1484
|
// Process the next node(s) on the stack, reading whole subtrees depending on
|
1573
1485
|
// their length and how many bytes we are advancing.
|
1574
1486
|
CordRep* node = nullptr;
|
1575
|
-
while (!
|
1576
|
-
node =
|
1577
|
-
|
1487
|
+
while (!stack_of_right_children.empty()) {
|
1488
|
+
node = stack_of_right_children.back();
|
1489
|
+
stack_of_right_children.pop_back();
|
1578
1490
|
if (node->length > n) break;
|
1579
1491
|
// TODO(qrczak): This might unnecessarily recreate existing concat nodes.
|
1580
1492
|
// Avoiding that would need pretty complicated logic (instead of
|
1581
|
-
//
|
1493
|
+
// current_leaf, keep current_subtree_ which points to the highest node
|
1582
1494
|
// such that the current leaf can be found on the path of left children
|
1583
1495
|
// starting from current_subtree_; delay creating subnode while node is
|
1584
1496
|
// below current_subtree_; find the proper node along the path of left
|
1585
1497
|
// children starting from current_subtree_ if this loop exits while staying
|
1586
1498
|
// below current_subtree_; etc.; alternatively, push parents instead of
|
1587
1499
|
// right children on the stack).
|
1588
|
-
subnode = Concat(subnode, Ref(node));
|
1500
|
+
subnode = Concat(subnode, CordRep::Ref(node));
|
1589
1501
|
n -= node->length;
|
1590
1502
|
bytes_remaining_ -= node->length;
|
1591
1503
|
node = nullptr;
|
@@ -1603,11 +1515,11 @@ Cord Cord::ChunkIterator::AdvanceAndReadBytes(size_t n) {
|
|
1603
1515
|
while (node->tag == CONCAT) {
|
1604
1516
|
if (node->concat()->left->length > n) {
|
1605
1517
|
// Push right, descend left.
|
1606
|
-
|
1518
|
+
stack_of_right_children.push_back(node->concat()->right);
|
1607
1519
|
node = node->concat()->left;
|
1608
1520
|
} else {
|
1609
1521
|
// Read left, descend right.
|
1610
|
-
subnode = Concat(subnode, Ref(node->concat()->left));
|
1522
|
+
subnode = Concat(subnode, CordRep::Ref(node->concat()->left));
|
1611
1523
|
n -= node->concat()->left->length;
|
1612
1524
|
bytes_remaining_ -= node->concat()->left->length;
|
1613
1525
|
node = node->concat()->right;
|
@@ -1626,9 +1538,11 @@ Cord Cord::ChunkIterator::AdvanceAndReadBytes(size_t n) {
|
|
1626
1538
|
// chunk.
|
1627
1539
|
assert(node->tag == EXTERNAL || node->tag >= FLAT);
|
1628
1540
|
assert(length > n);
|
1629
|
-
if (n > 0)
|
1541
|
+
if (n > 0) {
|
1542
|
+
subnode = Concat(subnode, NewSubstring(CordRep::Ref(node), offset, n));
|
1543
|
+
}
|
1630
1544
|
const char* data =
|
1631
|
-
node->tag == EXTERNAL ? node->external()->base : node->
|
1545
|
+
node->tag == EXTERNAL ? node->external()->base : node->flat()->Data();
|
1632
1546
|
current_chunk_ = absl::string_view(data + offset + n, length - n);
|
1633
1547
|
current_leaf_ = node;
|
1634
1548
|
bytes_remaining_ -= n;
|
@@ -1644,12 +1558,19 @@ void Cord::ChunkIterator::AdvanceBytesSlowPath(size_t n) {
|
|
1644
1558
|
n -= current_chunk_.size();
|
1645
1559
|
bytes_remaining_ -= current_chunk_.size();
|
1646
1560
|
|
1561
|
+
if (stack_of_right_children_.empty()) {
|
1562
|
+
// We have reached the end of the Cord.
|
1563
|
+
assert(bytes_remaining_ == 0);
|
1564
|
+
return;
|
1565
|
+
}
|
1566
|
+
|
1647
1567
|
// Process the next node(s) on the stack, skipping whole subtrees depending on
|
1648
1568
|
// their length and how many bytes we are advancing.
|
1649
1569
|
CordRep* node = nullptr;
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1570
|
+
auto& stack_of_right_children = stack_of_right_children_;
|
1571
|
+
while (!stack_of_right_children.empty()) {
|
1572
|
+
node = stack_of_right_children.back();
|
1573
|
+
stack_of_right_children.pop_back();
|
1653
1574
|
if (node->length > n) break;
|
1654
1575
|
n -= node->length;
|
1655
1576
|
bytes_remaining_ -= node->length;
|
@@ -1667,7 +1588,7 @@ void Cord::ChunkIterator::AdvanceBytesSlowPath(size_t n) {
|
|
1667
1588
|
while (node->tag == CONCAT) {
|
1668
1589
|
if (node->concat()->left->length > n) {
|
1669
1590
|
// Push right, descend left.
|
1670
|
-
|
1591
|
+
stack_of_right_children.push_back(node->concat()->right);
|
1671
1592
|
node = node->concat()->left;
|
1672
1593
|
} else {
|
1673
1594
|
// Skip left, descend right.
|
@@ -1688,7 +1609,7 @@ void Cord::ChunkIterator::AdvanceBytesSlowPath(size_t n) {
|
|
1688
1609
|
assert(node->tag == EXTERNAL || node->tag >= FLAT);
|
1689
1610
|
assert(length > n);
|
1690
1611
|
const char* data =
|
1691
|
-
node->tag == EXTERNAL ? node->external()->base : node->
|
1612
|
+
node->tag == EXTERNAL ? node->external()->base : node->flat()->Data();
|
1692
1613
|
current_chunk_ = absl::string_view(data + offset + n, length - n);
|
1693
1614
|
current_leaf_ = node;
|
1694
1615
|
bytes_remaining_ -= n;
|
@@ -1706,7 +1627,9 @@ char Cord::operator[](size_t i) const {
|
|
1706
1627
|
assert(offset < rep->length);
|
1707
1628
|
if (rep->tag >= FLAT) {
|
1708
1629
|
// Get the "i"th character directly from the flat array.
|
1709
|
-
return rep->
|
1630
|
+
return rep->flat()->Data()[offset];
|
1631
|
+
} else if (rep->tag == RING) {
|
1632
|
+
return rep->ring()->GetCharacter(offset);
|
1710
1633
|
} else if (rep->tag == EXTERNAL) {
|
1711
1634
|
// Get the "i"th character from the external array.
|
1712
1635
|
return rep->external()->base[offset];
|
@@ -1737,9 +1660,9 @@ absl::string_view Cord::FlattenSlowPath() {
|
|
1737
1660
|
// Try to put the contents into a new flat rep. If they won't fit in the
|
1738
1661
|
// biggest possible flat node, use an external rep instead.
|
1739
1662
|
if (total_size <= kMaxFlatLength) {
|
1740
|
-
new_rep =
|
1663
|
+
new_rep = CordRepFlat::New(total_size);
|
1741
1664
|
new_rep->length = total_size;
|
1742
|
-
new_buffer = new_rep->
|
1665
|
+
new_buffer = new_rep->flat()->Data();
|
1743
1666
|
CopyToArraySlowPath(new_buffer);
|
1744
1667
|
} else {
|
1745
1668
|
new_buffer = std::allocator<char>().allocate(total_size);
|
@@ -1750,7 +1673,9 @@ absl::string_view Cord::FlattenSlowPath() {
|
|
1750
1673
|
s.size());
|
1751
1674
|
});
|
1752
1675
|
}
|
1753
|
-
|
1676
|
+
if (CordRep* tree = contents_.tree()) {
|
1677
|
+
CordRep::Unref(tree);
|
1678
|
+
}
|
1754
1679
|
contents_.set_tree(new_rep);
|
1755
1680
|
return absl::string_view(new_buffer, total_size);
|
1756
1681
|
}
|
@@ -1758,7 +1683,7 @@ absl::string_view Cord::FlattenSlowPath() {
|
|
1758
1683
|
/* static */ bool Cord::GetFlatAux(CordRep* rep, absl::string_view* fragment) {
|
1759
1684
|
assert(rep != nullptr);
|
1760
1685
|
if (rep->tag >= FLAT) {
|
1761
|
-
*fragment = absl::string_view(rep->
|
1686
|
+
*fragment = absl::string_view(rep->flat()->Data(), rep->length);
|
1762
1687
|
return true;
|
1763
1688
|
} else if (rep->tag == EXTERNAL) {
|
1764
1689
|
*fragment = absl::string_view(rep->external()->base, rep->length);
|
@@ -1766,8 +1691,8 @@ absl::string_view Cord::FlattenSlowPath() {
|
|
1766
1691
|
} else if (rep->tag == SUBSTRING) {
|
1767
1692
|
CordRep* child = rep->substring()->child;
|
1768
1693
|
if (child->tag >= FLAT) {
|
1769
|
-
*fragment =
|
1770
|
-
|
1694
|
+
*fragment = absl::string_view(
|
1695
|
+
child->flat()->Data() + rep->substring()->start, rep->length);
|
1771
1696
|
return true;
|
1772
1697
|
} else if (child->tag == EXTERNAL) {
|
1773
1698
|
*fragment = absl::string_view(
|
@@ -1781,6 +1706,15 @@ absl::string_view Cord::FlattenSlowPath() {
|
|
1781
1706
|
/* static */ void Cord::ForEachChunkAux(
|
1782
1707
|
absl::cord_internal::CordRep* rep,
|
1783
1708
|
absl::FunctionRef<void(absl::string_view)> callback) {
|
1709
|
+
if (rep->tag == RING) {
|
1710
|
+
ChunkIterator it(rep), end;
|
1711
|
+
while (it != end) {
|
1712
|
+
callback(*it);
|
1713
|
+
++it;
|
1714
|
+
}
|
1715
|
+
return;
|
1716
|
+
}
|
1717
|
+
|
1784
1718
|
assert(rep != nullptr);
|
1785
1719
|
int stack_pos = 0;
|
1786
1720
|
constexpr int stack_max = 128;
|
@@ -1822,9 +1756,9 @@ absl::string_view Cord::FlattenSlowPath() {
|
|
1822
1756
|
}
|
1823
1757
|
}
|
1824
1758
|
|
1825
|
-
static void DumpNode(CordRep* rep, bool include_data, std::ostream* os
|
1759
|
+
static void DumpNode(CordRep* rep, bool include_data, std::ostream* os,
|
1760
|
+
int indent) {
|
1826
1761
|
const int kIndentStep = 1;
|
1827
|
-
int indent = 0;
|
1828
1762
|
absl::InlinedVector<CordRep*, kInlinedVectorSize> stack;
|
1829
1763
|
absl::InlinedVector<int, kInlinedVectorSize> indents;
|
1830
1764
|
for (;;) {
|
@@ -1845,17 +1779,28 @@ static void DumpNode(CordRep* rep, bool include_data, std::ostream* os) {
|
|
1845
1779
|
*os << "SUBSTRING @ " << rep->substring()->start << "\n";
|
1846
1780
|
indent += kIndentStep;
|
1847
1781
|
rep = rep->substring()->child;
|
1848
|
-
} else { // Leaf
|
1782
|
+
} else { // Leaf or ring
|
1849
1783
|
if (rep->tag == EXTERNAL) {
|
1850
1784
|
*os << "EXTERNAL [";
|
1851
1785
|
if (include_data)
|
1852
1786
|
*os << absl::CEscape(std::string(rep->external()->base, rep->length));
|
1853
1787
|
*os << "]\n";
|
1854
|
-
} else {
|
1855
|
-
*os << "FLAT cap=" <<
|
1788
|
+
} else if (rep->tag >= FLAT) {
|
1789
|
+
*os << "FLAT cap=" << rep->flat()->Capacity()
|
1790
|
+
<< " [";
|
1856
1791
|
if (include_data)
|
1857
|
-
*os << absl::CEscape(std::string(rep->
|
1792
|
+
*os << absl::CEscape(std::string(rep->flat()->Data(), rep->length));
|
1858
1793
|
*os << "]\n";
|
1794
|
+
} else {
|
1795
|
+
assert(rep->tag == RING);
|
1796
|
+
auto* ring = rep->ring();
|
1797
|
+
*os << "RING, entries = " << ring->entries() << "\n";
|
1798
|
+
CordRepRing::index_type head = ring->head();
|
1799
|
+
do {
|
1800
|
+
DumpNode(ring->entry_child(head), include_data, os,
|
1801
|
+
indent + kIndentStep);
|
1802
|
+
head = ring->advance(head);;
|
1803
|
+
} while (head != ring->tail());
|
1859
1804
|
}
|
1860
1805
|
if (stack.empty()) break;
|
1861
1806
|
rep = stack.back();
|
@@ -1900,8 +1845,9 @@ static bool VerifyNode(CordRep* root, CordRep* start_node,
|
|
1900
1845
|
worklist.push_back(node->concat()->left);
|
1901
1846
|
}
|
1902
1847
|
} else if (node->tag >= FLAT) {
|
1903
|
-
ABSL_INTERNAL_CHECK(
|
1904
|
-
|
1848
|
+
ABSL_INTERNAL_CHECK(
|
1849
|
+
node->length <= node->flat()->Capacity(),
|
1850
|
+
ReportError(root, node));
|
1905
1851
|
} else if (node->tag == EXTERNAL) {
|
1906
1852
|
ABSL_INTERNAL_CHECK(node->external()->base != nullptr,
|
1907
1853
|
ReportError(root, node));
|
@@ -1948,6 +1894,15 @@ static bool VerifyNode(CordRep* root, CordRep* start_node,
|
|
1948
1894
|
}
|
1949
1895
|
next_node = right;
|
1950
1896
|
}
|
1897
|
+
} else if (cur_node->tag == RING) {
|
1898
|
+
total_mem_usage += CordRepRing::AllocSize(cur_node->ring()->capacity());
|
1899
|
+
const CordRepRing* ring = cur_node->ring();
|
1900
|
+
CordRepRing::index_type pos = ring->head(), tail = ring->tail();
|
1901
|
+
do {
|
1902
|
+
CordRep* node = ring->entry_child(pos);
|
1903
|
+
assert(node->tag >= FLAT || node->tag == EXTERNAL);
|
1904
|
+
RepMemoryUsageLeaf(node, &total_mem_usage);
|
1905
|
+
} while ((pos = ring->advance(pos)) != tail);
|
1951
1906
|
} else {
|
1952
1907
|
// Since cur_node is not a leaf or a concat node it must be a substring.
|
1953
1908
|
assert(cur_node->tag == SUBSTRING);
|
@@ -1977,14 +1932,14 @@ std::ostream& operator<<(std::ostream& out, const Cord& cord) {
|
|
1977
1932
|
}
|
1978
1933
|
|
1979
1934
|
namespace strings_internal {
|
1980
|
-
size_t CordTestAccess::FlatOverhead() { return kFlatOverhead; }
|
1981
|
-
size_t CordTestAccess::MaxFlatLength() { return kMaxFlatLength; }
|
1935
|
+
size_t CordTestAccess::FlatOverhead() { return cord_internal::kFlatOverhead; }
|
1936
|
+
size_t CordTestAccess::MaxFlatLength() { return cord_internal::kMaxFlatLength; }
|
1982
1937
|
size_t CordTestAccess::FlatTagToLength(uint8_t tag) {
|
1983
|
-
return TagToLength(tag);
|
1938
|
+
return cord_internal::TagToLength(tag);
|
1984
1939
|
}
|
1985
1940
|
uint8_t CordTestAccess::LengthToTag(size_t s) {
|
1986
1941
|
ABSL_INTERNAL_CHECK(s <= kMaxFlatLength, absl::StrCat("Invalid length ", s));
|
1987
|
-
return AllocatedSizeToTag(s + kFlatOverhead);
|
1942
|
+
return cord_internal::AllocatedSizeToTag(s + cord_internal::kFlatOverhead);
|
1988
1943
|
}
|
1989
1944
|
size_t CordTestAccess::SizeofCordRepConcat() { return sizeof(CordRepConcat); }
|
1990
1945
|
size_t CordTestAccess::SizeofCordRepExternal() {
|