Index: third_party/grpc/examples/ruby/greeter_server.rb |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/examples/ruby/greeter_server.rb |
old mode 100644 |
new mode 100755 |
similarity index 62% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py |
copy to third_party/grpc/examples/ruby/greeter_server.rb |
index 1b02d66267e294ce83977dac64f075981705647c..622513d38054bfe6a235ac1d3b73f5ebeb402b70 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py |
+++ b/third_party/grpc/examples/ruby/greeter_server.rb |
@@ -1,4 +1,6 @@ |
-# Copyright 2011, Google Inc. |
+#!/usr/bin/env ruby |
+ |
+# Copyright 2015, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,27 +29,32 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
- |
-import logging |
-_GOODBYE_MESSAGE = u'Goodbye' |
- |
- |
-def web_socket_do_extra_handshake(request): |
- pass # Always accept. |
- |
- |
-def web_socket_transfer_data(request): |
- while True: |
- line = request.ws_stream.receive_message() |
- if line is None: |
- return |
- if isinstance(line, unicode): |
- request.ws_stream.send_message(line, binary=False) |
- if line == _GOODBYE_MESSAGE: |
- return |
- else: |
- request.ws_stream.send_message(line, binary=True) |
- |
- |
-def web_socket_passive_closing_handshake(request): |
- return request.ws_close_code, request.ws_close_reason |
+# 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' |
+ |
+# 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) |
+ s.run_till_terminated |
+end |
+ |
+main |