mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.8 KiB
79 lines
2.8 KiB
5 years ago
|
# Copyright 2020 The 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.
|
||
|
"""The Python implementation of the GRPC helloworld.Greeter server."""
|
||
|
|
||
|
from concurrent import futures
|
||
|
import argparse
|
||
|
import logging
|
||
|
import socket
|
||
|
|
||
|
import grpc
|
||
|
|
||
|
import helloworld_pb2
|
||
|
import helloworld_pb2_grpc
|
||
|
|
||
|
from grpc_reflection.v1alpha import reflection
|
||
|
from grpc_health.v1 import health
|
||
|
from grpc_health.v1 import health_pb2
|
||
|
from grpc_health.v1 import health_pb2_grpc
|
||
|
|
||
|
_DESCRIPTION = "A general purpose dummy server."
|
||
|
|
||
|
|
||
|
class Greeter(helloworld_pb2_grpc.GreeterServicer):
|
||
|
|
||
|
def __init__(self, hostname):
|
||
|
self._hostname = hostname if hostname else socket.gethostname()
|
||
|
|
||
|
def SayHello(self, request, context):
|
||
|
return helloworld_pb2.HelloReply(
|
||
|
message=f"Hello {request.name} from {self._hostname}!")
|
||
|
|
||
|
|
||
|
def serve(port, hostname):
|
||
|
server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
|
||
|
helloworld_pb2_grpc.add_GreeterServicer_to_server(Greeter(hostname), server)
|
||
|
health_servicer = health.HealthServicer(
|
||
|
experimental_non_blocking=True,
|
||
|
experimental_thread_pool=futures.ThreadPoolExecutor(max_workers=4))
|
||
|
health_pb2_grpc.add_HealthServicer_to_server(health_servicer, server)
|
||
|
services = tuple(
|
||
|
service.full_name
|
||
|
for service in helloworld_pb2.DESCRIPTOR.services_by_name.values()) + (
|
||
|
reflection.SERVICE_NAME, health.SERVICE_NAME)
|
||
|
reflection.enable_server_reflection(services, server)
|
||
|
server.add_insecure_port(f"[::]:{port}")
|
||
|
server.start()
|
||
|
overall_server_health = ""
|
||
|
for service in services + (overall_server_health,):
|
||
|
health_servicer.set(service, health_pb2.HealthCheckResponse.SERVING)
|
||
|
server.wait_for_termination()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
parser = argparse.ArgumentParser(description=_DESCRIPTION)
|
||
|
parser.add_argument("port",
|
||
|
default=50051,
|
||
|
type=int,
|
||
|
nargs="?",
|
||
|
help="The port on which to listen.")
|
||
|
parser.add_argument("hostname",
|
||
|
type=str,
|
||
|
default=None,
|
||
|
nargs="?",
|
||
|
help="The name clients will see in responses.")
|
||
|
args = parser.parse_args()
|
||
|
logging.basicConfig()
|
||
|
serve(args.port, args.hostname)
|