Class: Puma::Runner

Inherits:
Object
  • Object
show all
Defined in:
lib/puma/runner.rb

Direct Known Subclasses

Cluster, Single

Instance Method Summary collapse

Constructor Details

#initialize(cli, events) ⇒ Runner

Returns a new instance of Runner.



3
4
5
6
7
8
9
# File 'lib/puma/runner.rb', line 3

def initialize(cli, events)
  @launcher = cli
  @events = events
  @options = cli.options
  @app = nil
  @control = nil
end

Instance Method Details

#appObject



132
133
134
# File 'lib/puma/runner.rb', line 132

def app
  @app ||= @launcher.config.app
end

#before_restartObject



23
24
25
# File 'lib/puma/runner.rb', line 23

def before_restart
  @control.stop(true) if @control
end

#daemon?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/puma/runner.rb', line 11

def daemon?
  @options[:daemon]
end

#debug(str) ⇒ Object



31
32
33
# File 'lib/puma/runner.rb', line 31

def debug(str)
  @events.log "- #{str}" if @options[:debug]
end

#development?Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/puma/runner.rb', line 15

def development?
  @options[:environment] == "development"
end

#error(str) ⇒ Object



27
28
29
# File 'lib/puma/runner.rb', line 27

def error(str)
  @events.error str
end

#load_and_bindObject



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/puma/runner.rb', line 115

def load_and_bind
  unless @launcher.config.app_configured?
    error "No application configured, nothing to run"
    exit 1
  end

  # Load the app before we daemonize.
  begin
    @app = @launcher.config.app
  rescue Exception => e
    log "! Unable to load application: #{e.class}: #{e.message}"
    raise e
  end

  @launcher.binder.parse @options[:binds], self
end

#log(str) ⇒ Object



19
20
21
# File 'lib/puma/runner.rb', line 19

def log(str)
  @events.log str
end

#output_header(mode) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/puma/runner.rb', line 83

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} (#{ruby_engine}), 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_ioObject



97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/puma/runner.rb', line 97

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

#ruby_engineObject



71
72
73
74
75
76
77
78
79
80
81
# File 'lib/puma/runner.rb', line 71

def ruby_engine
  if !defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby"
    "ruby #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
  else
    if defined?(RUBY_ENGINE_VERSION)
      "#{RUBY_ENGINE} #{RUBY_ENGINE_VERSION} - ruby #{RUBY_VERSION}"
    else
      "#{RUBY_ENGINE} #{RUBY_VERSION}"
    end
  end
end

#start_controlObject



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
64
65
66
67
68
69
# File 'lib/puma/runner.rb', line 35

def start_control
  str = @options[:control_url]
  return unless str

  require 'puma/app/status'

  uri = URI.parse str

  app = Puma::App::Status.new @launcher

  if token = @options[:control_auth_token]
    app.auth_token = token unless token.empty? or token == :none
  end

  control = Puma::Server.new app, @launcher.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}"
    mask = @options[:control_url_umask]

    control.add_unix_listener path, mask
  else
    error "Invalid control URI: #{str}"
  end

  control.run
  @control = control
end

#start_serverObject



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/puma/runner.rb', line 136

def start_server
  min_t = @options[:min_threads]
  max_t = @options[:max_threads]

  server = Puma::Server.new app, @launcher.events, @options
  server.min_threads = min_t
  server.max_threads = max_t
  server.inherit_binder @launcher.binder

  if @options[:mode] == :tcp
    server.tcp_mode!
  end

  unless development?
    server.leak_stack_on_error = false
  end

  server
end