grpc 0.13.0.pre1.1-universal-darwin

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.

Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/etc/roots.pem +5114 -0
  3. data/grpc_c.32.ruby +0 -0
  4. data/grpc_c.64.ruby +0 -0
  5. data/src/ruby/bin/apis/google/protobuf/empty.rb +44 -0
  6. data/src/ruby/bin/apis/pubsub_demo.rb +256 -0
  7. data/src/ruby/bin/apis/tech/pubsub/proto/pubsub.rb +174 -0
  8. data/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb +103 -0
  9. data/src/ruby/bin/grpc_ruby_interop_client +33 -0
  10. data/src/ruby/bin/grpc_ruby_interop_server +33 -0
  11. data/src/ruby/bin/interop/interop_client.rb +51 -0
  12. data/src/ruby/bin/interop/interop_server.rb +50 -0
  13. data/src/ruby/bin/math.rb +32 -0
  14. data/src/ruby/bin/math_client.rb +147 -0
  15. data/src/ruby/bin/math_server.rb +206 -0
  16. data/src/ruby/bin/math_services.rb +27 -0
  17. data/src/ruby/bin/noproto_client.rb +108 -0
  18. data/src/ruby/bin/noproto_server.rb +112 -0
  19. data/src/ruby/ext/grpc/extconf.rb +129 -0
  20. data/src/ruby/ext/grpc/rb_byte_buffer.c +70 -0
  21. data/src/ruby/ext/grpc/rb_byte_buffer.h +47 -0
  22. data/src/ruby/ext/grpc/rb_call.c +908 -0
  23. data/src/ruby/ext/grpc/rb_call.h +66 -0
  24. data/src/ruby/ext/grpc/rb_call_credentials.c +319 -0
  25. data/src/ruby/ext/grpc/rb_call_credentials.h +46 -0
  26. data/src/ruby/ext/grpc/rb_channel.c +432 -0
  27. data/src/ruby/ext/grpc/rb_channel.h +47 -0
  28. data/src/ruby/ext/grpc/rb_channel_args.c +169 -0
  29. data/src/ruby/ext/grpc/rb_channel_args.h +53 -0
  30. data/src/ruby/ext/grpc/rb_channel_credentials.c +268 -0
  31. data/src/ruby/ext/grpc/rb_channel_credentials.h +47 -0
  32. data/src/ruby/ext/grpc/rb_completion_queue.c +183 -0
  33. data/src/ruby/ext/grpc/rb_completion_queue.h +55 -0
  34. data/src/ruby/ext/grpc/rb_event_thread.c +158 -0
  35. data/src/ruby/ext/grpc/rb_event_thread.h +37 -0
  36. data/src/ruby/ext/grpc/rb_grpc.c +336 -0
  37. data/src/ruby/ext/grpc/rb_grpc.h +85 -0
  38. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +560 -0
  39. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +843 -0
  40. data/src/ruby/ext/grpc/rb_loader.c +72 -0
  41. data/src/ruby/ext/grpc/rb_loader.h +40 -0
  42. data/src/ruby/ext/grpc/rb_server.c +400 -0
  43. data/src/ruby/ext/grpc/rb_server.h +47 -0
  44. data/src/ruby/ext/grpc/rb_server_credentials.c +284 -0
  45. data/src/ruby/ext/grpc/rb_server_credentials.h +47 -0
  46. data/src/ruby/lib/grpc.rb +44 -0
  47. data/src/ruby/lib/grpc/2.0/grpc_c.bundle +0 -0
  48. data/src/ruby/lib/grpc/2.1/grpc_c.bundle +0 -0
  49. data/src/ruby/lib/grpc/2.2/grpc_c.bundle +0 -0
  50. data/src/ruby/lib/grpc/2.3/grpc_c.bundle +0 -0
  51. data/src/ruby/lib/grpc/core/time_consts.rb +71 -0
  52. data/src/ruby/lib/grpc/errors.rb +62 -0
  53. data/src/ruby/lib/grpc/generic/active_call.rb +488 -0
  54. data/src/ruby/lib/grpc/generic/bidi_call.rb +218 -0
  55. data/src/ruby/lib/grpc/generic/client_stub.rb +471 -0
  56. data/src/ruby/lib/grpc/generic/rpc_desc.rb +147 -0
  57. data/src/ruby/lib/grpc/generic/rpc_server.rb +504 -0
  58. data/src/ruby/lib/grpc/generic/service.rb +234 -0
  59. data/src/ruby/lib/grpc/grpc.rb +34 -0
  60. data/src/ruby/lib/grpc/logconfig.rb +59 -0
  61. data/src/ruby/lib/grpc/notifier.rb +60 -0
  62. data/src/ruby/lib/grpc/version.rb +33 -0
  63. data/src/ruby/pb/README.md +42 -0
  64. data/src/ruby/pb/generate_proto_ruby.sh +51 -0
  65. data/src/ruby/pb/grpc/health/checker.rb +75 -0
  66. data/src/ruby/pb/grpc/health/v1alpha/health.rb +29 -0
  67. data/src/ruby/pb/grpc/health/v1alpha/health_services.rb +28 -0
  68. data/src/ruby/pb/test/client.rb +469 -0
  69. data/src/ruby/pb/test/proto/empty.rb +15 -0
  70. data/src/ruby/pb/test/proto/messages.rb +80 -0
  71. data/src/ruby/pb/test/proto/test.rb +14 -0
  72. data/src/ruby/pb/test/proto/test_services.rb +64 -0
  73. data/src/ruby/pb/test/server.rb +253 -0
  74. data/src/ruby/spec/call_credentials_spec.rb +57 -0
  75. data/src/ruby/spec/call_spec.rb +163 -0
  76. data/src/ruby/spec/channel_credentials_spec.rb +97 -0
  77. data/src/ruby/spec/channel_spec.rb +177 -0
  78. data/src/ruby/spec/client_server_spec.rb +475 -0
  79. data/src/ruby/spec/completion_queue_spec.rb +42 -0
  80. data/src/ruby/spec/generic/active_call_spec.rb +373 -0
  81. data/src/ruby/spec/generic/client_stub_spec.rb +476 -0
  82. data/src/ruby/spec/generic/rpc_desc_spec.rb +331 -0
  83. data/src/ruby/spec/generic/rpc_server_pool_spec.rb +138 -0
  84. data/src/ruby/spec/generic/rpc_server_spec.rb +576 -0
  85. data/src/ruby/spec/generic/service_spec.rb +345 -0
  86. data/src/ruby/spec/pb/health/checker_spec.rb +232 -0
  87. data/src/ruby/spec/server_credentials_spec.rb +94 -0
  88. data/src/ruby/spec/server_spec.rb +209 -0
  89. data/src/ruby/spec/spec_helper.rb +69 -0
  90. data/src/ruby/spec/testdata/README +1 -0
  91. data/src/ruby/spec/testdata/ca.pem +15 -0
  92. data/src/ruby/spec/testdata/server1.key +16 -0
  93. data/src/ruby/spec/testdata/server1.pem +16 -0
  94. data/src/ruby/spec/time_consts_spec.rb +89 -0
  95. metadata +319 -0
@@ -0,0 +1,103 @@
1
+ # Copyright 2015, Google Inc.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are
6
+ # met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright
9
+ # notice, this list of conditions and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above
11
+ # copyright notice, this list of conditions and the following disclaimer
12
+ # in the documentation and/or other materials provided with the
13
+ # distribution.
14
+ # * Neither the name of Google Inc. nor the names of its
15
+ # contributors may be used to endorse or promote products derived from
16
+ # this software without specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+
30
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
31
+ # Source: tech/pubsub/proto/pubsub.proto for package 'tech.pubsub'
32
+
33
+ require 'grpc'
34
+ require 'google/protobuf/empty'
35
+ require 'tech/pubsub/proto/pubsub'
36
+
37
+ module Tech
38
+ module Pubsub
39
+ module PublisherService
40
+
41
+ # TODO: add proto service documentation here
42
+ class Service
43
+
44
+ include GRPC::GenericService
45
+
46
+ self.marshal_class_method = :encode
47
+ self.unmarshal_class_method = :decode
48
+ self.service_name = 'tech.pubsub.PublisherService'
49
+
50
+ rpc :CreateTopic, Topic, Topic
51
+ rpc :Publish, PublishRequest, Google::Protobuf::Empty
52
+ rpc :PublishBatch, PublishBatchRequest, PublishBatchResponse
53
+ rpc :GetTopic, GetTopicRequest, Topic
54
+ rpc :ListTopics, ListTopicsRequest, ListTopicsResponse
55
+ rpc :DeleteTopic, DeleteTopicRequest, Google::Protobuf::Empty
56
+ end
57
+
58
+ Stub = Service.rpc_stub_class
59
+ end
60
+ module SubscriberService
61
+
62
+ # TODO: add proto service documentation here
63
+ class Service
64
+
65
+ include GRPC::GenericService
66
+
67
+ self.marshal_class_method = :encode
68
+ self.unmarshal_class_method = :decode
69
+ self.service_name = 'tech.pubsub.SubscriberService'
70
+
71
+ rpc :CreateSubscription, Subscription, Subscription
72
+ rpc :GetSubscription, GetSubscriptionRequest, Subscription
73
+ rpc :ListSubscriptions, ListSubscriptionsRequest, ListSubscriptionsResponse
74
+ rpc :DeleteSubscription, DeleteSubscriptionRequest, Google::Protobuf::Empty
75
+ rpc :TruncateSubscription, TruncateSubscriptionRequest, Google::Protobuf::Empty
76
+ rpc :ModifyPushConfig, ModifyPushConfigRequest, Google::Protobuf::Empty
77
+ rpc :Pull, PullRequest, PullResponse
78
+ rpc :PullBatch, PullBatchRequest, PullBatchResponse
79
+ rpc :ModifyAckDeadline, ModifyAckDeadlineRequest, Google::Protobuf::Empty
80
+ rpc :Acknowledge, AcknowledgeRequest, Google::Protobuf::Empty
81
+ rpc :Nack, NackRequest, Google::Protobuf::Empty
82
+ end
83
+
84
+ Stub = Service.rpc_stub_class
85
+ end
86
+ module PushEndpointService
87
+
88
+ # TODO: add proto service documentation here
89
+ class Service
90
+
91
+ include GRPC::GenericService
92
+
93
+ self.marshal_class_method = :encode
94
+ self.unmarshal_class_method = :decode
95
+ self.service_name = 'tech.pubsub.PushEndpointService'
96
+
97
+ rpc :HandlePubsubEvent, PubsubEvent, Google::Protobuf::Empty
98
+ end
99
+
100
+ Stub = Service.rpc_stub_class
101
+ end
102
+ end
103
+ end
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright 2015, Google Inc.
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are
8
+ # met:
9
+ #
10
+ # * Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # * Redistributions in binary form must reproduce the above
13
+ # copyright notice, this list of conditions and the following disclaimer
14
+ # in the documentation and/or other materials provided with the
15
+ # distribution.
16
+ # * Neither the name of Google Inc. nor the names of its
17
+ # contributors may be used to endorse or promote products derived from
18
+ # this software without specific prior written permission.
19
+ #
20
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+ # Provides a gem binary entry point for the interop client.
33
+ require 'test/client'
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright 2015, Google Inc.
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are
8
+ # met:
9
+ #
10
+ # * Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # * Redistributions in binary form must reproduce the above
13
+ # copyright notice, this list of conditions and the following disclaimer
14
+ # in the documentation and/or other materials provided with the
15
+ # distribution.
16
+ # * Neither the name of Google Inc. nor the names of its
17
+ # contributors may be used to endorse or promote products derived from
18
+ # this software without specific prior written permission.
19
+ #
20
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+ # Provides a gem binary entry point for the interop server
33
+ require 'test/server'
@@ -0,0 +1,51 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright 2015, Google Inc.
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are
8
+ # met:
9
+ #
10
+ # * Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # * Redistributions in binary form must reproduce the above
13
+ # copyright notice, this list of conditions and the following disclaimer
14
+ # in the documentation and/or other materials provided with the
15
+ # distribution.
16
+ # * Neither the name of Google Inc. nor the names of its
17
+ # contributors may be used to endorse or promote products derived from
18
+ # this software without specific prior written permission.
19
+ #
20
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+ # #######################################################################
33
+ # DEPRECATED: The behaviour in this file has been moved to pb/test/client.rb
34
+ #
35
+ # This file remains to support existing tools and scripts that use it.
36
+ # ######################################################################
37
+ #
38
+ # interop_client is a testing tool that accesses a gRPC interop testing
39
+ # server and runs a test on it.
40
+ #
41
+ # Helps validate interoperation b/w different gRPC implementations.
42
+ #
43
+ # Usage: $ path/to/interop_client.rb --server_host=<hostname> \
44
+ # --server_port=<port> \
45
+ # --test_case=<testcase_name>
46
+
47
+ this_dir = File.expand_path(File.dirname(__FILE__))
48
+ pb_dir = File.join(File.dirname(File.dirname(this_dir)), 'pb')
49
+ $LOAD_PATH.unshift(pb_dir) unless $LOAD_PATH.include?(pb_dir)
50
+
51
+ require 'test/client'
@@ -0,0 +1,50 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright 2015, Google Inc.
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are
8
+ # met:
9
+ #
10
+ # * Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # * Redistributions in binary form must reproduce the above
13
+ # copyright notice, this list of conditions and the following disclaimer
14
+ # in the documentation and/or other materials provided with the
15
+ # distribution.
16
+ # * Neither the name of Google Inc. nor the names of its
17
+ # contributors may be used to endorse or promote products derived from
18
+ # this software without specific prior written permission.
19
+ #
20
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+ # #######################################################################
33
+ # DEPRECATED: The behaviour in this file has been moved to pb/test/server.rb
34
+ #
35
+ # This file remains to support existing tools and scripts that use it.
36
+ # ######################################################################
37
+ #
38
+ # interop_server is a Testing app that runs a gRPC interop testing server.
39
+ #
40
+ # It helps validate interoperation b/w gRPC in different environments
41
+ #
42
+ # Helps validate interoperation b/w different gRPC implementations.
43
+ #
44
+ # Usage: $ path/to/interop_server.rb --port
45
+
46
+ this_dir = File.expand_path(File.dirname(__FILE__))
47
+ pb_dir = File.join(File.dirname(File.dirname(this_dir)), 'pb')
48
+ $LOAD_PATH.unshift(pb_dir) unless $LOAD_PATH.include?(pb_dir)
49
+
50
+ require 'test/server'
@@ -0,0 +1,32 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: math.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "math.DivArgs" do
8
+ optional :dividend, :int64, 1
9
+ optional :divisor, :int64, 2
10
+ end
11
+ add_message "math.DivReply" do
12
+ optional :quotient, :int64, 1
13
+ optional :remainder, :int64, 2
14
+ end
15
+ add_message "math.FibArgs" do
16
+ optional :limit, :int64, 1
17
+ end
18
+ add_message "math.Num" do
19
+ optional :num, :int64, 1
20
+ end
21
+ add_message "math.FibReply" do
22
+ optional :count, :int64, 1
23
+ end
24
+ end
25
+
26
+ module Math
27
+ DivArgs = Google::Protobuf::DescriptorPool.generated_pool.lookup("math.DivArgs").msgclass
28
+ DivReply = Google::Protobuf::DescriptorPool.generated_pool.lookup("math.DivReply").msgclass
29
+ FibArgs = Google::Protobuf::DescriptorPool.generated_pool.lookup("math.FibArgs").msgclass
30
+ Num = Google::Protobuf::DescriptorPool.generated_pool.lookup("math.Num").msgclass
31
+ FibReply = Google::Protobuf::DescriptorPool.generated_pool.lookup("math.FibReply").msgclass
32
+ end
@@ -0,0 +1,147 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright 2015, Google Inc.
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are
8
+ # met:
9
+ #
10
+ # * Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # * Redistributions in binary form must reproduce the above
13
+ # copyright notice, this list of conditions and the following disclaimer
14
+ # in the documentation and/or other materials provided with the
15
+ # distribution.
16
+ # * Neither the name of Google Inc. nor the names of its
17
+ # contributors may be used to endorse or promote products derived from
18
+ # this software without specific prior written permission.
19
+ #
20
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+ # Sample app that accesses a Calc service running on a Ruby gRPC server and
33
+ # helps validate RpcServer as a gRPC server using proto2 serialization.
34
+ #
35
+ # Usage: $ path/to/math_client.rb
36
+
37
+ this_dir = File.expand_path(File.dirname(__FILE__))
38
+ lib_dir = File.join(File.dirname(this_dir), 'lib')
39
+ $LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
40
+ $LOAD_PATH.unshift(this_dir) unless $LOAD_PATH.include?(this_dir)
41
+
42
+ require 'grpc'
43
+ require 'math_services'
44
+ require 'optparse'
45
+
46
+ include GRPC::Core::TimeConsts
47
+
48
+ def do_div(stub)
49
+ GRPC.logger.info('request_response')
50
+ GRPC.logger.info('----------------')
51
+ req = Math::DivArgs.new(dividend: 7, divisor: 3)
52
+ GRPC.logger.info("div(7/3): req=#{req.inspect}")
53
+ resp = stub.div(req, timeout: INFINITE_FUTURE)
54
+ GRPC.logger.info("Answer: #{resp.inspect}")
55
+ GRPC.logger.info('----------------')
56
+ end
57
+
58
+ def do_sum(stub)
59
+ # to make client streaming requests, pass an enumerable of the inputs
60
+ GRPC.logger.info('client_streamer')
61
+ GRPC.logger.info('---------------')
62
+ reqs = [1, 2, 3, 4, 5].map { |x| Math::Num.new(num: x) }
63
+ GRPC.logger.info("sum(1, 2, 3, 4, 5): reqs=#{reqs.inspect}")
64
+ resp = stub.sum(reqs) # reqs.is_a?(Enumerable)
65
+ GRPC.logger.info("Answer: #{resp.inspect}")
66
+ GRPC.logger.info('---------------')
67
+ end
68
+
69
+ def do_fib(stub)
70
+ GRPC.logger.info('server_streamer')
71
+ GRPC.logger.info('----------------')
72
+ req = Math::FibArgs.new(limit: 11)
73
+ GRPC.logger.info("fib(11): req=#{req.inspect}")
74
+ resp = stub.fib(req, timeout: INFINITE_FUTURE)
75
+ resp.each do |r|
76
+ GRPC.logger.info("Answer: #{r.inspect}")
77
+ end
78
+ GRPC.logger.info('----------------')
79
+ end
80
+
81
+ def do_div_many(stub)
82
+ GRPC.logger.info('bidi_streamer')
83
+ GRPC.logger.info('-------------')
84
+ reqs = []
85
+ reqs << Math::DivArgs.new(dividend: 7, divisor: 3)
86
+ reqs << Math::DivArgs.new(dividend: 5, divisor: 2)
87
+ reqs << Math::DivArgs.new(dividend: 7, divisor: 2)
88
+ GRPC.logger.info("div(7/3), div(5/2), div(7/2): reqs=#{reqs.inspect}")
89
+ resp = stub.div_many(reqs, timeout: INFINITE_FUTURE)
90
+ resp.each do |r|
91
+ GRPC.logger.info("Answer: #{r.inspect}")
92
+ end
93
+ GRPC.logger.info('----------------')
94
+ end
95
+
96
+ def load_test_certs
97
+ this_dir = File.expand_path(File.dirname(__FILE__))
98
+ data_dir = File.join(File.dirname(this_dir), 'spec/testdata')
99
+ files = ['ca.pem', 'server1.key', 'server1.pem']
100
+ files.map { |f| File.open(File.join(data_dir, f)).read }
101
+ end
102
+
103
+ def test_creds
104
+ certs = load_test_certs
105
+ GRPC::Core::ChannelCredentials.new(certs[0])
106
+ end
107
+
108
+ def main
109
+ options = {
110
+ 'host' => 'localhost:7071',
111
+ 'secure' => false
112
+ }
113
+ OptionParser.new do |opts|
114
+ opts.banner = 'Usage: [--host <hostname>:<port>] [--secure|-s]'
115
+ opts.on('--host HOST', '<hostname>:<port>') do |v|
116
+ options['host'] = v
117
+ end
118
+ opts.on('-s', '--secure', 'access using test creds') do |v|
119
+ options['secure'] = v
120
+ end
121
+ end.parse!
122
+
123
+ # The Math::Math:: module occurs because the service has the same name as its
124
+ # package. That practice should be avoided by defining real services.
125
+
126
+ p options
127
+ if options['secure']
128
+ stub_opts = {
129
+ :creds => test_creds,
130
+ GRPC::Core::Channel::SSL_TARGET => 'foo.test.google.fr'
131
+ }
132
+ p stub_opts
133
+ p options['host']
134
+ stub = Math::Math::Stub.new(options['host'], **stub_opts)
135
+ GRPC.logger.info("... connecting securely on #{options['host']}")
136
+ else
137
+ stub = Math::Math::Stub.new(options['host'])
138
+ GRPC.logger.info("... connecting insecurely on #{options['host']}")
139
+ end
140
+
141
+ do_div(stub)
142
+ do_sum(stub)
143
+ do_fib(stub)
144
+ do_div_many(stub)
145
+ end
146
+
147
+ main