class Puma::Events
The default implement of an event sink object used by Server for when certain kinds of events occur in the life of the server.
The methods available are the events that the Server fires.
Constants
- DEFAULT
Attributes
Public Class Methods
Create an Events object that prints to
stdout and stderr.
# File lib/puma/events.rb, line 27 def initialize(stdout, stderr) @formatter = DefaultFormatter.new @stdout = stdout @stderr = stderr @debug = ENV.key? 'PUMA_DEBUG' @error_logger = ErrorLogger.new(@stderr) @hooks = Hash.new { |h,k| h[k] = [] } end
# File lib/puma/events.rb, line 171 def self.null n = NullIO.new Events.new n, n end
# File lib/puma/events.rb, line 167 def self.stdio Events.new $stdout, $stderr end
Returns an Events object which writes its status to 2 StringIO objects.
# File lib/puma/events.rb, line 163 def self.strings Events.new StringIO.new, StringIO.new end
Public Instance Methods
An HTTP connection error has occurred. error a connection
exception, req the request, and text additional
info @version 5.0.0
# File lib/puma/events.rb, line 94 def connection_error(error, req, text="HTTP connection error") @error_logger.info(error: error, req: req, text: text) end
# File lib/puma/events.rb, line 74 def debug(str) log("% #{str}") if @debug end
Log occurred error debug dump. error an exception object,
req the request, and text additional info
@version 5.0.0
# File lib/puma/events.rb, line 130 def debug_error(error, req=nil, text="") @error_logger.debug(error: error, req: req, text: text) end
Write str to +@stderr+
# File lib/puma/events.rb, line 80 def error(str) @error_logger.info(text: format("ERROR: #{str}")) exit 1 end
Fire callbacks for the named hook
# File lib/puma/events.rb, line 43 def fire(hook, *args) @hooks[hook].each { |t| t.call(*args) } end
# File lib/puma/events.rb, line 146 def fire_on_booted! fire(:on_booted) end
# File lib/puma/events.rb, line 150 def fire_on_restart! fire(:on_restart) end
# File lib/puma/events.rb, line 154 def fire_on_stopped! fire(:on_stopped) end
# File lib/puma/events.rb, line 85 def format(str) formatter.call(str) end
Write str to +@stdout+
# File lib/puma/events.rb, line 63 def log(str) @stdout.puts format(str) if @stdout.respond_to? :puts @stdout.flush unless @stdout.sync rescue Errno::EPIPE end
# File lib/puma/events.rb, line 134 def on_booted(&block) register(:on_booted, &block) end
# File lib/puma/events.rb, line 138 def on_restart(&block) register(:on_restart, &block) end
# File lib/puma/events.rb, line 142 def on_stopped(&block) register(:on_stopped, &block) end
An HTTP parse error has occurred. error a parsing exception,
and req the request.
# File lib/puma/events.rb, line 102 def parse_error(error, req) @error_logger.info(error: error, req: req, text: 'HTTP parse error, malformed request') end
Register a callback for a given hook
# File lib/puma/events.rb, line 49 def register(hook, obj=nil, &blk) if obj and blk raise "Specify either an object or a block, not both" end h = obj || blk @hooks[hook] << h h end
An SSL error has occurred. @param error <Puma::MiniSSL::SSLError> @param ssl_socket <Puma::MiniSSL::Socket>
# File lib/puma/events.rb, line 110 def ssl_error(error, ssl_socket) peeraddr = ssl_socket.peeraddr.last rescue "<unknown>" peercert = ssl_socket.peercert subject = peercert ? peercert.subject : nil @error_logger.info(error: error, text: "SSL error, peer: #{peeraddr}, peer cert: #{subject}") end
An unknown error has occurred. error an exception object,
req the request, and text additional info
# File lib/puma/events.rb, line 121 def unknown_error(error, req=nil, text="Unknown error") @error_logger.info(error: error, req: req, text: text) end
# File lib/puma/events.rb, line 70 def write(str) @stdout.write format(str) end