blob: 751a6ebcab7b9928028519d352053ee17ef4d8a1 [file] [log] [blame]
Tim Emiola3acf05a2015-01-13 07:55:34 -08001#!/usr/bin/env ruby
2
Craig Tiller06059952015-02-18 08:34:56 -08003# Copyright 2015, Google Inc.
nnoble097ef9b2014-12-01 17:06:10 -08004# 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
nnoble097ef9b2014-12-01 17:06:10 -080032# Sample gRPC Ruby server that implements the Math::Calc service and helps
33# validate GRPC::RpcServer as GRPC implementation using proto2 serialization.
34#
35# Usage: $ path/to/math_server.rb
36
37this_dir = File.expand_path(File.dirname(__FILE__))
38lib_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
42require 'forwardable'
43require 'grpc'
Tim Emiola81d950a2015-08-28 16:57:28 -070044require 'logger'
Ken Payson5a2c9182016-07-26 17:15:08 -070045require 'math_services_pb'
nnoble0c475f02014-12-05 15:37:39 -080046require 'optparse'
nnoble097ef9b2014-12-01 17:06:10 -080047
Tim Emiola81d950a2015-08-28 16:57:28 -070048# RubyLogger defines a logger for gRPC based on the standard ruby logger.
49module RubyLogger
50 def logger
51 LOGGER
52 end
53
54 LOGGER = Logger.new(STDOUT)
55end
56
57# GRPC is the general RPC module
58module GRPC
59 # Inject the noop #logger if no module-level logger method has been injected.
60 extend RubyLogger
61end
62
nnoble097ef9b2014-12-01 17:06:10 -080063# Holds state for a fibonacci series
64class Fibber
nnoble097ef9b2014-12-01 17:06:10 -080065 def initialize(limit)
Tim Emiolae2860c52015-01-16 02:58:41 -080066 fail "bad limit: got #{limit}, want limit > 0" if limit < 1
nnoble097ef9b2014-12-01 17:06:10 -080067 @limit = limit
68 end
69
70 def generator
71 return enum_for(:generator) unless block_given?
72 idx, current, previous = 0, 1, 1
73 until idx == @limit
Aggelos Avgerinos57e7dc82015-05-09 13:08:03 +030074 if idx.zero? || idx == 1
Tim Emiolae2860c52015-01-16 02:58:41 -080075 yield Math::Num.new(num: 1)
nnoble097ef9b2014-12-01 17:06:10 -080076 idx += 1
77 next
78 end
79 tmp = current
80 current = previous + current
81 previous = tmp
Tim Emiolae2860c52015-01-16 02:58:41 -080082 yield Math::Num.new(num: current)
nnoble097ef9b2014-12-01 17:06:10 -080083 idx += 1
84 end
85 end
86end
87
88# A EnumeratorQueue wraps a Queue to yield the items added to it.
89class EnumeratorQueue
90 extend Forwardable
91 def_delegators :@q, :push
92
93 def initialize(sentinel)
94 @q = Queue.new
95 @sentinel = sentinel
96 end
97
98 def each_item
99 return enum_for(:each_item) unless block_given?
100 loop do
101 r = @q.pop
102 break if r.equal?(@sentinel)
Tim Emiolae2860c52015-01-16 02:58:41 -0800103 fail r if r.is_a? Exception
nnoble097ef9b2014-12-01 17:06:10 -0800104 yield r
105 end
106 end
nnoble097ef9b2014-12-01 17:06:10 -0800107end
108
109# The Math::Math:: module occurs because the service has the same name as its
110# package. That practice should be avoided by defining real services.
111class Calculator < Math::Math::Service
Tim Emiolae2860c52015-01-16 02:58:41 -0800112 def div(div_args, _call)
Aggelos Avgerinos57e7dc82015-05-09 13:08:03 +0300113 if div_args.divisor.zero?
nnoble097ef9b2014-12-01 17:06:10 -0800114 # To send non-OK status handlers raise a StatusError with the code and
115 # and detail they want sent as a Status.
Tim Emiolae2860c52015-01-16 02:58:41 -0800116 fail GRPC::StatusError.new(GRPC::Status::INVALID_ARGUMENT,
117 'divisor cannot be 0')
nnoble097ef9b2014-12-01 17:06:10 -0800118 end
119
Tim Emiolae2860c52015-01-16 02:58:41 -0800120 Math::DivReply.new(quotient: div_args.dividend / div_args.divisor,
121 remainder: div_args.dividend % div_args.divisor)
nnoble097ef9b2014-12-01 17:06:10 -0800122 end
123
124 def sum(call)
125 # the requests are accesible as the Enumerator call#each_request
Tim Emiolae2860c52015-01-16 02:58:41 -0800126 nums = call.each_remote_read.collect(&:num)
127 sum = nums.inject { |s, x| s + x }
128 Math::Num.new(num: sum)
nnoble097ef9b2014-12-01 17:06:10 -0800129 end
130
Tim Emiolae2860c52015-01-16 02:58:41 -0800131 def fib(fib_args, _call)
nnoble097ef9b2014-12-01 17:06:10 -0800132 if fib_args.limit < 1
Tim Emiolae2860c52015-01-16 02:58:41 -0800133 fail StatusError.new(Status::INVALID_ARGUMENT, 'limit must be >= 0')
nnoble097ef9b2014-12-01 17:06:10 -0800134 end
135
136 # return an Enumerator of Nums
Tim Emiolae2860c52015-01-16 02:58:41 -0800137 Fibber.new(fib_args.limit).generator
nnoble097ef9b2014-12-01 17:06:10 -0800138 # just return the generator, GRPC::GenericServer sends each actual response
139 end
140
141 def div_many(requests)
142 # requests is an lazy Enumerator of the requests sent by the client.
143 q = EnumeratorQueue.new(self)
144 t = Thread.new do
145 begin
146 requests.each do |req|
Nick Gauthierf233d962015-05-20 14:02:50 -0400147 GRPC.logger.info("read #{req.inspect}")
Tim Emiolae2860c52015-01-16 02:58:41 -0800148 resp = Math::DivReply.new(quotient: req.dividend / req.divisor,
149 remainder: req.dividend % req.divisor)
nnoble097ef9b2014-12-01 17:06:10 -0800150 q.push(resp)
Tim Emiolae2860c52015-01-16 02:58:41 -0800151 Thread.pass # let the internal Bidi threads run
nnoble097ef9b2014-12-01 17:06:10 -0800152 end
Nick Gauthierf233d962015-05-20 14:02:50 -0400153 GRPC.logger.info('finished reads')
nnoble097ef9b2014-12-01 17:06:10 -0800154 q.push(self)
155 rescue StandardError => e
156 q.push(e) # share the exception with the enumerator
157 raise e
158 end
159 end
160 t.priority = -2 # hint that the div_many thread should not be favoured
161 q.each_item
162 end
nnoble097ef9b2014-12-01 17:06:10 -0800163end
164
nnoble0c475f02014-12-05 15:37:39 -0800165def load_test_certs
166 this_dir = File.expand_path(File.dirname(__FILE__))
167 data_dir = File.join(File.dirname(this_dir), 'spec/testdata')
168 files = ['ca.pem', 'server1.key', 'server1.pem']
169 files.map { |f| File.open(File.join(data_dir, f)).read }
170end
171
172def test_server_creds
173 certs = load_test_certs
Tim Emiola73a540a2015-08-28 18:56:17 -0700174 GRPC::Core::ServerCredentials.new(
175 nil, [{ private_key: certs[1], cert_chain: certs[2] }], false)
nnoble0c475f02014-12-05 15:37:39 -0800176end
177
nnoble097ef9b2014-12-01 17:06:10 -0800178def main
nnoble0c475f02014-12-05 15:37:39 -0800179 options = {
180 'host' => 'localhost:7071',
181 'secure' => false
182 }
183 OptionParser.new do |opts|
temiola0f0a6bc2015-01-07 18:43:40 -0800184 opts.banner = 'Usage: [--host <hostname>:<port>] [--secure|-s]'
185 opts.on('--host HOST', '<hostname>:<port>') do |v|
nnoble0c475f02014-12-05 15:37:39 -0800186 options['host'] = v
187 end
188 opts.on('-s', '--secure', 'access using test creds') do |v|
Tim Emiolae2860c52015-01-16 02:58:41 -0800189 options['secure'] = v
nnoble0c475f02014-12-05 15:37:39 -0800190 end
191 end.parse!
192
Tim Emiola0ce8edc2015-03-05 15:17:30 -0800193 s = GRPC::RpcServer.new
nnoble0c475f02014-12-05 15:37:39 -0800194 if options['secure']
Tim Emiola0ce8edc2015-03-05 15:17:30 -0800195 s.add_http2_port(options['host'], test_server_creds)
Nick Gauthierf233d962015-05-20 14:02:50 -0400196 GRPC.logger.info("... running securely on #{options['host']}")
nnoble0c475f02014-12-05 15:37:39 -0800197 else
Tim Emiolac03138a2015-09-24 13:11:03 -0700198 s.add_http2_port(options['host'], :this_port_is_insecure)
Nick Gauthierf233d962015-05-20 14:02:50 -0400199 GRPC.logger.info("... running insecurely on #{options['host']}")
nnoble097ef9b2014-12-01 17:06:10 -0800200 end
201
nnoble097ef9b2014-12-01 17:06:10 -0800202 s.handle(Calculator)
Tim Emiola321871e2015-04-16 12:56:11 -0700203 s.run_till_terminated
nnoble097ef9b2014-12-01 17:06:10 -0800204end
205
Craig Tiller190d3602015-02-18 09:23:38 -0800206main