grpc 1.30.2
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 +7 -0
- data/.yardopts +1 -0
- data/Makefile +20074 -0
- data/etc/roots.pem +4644 -0
- data/include/grpc/byte_buffer.h +27 -0
- data/include/grpc/byte_buffer_reader.h +26 -0
- data/include/grpc/census.h +40 -0
- data/include/grpc/compression.h +75 -0
- data/include/grpc/fork.h +26 -0
- data/include/grpc/grpc.h +540 -0
- data/include/grpc/grpc_cronet.h +38 -0
- data/include/grpc/grpc_posix.h +59 -0
- data/include/grpc/grpc_security.h +1019 -0
- data/include/grpc/grpc_security_constants.h +146 -0
- data/include/grpc/impl/codegen/atm.h +95 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +91 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +85 -0
- data/include/grpc/impl/codegen/atm_windows.h +128 -0
- data/include/grpc/impl/codegen/byte_buffer.h +101 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +42 -0
- data/include/grpc/impl/codegen/compression_types.h +108 -0
- data/include/grpc/impl/codegen/connectivity_state.h +44 -0
- data/include/grpc/impl/codegen/fork.h +48 -0
- data/include/grpc/impl/codegen/gpr_slice.h +69 -0
- data/include/grpc/impl/codegen/gpr_types.h +59 -0
- data/include/grpc/impl/codegen/grpc_types.h +785 -0
- data/include/grpc/impl/codegen/log.h +112 -0
- data/include/grpc/impl/codegen/port_platform.h +720 -0
- data/include/grpc/impl/codegen/propagation_bits.h +52 -0
- data/include/grpc/impl/codegen/slice.h +127 -0
- data/include/grpc/impl/codegen/status.h +154 -0
- data/include/grpc/impl/codegen/sync.h +65 -0
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/impl/codegen/sync_custom.h +38 -0
- data/include/grpc/impl/codegen/sync_generic.h +48 -0
- data/include/grpc/impl/codegen/sync_posix.h +52 -0
- data/include/grpc/impl/codegen/sync_windows.h +36 -0
- data/include/grpc/load_reporting.h +48 -0
- data/include/grpc/module.modulemap +64 -0
- data/include/grpc/slice.h +172 -0
- data/include/grpc/slice_buffer.h +84 -0
- data/include/grpc/status.h +26 -0
- data/include/grpc/support/alloc.h +52 -0
- data/include/grpc/support/atm.h +26 -0
- data/include/grpc/support/atm_gcc_atomic.h +26 -0
- data/include/grpc/support/atm_gcc_sync.h +26 -0
- data/include/grpc/support/atm_windows.h +26 -0
- data/include/grpc/support/cpu.h +44 -0
- data/include/grpc/support/log.h +26 -0
- data/include/grpc/support/log_windows.h +38 -0
- data/include/grpc/support/port_platform.h +24 -0
- data/include/grpc/support/string_util.h +51 -0
- data/include/grpc/support/sync.h +282 -0
- data/include/grpc/support/sync_abseil.h +26 -0
- data/include/grpc/support/sync_custom.h +26 -0
- data/include/grpc/support/sync_generic.h +26 -0
- data/include/grpc/support/sync_posix.h +26 -0
- data/include/grpc/support/sync_windows.h +26 -0
- data/include/grpc/support/thd_id.h +44 -0
- data/include/grpc/support/time.h +92 -0
- data/include/grpc/support/workaround_list.h +31 -0
- data/src/core/ext/filters/census/grpc_context.cc +38 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +81 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +36 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +181 -0
- data/src/core/ext/filters/client_channel/backup_poller.h +41 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +264 -0
- data/src/core/ext/filters/client_channel/client_channel.cc +4059 -0
- data/src/core/ext/filters/client_channel/client_channel.h +82 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +95 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +78 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +55 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +47 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +70 -0
- data/src/core/ext/filters/client_channel/connector.h +79 -0
- 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 +606 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.h +175 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +389 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +34 -0
- data/src/core/ext/filters/client_channel/http_proxy.cc +216 -0
- data/src/core/ext/filters/client_channel/http_proxy.h +28 -0
- data/src/core/ext/filters/client_channel/lb_policy.cc +138 -0
- data/src/core/ext/filters/client_channel/lb_policy.h +421 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +297 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +157 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +29 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1754 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +43 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +45 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +121 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +91 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +75 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +193 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +74 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +509 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +504 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +448 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +417 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +32 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +47 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +182 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +65 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +96 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +57 -0
- data/src/core/ext/filters/client_channel/parse_address.cc +238 -0
- data/src/core/ext/filters/client_channel/parse_address.h +53 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +54 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +89 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +50 -0
- data/src/core/ext/filters/client_channel/resolver.cc +85 -0
- data/src/core/ext/filters/client_channel/resolver.h +144 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +535 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +484 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +104 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +177 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +107 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +897 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +819 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +97 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +68 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +38 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +34 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +28 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +318 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +383 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +93 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +188 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +184 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +73 -0
- data/src/core/ext/filters/client_channel/resolver_registry.cc +197 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +89 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +443 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +127 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +348 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +123 -0
- data/src/core/ext/filters/client_channel/retry_throttle.cc +191 -0
- data/src/core/ext/filters/client_channel/retry_throttle.h +77 -0
- data/src/core/ext/filters/client_channel/server_address.cc +48 -0
- data/src/core/ext/filters/client_channel/server_address.h +90 -0
- data/src/core/ext/filters/client_channel/service_config.cc +221 -0
- data/src/core/ext/filters/client_channel/service_config.h +123 -0
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +1127 -0
- data/src/core/ext/filters/client_channel/subchannel.h +427 -0
- data/src/core/ext/filters/client_channel/subchannel_interface.h +94 -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 +91 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +1906 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.h +280 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +342 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +88 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +46 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +26 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +106 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +2367 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.h +309 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +115 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +211 -0
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +440 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +386 -0
- data/src/core/ext/filters/deadline/deadline_filter.h +90 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +596 -0
- data/src/core/ext/filters/http/client/http_client_filter.h +31 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +159 -0
- data/src/core/ext/filters/http/client_authority_filter.h +34 -0
- data/src/core/ext/filters/http/http_filters_plugin.cc +104 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +546 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.h +53 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +528 -0
- data/src/core/ext/filters/http/server/http_server_filter.h +29 -0
- data/src/core/ext/filters/max_age/max_age_filter.cc +556 -0
- data/src/core/ext/filters/max_age/max_age_filter.h +26 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +423 -0
- data/src/core/ext/filters/message_size/message_size_filter.h +59 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +210 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +27 -0
- data/src/core/ext/filters/workarounds/workaround_utils.cc +53 -0
- data/src/core/ext/filters/workarounds/workaround_utils.h +39 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +44 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +36 -0
- data/src/core/ext/transport/chttp2/client/authority.cc +42 -0
- data/src/core/ext/transport/chttp2/client/authority.h +36 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +206 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +58 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +112 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +79 -0
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +225 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +451 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +33 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +45 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +75 -0
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +250 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +56 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +230 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +42 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +37 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +3346 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +52 -0
- data/src/core/ext/transport/chttp2/transport/context_list.cc +69 -0
- data/src/core/ext/transport/chttp2/transport/context_list.h +53 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +408 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +474 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +47 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +307 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.h +82 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +187 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +62 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +133 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +122 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +50 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +242 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +60 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +123 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +44 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +900 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +107 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1761 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +117 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +246 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +148 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +62 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +61 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +92 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +32 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +66 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +58 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +864 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +803 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +216 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +177 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.h +67 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +56 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +60 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +706 -0
- data/src/core/ext/transport/inproc/inproc_plugin.cc +28 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +1296 -0
- data/src/core/ext/transport/inproc/inproc_transport.h +35 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +21 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +403 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1447 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +218 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +69 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +305 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +328 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +313 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +897 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +96 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +322 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +642 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +172 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +673 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +80 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +152 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +518 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +129 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +392 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +92 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +266 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +324 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +109 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +399 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +145 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +30 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +815 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +3032 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +228 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +316 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1132 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +24 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +50 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.h +36 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +144 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +39 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +87 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +50 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +89 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +17 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +18 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +66 -0
- data/src/core/ext/upb-generated/google/api/http.upb.h +190 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +486 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1696 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +22 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +50 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +79 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +215 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +106 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +238 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +33 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +74 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +49 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +126 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +212 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +693 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +42 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +109 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +36 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +84 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +141 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +393 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +58 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +144 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +448 -0
- data/src/core/ext/upb-generated/validate/validate.upb.h +2073 -0
- data/src/core/lib/avl/avl.cc +306 -0
- data/src/core/lib/avl/avl.h +94 -0
- data/src/core/lib/backoff/backoff.cc +78 -0
- data/src/core/lib/backoff/backoff.h +89 -0
- data/src/core/lib/channel/channel_args.cc +380 -0
- data/src/core/lib/channel/channel_args.h +135 -0
- data/src/core/lib/channel/channel_stack.cc +252 -0
- data/src/core/lib/channel/channel_stack.h +304 -0
- data/src/core/lib/channel/channel_stack_builder.cc +323 -0
- data/src/core/lib/channel/channel_stack_builder.h +166 -0
- data/src/core/lib/channel/channel_trace.cc +194 -0
- data/src/core/lib/channel/channel_trace.h +134 -0
- data/src/core/lib/channel/channelz.cc +543 -0
- data/src/core/lib/channel/channelz.h +334 -0
- data/src/core/lib/channel/channelz_registry.cc +267 -0
- data/src/core/lib/channel/channelz_registry.h +97 -0
- data/src/core/lib/channel/connected_channel.cc +246 -0
- data/src/core/lib/channel/connected_channel.h +34 -0
- data/src/core/lib/channel/context.h +49 -0
- data/src/core/lib/channel/handshaker.cc +262 -0
- data/src/core/lib/channel/handshaker.h +179 -0
- data/src/core/lib/channel/handshaker_factory.h +42 -0
- data/src/core/lib/channel/handshaker_registry.cc +105 -0
- data/src/core/lib/channel/handshaker_registry.h +54 -0
- data/src/core/lib/channel/status_util.cc +99 -0
- data/src/core/lib/channel/status_util.h +58 -0
- data/src/core/lib/compression/algorithm_metadata.h +61 -0
- data/src/core/lib/compression/compression.cc +179 -0
- data/src/core/lib/compression/compression_args.cc +134 -0
- data/src/core/lib/compression/compression_args.h +56 -0
- data/src/core/lib/compression/compression_internal.cc +280 -0
- data/src/core/lib/compression/compression_internal.h +96 -0
- data/src/core/lib/compression/message_compress.cc +192 -0
- data/src/core/lib/compression/message_compress.h +40 -0
- data/src/core/lib/compression/stream_compression.cc +80 -0
- data/src/core/lib/compression/stream_compression.h +116 -0
- data/src/core/lib/compression/stream_compression_gzip.cc +230 -0
- data/src/core/lib/compression/stream_compression_gzip.h +28 -0
- data/src/core/lib/compression/stream_compression_identity.cc +92 -0
- data/src/core/lib/compression/stream_compression_identity.h +29 -0
- data/src/core/lib/debug/stats.cc +172 -0
- data/src/core/lib/debug/stats.h +70 -0
- data/src/core/lib/debug/stats_data.cc +687 -0
- data/src/core/lib/debug/stats_data.h +555 -0
- data/src/core/lib/debug/trace.cc +154 -0
- data/src/core/lib/debug/trace.h +131 -0
- data/src/core/lib/gpr/alloc.cc +74 -0
- data/src/core/lib/gpr/alloc.h +28 -0
- data/src/core/lib/gpr/arena.h +47 -0
- data/src/core/lib/gpr/atm.cc +35 -0
- data/src/core/lib/gpr/cpu_iphone.cc +36 -0
- data/src/core/lib/gpr/cpu_linux.cc +82 -0
- data/src/core/lib/gpr/cpu_posix.cc +83 -0
- data/src/core/lib/gpr/cpu_windows.cc +33 -0
- data/src/core/lib/gpr/env.h +40 -0
- data/src/core/lib/gpr/env_linux.cc +76 -0
- data/src/core/lib/gpr/env_posix.cc +47 -0
- data/src/core/lib/gpr/env_windows.cc +74 -0
- data/src/core/lib/gpr/log.cc +98 -0
- data/src/core/lib/gpr/log_android.cc +76 -0
- data/src/core/lib/gpr/log_linux.cc +97 -0
- data/src/core/lib/gpr/log_posix.cc +95 -0
- data/src/core/lib/gpr/log_windows.cc +102 -0
- data/src/core/lib/gpr/murmur_hash.cc +80 -0
- data/src/core/lib/gpr/murmur_hash.h +29 -0
- data/src/core/lib/gpr/spinlock.h +45 -0
- data/src/core/lib/gpr/string.cc +341 -0
- data/src/core/lib/gpr/string.h +111 -0
- data/src/core/lib/gpr/string_posix.cc +72 -0
- data/src/core/lib/gpr/string_util_windows.cc +82 -0
- data/src/core/lib/gpr/string_windows.cc +69 -0
- data/src/core/lib/gpr/string_windows.h +32 -0
- data/src/core/lib/gpr/sync.cc +124 -0
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +176 -0
- data/src/core/lib/gpr/sync_windows.cc +120 -0
- data/src/core/lib/gpr/time.cc +263 -0
- data/src/core/lib/gpr/time_posix.cc +186 -0
- data/src/core/lib/gpr/time_precise.cc +165 -0
- data/src/core/lib/gpr/time_precise.h +66 -0
- data/src/core/lib/gpr/time_windows.cc +98 -0
- data/src/core/lib/gpr/tls.h +68 -0
- data/src/core/lib/gpr/tls_gcc.h +52 -0
- data/src/core/lib/gpr/tls_msvc.h +52 -0
- data/src/core/lib/gpr/tls_pthread.cc +30 -0
- data/src/core/lib/gpr/tls_pthread.h +56 -0
- data/src/core/lib/gpr/tmpfile.h +32 -0
- data/src/core/lib/gpr/tmpfile_msys.cc +58 -0
- data/src/core/lib/gpr/tmpfile_posix.cc +70 -0
- data/src/core/lib/gpr/tmpfile_windows.cc +69 -0
- data/src/core/lib/gpr/useful.h +65 -0
- data/src/core/lib/gpr/wrap_memcpy.cc +42 -0
- data/src/core/lib/gprpp/arena.cc +103 -0
- data/src/core/lib/gprpp/arena.h +120 -0
- data/src/core/lib/gprpp/atomic.h +104 -0
- data/src/core/lib/gprpp/debug_location.h +53 -0
- data/src/core/lib/gprpp/fork.cc +242 -0
- data/src/core/lib/gprpp/fork.h +103 -0
- 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/host_port.cc +112 -0
- data/src/core/lib/gprpp/host_port.h +56 -0
- data/src/core/lib/gprpp/manual_constructor.h +213 -0
- data/src/core/lib/gprpp/map.h +53 -0
- data/src/core/lib/gprpp/memory.h +51 -0
- data/src/core/lib/gprpp/mpscq.cc +108 -0
- data/src/core/lib/gprpp/mpscq.h +98 -0
- data/src/core/lib/gprpp/orphanable.h +129 -0
- data/src/core/lib/gprpp/ref_counted.h +312 -0
- data/src/core/lib/gprpp/ref_counted_ptr.h +192 -0
- data/src/core/lib/gprpp/sync.h +135 -0
- data/src/core/lib/gprpp/thd.h +174 -0
- data/src/core/lib/gprpp/thd_posix.cc +204 -0
- data/src/core/lib/gprpp/thd_windows.cc +176 -0
- data/src/core/lib/http/format_request.cc +103 -0
- data/src/core/lib/http/format_request.h +34 -0
- data/src/core/lib/http/httpcli.cc +303 -0
- data/src/core/lib/http/httpcli.h +126 -0
- data/src/core/lib/http/httpcli_security_connector.cc +214 -0
- data/src/core/lib/http/parser.cc +372 -0
- data/src/core/lib/http/parser.h +113 -0
- data/src/core/lib/iomgr/block_annotate.h +57 -0
- data/src/core/lib/iomgr/buffer_list.cc +308 -0
- data/src/core/lib/iomgr/buffer_list.h +165 -0
- data/src/core/lib/iomgr/call_combiner.cc +256 -0
- data/src/core/lib/iomgr/call_combiner.h +217 -0
- data/src/core/lib/iomgr/cfstream_handle.cc +209 -0
- data/src/core/lib/iomgr/cfstream_handle.h +90 -0
- data/src/core/lib/iomgr/closure.h +255 -0
- data/src/core/lib/iomgr/combiner.cc +339 -0
- data/src/core/lib/iomgr/combiner.h +88 -0
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/dynamic_annotations.h +67 -0
- data/src/core/lib/iomgr/endpoint.cc +67 -0
- data/src/core/lib/iomgr/endpoint.h +106 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +376 -0
- data/src/core/lib/iomgr/endpoint_cfstream.h +49 -0
- data/src/core/lib/iomgr/endpoint_pair.h +33 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +73 -0
- data/src/core/lib/iomgr/endpoint_pair_uv.cc +40 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +87 -0
- data/src/core/lib/iomgr/error.cc +812 -0
- data/src/core/lib/iomgr/error.h +276 -0
- 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 +61 -0
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +1365 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.h +31 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +1656 -0
- data/src/core/lib/iomgr/ev_epollex_linux.h +30 -0
- data/src/core/lib/iomgr/ev_poll_posix.cc +1427 -0
- data/src/core/lib/iomgr/ev_poll_posix.h +29 -0
- data/src/core/lib/iomgr/ev_posix.cc +417 -0
- data/src/core/lib/iomgr/ev_posix.h +207 -0
- data/src/core/lib/iomgr/ev_windows.cc +30 -0
- data/src/core/lib/iomgr/exec_ctx.cc +224 -0
- data/src/core/lib/iomgr/exec_ctx.h +380 -0
- data/src/core/lib/iomgr/executor.cc +469 -0
- data/src/core/lib/iomgr/executor.h +122 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +183 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +175 -0
- data/src/core/lib/iomgr/executor/threadpool.cc +137 -0
- data/src/core/lib/iomgr/executor/threadpool.h +149 -0
- data/src/core/lib/iomgr/fork_posix.cc +119 -0
- data/src/core/lib/iomgr/fork_windows.cc +41 -0
- data/src/core/lib/iomgr/gethostname.h +26 -0
- data/src/core/lib/iomgr/gethostname_fallback.cc +30 -0
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +40 -0
- data/src/core/lib/iomgr/gethostname_sysconf.cc +40 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +30 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +42 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +38 -0
- data/src/core/lib/iomgr/internal_errqueue.cc +67 -0
- data/src/core/lib/iomgr/internal_errqueue.h +191 -0
- data/src/core/lib/iomgr/iocp_windows.cc +157 -0
- data/src/core/lib/iomgr/iocp_windows.h +48 -0
- data/src/core/lib/iomgr/iomgr.cc +194 -0
- data/src/core/lib/iomgr/iomgr.h +60 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +79 -0
- data/src/core/lib/iomgr/iomgr_custom.h +49 -0
- data/src/core/lib/iomgr/iomgr_internal.cc +57 -0
- data/src/core/lib/iomgr/iomgr_internal.h +73 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +89 -0
- data/src/core/lib/iomgr/iomgr_posix.h +26 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +171 -0
- data/src/core/lib/iomgr/iomgr_uv.cc +43 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +106 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +105 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.h +36 -0
- data/src/core/lib/iomgr/load_file.cc +81 -0
- data/src/core/lib/iomgr/load_file.h +35 -0
- data/src/core/lib/iomgr/lockfree_event.cc +255 -0
- data/src/core/lib/iomgr/lockfree_event.h +72 -0
- data/src/core/lib/iomgr/nameser.h +106 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
- data/src/core/lib/iomgr/polling_entity.cc +96 -0
- data/src/core/lib/iomgr/polling_entity.h +68 -0
- data/src/core/lib/iomgr/pollset.cc +56 -0
- data/src/core/lib/iomgr/pollset.h +99 -0
- data/src/core/lib/iomgr/pollset_custom.cc +106 -0
- data/src/core/lib/iomgr/pollset_custom.h +35 -0
- data/src/core/lib/iomgr/pollset_set.cc +55 -0
- data/src/core/lib/iomgr/pollset_set.h +55 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +48 -0
- data/src/core/lib/iomgr/pollset_set_custom.h +26 -0
- data/src/core/lib/iomgr/pollset_set_windows.cc +51 -0
- data/src/core/lib/iomgr/pollset_set_windows.h +26 -0
- data/src/core/lib/iomgr/pollset_uv.cc +93 -0
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/pollset_windows.cc +243 -0
- data/src/core/lib/iomgr/pollset_windows.h +70 -0
- data/src/core/lib/iomgr/port.h +244 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.cc +50 -0
- data/src/core/lib/iomgr/resolve_address.h +81 -0
- data/src/core/lib/iomgr/resolve_address_custom.cc +173 -0
- data/src/core/lib/iomgr/resolve_address_custom.h +45 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +178 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +154 -0
- data/src/core/lib/iomgr/resource_quota.cc +1013 -0
- data/src/core/lib/iomgr/resource_quota.h +177 -0
- data/src/core/lib/iomgr/sockaddr.h +32 -0
- data/src/core/lib/iomgr/sockaddr_custom.h +54 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +55 -0
- data/src/core/lib/iomgr/sockaddr_utils.cc +293 -0
- data/src/core/lib/iomgr/sockaddr_utils.h +79 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +55 -0
- data/src/core/lib/iomgr/socket_factory_posix.cc +94 -0
- data/src/core/lib/iomgr/socket_factory_posix.h +68 -0
- data/src/core/lib/iomgr/socket_mutator.cc +83 -0
- data/src/core/lib/iomgr/socket_mutator.h +60 -0
- data/src/core/lib/iomgr/socket_utils.h +47 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +473 -0
- data/src/core/lib/iomgr/socket_utils_linux.cc +42 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +58 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +163 -0
- data/src/core/lib/iomgr/socket_utils_uv.cc +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.cc +47 -0
- data/src/core/lib/iomgr/socket_windows.cc +203 -0
- data/src/core/lib/iomgr/socket_windows.h +127 -0
- data/src/core/lib/iomgr/sys_epoll_wrapper.h +30 -0
- data/src/core/lib/iomgr/tcp_client.cc +36 -0
- data/src/core/lib/iomgr/tcp_client.h +52 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +215 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +163 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +360 -0
- data/src/core/lib/iomgr/tcp_client_posix.h +68 -0
- data/src/core/lib/iomgr/tcp_client_windows.cc +232 -0
- data/src/core/lib/iomgr/tcp_custom.cc +370 -0
- data/src/core/lib/iomgr/tcp_custom.h +84 -0
- data/src/core/lib/iomgr/tcp_posix.cc +1855 -0
- data/src/core/lib/iomgr/tcp_posix.h +60 -0
- data/src/core/lib/iomgr/tcp_server.cc +78 -0
- data/src/core/lib/iomgr/tcp_server.h +143 -0
- data/src/core/lib/iomgr/tcp_server_custom.cc +485 -0
- data/src/core/lib/iomgr/tcp_server_posix.cc +638 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +125 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +223 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +181 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +36 -0
- data/src/core/lib/iomgr/tcp_server_windows.cc +564 -0
- data/src/core/lib/iomgr/tcp_uv.cc +419 -0
- data/src/core/lib/iomgr/tcp_windows.cc +533 -0
- data/src/core/lib/iomgr/tcp_windows.h +53 -0
- data/src/core/lib/iomgr/time_averaged_stats.cc +64 -0
- data/src/core/lib/iomgr/time_averaged_stats.h +72 -0
- data/src/core/lib/iomgr/timer.cc +45 -0
- data/src/core/lib/iomgr/timer.h +127 -0
- data/src/core/lib/iomgr/timer_custom.cc +95 -0
- data/src/core/lib/iomgr/timer_custom.h +43 -0
- data/src/core/lib/iomgr/timer_generic.cc +747 -0
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.cc +135 -0
- data/src/core/lib/iomgr/timer_heap.h +43 -0
- data/src/core/lib/iomgr/timer_manager.cc +363 -0
- data/src/core/lib/iomgr/timer_manager.h +41 -0
- data/src/core/lib/iomgr/timer_uv.cc +66 -0
- data/src/core/lib/iomgr/udp_server.cc +747 -0
- data/src/core/lib/iomgr/udp_server.h +101 -0
- data/src/core/lib/iomgr/unix_sockets_posix.cc +104 -0
- data/src/core/lib/iomgr/unix_sockets_posix.h +43 -0
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +49 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +82 -0
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +38 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +100 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +28 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +69 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +96 -0
- data/src/core/lib/iomgr/work_serializer.cc +155 -0
- data/src/core/lib/iomgr/work_serializer.h +65 -0
- data/src/core/lib/json/json.h +240 -0
- data/src/core/lib/json/json_reader.cc +855 -0
- data/src/core/lib/json/json_writer.cc +337 -0
- data/src/core/lib/profiling/basic_timers.cc +293 -0
- data/src/core/lib/profiling/stap_timers.cc +50 -0
- data/src/core/lib/profiling/timers.h +94 -0
- data/src/core/lib/security/context/security_context.cc +321 -0
- data/src/core/lib/security/context/security_context.h +150 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +110 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.h +109 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +72 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +57 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +68 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +33 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +102 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +127 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +46 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +75 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +59 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +229 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +106 -0
- data/src/core/lib/security/credentials/credentials.cc +162 -0
- data/src/core/lib/security/credentials/credentials.h +283 -0
- data/src/core/lib/security/credentials/credentials_metadata.cc +62 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +112 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +87 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +41 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +383 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +87 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +80 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.h +49 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +288 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +75 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +172 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +80 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +925 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +122 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +64 -0
- data/src/core/lib/security/credentials/local/local_credentials.h +61 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +771 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +171 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +269 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +72 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +364 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +99 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +245 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +313 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +128 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.h +62 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +301 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +76 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +324 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +45 -0
- data/src/core/lib/security/security_connector/load_system_roots.h +29 -0
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +32 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +171 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +44 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +281 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.h +59 -0
- data/src/core/lib/security/security_connector/security_connector.cc +129 -0
- data/src/core/lib/security/security_connector/security_connector.h +176 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +439 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +77 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +563 -0
- data/src/core/lib/security/security_connector/ssl_utils.h +184 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +32 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.h +30 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +603 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +183 -0
- data/src/core/lib/security/transport/auth_filters.h +35 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +466 -0
- data/src/core/lib/security/transport/secure_endpoint.cc +446 -0
- data/src/core/lib/security/transport/secure_endpoint.h +41 -0
- data/src/core/lib/security/transport/security_handshaker.cc +574 -0
- data/src/core/lib/security/transport/security_handshaker.h +45 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +326 -0
- data/src/core/lib/security/transport/target_authority_table.cc +75 -0
- data/src/core/lib/security/transport/target_authority_table.h +40 -0
- data/src/core/lib/security/transport/tsi_error.cc +29 -0
- data/src/core/lib/security/transport/tsi_error.h +29 -0
- data/src/core/lib/security/util/json_util.cc +73 -0
- data/src/core/lib/security/util/json_util.h +44 -0
- data/src/core/lib/slice/b64.cc +239 -0
- data/src/core/lib/slice/b64.h +50 -0
- data/src/core/lib/slice/percent_encoding.cc +169 -0
- data/src/core/lib/slice/percent_encoding.h +65 -0
- data/src/core/lib/slice/slice.cc +559 -0
- data/src/core/lib/slice/slice_buffer.cc +413 -0
- data/src/core/lib/slice/slice_hash_table.h +199 -0
- data/src/core/lib/slice/slice_intern.cc +375 -0
- data/src/core/lib/slice/slice_internal.h +364 -0
- data/src/core/lib/slice/slice_string_helpers.cc +127 -0
- data/src/core/lib/slice/slice_string_helpers.h +49 -0
- data/src/core/lib/slice/slice_utils.h +200 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +102 -0
- data/src/core/lib/surface/api_trace.cc +24 -0
- data/src/core/lib/surface/api_trace.h +52 -0
- data/src/core/lib/surface/byte_buffer.cc +92 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +101 -0
- data/src/core/lib/surface/call.cc +2044 -0
- data/src/core/lib/surface/call.h +125 -0
- data/src/core/lib/surface/call_details.cc +41 -0
- data/src/core/lib/surface/call_log_batch.cc +111 -0
- data/src/core/lib/surface/call_test_only.h +43 -0
- data/src/core/lib/surface/channel.cc +543 -0
- data/src/core/lib/surface/channel.h +158 -0
- data/src/core/lib/surface/channel_init.cc +109 -0
- data/src/core/lib/surface/channel_init.h +78 -0
- data/src/core/lib/surface/channel_ping.cc +64 -0
- data/src/core/lib/surface/channel_stack_type.cc +58 -0
- data/src/core/lib/surface/channel_stack_type.h +47 -0
- data/src/core/lib/surface/completion_queue.cc +1438 -0
- data/src/core/lib/surface/completion_queue.h +97 -0
- data/src/core/lib/surface/completion_queue_factory.cc +88 -0
- data/src/core/lib/surface/completion_queue_factory.h +38 -0
- data/src/core/lib/surface/event_string.cc +61 -0
- data/src/core/lib/surface/event_string.h +31 -0
- data/src/core/lib/surface/init.cc +250 -0
- data/src/core/lib/surface/init.h +27 -0
- data/src/core/lib/surface/init_secure.cc +81 -0
- data/src/core/lib/surface/lame_client.cc +191 -0
- data/src/core/lib/surface/lame_client.h +28 -0
- data/src/core/lib/surface/metadata_array.cc +36 -0
- data/src/core/lib/surface/server.cc +1800 -0
- data/src/core/lib/surface/server.h +99 -0
- data/src/core/lib/surface/validate_metadata.cc +105 -0
- data/src/core/lib/surface/validate_metadata.h +41 -0
- data/src/core/lib/surface/version.cc +28 -0
- data/src/core/lib/transport/bdp_estimator.cc +87 -0
- data/src/core/lib/transport/bdp_estimator.h +94 -0
- data/src/core/lib/transport/byte_stream.cc +158 -0
- data/src/core/lib/transport/byte_stream.h +165 -0
- data/src/core/lib/transport/connectivity_state.cc +180 -0
- data/src/core/lib/transport/connectivity_state.h +131 -0
- data/src/core/lib/transport/error_utils.cc +141 -0
- data/src/core/lib/transport/error_utils.h +46 -0
- data/src/core/lib/transport/http2_errors.h +41 -0
- data/src/core/lib/transport/metadata.cc +679 -0
- data/src/core/lib/transport/metadata.h +446 -0
- data/src/core/lib/transport/metadata_batch.cc +392 -0
- data/src/core/lib/transport/metadata_batch.h +191 -0
- data/src/core/lib/transport/pid_controller.cc +51 -0
- data/src/core/lib/transport/pid_controller.h +116 -0
- data/src/core/lib/transport/static_metadata.cc +1230 -0
- data/src/core/lib/transport/static_metadata.h +597 -0
- data/src/core/lib/transport/status_conversion.cc +92 -0
- data/src/core/lib/transport/status_conversion.h +38 -0
- data/src/core/lib/transport/status_metadata.cc +61 -0
- data/src/core/lib/transport/status_metadata.h +48 -0
- data/src/core/lib/transport/timeout_encoding.cc +151 -0
- data/src/core/lib/transport/timeout_encoding.h +38 -0
- data/src/core/lib/transport/transport.cc +259 -0
- data/src/core/lib/transport/transport.h +456 -0
- data/src/core/lib/transport/transport_impl.h +71 -0
- data/src/core/lib/transport/transport_op_string.cc +169 -0
- data/src/core/lib/uri/uri_parser.cc +314 -0
- data/src/core/lib/uri/uri_parser.h +49 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +121 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +687 -0
- data/src/core/tsi/alts/crypt/gsec.cc +189 -0
- data/src/core/tsi/alts/crypt/gsec.h +454 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +118 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.h +98 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +66 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +255 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +407 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +55 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +114 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +114 -0
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +105 -0
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +103 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +218 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.h +236 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +899 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +161 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +83 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +73 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +674 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +104 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +88 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +64 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +53 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +223 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +171 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +226 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +54 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +144 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +49 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +91 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +174 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +99 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +476 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +199 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +307 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +57 -0
- data/src/core/tsi/fake_transport_security.cc +789 -0
- data/src/core/tsi/fake_transport_security.h +47 -0
- data/src/core/tsi/local_transport_security.cc +211 -0
- data/src/core/tsi/local_transport_security.h +51 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +71 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +57 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +214 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +90 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +75 -0
- data/src/core/tsi/ssl_transport_security.cc +2124 -0
- data/src/core/tsi/ssl_transport_security.h +353 -0
- data/src/core/tsi/ssl_types.h +42 -0
- data/src/core/tsi/transport_security.cc +370 -0
- data/src/core/tsi/transport_security.h +127 -0
- data/src/core/tsi/transport_security_grpc.cc +73 -0
- data/src/core/tsi/transport_security_grpc.h +79 -0
- data/src/core/tsi/transport_security_interface.h +476 -0
- data/src/ruby/bin/math_client.rb +140 -0
- data/src/ruby/bin/math_pb.rb +34 -0
- data/src/ruby/bin/math_server.rb +191 -0
- data/src/ruby/bin/math_services_pb.rb +51 -0
- data/src/ruby/bin/noproto_client.rb +93 -0
- data/src/ruby/bin/noproto_server.rb +97 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +6 -0
- data/src/ruby/ext/grpc/extconf.rb +107 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +64 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +35 -0
- data/src/ruby/ext/grpc/rb_call.c +1050 -0
- data/src/ruby/ext/grpc/rb_call.h +53 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +297 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +31 -0
- data/src/ruby/ext/grpc/rb_channel.c +835 -0
- data/src/ruby/ext/grpc/rb_channel.h +34 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +155 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +38 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +267 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +32 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +100 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +36 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +470 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +29 -0
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +143 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +21 -0
- data/src/ruby/ext/grpc/rb_grpc.c +328 -0
- data/src/ruby/ext/grpc/rb_grpc.h +76 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +573 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +865 -0
- data/src/ruby/ext/grpc/rb_loader.c +57 -0
- data/src/ruby/ext/grpc/rb_loader.h +25 -0
- data/src/ruby/ext/grpc/rb_server.c +372 -0
- data/src/ruby/ext/grpc/rb_server.h +32 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +243 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +32 -0
- data/src/ruby/lib/grpc.rb +37 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +56 -0
- data/src/ruby/lib/grpc/errors.rb +277 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +669 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +233 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +501 -0
- data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
- data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +204 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +551 -0
- data/src/ruby/lib/grpc/generic/service.rb +211 -0
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +40 -0
- data/src/ruby/lib/grpc/grpc.rb +24 -0
- data/src/ruby/lib/grpc/logconfig.rb +44 -0
- data/src/ruby/lib/grpc/notifier.rb +45 -0
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +18 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +51 -0
- data/src/ruby/pb/grpc/health/checker.rb +75 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +31 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +62 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +44 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +49 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +17 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +105 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +16 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +118 -0
- data/src/ruby/spec/call_credentials_spec.rb +42 -0
- data/src/ruby/spec/call_spec.rb +180 -0
- data/src/ruby/spec/channel_connection_spec.rb +126 -0
- data/src/ruby/spec/channel_credentials_spec.rb +82 -0
- data/src/ruby/spec/channel_spec.rb +234 -0
- data/src/ruby/spec/client_auth_spec.rb +126 -0
- data/src/ruby/spec/client_server_spec.rb +664 -0
- data/src/ruby/spec/compression_options_spec.rb +149 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/error_sanity_spec.rb +49 -0
- data/src/ruby/spec/errors_spec.rb +142 -0
- data/src/ruby/spec/generic/active_call_spec.rb +672 -0
- data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +1083 -0
- data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +374 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +127 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +748 -0
- data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
- data/src/ruby/spec/generic/service_spec.rb +263 -0
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +282 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +41 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +82 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +57 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +236 -0
- data/src/ruby/spec/server_credentials_spec.rb +79 -0
- data/src/ruby/spec/server_spec.rb +209 -0
- data/src/ruby/spec/spec_helper.rb +61 -0
- data/src/ruby/spec/support/helpers.rb +107 -0
- data/src/ruby/spec/support/services.rb +160 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +20 -0
- data/src/ruby/spec/testdata/client.key +28 -0
- data/src/ruby/spec/testdata/client.pem +20 -0
- data/src/ruby/spec/testdata/server1.key +28 -0
- data/src/ruby/spec/testdata/server1.pem +22 -0
- data/src/ruby/spec/time_consts_spec.rb +74 -0
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
- data/third_party/abseil-cpp/absl/base/attributes.h +621 -0
- data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
- data/third_party/abseil-cpp/absl/base/casts.h +184 -0
- data/third_party/abseil-cpp/absl/base/config.h +671 -0
- data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
- data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
- data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
- data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
- data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
- data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +240 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +183 -0
- data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +66 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +416 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +152 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +259 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
- data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +140 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
- data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
- data/third_party/abseil-cpp/absl/base/macros.h +220 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
- data/third_party/abseil-cpp/absl/base/options.h +211 -0
- data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
- data/third_party/abseil-cpp/absl/base/port.h +26 -0
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
- data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
- data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
- data/third_party/abseil-cpp/absl/strings/ascii.h +242 -0
- data/third_party/abseil-cpp/absl/strings/charconv.cc +984 -0
- data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
- data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +423 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
- data/third_party/abseil-cpp/absl/strings/match.h +90 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +965 -0
- data/third_party/abseil-cpp/absl/strings/numbers.h +266 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
- data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
- data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
- data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +622 -0
- data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
- data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
- data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
- data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
- data/third_party/abseil-cpp/absl/types/optional.h +776 -0
- data/third_party/abseil-cpp/absl/types/span.h +713 -0
- data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
- data/third_party/address_sorting/address_sorting.c +375 -0
- data/third_party/address_sorting/address_sorting_internal.h +70 -0
- data/third_party/address_sorting/address_sorting_posix.c +97 -0
- data/third_party/address_sorting/address_sorting_windows.c +95 -0
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +113 -0
- data/third_party/boringssl-with-bazel/err_data.c +1439 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +313 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +212 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +303 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +446 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +105 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +97 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +1244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +664 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +387 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +280 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +466 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +700 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +330 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +545 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +192 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +488 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +115 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +470 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +265 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +719 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +184 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +143 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c +447 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +283 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +891 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +418 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +462 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +491 -0
- data/third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +810 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.h +201 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +291 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +2159 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +7872 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/check.c +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +533 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c +160 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/params.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +980 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +339 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +574 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +124 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +99 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c +231 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +443 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +388 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +484 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +273 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +648 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +248 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +489 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +213 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +263 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +445 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +886 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +1288 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +711 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +694 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +186 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1068 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +364 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +284 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +620 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +1302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_des.c +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +785 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +296 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +268 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1252 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +465 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +775 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +1178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9497 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +632 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.h +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +175 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +357 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +29 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +256 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +301 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +167 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +729 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +441 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +391 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +695 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +898 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +1358 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +654 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +361 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +343 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +165 -0
- data/third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +2100 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +348 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +549 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +11585 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +360 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +777 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +530 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +856 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +82 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +431 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +653 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +458 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +275 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +83 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +125 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +157 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +381 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +326 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +2487 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +671 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +389 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +399 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +368 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +334 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +189 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +207 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +72 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +629 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +463 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +503 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +148 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +246 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +288 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +154 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +229 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +843 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +274 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1395 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +459 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +195 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +121 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +911 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +892 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +575 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +190 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +933 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1057 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +137 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +561 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +41 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +638 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +91 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +180 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +212 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +149 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +201 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +177 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +319 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +331 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +457 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +424 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +372 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +118 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +205 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +465 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1050 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +203 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +64 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +186 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +100 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +282 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +175 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +4259 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +236 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +67 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +435 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +215 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +269 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +49 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +102 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +111 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +818 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +294 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +37 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +199 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +5198 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +333 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +542 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +191 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +632 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +681 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +831 -0
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +179 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +837 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +268 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +273 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +232 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +200 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +353 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +675 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +703 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1890 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1805 -0
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +3572 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +724 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +221 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +458 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +432 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +856 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +306 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +1019 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +1718 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +585 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +397 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +3015 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +835 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +1333 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +230 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +277 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +394 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +1358 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +365 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +3870 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +689 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1017 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +513 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1096 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +317 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +703 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +981 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +619 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3147 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1226 -0
- data/third_party/cares/ares_build.h +223 -0
- data/third_party/cares/cares/ares.h +670 -0
- data/third_party/cares/cares/ares__close_sockets.c +61 -0
- data/third_party/cares/cares/ares__get_hostent.c +261 -0
- data/third_party/cares/cares/ares__read_line.c +73 -0
- data/third_party/cares/cares/ares__timeval.c +111 -0
- data/third_party/cares/cares/ares_cancel.c +63 -0
- data/third_party/cares/cares/ares_create_query.c +206 -0
- data/third_party/cares/cares/ares_data.c +222 -0
- data/third_party/cares/cares/ares_data.h +72 -0
- data/third_party/cares/cares/ares_destroy.c +113 -0
- data/third_party/cares/cares/ares_dns.h +103 -0
- data/third_party/cares/cares/ares_expand_name.c +209 -0
- data/third_party/cares/cares/ares_expand_string.c +70 -0
- data/third_party/cares/cares/ares_fds.c +59 -0
- data/third_party/cares/cares/ares_free_hostent.c +41 -0
- data/third_party/cares/cares/ares_free_string.c +25 -0
- data/third_party/cares/cares/ares_getenv.c +30 -0
- data/third_party/cares/cares/ares_getenv.h +26 -0
- data/third_party/cares/cares/ares_gethostbyaddr.c +294 -0
- data/third_party/cares/cares/ares_gethostbyname.c +529 -0
- data/third_party/cares/cares/ares_getnameinfo.c +453 -0
- data/third_party/cares/cares/ares_getopt.c +122 -0
- data/third_party/cares/cares/ares_getopt.h +53 -0
- data/third_party/cares/cares/ares_getsock.c +66 -0
- data/third_party/cares/cares/ares_inet_net_pton.h +25 -0
- data/third_party/cares/cares/ares_init.c +2615 -0
- data/third_party/cares/cares/ares_iphlpapi.h +221 -0
- data/third_party/cares/cares/ares_ipv6.h +78 -0
- data/third_party/cares/cares/ares_library_init.c +195 -0
- data/third_party/cares/cares/ares_library_init.h +43 -0
- data/third_party/cares/cares/ares_llist.c +63 -0
- data/third_party/cares/cares/ares_llist.h +39 -0
- data/third_party/cares/cares/ares_mkquery.c +24 -0
- data/third_party/cares/cares/ares_nowarn.c +260 -0
- data/third_party/cares/cares/ares_nowarn.h +61 -0
- data/third_party/cares/cares/ares_options.c +406 -0
- data/third_party/cares/cares/ares_parse_a_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_mx_reply.c +170 -0
- data/third_party/cares/cares/ares_parse_naptr_reply.c +194 -0
- data/third_party/cares/cares/ares_parse_ns_reply.c +183 -0
- data/third_party/cares/cares/ares_parse_ptr_reply.c +221 -0
- data/third_party/cares/cares/ares_parse_soa_reply.c +133 -0
- data/third_party/cares/cares/ares_parse_srv_reply.c +179 -0
- data/third_party/cares/cares/ares_parse_txt_reply.c +220 -0
- data/third_party/cares/cares/ares_platform.c +11042 -0
- data/third_party/cares/cares/ares_platform.h +43 -0
- data/third_party/cares/cares/ares_private.h +382 -0
- data/third_party/cares/cares/ares_process.c +1473 -0
- data/third_party/cares/cares/ares_query.c +186 -0
- data/third_party/cares/cares/ares_rules.h +125 -0
- data/third_party/cares/cares/ares_search.c +323 -0
- data/third_party/cares/cares/ares_send.c +137 -0
- data/third_party/cares/cares/ares_setup.h +217 -0
- data/third_party/cares/cares/ares_strcasecmp.c +66 -0
- data/third_party/cares/cares/ares_strcasecmp.h +30 -0
- data/third_party/cares/cares/ares_strdup.c +49 -0
- data/third_party/cares/cares/ares_strdup.h +24 -0
- data/third_party/cares/cares/ares_strerror.c +56 -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_timeout.c +88 -0
- data/third_party/cares/cares/ares_version.c +11 -0
- data/third_party/cares/cares/ares_version.h +24 -0
- data/third_party/cares/cares/ares_writev.c +79 -0
- data/third_party/cares/cares/bitncmp.c +59 -0
- data/third_party/cares/cares/bitncmp.h +26 -0
- data/third_party/cares/cares/config-win32.h +351 -0
- data/third_party/cares/cares/inet_net_pton.c +450 -0
- data/third_party/cares/cares/inet_ntop.c +207 -0
- data/third_party/cares/cares/setup_once.h +554 -0
- data/third_party/cares/cares/windows_port.c +22 -0
- data/third_party/cares/config_darwin/ares_config.h +428 -0
- data/third_party/cares/config_freebsd/ares_config.h +505 -0
- data/third_party/cares/config_linux/ares_config.h +461 -0
- data/third_party/cares/config_openbsd/ares_config.h +505 -0
- data/third_party/upb/upb/decode.c +609 -0
- data/third_party/upb/upb/decode.h +21 -0
- data/third_party/upb/upb/encode.c +378 -0
- data/third_party/upb/upb/encode.h +21 -0
- data/third_party/upb/upb/generated_util.h +105 -0
- data/third_party/upb/upb/msg.c +111 -0
- data/third_party/upb/upb/msg.h +69 -0
- data/third_party/upb/upb/port.c +26 -0
- data/third_party/upb/upb/port_def.inc +150 -0
- data/third_party/upb/upb/port_undef.inc +21 -0
- data/third_party/upb/upb/table.c +913 -0
- data/third_party/upb/upb/table.int.h +507 -0
- data/third_party/upb/upb/upb.c +261 -0
- data/third_party/upb/upb/upb.h +364 -0
- data/third_party/zlib/adler32.c +186 -0
- data/third_party/zlib/compress.c +86 -0
- data/third_party/zlib/crc32.c +442 -0
- data/third_party/zlib/crc32.h +441 -0
- data/third_party/zlib/deflate.c +2163 -0
- data/third_party/zlib/deflate.h +349 -0
- data/third_party/zlib/gzclose.c +25 -0
- data/third_party/zlib/gzguts.h +218 -0
- data/third_party/zlib/gzlib.c +637 -0
- data/third_party/zlib/gzread.c +654 -0
- data/third_party/zlib/gzwrite.c +665 -0
- data/third_party/zlib/infback.c +640 -0
- data/third_party/zlib/inffast.c +323 -0
- data/third_party/zlib/inffast.h +11 -0
- data/third_party/zlib/inffixed.h +94 -0
- data/third_party/zlib/inflate.c +1561 -0
- data/third_party/zlib/inflate.h +125 -0
- data/third_party/zlib/inftrees.c +304 -0
- data/third_party/zlib/inftrees.h +62 -0
- data/third_party/zlib/trees.c +1203 -0
- data/third_party/zlib/trees.h +128 -0
- data/third_party/zlib/uncompr.c +93 -0
- data/third_party/zlib/zconf.h +534 -0
- data/third_party/zlib/zlib.h +1912 -0
- data/third_party/zlib/zutil.c +325 -0
- data/third_party/zlib/zutil.h +271 -0
- metadata +2029 -0
@@ -0,0 +1,91 @@
|
|
1
|
+
//
|
2
|
+
// Copyright 2017 The Abseil Authors.
|
3
|
+
//
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
// you may not use this file except in compliance with the License.
|
6
|
+
// You may obtain a copy of the License at
|
7
|
+
//
|
8
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
//
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
// See the License for the specific language governing permissions and
|
14
|
+
// limitations under the License.
|
15
|
+
//
|
16
|
+
// -----------------------------------------------------------------------------
|
17
|
+
// File: strip.h
|
18
|
+
// -----------------------------------------------------------------------------
|
19
|
+
//
|
20
|
+
// This file contains various functions for stripping substrings from a string.
|
21
|
+
#ifndef ABSL_STRINGS_STRIP_H_
|
22
|
+
#define ABSL_STRINGS_STRIP_H_
|
23
|
+
|
24
|
+
#include <cstddef>
|
25
|
+
#include <string>
|
26
|
+
|
27
|
+
#include "absl/base/macros.h"
|
28
|
+
#include "absl/strings/ascii.h"
|
29
|
+
#include "absl/strings/match.h"
|
30
|
+
#include "absl/strings/string_view.h"
|
31
|
+
|
32
|
+
namespace absl {
|
33
|
+
ABSL_NAMESPACE_BEGIN
|
34
|
+
|
35
|
+
// ConsumePrefix()
|
36
|
+
//
|
37
|
+
// Strips the `expected` prefix from the start of the given string, returning
|
38
|
+
// `true` if the strip operation succeeded or false otherwise.
|
39
|
+
//
|
40
|
+
// Example:
|
41
|
+
//
|
42
|
+
// absl::string_view input("abc");
|
43
|
+
// EXPECT_TRUE(absl::ConsumePrefix(&input, "a"));
|
44
|
+
// EXPECT_EQ(input, "bc");
|
45
|
+
inline bool ConsumePrefix(absl::string_view* str, absl::string_view expected) {
|
46
|
+
if (!absl::StartsWith(*str, expected)) return false;
|
47
|
+
str->remove_prefix(expected.size());
|
48
|
+
return true;
|
49
|
+
}
|
50
|
+
// ConsumeSuffix()
|
51
|
+
//
|
52
|
+
// Strips the `expected` suffix from the end of the given string, returning
|
53
|
+
// `true` if the strip operation succeeded or false otherwise.
|
54
|
+
//
|
55
|
+
// Example:
|
56
|
+
//
|
57
|
+
// absl::string_view input("abcdef");
|
58
|
+
// EXPECT_TRUE(absl::ConsumeSuffix(&input, "def"));
|
59
|
+
// EXPECT_EQ(input, "abc");
|
60
|
+
inline bool ConsumeSuffix(absl::string_view* str, absl::string_view expected) {
|
61
|
+
if (!absl::EndsWith(*str, expected)) return false;
|
62
|
+
str->remove_suffix(expected.size());
|
63
|
+
return true;
|
64
|
+
}
|
65
|
+
|
66
|
+
// StripPrefix()
|
67
|
+
//
|
68
|
+
// Returns a view into the input string 'str' with the given 'prefix' removed,
|
69
|
+
// but leaving the original string intact. If the prefix does not match at the
|
70
|
+
// start of the string, returns the original string instead.
|
71
|
+
ABSL_MUST_USE_RESULT inline absl::string_view StripPrefix(
|
72
|
+
absl::string_view str, absl::string_view prefix) {
|
73
|
+
if (absl::StartsWith(str, prefix)) str.remove_prefix(prefix.size());
|
74
|
+
return str;
|
75
|
+
}
|
76
|
+
|
77
|
+
// StripSuffix()
|
78
|
+
//
|
79
|
+
// Returns a view into the input string 'str' with the given 'suffix' removed,
|
80
|
+
// but leaving the original string intact. If the suffix does not match at the
|
81
|
+
// end of the string, returns the original string instead.
|
82
|
+
ABSL_MUST_USE_RESULT inline absl::string_view StripSuffix(
|
83
|
+
absl::string_view str, absl::string_view suffix) {
|
84
|
+
if (absl::EndsWith(str, suffix)) str.remove_suffix(suffix.size());
|
85
|
+
return str;
|
86
|
+
}
|
87
|
+
|
88
|
+
ABSL_NAMESPACE_END
|
89
|
+
} // namespace absl
|
90
|
+
|
91
|
+
#endif // ABSL_STRINGS_STRIP_H_
|
@@ -0,0 +1,171 @@
|
|
1
|
+
// Copyright 2017 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#include "absl/strings/substitute.h"
|
16
|
+
|
17
|
+
#include <algorithm>
|
18
|
+
|
19
|
+
#include "absl/base/internal/raw_logging.h"
|
20
|
+
#include "absl/strings/ascii.h"
|
21
|
+
#include "absl/strings/escaping.h"
|
22
|
+
#include "absl/strings/internal/resize_uninitialized.h"
|
23
|
+
#include "absl/strings/string_view.h"
|
24
|
+
|
25
|
+
namespace absl {
|
26
|
+
ABSL_NAMESPACE_BEGIN
|
27
|
+
namespace substitute_internal {
|
28
|
+
|
29
|
+
void SubstituteAndAppendArray(std::string* output, absl::string_view format,
|
30
|
+
const absl::string_view* args_array,
|
31
|
+
size_t num_args) {
|
32
|
+
// Determine total size needed.
|
33
|
+
size_t size = 0;
|
34
|
+
for (size_t i = 0; i < format.size(); i++) {
|
35
|
+
if (format[i] == '$') {
|
36
|
+
if (i + 1 >= format.size()) {
|
37
|
+
#ifndef NDEBUG
|
38
|
+
ABSL_RAW_LOG(FATAL,
|
39
|
+
"Invalid absl::Substitute() format std::string: \"%s\".",
|
40
|
+
absl::CEscape(format).c_str());
|
41
|
+
#endif
|
42
|
+
return;
|
43
|
+
} else if (absl::ascii_isdigit(format[i + 1])) {
|
44
|
+
int index = format[i + 1] - '0';
|
45
|
+
if (static_cast<size_t>(index) >= num_args) {
|
46
|
+
#ifndef NDEBUG
|
47
|
+
ABSL_RAW_LOG(
|
48
|
+
FATAL,
|
49
|
+
"Invalid absl::Substitute() format std::string: asked for \"$"
|
50
|
+
"%d\", but only %d args were given. Full format std::string was: "
|
51
|
+
"\"%s\".",
|
52
|
+
index, static_cast<int>(num_args), absl::CEscape(format).c_str());
|
53
|
+
#endif
|
54
|
+
return;
|
55
|
+
}
|
56
|
+
size += args_array[index].size();
|
57
|
+
++i; // Skip next char.
|
58
|
+
} else if (format[i + 1] == '$') {
|
59
|
+
++size;
|
60
|
+
++i; // Skip next char.
|
61
|
+
} else {
|
62
|
+
#ifndef NDEBUG
|
63
|
+
ABSL_RAW_LOG(FATAL,
|
64
|
+
"Invalid absl::Substitute() format std::string: \"%s\".",
|
65
|
+
absl::CEscape(format).c_str());
|
66
|
+
#endif
|
67
|
+
return;
|
68
|
+
}
|
69
|
+
} else {
|
70
|
+
++size;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
if (size == 0) return;
|
75
|
+
|
76
|
+
// Build the std::string.
|
77
|
+
size_t original_size = output->size();
|
78
|
+
strings_internal::STLStringResizeUninitialized(output, original_size + size);
|
79
|
+
char* target = &(*output)[original_size];
|
80
|
+
for (size_t i = 0; i < format.size(); i++) {
|
81
|
+
if (format[i] == '$') {
|
82
|
+
if (absl::ascii_isdigit(format[i + 1])) {
|
83
|
+
const absl::string_view src = args_array[format[i + 1] - '0'];
|
84
|
+
target = std::copy(src.begin(), src.end(), target);
|
85
|
+
++i; // Skip next char.
|
86
|
+
} else if (format[i + 1] == '$') {
|
87
|
+
*target++ = '$';
|
88
|
+
++i; // Skip next char.
|
89
|
+
}
|
90
|
+
} else {
|
91
|
+
*target++ = format[i];
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
assert(target == output->data() + output->size());
|
96
|
+
}
|
97
|
+
|
98
|
+
Arg::Arg(const void* value) {
|
99
|
+
static_assert(sizeof(scratch_) >= sizeof(value) * 2 + 2,
|
100
|
+
"fix sizeof(scratch_)");
|
101
|
+
if (value == nullptr) {
|
102
|
+
piece_ = "NULL";
|
103
|
+
} else {
|
104
|
+
char* ptr = scratch_ + sizeof(scratch_);
|
105
|
+
uintptr_t num = reinterpret_cast<uintptr_t>(value);
|
106
|
+
do {
|
107
|
+
*--ptr = absl::numbers_internal::kHexChar[num & 0xf];
|
108
|
+
num >>= 4;
|
109
|
+
} while (num != 0);
|
110
|
+
*--ptr = 'x';
|
111
|
+
*--ptr = '0';
|
112
|
+
piece_ = absl::string_view(ptr, scratch_ + sizeof(scratch_) - ptr);
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
// TODO(jorg): Don't duplicate so much code between here and str_cat.cc
|
117
|
+
Arg::Arg(Hex hex) {
|
118
|
+
char* const end = &scratch_[numbers_internal::kFastToBufferSize];
|
119
|
+
char* writer = end;
|
120
|
+
uint64_t value = hex.value;
|
121
|
+
do {
|
122
|
+
*--writer = absl::numbers_internal::kHexChar[value & 0xF];
|
123
|
+
value >>= 4;
|
124
|
+
} while (value != 0);
|
125
|
+
|
126
|
+
char* beg;
|
127
|
+
if (end - writer < hex.width) {
|
128
|
+
beg = end - hex.width;
|
129
|
+
std::fill_n(beg, writer - beg, hex.fill);
|
130
|
+
} else {
|
131
|
+
beg = writer;
|
132
|
+
}
|
133
|
+
|
134
|
+
piece_ = absl::string_view(beg, end - beg);
|
135
|
+
}
|
136
|
+
|
137
|
+
// TODO(jorg): Don't duplicate so much code between here and str_cat.cc
|
138
|
+
Arg::Arg(Dec dec) {
|
139
|
+
assert(dec.width <= numbers_internal::kFastToBufferSize);
|
140
|
+
char* const end = &scratch_[numbers_internal::kFastToBufferSize];
|
141
|
+
char* const minfill = end - dec.width;
|
142
|
+
char* writer = end;
|
143
|
+
uint64_t value = dec.value;
|
144
|
+
bool neg = dec.neg;
|
145
|
+
while (value > 9) {
|
146
|
+
*--writer = '0' + (value % 10);
|
147
|
+
value /= 10;
|
148
|
+
}
|
149
|
+
*--writer = '0' + value;
|
150
|
+
if (neg) *--writer = '-';
|
151
|
+
|
152
|
+
ptrdiff_t fillers = writer - minfill;
|
153
|
+
if (fillers > 0) {
|
154
|
+
// Tricky: if the fill character is ' ', then it's <fill><+/-><digits>
|
155
|
+
// But...: if the fill character is '0', then it's <+/-><fill><digits>
|
156
|
+
bool add_sign_again = false;
|
157
|
+
if (neg && dec.fill == '0') { // If filling with '0',
|
158
|
+
++writer; // ignore the sign we just added
|
159
|
+
add_sign_again = true; // and re-add the sign later.
|
160
|
+
}
|
161
|
+
writer -= fillers;
|
162
|
+
std::fill_n(writer, fillers, dec.fill);
|
163
|
+
if (add_sign_again) *--writer = '-';
|
164
|
+
}
|
165
|
+
|
166
|
+
piece_ = absl::string_view(writer, end - writer);
|
167
|
+
}
|
168
|
+
|
169
|
+
} // namespace substitute_internal
|
170
|
+
ABSL_NAMESPACE_END
|
171
|
+
} // namespace absl
|
@@ -0,0 +1,693 @@
|
|
1
|
+
//
|
2
|
+
// Copyright 2017 The Abseil Authors.
|
3
|
+
//
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
// you may not use this file except in compliance with the License.
|
6
|
+
// You may obtain a copy of the License at
|
7
|
+
//
|
8
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
//
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
// See the License for the specific language governing permissions and
|
14
|
+
// limitations under the License.
|
15
|
+
//
|
16
|
+
// -----------------------------------------------------------------------------
|
17
|
+
// File: substitute.h
|
18
|
+
// -----------------------------------------------------------------------------
|
19
|
+
//
|
20
|
+
// This package contains functions for efficiently performing string
|
21
|
+
// substitutions using a format string with positional notation:
|
22
|
+
// `Substitute()` and `SubstituteAndAppend()`.
|
23
|
+
//
|
24
|
+
// Unlike printf-style format specifiers, `Substitute()` functions do not need
|
25
|
+
// to specify the type of the substitution arguments. Supported arguments
|
26
|
+
// following the format string, such as strings, string_views, ints,
|
27
|
+
// floats, and bools, are automatically converted to strings during the
|
28
|
+
// substitution process. (See below for a full list of supported types.)
|
29
|
+
//
|
30
|
+
// `Substitute()` does not allow you to specify *how* to format a value, beyond
|
31
|
+
// the default conversion to string. For example, you cannot format an integer
|
32
|
+
// in hex.
|
33
|
+
//
|
34
|
+
// The format string uses positional identifiers indicated by a dollar sign ($)
|
35
|
+
// and single digit positional ids to indicate which substitution arguments to
|
36
|
+
// use at that location within the format string.
|
37
|
+
//
|
38
|
+
// A '$$' sequence in the format string causes a literal '$' character to be
|
39
|
+
// output.
|
40
|
+
//
|
41
|
+
// Example 1:
|
42
|
+
// std::string s = Substitute("$1 purchased $0 $2 for $$10. Thanks $1!",
|
43
|
+
// 5, "Bob", "Apples");
|
44
|
+
// EXPECT_EQ("Bob purchased 5 Apples for $10. Thanks Bob!", s);
|
45
|
+
//
|
46
|
+
// Example 2:
|
47
|
+
// std::string s = "Hi. ";
|
48
|
+
// SubstituteAndAppend(&s, "My name is $0 and I am $1 years old.", "Bob", 5);
|
49
|
+
// EXPECT_EQ("Hi. My name is Bob and I am 5 years old.", s);
|
50
|
+
//
|
51
|
+
// Supported types:
|
52
|
+
// * absl::string_view, std::string, const char* (null is equivalent to "")
|
53
|
+
// * int32_t, int64_t, uint32_t, uint64
|
54
|
+
// * float, double
|
55
|
+
// * bool (Printed as "true" or "false")
|
56
|
+
// * pointer types other than char* (Printed as "0x<lower case hex string>",
|
57
|
+
// except that null is printed as "NULL")
|
58
|
+
//
|
59
|
+
// If an invalid format string is provided, Substitute returns an empty string
|
60
|
+
// and SubstituteAndAppend does not change the provided output string.
|
61
|
+
// A format string is invalid if it:
|
62
|
+
// * ends in an unescaped $ character,
|
63
|
+
// e.g. "Hello $", or
|
64
|
+
// * calls for a position argument which is not provided,
|
65
|
+
// e.g. Substitute("Hello $2", "world"), or
|
66
|
+
// * specifies a non-digit, non-$ character after an unescaped $ character,
|
67
|
+
// e.g. "Hello $f".
|
68
|
+
// In debug mode, i.e. #ifndef NDEBUG, such errors terminate the program.
|
69
|
+
|
70
|
+
#ifndef ABSL_STRINGS_SUBSTITUTE_H_
|
71
|
+
#define ABSL_STRINGS_SUBSTITUTE_H_
|
72
|
+
|
73
|
+
#include <cstring>
|
74
|
+
#include <string>
|
75
|
+
#include <type_traits>
|
76
|
+
#include <vector>
|
77
|
+
|
78
|
+
#include "absl/base/macros.h"
|
79
|
+
#include "absl/base/port.h"
|
80
|
+
#include "absl/strings/ascii.h"
|
81
|
+
#include "absl/strings/escaping.h"
|
82
|
+
#include "absl/strings/numbers.h"
|
83
|
+
#include "absl/strings/str_cat.h"
|
84
|
+
#include "absl/strings/str_split.h"
|
85
|
+
#include "absl/strings/string_view.h"
|
86
|
+
#include "absl/strings/strip.h"
|
87
|
+
|
88
|
+
namespace absl {
|
89
|
+
ABSL_NAMESPACE_BEGIN
|
90
|
+
namespace substitute_internal {
|
91
|
+
|
92
|
+
// Arg
|
93
|
+
//
|
94
|
+
// This class provides an argument type for `absl::Substitute()` and
|
95
|
+
// `absl::SubstituteAndAppend()`. `Arg` handles implicit conversion of various
|
96
|
+
// types to a string. (`Arg` is very similar to the `AlphaNum` class in
|
97
|
+
// `StrCat()`.)
|
98
|
+
//
|
99
|
+
// This class has implicit constructors.
|
100
|
+
class Arg {
|
101
|
+
public:
|
102
|
+
// Overloads for std::string-y things
|
103
|
+
//
|
104
|
+
// Explicitly overload `const char*` so the compiler doesn't cast to `bool`.
|
105
|
+
Arg(const char* value) // NOLINT(runtime/explicit)
|
106
|
+
: piece_(absl::NullSafeStringView(value)) {}
|
107
|
+
template <typename Allocator>
|
108
|
+
Arg( // NOLINT
|
109
|
+
const std::basic_string<char, std::char_traits<char>, Allocator>&
|
110
|
+
value) noexcept
|
111
|
+
: piece_(value) {}
|
112
|
+
Arg(absl::string_view value) // NOLINT(runtime/explicit)
|
113
|
+
: piece_(value) {}
|
114
|
+
|
115
|
+
// Overloads for primitives
|
116
|
+
//
|
117
|
+
// No overloads are available for signed and unsigned char because if people
|
118
|
+
// are explicitly declaring their chars as signed or unsigned then they are
|
119
|
+
// probably using them as 8-bit integers and would probably prefer an integer
|
120
|
+
// representation. However, we can't really know, so we make the caller decide
|
121
|
+
// what to do.
|
122
|
+
Arg(char value) // NOLINT(runtime/explicit)
|
123
|
+
: piece_(scratch_, 1) { scratch_[0] = value; }
|
124
|
+
Arg(short value) // NOLINT(*)
|
125
|
+
: piece_(scratch_,
|
126
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
127
|
+
Arg(unsigned short value) // NOLINT(*)
|
128
|
+
: piece_(scratch_,
|
129
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
130
|
+
Arg(int value) // NOLINT(runtime/explicit)
|
131
|
+
: piece_(scratch_,
|
132
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
133
|
+
Arg(unsigned int value) // NOLINT(runtime/explicit)
|
134
|
+
: piece_(scratch_,
|
135
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
136
|
+
Arg(long value) // NOLINT(*)
|
137
|
+
: piece_(scratch_,
|
138
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
139
|
+
Arg(unsigned long value) // NOLINT(*)
|
140
|
+
: piece_(scratch_,
|
141
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
142
|
+
Arg(long long value) // NOLINT(*)
|
143
|
+
: piece_(scratch_,
|
144
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
145
|
+
Arg(unsigned long long value) // NOLINT(*)
|
146
|
+
: piece_(scratch_,
|
147
|
+
numbers_internal::FastIntToBuffer(value, scratch_) - scratch_) {}
|
148
|
+
Arg(float value) // NOLINT(runtime/explicit)
|
149
|
+
: piece_(scratch_, numbers_internal::SixDigitsToBuffer(value, scratch_)) {
|
150
|
+
}
|
151
|
+
Arg(double value) // NOLINT(runtime/explicit)
|
152
|
+
: piece_(scratch_, numbers_internal::SixDigitsToBuffer(value, scratch_)) {
|
153
|
+
}
|
154
|
+
Arg(bool value) // NOLINT(runtime/explicit)
|
155
|
+
: piece_(value ? "true" : "false") {}
|
156
|
+
|
157
|
+
Arg(Hex hex); // NOLINT(runtime/explicit)
|
158
|
+
Arg(Dec dec); // NOLINT(runtime/explicit)
|
159
|
+
|
160
|
+
// vector<bool>::reference and const_reference require special help to
|
161
|
+
// convert to `AlphaNum` because it requires two user defined conversions.
|
162
|
+
template <typename T,
|
163
|
+
absl::enable_if_t<
|
164
|
+
std::is_class<T>::value &&
|
165
|
+
(std::is_same<T, std::vector<bool>::reference>::value ||
|
166
|
+
std::is_same<T, std::vector<bool>::const_reference>::value)>* =
|
167
|
+
nullptr>
|
168
|
+
Arg(T value) // NOLINT(google-explicit-constructor)
|
169
|
+
: Arg(static_cast<bool>(value)) {}
|
170
|
+
|
171
|
+
// `void*` values, with the exception of `char*`, are printed as
|
172
|
+
// "0x<hex value>". However, in the case of `nullptr`, "NULL" is printed.
|
173
|
+
Arg(const void* value); // NOLINT(runtime/explicit)
|
174
|
+
|
175
|
+
Arg(const Arg&) = delete;
|
176
|
+
Arg& operator=(const Arg&) = delete;
|
177
|
+
|
178
|
+
absl::string_view piece() const { return piece_; }
|
179
|
+
|
180
|
+
private:
|
181
|
+
absl::string_view piece_;
|
182
|
+
char scratch_[numbers_internal::kFastToBufferSize];
|
183
|
+
};
|
184
|
+
|
185
|
+
// Internal helper function. Don't call this from outside this implementation.
|
186
|
+
// This interface may change without notice.
|
187
|
+
void SubstituteAndAppendArray(std::string* output, absl::string_view format,
|
188
|
+
const absl::string_view* args_array,
|
189
|
+
size_t num_args);
|
190
|
+
|
191
|
+
#if defined(ABSL_BAD_CALL_IF)
|
192
|
+
constexpr int CalculateOneBit(const char* format) {
|
193
|
+
// Returns:
|
194
|
+
// * 2^N for '$N' when N is in [0-9]
|
195
|
+
// * 0 for correct '$' escaping: '$$'.
|
196
|
+
// * -1 otherwise.
|
197
|
+
return (*format < '0' || *format > '9') ? (*format == '$' ? 0 : -1)
|
198
|
+
: (1 << (*format - '0'));
|
199
|
+
}
|
200
|
+
|
201
|
+
constexpr const char* SkipNumber(const char* format) {
|
202
|
+
return !*format ? format : (format + 1);
|
203
|
+
}
|
204
|
+
|
205
|
+
constexpr int PlaceholderBitmask(const char* format) {
|
206
|
+
return !*format ? 0 : *format != '$'
|
207
|
+
? PlaceholderBitmask(format + 1)
|
208
|
+
: (CalculateOneBit(format + 1) |
|
209
|
+
PlaceholderBitmask(SkipNumber(format + 1)));
|
210
|
+
}
|
211
|
+
#endif // ABSL_BAD_CALL_IF
|
212
|
+
|
213
|
+
} // namespace substitute_internal
|
214
|
+
|
215
|
+
//
|
216
|
+
// PUBLIC API
|
217
|
+
//
|
218
|
+
|
219
|
+
// SubstituteAndAppend()
|
220
|
+
//
|
221
|
+
// Substitutes variables into a given format string and appends to a given
|
222
|
+
// output string. See file comments above for usage.
|
223
|
+
//
|
224
|
+
// The declarations of `SubstituteAndAppend()` below consist of overloads
|
225
|
+
// for passing 0 to 10 arguments, respectively.
|
226
|
+
//
|
227
|
+
// NOTE: A zero-argument `SubstituteAndAppend()` may be used within variadic
|
228
|
+
// templates to allow a variable number of arguments.
|
229
|
+
//
|
230
|
+
// Example:
|
231
|
+
// template <typename... Args>
|
232
|
+
// void VarMsg(std::string* boilerplate, absl::string_view format,
|
233
|
+
// const Args&... args) {
|
234
|
+
// absl::SubstituteAndAppend(boilerplate, format, args...);
|
235
|
+
// }
|
236
|
+
//
|
237
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format) {
|
238
|
+
substitute_internal::SubstituteAndAppendArray(output, format, nullptr, 0);
|
239
|
+
}
|
240
|
+
|
241
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
242
|
+
const substitute_internal::Arg& a0) {
|
243
|
+
const absl::string_view args[] = {a0.piece()};
|
244
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
245
|
+
ABSL_ARRAYSIZE(args));
|
246
|
+
}
|
247
|
+
|
248
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
249
|
+
const substitute_internal::Arg& a0,
|
250
|
+
const substitute_internal::Arg& a1) {
|
251
|
+
const absl::string_view args[] = {a0.piece(), a1.piece()};
|
252
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
253
|
+
ABSL_ARRAYSIZE(args));
|
254
|
+
}
|
255
|
+
|
256
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
257
|
+
const substitute_internal::Arg& a0,
|
258
|
+
const substitute_internal::Arg& a1,
|
259
|
+
const substitute_internal::Arg& a2) {
|
260
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece()};
|
261
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
262
|
+
ABSL_ARRAYSIZE(args));
|
263
|
+
}
|
264
|
+
|
265
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
266
|
+
const substitute_internal::Arg& a0,
|
267
|
+
const substitute_internal::Arg& a1,
|
268
|
+
const substitute_internal::Arg& a2,
|
269
|
+
const substitute_internal::Arg& a3) {
|
270
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece(),
|
271
|
+
a3.piece()};
|
272
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
273
|
+
ABSL_ARRAYSIZE(args));
|
274
|
+
}
|
275
|
+
|
276
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
277
|
+
const substitute_internal::Arg& a0,
|
278
|
+
const substitute_internal::Arg& a1,
|
279
|
+
const substitute_internal::Arg& a2,
|
280
|
+
const substitute_internal::Arg& a3,
|
281
|
+
const substitute_internal::Arg& a4) {
|
282
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece(),
|
283
|
+
a3.piece(), a4.piece()};
|
284
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
285
|
+
ABSL_ARRAYSIZE(args));
|
286
|
+
}
|
287
|
+
|
288
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
289
|
+
const substitute_internal::Arg& a0,
|
290
|
+
const substitute_internal::Arg& a1,
|
291
|
+
const substitute_internal::Arg& a2,
|
292
|
+
const substitute_internal::Arg& a3,
|
293
|
+
const substitute_internal::Arg& a4,
|
294
|
+
const substitute_internal::Arg& a5) {
|
295
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece(),
|
296
|
+
a3.piece(), a4.piece(), a5.piece()};
|
297
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
298
|
+
ABSL_ARRAYSIZE(args));
|
299
|
+
}
|
300
|
+
|
301
|
+
inline void SubstituteAndAppend(std::string* output, absl::string_view format,
|
302
|
+
const substitute_internal::Arg& a0,
|
303
|
+
const substitute_internal::Arg& a1,
|
304
|
+
const substitute_internal::Arg& a2,
|
305
|
+
const substitute_internal::Arg& a3,
|
306
|
+
const substitute_internal::Arg& a4,
|
307
|
+
const substitute_internal::Arg& a5,
|
308
|
+
const substitute_internal::Arg& a6) {
|
309
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece(),
|
310
|
+
a3.piece(), a4.piece(), a5.piece(),
|
311
|
+
a6.piece()};
|
312
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
313
|
+
ABSL_ARRAYSIZE(args));
|
314
|
+
}
|
315
|
+
|
316
|
+
inline void SubstituteAndAppend(
|
317
|
+
std::string* output, absl::string_view format,
|
318
|
+
const substitute_internal::Arg& a0, const substitute_internal::Arg& a1,
|
319
|
+
const substitute_internal::Arg& a2, const substitute_internal::Arg& a3,
|
320
|
+
const substitute_internal::Arg& a4, const substitute_internal::Arg& a5,
|
321
|
+
const substitute_internal::Arg& a6, const substitute_internal::Arg& a7) {
|
322
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece(),
|
323
|
+
a3.piece(), a4.piece(), a5.piece(),
|
324
|
+
a6.piece(), a7.piece()};
|
325
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
326
|
+
ABSL_ARRAYSIZE(args));
|
327
|
+
}
|
328
|
+
|
329
|
+
inline void SubstituteAndAppend(
|
330
|
+
std::string* output, absl::string_view format,
|
331
|
+
const substitute_internal::Arg& a0, const substitute_internal::Arg& a1,
|
332
|
+
const substitute_internal::Arg& a2, const substitute_internal::Arg& a3,
|
333
|
+
const substitute_internal::Arg& a4, const substitute_internal::Arg& a5,
|
334
|
+
const substitute_internal::Arg& a6, const substitute_internal::Arg& a7,
|
335
|
+
const substitute_internal::Arg& a8) {
|
336
|
+
const absl::string_view args[] = {a0.piece(), a1.piece(), a2.piece(),
|
337
|
+
a3.piece(), a4.piece(), a5.piece(),
|
338
|
+
a6.piece(), a7.piece(), a8.piece()};
|
339
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
340
|
+
ABSL_ARRAYSIZE(args));
|
341
|
+
}
|
342
|
+
|
343
|
+
inline void SubstituteAndAppend(
|
344
|
+
std::string* output, absl::string_view format,
|
345
|
+
const substitute_internal::Arg& a0, const substitute_internal::Arg& a1,
|
346
|
+
const substitute_internal::Arg& a2, const substitute_internal::Arg& a3,
|
347
|
+
const substitute_internal::Arg& a4, const substitute_internal::Arg& a5,
|
348
|
+
const substitute_internal::Arg& a6, const substitute_internal::Arg& a7,
|
349
|
+
const substitute_internal::Arg& a8, const substitute_internal::Arg& a9) {
|
350
|
+
const absl::string_view args[] = {
|
351
|
+
a0.piece(), a1.piece(), a2.piece(), a3.piece(), a4.piece(),
|
352
|
+
a5.piece(), a6.piece(), a7.piece(), a8.piece(), a9.piece()};
|
353
|
+
substitute_internal::SubstituteAndAppendArray(output, format, args,
|
354
|
+
ABSL_ARRAYSIZE(args));
|
355
|
+
}
|
356
|
+
|
357
|
+
#if defined(ABSL_BAD_CALL_IF)
|
358
|
+
// This body of functions catches cases where the number of placeholders
|
359
|
+
// doesn't match the number of data arguments.
|
360
|
+
void SubstituteAndAppend(std::string* output, const char* format)
|
361
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 0,
|
362
|
+
"There were no substitution arguments "
|
363
|
+
"but this format std::string has a $[0-9] in it");
|
364
|
+
|
365
|
+
void SubstituteAndAppend(std::string* output, const char* format,
|
366
|
+
const substitute_internal::Arg& a0)
|
367
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 1,
|
368
|
+
"There was 1 substitution argument given, but "
|
369
|
+
"this format std::string is either missing its $0, or "
|
370
|
+
"contains one of $1-$9");
|
371
|
+
|
372
|
+
void SubstituteAndAppend(std::string* output, const char* format,
|
373
|
+
const substitute_internal::Arg& a0,
|
374
|
+
const substitute_internal::Arg& a1)
|
375
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 3,
|
376
|
+
"There were 2 substitution arguments given, but "
|
377
|
+
"this format std::string is either missing its $0/$1, or "
|
378
|
+
"contains one of $2-$9");
|
379
|
+
|
380
|
+
void SubstituteAndAppend(std::string* output, const char* format,
|
381
|
+
const substitute_internal::Arg& a0,
|
382
|
+
const substitute_internal::Arg& a1,
|
383
|
+
const substitute_internal::Arg& a2)
|
384
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 7,
|
385
|
+
"There were 3 substitution arguments given, but "
|
386
|
+
"this format std::string is either missing its $0/$1/$2, or "
|
387
|
+
"contains one of $3-$9");
|
388
|
+
|
389
|
+
void SubstituteAndAppend(std::string* output, const char* format,
|
390
|
+
const substitute_internal::Arg& a0,
|
391
|
+
const substitute_internal::Arg& a1,
|
392
|
+
const substitute_internal::Arg& a2,
|
393
|
+
const substitute_internal::Arg& a3)
|
394
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 15,
|
395
|
+
"There were 4 substitution arguments given, but "
|
396
|
+
"this format std::string is either missing its $0-$3, or "
|
397
|
+
"contains one of $4-$9");
|
398
|
+
|
399
|
+
void SubstituteAndAppend(std::string* output, const char* format,
|
400
|
+
const substitute_internal::Arg& a0,
|
401
|
+
const substitute_internal::Arg& a1,
|
402
|
+
const substitute_internal::Arg& a2,
|
403
|
+
const substitute_internal::Arg& a3,
|
404
|
+
const substitute_internal::Arg& a4)
|
405
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 31,
|
406
|
+
"There were 5 substitution arguments given, but "
|
407
|
+
"this format std::string is either missing its $0-$4, or "
|
408
|
+
"contains one of $5-$9");
|
409
|
+
|
410
|
+
void SubstituteAndAppend(std::string* output, const char* format,
|
411
|
+
const substitute_internal::Arg& a0,
|
412
|
+
const substitute_internal::Arg& a1,
|
413
|
+
const substitute_internal::Arg& a2,
|
414
|
+
const substitute_internal::Arg& a3,
|
415
|
+
const substitute_internal::Arg& a4,
|
416
|
+
const substitute_internal::Arg& a5)
|
417
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 63,
|
418
|
+
"There were 6 substitution arguments given, but "
|
419
|
+
"this format std::string is either missing its $0-$5, or "
|
420
|
+
"contains one of $6-$9");
|
421
|
+
|
422
|
+
void SubstituteAndAppend(
|
423
|
+
std::string* output, const char* format, const substitute_internal::Arg& a0,
|
424
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
425
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
426
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6)
|
427
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 127,
|
428
|
+
"There were 7 substitution arguments given, but "
|
429
|
+
"this format std::string is either missing its $0-$6, or "
|
430
|
+
"contains one of $7-$9");
|
431
|
+
|
432
|
+
void SubstituteAndAppend(
|
433
|
+
std::string* output, const char* format, const substitute_internal::Arg& a0,
|
434
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
435
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
436
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
437
|
+
const substitute_internal::Arg& a7)
|
438
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 255,
|
439
|
+
"There were 8 substitution arguments given, but "
|
440
|
+
"this format std::string is either missing its $0-$7, or "
|
441
|
+
"contains one of $8-$9");
|
442
|
+
|
443
|
+
void SubstituteAndAppend(
|
444
|
+
std::string* output, const char* format, const substitute_internal::Arg& a0,
|
445
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
446
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
447
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
448
|
+
const substitute_internal::Arg& a7, const substitute_internal::Arg& a8)
|
449
|
+
ABSL_BAD_CALL_IF(
|
450
|
+
substitute_internal::PlaceholderBitmask(format) != 511,
|
451
|
+
"There were 9 substitution arguments given, but "
|
452
|
+
"this format std::string is either missing its $0-$8, or contains a $9");
|
453
|
+
|
454
|
+
void SubstituteAndAppend(
|
455
|
+
std::string* output, const char* format, const substitute_internal::Arg& a0,
|
456
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
457
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
458
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
459
|
+
const substitute_internal::Arg& a7, const substitute_internal::Arg& a8,
|
460
|
+
const substitute_internal::Arg& a9)
|
461
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 1023,
|
462
|
+
"There were 10 substitution arguments given, but this "
|
463
|
+
"format std::string doesn't contain all of $0 through $9");
|
464
|
+
#endif // ABSL_BAD_CALL_IF
|
465
|
+
|
466
|
+
// Substitute()
|
467
|
+
//
|
468
|
+
// Substitutes variables into a given format string. See file comments above
|
469
|
+
// for usage.
|
470
|
+
//
|
471
|
+
// The declarations of `Substitute()` below consist of overloads for passing 0
|
472
|
+
// to 10 arguments, respectively.
|
473
|
+
//
|
474
|
+
// NOTE: A zero-argument `Substitute()` may be used within variadic templates to
|
475
|
+
// allow a variable number of arguments.
|
476
|
+
//
|
477
|
+
// Example:
|
478
|
+
// template <typename... Args>
|
479
|
+
// void VarMsg(absl::string_view format, const Args&... args) {
|
480
|
+
// std::string s = absl::Substitute(format, args...);
|
481
|
+
|
482
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(absl::string_view format) {
|
483
|
+
std::string result;
|
484
|
+
SubstituteAndAppend(&result, format);
|
485
|
+
return result;
|
486
|
+
}
|
487
|
+
|
488
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
489
|
+
absl::string_view format, const substitute_internal::Arg& a0) {
|
490
|
+
std::string result;
|
491
|
+
SubstituteAndAppend(&result, format, a0);
|
492
|
+
return result;
|
493
|
+
}
|
494
|
+
|
495
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
496
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
497
|
+
const substitute_internal::Arg& a1) {
|
498
|
+
std::string result;
|
499
|
+
SubstituteAndAppend(&result, format, a0, a1);
|
500
|
+
return result;
|
501
|
+
}
|
502
|
+
|
503
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
504
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
505
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2) {
|
506
|
+
std::string result;
|
507
|
+
SubstituteAndAppend(&result, format, a0, a1, a2);
|
508
|
+
return result;
|
509
|
+
}
|
510
|
+
|
511
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
512
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
513
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
514
|
+
const substitute_internal::Arg& a3) {
|
515
|
+
std::string result;
|
516
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3);
|
517
|
+
return result;
|
518
|
+
}
|
519
|
+
|
520
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
521
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
522
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
523
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4) {
|
524
|
+
std::string result;
|
525
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3, a4);
|
526
|
+
return result;
|
527
|
+
}
|
528
|
+
|
529
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
530
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
531
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
532
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
533
|
+
const substitute_internal::Arg& a5) {
|
534
|
+
std::string result;
|
535
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3, a4, a5);
|
536
|
+
return result;
|
537
|
+
}
|
538
|
+
|
539
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
540
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
541
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
542
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
543
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6) {
|
544
|
+
std::string result;
|
545
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3, a4, a5, a6);
|
546
|
+
return result;
|
547
|
+
}
|
548
|
+
|
549
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
550
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
551
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
552
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
553
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
554
|
+
const substitute_internal::Arg& a7) {
|
555
|
+
std::string result;
|
556
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3, a4, a5, a6, a7);
|
557
|
+
return result;
|
558
|
+
}
|
559
|
+
|
560
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
561
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
562
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
563
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
564
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
565
|
+
const substitute_internal::Arg& a7, const substitute_internal::Arg& a8) {
|
566
|
+
std::string result;
|
567
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3, a4, a5, a6, a7, a8);
|
568
|
+
return result;
|
569
|
+
}
|
570
|
+
|
571
|
+
ABSL_MUST_USE_RESULT inline std::string Substitute(
|
572
|
+
absl::string_view format, const substitute_internal::Arg& a0,
|
573
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
574
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
575
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
576
|
+
const substitute_internal::Arg& a7, const substitute_internal::Arg& a8,
|
577
|
+
const substitute_internal::Arg& a9) {
|
578
|
+
std::string result;
|
579
|
+
SubstituteAndAppend(&result, format, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9);
|
580
|
+
return result;
|
581
|
+
}
|
582
|
+
|
583
|
+
#if defined(ABSL_BAD_CALL_IF)
|
584
|
+
// This body of functions catches cases where the number of placeholders
|
585
|
+
// doesn't match the number of data arguments.
|
586
|
+
std::string Substitute(const char* format)
|
587
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 0,
|
588
|
+
"There were no substitution arguments "
|
589
|
+
"but this format std::string has a $[0-9] in it");
|
590
|
+
|
591
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0)
|
592
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 1,
|
593
|
+
"There was 1 substitution argument given, but "
|
594
|
+
"this format std::string is either missing its $0, or "
|
595
|
+
"contains one of $1-$9");
|
596
|
+
|
597
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
598
|
+
const substitute_internal::Arg& a1)
|
599
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 3,
|
600
|
+
"There were 2 substitution arguments given, but "
|
601
|
+
"this format std::string is either missing its $0/$1, or "
|
602
|
+
"contains one of $2-$9");
|
603
|
+
|
604
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
605
|
+
const substitute_internal::Arg& a1,
|
606
|
+
const substitute_internal::Arg& a2)
|
607
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 7,
|
608
|
+
"There were 3 substitution arguments given, but "
|
609
|
+
"this format std::string is either missing its $0/$1/$2, or "
|
610
|
+
"contains one of $3-$9");
|
611
|
+
|
612
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
613
|
+
const substitute_internal::Arg& a1,
|
614
|
+
const substitute_internal::Arg& a2,
|
615
|
+
const substitute_internal::Arg& a3)
|
616
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 15,
|
617
|
+
"There were 4 substitution arguments given, but "
|
618
|
+
"this format std::string is either missing its $0-$3, or "
|
619
|
+
"contains one of $4-$9");
|
620
|
+
|
621
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
622
|
+
const substitute_internal::Arg& a1,
|
623
|
+
const substitute_internal::Arg& a2,
|
624
|
+
const substitute_internal::Arg& a3,
|
625
|
+
const substitute_internal::Arg& a4)
|
626
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 31,
|
627
|
+
"There were 5 substitution arguments given, but "
|
628
|
+
"this format std::string is either missing its $0-$4, or "
|
629
|
+
"contains one of $5-$9");
|
630
|
+
|
631
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
632
|
+
const substitute_internal::Arg& a1,
|
633
|
+
const substitute_internal::Arg& a2,
|
634
|
+
const substitute_internal::Arg& a3,
|
635
|
+
const substitute_internal::Arg& a4,
|
636
|
+
const substitute_internal::Arg& a5)
|
637
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 63,
|
638
|
+
"There were 6 substitution arguments given, but "
|
639
|
+
"this format std::string is either missing its $0-$5, or "
|
640
|
+
"contains one of $6-$9");
|
641
|
+
|
642
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
643
|
+
const substitute_internal::Arg& a1,
|
644
|
+
const substitute_internal::Arg& a2,
|
645
|
+
const substitute_internal::Arg& a3,
|
646
|
+
const substitute_internal::Arg& a4,
|
647
|
+
const substitute_internal::Arg& a5,
|
648
|
+
const substitute_internal::Arg& a6)
|
649
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 127,
|
650
|
+
"There were 7 substitution arguments given, but "
|
651
|
+
"this format std::string is either missing its $0-$6, or "
|
652
|
+
"contains one of $7-$9");
|
653
|
+
|
654
|
+
std::string Substitute(const char* format, const substitute_internal::Arg& a0,
|
655
|
+
const substitute_internal::Arg& a1,
|
656
|
+
const substitute_internal::Arg& a2,
|
657
|
+
const substitute_internal::Arg& a3,
|
658
|
+
const substitute_internal::Arg& a4,
|
659
|
+
const substitute_internal::Arg& a5,
|
660
|
+
const substitute_internal::Arg& a6,
|
661
|
+
const substitute_internal::Arg& a7)
|
662
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 255,
|
663
|
+
"There were 8 substitution arguments given, but "
|
664
|
+
"this format std::string is either missing its $0-$7, or "
|
665
|
+
"contains one of $8-$9");
|
666
|
+
|
667
|
+
std::string Substitute(
|
668
|
+
const char* format, const substitute_internal::Arg& a0,
|
669
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
670
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
671
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
672
|
+
const substitute_internal::Arg& a7, const substitute_internal::Arg& a8)
|
673
|
+
ABSL_BAD_CALL_IF(
|
674
|
+
substitute_internal::PlaceholderBitmask(format) != 511,
|
675
|
+
"There were 9 substitution arguments given, but "
|
676
|
+
"this format std::string is either missing its $0-$8, or contains a $9");
|
677
|
+
|
678
|
+
std::string Substitute(
|
679
|
+
const char* format, const substitute_internal::Arg& a0,
|
680
|
+
const substitute_internal::Arg& a1, const substitute_internal::Arg& a2,
|
681
|
+
const substitute_internal::Arg& a3, const substitute_internal::Arg& a4,
|
682
|
+
const substitute_internal::Arg& a5, const substitute_internal::Arg& a6,
|
683
|
+
const substitute_internal::Arg& a7, const substitute_internal::Arg& a8,
|
684
|
+
const substitute_internal::Arg& a9)
|
685
|
+
ABSL_BAD_CALL_IF(substitute_internal::PlaceholderBitmask(format) != 1023,
|
686
|
+
"There were 10 substitution arguments given, but this "
|
687
|
+
"format std::string doesn't contain all of $0 through $9");
|
688
|
+
#endif // ABSL_BAD_CALL_IF
|
689
|
+
|
690
|
+
ABSL_NAMESPACE_END
|
691
|
+
} // namespace absl
|
692
|
+
|
693
|
+
#endif // ABSL_STRINGS_SUBSTITUTE_H_
|