Class: Toq::Server::Handler
- Includes:
- Raktr::Connection::PeerInfo, Protocol
- Defined in:
- lib/toq/server/handler.rb
Overview
Instance Attribute Summary collapse
-
#request ⇒ Request
readonly
Working RPC request.
Instance Method Summary collapse
-
#initialize(server) ⇒ Handler
constructor
A new instance of Handler.
-
#on_close(_) ⇒ Object
Handles closed connections and cleans up the SSL session.
- #receive_request(req) ⇒ Object
Methods included from Protocol
#on_connect, #on_read, #send_message
Constructor Details
#initialize(server) ⇒ Handler
Returns a new instance of Handler.
25 26 27 28 29 |
# File 'lib/toq/server/handler.rb', line 25 def initialize( server ) @server = server @opts = server.opts.dup @request = nil end |
Instance Attribute Details
#request ⇒ Request (readonly)
Returns Working RPC request.
21 22 23 |
# File 'lib/toq/server/handler.rb', line 21 def request @request end |
Instance Method Details
#on_close(_) ⇒ Object
Handles closed connections and cleans up the SSL session.
34 35 36 |
# File 'lib/toq/server/handler.rb', line 34 def on_close( _ ) @server = nil end |
#receive_request(req) ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/toq/server/handler.rb', line 43 def receive_request( req ) @request = req # Create an empty response to be filled in little by little. res = Response.new peer = peer_ip_address begin # Make sure the client is allowed to make RPC calls. authenticate! # Grab the partially filled in response which includes the result # of the RPC call and merge it with out prepared response. res.merge!( @server.call( self ) ) # Handle exceptions and convert them to a simple hash, ready to be # passed to the client. rescue Exception => e type = '' # If it's an RPC exception pass the type along as is... if e.rpc_exception? type = e.class.name.split( ':' )[-1] # ...otherwise set it to a RemoteException. else type = 'RemoteException' end # RPC conventions for exception transmission. res.exception = { 'type' => type, 'message' => e.to_s, 'backtrace' => e.backtrace } msg = "#{e.to_s}\n#{e.backtrace.join( "\n" )}" @server.logger.error( 'Exception' ){ msg + " [on behalf of #{peer}]" } end # Pass the result of the RPC call back to the client but *only* if it # wasn't async, otherwise {Server#call} will have already taken care of it. send_response( res ) if !res.async? end |