grpc 1.57.0 → 1.58.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +534 -284
- data/include/grpc/event_engine/event_engine.h +0 -1
- data/include/grpc/event_engine/memory_allocator.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +371 -0
- data/include/grpc/impl/grpc_types.h +1 -353
- data/include/grpc/module.modulemap +1 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +7 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +10 -5
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +5 -3
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +4 -2
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +115 -109
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +0 -5
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +7 -2
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -3
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +6 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +8 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +9 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +41 -14
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/retry_filter.h +1 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +9 -5
- data/src/core/ext/filters/client_channel/subchannel.h +8 -2
- data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -7
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -12
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +357 -358
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -18
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +63 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +30 -57
- data/src/core/ext/transport/chttp2/transport/parsing.cc +16 -7
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +81 -89
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
- data/src/core/ext/xds/xds_client_grpc.cc +1 -0
- data/src/core/ext/xds/xds_http_fault_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_fault_filter.h +1 -2
- data/src/core/ext/xds/xds_http_filters.h +2 -4
- data/src/core/ext/xds/xds_http_rbac_filter.cc +3 -8
- data/src/core/ext/xds/xds_http_rbac_filter.h +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -2
- data/src/core/ext/xds/xds_lb_policy_registry.cc +3 -6
- data/src/core/ext/xds/xds_routing.cc +2 -2
- data/src/core/ext/xds/xds_transport_grpc.cc +1 -0
- data/src/core/lib/avl/avl.h +10 -173
- data/src/core/lib/channel/call_tracer.cc +289 -0
- data/src/core/lib/channel/call_tracer.h +35 -0
- data/src/core/lib/channel/channel_args.cc +84 -79
- data/src/core/lib/channel/channel_args.h +29 -17
- data/src/core/lib/channel/connected_channel.cc +0 -1
- data/src/core/lib/channel/promise_based_filter.cc +4 -1
- data/src/core/lib/compression/compression_internal.cc +8 -4
- data/src/core/lib/debug/stats_data.cc +93 -21
- data/src/core/lib/debug/stats_data.h +41 -0
- data/src/core/lib/event_engine/ares_resolver.cc +712 -0
- data/src/core/lib/event_engine/ares_resolver.h +150 -0
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +9 -3
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +2 -2
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
- data/src/core/lib/event_engine/forkable.cc +15 -1
- data/src/core/lib/event_engine/forkable.h +15 -0
- data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +25 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +47 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +12 -1
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +1 -0
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +7 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +86 -111
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +15 -61
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +3 -4
- data/src/core/lib/experiments/config.cc +14 -0
- data/src/core/lib/experiments/experiments.cc +141 -304
- data/src/core/lib/experiments/experiments.h +16 -17
- data/src/core/lib/gprpp/ref_counted.h +3 -1
- data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
- data/src/core/lib/gprpp/ref_counted_string.h +146 -0
- data/src/core/lib/gprpp/time.h +2 -2
- data/src/core/lib/gprpp/work_serializer.cc +36 -0
- data/src/core/lib/gprpp/work_serializer.h +5 -0
- data/src/core/lib/http/httpcli_security_connector.cc +1 -0
- data/src/core/lib/iomgr/buffer_list.cc +2 -0
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +7 -22
- data/src/core/lib/iomgr/tcp_posix.cc +3 -3
- data/src/core/lib/promise/detail/basic_seq.h +1 -372
- data/src/core/lib/promise/detail/seq_state.h +2076 -0
- data/src/core/lib/promise/seq.h +19 -2
- data/src/core/lib/promise/sleep.h +5 -10
- data/src/core/lib/promise/try_seq.h +34 -2
- data/src/core/lib/resource_quota/api.cc +1 -0
- data/src/core/lib/resource_quota/arena.cc +2 -0
- data/src/core/lib/resource_quota/arena.h +42 -8
- data/src/core/lib/resource_quota/memory_quota.cc +0 -1
- data/src/core/lib/resource_quota/resource_quota.h +1 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
- data/src/core/lib/security/authorization/rbac_policy.h +1 -1
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +17 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +42 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +1 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
- data/src/core/lib/security/transport/security_handshaker.cc +1 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
- data/src/core/lib/surface/call.cc +32 -8
- data/src/core/lib/surface/channel.cc +1 -0
- data/src/core/lib/surface/completion_queue.cc +10 -0
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/server.cc +67 -64
- data/src/core/lib/surface/server.h +1 -15
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
- data/src/core/tsi/ssl_transport_security.cc +11 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/test/client.rb +16 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
- data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
- data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
- data/third_party/abseil-cpp/absl/base/casts.h +8 -8
- data/third_party/abseil-cpp/absl/base/config.h +89 -106
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
- data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
- data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
- data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
- data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
- data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
- data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
- data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
- data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
- data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
- data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
- data/third_party/abseil-cpp/absl/status/status.cc +11 -7
- data/third_party/abseil-cpp/absl/status/status.h +11 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
- data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
- data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
- data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
- data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
- data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
- data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
- data/third_party/abseil-cpp/absl/strings/match.h +19 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
- data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
- data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
- data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
- data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
- data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
- data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
- data/third_party/abseil-cpp/absl/time/time.cc +9 -2
- data/third_party/abseil-cpp/absl/time/time.h +115 -15
- data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
- data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
- data/third_party/abseil-cpp/absl/types/optional.h +15 -13
- data/third_party/abseil-cpp/absl/types/span.h +1 -2
- data/third_party/boringssl-with-bazel/err_data.c +15 -14
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -48
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +11 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +9 -14
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +10 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +39 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +13 -21
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +6 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +9 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +7 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +20 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +50 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +2 -0
- metadata +41 -33
- data/src/core/lib/promise/detail/basic_join.h +0 -197
- data/src/core/lib/promise/detail/switch.h +0 -1455
- data/src/core/lib/promise/try_join.h +0 -82
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_openbsd.c +0 -31
- data/third_party/re2/util/benchmark.h +0 -156
- data/third_party/re2/util/flags.h +0 -26
- data/third_party/re2/util/malloc_counter.h +0 -19
- data/third_party/re2/util/pcre.cc +0 -1025
- data/third_party/re2/util/pcre.h +0 -681
- data/third_party/re2/util/test.h +0 -50
- data/third_party/upb/upb/mini_table.h +0 -36
- data/third_party/zlib/gzclose.c +0 -25
- data/third_party/zlib/gzlib.c +0 -639
- data/third_party/zlib/gzread.c +0 -650
- data/third_party/zlib/gzwrite.c +0 -677
@@ -92,26 +92,42 @@ struct SynchWaitParams;
|
|
92
92
|
//
|
93
93
|
// A `Mutex` has two basic operations: `Mutex::Lock()` and `Mutex::Unlock()`.
|
94
94
|
// The `Lock()` operation *acquires* a `Mutex` (in a state known as an
|
95
|
-
// *exclusive* -- or write -- lock),
|
95
|
+
// *exclusive* -- or *write* -- lock), and the `Unlock()` operation *releases* a
|
96
96
|
// Mutex. During the span of time between the Lock() and Unlock() operations,
|
97
|
-
// a mutex is said to be *held*. By design all mutexes support exclusive/write
|
97
|
+
// a mutex is said to be *held*. By design, all mutexes support exclusive/write
|
98
98
|
// locks, as this is the most common way to use a mutex.
|
99
99
|
//
|
100
|
+
// Mutex operations are only allowed under certain conditions; otherwise an
|
101
|
+
// operation is "invalid", and disallowed by the API. The conditions concern
|
102
|
+
// both the current state of the mutex and the identity of the threads that
|
103
|
+
// are performing the operations.
|
104
|
+
//
|
100
105
|
// The `Mutex` state machine for basic lock/unlock operations is quite simple:
|
101
106
|
//
|
102
|
-
// | | Lock()
|
103
|
-
//
|
104
|
-
// | Free | Exclusive
|
105
|
-
// | Exclusive | blocks
|
107
|
+
// | | Lock() | Unlock() |
|
108
|
+
// |----------------+------------------------+----------|
|
109
|
+
// | Free | Exclusive | invalid |
|
110
|
+
// | Exclusive | blocks, then exclusive | Free |
|
111
|
+
//
|
112
|
+
// The full conditions are as follows.
|
113
|
+
//
|
114
|
+
// * Calls to `Unlock()` require that the mutex be held, and must be made in the
|
115
|
+
// same thread that performed the corresponding `Lock()` operation which
|
116
|
+
// acquired the mutex; otherwise the call is invalid.
|
117
|
+
//
|
118
|
+
// * The mutex being non-reentrant (or non-recursive) means that a call to
|
119
|
+
// `Lock()` or `TryLock()` must not be made in a thread that already holds the
|
120
|
+
// mutex; such a call is invalid.
|
106
121
|
//
|
107
|
-
//
|
108
|
-
//
|
122
|
+
// * In other words, the state of being "held" has both a temporal component
|
123
|
+
// (from `Lock()` until `Unlock()`) as well as a thread identity component:
|
124
|
+
// the mutex is held *by a particular thread*.
|
109
125
|
//
|
110
|
-
// An "invalid" operation
|
111
|
-
// is allowed to do anything on an invalid call, including but not limited to
|
126
|
+
// An "invalid" operation has undefined behavior. The `Mutex` implementation
|
127
|
+
// is allowed to do anything on an invalid call, including, but not limited to,
|
112
128
|
// crashing with a useful error message, silently succeeding, or corrupting
|
113
|
-
// data structures. In debug mode, the implementation
|
114
|
-
//
|
129
|
+
// data structures. In debug mode, the implementation may crash with a useful
|
130
|
+
// error message.
|
115
131
|
//
|
116
132
|
// `Mutex` is not guaranteed to be "fair" in prioritizing waiting threads; it
|
117
133
|
// is, however, approximately fair over long periods, and starvation-free for
|
@@ -125,8 +141,9 @@ struct SynchWaitParams;
|
|
125
141
|
// issues that could potentially result in race conditions and deadlocks.
|
126
142
|
//
|
127
143
|
// For more information about the lock annotations, please see
|
128
|
-
// [Thread Safety
|
129
|
-
// in the Clang
|
144
|
+
// [Thread Safety
|
145
|
+
// Analysis](http://clang.llvm.org/docs/ThreadSafetyAnalysis.html) in the Clang
|
146
|
+
// documentation.
|
130
147
|
//
|
131
148
|
// See also `MutexLock`, below, for scoped `Mutex` acquisition.
|
132
149
|
|
@@ -257,7 +274,7 @@ class ABSL_LOCKABLE Mutex {
|
|
257
274
|
// Aliases for `Mutex::Lock()`, `Mutex::Unlock()`, and `Mutex::TryLock()`.
|
258
275
|
//
|
259
276
|
// These methods may be used (along with the complementary `Reader*()`
|
260
|
-
// methods) to
|
277
|
+
// methods) to distinguish simple exclusive `Mutex` usage (`Lock()`,
|
261
278
|
// etc.) from reader/writer lock usage.
|
262
279
|
void WriterLock() ABSL_EXCLUSIVE_LOCK_FUNCTION() { this->Lock(); }
|
263
280
|
|
@@ -307,7 +324,7 @@ class ABSL_LOCKABLE Mutex {
|
|
307
324
|
// `true`, `Await()` *may* skip the release/re-acquire step.
|
308
325
|
//
|
309
326
|
// `Await()` requires that this thread holds this `Mutex` in some mode.
|
310
|
-
void Await(const Condition
|
327
|
+
void Await(const Condition& cond);
|
311
328
|
|
312
329
|
// Mutex::LockWhen()
|
313
330
|
// Mutex::ReaderLockWhen()
|
@@ -317,11 +334,11 @@ class ABSL_LOCKABLE Mutex {
|
|
317
334
|
// be acquired, then atomically acquires this `Mutex`. `LockWhen()` is
|
318
335
|
// logically equivalent to `*Lock(); Await();` though they may have different
|
319
336
|
// performance characteristics.
|
320
|
-
void LockWhen(const Condition
|
337
|
+
void LockWhen(const Condition& cond) ABSL_EXCLUSIVE_LOCK_FUNCTION();
|
321
338
|
|
322
|
-
void ReaderLockWhen(const Condition
|
339
|
+
void ReaderLockWhen(const Condition& cond) ABSL_SHARED_LOCK_FUNCTION();
|
323
340
|
|
324
|
-
void WriterLockWhen(const Condition
|
341
|
+
void WriterLockWhen(const Condition& cond) ABSL_EXCLUSIVE_LOCK_FUNCTION() {
|
325
342
|
this->LockWhen(cond);
|
326
343
|
}
|
327
344
|
|
@@ -346,9 +363,9 @@ class ABSL_LOCKABLE Mutex {
|
|
346
363
|
// Negative timeouts are equivalent to a zero timeout.
|
347
364
|
//
|
348
365
|
// This method requires that this thread holds this `Mutex` in some mode.
|
349
|
-
bool AwaitWithTimeout(const Condition
|
366
|
+
bool AwaitWithTimeout(const Condition& cond, absl::Duration timeout);
|
350
367
|
|
351
|
-
bool AwaitWithDeadline(const Condition
|
368
|
+
bool AwaitWithDeadline(const Condition& cond, absl::Time deadline);
|
352
369
|
|
353
370
|
// Mutex::LockWhenWithTimeout()
|
354
371
|
// Mutex::ReaderLockWhenWithTimeout()
|
@@ -361,11 +378,11 @@ class ABSL_LOCKABLE Mutex {
|
|
361
378
|
// `true` on return.
|
362
379
|
//
|
363
380
|
// Negative timeouts are equivalent to a zero timeout.
|
364
|
-
bool LockWhenWithTimeout(const Condition
|
381
|
+
bool LockWhenWithTimeout(const Condition& cond, absl::Duration timeout)
|
365
382
|
ABSL_EXCLUSIVE_LOCK_FUNCTION();
|
366
|
-
bool ReaderLockWhenWithTimeout(const Condition
|
383
|
+
bool ReaderLockWhenWithTimeout(const Condition& cond, absl::Duration timeout)
|
367
384
|
ABSL_SHARED_LOCK_FUNCTION();
|
368
|
-
bool WriterLockWhenWithTimeout(const Condition
|
385
|
+
bool WriterLockWhenWithTimeout(const Condition& cond, absl::Duration timeout)
|
369
386
|
ABSL_EXCLUSIVE_LOCK_FUNCTION() {
|
370
387
|
return this->LockWhenWithTimeout(cond, timeout);
|
371
388
|
}
|
@@ -381,11 +398,11 @@ class ABSL_LOCKABLE Mutex {
|
|
381
398
|
// on return.
|
382
399
|
//
|
383
400
|
// Deadlines in the past are equivalent to an immediate deadline.
|
384
|
-
bool LockWhenWithDeadline(const Condition
|
401
|
+
bool LockWhenWithDeadline(const Condition& cond, absl::Time deadline)
|
385
402
|
ABSL_EXCLUSIVE_LOCK_FUNCTION();
|
386
|
-
bool ReaderLockWhenWithDeadline(const Condition
|
403
|
+
bool ReaderLockWhenWithDeadline(const Condition& cond, absl::Time deadline)
|
387
404
|
ABSL_SHARED_LOCK_FUNCTION();
|
388
|
-
bool WriterLockWhenWithDeadline(const Condition
|
405
|
+
bool WriterLockWhenWithDeadline(const Condition& cond, absl::Time deadline)
|
389
406
|
ABSL_EXCLUSIVE_LOCK_FUNCTION() {
|
390
407
|
return this->LockWhenWithDeadline(cond, deadline);
|
391
408
|
}
|
@@ -407,7 +424,7 @@ class ABSL_LOCKABLE Mutex {
|
|
407
424
|
// substantially reduce `Mutex` performance; it should be set only for
|
408
425
|
// non-production runs. Optimization options may also disable invariant
|
409
426
|
// checks.
|
410
|
-
void EnableInvariantDebugging(void (*invariant)(void
|
427
|
+
void EnableInvariantDebugging(void (*invariant)(void*), void* arg);
|
411
428
|
|
412
429
|
// Mutex::EnableDebugLog()
|
413
430
|
//
|
@@ -416,7 +433,7 @@ class ABSL_LOCKABLE Mutex {
|
|
416
433
|
// call to `EnableInvariantDebugging()` or `EnableDebugLog()` has been made.
|
417
434
|
//
|
418
435
|
// Note: This method substantially reduces `Mutex` performance.
|
419
|
-
void EnableDebugLog(const char
|
436
|
+
void EnableDebugLog(const char* name);
|
420
437
|
|
421
438
|
// Deadlock detection
|
422
439
|
|
@@ -444,7 +461,7 @@ class ABSL_LOCKABLE Mutex {
|
|
444
461
|
|
445
462
|
// A `MuHow` is a constant that indicates how a lock should be acquired.
|
446
463
|
// Internal implementation detail. Clients should ignore.
|
447
|
-
typedef const struct MuHowS
|
464
|
+
typedef const struct MuHowS* MuHow;
|
448
465
|
|
449
466
|
// Mutex::InternalAttemptToUseMutexInFatalSignalHandler()
|
450
467
|
//
|
@@ -466,37 +483,37 @@ class ABSL_LOCKABLE Mutex {
|
|
466
483
|
|
467
484
|
// Post()/Wait() versus associated PerThreadSem; in class for required
|
468
485
|
// friendship with PerThreadSem.
|
469
|
-
static void IncrementSynchSem(Mutex
|
470
|
-
static bool DecrementSynchSem(Mutex
|
486
|
+
static void IncrementSynchSem(Mutex* mu, base_internal::PerThreadSynch* w);
|
487
|
+
static bool DecrementSynchSem(Mutex* mu, base_internal::PerThreadSynch* w,
|
471
488
|
synchronization_internal::KernelTimeout t);
|
472
489
|
|
473
490
|
// slow path acquire
|
474
|
-
void LockSlowLoop(SynchWaitParams
|
491
|
+
void LockSlowLoop(SynchWaitParams* waitp, int flags);
|
475
492
|
// wrappers around LockSlowLoop()
|
476
|
-
bool LockSlowWithDeadline(MuHow how, const Condition
|
493
|
+
bool LockSlowWithDeadline(MuHow how, const Condition* cond,
|
477
494
|
synchronization_internal::KernelTimeout t,
|
478
495
|
int flags);
|
479
|
-
void LockSlow(MuHow how, const Condition
|
496
|
+
void LockSlow(MuHow how, const Condition* cond,
|
480
497
|
int flags) ABSL_ATTRIBUTE_COLD;
|
481
498
|
// slow path release
|
482
|
-
void UnlockSlow(SynchWaitParams
|
499
|
+
void UnlockSlow(SynchWaitParams* waitp) ABSL_ATTRIBUTE_COLD;
|
483
500
|
// Common code between Await() and AwaitWithTimeout/Deadline()
|
484
|
-
bool AwaitCommon(const Condition
|
501
|
+
bool AwaitCommon(const Condition& cond,
|
485
502
|
synchronization_internal::KernelTimeout t);
|
486
503
|
// Attempt to remove thread s from queue.
|
487
|
-
void TryRemove(base_internal::PerThreadSynch
|
504
|
+
void TryRemove(base_internal::PerThreadSynch* s);
|
488
505
|
// Block a thread on mutex.
|
489
|
-
void Block(base_internal::PerThreadSynch
|
506
|
+
void Block(base_internal::PerThreadSynch* s);
|
490
507
|
// Wake a thread; return successor.
|
491
|
-
base_internal::PerThreadSynch
|
508
|
+
base_internal::PerThreadSynch* Wakeup(base_internal::PerThreadSynch* w);
|
492
509
|
|
493
510
|
friend class CondVar; // for access to Trans()/Fer().
|
494
511
|
void Trans(MuHow how); // used for CondVar->Mutex transfer
|
495
512
|
void Fer(
|
496
|
-
base_internal::PerThreadSynch
|
513
|
+
base_internal::PerThreadSynch* w); // used for CondVar->Mutex transfer
|
497
514
|
|
498
515
|
// Catch the error of writing Mutex when intending MutexLock.
|
499
|
-
Mutex(const volatile Mutex
|
516
|
+
explicit Mutex(const volatile Mutex* /*ignored*/) {}
|
500
517
|
|
501
518
|
Mutex(const Mutex&) = delete;
|
502
519
|
Mutex& operator=(const Mutex&) = delete;
|
@@ -531,28 +548,28 @@ class ABSL_SCOPED_LOCKABLE MutexLock {
|
|
531
548
|
// Calls `mu->Lock()` and returns when that call returns. That is, `*mu` is
|
532
549
|
// guaranteed to be locked when this object is constructed. Requires that
|
533
550
|
// `mu` be dereferenceable.
|
534
|
-
explicit MutexLock(Mutex
|
551
|
+
explicit MutexLock(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) {
|
535
552
|
this->mu_->Lock();
|
536
553
|
}
|
537
554
|
|
538
555
|
// Like above, but calls `mu->LockWhen(cond)` instead. That is, in addition to
|
539
556
|
// the above, the condition given by `cond` is also guaranteed to hold when
|
540
557
|
// this object is constructed.
|
541
|
-
explicit MutexLock(Mutex
|
558
|
+
explicit MutexLock(Mutex* mu, const Condition& cond)
|
542
559
|
ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
543
560
|
: mu_(mu) {
|
544
561
|
this->mu_->LockWhen(cond);
|
545
562
|
}
|
546
563
|
|
547
|
-
MutexLock(const MutexLock
|
548
|
-
MutexLock(MutexLock&&) = delete;
|
564
|
+
MutexLock(const MutexLock&) = delete; // NOLINT(runtime/mutex)
|
565
|
+
MutexLock(MutexLock&&) = delete; // NOLINT(runtime/mutex)
|
549
566
|
MutexLock& operator=(const MutexLock&) = delete;
|
550
567
|
MutexLock& operator=(MutexLock&&) = delete;
|
551
568
|
|
552
569
|
~MutexLock() ABSL_UNLOCK_FUNCTION() { this->mu_->Unlock(); }
|
553
570
|
|
554
571
|
private:
|
555
|
-
Mutex
|
572
|
+
Mutex* const mu_;
|
556
573
|
};
|
557
574
|
|
558
575
|
// ReaderMutexLock
|
@@ -561,11 +578,11 @@ class ABSL_SCOPED_LOCKABLE MutexLock {
|
|
561
578
|
// releases a shared lock on a `Mutex` via RAII.
|
562
579
|
class ABSL_SCOPED_LOCKABLE ReaderMutexLock {
|
563
580
|
public:
|
564
|
-
explicit ReaderMutexLock(Mutex
|
581
|
+
explicit ReaderMutexLock(Mutex* mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) {
|
565
582
|
mu->ReaderLock();
|
566
583
|
}
|
567
584
|
|
568
|
-
explicit ReaderMutexLock(Mutex
|
585
|
+
explicit ReaderMutexLock(Mutex* mu, const Condition& cond)
|
569
586
|
ABSL_SHARED_LOCK_FUNCTION(mu)
|
570
587
|
: mu_(mu) {
|
571
588
|
mu->ReaderLockWhen(cond);
|
@@ -579,7 +596,7 @@ class ABSL_SCOPED_LOCKABLE ReaderMutexLock {
|
|
579
596
|
~ReaderMutexLock() ABSL_UNLOCK_FUNCTION() { this->mu_->ReaderUnlock(); }
|
580
597
|
|
581
598
|
private:
|
582
|
-
Mutex
|
599
|
+
Mutex* const mu_;
|
583
600
|
};
|
584
601
|
|
585
602
|
// WriterMutexLock
|
@@ -588,12 +605,12 @@ class ABSL_SCOPED_LOCKABLE ReaderMutexLock {
|
|
588
605
|
// releases a write (exclusive) lock on a `Mutex` via RAII.
|
589
606
|
class ABSL_SCOPED_LOCKABLE WriterMutexLock {
|
590
607
|
public:
|
591
|
-
explicit WriterMutexLock(Mutex
|
608
|
+
explicit WriterMutexLock(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
592
609
|
: mu_(mu) {
|
593
610
|
mu->WriterLock();
|
594
611
|
}
|
595
612
|
|
596
|
-
explicit WriterMutexLock(Mutex
|
613
|
+
explicit WriterMutexLock(Mutex* mu, const Condition& cond)
|
597
614
|
ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
598
615
|
: mu_(mu) {
|
599
616
|
mu->WriterLockWhen(cond);
|
@@ -607,7 +624,7 @@ class ABSL_SCOPED_LOCKABLE WriterMutexLock {
|
|
607
624
|
~WriterMutexLock() ABSL_UNLOCK_FUNCTION() { this->mu_->WriterUnlock(); }
|
608
625
|
|
609
626
|
private:
|
610
|
-
Mutex
|
627
|
+
Mutex* const mu_;
|
611
628
|
};
|
612
629
|
|
613
630
|
// -----------------------------------------------------------------------------
|
@@ -665,7 +682,7 @@ class ABSL_SCOPED_LOCKABLE WriterMutexLock {
|
|
665
682
|
class Condition {
|
666
683
|
public:
|
667
684
|
// A Condition that returns the result of "(*func)(arg)"
|
668
|
-
Condition(bool (*func)(void
|
685
|
+
Condition(bool (*func)(void*), void* arg);
|
669
686
|
|
670
687
|
// Templated version for people who are averse to casts.
|
671
688
|
//
|
@@ -676,8 +693,22 @@ class Condition {
|
|
676
693
|
// Note: lambdas in this case must contain no bound variables.
|
677
694
|
//
|
678
695
|
// See class comment for performance advice.
|
679
|
-
template<typename T>
|
680
|
-
Condition(bool (*func)(T
|
696
|
+
template <typename T>
|
697
|
+
Condition(bool (*func)(T*), T* arg);
|
698
|
+
|
699
|
+
// Same as above, but allows for cases where `arg` comes from a pointer that
|
700
|
+
// is convertible to the function parameter type `T*` but not an exact match.
|
701
|
+
//
|
702
|
+
// For example, the argument might be `X*` but the function takes `const X*`,
|
703
|
+
// or the argument might be `Derived*` while the function takes `Base*`, and
|
704
|
+
// so on for cases where the argument pointer can be implicitly converted.
|
705
|
+
//
|
706
|
+
// Implementation notes: This constructor overload is required in addition to
|
707
|
+
// the one above to allow deduction of `T` from `arg` for cases such as where
|
708
|
+
// a function template is passed as `func`. Also, the dummy `typename = void`
|
709
|
+
// template parameter exists just to work around a MSVC mangling bug.
|
710
|
+
template <typename T, typename = void>
|
711
|
+
Condition(bool (*func)(T*), typename absl::internal::identity<T>::type* arg);
|
681
712
|
|
682
713
|
// Templated version for invoking a method that returns a `bool`.
|
683
714
|
//
|
@@ -687,16 +718,16 @@ class Condition {
|
|
687
718
|
// Implementation Note: `absl::internal::identity` is used to allow methods to
|
688
719
|
// come from base classes. A simpler signature like
|
689
720
|
// `Condition(T*, bool (T::*)())` does not suffice.
|
690
|
-
template<typename T>
|
691
|
-
Condition(T
|
721
|
+
template <typename T>
|
722
|
+
Condition(T* object, bool (absl::internal::identity<T>::type::*method)());
|
692
723
|
|
693
724
|
// Same as above, for const members
|
694
|
-
template<typename T>
|
695
|
-
Condition(const T
|
696
|
-
bool (absl::internal::identity<T>::type::*
|
725
|
+
template <typename T>
|
726
|
+
Condition(const T* object,
|
727
|
+
bool (absl::internal::identity<T>::type::*method)() const);
|
697
728
|
|
698
729
|
// A Condition that returns the value of `*cond`
|
699
|
-
explicit Condition(const bool
|
730
|
+
explicit Condition(const bool* cond);
|
700
731
|
|
701
732
|
// Templated version for invoking a functor that returns a `bool`.
|
702
733
|
// This approach accepts pointers to non-mutable lambdas, `std::function`,
|
@@ -723,12 +754,22 @@ class Condition {
|
|
723
754
|
// Implementation note: The second template parameter ensures that this
|
724
755
|
// constructor doesn't participate in overload resolution if T doesn't have
|
725
756
|
// `bool operator() const`.
|
726
|
-
template <typename T, typename E = decltype(
|
727
|
-
|
728
|
-
explicit Condition(const T
|
757
|
+
template <typename T, typename E = decltype(static_cast<bool (T::*)() const>(
|
758
|
+
&T::operator()))>
|
759
|
+
explicit Condition(const T* obj)
|
729
760
|
: Condition(obj, static_cast<bool (T::*)() const>(&T::operator())) {}
|
730
761
|
|
731
762
|
// A Condition that always returns `true`.
|
763
|
+
// kTrue is only useful in a narrow set of circumstances, mostly when
|
764
|
+
// it's passed conditionally. For example:
|
765
|
+
//
|
766
|
+
// mu.LockWhen(some_flag ? kTrue : SomeOtherCondition);
|
767
|
+
//
|
768
|
+
// Note: {LockWhen,Await}With{Deadline,Timeout} methods with kTrue condition
|
769
|
+
// don't return immediately when the timeout happens, they still block until
|
770
|
+
// the Mutex becomes available. The return value of these methods does
|
771
|
+
// not indicate if the timeout was reached; rather it indicates whether or
|
772
|
+
// not the condition is true.
|
732
773
|
ABSL_CONST_INIT static const Condition kTrue;
|
733
774
|
|
734
775
|
// Evaluates the condition.
|
@@ -741,7 +782,7 @@ class Condition {
|
|
741
782
|
// Two `Condition` values are guaranteed equal if both their `func` and `arg`
|
742
783
|
// components are the same. A null pointer is equivalent to a `true`
|
743
784
|
// condition.
|
744
|
-
static bool GuaranteedEqual(const Condition
|
785
|
+
static bool GuaranteedEqual(const Condition* a, const Condition* b);
|
745
786
|
|
746
787
|
private:
|
747
788
|
// Sizing an allocation for a method pointer can be subtle. In the Itanium
|
@@ -769,12 +810,14 @@ class Condition {
|
|
769
810
|
bool (*eval_)(const Condition*) = nullptr;
|
770
811
|
|
771
812
|
// Either an argument for a function call or an object for a method call.
|
772
|
-
void
|
813
|
+
void* arg_ = nullptr;
|
773
814
|
|
774
815
|
// Various functions eval_ can point to:
|
775
816
|
static bool CallVoidPtrFunction(const Condition*);
|
776
|
-
template <typename T>
|
777
|
-
|
817
|
+
template <typename T>
|
818
|
+
static bool CastAndCallFunction(const Condition* c);
|
819
|
+
template <typename T>
|
820
|
+
static bool CastAndCallMethod(const Condition* c);
|
778
821
|
|
779
822
|
// Helper methods for storing, validating, and reading callback arguments.
|
780
823
|
template <typename T>
|
@@ -786,7 +829,7 @@ class Condition {
|
|
786
829
|
}
|
787
830
|
|
788
831
|
template <typename T>
|
789
|
-
inline void ReadCallback(T
|
832
|
+
inline void ReadCallback(T* callback) const {
|
790
833
|
std::memcpy(callback, callback_, sizeof(*callback));
|
791
834
|
}
|
792
835
|
|
@@ -843,7 +886,7 @@ class CondVar {
|
|
843
886
|
// spurious wakeup), then reacquires the `Mutex` and returns.
|
844
887
|
//
|
845
888
|
// Requires and ensures that the current thread holds the `Mutex`.
|
846
|
-
void Wait(Mutex
|
889
|
+
void Wait(Mutex* mu);
|
847
890
|
|
848
891
|
// CondVar::WaitWithTimeout()
|
849
892
|
//
|
@@ -858,7 +901,7 @@ class CondVar {
|
|
858
901
|
// to return `true` or `false`.
|
859
902
|
//
|
860
903
|
// Requires and ensures that the current thread holds the `Mutex`.
|
861
|
-
bool WaitWithTimeout(Mutex
|
904
|
+
bool WaitWithTimeout(Mutex* mu, absl::Duration timeout);
|
862
905
|
|
863
906
|
// CondVar::WaitWithDeadline()
|
864
907
|
//
|
@@ -875,7 +918,7 @@ class CondVar {
|
|
875
918
|
// to return `true` or `false`.
|
876
919
|
//
|
877
920
|
// Requires and ensures that the current thread holds the `Mutex`.
|
878
|
-
bool WaitWithDeadline(Mutex
|
921
|
+
bool WaitWithDeadline(Mutex* mu, absl::Time deadline);
|
879
922
|
|
880
923
|
// CondVar::Signal()
|
881
924
|
//
|
@@ -892,18 +935,17 @@ class CondVar {
|
|
892
935
|
// Causes all subsequent uses of this `CondVar` to be logged via
|
893
936
|
// `ABSL_RAW_LOG(INFO)`. Log entries are tagged with `name` if `name != 0`.
|
894
937
|
// Note: this method substantially reduces `CondVar` performance.
|
895
|
-
void EnableDebugLog(const char
|
938
|
+
void EnableDebugLog(const char* name);
|
896
939
|
|
897
940
|
private:
|
898
|
-
bool WaitCommon(Mutex
|
899
|
-
void Remove(base_internal::PerThreadSynch
|
900
|
-
void Wakeup(base_internal::PerThreadSynch
|
941
|
+
bool WaitCommon(Mutex* mutex, synchronization_internal::KernelTimeout t);
|
942
|
+
void Remove(base_internal::PerThreadSynch* s);
|
943
|
+
void Wakeup(base_internal::PerThreadSynch* w);
|
901
944
|
std::atomic<intptr_t> cv_; // Condition variable state.
|
902
945
|
CondVar(const CondVar&) = delete;
|
903
946
|
CondVar& operator=(const CondVar&) = delete;
|
904
947
|
};
|
905
948
|
|
906
|
-
|
907
949
|
// Variants of MutexLock.
|
908
950
|
//
|
909
951
|
// If you find yourself using one of these, consider instead using
|
@@ -914,14 +956,14 @@ class CondVar {
|
|
914
956
|
// MutexLockMaybe is like MutexLock, but is a no-op when mu is null.
|
915
957
|
class ABSL_SCOPED_LOCKABLE MutexLockMaybe {
|
916
958
|
public:
|
917
|
-
explicit MutexLockMaybe(Mutex
|
959
|
+
explicit MutexLockMaybe(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
918
960
|
: mu_(mu) {
|
919
961
|
if (this->mu_ != nullptr) {
|
920
962
|
this->mu_->Lock();
|
921
963
|
}
|
922
964
|
}
|
923
965
|
|
924
|
-
explicit MutexLockMaybe(Mutex
|
966
|
+
explicit MutexLockMaybe(Mutex* mu, const Condition& cond)
|
925
967
|
ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
926
968
|
: mu_(mu) {
|
927
969
|
if (this->mu_ != nullptr) {
|
@@ -930,11 +972,13 @@ class ABSL_SCOPED_LOCKABLE MutexLockMaybe {
|
|
930
972
|
}
|
931
973
|
|
932
974
|
~MutexLockMaybe() ABSL_UNLOCK_FUNCTION() {
|
933
|
-
if (this->mu_ != nullptr) {
|
975
|
+
if (this->mu_ != nullptr) {
|
976
|
+
this->mu_->Unlock();
|
977
|
+
}
|
934
978
|
}
|
935
979
|
|
936
980
|
private:
|
937
|
-
Mutex
|
981
|
+
Mutex* const mu_;
|
938
982
|
MutexLockMaybe(const MutexLockMaybe&) = delete;
|
939
983
|
MutexLockMaybe(MutexLockMaybe&&) = delete;
|
940
984
|
MutexLockMaybe& operator=(const MutexLockMaybe&) = delete;
|
@@ -947,25 +991,27 @@ class ABSL_SCOPED_LOCKABLE MutexLockMaybe {
|
|
947
991
|
// mutex before destruction. `Release()` may be called at most once.
|
948
992
|
class ABSL_SCOPED_LOCKABLE ReleasableMutexLock {
|
949
993
|
public:
|
950
|
-
explicit ReleasableMutexLock(Mutex
|
994
|
+
explicit ReleasableMutexLock(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
951
995
|
: mu_(mu) {
|
952
996
|
this->mu_->Lock();
|
953
997
|
}
|
954
998
|
|
955
|
-
explicit ReleasableMutexLock(Mutex
|
999
|
+
explicit ReleasableMutexLock(Mutex* mu, const Condition& cond)
|
956
1000
|
ABSL_EXCLUSIVE_LOCK_FUNCTION(mu)
|
957
1001
|
: mu_(mu) {
|
958
1002
|
this->mu_->LockWhen(cond);
|
959
1003
|
}
|
960
1004
|
|
961
1005
|
~ReleasableMutexLock() ABSL_UNLOCK_FUNCTION() {
|
962
|
-
if (this->mu_ != nullptr) {
|
1006
|
+
if (this->mu_ != nullptr) {
|
1007
|
+
this->mu_->Unlock();
|
1008
|
+
}
|
963
1009
|
}
|
964
1010
|
|
965
1011
|
void Release() ABSL_UNLOCK_FUNCTION();
|
966
1012
|
|
967
1013
|
private:
|
968
|
-
Mutex
|
1014
|
+
Mutex* mu_;
|
969
1015
|
ReleasableMutexLock(const ReleasableMutexLock&) = delete;
|
970
1016
|
ReleasableMutexLock(ReleasableMutexLock&&) = delete;
|
971
1017
|
ReleasableMutexLock& operator=(const ReleasableMutexLock&) = delete;
|
@@ -982,8 +1028,8 @@ inline CondVar::CondVar() : cv_(0) {}
|
|
982
1028
|
|
983
1029
|
// static
|
984
1030
|
template <typename T>
|
985
|
-
bool Condition::CastAndCallMethod(const Condition
|
986
|
-
T
|
1031
|
+
bool Condition::CastAndCallMethod(const Condition* c) {
|
1032
|
+
T* object = static_cast<T*>(c->arg_);
|
987
1033
|
bool (T::*method_pointer)();
|
988
1034
|
c->ReadCallback(&method_pointer);
|
989
1035
|
return (object->*method_pointer)();
|
@@ -991,38 +1037,43 @@ bool Condition::CastAndCallMethod(const Condition *c) {
|
|
991
1037
|
|
992
1038
|
// static
|
993
1039
|
template <typename T>
|
994
|
-
bool Condition::CastAndCallFunction(const Condition
|
995
|
-
bool (*function)(T
|
1040
|
+
bool Condition::CastAndCallFunction(const Condition* c) {
|
1041
|
+
bool (*function)(T*);
|
996
1042
|
c->ReadCallback(&function);
|
997
|
-
T
|
1043
|
+
T* argument = static_cast<T*>(c->arg_);
|
998
1044
|
return (*function)(argument);
|
999
1045
|
}
|
1000
1046
|
|
1001
1047
|
template <typename T>
|
1002
|
-
inline Condition::Condition(bool (*func)(T
|
1048
|
+
inline Condition::Condition(bool (*func)(T*), T* arg)
|
1003
1049
|
: eval_(&CastAndCallFunction<T>),
|
1004
|
-
arg_(const_cast<void
|
1050
|
+
arg_(const_cast<void*>(static_cast<const void*>(arg))) {
|
1005
1051
|
static_assert(sizeof(&func) <= sizeof(callback_),
|
1006
1052
|
"An overlarge function pointer was passed to Condition.");
|
1007
1053
|
StoreCallback(func);
|
1008
1054
|
}
|
1009
1055
|
|
1056
|
+
template <typename T, typename>
|
1057
|
+
inline Condition::Condition(bool (*func)(T*),
|
1058
|
+
typename absl::internal::identity<T>::type* arg)
|
1059
|
+
// Just delegate to the overload above.
|
1060
|
+
: Condition(func, arg) {}
|
1061
|
+
|
1010
1062
|
template <typename T>
|
1011
|
-
inline Condition::Condition(T
|
1063
|
+
inline Condition::Condition(T* object,
|
1012
1064
|
bool (absl::internal::identity<T>::type::*method)())
|
1013
|
-
: eval_(&CastAndCallMethod<T>),
|
1014
|
-
arg_(object) {
|
1065
|
+
: eval_(&CastAndCallMethod<T>), arg_(object) {
|
1015
1066
|
static_assert(sizeof(&method) <= sizeof(callback_),
|
1016
1067
|
"An overlarge method pointer was passed to Condition.");
|
1017
1068
|
StoreCallback(method);
|
1018
1069
|
}
|
1019
1070
|
|
1020
1071
|
template <typename T>
|
1021
|
-
inline Condition::Condition(const T
|
1072
|
+
inline Condition::Condition(const T* object,
|
1022
1073
|
bool (absl::internal::identity<T>::type::*method)()
|
1023
1074
|
const)
|
1024
1075
|
: eval_(&CastAndCallMethod<T>),
|
1025
|
-
arg_(reinterpret_cast<void
|
1076
|
+
arg_(reinterpret_cast<void*>(const_cast<T*>(object))) {
|
1026
1077
|
StoreCallback(method);
|
1027
1078
|
}
|
1028
1079
|
|
@@ -1052,7 +1103,7 @@ void RegisterMutexProfiler(void (*fn)(int64_t wait_cycles));
|
|
1052
1103
|
//
|
1053
1104
|
// This has the same ordering and single-use limitations as
|
1054
1105
|
// RegisterMutexProfiler() above.
|
1055
|
-
void RegisterMutexTracer(void (*fn)(const char
|
1106
|
+
void RegisterMutexTracer(void (*fn)(const char* msg, const void* obj,
|
1056
1107
|
int64_t wait_cycles));
|
1057
1108
|
|
1058
1109
|
// Register a hook for CondVar tracing.
|
@@ -1067,24 +1118,7 @@ void RegisterMutexTracer(void (*fn)(const char *msg, const void *obj,
|
|
1067
1118
|
//
|
1068
1119
|
// This has the same ordering and single-use limitations as
|
1069
1120
|
// RegisterMutexProfiler() above.
|
1070
|
-
void RegisterCondVarTracer(void (*fn)(const char
|
1071
|
-
|
1072
|
-
// Register a hook for symbolizing stack traces in deadlock detector reports.
|
1073
|
-
//
|
1074
|
-
// 'pc' is the program counter being symbolized, 'out' is the buffer to write
|
1075
|
-
// into, and 'out_size' is the size of the buffer. This function can return
|
1076
|
-
// false if symbolizing failed, or true if a NUL-terminated symbol was written
|
1077
|
-
// to 'out.'
|
1078
|
-
//
|
1079
|
-
// This has the same ordering and single-use limitations as
|
1080
|
-
// RegisterMutexProfiler() above.
|
1081
|
-
//
|
1082
|
-
// DEPRECATED: The default symbolizer function is absl::Symbolize() and the
|
1083
|
-
// ability to register a different hook for symbolizing stack traces will be
|
1084
|
-
// removed on or after 2023-05-01.
|
1085
|
-
ABSL_DEPRECATED("absl::RegisterSymbolizer() is deprecated and will be removed "
|
1086
|
-
"on or after 2023-05-01")
|
1087
|
-
void RegisterSymbolizer(bool (*fn)(const void *pc, char *out, int out_size));
|
1121
|
+
void RegisterCondVarTracer(void (*fn)(const char* msg, const void* cv));
|
1088
1122
|
|
1089
1123
|
// EnableMutexInvariantDebugging()
|
1090
1124
|
//
|
@@ -1101,7 +1135,7 @@ void EnableMutexInvariantDebugging(bool enabled);
|
|
1101
1135
|
enum class OnDeadlockCycle {
|
1102
1136
|
kIgnore, // Neither report on nor attempt to track cycles in lock ordering
|
1103
1137
|
kReport, // Report lock cycles to stderr when detected
|
1104
|
-
kAbort,
|
1138
|
+
kAbort, // Report lock cycles to stderr when detected, then abort
|
1105
1139
|
};
|
1106
1140
|
|
1107
1141
|
// SetMutexDeadlockDetectionMode()
|
@@ -48,17 +48,16 @@ Time Now() {
|
|
48
48
|
ABSL_NAMESPACE_END
|
49
49
|
} // namespace absl
|
50
50
|
|
51
|
-
// Decide if we should use the fast GetCurrentTimeNanos() algorithm
|
52
|
-
//
|
53
|
-
//
|
51
|
+
// Decide if we should use the fast GetCurrentTimeNanos() algorithm based on the
|
52
|
+
// cyclecounter, otherwise just get the time directly from the OS on every call.
|
53
|
+
// By default, the fast algorithm based on the cyclecount is disabled because in
|
54
|
+
// certain situations, for example, if the OS enters a "sleep" mode, it may
|
55
|
+
// produce incorrect values immediately upon waking.
|
56
|
+
// This can be chosen at compile-time via
|
54
57
|
// -DABSL_USE_CYCLECLOCK_FOR_GET_CURRENT_TIME_NANOS=[0|1]
|
55
58
|
#ifndef ABSL_USE_CYCLECLOCK_FOR_GET_CURRENT_TIME_NANOS
|
56
|
-
#if ABSL_USE_UNSCALED_CYCLECLOCK
|
57
|
-
#define ABSL_USE_CYCLECLOCK_FOR_GET_CURRENT_TIME_NANOS 1
|
58
|
-
#else
|
59
59
|
#define ABSL_USE_CYCLECLOCK_FOR_GET_CURRENT_TIME_NANOS 0
|
60
60
|
#endif
|
61
|
-
#endif
|
62
61
|
|
63
62
|
#if defined(__APPLE__) || defined(_WIN32)
|
64
63
|
#include "absl/time/internal/get_current_time_chrono.inc"
|