mirror of https://github.com/grpc/grpc.git
commit
b22aeae462
296 changed files with 3491 additions and 747 deletions
@ -0,0 +1,6 @@ |
||||
-Isrc/ruby |
||||
-Isrc/ruby/pb |
||||
--backtrace |
||||
--require spec/spec_helper |
||||
--format documentation |
||||
--color |
@ -0,0 +1,416 @@ |
||||
# -*- ruby -*- |
||||
# encoding: utf-8 |
||||
$LOAD_PATH.push File.expand_path('../src/ruby/lib', __FILE__) |
||||
require 'grpc/version' |
||||
|
||||
Gem::Specification.new do |s| |
||||
s.name = 'grpc' |
||||
s.version = GRPC::VERSION |
||||
s.authors = ['gRPC Authors'] |
||||
s.email = 'temiola@google.com' |
||||
s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby' |
||||
s.summary = 'GRPC system in Ruby' |
||||
s.description = 'Send RPCs from Ruby using GRPC' |
||||
s.license = 'BSD-3-Clause' |
||||
|
||||
s.required_ruby_version = '>= 2.0.0' |
||||
s.requirements << 'libgrpc ~> 0.11.0 needs to be installed' |
||||
|
||||
s.files = %w( Rakefile Makefile ) |
||||
s.files += %w( etc/roots.pem ) |
||||
s.files += Dir.glob('src/ruby/bin/**/*') |
||||
s.files += Dir.glob('src/ruby/ext/**/*') |
||||
s.files += Dir.glob('src/ruby/lib/**/*') |
||||
s.files += Dir.glob('src/ruby/pb/**/*') |
||||
s.files += Dir.glob('include/grpc/**/*') |
||||
s.test_files = Dir.glob('src/ruby/spec/**/*') |
||||
s.bindir = 'src/ruby/bin' |
||||
%w(math noproto).each do |b| |
||||
s.executables += ["#{b}_client.rb", "#{b}_server.rb"] |
||||
end |
||||
s.executables += %w(grpc_ruby_interop_client grpc_ruby_interop_server) |
||||
s.require_paths = %w( src/ruby/bin src/ruby/lib src/ruby/pb ) |
||||
s.platform = Gem::Platform::RUBY |
||||
|
||||
s.add_dependency 'google-protobuf', '~> 3.0.0alpha.1.1' |
||||
s.add_dependency 'googleauth', '~> 0.5.1' |
||||
|
||||
s.add_development_dependency 'bundler', '~> 1.9' |
||||
s.add_development_dependency 'logging', '~> 2.0' |
||||
s.add_development_dependency 'simplecov', '~> 0.9' |
||||
s.add_development_dependency 'rake', '~> 10.4' |
||||
s.add_development_dependency 'rake-compiler', '~> 0.9' |
||||
s.add_development_dependency 'rspec', '~> 3.2' |
||||
s.add_development_dependency 'rubocop', '~> 0.30.0' |
||||
s.add_development_dependency 'signet', '~>0.7.0' |
||||
|
||||
s.extensions = %w(src/ruby/ext/grpc/extconf.rb) |
||||
|
||||
s.files += %w( include/grpc/support/alloc.h ) |
||||
s.files += %w( include/grpc/support/atm.h ) |
||||
s.files += %w( include/grpc/support/atm_gcc_atomic.h ) |
||||
s.files += %w( include/grpc/support/atm_gcc_sync.h ) |
||||
s.files += %w( include/grpc/support/atm_win32.h ) |
||||
s.files += %w( include/grpc/support/avl.h ) |
||||
s.files += %w( include/grpc/support/cmdline.h ) |
||||
s.files += %w( include/grpc/support/cpu.h ) |
||||
s.files += %w( include/grpc/support/histogram.h ) |
||||
s.files += %w( include/grpc/support/host_port.h ) |
||||
s.files += %w( include/grpc/support/log.h ) |
||||
s.files += %w( include/grpc/support/log_win32.h ) |
||||
s.files += %w( include/grpc/support/port_platform.h ) |
||||
s.files += %w( include/grpc/support/slice.h ) |
||||
s.files += %w( include/grpc/support/slice_buffer.h ) |
||||
s.files += %w( include/grpc/support/string_util.h ) |
||||
s.files += %w( include/grpc/support/subprocess.h ) |
||||
s.files += %w( include/grpc/support/sync.h ) |
||||
s.files += %w( include/grpc/support/sync_generic.h ) |
||||
s.files += %w( include/grpc/support/sync_posix.h ) |
||||
s.files += %w( include/grpc/support/sync_win32.h ) |
||||
s.files += %w( include/grpc/support/thd.h ) |
||||
s.files += %w( include/grpc/support/time.h ) |
||||
s.files += %w( include/grpc/support/tls.h ) |
||||
s.files += %w( include/grpc/support/tls_gcc.h ) |
||||
s.files += %w( include/grpc/support/tls_msvc.h ) |
||||
s.files += %w( include/grpc/support/tls_pthread.h ) |
||||
s.files += %w( include/grpc/support/useful.h ) |
||||
s.files += %w( src/core/profiling/timers.h ) |
||||
s.files += %w( src/core/support/block_annotate.h ) |
||||
s.files += %w( src/core/support/env.h ) |
||||
s.files += %w( src/core/support/file.h ) |
||||
s.files += %w( src/core/support/murmur_hash.h ) |
||||
s.files += %w( src/core/support/stack_lockfree.h ) |
||||
s.files += %w( src/core/support/string.h ) |
||||
s.files += %w( src/core/support/string_win32.h ) |
||||
s.files += %w( src/core/support/thd_internal.h ) |
||||
s.files += %w( src/core/support/time_precise.h ) |
||||
s.files += %w( src/core/profiling/basic_timers.c ) |
||||
s.files += %w( src/core/profiling/stap_timers.c ) |
||||
s.files += %w( src/core/support/alloc.c ) |
||||
s.files += %w( src/core/support/avl.c ) |
||||
s.files += %w( src/core/support/cmdline.c ) |
||||
s.files += %w( src/core/support/cpu_iphone.c ) |
||||
s.files += %w( src/core/support/cpu_linux.c ) |
||||
s.files += %w( src/core/support/cpu_posix.c ) |
||||
s.files += %w( src/core/support/cpu_windows.c ) |
||||
s.files += %w( src/core/support/env_linux.c ) |
||||
s.files += %w( src/core/support/env_posix.c ) |
||||
s.files += %w( src/core/support/env_win32.c ) |
||||
s.files += %w( src/core/support/file.c ) |
||||
s.files += %w( src/core/support/file_posix.c ) |
||||
s.files += %w( src/core/support/file_win32.c ) |
||||
s.files += %w( src/core/support/histogram.c ) |
||||
s.files += %w( src/core/support/host_port.c ) |
||||
s.files += %w( src/core/support/log.c ) |
||||
s.files += %w( src/core/support/log_android.c ) |
||||
s.files += %w( src/core/support/log_linux.c ) |
||||
s.files += %w( src/core/support/log_posix.c ) |
||||
s.files += %w( src/core/support/log_win32.c ) |
||||
s.files += %w( src/core/support/murmur_hash.c ) |
||||
s.files += %w( src/core/support/slice.c ) |
||||
s.files += %w( src/core/support/slice_buffer.c ) |
||||
s.files += %w( src/core/support/stack_lockfree.c ) |
||||
s.files += %w( src/core/support/string.c ) |
||||
s.files += %w( src/core/support/string_posix.c ) |
||||
s.files += %w( src/core/support/string_win32.c ) |
||||
s.files += %w( src/core/support/subprocess_posix.c ) |
||||
s.files += %w( src/core/support/sync.c ) |
||||
s.files += %w( src/core/support/sync_posix.c ) |
||||
s.files += %w( src/core/support/sync_win32.c ) |
||||
s.files += %w( src/core/support/thd.c ) |
||||
s.files += %w( src/core/support/thd_posix.c ) |
||||
s.files += %w( src/core/support/thd_win32.c ) |
||||
s.files += %w( src/core/support/time.c ) |
||||
s.files += %w( src/core/support/time_posix.c ) |
||||
s.files += %w( src/core/support/time_precise.c ) |
||||
s.files += %w( src/core/support/time_win32.c ) |
||||
s.files += %w( src/core/support/tls_pthread.c ) |
||||
s.files += %w( include/grpc/grpc_security.h ) |
||||
s.files += %w( include/grpc/byte_buffer.h ) |
||||
s.files += %w( include/grpc/byte_buffer_reader.h ) |
||||
s.files += %w( include/grpc/compression.h ) |
||||
s.files += %w( include/grpc/grpc.h ) |
||||
s.files += %w( include/grpc/status.h ) |
||||
s.files += %w( include/grpc/census.h ) |
||||
s.files += %w( src/core/security/auth_filters.h ) |
||||
s.files += %w( src/core/security/base64.h ) |
||||
s.files += %w( src/core/security/credentials.h ) |
||||
s.files += %w( src/core/security/handshake.h ) |
||||
s.files += %w( src/core/security/json_token.h ) |
||||
s.files += %w( src/core/security/jwt_verifier.h ) |
||||
s.files += %w( src/core/security/secure_endpoint.h ) |
||||
s.files += %w( src/core/security/security_connector.h ) |
||||
s.files += %w( src/core/security/security_context.h ) |
||||
s.files += %w( src/core/tsi/fake_transport_security.h ) |
||||
s.files += %w( src/core/tsi/ssl_transport_security.h ) |
||||
s.files += %w( src/core/tsi/ssl_types.h ) |
||||
s.files += %w( src/core/tsi/transport_security.h ) |
||||
s.files += %w( src/core/tsi/transport_security_interface.h ) |
||||
s.files += %w( src/core/census/grpc_filter.h ) |
||||
s.files += %w( src/core/channel/channel_args.h ) |
||||
s.files += %w( src/core/channel/channel_stack.h ) |
||||
s.files += %w( src/core/channel/client_channel.h ) |
||||
s.files += %w( src/core/channel/client_uchannel.h ) |
||||
s.files += %w( src/core/channel/compress_filter.h ) |
||||
s.files += %w( src/core/channel/connected_channel.h ) |
||||
s.files += %w( src/core/channel/context.h ) |
||||
s.files += %w( src/core/channel/http_client_filter.h ) |
||||
s.files += %w( src/core/channel/http_server_filter.h ) |
||||
s.files += %w( src/core/channel/subchannel_call_holder.h ) |
||||
s.files += %w( src/core/client_config/client_config.h ) |
||||
s.files += %w( src/core/client_config/connector.h ) |
||||
s.files += %w( src/core/client_config/initial_connect_string.h ) |
||||
s.files += %w( src/core/client_config/lb_policies/pick_first.h ) |
||||
s.files += %w( src/core/client_config/lb_policies/round_robin.h ) |
||||
s.files += %w( src/core/client_config/lb_policy.h ) |
||||
s.files += %w( src/core/client_config/lb_policy_factory.h ) |
||||
s.files += %w( src/core/client_config/lb_policy_registry.h ) |
||||
s.files += %w( src/core/client_config/resolver.h ) |
||||
s.files += %w( src/core/client_config/resolver_factory.h ) |
||||
s.files += %w( src/core/client_config/resolver_registry.h ) |
||||
s.files += %w( src/core/client_config/resolvers/dns_resolver.h ) |
||||
s.files += %w( src/core/client_config/resolvers/sockaddr_resolver.h ) |
||||
s.files += %w( src/core/client_config/subchannel.h ) |
||||
s.files += %w( src/core/client_config/subchannel_factory.h ) |
||||
s.files += %w( src/core/client_config/uri_parser.h ) |
||||
s.files += %w( src/core/compression/algorithm_metadata.h ) |
||||
s.files += %w( src/core/compression/message_compress.h ) |
||||
s.files += %w( src/core/debug/trace.h ) |
||||
s.files += %w( src/core/httpcli/format_request.h ) |
||||
s.files += %w( src/core/httpcli/httpcli.h ) |
||||
s.files += %w( src/core/httpcli/parser.h ) |
||||
s.files += %w( src/core/iomgr/closure.h ) |
||||
s.files += %w( src/core/iomgr/endpoint.h ) |
||||
s.files += %w( src/core/iomgr/endpoint_pair.h ) |
||||
s.files += %w( src/core/iomgr/exec_ctx.h ) |
||||
s.files += %w( src/core/iomgr/executor.h ) |
||||
s.files += %w( src/core/iomgr/fd_posix.h ) |
||||
s.files += %w( src/core/iomgr/iocp_windows.h ) |
||||
s.files += %w( src/core/iomgr/iomgr.h ) |
||||
s.files += %w( src/core/iomgr/iomgr_internal.h ) |
||||
s.files += %w( src/core/iomgr/iomgr_posix.h ) |
||||
s.files += %w( src/core/iomgr/pollset.h ) |
||||
s.files += %w( src/core/iomgr/pollset_posix.h ) |
||||
s.files += %w( src/core/iomgr/pollset_set.h ) |
||||
s.files += %w( src/core/iomgr/pollset_set_posix.h ) |
||||
s.files += %w( src/core/iomgr/pollset_set_windows.h ) |
||||
s.files += %w( src/core/iomgr/pollset_windows.h ) |
||||
s.files += %w( src/core/iomgr/resolve_address.h ) |
||||
s.files += %w( src/core/iomgr/sockaddr.h ) |
||||
s.files += %w( src/core/iomgr/sockaddr_posix.h ) |
||||
s.files += %w( src/core/iomgr/sockaddr_utils.h ) |
||||
s.files += %w( src/core/iomgr/sockaddr_win32.h ) |
||||
s.files += %w( src/core/iomgr/socket_utils_posix.h ) |
||||
s.files += %w( src/core/iomgr/socket_windows.h ) |
||||
s.files += %w( src/core/iomgr/tcp_client.h ) |
||||
s.files += %w( src/core/iomgr/tcp_posix.h ) |
||||
s.files += %w( src/core/iomgr/tcp_server.h ) |
||||
s.files += %w( src/core/iomgr/tcp_windows.h ) |
||||
s.files += %w( src/core/iomgr/time_averaged_stats.h ) |
||||
s.files += %w( src/core/iomgr/timer.h ) |
||||
s.files += %w( src/core/iomgr/timer_heap.h ) |
||||
s.files += %w( src/core/iomgr/timer_internal.h ) |
||||
s.files += %w( src/core/iomgr/udp_server.h ) |
||||
s.files += %w( src/core/iomgr/wakeup_fd_pipe.h ) |
||||
s.files += %w( src/core/iomgr/wakeup_fd_posix.h ) |
||||
s.files += %w( src/core/iomgr/workqueue.h ) |
||||
s.files += %w( src/core/iomgr/workqueue_posix.h ) |
||||
s.files += %w( src/core/iomgr/workqueue_windows.h ) |
||||
s.files += %w( src/core/json/json.h ) |
||||
s.files += %w( src/core/json/json_common.h ) |
||||
s.files += %w( src/core/json/json_reader.h ) |
||||
s.files += %w( src/core/json/json_writer.h ) |
||||
s.files += %w( src/core/statistics/census_interface.h ) |
||||
s.files += %w( src/core/statistics/census_rpc_stats.h ) |
||||
s.files += %w( src/core/surface/api_trace.h ) |
||||
s.files += %w( src/core/surface/call.h ) |
||||
s.files += %w( src/core/surface/call_test_only.h ) |
||||
s.files += %w( src/core/surface/channel.h ) |
||||
s.files += %w( src/core/surface/completion_queue.h ) |
||||
s.files += %w( src/core/surface/event_string.h ) |
||||
s.files += %w( src/core/surface/init.h ) |
||||
s.files += %w( src/core/surface/server.h ) |
||||
s.files += %w( src/core/surface/surface_trace.h ) |
||||
s.files += %w( src/core/transport/byte_stream.h ) |
||||
s.files += %w( src/core/transport/chttp2/alpn.h ) |
||||
s.files += %w( src/core/transport/chttp2/bin_encoder.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame_data.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame_goaway.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame_ping.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame_rst_stream.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame_settings.h ) |
||||
s.files += %w( src/core/transport/chttp2/frame_window_update.h ) |
||||
s.files += %w( src/core/transport/chttp2/hpack_encoder.h ) |
||||
s.files += %w( src/core/transport/chttp2/hpack_parser.h ) |
||||
s.files += %w( src/core/transport/chttp2/hpack_table.h ) |
||||
s.files += %w( src/core/transport/chttp2/http2_errors.h ) |
||||
s.files += %w( src/core/transport/chttp2/huffsyms.h ) |
||||
s.files += %w( src/core/transport/chttp2/incoming_metadata.h ) |
||||
s.files += %w( src/core/transport/chttp2/internal.h ) |
||||
s.files += %w( src/core/transport/chttp2/status_conversion.h ) |
||||
s.files += %w( src/core/transport/chttp2/stream_map.h ) |
||||
s.files += %w( src/core/transport/chttp2/timeout_encoding.h ) |
||||
s.files += %w( src/core/transport/chttp2/varint.h ) |
||||
s.files += %w( src/core/transport/chttp2_transport.h ) |
||||
s.files += %w( src/core/transport/connectivity_state.h ) |
||||
s.files += %w( src/core/transport/metadata.h ) |
||||
s.files += %w( src/core/transport/metadata_batch.h ) |
||||
s.files += %w( src/core/transport/static_metadata.h ) |
||||
s.files += %w( src/core/transport/transport.h ) |
||||
s.files += %w( src/core/transport/transport_impl.h ) |
||||
s.files += %w( src/core/census/aggregation.h ) |
||||
s.files += %w( src/core/census/context.h ) |
||||
s.files += %w( src/core/census/rpc_metric_id.h ) |
||||
s.files += %w( src/core/httpcli/httpcli_security_connector.c ) |
||||
s.files += %w( src/core/security/base64.c ) |
||||
s.files += %w( src/core/security/client_auth_filter.c ) |
||||
s.files += %w( src/core/security/credentials.c ) |
||||
s.files += %w( src/core/security/credentials_metadata.c ) |
||||
s.files += %w( src/core/security/credentials_posix.c ) |
||||
s.files += %w( src/core/security/credentials_win32.c ) |
||||
s.files += %w( src/core/security/google_default_credentials.c ) |
||||
s.files += %w( src/core/security/handshake.c ) |
||||
s.files += %w( src/core/security/json_token.c ) |
||||
s.files += %w( src/core/security/jwt_verifier.c ) |
||||
s.files += %w( src/core/security/secure_endpoint.c ) |
||||
s.files += %w( src/core/security/security_connector.c ) |
||||
s.files += %w( src/core/security/security_context.c ) |
||||
s.files += %w( src/core/security/server_auth_filter.c ) |
||||
s.files += %w( src/core/security/server_secure_chttp2.c ) |
||||
s.files += %w( src/core/surface/init_secure.c ) |
||||
s.files += %w( src/core/surface/secure_channel_create.c ) |
||||
s.files += %w( src/core/tsi/fake_transport_security.c ) |
||||
s.files += %w( src/core/tsi/ssl_transport_security.c ) |
||||
s.files += %w( src/core/tsi/transport_security.c ) |
||||
s.files += %w( src/core/census/grpc_context.c ) |
||||
s.files += %w( src/core/census/grpc_filter.c ) |
||||
s.files += %w( src/core/channel/channel_args.c ) |
||||
s.files += %w( src/core/channel/channel_stack.c ) |
||||
s.files += %w( src/core/channel/client_channel.c ) |
||||
s.files += %w( src/core/channel/client_uchannel.c ) |
||||
s.files += %w( src/core/channel/compress_filter.c ) |
||||
s.files += %w( src/core/channel/connected_channel.c ) |
||||
s.files += %w( src/core/channel/http_client_filter.c ) |
||||
s.files += %w( src/core/channel/http_server_filter.c ) |
||||
s.files += %w( src/core/channel/subchannel_call_holder.c ) |
||||
s.files += %w( src/core/client_config/client_config.c ) |
||||
s.files += %w( src/core/client_config/connector.c ) |
||||
s.files += %w( src/core/client_config/default_initial_connect_string.c ) |
||||
s.files += %w( src/core/client_config/initial_connect_string.c ) |
||||
s.files += %w( src/core/client_config/lb_policies/pick_first.c ) |
||||
s.files += %w( src/core/client_config/lb_policies/round_robin.c ) |
||||
s.files += %w( src/core/client_config/lb_policy.c ) |
||||
s.files += %w( src/core/client_config/lb_policy_factory.c ) |
||||
s.files += %w( src/core/client_config/lb_policy_registry.c ) |
||||
s.files += %w( src/core/client_config/resolver.c ) |
||||
s.files += %w( src/core/client_config/resolver_factory.c ) |
||||
s.files += %w( src/core/client_config/resolver_registry.c ) |
||||
s.files += %w( src/core/client_config/resolvers/dns_resolver.c ) |
||||
s.files += %w( src/core/client_config/resolvers/sockaddr_resolver.c ) |
||||
s.files += %w( src/core/client_config/subchannel.c ) |
||||
s.files += %w( src/core/client_config/subchannel_factory.c ) |
||||
s.files += %w( src/core/client_config/uri_parser.c ) |
||||
s.files += %w( src/core/compression/algorithm.c ) |
||||
s.files += %w( src/core/compression/message_compress.c ) |
||||
s.files += %w( src/core/debug/trace.c ) |
||||
s.files += %w( src/core/httpcli/format_request.c ) |
||||
s.files += %w( src/core/httpcli/httpcli.c ) |
||||
s.files += %w( src/core/httpcli/parser.c ) |
||||
s.files += %w( src/core/iomgr/closure.c ) |
||||
s.files += %w( src/core/iomgr/endpoint.c ) |
||||
s.files += %w( src/core/iomgr/endpoint_pair_posix.c ) |
||||
s.files += %w( src/core/iomgr/endpoint_pair_windows.c ) |
||||
s.files += %w( src/core/iomgr/exec_ctx.c ) |
||||
s.files += %w( src/core/iomgr/executor.c ) |
||||
s.files += %w( src/core/iomgr/fd_posix.c ) |
||||
s.files += %w( src/core/iomgr/iocp_windows.c ) |
||||
s.files += %w( src/core/iomgr/iomgr.c ) |
||||
s.files += %w( src/core/iomgr/iomgr_posix.c ) |
||||
s.files += %w( src/core/iomgr/iomgr_windows.c ) |
||||
s.files += %w( src/core/iomgr/pollset_multipoller_with_epoll.c ) |
||||
s.files += %w( src/core/iomgr/pollset_multipoller_with_poll_posix.c ) |
||||
s.files += %w( src/core/iomgr/pollset_posix.c ) |
||||
s.files += %w( src/core/iomgr/pollset_set_posix.c ) |
||||
s.files += %w( src/core/iomgr/pollset_set_windows.c ) |
||||
s.files += %w( src/core/iomgr/pollset_windows.c ) |
||||
s.files += %w( src/core/iomgr/resolve_address_posix.c ) |
||||
s.files += %w( src/core/iomgr/resolve_address_windows.c ) |
||||
s.files += %w( src/core/iomgr/sockaddr_utils.c ) |
||||
s.files += %w( src/core/iomgr/socket_utils_common_posix.c ) |
||||
s.files += %w( src/core/iomgr/socket_utils_linux.c ) |
||||
s.files += %w( src/core/iomgr/socket_utils_posix.c ) |
||||
s.files += %w( src/core/iomgr/socket_windows.c ) |
||||
s.files += %w( src/core/iomgr/tcp_client_posix.c ) |
||||
s.files += %w( src/core/iomgr/tcp_client_windows.c ) |
||||
s.files += %w( src/core/iomgr/tcp_posix.c ) |
||||
s.files += %w( src/core/iomgr/tcp_server_posix.c ) |
||||
s.files += %w( src/core/iomgr/tcp_server_windows.c ) |
||||
s.files += %w( src/core/iomgr/tcp_windows.c ) |
||||
s.files += %w( src/core/iomgr/time_averaged_stats.c ) |
||||
s.files += %w( src/core/iomgr/timer.c ) |
||||
s.files += %w( src/core/iomgr/timer_heap.c ) |
||||
s.files += %w( src/core/iomgr/udp_server.c ) |
||||
s.files += %w( src/core/iomgr/wakeup_fd_eventfd.c ) |
||||
s.files += %w( src/core/iomgr/wakeup_fd_nospecial.c ) |
||||
s.files += %w( src/core/iomgr/wakeup_fd_pipe.c ) |
||||
s.files += %w( src/core/iomgr/wakeup_fd_posix.c ) |
||||
s.files += %w( src/core/iomgr/workqueue_posix.c ) |
||||
s.files += %w( src/core/iomgr/workqueue_windows.c ) |
||||
s.files += %w( src/core/json/json.c ) |
||||
s.files += %w( src/core/json/json_reader.c ) |
||||
s.files += %w( src/core/json/json_string.c ) |
||||
s.files += %w( src/core/json/json_writer.c ) |
||||
s.files += %w( src/core/surface/api_trace.c ) |
||||
s.files += %w( src/core/surface/byte_buffer.c ) |
||||
s.files += %w( src/core/surface/byte_buffer_reader.c ) |
||||
s.files += %w( src/core/surface/call.c ) |
||||
s.files += %w( src/core/surface/call_details.c ) |
||||
s.files += %w( src/core/surface/call_log_batch.c ) |
||||
s.files += %w( src/core/surface/channel.c ) |
||||
s.files += %w( src/core/surface/channel_connectivity.c ) |
||||
s.files += %w( src/core/surface/channel_create.c ) |
||||
s.files += %w( src/core/surface/channel_ping.c ) |
||||
s.files += %w( src/core/surface/completion_queue.c ) |
||||
s.files += %w( src/core/surface/event_string.c ) |
||||
s.files += %w( src/core/surface/init.c ) |
||||
s.files += %w( src/core/surface/lame_client.c ) |
||||
s.files += %w( src/core/surface/metadata_array.c ) |
||||
s.files += %w( src/core/surface/server.c ) |
||||
s.files += %w( src/core/surface/server_chttp2.c ) |
||||
s.files += %w( src/core/surface/server_create.c ) |
||||
s.files += %w( src/core/surface/validate_metadata.c ) |
||||
s.files += %w( src/core/surface/version.c ) |
||||
s.files += %w( src/core/transport/byte_stream.c ) |
||||
s.files += %w( src/core/transport/chttp2/alpn.c ) |
||||
s.files += %w( src/core/transport/chttp2/bin_encoder.c ) |
||||
s.files += %w( src/core/transport/chttp2/frame_data.c ) |
||||
s.files += %w( src/core/transport/chttp2/frame_goaway.c ) |
||||
s.files += %w( src/core/transport/chttp2/frame_ping.c ) |
||||
s.files += %w( src/core/transport/chttp2/frame_rst_stream.c ) |
||||
s.files += %w( src/core/transport/chttp2/frame_settings.c ) |
||||
s.files += %w( src/core/transport/chttp2/frame_window_update.c ) |
||||
s.files += %w( src/core/transport/chttp2/hpack_encoder.c ) |
||||
s.files += %w( src/core/transport/chttp2/hpack_parser.c ) |
||||
s.files += %w( src/core/transport/chttp2/hpack_table.c ) |
||||
s.files += %w( src/core/transport/chttp2/huffsyms.c ) |
||||
s.files += %w( src/core/transport/chttp2/incoming_metadata.c ) |
||||
s.files += %w( src/core/transport/chttp2/parsing.c ) |
||||
s.files += %w( src/core/transport/chttp2/status_conversion.c ) |
||||
s.files += %w( src/core/transport/chttp2/stream_lists.c ) |
||||
s.files += %w( src/core/transport/chttp2/stream_map.c ) |
||||
s.files += %w( src/core/transport/chttp2/timeout_encoding.c ) |
||||
s.files += %w( src/core/transport/chttp2/varint.c ) |
||||
s.files += %w( src/core/transport/chttp2/writing.c ) |
||||
s.files += %w( src/core/transport/chttp2_transport.c ) |
||||
s.files += %w( src/core/transport/connectivity_state.c ) |
||||
s.files += %w( src/core/transport/metadata.c ) |
||||
s.files += %w( src/core/transport/metadata_batch.c ) |
||||
s.files += %w( src/core/transport/static_metadata.c ) |
||||
s.files += %w( src/core/transport/transport.c ) |
||||
s.files += %w( src/core/transport/transport_op_string.c ) |
||||
s.files += %w( src/core/census/context.c ) |
||||
s.files += %w( src/core/census/initialize.c ) |
||||
s.files += %w( src/core/census/operation.c ) |
||||
s.files += %w( src/core/census/tracing.c ) |
||||
end |
@ -0,0 +1,73 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2016, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following disclaimer |
||||
* in the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
*/ |
||||
|
||||
#include <stdlib.h> |
||||
#include <string.h> |
||||
|
||||
#include <grpc/support/port_platform.h> |
||||
|
||||
static int conforms_to(const char *s, size_t len, const uint8_t *legal_bits) { |
||||
const char *p = s; |
||||
const char *e = s + len; |
||||
for (; p != e; p++) { |
||||
int idx = *p; |
||||
int byte = idx / 8; |
||||
int bit = idx % 8; |
||||
if ((legal_bits[byte] & (1 << bit)) == 0) return 0; |
||||
} |
||||
return 1; |
||||
} |
||||
|
||||
int grpc_header_key_is_legal(const char *key, size_t length) { |
||||
static const uint8_t legal_header_bits[256 / 8] = { |
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xff, 0x03, 0x00, 0x00, 0x00, |
||||
0x80, 0xfe, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
||||
if (length == 0) { |
||||
return 0; |
||||
} |
||||
return conforms_to(key, length, legal_header_bits); |
||||
} |
||||
|
||||
int grpc_header_nonbin_value_is_legal(const char *value, size_t length) { |
||||
static const uint8_t legal_header_bits[256 / 8] = { |
||||
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
||||
0xff, 0xff, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
||||
return conforms_to(value, length, legal_header_bits); |
||||
} |
||||
|
||||
int grpc_is_binary_header(const char *key, size_t length) { |
||||
if (length < 5) return 0; |
||||
return 0 == memcmp(key + length - 4, "-bin", 4); |
||||
} |
@ -1,6 +0,0 @@ |
||||
-I. |
||||
-Ipb |
||||
--backtrace |
||||
--require spec_helper |
||||
--format documentation |
||||
--color |
@ -0,0 +1,153 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2016, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following disclaimer |
||||
* in the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
*/ |
||||
|
||||
#include "rb_event_thread.h" |
||||
|
||||
#include <stdbool.h> |
||||
|
||||
#include <ruby/ruby.h> |
||||
#include <ruby/thread.h> |
||||
#include <grpc/support/alloc.h> |
||||
#include <grpc/support/sync.h> |
||||
#include <grpc/support/time.h> |
||||
#include <grpc/support/log.h> |
||||
|
||||
typedef struct grpc_rb_event { |
||||
// callback will be called with argument while holding the GVL
|
||||
void (*callback)(void*); |
||||
void *argument; |
||||
|
||||
struct grpc_rb_event *next; |
||||
} grpc_rb_event; |
||||
|
||||
typedef struct grpc_rb_event_queue { |
||||
grpc_rb_event *head; |
||||
grpc_rb_event *tail; |
||||
|
||||
gpr_mu mu; |
||||
gpr_cv cv; |
||||
|
||||
// Indicates that the thread should stop waiting
|
||||
bool abort; |
||||
} grpc_rb_event_queue; |
||||
|
||||
static grpc_rb_event_queue event_queue; |
||||
|
||||
void grpc_rb_event_queue_enqueue(void (*callback)(void*), |
||||
void *argument) { |
||||
grpc_rb_event *event = gpr_malloc(sizeof(grpc_rb_event)); |
||||
event->callback = callback; |
||||
event->argument = argument; |
||||
event->next = NULL; |
||||
gpr_mu_lock(&event_queue.mu); |
||||
if (event_queue.tail == NULL) { |
||||
event_queue.head = event_queue.tail = event; |
||||
} else { |
||||
event_queue.tail->next = event; |
||||
event_queue.tail = event; |
||||
} |
||||
gpr_cv_signal(&event_queue.cv); |
||||
gpr_mu_unlock(&event_queue.mu); |
||||
} |
||||
|
||||
static grpc_rb_event *grpc_rb_event_queue_dequeue() { |
||||
grpc_rb_event *event; |
||||
if (event_queue.head == NULL) { |
||||
event = NULL; |
||||
} else { |
||||
event = event_queue.head; |
||||
if (event_queue.head->next == NULL) { |
||||
event_queue.head = event_queue.tail = NULL; |
||||
} else { |
||||
event_queue.head = event_queue.head->next; |
||||
} |
||||
} |
||||
return event; |
||||
} |
||||
|
||||
static void grpc_rb_event_queue_destroy() { |
||||
gpr_mu_destroy(&event_queue.mu); |
||||
gpr_cv_destroy(&event_queue.cv); |
||||
} |
||||
|
||||
static void *grpc_rb_wait_for_event_no_gil(void *param) { |
||||
grpc_rb_event *event = NULL; |
||||
gpr_mu_lock(&event_queue.mu); |
||||
while ((event = grpc_rb_event_queue_dequeue()) == NULL) { |
||||
gpr_cv_wait(&event_queue.cv, |
||||
&event_queue.mu, |
||||
gpr_inf_future(GPR_CLOCK_REALTIME)); |
||||
if (event_queue.abort) { |
||||
gpr_mu_unlock(&event_queue.mu); |
||||
return NULL; |
||||
} |
||||
} |
||||
gpr_mu_unlock(&event_queue.mu); |
||||
return event; |
||||
} |
||||
|
||||
static void grpc_rb_event_unblocking_func(void *arg) { |
||||
gpr_mu_lock(&event_queue.mu); |
||||
event_queue.abort = true; |
||||
gpr_cv_signal(&event_queue.cv); |
||||
gpr_mu_unlock(&event_queue.mu); |
||||
} |
||||
|
||||
/* This is the implementation of the thread that handles auth metadata plugin
|
||||
* events */ |
||||
static VALUE grpc_rb_event_thread(VALUE arg) { |
||||
grpc_rb_event *event; |
||||
while(true) { |
||||
event = (grpc_rb_event*)rb_thread_call_without_gvl( |
||||
grpc_rb_wait_for_event_no_gil, NULL, |
||||
grpc_rb_event_unblocking_func, NULL); |
||||
if (event == NULL) { |
||||
// Indicates that the thread needs to shut down
|
||||
break; |
||||
} else { |
||||
event->callback(event->argument); |
||||
gpr_free(event); |
||||
} |
||||
} |
||||
grpc_rb_event_queue_destroy(); |
||||
return Qnil; |
||||
} |
||||
|
||||
void grpc_rb_event_queue_thread_start() { |
||||
event_queue.head = event_queue.tail = NULL; |
||||
event_queue.abort = false; |
||||
gpr_mu_init(&event_queue.mu); |
||||
gpr_cv_init(&event_queue.cv); |
||||
|
||||
rb_thread_create(grpc_rb_event_thread, NULL); |
||||
} |
@ -0,0 +1,37 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2016, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following disclaimer |
||||
* in the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
*/ |
||||
|
||||
void grpc_rb_event_queue_thread_start(); |
||||
|
||||
void grpc_rb_event_queue_enqueue(void (*callback)(void*), |
||||
void *argument); |
@ -1,45 +0,0 @@ |
||||
# -*- ruby -*- |
||||
# encoding: utf-8 |
||||
$LOAD_PATH.push File.expand_path('../lib', __FILE__) |
||||
require 'grpc/version' |
||||
|
||||
Gem::Specification.new do |s| |
||||
s.name = 'grpc' |
||||
s.version = GRPC::VERSION |
||||
s.authors = ['gRPC Authors'] |
||||
s.email = 'temiola@google.com' |
||||
s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby' |
||||
s.summary = 'GRPC system in Ruby' |
||||
s.description = 'Send RPCs from Ruby using GRPC' |
||||
s.license = 'BSD-3-Clause' |
||||
|
||||
s.required_ruby_version = '>= 2.0.0' |
||||
s.requirements << 'libgrpc ~> 0.11.0 needs to be installed' |
||||
|
||||
s.files = %w( Rakefile ) |
||||
s.files += Dir.glob('bin/**/*') |
||||
s.files += Dir.glob('ext/**/*') |
||||
s.files += Dir.glob('lib/**/*') |
||||
s.files += Dir.glob('pb/**/*') |
||||
s.test_files = Dir.glob('spec/**/*') |
||||
%w(math noproto).each do |b| |
||||
s.executables += ["#{b}_client.rb", "#{b}_server.rb"] |
||||
end |
||||
s.executables += %w(grpc_ruby_interop_client grpc_ruby_interop_server) |
||||
s.require_paths = %w( bin lib pb ) |
||||
s.platform = Gem::Platform::RUBY |
||||
|
||||
s.add_dependency 'google-protobuf', '~> 3.0.0alpha.1.1' |
||||
s.add_dependency 'googleauth', '~> 0.4' |
||||
|
||||
s.add_development_dependency 'bundler', '~> 1.9' |
||||
s.add_development_dependency 'logging', '~> 2.0' |
||||
s.add_development_dependency 'simplecov', '~> 0.9' |
||||
s.add_development_dependency 'rake', '~> 10.4' |
||||
s.add_development_dependency 'rake-compiler', '~> 0.9' |
||||
s.add_development_dependency 'rspec', '~> 3.2' |
||||
s.add_development_dependency 'rubocop', '~> 0.30.0' |
||||
s.add_development_dependency 'signet', '~>0.6.0' |
||||
|
||||
s.extensions = %w(ext/grpc/extconf.rb) |
||||
end |
@ -0,0 +1,58 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
# -*- ruby -*- |
||||
# encoding: utf-8 |
||||
$LOAD_PATH.push File.expand_path('../src/ruby/lib', __FILE__) |
||||
require 'grpc/version' |
||||
|
||||
Gem::Specification.new do |s| |
||||
s.name = 'grpc' |
||||
s.version = GRPC::VERSION |
||||
s.authors = ['gRPC Authors'] |
||||
s.email = 'temiola@google.com' |
||||
s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby' |
||||
s.summary = 'GRPC system in Ruby' |
||||
s.description = 'Send RPCs from Ruby using GRPC' |
||||
s.license = 'BSD-3-Clause' |
||||
|
||||
s.required_ruby_version = '>= 2.0.0' |
||||
s.requirements << 'libgrpc ~> 0.11.0 needs to be installed' |
||||
|
||||
s.files = %w( Rakefile Makefile ) |
||||
s.files += %w( etc/roots.pem ) |
||||
s.files += Dir.glob('src/ruby/bin/**/*') |
||||
s.files += Dir.glob('src/ruby/ext/**/*') |
||||
s.files += Dir.glob('src/ruby/lib/**/*') |
||||
s.files += Dir.glob('src/ruby/pb/**/*') |
||||
s.files += Dir.glob('include/grpc/**/*') |
||||
s.test_files = Dir.glob('src/ruby/spec/**/*') |
||||
s.bindir = 'src/ruby/bin' |
||||
${'%'}w(math noproto).each do |b| |
||||
s.executables += ["#{b}_client.rb", "#{b}_server.rb"] |
||||
end |
||||
s.executables += %w(grpc_ruby_interop_client grpc_ruby_interop_server) |
||||
s.require_paths = %w( src/ruby/bin src/ruby/lib src/ruby/pb ) |
||||
s.platform = Gem::Platform::RUBY |
||||
|
||||
s.add_dependency 'google-protobuf', '~> 3.0.0alpha.1.1' |
||||
s.add_dependency 'googleauth', '~> 0.5.1' |
||||
|
||||
s.add_development_dependency 'bundler', '~> 1.9' |
||||
s.add_development_dependency 'logging', '~> 2.0' |
||||
s.add_development_dependency 'simplecov', '~> 0.9' |
||||
s.add_development_dependency 'rake', '~> 10.4' |
||||
s.add_development_dependency 'rake-compiler', '~> 0.9' |
||||
s.add_development_dependency 'rspec', '~> 3.2' |
||||
s.add_development_dependency 'rubocop', '~> 0.30.0' |
||||
s.add_development_dependency 'signet', '~>0.7.0' |
||||
|
||||
s.extensions = %w(src/ruby/ext/grpc/extconf.rb) |
||||
|
||||
% for lib in libs: |
||||
% if lib.name in ('gpr', 'grpc'): |
||||
% for file in lib.public_headers + lib.headers + lib.src: |
||||
s.files += %w( ${file} ) |
||||
% endfor |
||||
% endif |
||||
% endfor |
||||
end |
@ -0,0 +1,74 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
{ |
||||
"name": "grpc", |
||||
"version": "0.12.0", |
||||
"author": "Google Inc.", |
||||
"description": "gRPC Library for Node", |
||||
"homepage": "http://www.grpc.io/", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "https://github.com/grpc/grpc.git" |
||||
}, |
||||
"bugs": "https://github.com/grpc/grpc/issues", |
||||
"contributors": [ |
||||
{ |
||||
"name": "Michael Lumish", |
||||
"email": "mlumish@google.com" |
||||
} |
||||
], |
||||
"directories": { |
||||
"lib": "src/node/src" |
||||
}, |
||||
"scripts": { |
||||
"lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js", |
||||
"test": "./node_modules/.bin/mocha src/node/test && npm run-script lint", |
||||
"gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json", |
||||
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test" |
||||
}, |
||||
"dependencies": { |
||||
"bindings": "^1.2.0", |
||||
"lodash": "^3.9.3", |
||||
"nan": "^2.0.0", |
||||
"protobufjs": "^4.0.0" |
||||
}, |
||||
"devDependencies": { |
||||
"async": "^1.5.0", |
||||
"google-auth-library": "^0.9.2", |
||||
"istanbul": "^0.3.21", |
||||
"jsdoc": "^3.3.2", |
||||
"jshint": "^2.5.0", |
||||
"minimist": "^1.1.0", |
||||
"mocha": "^2.3.4", |
||||
"mocha-jenkins-reporter": "^0.1.9", |
||||
"mustache": "^2.0.0", |
||||
"poisson-process": "^0.2.1" |
||||
}, |
||||
"engines": { |
||||
"node": ">=0.10.13" |
||||
}, |
||||
"files": [ |
||||
"LICENSE", |
||||
"src/node/README.md", |
||||
"src/node/health_check", |
||||
"src/proto", |
||||
"etc", |
||||
% for module in node_modules: |
||||
% for file in module.headers + module.src + module.js: |
||||
"${file}", |
||||
% endfor |
||||
% for dep in module.transitive_deps: |
||||
% for lib in libs: |
||||
% if lib.name == dep: |
||||
% for file in lib.get('public_headers', []) + lib.headers + lib.src: |
||||
"${file}", |
||||
% endfor |
||||
% endif |
||||
% endfor |
||||
% endfor |
||||
% endfor |
||||
"binding.gyp" |
||||
], |
||||
"main": "src/node/index.js", |
||||
"license": "BSD-3-Clause" |
||||
} |
@ -0,0 +1,82 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2015-2016, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following disclaimer |
||||
* in the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
*/ |
||||
|
||||
#include <set> |
||||
|
||||
#include <grpc/support/log.h> |
||||
|
||||
#include "test/cpp/qps/driver.h" |
||||
#include "test/cpp/qps/report.h" |
||||
#include "test/cpp/util/benchmark_config.h" |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
|
||||
static const int WARMUP = 5; |
||||
static const int BENCHMARK = 10; |
||||
|
||||
static void RunGenericAsyncStreamingPingPong() { |
||||
gpr_log(GPR_INFO, "Running Generic Async Streaming Ping Pong"); |
||||
|
||||
ClientConfig client_config; |
||||
client_config.set_client_type(ASYNC_CLIENT); |
||||
client_config.set_outstanding_rpcs_per_channel(1); |
||||
client_config.set_client_channels(1); |
||||
client_config.set_async_client_threads(1); |
||||
client_config.set_rpc_type(STREAMING); |
||||
client_config.mutable_load_params()->mutable_closed_loop(); |
||||
auto bbuf = client_config.mutable_payload_config()->mutable_bytebuf_params(); |
||||
bbuf->set_resp_size(0); |
||||
bbuf->set_req_size(0); |
||||
|
||||
ServerConfig server_config; |
||||
server_config.set_server_type(ASYNC_SERVER); |
||||
server_config.set_host("localhost"); |
||||
server_config.set_async_server_threads(1); |
||||
|
||||
const auto result = |
||||
RunScenario(client_config, 1, server_config, 1, WARMUP, BENCHMARK, -2); |
||||
|
||||
GetReporter()->ReportQPS(*result); |
||||
GetReporter()->ReportLatency(*result); |
||||
} |
||||
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
||||
|
||||
int main(int argc, char** argv) { |
||||
grpc::testing::InitBenchmark(&argc, &argv, true); |
||||
|
||||
grpc::testing::RunGenericAsyncStreamingPingPong(); |
||||
return 0; |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue