Class: Puma::Runner
- Inherits:
-
Object
- Object
- Puma::Runner
- Defined in:
- lib/puma/runner.rb
Instance Method Summary collapse
- #app ⇒ Object
- #before_restart ⇒ Object
- #daemon? ⇒ Boolean
- #development? ⇒ Boolean
- #error(str) ⇒ Object
-
#initialize(cli) ⇒ Runner
constructor
A new instance of Runner.
- #load_and_bind ⇒ Object
- #log(str) ⇒ Object
- #output_header(mode) ⇒ Object
- #redirect_io ⇒ Object
- #start_control ⇒ Object
- #start_server ⇒ Object
Constructor Details
#initialize(cli) ⇒ Runner
Returns a new instance of Runner.
3 4 5 6 7 8 |
# File 'lib/puma/runner.rb', line 3 def initialize(cli) @cli = cli @options = cli. @app = nil @control = nil end |
Instance Method Details
#app ⇒ Object
114 115 116 |
# File 'lib/puma/runner.rb', line 114 def app @app ||= @cli.config.app end |
#before_restart ⇒ Object
26 27 28 |
# File 'lib/puma/runner.rb', line 26 def before_restart @control.stop(true) if @control end |
#daemon? ⇒ Boolean
10 11 12 |
# File 'lib/puma/runner.rb', line 10 def daemon? @options[:daemon] end |
#development? ⇒ Boolean
14 15 16 |
# File 'lib/puma/runner.rb', line 14 def development? @options[:environment] == "development" end |
#error(str) ⇒ Object
22 23 24 |
# File 'lib/puma/runner.rb', line 22 def error(str) @cli.error str end |
#load_and_bind ⇒ Object
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/puma/runner.rb', line 97 def load_and_bind unless @cli.config.app_configured? error "No application configured, nothing to run" exit 1 end # Load the app before we daemonize. begin @app = @cli.config.app rescue Exception => e log "! Unable to load application" raise e end @cli.binder.parse @options[:binds], self end |
#log(str) ⇒ Object
18 19 20 |
# File 'lib/puma/runner.rb', line 18 def log(str) @cli.log str end |
#output_header(mode) ⇒ Object
65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/puma/runner.rb', line 65 def output_header(mode) min_t = @options[:min_threads] max_t = @options[:max_threads] log "Puma starting in #{mode} mode..." log "* Version #{Puma::Const::PUMA_VERSION}, codename: #{Puma::Const::CODE_NAME}" log "* Min threads: #{min_t}, max threads: #{max_t}" log "* Environment: #{ENV['RACK_ENV']}" if @options[:mode] == :tcp log "* Mode: Lopez Express (tcp)" end end |
#redirect_io ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/puma/runner.rb', line 79 def redirect_io stdout = @options[:redirect_stdout] stderr = @options[:redirect_stderr] append = @options[:redirect_append] if stdout STDOUT.reopen stdout, (append ? "a" : "w") STDOUT.sync = true STDOUT.puts "=== puma startup: #{Time.now} ===" end if stderr STDERR.reopen stderr, (append ? "a" : "w") STDERR.sync = true STDERR.puts "=== puma startup: #{Time.now} ===" end end |
#start_control ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/puma/runner.rb', line 30 def start_control str = @options[:control_url] return unless str require 'puma/app/status' uri = URI.parse str app = Puma::App::Status.new @cli if token = @options[:control_auth_token] app.auth_token = token unless token.empty? or token == :none end control = Puma::Server.new app, @cli.events control.min_threads = 0 control.max_threads = 1 case uri.scheme when "tcp" log "* Starting control server on #{str}" control.add_tcp_listener uri.host, uri.port when "unix" log "* Starting control server on #{str}" path = "#{uri.host}#{uri.path}" control.add_unix_listener path else error "Invalid control URI: #{str}" end control.run @control = control end |
#start_server ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/puma/runner.rb', line 118 def start_server min_t = @options[:min_threads] max_t = @options[:max_threads] server = Puma::Server.new app, @cli.events, @options server.min_threads = min_t server.max_threads = max_t server.inherit_binder @cli.binder if @options[:mode] == :tcp server.tcp_mode! end unless development? server.leak_stack_on_error = false end server end |