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
@@ -116,233 +116,225 @@ static uint8_t g_bytes[] = {
|
|
116
116
|
103, 122, 105, 112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101,
|
117
117
|
102, 108, 97, 116, 101, 44, 103, 122, 105, 112};
|
118
118
|
|
119
|
-
static
|
120
|
-
static void static_unref(void* unused) {}
|
121
|
-
static const grpc_slice_refcount_vtable static_sub_vtable = {
|
122
|
-
static_ref, static_unref, grpc_slice_default_eq_impl,
|
123
|
-
grpc_slice_default_hash_impl};
|
124
|
-
const grpc_slice_refcount_vtable grpc_static_metadata_vtable = {
|
125
|
-
static_ref, static_unref, grpc_static_slice_eq, grpc_static_slice_hash};
|
126
|
-
static grpc_slice_refcount static_sub_refcnt = {&static_sub_vtable,
|
127
|
-
&static_sub_refcnt};
|
119
|
+
static grpc_slice_refcount static_sub_refcnt;
|
128
120
|
grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
121
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
122
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
123
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
124
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
125
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
126
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
127
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
128
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
129
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
130
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
131
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
132
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
133
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
134
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
135
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
136
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
137
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
138
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
139
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
140
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
141
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
142
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
143
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
144
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
145
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
146
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
147
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
148
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
149
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
150
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
151
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
152
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
153
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
154
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
155
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
156
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
157
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
158
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
159
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
160
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
161
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
162
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
163
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
164
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
165
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
166
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
167
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
168
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
169
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
170
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
171
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
172
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
173
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
174
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
175
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
176
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
177
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
178
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
179
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
180
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
181
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
182
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
183
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
184
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
185
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
186
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
187
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
188
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
189
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
190
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
191
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
192
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
193
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
194
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
195
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
196
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
197
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
198
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
199
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
200
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
201
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
202
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
203
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
204
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
205
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
206
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
207
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
208
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
209
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
210
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
211
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
212
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
213
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
214
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
215
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
216
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
217
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
218
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
219
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
220
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
221
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
222
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
223
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
224
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
225
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
226
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
227
|
+
grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
|
236
228
|
};
|
237
229
|
|
238
230
|
const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
|
239
|
-
{&grpc_static_metadata_refcounts[0], {{g_bytes + 0
|
240
|
-
{&grpc_static_metadata_refcounts[1], {{g_bytes + 5
|
241
|
-
{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
242
|
-
{&grpc_static_metadata_refcounts[3], {{g_bytes + 19
|
243
|
-
{&grpc_static_metadata_refcounts[4], {{g_bytes + 29
|
244
|
-
{&grpc_static_metadata_refcounts[5], {{g_bytes + 36
|
245
|
-
{&grpc_static_metadata_refcounts[6], {{g_bytes + 38
|
246
|
-
{&grpc_static_metadata_refcounts[7], {{g_bytes + 50
|
247
|
-
{&grpc_static_metadata_refcounts[8], {{g_bytes + 61
|
248
|
-
{&grpc_static_metadata_refcounts[9], {{g_bytes + 77
|
249
|
-
{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
250
|
-
{&grpc_static_metadata_refcounts[11], {{g_bytes + 110
|
251
|
-
{&grpc_static_metadata_refcounts[12], {{g_bytes + 131
|
252
|
-
{&grpc_static_metadata_refcounts[13], {{g_bytes + 144
|
253
|
-
{&grpc_static_metadata_refcounts[14], {{g_bytes + 158
|
254
|
-
{&grpc_static_metadata_refcounts[15], {{g_bytes + 170
|
255
|
-
{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
256
|
-
{&grpc_static_metadata_refcounts[17], {{g_bytes + 201
|
257
|
-
{&grpc_static_metadata_refcounts[18], {{g_bytes + 231
|
258
|
-
{&grpc_static_metadata_refcounts[19], {{g_bytes + 268
|
259
|
-
{&grpc_static_metadata_refcounts[20], {{g_bytes + 278
|
260
|
-
{&grpc_static_metadata_refcounts[21], {{g_bytes + 282
|
261
|
-
{&grpc_static_metadata_refcounts[22], {{g_bytes + 290
|
262
|
-
{&grpc_static_metadata_refcounts[23], {{g_bytes + 316
|
263
|
-
{&grpc_static_metadata_refcounts[24], {{g_bytes + 338
|
264
|
-
{&grpc_static_metadata_refcounts[25], {{g_bytes + 350
|
265
|
-
{&grpc_static_metadata_refcounts[26], {{g_bytes + 351
|
266
|
-
{&grpc_static_metadata_refcounts[27], {{g_bytes + 352
|
267
|
-
{&grpc_static_metadata_refcounts[28], {{g_bytes + 353
|
268
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
269
|
-
{&grpc_static_metadata_refcounts[30], {{g_bytes + 354
|
270
|
-
{&grpc_static_metadata_refcounts[31], {{g_bytes + 373
|
271
|
-
{&grpc_static_metadata_refcounts[32], {{g_bytes + 385
|
272
|
-
{&grpc_static_metadata_refcounts[33], {{g_bytes + 415
|
273
|
-
{&grpc_static_metadata_refcounts[34], {{g_bytes + 446
|
274
|
-
{&grpc_static_metadata_refcounts[35], {{g_bytes + 482
|
275
|
-
{&grpc_static_metadata_refcounts[36], {{g_bytes + 510
|
276
|
-
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590
|
277
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597
|
278
|
-
{&grpc_static_metadata_refcounts[39], {{g_bytes + 601
|
279
|
-
{&grpc_static_metadata_refcounts[40], {{g_bytes + 612
|
280
|
-
{&grpc_static_metadata_refcounts[41], {{g_bytes + 615
|
281
|
-
{&grpc_static_metadata_refcounts[42], {{g_bytes + 619
|
282
|
-
{&grpc_static_metadata_refcounts[43], {{g_bytes + 620
|
283
|
-
{&grpc_static_metadata_refcounts[44], {{g_bytes + 631
|
284
|
-
{&grpc_static_metadata_refcounts[45], {{g_bytes + 635
|
285
|
-
{&grpc_static_metadata_refcounts[46], {{g_bytes + 640
|
286
|
-
{&grpc_static_metadata_refcounts[47], {{g_bytes + 643
|
287
|
-
{&grpc_static_metadata_refcounts[48], {{g_bytes + 646
|
288
|
-
{&grpc_static_metadata_refcounts[49], {{g_bytes + 649
|
289
|
-
{&grpc_static_metadata_refcounts[50], {{g_bytes + 652
|
290
|
-
{&grpc_static_metadata_refcounts[51], {{g_bytes + 655
|
291
|
-
{&grpc_static_metadata_refcounts[52], {{g_bytes + 658
|
292
|
-
{&grpc_static_metadata_refcounts[53], {{g_bytes + 661
|
293
|
-
{&grpc_static_metadata_refcounts[54], {{g_bytes + 675
|
294
|
-
{&grpc_static_metadata_refcounts[55], {{g_bytes + 688
|
295
|
-
{&grpc_static_metadata_refcounts[56], {{g_bytes + 703
|
296
|
-
{&grpc_static_metadata_refcounts[57], {{g_bytes + 716
|
297
|
-
{&grpc_static_metadata_refcounts[58], {{g_bytes + 722
|
298
|
-
{&grpc_static_metadata_refcounts[59], {{g_bytes + 749
|
299
|
-
{&grpc_static_metadata_refcounts[60], {{g_bytes + 752
|
300
|
-
{&grpc_static_metadata_refcounts[61], {{g_bytes + 757
|
301
|
-
{&grpc_static_metadata_refcounts[62], {{g_bytes + 770
|
302
|
-
{&grpc_static_metadata_refcounts[63], {{g_bytes + 783
|
303
|
-
{&grpc_static_metadata_refcounts[64], {{g_bytes + 802
|
304
|
-
{&grpc_static_metadata_refcounts[65], {{g_bytes + 818
|
305
|
-
{&grpc_static_metadata_refcounts[66], {{g_bytes + 832
|
306
|
-
{&grpc_static_metadata_refcounts[67], {{g_bytes + 848
|
307
|
-
{&grpc_static_metadata_refcounts[68], {{g_bytes + 861
|
308
|
-
{&grpc_static_metadata_refcounts[69], {{g_bytes + 867
|
309
|
-
{&grpc_static_metadata_refcounts[70], {{g_bytes + 871
|
310
|
-
{&grpc_static_metadata_refcounts[71], {{g_bytes + 875
|
311
|
-
{&grpc_static_metadata_refcounts[72], {{g_bytes + 881
|
312
|
-
{&grpc_static_metadata_refcounts[73], {{g_bytes + 888
|
313
|
-
{&grpc_static_metadata_refcounts[74], {{g_bytes + 892
|
314
|
-
{&grpc_static_metadata_refcounts[75], {{g_bytes + 900
|
315
|
-
{&grpc_static_metadata_refcounts[76], {{g_bytes + 917
|
316
|
-
{&grpc_static_metadata_refcounts[77], {{g_bytes + 930
|
317
|
-
{&grpc_static_metadata_refcounts[78], {{g_bytes + 938
|
318
|
-
{&grpc_static_metadata_refcounts[79], {{g_bytes + 957
|
319
|
-
{&grpc_static_metadata_refcounts[80], {{g_bytes + 970
|
320
|
-
{&grpc_static_metadata_refcounts[81], {{g_bytes + 974
|
321
|
-
{&grpc_static_metadata_refcounts[82], {{g_bytes + 982
|
322
|
-
{&grpc_static_metadata_refcounts[83], {{g_bytes + 994
|
323
|
-
{&grpc_static_metadata_refcounts[84], {{g_bytes + 1012
|
324
|
-
{&grpc_static_metadata_refcounts[85], {{g_bytes + 1031
|
325
|
-
{&grpc_static_metadata_refcounts[86], {{g_bytes + 1036
|
326
|
-
{&grpc_static_metadata_refcounts[87], {{g_bytes + 1043
|
327
|
-
{&grpc_static_metadata_refcounts[88], {{g_bytes + 1050
|
328
|
-
{&grpc_static_metadata_refcounts[89], {{g_bytes + 1061
|
329
|
-
{&grpc_static_metadata_refcounts[90], {{g_bytes + 1067
|
330
|
-
{&grpc_static_metadata_refcounts[91], {{g_bytes + 1077
|
331
|
-
{&grpc_static_metadata_refcounts[92], {{g_bytes + 1102
|
332
|
-
{&grpc_static_metadata_refcounts[93], {{g_bytes + 1119
|
333
|
-
{&grpc_static_metadata_refcounts[94], {{g_bytes + 1123
|
334
|
-
{&grpc_static_metadata_refcounts[95], {{g_bytes + 1126
|
335
|
-
{&grpc_static_metadata_refcounts[96], {{g_bytes + 1142
|
336
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143
|
337
|
-
{&grpc_static_metadata_refcounts[98], {{g_bytes + 1151
|
338
|
-
{&grpc_static_metadata_refcounts[99], {{g_bytes + 1159
|
339
|
-
{&grpc_static_metadata_refcounts[100], {{g_bytes + 1175
|
340
|
-
{&grpc_static_metadata_refcounts[101], {{g_bytes + 1179
|
341
|
-
{&grpc_static_metadata_refcounts[102], {{g_bytes + 1182
|
342
|
-
{&grpc_static_metadata_refcounts[103], {{g_bytes + 1193
|
343
|
-
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209
|
344
|
-
{&grpc_static_metadata_refcounts[105], {{g_bytes + 1222
|
345
|
-
{&grpc_static_metadata_refcounts[106], {{g_bytes + 1234
|
231
|
+
{&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
|
232
|
+
{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
233
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
234
|
+
{&grpc_static_metadata_refcounts[3], {{10, g_bytes + 19}}},
|
235
|
+
{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
236
|
+
{&grpc_static_metadata_refcounts[5], {{2, g_bytes + 36}}},
|
237
|
+
{&grpc_static_metadata_refcounts[6], {{12, g_bytes + 38}}},
|
238
|
+
{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
239
|
+
{&grpc_static_metadata_refcounts[8], {{16, g_bytes + 61}}},
|
240
|
+
{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
241
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
242
|
+
{&grpc_static_metadata_refcounts[11], {{21, g_bytes + 110}}},
|
243
|
+
{&grpc_static_metadata_refcounts[12], {{13, g_bytes + 131}}},
|
244
|
+
{&grpc_static_metadata_refcounts[13], {{14, g_bytes + 144}}},
|
245
|
+
{&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
|
246
|
+
{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
247
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
248
|
+
{&grpc_static_metadata_refcounts[17], {{30, g_bytes + 201}}},
|
249
|
+
{&grpc_static_metadata_refcounts[18], {{37, g_bytes + 231}}},
|
250
|
+
{&grpc_static_metadata_refcounts[19], {{10, g_bytes + 268}}},
|
251
|
+
{&grpc_static_metadata_refcounts[20], {{4, g_bytes + 278}}},
|
252
|
+
{&grpc_static_metadata_refcounts[21], {{8, g_bytes + 282}}},
|
253
|
+
{&grpc_static_metadata_refcounts[22], {{26, g_bytes + 290}}},
|
254
|
+
{&grpc_static_metadata_refcounts[23], {{22, g_bytes + 316}}},
|
255
|
+
{&grpc_static_metadata_refcounts[24], {{12, g_bytes + 338}}},
|
256
|
+
{&grpc_static_metadata_refcounts[25], {{1, g_bytes + 350}}},
|
257
|
+
{&grpc_static_metadata_refcounts[26], {{1, g_bytes + 351}}},
|
258
|
+
{&grpc_static_metadata_refcounts[27], {{1, g_bytes + 352}}},
|
259
|
+
{&grpc_static_metadata_refcounts[28], {{1, g_bytes + 353}}},
|
260
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}},
|
261
|
+
{&grpc_static_metadata_refcounts[30], {{19, g_bytes + 354}}},
|
262
|
+
{&grpc_static_metadata_refcounts[31], {{12, g_bytes + 373}}},
|
263
|
+
{&grpc_static_metadata_refcounts[32], {{30, g_bytes + 385}}},
|
264
|
+
{&grpc_static_metadata_refcounts[33], {{31, g_bytes + 415}}},
|
265
|
+
{&grpc_static_metadata_refcounts[34], {{36, g_bytes + 446}}},
|
266
|
+
{&grpc_static_metadata_refcounts[35], {{28, g_bytes + 482}}},
|
267
|
+
{&grpc_static_metadata_refcounts[36], {{80, g_bytes + 510}}},
|
268
|
+
{&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}},
|
269
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}},
|
270
|
+
{&grpc_static_metadata_refcounts[39], {{11, g_bytes + 601}}},
|
271
|
+
{&grpc_static_metadata_refcounts[40], {{3, g_bytes + 612}}},
|
272
|
+
{&grpc_static_metadata_refcounts[41], {{4, g_bytes + 615}}},
|
273
|
+
{&grpc_static_metadata_refcounts[42], {{1, g_bytes + 619}}},
|
274
|
+
{&grpc_static_metadata_refcounts[43], {{11, g_bytes + 620}}},
|
275
|
+
{&grpc_static_metadata_refcounts[44], {{4, g_bytes + 631}}},
|
276
|
+
{&grpc_static_metadata_refcounts[45], {{5, g_bytes + 635}}},
|
277
|
+
{&grpc_static_metadata_refcounts[46], {{3, g_bytes + 640}}},
|
278
|
+
{&grpc_static_metadata_refcounts[47], {{3, g_bytes + 643}}},
|
279
|
+
{&grpc_static_metadata_refcounts[48], {{3, g_bytes + 646}}},
|
280
|
+
{&grpc_static_metadata_refcounts[49], {{3, g_bytes + 649}}},
|
281
|
+
{&grpc_static_metadata_refcounts[50], {{3, g_bytes + 652}}},
|
282
|
+
{&grpc_static_metadata_refcounts[51], {{3, g_bytes + 655}}},
|
283
|
+
{&grpc_static_metadata_refcounts[52], {{3, g_bytes + 658}}},
|
284
|
+
{&grpc_static_metadata_refcounts[53], {{14, g_bytes + 661}}},
|
285
|
+
{&grpc_static_metadata_refcounts[54], {{13, g_bytes + 675}}},
|
286
|
+
{&grpc_static_metadata_refcounts[55], {{15, g_bytes + 688}}},
|
287
|
+
{&grpc_static_metadata_refcounts[56], {{13, g_bytes + 703}}},
|
288
|
+
{&grpc_static_metadata_refcounts[57], {{6, g_bytes + 716}}},
|
289
|
+
{&grpc_static_metadata_refcounts[58], {{27, g_bytes + 722}}},
|
290
|
+
{&grpc_static_metadata_refcounts[59], {{3, g_bytes + 749}}},
|
291
|
+
{&grpc_static_metadata_refcounts[60], {{5, g_bytes + 752}}},
|
292
|
+
{&grpc_static_metadata_refcounts[61], {{13, g_bytes + 757}}},
|
293
|
+
{&grpc_static_metadata_refcounts[62], {{13, g_bytes + 770}}},
|
294
|
+
{&grpc_static_metadata_refcounts[63], {{19, g_bytes + 783}}},
|
295
|
+
{&grpc_static_metadata_refcounts[64], {{16, g_bytes + 802}}},
|
296
|
+
{&grpc_static_metadata_refcounts[65], {{14, g_bytes + 818}}},
|
297
|
+
{&grpc_static_metadata_refcounts[66], {{16, g_bytes + 832}}},
|
298
|
+
{&grpc_static_metadata_refcounts[67], {{13, g_bytes + 848}}},
|
299
|
+
{&grpc_static_metadata_refcounts[68], {{6, g_bytes + 861}}},
|
300
|
+
{&grpc_static_metadata_refcounts[69], {{4, g_bytes + 867}}},
|
301
|
+
{&grpc_static_metadata_refcounts[70], {{4, g_bytes + 871}}},
|
302
|
+
{&grpc_static_metadata_refcounts[71], {{6, g_bytes + 875}}},
|
303
|
+
{&grpc_static_metadata_refcounts[72], {{7, g_bytes + 881}}},
|
304
|
+
{&grpc_static_metadata_refcounts[73], {{4, g_bytes + 888}}},
|
305
|
+
{&grpc_static_metadata_refcounts[74], {{8, g_bytes + 892}}},
|
306
|
+
{&grpc_static_metadata_refcounts[75], {{17, g_bytes + 900}}},
|
307
|
+
{&grpc_static_metadata_refcounts[76], {{13, g_bytes + 917}}},
|
308
|
+
{&grpc_static_metadata_refcounts[77], {{8, g_bytes + 930}}},
|
309
|
+
{&grpc_static_metadata_refcounts[78], {{19, g_bytes + 938}}},
|
310
|
+
{&grpc_static_metadata_refcounts[79], {{13, g_bytes + 957}}},
|
311
|
+
{&grpc_static_metadata_refcounts[80], {{4, g_bytes + 970}}},
|
312
|
+
{&grpc_static_metadata_refcounts[81], {{8, g_bytes + 974}}},
|
313
|
+
{&grpc_static_metadata_refcounts[82], {{12, g_bytes + 982}}},
|
314
|
+
{&grpc_static_metadata_refcounts[83], {{18, g_bytes + 994}}},
|
315
|
+
{&grpc_static_metadata_refcounts[84], {{19, g_bytes + 1012}}},
|
316
|
+
{&grpc_static_metadata_refcounts[85], {{5, g_bytes + 1031}}},
|
317
|
+
{&grpc_static_metadata_refcounts[86], {{7, g_bytes + 1036}}},
|
318
|
+
{&grpc_static_metadata_refcounts[87], {{7, g_bytes + 1043}}},
|
319
|
+
{&grpc_static_metadata_refcounts[88], {{11, g_bytes + 1050}}},
|
320
|
+
{&grpc_static_metadata_refcounts[89], {{6, g_bytes + 1061}}},
|
321
|
+
{&grpc_static_metadata_refcounts[90], {{10, g_bytes + 1067}}},
|
322
|
+
{&grpc_static_metadata_refcounts[91], {{25, g_bytes + 1077}}},
|
323
|
+
{&grpc_static_metadata_refcounts[92], {{17, g_bytes + 1102}}},
|
324
|
+
{&grpc_static_metadata_refcounts[93], {{4, g_bytes + 1119}}},
|
325
|
+
{&grpc_static_metadata_refcounts[94], {{3, g_bytes + 1123}}},
|
326
|
+
{&grpc_static_metadata_refcounts[95], {{16, g_bytes + 1126}}},
|
327
|
+
{&grpc_static_metadata_refcounts[96], {{1, g_bytes + 1142}}},
|
328
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}},
|
329
|
+
{&grpc_static_metadata_refcounts[98], {{8, g_bytes + 1151}}},
|
330
|
+
{&grpc_static_metadata_refcounts[99], {{16, g_bytes + 1159}}},
|
331
|
+
{&grpc_static_metadata_refcounts[100], {{4, g_bytes + 1175}}},
|
332
|
+
{&grpc_static_metadata_refcounts[101], {{3, g_bytes + 1179}}},
|
333
|
+
{&grpc_static_metadata_refcounts[102], {{11, g_bytes + 1182}}},
|
334
|
+
{&grpc_static_metadata_refcounts[103], {{16, g_bytes + 1193}}},
|
335
|
+
{&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}},
|
336
|
+
{&grpc_static_metadata_refcounts[105], {{12, g_bytes + 1222}}},
|
337
|
+
{&grpc_static_metadata_refcounts[106], {{21, g_bytes + 1234}}},
|
346
338
|
};
|
347
339
|
|
348
340
|
uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
|
@@ -392,190 +384,276 @@ static const uint8_t elem_idxs[] = {
|
|
392
384
|
52, 53, 54, 76, 69, 55, 56, 70, 58, 78, 80, 81, 82, 83, 59, 64,
|
393
385
|
60, 75, 72, 255, 85, 255, 255, 68, 255, 255, 0};
|
394
386
|
|
395
|
-
grpc_mdelem grpc_static_mdelem_for_static_strings(
|
387
|
+
grpc_mdelem grpc_static_mdelem_for_static_strings(intptr_t a, intptr_t b) {
|
396
388
|
if (a == -1 || b == -1) return GRPC_MDNULL;
|
397
|
-
uint32_t k =
|
389
|
+
uint32_t k = static_cast<uint32_t>(a * 107 + b);
|
398
390
|
uint32_t h = elems_phash(k);
|
399
391
|
return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
|
400
392
|
elem_idxs[h] != 255
|
401
|
-
? GRPC_MAKE_MDELEM(&grpc_static_mdelem_table[elem_idxs[h]],
|
393
|
+
? GRPC_MAKE_MDELEM(&grpc_static_mdelem_table[elem_idxs[h]].data(),
|
402
394
|
GRPC_MDELEM_STORAGE_STATIC)
|
403
395
|
: GRPC_MDNULL;
|
404
396
|
}
|
405
397
|
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
398
|
+
grpc_core::StaticMetadata grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
|
399
|
+
grpc_core::StaticMetadata(
|
400
|
+
{&grpc_static_metadata_refcounts[3], {{10, g_bytes + 19}}},
|
401
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
402
|
+
grpc_core::StaticMetadata(
|
403
|
+
{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
404
|
+
{&grpc_static_metadata_refcounts[40], {{3, g_bytes + 612}}}),
|
405
|
+
grpc_core::StaticMetadata(
|
406
|
+
{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
407
|
+
{&grpc_static_metadata_refcounts[41], {{4, g_bytes + 615}}}),
|
408
|
+
grpc_core::StaticMetadata(
|
409
|
+
{&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
|
410
|
+
{&grpc_static_metadata_refcounts[42], {{1, g_bytes + 619}}}),
|
411
|
+
grpc_core::StaticMetadata(
|
412
|
+
{&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
|
413
|
+
{&grpc_static_metadata_refcounts[43], {{11, g_bytes + 620}}}),
|
414
|
+
grpc_core::StaticMetadata(
|
415
|
+
{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
416
|
+
{&grpc_static_metadata_refcounts[44], {{4, g_bytes + 631}}}),
|
417
|
+
grpc_core::StaticMetadata(
|
418
|
+
{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
419
|
+
{&grpc_static_metadata_refcounts[45], {{5, g_bytes + 635}}}),
|
420
|
+
grpc_core::StaticMetadata(
|
421
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
422
|
+
{&grpc_static_metadata_refcounts[46], {{3, g_bytes + 640}}}),
|
423
|
+
grpc_core::StaticMetadata(
|
424
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
425
|
+
{&grpc_static_metadata_refcounts[47], {{3, g_bytes + 643}}}),
|
426
|
+
grpc_core::StaticMetadata(
|
427
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
428
|
+
{&grpc_static_metadata_refcounts[48], {{3, g_bytes + 646}}}),
|
429
|
+
grpc_core::StaticMetadata(
|
430
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
431
|
+
{&grpc_static_metadata_refcounts[49], {{3, g_bytes + 649}}}),
|
432
|
+
grpc_core::StaticMetadata(
|
433
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
434
|
+
{&grpc_static_metadata_refcounts[50], {{3, g_bytes + 652}}}),
|
435
|
+
grpc_core::StaticMetadata(
|
436
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
437
|
+
{&grpc_static_metadata_refcounts[51], {{3, g_bytes + 655}}}),
|
438
|
+
grpc_core::StaticMetadata(
|
439
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
440
|
+
{&grpc_static_metadata_refcounts[52], {{3, g_bytes + 658}}}),
|
441
|
+
grpc_core::StaticMetadata(
|
442
|
+
{&grpc_static_metadata_refcounts[53], {{14, g_bytes + 661}}},
|
443
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
444
|
+
grpc_core::StaticMetadata(
|
445
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
446
|
+
{&grpc_static_metadata_refcounts[54], {{13, g_bytes + 675}}}),
|
447
|
+
grpc_core::StaticMetadata(
|
448
|
+
{&grpc_static_metadata_refcounts[55], {{15, g_bytes + 688}}},
|
449
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
450
|
+
grpc_core::StaticMetadata(
|
451
|
+
{&grpc_static_metadata_refcounts[56], {{13, g_bytes + 703}}},
|
452
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
453
|
+
grpc_core::StaticMetadata(
|
454
|
+
{&grpc_static_metadata_refcounts[57], {{6, g_bytes + 716}}},
|
455
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
456
|
+
grpc_core::StaticMetadata(
|
457
|
+
{&grpc_static_metadata_refcounts[58], {{27, g_bytes + 722}}},
|
458
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
459
|
+
grpc_core::StaticMetadata(
|
460
|
+
{&grpc_static_metadata_refcounts[59], {{3, g_bytes + 749}}},
|
461
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
462
|
+
grpc_core::StaticMetadata(
|
463
|
+
{&grpc_static_metadata_refcounts[60], {{5, g_bytes + 752}}},
|
464
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
465
|
+
grpc_core::StaticMetadata(
|
466
|
+
{&grpc_static_metadata_refcounts[61], {{13, g_bytes + 757}}},
|
467
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
468
|
+
grpc_core::StaticMetadata(
|
469
|
+
{&grpc_static_metadata_refcounts[62], {{13, g_bytes + 770}}},
|
470
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
471
|
+
grpc_core::StaticMetadata(
|
472
|
+
{&grpc_static_metadata_refcounts[63], {{19, g_bytes + 783}}},
|
473
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
474
|
+
grpc_core::StaticMetadata(
|
475
|
+
{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
476
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
477
|
+
grpc_core::StaticMetadata(
|
478
|
+
{&grpc_static_metadata_refcounts[64], {{16, g_bytes + 802}}},
|
479
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
480
|
+
grpc_core::StaticMetadata(
|
481
|
+
{&grpc_static_metadata_refcounts[65], {{14, g_bytes + 818}}},
|
482
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
483
|
+
grpc_core::StaticMetadata(
|
484
|
+
{&grpc_static_metadata_refcounts[66], {{16, g_bytes + 832}}},
|
485
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
486
|
+
grpc_core::StaticMetadata(
|
487
|
+
{&grpc_static_metadata_refcounts[67], {{13, g_bytes + 848}}},
|
488
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
489
|
+
grpc_core::StaticMetadata(
|
490
|
+
{&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
|
491
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
492
|
+
grpc_core::StaticMetadata(
|
493
|
+
{&grpc_static_metadata_refcounts[68], {{6, g_bytes + 861}}},
|
494
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
495
|
+
grpc_core::StaticMetadata(
|
496
|
+
{&grpc_static_metadata_refcounts[69], {{4, g_bytes + 867}}},
|
497
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
498
|
+
grpc_core::StaticMetadata(
|
499
|
+
{&grpc_static_metadata_refcounts[70], {{4, g_bytes + 871}}},
|
500
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
501
|
+
grpc_core::StaticMetadata(
|
502
|
+
{&grpc_static_metadata_refcounts[71], {{6, g_bytes + 875}}},
|
503
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
504
|
+
grpc_core::StaticMetadata(
|
505
|
+
{&grpc_static_metadata_refcounts[72], {{7, g_bytes + 881}}},
|
506
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
507
|
+
grpc_core::StaticMetadata(
|
508
|
+
{&grpc_static_metadata_refcounts[73], {{4, g_bytes + 888}}},
|
509
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
510
|
+
grpc_core::StaticMetadata(
|
511
|
+
{&grpc_static_metadata_refcounts[20], {{4, g_bytes + 278}}},
|
512
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
513
|
+
grpc_core::StaticMetadata(
|
514
|
+
{&grpc_static_metadata_refcounts[74], {{8, g_bytes + 892}}},
|
515
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
516
|
+
grpc_core::StaticMetadata(
|
517
|
+
{&grpc_static_metadata_refcounts[75], {{17, g_bytes + 900}}},
|
518
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
519
|
+
grpc_core::StaticMetadata(
|
520
|
+
{&grpc_static_metadata_refcounts[76], {{13, g_bytes + 917}}},
|
521
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
522
|
+
grpc_core::StaticMetadata(
|
523
|
+
{&grpc_static_metadata_refcounts[77], {{8, g_bytes + 930}}},
|
524
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
525
|
+
grpc_core::StaticMetadata(
|
526
|
+
{&grpc_static_metadata_refcounts[78], {{19, g_bytes + 938}}},
|
527
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
528
|
+
grpc_core::StaticMetadata(
|
529
|
+
{&grpc_static_metadata_refcounts[79], {{13, g_bytes + 957}}},
|
530
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
531
|
+
grpc_core::StaticMetadata(
|
532
|
+
{&grpc_static_metadata_refcounts[80], {{4, g_bytes + 970}}},
|
533
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
534
|
+
grpc_core::StaticMetadata(
|
535
|
+
{&grpc_static_metadata_refcounts[81], {{8, g_bytes + 974}}},
|
536
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
537
|
+
grpc_core::StaticMetadata(
|
538
|
+
{&grpc_static_metadata_refcounts[82], {{12, g_bytes + 982}}},
|
539
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
540
|
+
grpc_core::StaticMetadata(
|
541
|
+
{&grpc_static_metadata_refcounts[83], {{18, g_bytes + 994}}},
|
542
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
543
|
+
grpc_core::StaticMetadata(
|
544
|
+
{&grpc_static_metadata_refcounts[84], {{19, g_bytes + 1012}}},
|
545
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
546
|
+
grpc_core::StaticMetadata(
|
547
|
+
{&grpc_static_metadata_refcounts[85], {{5, g_bytes + 1031}}},
|
548
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
549
|
+
grpc_core::StaticMetadata(
|
550
|
+
{&grpc_static_metadata_refcounts[86], {{7, g_bytes + 1036}}},
|
551
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
552
|
+
grpc_core::StaticMetadata(
|
553
|
+
{&grpc_static_metadata_refcounts[87], {{7, g_bytes + 1043}}},
|
554
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
555
|
+
grpc_core::StaticMetadata(
|
556
|
+
{&grpc_static_metadata_refcounts[88], {{11, g_bytes + 1050}}},
|
557
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
558
|
+
grpc_core::StaticMetadata(
|
559
|
+
{&grpc_static_metadata_refcounts[89], {{6, g_bytes + 1061}}},
|
560
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
561
|
+
grpc_core::StaticMetadata(
|
562
|
+
{&grpc_static_metadata_refcounts[90], {{10, g_bytes + 1067}}},
|
563
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
564
|
+
grpc_core::StaticMetadata(
|
565
|
+
{&grpc_static_metadata_refcounts[91], {{25, g_bytes + 1077}}},
|
566
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
567
|
+
grpc_core::StaticMetadata(
|
568
|
+
{&grpc_static_metadata_refcounts[92], {{17, g_bytes + 1102}}},
|
569
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
570
|
+
grpc_core::StaticMetadata(
|
571
|
+
{&grpc_static_metadata_refcounts[19], {{10, g_bytes + 268}}},
|
572
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
573
|
+
grpc_core::StaticMetadata(
|
574
|
+
{&grpc_static_metadata_refcounts[93], {{4, g_bytes + 1119}}},
|
575
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
576
|
+
grpc_core::StaticMetadata(
|
577
|
+
{&grpc_static_metadata_refcounts[94], {{3, g_bytes + 1123}}},
|
578
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
579
|
+
grpc_core::StaticMetadata(
|
580
|
+
{&grpc_static_metadata_refcounts[95], {{16, g_bytes + 1126}}},
|
581
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
582
|
+
grpc_core::StaticMetadata(
|
583
|
+
{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
584
|
+
{&grpc_static_metadata_refcounts[96], {{1, g_bytes + 1142}}}),
|
585
|
+
grpc_core::StaticMetadata(
|
586
|
+
{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
587
|
+
{&grpc_static_metadata_refcounts[25], {{1, g_bytes + 350}}}),
|
588
|
+
grpc_core::StaticMetadata(
|
589
|
+
{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
590
|
+
{&grpc_static_metadata_refcounts[26], {{1, g_bytes + 351}}}),
|
591
|
+
grpc_core::StaticMetadata(
|
592
|
+
{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
593
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
|
594
|
+
grpc_core::StaticMetadata(
|
595
|
+
{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
596
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
|
597
|
+
grpc_core::StaticMetadata(
|
598
|
+
{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
599
|
+
{&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}}),
|
600
|
+
grpc_core::StaticMetadata(
|
601
|
+
{&grpc_static_metadata_refcounts[5], {{2, g_bytes + 36}}},
|
602
|
+
{&grpc_static_metadata_refcounts[98], {{8, g_bytes + 1151}}}),
|
603
|
+
grpc_core::StaticMetadata(
|
604
|
+
{&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
|
605
|
+
{&grpc_static_metadata_refcounts[99], {{16, g_bytes + 1159}}}),
|
606
|
+
grpc_core::StaticMetadata(
|
607
|
+
{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
608
|
+
{&grpc_static_metadata_refcounts[100], {{4, g_bytes + 1175}}}),
|
609
|
+
grpc_core::StaticMetadata(
|
610
|
+
{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
611
|
+
{&grpc_static_metadata_refcounts[101], {{3, g_bytes + 1179}}}),
|
612
|
+
grpc_core::StaticMetadata(
|
613
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
614
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
615
|
+
grpc_core::StaticMetadata(
|
616
|
+
{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
617
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
|
618
|
+
grpc_core::StaticMetadata(
|
619
|
+
{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
620
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
|
621
|
+
grpc_core::StaticMetadata(
|
622
|
+
{&grpc_static_metadata_refcounts[21], {{8, g_bytes + 282}}},
|
623
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
624
|
+
grpc_core::StaticMetadata(
|
625
|
+
{&grpc_static_metadata_refcounts[102], {{11, g_bytes + 1182}}},
|
626
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
|
627
|
+
grpc_core::StaticMetadata(
|
628
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
629
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
|
630
|
+
grpc_core::StaticMetadata(
|
631
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
632
|
+
{&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}}),
|
633
|
+
grpc_core::StaticMetadata(
|
634
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
635
|
+
{&grpc_static_metadata_refcounts[103], {{16, g_bytes + 1193}}}),
|
636
|
+
grpc_core::StaticMetadata(
|
637
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
638
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
|
639
|
+
grpc_core::StaticMetadata(
|
640
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
641
|
+
{&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}}),
|
642
|
+
grpc_core::StaticMetadata(
|
643
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
644
|
+
{&grpc_static_metadata_refcounts[105], {{12, g_bytes + 1222}}}),
|
645
|
+
grpc_core::StaticMetadata(
|
646
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
647
|
+
{&grpc_static_metadata_refcounts[106], {{21, g_bytes + 1234}}}),
|
648
|
+
grpc_core::StaticMetadata(
|
649
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
650
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
|
651
|
+
grpc_core::StaticMetadata(
|
652
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
653
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
|
654
|
+
grpc_core::StaticMetadata(
|
655
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
656
|
+
{&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}}),
|
579
657
|
};
|
580
658
|
const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
|
581
659
|
79, 80, 81, 82};
|