Class: GrpcKit::Server
- Inherits:
-
Object
- Object
- GrpcKit::Server
- Defined in:
- lib/grpc_kit/server.rb
Instance Method Summary collapse
-
#force_shutdown ⇒ void
This method is expected to be called in trap context.
-
#graceful_shutdown(timeout: true) ⇒ void
This method is expected to be called in trap context.
- #handle(handler) ⇒ void
-
#initialize(interceptors: [], shutdown_timeout: 30, min_pool_size: nil, max_pool_size: nil) ⇒ Server
constructor
A new instance of Server.
- #run(conn) ⇒ void
- #session_count ⇒ Object
Constructor Details
#initialize(interceptors: [], shutdown_timeout: 30, min_pool_size: nil, max_pool_size: nil) ⇒ Server
Returns a new instance of Server.
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/grpc_kit/server.rb', line 13 def initialize(interceptors: [], shutdown_timeout: 30, min_pool_size: nil, max_pool_size: nil) @interceptors = interceptors @shutdown_timeout = shutdown_timeout @min_pool_size = min_pool_size || GrpcKit::RpcDispatcher::DEFAULT_MIN @max_pool_size = max_pool_size || GrpcKit::RpcDispatcher::DEFAULT_MAX @sessions = [] @rpc_descs = {} @mutex = Mutex.new @stopping = false GrpcKit.logger.debug("Launched grpc_kit(v#{GrpcKit::VERSION})") end |
Instance Method Details
#force_shutdown ⇒ void
This method returns an undefined value.
This method is expected to be called in trap context
57 58 59 60 61 62 63 64 |
# File 'lib/grpc_kit/server.rb', line 57 def force_shutdown @stopping = true Thread.new { GrpcKit.logger.debug('force shutdown') shutdown_sessions } end |
#graceful_shutdown(timeout: true) ⇒ void
This method returns an undefined value.
This method is expected to be called in trap context
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/grpc_kit/server.rb', line 69 def graceful_shutdown(timeout: true) @stopping = true Thread.new do GrpcKit.logger.debug('graceful shutdown') @mutex.synchronize { @sessions.each(&:drain) } begin sec = timeout ? @shutdown_timeout : 0 Timeout.timeout(sec) do sleep 1 until @sessions.empty? end rescue Timeout::Error => _ GrpcKit.logger.error("Graceful shutdown is timeout (#{@shutdown_timeout}sec). Perform shutdown forceibly") shutdown_sessions end end end |
#handle(handler) ⇒ void
This method returns an undefined value.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/grpc_kit/server.rb', line 28 def handle(handler) klass = handler.is_a?(Class) ? handler : handler.class unless klass.include?(GrpcKit::Grpc::GenericService) raise "#{klass} must include Grpc::GenericService" end klass.rpc_descs.each do |path, rpc_desc| if @rpc_descs[path] raise "Duplicated method registered #{path}, class: #{klass}" end s = handler.is_a?(Class) ? handler.new : handler @rpc_descs[path] = rpc_desc.build_server(s, interceptors: @interceptors) end end |
#run(conn) ⇒ void
This method returns an undefined value.
46 47 48 49 50 51 52 53 |
# File 'lib/grpc_kit/server.rb', line 46 def run(conn) raise 'Stopping server' if @stopping establish_session(conn) do |s| s.submit_settings([]) s.start end end |
#session_count ⇒ Object
88 89 90 |
# File 'lib/grpc_kit/server.rb', line 88 def session_count @mutex.synchronize { @sessions.size } end |