1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/lib/puma/single.rb

109 lines
2.1 KiB
Ruby
Raw Normal View History

require 'puma/runner'
module Puma
class Single < Runner
def stats
b = @server.backlog
r = @server.running
%Q!{ "backlog": #{b}, "running": #{r} }!
end
def restart
@server.begin_restart
end
def stop
@server.stop false
end
def halt
@server.halt
end
def stop_blocked
log "- Gracefully stopping, waiting for requests to finish"
@control.stop(true) if @control
@server.stop(true)
end
def jruby_daemon?
daemon? and Puma.jruby?
end
def jruby_daemon_start
require 'puma/jruby_restart'
2016-03-05 19:28:39 -05:00
JRubyRestart.daemon_start(@restart_dir, @launcher.restart_args)
end
def run
already_daemon = false
if jruby_daemon?
require 'puma/jruby_restart'
if JRubyRestart.daemon?
# load and bind before redirecting IO so errors show up on stdout/stderr
load_and_bind
redirect_io
end
already_daemon = JRubyRestart.daemon_init
end
2013-07-05 20:09:18 -04:00
output_header "single"
if jruby_daemon?
if already_daemon
JRubyRestart.perm_daemonize
else
pid = nil
Signal.trap "SIGUSR2" do
log "* Started new process #{pid} as daemon..."
# Must use exit! so we don't unwind and run the ensures
# that will be run by the new child (such as deleting the
# pidfile)
exit!(true)
end
Signal.trap "SIGCHLD" do
2015-10-17 13:31:55 -04:00
log "! Error starting new process as daemon, exiting"
exit 1
end
2016-04-07 14:08:53 -04:00
jruby_daemon_start
sleep
end
else
2013-07-05 20:09:18 -04:00
if daemon?
log "* Daemonizing..."
Process.daemon(true)
redirect_io
2013-07-05 20:09:18 -04:00
end
load_and_bind
end
@launcher.write_state
start_control
2013-07-06 00:13:29 -04:00
@server = server = start_server
unless daemon?
log "Use Ctrl-C to stop"
redirect_io
end
@launcher.events.fire_on_booted!
begin
server.run.join
rescue Interrupt
# Swallow it
end
end
end
end