grpc 1.18.0 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +4731 -7404
- data/etc/roots.pem +146 -0
- data/include/grpc/grpc.h +11 -6
- data/include/grpc/grpc_security.h +297 -4
- data/include/grpc/grpc_security_constants.h +1 -1
- data/include/grpc/impl/codegen/byte_buffer.h +13 -0
- data/include/grpc/impl/codegen/gpr_types.h +1 -1
- data/include/grpc/impl/codegen/grpc_types.h +30 -7
- data/include/grpc/impl/codegen/port_platform.h +88 -7
- data/include/grpc/impl/codegen/slice.h +2 -22
- data/include/grpc/impl/codegen/status.h +2 -1
- data/include/grpc/impl/codegen/sync_posix.h +18 -0
- data/include/grpc/slice.h +3 -3
- data/src/core/ext/filters/client_channel/backup_poller.cc +21 -16
- data/src/core/ext/filters/client_channel/backup_poller.h +8 -2
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +3 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +2435 -1557
- data/src/core/ext/filters/client_channel/client_channel.h +2 -10
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +6 -89
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +8 -33
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +22 -34
- data/src/core/ext/filters/client_channel/client_channel_factory.h +19 -38
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +9 -11
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +179 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +68 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +59 -55
- data/src/core/ext/filters/client_channel/health/health_check_client.h +20 -9
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +146 -157
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +29 -32
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +844 -859
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +3 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +2 -6
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +14 -12
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +16 -12
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -3
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +185 -312
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +143 -375
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +192 -245
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +1554 -955
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc +0 -43
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc +14 -10
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +2 -2
- data/src/core/ext/filters/client_channel/lb_policy.cc +115 -22
- data/src/core/ext/filters/client_channel/lb_policy.h +260 -129
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +5 -2
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +107 -4
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +10 -3
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +96 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +56 -0
- data/src/core/ext/filters/client_channel/parse_address.cc +24 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +121 -122
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +84 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +179 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +24 -10
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +111 -47
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +7 -13
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +39 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +0 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -64
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +28 -0
- data/src/core/{lib/iomgr/network_status_tracker.cc → ext/filters/client_channel/resolver/dns/dns_resolver_selection.h} +8 -15
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +36 -82
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +111 -72
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +13 -8
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +28 -63
- data/src/core/ext/filters/client_channel/resolver.cc +54 -1
- data/src/core/ext/filters/client_channel/resolver.h +52 -23
- data/src/core/ext/filters/client_channel/resolver_factory.h +3 -1
- data/src/core/ext/filters/client_channel/resolver_registry.cc +5 -2
- data/src/core/ext/filters/client_channel/resolver_registry.h +5 -4
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +368 -241
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +58 -76
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +543 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +139 -0
- data/src/core/ext/filters/client_channel/server_address.cc +4 -54
- data/src/core/ext/filters/client_channel/server_address.h +1 -13
- data/src/core/ext/filters/client_channel/service_config.cc +329 -0
- data/src/core/ext/filters/client_channel/service_config.h +205 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +803 -838
- data/src/core/ext/filters/client_channel/subchannel.h +295 -128
- data/src/core/ext/filters/client_channel/subchannel_interface.h +113 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +97 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +94 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +3 -4
- data/src/core/ext/filters/deadline/deadline_filter.h +3 -2
- data/src/core/ext/filters/http/client/http_client_filter.cc +7 -5
- data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +6 -3
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +4 -3
- data/src/core/ext/filters/http/server/http_server_filter.cc +18 -12
- data/src/core/ext/filters/max_age/max_age_filter.cc +5 -2
- data/src/core/ext/filters/message_size/message_size_filter.cc +119 -77
- data/src/core/ext/filters/message_size/message_size_filter.h +33 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +13 -12
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +45 -47
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +134 -143
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +68 -21
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +4 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +7 -6
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +4 -3
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +9 -7
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +156 -94
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +33 -37
- data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +6 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +3 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -4
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +8 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +6 -4
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +74 -55
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +33 -11
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -2
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +7 -14
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +10 -1
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +9 -5
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +9 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +43 -30
- data/src/core/ext/transport/chttp2/transport/parsing.cc +52 -70
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +70 -33
- data/src/core/ext/transport/inproc/inproc_transport.cc +26 -18
- data/src/core/lib/channel/channel_args.cc +2 -101
- data/src/core/lib/channel/channel_args.h +3 -37
- data/src/core/lib/channel/channel_stack.h +10 -6
- data/src/core/lib/channel/channel_trace.cc +4 -4
- data/src/core/lib/channel/channel_trace.h +4 -4
- data/src/core/lib/channel/channelz.cc +168 -38
- data/src/core/lib/channel/channelz.h +40 -44
- data/src/core/lib/channel/channelz_registry.cc +75 -107
- data/src/core/lib/channel/channelz_registry.h +10 -28
- data/src/core/lib/channel/connected_channel.cc +2 -2
- data/src/core/lib/channel/context.h +2 -2
- data/src/core/lib/channel/handshaker.cc +151 -218
- data/src/core/lib/channel/handshaker.h +110 -101
- data/src/core/lib/channel/handshaker_factory.h +11 -19
- data/src/core/lib/channel/handshaker_registry.cc +67 -51
- data/src/core/lib/channel/handshaker_registry.h +21 -16
- data/src/core/lib/compression/algorithm_metadata.h +3 -3
- data/src/core/lib/compression/compression.cc +14 -9
- data/src/core/lib/compression/compression_args.cc +127 -0
- data/src/core/lib/compression/compression_args.h +55 -0
- data/src/core/lib/compression/compression_internal.cc +16 -12
- data/src/core/lib/compression/compression_internal.h +1 -1
- data/src/core/lib/compression/stream_compression.cc +3 -2
- data/src/core/lib/compression/stream_compression.h +2 -2
- data/src/core/lib/compression/stream_compression_gzip.cc +9 -9
- data/src/core/lib/debug/trace.cc +13 -7
- data/src/core/lib/debug/trace.h +14 -1
- data/src/core/lib/gpr/arena.h +13 -9
- data/src/core/lib/gpr/cpu_posix.cc +5 -3
- data/src/core/lib/gpr/env.h +3 -6
- data/src/core/lib/gpr/env_linux.cc +6 -1
- data/src/core/lib/gpr/env_posix.cc +5 -0
- data/src/core/lib/gpr/env_windows.cc +7 -5
- data/src/core/lib/gpr/log.cc +9 -13
- data/src/core/lib/gpr/log_posix.cc +2 -1
- data/src/core/lib/gpr/string.cc +20 -7
- data/src/core/lib/gpr/string.h +10 -3
- data/src/core/lib/gpr/sync_posix.cc +65 -4
- data/src/core/lib/gpr/time.cc +8 -0
- data/src/core/lib/gpr/time_posix.cc +21 -2
- data/src/core/lib/gprpp/arena.cc +103 -0
- data/src/core/lib/gprpp/arena.h +121 -0
- data/src/core/lib/gprpp/atomic.h +75 -5
- data/src/core/lib/gprpp/fork.cc +13 -32
- data/src/core/lib/gprpp/fork.h +5 -1
- data/src/core/lib/gprpp/global_config.h +96 -0
- data/src/core/lib/gprpp/global_config_custom.h +29 -0
- data/src/core/lib/gprpp/global_config_env.cc +135 -0
- data/src/core/lib/gprpp/global_config_env.h +131 -0
- data/src/core/lib/gprpp/global_config_generic.h +44 -0
- data/src/core/lib/gprpp/inlined_vector.h +8 -0
- data/src/core/lib/gprpp/map.h +436 -0
- data/src/core/lib/gprpp/memory.h +2 -2
- data/src/core/lib/gprpp/optional.h +48 -0
- data/src/core/lib/gprpp/orphanable.h +6 -5
- data/src/core/lib/gprpp/{mutex_lock.h → pair.h} +15 -19
- data/src/core/lib/gprpp/ref_counted.h +36 -17
- data/src/core/lib/gprpp/sync.h +126 -0
- data/src/core/lib/gprpp/thd.h +42 -7
- data/src/core/lib/gprpp/thd_posix.cc +31 -13
- data/src/core/lib/gprpp/thd_windows.cc +47 -34
- data/src/core/lib/http/httpcli.cc +6 -5
- data/src/core/lib/http/httpcli_security_connector.cc +13 -15
- data/src/core/lib/http/parser.cc +3 -2
- data/src/core/lib/http/parser.h +2 -1
- data/src/core/lib/iomgr/buffer_list.cc +182 -24
- data/src/core/lib/iomgr/buffer_list.h +72 -10
- data/src/core/lib/iomgr/call_combiner.cc +84 -90
- data/src/core/lib/iomgr/call_combiner.h +75 -82
- data/src/core/lib/iomgr/cfstream_handle.cc +203 -0
- data/src/core/lib/iomgr/cfstream_handle.h +86 -0
- data/src/core/lib/iomgr/combiner.cc +11 -3
- data/src/core/lib/iomgr/combiner.h +1 -1
- data/src/core/lib/iomgr/endpoint.cc +2 -2
- data/src/core/lib/iomgr/endpoint.h +3 -2
- data/src/core/lib/iomgr/endpoint_cfstream.cc +375 -0
- data/src/core/lib/iomgr/endpoint_cfstream.h +49 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +2 -2
- data/src/core/lib/iomgr/error.cc +21 -17
- data/src/core/lib/iomgr/error.h +36 -6
- data/src/core/lib/iomgr/error_cfstream.cc +52 -0
- data/src/core/lib/iomgr/error_cfstream.h +31 -0
- data/src/core/lib/iomgr/error_internal.h +1 -1
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +44 -28
- data/src/core/lib/iomgr/ev_epollex_linux.cc +173 -194
- data/src/core/lib/iomgr/ev_poll_posix.cc +16 -487
- data/src/core/lib/iomgr/ev_posix.cc +29 -19
- data/src/core/lib/iomgr/ev_posix.h +19 -3
- data/src/core/lib/iomgr/ev_windows.cc +2 -2
- data/src/core/lib/iomgr/exec_ctx.cc +1 -0
- data/src/core/lib/iomgr/exec_ctx.h +137 -8
- data/src/core/lib/iomgr/executor.cc +147 -95
- data/src/core/lib/iomgr/executor.h +55 -49
- data/src/core/lib/iomgr/fork_posix.cc +6 -5
- data/src/core/lib/{gprpp/atomic_with_std.h → iomgr/grpc_if_nametoindex.h} +8 -13
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +42 -0
- data/src/core/lib/iomgr/{network_status_tracker.h → grpc_if_nametoindex_unsupported.cc} +15 -9
- data/src/core/lib/iomgr/internal_errqueue.cc +3 -5
- data/src/core/lib/iomgr/internal_errqueue.h +105 -3
- data/src/core/lib/iomgr/iomgr.cc +20 -13
- data/src/core/lib/iomgr/iomgr.h +15 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +17 -3
- data/src/core/lib/iomgr/iomgr_custom.h +2 -0
- data/src/core/lib/iomgr/iomgr_internal.cc +10 -0
- data/src/core/lib/iomgr/iomgr_internal.h +12 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +19 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +93 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +18 -2
- data/src/core/lib/iomgr/lockfree_event.cc +4 -4
- data/src/core/lib/iomgr/port.h +35 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +4 -3
- data/src/core/lib/iomgr/resolve_address_windows.cc +2 -1
- data/src/core/lib/iomgr/resource_quota.cc +40 -37
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +6 -2
- data/src/core/lib/iomgr/socket_windows.cc +19 -0
- data/src/core/lib/iomgr/socket_windows.h +8 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +216 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +2 -2
- data/src/core/lib/iomgr/tcp_client_posix.cc +3 -3
- data/src/core/lib/iomgr/tcp_client_windows.cc +7 -5
- data/src/core/lib/iomgr/tcp_custom.cc +10 -14
- data/src/core/lib/iomgr/tcp_posix.cc +256 -140
- data/src/core/lib/iomgr/tcp_server.cc +5 -0
- data/src/core/lib/iomgr/tcp_server.h +24 -0
- data/src/core/lib/iomgr/tcp_server_custom.cc +14 -12
- data/src/core/lib/iomgr/tcp_server_posix.cc +86 -12
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -0
- data/src/core/lib/iomgr/tcp_server_windows.cc +13 -11
- data/src/core/lib/iomgr/tcp_uv.cc +5 -7
- data/src/core/lib/iomgr/tcp_windows.cc +8 -14
- data/src/core/lib/iomgr/timer.h +2 -1
- data/src/core/lib/iomgr/timer_generic.cc +16 -16
- data/src/core/lib/iomgr/timer_manager.cc +20 -11
- data/src/core/lib/iomgr/udp_server.cc +8 -6
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +1 -19
- data/src/core/lib/json/json.cc +1 -4
- data/src/core/lib/profiling/basic_timers.cc +10 -4
- data/src/core/lib/security/context/security_context.cc +6 -7
- data/src/core/lib/security/context/security_context.h +3 -4
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +1 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
- data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -0
- data/src/core/lib/security/credentials/credentials.h +9 -1
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +15 -3
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +2 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +2 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +10 -6
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -1
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +3 -3
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +9 -8
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +20 -2
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +2 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +192 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +210 -0
- data/src/core/lib/security/credentials/tls/spiffe_credentials.cc +129 -0
- data/src/core/lib/security/credentials/tls/spiffe_credentials.h +62 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +10 -8
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +13 -12
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +7 -5
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +10 -8
- data/src/core/lib/security/security_connector/security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/security_connector.h +3 -3
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +39 -38
- data/src/core/lib/security/security_connector/ssl_utils.cc +164 -26
- data/src/core/lib/security/security_connector/ssl_utils.h +70 -1
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +426 -0
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +122 -0
- data/src/core/lib/security/transport/auth_filters.h +5 -2
- data/src/core/lib/security/transport/client_auth_filter.cc +55 -50
- data/src/core/lib/security/transport/secure_endpoint.cc +6 -6
- data/src/core/lib/security/transport/security_handshaker.cc +271 -303
- data/src/core/lib/security/transport/security_handshaker.h +11 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +3 -3
- data/src/core/lib/slice/b64.h +2 -2
- data/src/core/lib/slice/percent_encoding.cc +3 -3
- data/src/core/lib/slice/percent_encoding.h +3 -3
- data/src/core/lib/slice/slice.cc +174 -122
- data/src/core/lib/slice/slice_buffer.cc +54 -21
- data/src/core/lib/slice/slice_hash_table.h +4 -4
- data/src/core/lib/slice/slice_intern.cc +49 -107
- data/src/core/lib/slice/slice_internal.h +264 -3
- data/src/core/lib/slice/slice_string_helpers.cc +10 -1
- data/src/core/lib/slice/slice_string_helpers.h +3 -1
- data/src/core/lib/slice/slice_utils.h +50 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +6 -6
- data/src/core/lib/surface/api_trace.h +1 -1
- data/src/core/lib/surface/byte_buffer_reader.cc +17 -0
- data/src/core/lib/surface/call.cc +67 -46
- data/src/core/lib/surface/call.h +7 -2
- data/src/core/lib/surface/call_details.cc +0 -1
- data/src/core/lib/surface/channel.cc +89 -97
- data/src/core/lib/surface/channel.h +60 -6
- data/src/core/lib/surface/channel_init.h +5 -0
- data/src/core/lib/surface/completion_queue.cc +221 -216
- data/src/core/lib/surface/completion_queue.h +2 -1
- data/src/core/lib/surface/init.cc +82 -33
- data/src/core/lib/surface/init.h +1 -0
- data/src/core/lib/surface/init_secure.cc +1 -1
- data/src/core/lib/surface/lame_client.cc +5 -7
- data/src/core/lib/surface/server.cc +42 -47
- data/src/core/lib/surface/validate_metadata.cc +14 -8
- data/src/core/lib/surface/validate_metadata.h +13 -2
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/bdp_estimator.cc +3 -3
- data/src/core/lib/transport/bdp_estimator.h +2 -2
- data/src/core/lib/transport/connectivity_state.cc +10 -40
- data/src/core/lib/transport/connectivity_state.h +0 -8
- data/src/core/lib/transport/error_utils.cc +12 -0
- data/src/core/lib/transport/metadata.cc +258 -267
- data/src/core/lib/transport/metadata.h +227 -16
- data/src/core/lib/transport/metadata_batch.cc +1 -1
- data/src/core/lib/transport/metadata_batch.h +1 -1
- data/src/core/lib/transport/static_metadata.cc +477 -399
- data/src/core/lib/transport/static_metadata.h +273 -182
- data/src/core/lib/transport/status_metadata.cc +3 -3
- data/src/core/lib/transport/timeout_encoding.cc +1 -1
- data/src/core/lib/transport/timeout_encoding.h +1 -1
- data/src/core/lib/transport/transport.cc +39 -72
- data/src/core/lib/transport/transport.h +59 -24
- data/src/core/lib/transport/transport_impl.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +3 -3
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +4 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -1
- data/src/core/tsi/fake_transport_security.cc +4 -4
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +1 -1
- data/src/core/tsi/ssl_transport_security.cc +12 -10
- data/src/core/tsi/ssl_transport_security.h +24 -4
- data/src/ruby/bin/math_pb.rb +18 -16
- data/src/ruby/ext/grpc/extconf.rb +12 -4
- data/src/ruby/ext/grpc/rb_call_credentials.c +8 -5
- data/src/ruby/ext/grpc/rb_channel.c +14 -10
- data/src/ruby/ext/grpc/rb_channel_credentials.c +8 -4
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -7
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc.c +23 -24
- data/src/ruby/ext/grpc/rb_grpc.h +4 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +24 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +36 -0
- data/src/ruby/ext/grpc/rb_server.c +8 -4
- data/src/ruby/lib/grpc/errors.rb +22 -3
- data/src/ruby/lib/grpc/generic/bidi_call.rb +1 -1
- data/src/ruby/lib/grpc/generic/rpc_server.rb +2 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/README.md +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +13 -10
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +18 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +3 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +58 -56
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -0
- data/src/ruby/spec/errors_spec.rb +141 -0
- data/third_party/cares/cares/ares.h +12 -0
- data/third_party/cares/cares/ares_create_query.c +5 -1
- data/third_party/cares/cares/ares_data.c +74 -73
- data/third_party/cares/cares/ares_destroy.c +6 -1
- data/third_party/cares/cares/ares_gethostbyaddr.c +5 -5
- data/third_party/cares/cares/ares_gethostbyname.c +15 -4
- data/third_party/cares/cares/ares_getnameinfo.c +11 -0
- data/third_party/cares/cares/ares_init.c +274 -173
- data/third_party/cares/cares/ares_library_init.c +21 -3
- data/third_party/cares/cares/ares_options.c +6 -2
- data/third_party/cares/cares/ares_parse_naptr_reply.c +7 -6
- data/third_party/cares/cares/ares_parse_ptr_reply.c +4 -2
- data/third_party/cares/cares/ares_platform.c +7 -0
- data/third_party/cares/cares/ares_private.h +19 -11
- data/third_party/cares/cares/ares_process.c +27 -2
- data/third_party/cares/cares/ares_rules.h +1 -1
- data/third_party/cares/cares/ares_search.c +7 -0
- data/third_party/cares/cares/ares_send.c +6 -0
- data/third_party/cares/cares/ares_strsplit.c +174 -0
- data/third_party/cares/cares/ares_strsplit.h +43 -0
- data/third_party/cares/cares/ares_version.h +4 -4
- data/third_party/cares/cares/config-win32.h +1 -1
- data/third_party/cares/cares/inet_ntop.c +2 -3
- data/third_party/cares/config_darwin/ares_config.h +3 -0
- data/third_party/cares/config_freebsd/ares_config.h +3 -0
- data/third_party/cares/config_linux/ares_config.h +3 -0
- data/third_party/cares/config_openbsd/ares_config.h +3 -0
- metadata +83 -48
- data/src/core/ext/filters/client_channel/request_routing.cc +0 -936
- data/src/core/ext/filters/client_channel/request_routing.h +0 -177
- data/src/core/ext/filters/client_channel/subchannel_index.cc +0 -248
- data/src/core/ext/filters/client_channel/subchannel_index.h +0 -76
- data/src/core/lib/channel/handshaker_factory.cc +0 -42
- data/src/core/lib/gpr/arena.cc +0 -192
- data/src/core/lib/gprpp/atomic_with_atm.h +0 -57
- data/src/core/lib/iomgr/wakeup_fd_cv.cc +0 -107
- data/src/core/lib/iomgr/wakeup_fd_cv.h +0 -69
- data/src/core/lib/transport/service_config.cc +0 -106
- data/src/core/lib/transport/service_config.h +0 -249
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: src/ruby/bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.8'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
26
|
+
version: '3.8'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: googleapis-common-protos-types
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.0
|
33
|
+
version: '1.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.0
|
40
|
+
version: '1.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,14 +170,14 @@ dependencies:
|
|
170
170
|
requirements:
|
171
171
|
- - "~>"
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: 0.7
|
173
|
+
version: '0.7'
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - "~>"
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version: 0.7
|
180
|
+
version: '0.7'
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: googleauth
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -187,7 +187,7 @@ dependencies:
|
|
187
187
|
version: 0.5.1
|
188
188
|
- - "<"
|
189
189
|
- !ruby/object:Gem::Version
|
190
|
-
version: '0.
|
190
|
+
version: '0.10'
|
191
191
|
type: :development
|
192
192
|
prerelease: false
|
193
193
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -197,7 +197,7 @@ dependencies:
|
|
197
197
|
version: 0.5.1
|
198
198
|
- - "<"
|
199
199
|
- !ruby/object:Gem::Version
|
200
|
-
version: '0.
|
200
|
+
version: '0.10'
|
201
201
|
description: Send RPCs from Ruby using GRPC
|
202
202
|
email: temiola@google.com
|
203
203
|
executables: []
|
@@ -277,6 +277,8 @@ files:
|
|
277
277
|
- src/core/ext/filters/client_channel/client_channel_plugin.cc
|
278
278
|
- src/core/ext/filters/client_channel/connector.cc
|
279
279
|
- src/core/ext/filters/client_channel/connector.h
|
280
|
+
- src/core/ext/filters/client_channel/global_subchannel_pool.cc
|
281
|
+
- src/core/ext/filters/client_channel/global_subchannel_pool.h
|
280
282
|
- src/core/ext/filters/client_channel/health/health.pb.c
|
281
283
|
- src/core/ext/filters/client_channel/health/health.pb.h
|
282
284
|
- src/core/ext/filters/client_channel/health/health_check_client.cc
|
@@ -317,26 +319,30 @@ files:
|
|
317
319
|
- src/core/ext/filters/client_channel/lb_policy_factory.h
|
318
320
|
- src/core/ext/filters/client_channel/lb_policy_registry.cc
|
319
321
|
- src/core/ext/filters/client_channel/lb_policy_registry.h
|
322
|
+
- src/core/ext/filters/client_channel/local_subchannel_pool.cc
|
323
|
+
- src/core/ext/filters/client_channel/local_subchannel_pool.h
|
320
324
|
- src/core/ext/filters/client_channel/parse_address.cc
|
321
325
|
- src/core/ext/filters/client_channel/parse_address.h
|
322
326
|
- src/core/ext/filters/client_channel/proxy_mapper.cc
|
323
327
|
- src/core/ext/filters/client_channel/proxy_mapper.h
|
324
328
|
- src/core/ext/filters/client_channel/proxy_mapper_registry.cc
|
325
329
|
- src/core/ext/filters/client_channel/proxy_mapper_registry.h
|
326
|
-
- src/core/ext/filters/client_channel/request_routing.cc
|
327
|
-
- src/core/ext/filters/client_channel/request_routing.h
|
328
330
|
- src/core/ext/filters/client_channel/resolver.cc
|
329
331
|
- src/core/ext/filters/client_channel/resolver.h
|
330
332
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc
|
331
333
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc
|
332
334
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h
|
335
|
+
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc
|
333
336
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc
|
334
337
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc
|
335
338
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc
|
336
339
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h
|
337
340
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc
|
341
|
+
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc
|
338
342
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc
|
339
343
|
- src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc
|
344
|
+
- src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc
|
345
|
+
- src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h
|
340
346
|
- src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc
|
341
347
|
- src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc
|
342
348
|
- src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h
|
@@ -346,14 +352,19 @@ files:
|
|
346
352
|
- src/core/ext/filters/client_channel/resolver_registry.h
|
347
353
|
- src/core/ext/filters/client_channel/resolver_result_parsing.cc
|
348
354
|
- src/core/ext/filters/client_channel/resolver_result_parsing.h
|
355
|
+
- src/core/ext/filters/client_channel/resolving_lb_policy.cc
|
356
|
+
- src/core/ext/filters/client_channel/resolving_lb_policy.h
|
349
357
|
- src/core/ext/filters/client_channel/retry_throttle.cc
|
350
358
|
- src/core/ext/filters/client_channel/retry_throttle.h
|
351
359
|
- src/core/ext/filters/client_channel/server_address.cc
|
352
360
|
- src/core/ext/filters/client_channel/server_address.h
|
361
|
+
- src/core/ext/filters/client_channel/service_config.cc
|
362
|
+
- src/core/ext/filters/client_channel/service_config.h
|
353
363
|
- src/core/ext/filters/client_channel/subchannel.cc
|
354
364
|
- src/core/ext/filters/client_channel/subchannel.h
|
355
|
-
- src/core/ext/filters/client_channel/
|
356
|
-
- src/core/ext/filters/client_channel/
|
365
|
+
- src/core/ext/filters/client_channel/subchannel_interface.h
|
366
|
+
- src/core/ext/filters/client_channel/subchannel_pool_interface.cc
|
367
|
+
- src/core/ext/filters/client_channel/subchannel_pool_interface.h
|
357
368
|
- src/core/ext/filters/deadline/deadline_filter.cc
|
358
369
|
- src/core/ext/filters/deadline/deadline_filter.h
|
359
370
|
- src/core/ext/filters/http/client/http_client_filter.cc
|
@@ -455,7 +466,6 @@ files:
|
|
455
466
|
- src/core/lib/channel/context.h
|
456
467
|
- src/core/lib/channel/handshaker.cc
|
457
468
|
- src/core/lib/channel/handshaker.h
|
458
|
-
- src/core/lib/channel/handshaker_factory.cc
|
459
469
|
- src/core/lib/channel/handshaker_factory.h
|
460
470
|
- src/core/lib/channel/handshaker_registry.cc
|
461
471
|
- src/core/lib/channel/handshaker_registry.h
|
@@ -463,6 +473,8 @@ files:
|
|
463
473
|
- src/core/lib/channel/status_util.h
|
464
474
|
- src/core/lib/compression/algorithm_metadata.h
|
465
475
|
- src/core/lib/compression/compression.cc
|
476
|
+
- src/core/lib/compression/compression_args.cc
|
477
|
+
- src/core/lib/compression/compression_args.h
|
466
478
|
- src/core/lib/compression/compression_internal.cc
|
467
479
|
- src/core/lib/compression/compression_internal.h
|
468
480
|
- src/core/lib/compression/message_compress.cc
|
@@ -481,7 +493,6 @@ files:
|
|
481
493
|
- src/core/lib/debug/trace.h
|
482
494
|
- src/core/lib/gpr/alloc.cc
|
483
495
|
- src/core/lib/gpr/alloc.h
|
484
|
-
- src/core/lib/gpr/arena.cc
|
485
496
|
- src/core/lib/gpr/arena.h
|
486
497
|
- src/core/lib/gpr/atm.cc
|
487
498
|
- src/core/lib/gpr/cpu_iphone.cc
|
@@ -530,19 +541,27 @@ files:
|
|
530
541
|
- src/core/lib/gpr/useful.h
|
531
542
|
- src/core/lib/gpr/wrap_memcpy.cc
|
532
543
|
- src/core/lib/gprpp/abstract.h
|
544
|
+
- src/core/lib/gprpp/arena.cc
|
545
|
+
- src/core/lib/gprpp/arena.h
|
533
546
|
- src/core/lib/gprpp/atomic.h
|
534
|
-
- src/core/lib/gprpp/atomic_with_atm.h
|
535
|
-
- src/core/lib/gprpp/atomic_with_std.h
|
536
547
|
- src/core/lib/gprpp/debug_location.h
|
537
548
|
- src/core/lib/gprpp/fork.cc
|
538
549
|
- src/core/lib/gprpp/fork.h
|
550
|
+
- src/core/lib/gprpp/global_config.h
|
551
|
+
- src/core/lib/gprpp/global_config_custom.h
|
552
|
+
- src/core/lib/gprpp/global_config_env.cc
|
553
|
+
- src/core/lib/gprpp/global_config_env.h
|
554
|
+
- src/core/lib/gprpp/global_config_generic.h
|
539
555
|
- src/core/lib/gprpp/inlined_vector.h
|
540
556
|
- src/core/lib/gprpp/manual_constructor.h
|
557
|
+
- src/core/lib/gprpp/map.h
|
541
558
|
- src/core/lib/gprpp/memory.h
|
542
|
-
- src/core/lib/gprpp/
|
559
|
+
- src/core/lib/gprpp/optional.h
|
543
560
|
- src/core/lib/gprpp/orphanable.h
|
561
|
+
- src/core/lib/gprpp/pair.h
|
544
562
|
- src/core/lib/gprpp/ref_counted.h
|
545
563
|
- src/core/lib/gprpp/ref_counted_ptr.h
|
564
|
+
- src/core/lib/gprpp/sync.h
|
546
565
|
- src/core/lib/gprpp/thd.h
|
547
566
|
- src/core/lib/gprpp/thd_posix.cc
|
548
567
|
- src/core/lib/gprpp/thd_windows.cc
|
@@ -558,18 +577,24 @@ files:
|
|
558
577
|
- src/core/lib/iomgr/buffer_list.h
|
559
578
|
- src/core/lib/iomgr/call_combiner.cc
|
560
579
|
- src/core/lib/iomgr/call_combiner.h
|
580
|
+
- src/core/lib/iomgr/cfstream_handle.cc
|
581
|
+
- src/core/lib/iomgr/cfstream_handle.h
|
561
582
|
- src/core/lib/iomgr/closure.h
|
562
583
|
- src/core/lib/iomgr/combiner.cc
|
563
584
|
- src/core/lib/iomgr/combiner.h
|
564
585
|
- src/core/lib/iomgr/dynamic_annotations.h
|
565
586
|
- src/core/lib/iomgr/endpoint.cc
|
566
587
|
- src/core/lib/iomgr/endpoint.h
|
588
|
+
- src/core/lib/iomgr/endpoint_cfstream.cc
|
589
|
+
- src/core/lib/iomgr/endpoint_cfstream.h
|
567
590
|
- src/core/lib/iomgr/endpoint_pair.h
|
568
591
|
- src/core/lib/iomgr/endpoint_pair_posix.cc
|
569
592
|
- src/core/lib/iomgr/endpoint_pair_uv.cc
|
570
593
|
- src/core/lib/iomgr/endpoint_pair_windows.cc
|
571
594
|
- src/core/lib/iomgr/error.cc
|
572
595
|
- src/core/lib/iomgr/error.h
|
596
|
+
- src/core/lib/iomgr/error_cfstream.cc
|
597
|
+
- src/core/lib/iomgr/error_cfstream.h
|
573
598
|
- src/core/lib/iomgr/error_internal.h
|
574
599
|
- src/core/lib/iomgr/ev_epoll1_linux.cc
|
575
600
|
- src/core/lib/iomgr/ev_epoll1_linux.h
|
@@ -590,6 +615,9 @@ files:
|
|
590
615
|
- src/core/lib/iomgr/gethostname_fallback.cc
|
591
616
|
- src/core/lib/iomgr/gethostname_host_name_max.cc
|
592
617
|
- src/core/lib/iomgr/gethostname_sysconf.cc
|
618
|
+
- src/core/lib/iomgr/grpc_if_nametoindex.h
|
619
|
+
- src/core/lib/iomgr/grpc_if_nametoindex_posix.cc
|
620
|
+
- src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc
|
593
621
|
- src/core/lib/iomgr/internal_errqueue.cc
|
594
622
|
- src/core/lib/iomgr/internal_errqueue.h
|
595
623
|
- src/core/lib/iomgr/iocp_windows.cc
|
@@ -602,6 +630,7 @@ files:
|
|
602
630
|
- src/core/lib/iomgr/iomgr_internal.h
|
603
631
|
- src/core/lib/iomgr/iomgr_posix.cc
|
604
632
|
- src/core/lib/iomgr/iomgr_posix.h
|
633
|
+
- src/core/lib/iomgr/iomgr_posix_cfstream.cc
|
605
634
|
- src/core/lib/iomgr/iomgr_uv.cc
|
606
635
|
- src/core/lib/iomgr/iomgr_windows.cc
|
607
636
|
- src/core/lib/iomgr/is_epollexclusive_available.cc
|
@@ -611,8 +640,6 @@ files:
|
|
611
640
|
- src/core/lib/iomgr/lockfree_event.cc
|
612
641
|
- src/core/lib/iomgr/lockfree_event.h
|
613
642
|
- src/core/lib/iomgr/nameser.h
|
614
|
-
- src/core/lib/iomgr/network_status_tracker.cc
|
615
|
-
- src/core/lib/iomgr/network_status_tracker.h
|
616
643
|
- src/core/lib/iomgr/polling_entity.cc
|
617
644
|
- src/core/lib/iomgr/polling_entity.h
|
618
645
|
- src/core/lib/iomgr/pollset.cc
|
@@ -659,6 +686,7 @@ files:
|
|
659
686
|
- src/core/lib/iomgr/sys_epoll_wrapper.h
|
660
687
|
- src/core/lib/iomgr/tcp_client.cc
|
661
688
|
- src/core/lib/iomgr/tcp_client.h
|
689
|
+
- src/core/lib/iomgr/tcp_client_cfstream.cc
|
662
690
|
- src/core/lib/iomgr/tcp_client_custom.cc
|
663
691
|
- src/core/lib/iomgr/tcp_client_posix.cc
|
664
692
|
- src/core/lib/iomgr/tcp_client_posix.h
|
@@ -696,8 +724,6 @@ files:
|
|
696
724
|
- src/core/lib/iomgr/unix_sockets_posix.cc
|
697
725
|
- src/core/lib/iomgr/unix_sockets_posix.h
|
698
726
|
- src/core/lib/iomgr/unix_sockets_posix_noop.cc
|
699
|
-
- src/core/lib/iomgr/wakeup_fd_cv.cc
|
700
|
-
- src/core/lib/iomgr/wakeup_fd_cv.h
|
701
727
|
- src/core/lib/iomgr/wakeup_fd_eventfd.cc
|
702
728
|
- src/core/lib/iomgr/wakeup_fd_nospecial.cc
|
703
729
|
- src/core/lib/iomgr/wakeup_fd_pipe.cc
|
@@ -754,6 +780,10 @@ files:
|
|
754
780
|
- src/core/lib/security/credentials/plugin/plugin_credentials.h
|
755
781
|
- src/core/lib/security/credentials/ssl/ssl_credentials.cc
|
756
782
|
- src/core/lib/security/credentials/ssl/ssl_credentials.h
|
783
|
+
- src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc
|
784
|
+
- src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h
|
785
|
+
- src/core/lib/security/credentials/tls/spiffe_credentials.cc
|
786
|
+
- src/core/lib/security/credentials/tls/spiffe_credentials.h
|
757
787
|
- src/core/lib/security/security_connector/alts/alts_security_connector.cc
|
758
788
|
- src/core/lib/security/security_connector/alts/alts_security_connector.h
|
759
789
|
- src/core/lib/security/security_connector/fake/fake_security_connector.cc
|
@@ -770,6 +800,8 @@ files:
|
|
770
800
|
- src/core/lib/security/security_connector/ssl/ssl_security_connector.h
|
771
801
|
- src/core/lib/security/security_connector/ssl_utils.cc
|
772
802
|
- src/core/lib/security/security_connector/ssl_utils.h
|
803
|
+
- src/core/lib/security/security_connector/tls/spiffe_security_connector.cc
|
804
|
+
- src/core/lib/security/security_connector/tls/spiffe_security_connector.h
|
773
805
|
- src/core/lib/security/transport/auth_filters.h
|
774
806
|
- src/core/lib/security/transport/client_auth_filter.cc
|
775
807
|
- src/core/lib/security/transport/secure_endpoint.cc
|
@@ -794,6 +826,7 @@ files:
|
|
794
826
|
- src/core/lib/slice/slice_internal.h
|
795
827
|
- src/core/lib/slice/slice_string_helpers.cc
|
796
828
|
- src/core/lib/slice/slice_string_helpers.h
|
829
|
+
- src/core/lib/slice/slice_utils.h
|
797
830
|
- src/core/lib/slice/slice_weak_hash_table.h
|
798
831
|
- src/core/lib/surface/api_trace.cc
|
799
832
|
- src/core/lib/surface/api_trace.h
|
@@ -843,8 +876,6 @@ files:
|
|
843
876
|
- src/core/lib/transport/metadata_batch.h
|
844
877
|
- src/core/lib/transport/pid_controller.cc
|
845
878
|
- src/core/lib/transport/pid_controller.h
|
846
|
-
- src/core/lib/transport/service_config.cc
|
847
|
-
- src/core/lib/transport/service_config.h
|
848
879
|
- src/core/lib/transport/static_metadata.cc
|
849
880
|
- src/core/lib/transport/static_metadata.h
|
850
881
|
- src/core/lib/transport/status_conversion.cc
|
@@ -997,6 +1028,7 @@ files:
|
|
997
1028
|
- src/ruby/spec/client_server_spec.rb
|
998
1029
|
- src/ruby/spec/compression_options_spec.rb
|
999
1030
|
- src/ruby/spec/error_sanity_spec.rb
|
1031
|
+
- src/ruby/spec/errors_spec.rb
|
1000
1032
|
- src/ruby/spec/generic/active_call_spec.rb
|
1001
1033
|
- src/ruby/spec/generic/client_interceptors_spec.rb
|
1002
1034
|
- src/ruby/spec/generic/client_stub_spec.rb
|
@@ -1517,6 +1549,8 @@ files:
|
|
1517
1549
|
- third_party/cares/cares/ares_strdup.c
|
1518
1550
|
- third_party/cares/cares/ares_strdup.h
|
1519
1551
|
- third_party/cares/cares/ares_strerror.c
|
1552
|
+
- third_party/cares/cares/ares_strsplit.c
|
1553
|
+
- third_party/cares/cares/ares_strsplit.h
|
1520
1554
|
- third_party/cares/cares/ares_timeout.c
|
1521
1555
|
- third_party/cares/cares/ares_version.c
|
1522
1556
|
- third_party/cares/cares/ares_version.h
|
@@ -1579,50 +1613,51 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1579
1613
|
requirements:
|
1580
1614
|
- - ">="
|
1581
1615
|
- !ruby/object:Gem::Version
|
1582
|
-
version: 2.
|
1616
|
+
version: 2.3.0
|
1583
1617
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1584
1618
|
requirements:
|
1585
1619
|
- - ">="
|
1586
1620
|
- !ruby/object:Gem::Version
|
1587
1621
|
version: '0'
|
1588
1622
|
requirements: []
|
1589
|
-
rubygems_version: 3.0.
|
1623
|
+
rubygems_version: 3.0.4
|
1590
1624
|
signing_key:
|
1591
1625
|
specification_version: 4
|
1592
1626
|
summary: GRPC system in Ruby
|
1593
1627
|
test_files:
|
1628
|
+
- src/ruby/spec/error_sanity_spec.rb
|
1629
|
+
- src/ruby/spec/channel_spec.rb
|
1630
|
+
- src/ruby/spec/server_spec.rb
|
1631
|
+
- src/ruby/spec/client_server_spec.rb
|
1632
|
+
- src/ruby/spec/pb/health/checker_spec.rb
|
1594
1633
|
- src/ruby/spec/pb/codegen/package_option_spec.rb
|
1595
1634
|
- src/ruby/spec/pb/codegen/grpc/testing/package_options.proto
|
1596
1635
|
- src/ruby/spec/pb/duplicate/codegen_spec.rb
|
1597
|
-
- src/ruby/spec/pb/health/checker_spec.rb
|
1598
|
-
- src/ruby/spec/time_consts_spec.rb
|
1599
|
-
- src/ruby/spec/channel_connection_spec.rb
|
1600
|
-
- src/ruby/spec/compression_options_spec.rb
|
1601
1636
|
- src/ruby/spec/call_credentials_spec.rb
|
1637
|
+
- src/ruby/spec/support/helpers.rb
|
1638
|
+
- src/ruby/spec/support/services.rb
|
1639
|
+
- src/ruby/spec/errors_spec.rb
|
1640
|
+
- src/ruby/spec/google_rpc_status_utils_spec.rb
|
1641
|
+
- src/ruby/spec/server_credentials_spec.rb
|
1642
|
+
- src/ruby/spec/compression_options_spec.rb
|
1602
1643
|
- src/ruby/spec/client_auth_spec.rb
|
1603
|
-
- src/ruby/spec/
|
1644
|
+
- src/ruby/spec/call_spec.rb
|
1604
1645
|
- src/ruby/spec/testdata/README
|
1646
|
+
- src/ruby/spec/testdata/client.pem
|
1605
1647
|
- src/ruby/spec/testdata/server1.key
|
1648
|
+
- src/ruby/spec/testdata/ca.pem
|
1606
1649
|
- src/ruby/spec/testdata/client.key
|
1607
1650
|
- src/ruby/spec/testdata/server1.pem
|
1608
|
-
- src/ruby/spec/
|
1609
|
-
- src/ruby/spec/testdata/client.pem
|
1610
|
-
- src/ruby/spec/support/helpers.rb
|
1611
|
-
- src/ruby/spec/support/services.rb
|
1612
|
-
- src/ruby/spec/channel_credentials_spec.rb
|
1613
|
-
- src/ruby/spec/server_spec.rb
|
1614
|
-
- src/ruby/spec/google_rpc_status_utils_spec.rb
|
1615
|
-
- src/ruby/spec/call_spec.rb
|
1616
|
-
- src/ruby/spec/error_sanity_spec.rb
|
1651
|
+
- src/ruby/spec/channel_connection_spec.rb
|
1617
1652
|
- src/ruby/spec/spec_helper.rb
|
1618
|
-
- src/ruby/spec/
|
1619
|
-
- src/ruby/spec/
|
1620
|
-
- src/ruby/spec/generic/client_interceptors_spec.rb
|
1621
|
-
- src/ruby/spec/generic/client_stub_spec.rb
|
1622
|
-
- src/ruby/spec/generic/active_call_spec.rb
|
1653
|
+
- src/ruby/spec/time_consts_spec.rb
|
1654
|
+
- src/ruby/spec/channel_credentials_spec.rb
|
1623
1655
|
- src/ruby/spec/generic/rpc_server_pool_spec.rb
|
1656
|
+
- src/ruby/spec/generic/client_interceptors_spec.rb
|
1624
1657
|
- src/ruby/spec/generic/server_interceptors_spec.rb
|
1658
|
+
- src/ruby/spec/generic/rpc_server_spec.rb
|
1625
1659
|
- src/ruby/spec/generic/service_spec.rb
|
1626
|
-
- src/ruby/spec/generic/
|
1660
|
+
- src/ruby/spec/generic/client_stub_spec.rb
|
1627
1661
|
- src/ruby/spec/generic/interceptor_registry_spec.rb
|
1628
|
-
- src/ruby/spec/generic/
|
1662
|
+
- src/ruby/spec/generic/rpc_desc_spec.rb
|
1663
|
+
- src/ruby/spec/generic/active_call_spec.rb
|