server.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Copyright 2019 The gRPC Authors.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import asyncio
  15. import logging
  16. import unittest
  17. from grpc.experimental import aio
  18. from src.proto.grpc.testing import benchmark_service_pb2_grpc
  19. from tests_aio.benchmark import benchmark_servicer
  20. async def _start_async_server():
  21. server = aio.server()
  22. port = server.add_insecure_port('localhost:%s' % 50051)
  23. servicer = benchmark_servicer.BenchmarkServicer()
  24. benchmark_service_pb2_grpc.add_BenchmarkServiceServicer_to_server(
  25. servicer, server)
  26. await server.start()
  27. logging.info('Benchmark server started at :%d' % port)
  28. await server.wait_for_termination()
  29. def main():
  30. aio.init_grpc_aio()
  31. loop = asyncio.get_event_loop()
  32. loop.create_task(_start_async_server())
  33. loop.run_forever()
  34. if __name__ == '__main__':
  35. logging.basicConfig(level=logging.DEBUG)
  36. main()