mirror of
https://github.com/php-win-ext/grpc.git
synced 2026-03-24 17:12:19 +01:00
* replace darwin checks in extconf.rb to exclude TruffleRuby * inherit RANLIB and STRIP from RbConfig, set LDXX * enable overriding ranlib command in top-level makefile * ensure the -no_warning_for_no_symbols flag is only used with Apple's ranlib * don't embed openssl & zlib on truffleruby * add RbConfig's cppflag to CPPFLAGS when using TruffleRuby * this ensure the paths to find the system's OpenSSL are set up correctly with TruffleRuby (includes being able to find an OpenSSL installed via Homebrew etc) * don't statically link standard libraries on Linux with Truffleruby * This does not work when compiling to bitcode. * Prefer SIGTERM to SIGQUIT for graceful shutdown in examples * Overriding SIGQUIT is suboptimal, for example on JVM where it is very useful to dump the thread stacktraces. * Keep the rb_tr_abi_version symbol for TruffleRuby in grpc_c.so * Otherwise TruffleRuby cannot verify the ABI version is correct. * See https://github.com/oracle/truffleruby/issues/2386 * Use RbConfig::CONFIG['STRIP'] instead of just `strip` * Use a local variable for apple_toolchain for consistency * Add a comment about -static-libgcc -static-libstdc++ and TruffleRuby * Split comment into two for openssl/zlib Co-authored-by: Nicolas Laurent <nicolas.laurent@oracle.com>
49 lines
1.6 KiB
Ruby
Executable File
49 lines
1.6 KiB
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# Copyright 2015 gRPC authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Sample gRPC server that implements the Greeter::Helloworld service.
|
|
#
|
|
# Usage: $ path/to/greeter_server.rb
|
|
|
|
this_dir = File.expand_path(File.dirname(__FILE__))
|
|
lib_dir = File.join(this_dir, 'lib')
|
|
$LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
|
|
|
|
require 'grpc'
|
|
require 'helloworld_services_pb'
|
|
|
|
# GreeterServer is simple server that implements the Helloworld Greeter server.
|
|
class GreeterServer < Helloworld::Greeter::Service
|
|
# say_hello implements the SayHello rpc method.
|
|
def say_hello(hello_req, _unused_call)
|
|
Helloworld::HelloReply.new(message: "Hello #{hello_req.name}")
|
|
end
|
|
end
|
|
|
|
# main starts an RpcServer that receives requests to GreeterServer at the sample
|
|
# server port.
|
|
def main
|
|
s = GRPC::RpcServer.new
|
|
s.add_http2_port('0.0.0.0:50051', :this_port_is_insecure)
|
|
s.handle(GreeterServer)
|
|
# Runs the server with SIGHUP, SIGINT and SIGTERM signal handlers to
|
|
# gracefully shutdown.
|
|
# User could also choose to run server via call to run_till_terminated
|
|
s.run_till_terminated_or_interrupted([1, 'int', 'SIGTERM'])
|
|
end
|
|
|
|
main
|