grpc 1.43.1 → 1.44.0.pre2
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 +84 -64
- data/include/grpc/grpc_security.h +10 -0
- data/include/grpc/impl/codegen/compression_types.h +0 -2
- data/include/grpc/impl/codegen/grpc_types.h +6 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +1 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +62 -68
- data/src/core/ext/filters/client_channel/client_channel.h +8 -8
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
- data/src/core/ext/filters/client_channel/config_selector.h +4 -4
- data/src/core/ext/filters/client_channel/dynamic_filters.h +1 -1
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +16 -14
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +3 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +31 -32
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +0 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +43 -29
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +120 -68
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +60 -48
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +62 -61
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +16 -11
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +11 -5
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +19 -15
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +14 -12
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +3 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +50 -105
- data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
- data/src/core/ext/filters/client_channel/lb_policy.h +19 -3
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +207 -81
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +22 -12
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +19 -15
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +23 -38
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +118 -207
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +25 -32
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +82 -73
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +10 -10
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +2 -5
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +157 -67
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +2 -2
- data/src/core/ext/filters/client_channel/retry_filter.cc +37 -64
- data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
- data/src/core/ext/filters/client_channel/retry_service_config.h +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +12 -16
- data/src/core/ext/filters/client_channel/subchannel.h +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +37 -48
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +6 -8
- data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +51 -122
- data/src/core/ext/filters/http/client_authority_filter.cc +8 -24
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +42 -140
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +5 -25
- data/src/core/ext/filters/http/server/http_server_filter.cc +50 -135
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.cc +157 -0
- data/src/core/ext/filters/rbac/rbac_filter.h +74 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +605 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +70 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +3 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +11 -6
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +1 -1
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +89 -29
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +45 -186
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +341 -279
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +69 -159
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +19 -32
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +94 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -24
- data/src/core/ext/transport/chttp2/transport/internal.h +0 -33
- data/src/core/ext/transport/chttp2/transport/parsing.cc +0 -6
- data/src/core/ext/transport/chttp2/transport/writing.cc +47 -116
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
- data/src/core/ext/transport/inproc/inproc_transport.cc +11 -63
- data/src/core/ext/transport/inproc/inproc_transport.h +0 -3
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +61 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +146 -0
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +188 -0
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c +58 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c +75 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h +55 -0
- data/src/core/ext/xds/upb_utils.h +65 -0
- data/src/core/ext/xds/xds_api.cc +81 -3458
- data/src/core/ext/xds/xds_api.h +56 -611
- data/src/core/ext/xds/xds_bootstrap.cc +189 -125
- data/src/core/ext/xds/xds_bootstrap.h +20 -15
- data/src/core/ext/xds/xds_certificate_provider.h +1 -0
- data/src/core/ext/xds/xds_channel_creds.cc +108 -0
- data/src/core/ext/xds/xds_channel_creds.h +50 -0
- data/src/core/ext/xds/xds_client.cc +584 -994
- data/src/core/ext/xds/xds_client.h +78 -135
- data/src/core/ext/xds/xds_cluster.cc +451 -0
- data/src/core/ext/xds/xds_cluster.h +111 -0
- data/src/core/ext/xds/xds_common_types.cc +388 -0
- data/src/core/ext/xds/xds_common_types.h +110 -0
- data/src/core/ext/xds/xds_endpoint.cc +364 -0
- data/src/core/ext/xds/xds_endpoint.h +135 -0
- data/src/core/ext/xds/xds_http_filters.cc +5 -0
- data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
- data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
- data/src/core/ext/xds/xds_listener.cc +1036 -0
- data/src/core/ext/xds/xds_listener.h +220 -0
- data/src/core/ext/{transport/chttp2/transport/hpack_utils.h → xds/xds_resource_type.cc} +12 -9
- data/src/core/ext/xds/xds_resource_type.h +98 -0
- data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
- data/src/core/ext/xds/xds_route_config.cc +993 -0
- data/src/core/ext/xds/xds_route_config.h +215 -0
- data/src/core/ext/xds/xds_routing.cc +11 -8
- data/src/core/ext/xds/xds_routing.h +8 -5
- data/src/core/ext/xds/xds_server_config_fetcher.cc +159 -99
- data/src/core/lib/address_utils/parse_address.cc +20 -0
- data/src/core/lib/address_utils/parse_address.h +5 -0
- data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
- data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
- data/src/core/lib/backoff/backoff.cc +4 -30
- data/src/core/lib/backoff/backoff.h +3 -3
- data/src/core/lib/channel/channel_args.cc +0 -1
- data/src/core/lib/channel/channel_stack.cc +8 -0
- data/src/core/lib/channel/channel_stack.h +1 -1
- data/src/core/lib/channel/channel_stack_builder.cc +5 -9
- data/src/core/lib/channel/channel_stack_builder.h +4 -7
- data/src/core/lib/channel/channelz.cc +1 -0
- data/src/core/lib/compression/compression.cc +19 -111
- data/src/core/lib/compression/compression_internal.cc +142 -202
- data/src/core/lib/compression/compression_internal.h +64 -69
- data/src/core/lib/compression/message_compress.cc +11 -11
- data/src/core/lib/compression/message_compress.h +2 -2
- data/src/core/lib/gpr/useful.h +4 -0
- data/src/core/lib/gprpp/bitset.h +7 -0
- data/src/core/lib/gprpp/chunked_vector.h +45 -3
- data/src/core/lib/gprpp/status_helper.cc +20 -28
- data/src/core/lib/gprpp/status_helper.h +6 -19
- data/src/core/lib/gprpp/table.h +11 -0
- data/src/core/lib/http/httpcli.cc +37 -46
- data/src/core/lib/http/httpcli.h +3 -15
- data/src/core/lib/iomgr/call_combiner.cc +15 -4
- data/src/core/lib/iomgr/closure.h +29 -9
- data/src/core/lib/iomgr/combiner.cc +25 -3
- data/src/core/lib/iomgr/error.cc +2 -0
- data/src/core/lib/iomgr/error.h +3 -0
- data/src/core/lib/iomgr/event_engine/iomgr.cc +3 -2
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
- data/src/core/lib/iomgr/event_engine/resolver.cc +66 -48
- data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
- data/src/core/lib/iomgr/exec_ctx.cc +22 -9
- data/src/core/lib/iomgr/executor.cc +10 -1
- data/src/core/lib/iomgr/fork_posix.cc +3 -2
- data/src/core/lib/iomgr/iomgr_custom.cc +4 -1
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
- data/src/core/lib/iomgr/iomgr_windows.cc +2 -2
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +5 -24
- data/src/core/lib/iomgr/resolve_address.h +47 -44
- data/src/core/lib/iomgr/resolve_address_custom.cc +131 -109
- data/src/core/lib/iomgr/resolve_address_custom.h +101 -19
- data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +82 -66
- data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +93 -74
- data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
- data/src/core/lib/iomgr/resolved_address.h +39 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +1 -0
- data/src/core/lib/iomgr/unix_sockets_posix.cc +22 -34
- data/src/core/lib/iomgr/unix_sockets_posix.h +4 -7
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
- data/src/core/lib/matchers/matchers.cc +1 -1
- data/src/core/lib/promise/activity.h +49 -20
- data/src/core/lib/promise/detail/status.h +5 -0
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +10 -5
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.cc +3 -2
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.h +4 -5
- data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
- data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +4 -4
- data/src/core/lib/resource_quota/api.h +0 -1
- data/src/core/lib/{gprpp → resource_quota}/arena.cc +16 -13
- data/src/core/lib/{gprpp → resource_quota}/arena.h +24 -13
- data/src/core/lib/security/authorization/evaluate_args.cc +30 -15
- data/src/core/lib/security/authorization/evaluate_args.h +1 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
- data/src/core/lib/security/authorization/matchers.cc +227 -0
- data/src/core/lib/security/authorization/matchers.h +211 -0
- data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
- data/src/core/lib/security/authorization/rbac_policy.h +170 -0
- data/src/core/lib/security/context/security_context.cc +4 -2
- data/src/core/lib/security/context/security_context.h +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +5 -5
- data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -3
- data/src/core/lib/security/credentials/credentials.h +10 -20
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +6 -9
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +7 -9
- data/src/core/lib/security/credentials/external/external_account_credentials.h +2 -7
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +2 -3
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +5 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -5
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +16 -19
- data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
- data/src/core/lib/security/credentials/jwt/json_token.cc +4 -6
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +16 -28
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +8 -8
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +6 -13
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +44 -57
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +13 -15
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -7
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +5 -4
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +6 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +7 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.h +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +0 -4
- data/src/core/lib/security/security_connector/security_connector.h +5 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +14 -24
- data/src/core/lib/security/security_connector/ssl_utils.h +5 -14
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +2 -3
- data/src/core/lib/security/transport/auth_filters.h +7 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +53 -33
- data/src/core/lib/security/transport/server_auth_filter.cc +40 -35
- data/src/core/{ext → lib}/service_config/service_config.cc +2 -2
- data/src/core/{ext → lib}/service_config/service_config.h +4 -4
- data/src/core/{ext → lib}/service_config/service_config_call_data.h +5 -5
- data/src/core/{ext → lib}/service_config/service_config_parser.cc +1 -1
- data/src/core/{ext → lib}/service_config/service_config_parser.h +3 -3
- data/src/core/lib/slice/slice.cc +3 -1
- data/src/core/lib/slice/slice.h +43 -13
- data/src/core/lib/slice/slice_intern.cc +3 -101
- data/src/core/lib/slice/slice_internal.h +1 -2
- data/src/core/lib/slice/slice_refcount.h +4 -13
- data/src/core/lib/slice/slice_refcount_base.h +0 -16
- data/src/core/lib/surface/call.cc +140 -382
- data/src/core/lib/surface/call.h +4 -4
- data/src/core/lib/surface/channel.cc +42 -44
- data/src/core/lib/surface/channel.h +4 -4
- data/src/core/lib/surface/init.cc +0 -2
- data/src/core/lib/surface/lame_client.cc +0 -1
- data/src/core/lib/surface/server.cc +12 -29
- data/src/core/lib/surface/server.h +2 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/error_utils.h +14 -0
- data/src/core/lib/transport/metadata_batch.h +799 -717
- data/src/core/lib/transport/parsed_metadata.cc +2 -0
- data/src/core/lib/transport/parsed_metadata.h +95 -92
- data/src/core/lib/transport/timeout_encoding.cc +200 -66
- data/src/core/lib/transport/timeout_encoding.h +40 -10
- data/src/core/lib/transport/transport.h +1 -1
- data/src/core/lib/transport/transport_op_string.cc +6 -39
- data/src/core/lib/uri/uri_parser.cc +223 -53
- data/src/core/lib/uri/uri_parser.h +36 -23
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -3
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +3 -5
- data/src/core/tsi/ssl_transport_security.cc +53 -13
- data/src/core/tsi/ssl_transport_security.h +18 -6
- data/src/ruby/ext/grpc/extconf.rb +10 -3
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -1
- data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
- data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
- data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
- data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
- data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
- data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
- data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
- data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
- data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
- data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
- data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
- data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
- data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
- data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
- data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
- data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
- data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
- data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
- data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
- data/third_party/abseil-cpp/absl/random/random.h +189 -0
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
- data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
- data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
- data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
- data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +13 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +29 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +13 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +9 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +23 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +4 -0
- data/third_party/xxhash/xxhash.h +607 -352
- metadata +149 -77
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +0 -107
- data/src/core/ext/transport/chttp2/transport/hpack_utils.cc +0 -46
- data/src/core/ext/transport/chttp2/transport/popularity_count.h +0 -60
- data/src/core/lib/compression/algorithm_metadata.h +0 -62
- data/src/core/lib/compression/compression_args.cc +0 -140
- data/src/core/lib/compression/compression_args.h +0 -58
- data/src/core/lib/compression/stream_compression.cc +0 -81
- data/src/core/lib/compression/stream_compression.h +0 -117
- data/src/core/lib/compression/stream_compression_gzip.cc +0 -231
- data/src/core/lib/compression/stream_compression_gzip.h +0 -28
- data/src/core/lib/compression/stream_compression_identity.cc +0 -91
- data/src/core/lib/compression/stream_compression_identity.h +0 -29
- data/src/core/lib/security/credentials/credentials_metadata.cc +0 -61
- data/src/core/lib/slice/static_slice.cc +0 -377
- data/src/core/lib/slice/static_slice.h +0 -300
- data/src/core/lib/transport/metadata.cc +0 -714
- data/src/core/lib/transport/metadata.h +0 -449
- data/src/core/lib/transport/metadata_batch.cc +0 -99
- data/src/core/lib/transport/static_metadata.cc +0 -1032
- data/src/core/lib/transport/static_metadata.h +0 -322
- data/src/core/lib/transport/status_metadata.cc +0 -63
- data/src/core/lib/transport/status_metadata.h +0 -48
@@ -27,6 +27,7 @@
|
|
27
27
|
#include "absl/strings/str_format.h"
|
28
28
|
|
29
29
|
#include <grpc/slice_buffer.h>
|
30
|
+
#include <grpc/status.h>
|
30
31
|
#include <grpc/support/alloc.h>
|
31
32
|
#include <grpc/support/log.h>
|
32
33
|
#include <grpc/support/string_util.h>
|
@@ -36,7 +37,6 @@
|
|
36
37
|
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
37
38
|
#include "src/core/ext/transport/chttp2/transport/varint.h"
|
38
39
|
#include "src/core/lib/channel/channel_args.h"
|
39
|
-
#include "src/core/lib/compression/stream_compression.h"
|
40
40
|
#include "src/core/lib/debug/stats.h"
|
41
41
|
#include "src/core/lib/gpr/env.h"
|
42
42
|
#include "src/core/lib/gpr/string.h"
|
@@ -52,7 +52,6 @@
|
|
52
52
|
#include "src/core/lib/slice/slice_string_helpers.h"
|
53
53
|
#include "src/core/lib/transport/error_utils.h"
|
54
54
|
#include "src/core/lib/transport/http2_errors.h"
|
55
|
-
#include "src/core/lib/transport/static_metadata.h"
|
56
55
|
#include "src/core/lib/transport/status_conversion.h"
|
57
56
|
#include "src/core/lib/transport/timeout_encoding.h"
|
58
57
|
#include "src/core/lib/transport/transport.h"
|
@@ -649,10 +648,6 @@ grpc_chttp2_stream::grpc_chttp2_stream(grpc_chttp2_transport* t,
|
|
649
648
|
: t(t),
|
650
649
|
refcount(refcount),
|
651
650
|
reffer(this),
|
652
|
-
stream_reservation(t->memory_owner.MakeReservation(
|
653
|
-
grpc_core::kResourceQuotaCallSize)), // TODO(ctiller): sizeof(*this),
|
654
|
-
// or better, move allocation to
|
655
|
-
// memory quota.
|
656
651
|
initial_metadata_buffer(arena),
|
657
652
|
trailing_metadata_buffer(arena) {
|
658
653
|
if (server_data) {
|
@@ -692,13 +687,6 @@ grpc_chttp2_stream::~grpc_chttp2_stream() {
|
|
692
687
|
|
693
688
|
grpc_slice_buffer_destroy_internal(&unprocessed_incoming_frames_buffer);
|
694
689
|
grpc_slice_buffer_destroy_internal(&frame_storage);
|
695
|
-
if (stream_compression_method != GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS) {
|
696
|
-
grpc_slice_buffer_destroy_internal(&compressed_data_buffer);
|
697
|
-
}
|
698
|
-
if (stream_decompression_method !=
|
699
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
700
|
-
grpc_slice_buffer_destroy_internal(&decompressed_data_buffer);
|
701
|
-
}
|
702
690
|
|
703
691
|
for (int i = 0; i < STREAM_LIST_COUNT; i++) {
|
704
692
|
if (GPR_UNLIKELY(included[i])) {
|
@@ -743,18 +731,6 @@ static void destroy_stream(grpc_transport* gt, grpc_stream* gs,
|
|
743
731
|
GPR_TIMER_SCOPE("destroy_stream", 0);
|
744
732
|
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
745
733
|
grpc_chttp2_stream* s = reinterpret_cast<grpc_chttp2_stream*>(gs);
|
746
|
-
if (s->stream_compression_method !=
|
747
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS &&
|
748
|
-
s->stream_compression_ctx != nullptr) {
|
749
|
-
grpc_stream_compression_context_destroy(s->stream_compression_ctx);
|
750
|
-
s->stream_compression_ctx = nullptr;
|
751
|
-
}
|
752
|
-
if (s->stream_decompression_method !=
|
753
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS &&
|
754
|
-
s->stream_decompression_ctx != nullptr) {
|
755
|
-
grpc_stream_compression_context_destroy(s->stream_decompression_ctx);
|
756
|
-
s->stream_decompression_ctx = nullptr;
|
757
|
-
}
|
758
734
|
|
759
735
|
s->destroy_stream_arg = then_schedule_closure;
|
760
736
|
t->combiner->Run(
|
@@ -1219,37 +1195,49 @@ void grpc_chttp2_complete_closure_step(grpc_chttp2_transport* t,
|
|
1219
1195
|
write_state_name(t->write_state));
|
1220
1196
|
}
|
1221
1197
|
if (error != GRPC_ERROR_NONE) {
|
1222
|
-
|
1223
|
-
|
1198
|
+
#ifdef GRPC_ERROR_IS_ABSEIL_STATUS
|
1199
|
+
grpc_error_handle cl_err =
|
1200
|
+
grpc_core::internal::StatusMoveFromHeapPtr(closure->error_data.error);
|
1201
|
+
#else
|
1202
|
+
grpc_error_handle cl_err =
|
1203
|
+
reinterpret_cast<grpc_error_handle>(closure->error_data.error);
|
1204
|
+
#endif
|
1205
|
+
if (cl_err == GRPC_ERROR_NONE) {
|
1206
|
+
cl_err = GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1224
1207
|
"Error in HTTP transport completing operation");
|
1225
|
-
|
1226
|
-
|
1227
|
-
GRPC_ERROR_STR_TARGET_ADDRESS, t->peer_string);
|
1208
|
+
cl_err = grpc_error_set_str(cl_err, GRPC_ERROR_STR_TARGET_ADDRESS,
|
1209
|
+
t->peer_string);
|
1228
1210
|
}
|
1229
|
-
|
1230
|
-
|
1211
|
+
cl_err = grpc_error_add_child(cl_err, error);
|
1212
|
+
#ifdef GRPC_ERROR_IS_ABSEIL_STATUS
|
1213
|
+
closure->error_data.error = grpc_core::internal::StatusAllocHeapPtr(cl_err);
|
1214
|
+
#else
|
1215
|
+
closure->error_data.error = reinterpret_cast<intptr_t>(cl_err);
|
1216
|
+
#endif
|
1231
1217
|
}
|
1232
1218
|
if (closure->next_data.scratch < CLOSURE_BARRIER_FIRST_REF_BIT) {
|
1233
1219
|
if ((t->write_state == GRPC_CHTTP2_WRITE_STATE_IDLE) ||
|
1234
1220
|
!(closure->next_data.scratch & CLOSURE_BARRIER_MAY_COVER_WRITE)) {
|
1235
1221
|
// Using GRPC_CLOSURE_SCHED instead of GRPC_CLOSURE_RUN to avoid running
|
1236
1222
|
// closures earlier than when it is safe to do so.
|
1237
|
-
|
1238
|
-
|
1223
|
+
#ifdef GRPC_ERROR_IS_ABSEIL_STATUS
|
1224
|
+
grpc_error_handle run_error =
|
1225
|
+
grpc_core::internal::StatusMoveFromHeapPtr(closure->error_data.error);
|
1226
|
+
#else
|
1227
|
+
grpc_error_handle run_error =
|
1228
|
+
reinterpret_cast<grpc_error_handle>(closure->error_data.error);
|
1229
|
+
#endif
|
1230
|
+
closure->error_data.error = 0;
|
1231
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, closure, run_error);
|
1239
1232
|
} else {
|
1240
|
-
grpc_closure_list_append(&t->run_after_write, closure
|
1241
|
-
closure->error_data.error);
|
1233
|
+
grpc_closure_list_append(&t->run_after_write, closure);
|
1242
1234
|
}
|
1243
1235
|
}
|
1244
1236
|
}
|
1245
1237
|
|
1246
1238
|
static bool contains_non_ok_status(grpc_metadata_batch* batch) {
|
1247
|
-
|
1248
|
-
|
1249
|
-
batch->legacy_index()->named.grpc_status->md,
|
1250
|
-
GRPC_MDELEM_GRPC_STATUS_0);
|
1251
|
-
}
|
1252
|
-
return false;
|
1239
|
+
return batch->get(grpc_core::GrpcStatusMetadata()).value_or(GRPC_STATUS_OK) !=
|
1240
|
+
GRPC_STATUS_OK;
|
1253
1241
|
}
|
1254
1242
|
|
1255
1243
|
static void maybe_become_writable_due_to_send_msg(grpc_chttp2_transport* t,
|
@@ -1342,13 +1330,10 @@ static void complete_fetch_locked(void* gs, grpc_error_handle error) {
|
|
1342
1330
|
|
1343
1331
|
static void log_metadata(const grpc_metadata_batch* md_batch, uint32_t id,
|
1344
1332
|
bool is_client, bool is_initial) {
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
gpr_log(GPR_INFO, "
|
1349
|
-
is_client ? "CLI" : "SVR", key, value);
|
1350
|
-
gpr_free(key);
|
1351
|
-
gpr_free(value);
|
1333
|
+
const std::string prefix = absl::StrCat(
|
1334
|
+
"HTTP:", id, is_initial ? ":HDR" : ":TRL", is_client ? ":CLI:" : ":SVR:");
|
1335
|
+
md_batch->Log([&prefix](absl::string_view key, absl::string_view value) {
|
1336
|
+
gpr_log(GPR_INFO, "%s", absl::StrCat(prefix, key, ": ", value).c_str());
|
1352
1337
|
});
|
1353
1338
|
}
|
1354
1339
|
|
@@ -1386,7 +1371,7 @@ static void perform_stream_op_locked(void* stream_op,
|
|
1386
1371
|
// This batch has send ops. Use final_data as a barrier until enqueue time;
|
1387
1372
|
// the initial counter is dropped at the end of this function.
|
1388
1373
|
on_complete->next_data.scratch = CLOSURE_BARRIER_FIRST_REF_BIT;
|
1389
|
-
on_complete->error_data.error =
|
1374
|
+
on_complete->error_data.error = 0;
|
1390
1375
|
}
|
1391
1376
|
|
1392
1377
|
if (op->cancel_stream) {
|
@@ -1402,23 +1387,6 @@ static void perform_stream_op_locked(void* stream_op,
|
|
1402
1387
|
GPR_ASSERT(s->send_initial_metadata_finished == nullptr);
|
1403
1388
|
on_complete->next_data.scratch |= CLOSURE_BARRIER_MAY_COVER_WRITE;
|
1404
1389
|
|
1405
|
-
// Identify stream compression
|
1406
|
-
if (op_payload->send_initial_metadata.send_initial_metadata->legacy_index()
|
1407
|
-
->named.content_encoding == nullptr ||
|
1408
|
-
grpc_stream_compression_method_parse(
|
1409
|
-
GRPC_MDVALUE(
|
1410
|
-
op_payload->send_initial_metadata.send_initial_metadata
|
1411
|
-
->legacy_index()
|
1412
|
-
->named.content_encoding->md),
|
1413
|
-
true, &s->stream_compression_method) == 0) {
|
1414
|
-
s->stream_compression_method = GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS;
|
1415
|
-
}
|
1416
|
-
if (s->stream_compression_method !=
|
1417
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS) {
|
1418
|
-
s->uncompressed_data_size = 0;
|
1419
|
-
s->stream_compression_ctx = nullptr;
|
1420
|
-
grpc_slice_buffer_init(&s->compressed_data_buffer);
|
1421
|
-
}
|
1422
1390
|
s->send_initial_metadata_finished = add_closure_barrier(on_complete);
|
1423
1391
|
s->send_initial_metadata =
|
1424
1392
|
op_payload->send_initial_metadata.send_initial_metadata;
|
@@ -1874,48 +1842,10 @@ void grpc_chttp2_maybe_complete_recv_message(grpc_chttp2_transport* /*t*/,
|
|
1874
1842
|
if (s->unprocessed_incoming_frames_buffer.length == 0) {
|
1875
1843
|
grpc_slice_buffer_swap(&s->unprocessed_incoming_frames_buffer,
|
1876
1844
|
&s->frame_storage);
|
1877
|
-
s->unprocessed_incoming_frames_decompressed = false;
|
1878
|
-
}
|
1879
|
-
if (!s->unprocessed_incoming_frames_decompressed &&
|
1880
|
-
s->stream_decompression_method !=
|
1881
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
1882
|
-
GPR_ASSERT(s->decompressed_data_buffer.length == 0);
|
1883
|
-
bool end_of_context;
|
1884
|
-
if (!s->stream_decompression_ctx) {
|
1885
|
-
s->stream_decompression_ctx =
|
1886
|
-
grpc_stream_compression_context_create(
|
1887
|
-
s->stream_decompression_method);
|
1888
|
-
}
|
1889
|
-
if (!grpc_stream_decompress(
|
1890
|
-
s->stream_decompression_ctx,
|
1891
|
-
&s->unprocessed_incoming_frames_buffer,
|
1892
|
-
&s->decompressed_data_buffer, nullptr,
|
1893
|
-
GRPC_HEADER_SIZE_IN_BYTES - s->decompressed_header_bytes,
|
1894
|
-
&end_of_context)) {
|
1895
|
-
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1896
|
-
grpc_slice_buffer_reset_and_unref_internal(
|
1897
|
-
&s->unprocessed_incoming_frames_buffer);
|
1898
|
-
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1899
|
-
"Stream decompression error.");
|
1900
|
-
} else {
|
1901
|
-
s->decompressed_header_bytes += s->decompressed_data_buffer.length;
|
1902
|
-
if (s->decompressed_header_bytes == GRPC_HEADER_SIZE_IN_BYTES) {
|
1903
|
-
s->decompressed_header_bytes = 0;
|
1904
|
-
}
|
1905
|
-
error = grpc_deframe_unprocessed_incoming_frames(
|
1906
|
-
&s->data_parser, s, &s->decompressed_data_buffer, nullptr,
|
1907
|
-
s->recv_message);
|
1908
|
-
if (end_of_context) {
|
1909
|
-
grpc_stream_compression_context_destroy(
|
1910
|
-
s->stream_decompression_ctx);
|
1911
|
-
s->stream_decompression_ctx = nullptr;
|
1912
|
-
}
|
1913
|
-
}
|
1914
|
-
} else {
|
1915
|
-
error = grpc_deframe_unprocessed_incoming_frames(
|
1916
|
-
&s->data_parser, s, &s->unprocessed_incoming_frames_buffer,
|
1917
|
-
nullptr, s->recv_message);
|
1918
1845
|
}
|
1846
|
+
error = grpc_deframe_unprocessed_incoming_frames(
|
1847
|
+
&s->data_parser, s, &s->unprocessed_incoming_frames_buffer, nullptr,
|
1848
|
+
s->recv_message);
|
1919
1849
|
if (error != GRPC_ERROR_NONE) {
|
1920
1850
|
s->seen_error = true;
|
1921
1851
|
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
@@ -1963,42 +1893,12 @@ void grpc_chttp2_maybe_complete_recv_trailing_metadata(grpc_chttp2_transport* t,
|
|
1963
1893
|
!s->seen_error && s->recv_trailing_metadata_finished != nullptr) {
|
1964
1894
|
// Maybe some SYNC_FLUSH data is left in frame_storage. Consume them and
|
1965
1895
|
// maybe decompress the next 5 bytes in the stream.
|
1966
|
-
|
1967
|
-
|
1968
|
-
|
1969
|
-
|
1970
|
-
|
1971
|
-
|
1972
|
-
&s->unprocessed_incoming_frames_buffer);
|
1973
|
-
if (s->unprocessed_incoming_frames_buffer.length > 0) {
|
1974
|
-
s->unprocessed_incoming_frames_decompressed = true;
|
1975
|
-
pending_data = true;
|
1976
|
-
}
|
1977
|
-
} else {
|
1978
|
-
bool end_of_context;
|
1979
|
-
if (!s->stream_decompression_ctx) {
|
1980
|
-
s->stream_decompression_ctx = grpc_stream_compression_context_create(
|
1981
|
-
s->stream_decompression_method);
|
1982
|
-
}
|
1983
|
-
if (!grpc_stream_decompress(
|
1984
|
-
s->stream_decompression_ctx, &s->frame_storage,
|
1985
|
-
&s->unprocessed_incoming_frames_buffer, nullptr,
|
1986
|
-
GRPC_HEADER_SIZE_IN_BYTES, &end_of_context)) {
|
1987
|
-
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1988
|
-
grpc_slice_buffer_reset_and_unref_internal(
|
1989
|
-
&s->unprocessed_incoming_frames_buffer);
|
1990
|
-
s->seen_error = true;
|
1991
|
-
} else {
|
1992
|
-
if (s->unprocessed_incoming_frames_buffer.length > 0) {
|
1993
|
-
s->unprocessed_incoming_frames_decompressed = true;
|
1994
|
-
pending_data = true;
|
1995
|
-
}
|
1996
|
-
if (end_of_context) {
|
1997
|
-
grpc_stream_compression_context_destroy(
|
1998
|
-
s->stream_decompression_ctx);
|
1999
|
-
s->stream_decompression_ctx = nullptr;
|
2000
|
-
}
|
2001
|
-
}
|
1896
|
+
grpc_slice_buffer_move_first(
|
1897
|
+
&s->frame_storage,
|
1898
|
+
std::min(s->frame_storage.length, size_t(GRPC_HEADER_SIZE_IN_BYTES)),
|
1899
|
+
&s->unprocessed_incoming_frames_buffer);
|
1900
|
+
if (s->unprocessed_incoming_frames_buffer.length > 0) {
|
1901
|
+
pending_data = true;
|
2002
1902
|
}
|
2003
1903
|
}
|
2004
1904
|
if (s->read_closed && s->frame_storage.length == 0 && !pending_data &&
|
@@ -2095,12 +1995,7 @@ void grpc_chttp2_fake_status(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
|
2095
1995
|
// about the metadata yet
|
2096
1996
|
if (s->published_metadata[1] == GRPC_METADATA_NOT_PUBLISHED ||
|
2097
1997
|
s->recv_trailing_metadata_finished != nullptr) {
|
2098
|
-
|
2099
|
-
gpr_ltoa(status, status_string);
|
2100
|
-
GRPC_LOG_IF_ERROR("add_status",
|
2101
|
-
s->trailing_metadata_buffer.ReplaceOrAppend(
|
2102
|
-
GRPC_MDSTR_GRPC_STATUS,
|
2103
|
-
grpc_core::UnmanagedMemorySlice(status_string)));
|
1998
|
+
s->trailing_metadata_buffer.Set(grpc_core::GrpcStatusMetadata(), status);
|
2104
1999
|
if (!message.empty()) {
|
2105
2000
|
s->trailing_metadata_buffer.Set(
|
2106
2001
|
grpc_core::GrpcMessageMetadata(),
|
@@ -2989,7 +2884,6 @@ void Chttp2IncomingByteStream::NextLocked(void* arg,
|
|
2989
2884
|
if (s->frame_storage.length > 0) {
|
2990
2885
|
grpc_slice_buffer_swap(&s->frame_storage,
|
2991
2886
|
&s->unprocessed_incoming_frames_buffer);
|
2992
|
-
s->unprocessed_incoming_frames_decompressed = false;
|
2993
2887
|
ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete, GRPC_ERROR_NONE);
|
2994
2888
|
} else if (s->byte_stream_error != GRPC_ERROR_NONE) {
|
2995
2889
|
ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete,
|
@@ -3035,45 +2929,10 @@ bool Chttp2IncomingByteStream::Next(size_t max_size_hint,
|
|
3035
2929
|
}
|
3036
2930
|
}
|
3037
2931
|
|
3038
|
-
void Chttp2IncomingByteStream::MaybeCreateStreamDecompressionCtx() {
|
3039
|
-
GPR_DEBUG_ASSERT(stream_->stream_decompression_method !=
|
3040
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS);
|
3041
|
-
if (!stream_->stream_decompression_ctx) {
|
3042
|
-
stream_->stream_decompression_ctx = grpc_stream_compression_context_create(
|
3043
|
-
stream_->stream_decompression_method);
|
3044
|
-
}
|
3045
|
-
}
|
3046
|
-
|
3047
2932
|
grpc_error_handle Chttp2IncomingByteStream::Pull(grpc_slice* slice) {
|
3048
2933
|
GPR_TIMER_SCOPE("incoming_byte_stream_pull", 0);
|
3049
2934
|
grpc_error_handle error;
|
3050
2935
|
if (stream_->unprocessed_incoming_frames_buffer.length > 0) {
|
3051
|
-
if (!stream_->unprocessed_incoming_frames_decompressed &&
|
3052
|
-
stream_->stream_decompression_method !=
|
3053
|
-
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
3054
|
-
bool end_of_context;
|
3055
|
-
MaybeCreateStreamDecompressionCtx();
|
3056
|
-
if (!grpc_stream_decompress(stream_->stream_decompression_ctx,
|
3057
|
-
&stream_->unprocessed_incoming_frames_buffer,
|
3058
|
-
&stream_->decompressed_data_buffer, nullptr,
|
3059
|
-
MAX_SIZE_T, &end_of_context)) {
|
3060
|
-
error =
|
3061
|
-
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Stream decompression error.");
|
3062
|
-
return error;
|
3063
|
-
}
|
3064
|
-
GPR_ASSERT(stream_->unprocessed_incoming_frames_buffer.length == 0);
|
3065
|
-
grpc_slice_buffer_swap(&stream_->unprocessed_incoming_frames_buffer,
|
3066
|
-
&stream_->decompressed_data_buffer);
|
3067
|
-
stream_->unprocessed_incoming_frames_decompressed = true;
|
3068
|
-
if (end_of_context) {
|
3069
|
-
grpc_stream_compression_context_destroy(
|
3070
|
-
stream_->stream_decompression_ctx);
|
3071
|
-
stream_->stream_decompression_ctx = nullptr;
|
3072
|
-
}
|
3073
|
-
if (stream_->unprocessed_incoming_frames_buffer.length == 0) {
|
3074
|
-
*slice = grpc_empty_slice();
|
3075
|
-
}
|
3076
|
-
}
|
3077
2936
|
error = grpc_deframe_unprocessed_incoming_frames(
|
3078
2937
|
&stream_->data_parser, stream_,
|
3079
2938
|
&stream_->unprocessed_incoming_frames_buffer, slice, nullptr);
|
@@ -290,7 +290,6 @@ grpc_error_handle grpc_chttp2_data_parser_parse(void* /*parser*/,
|
|
290
290
|
grpc_slice_buffer_add(&s->unprocessed_incoming_frames_buffer, slice);
|
291
291
|
grpc_core::ExecCtx::Run(DEBUG_LOCATION, s->on_next, GRPC_ERROR_NONE);
|
292
292
|
s->on_next = nullptr;
|
293
|
-
s->unprocessed_incoming_frames_decompressed = false;
|
294
293
|
} else {
|
295
294
|
grpc_slice_ref_internal(slice);
|
296
295
|
grpc_slice_buffer_add(&s->frame_storage, slice);
|