Class: Puma::Launcher

Inherits:
Object
  • Object
show all
Defined in:
lib/puma/launcher.rb,
lib/puma/launcher/bundle_pruner.rb

Overview

Puma::Launcher is the single entry point for starting a Puma server based on user configuration. It is responsible for taking user supplied arguments and resolving them with configuration in ‘config/puma.rb` or `config/puma/<env>.rb`.

It is responsible for either launching a cluster of Puma workers or a single puma server.

Defined Under Namespace

Classes: BundlePruner

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(conf, launcher_args = {}) ⇒ Launcher

Returns an instance of Launcher

conf A Puma::Configuration object indicating how to run the server.

launcher_args A Hash that currently has one required key ‘:events`, this is expected to hold an object similar to an `Puma::LogWriter.stdio`, this object will be responsible for broadcasting Puma’s internal state to a logging destination. An optional key ‘:argv` can be supplied, this should be an array of strings, these arguments are re-used when restarting the puma server.

Examples:

conf = Puma::Configuration.new do |user_config|
  user_config.threads 1, 10
  user_config.app do |env|
    [200, {}, ["hello world"]]
  end
end
Puma::Launcher.new(conf, log_writer: Puma::LogWriter.stdio).run


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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/puma/launcher.rb', line 41

def initialize(conf, launcher_args={})
  @runner        = nil
  @log_writer    = launcher_args[:log_writer] || LogWriter::DEFAULT
  @events        = launcher_args[:events] || Events.new
  @argv          = launcher_args[:argv] || []
  @original_argv = @argv.dup
  @config        = conf

  env = launcher_args.delete(:env) || ENV

  @config.options[:log_writer] = @log_writer

  # Advertise the Configuration
  Puma.cli_config = @config if defined?(Puma.cli_config)

  @config.load

  @binder        = Binder.new(@log_writer, conf)
  @binder.create_inherited_fds(ENV).each { |k| ENV.delete k }
  @binder.create_activated_fds(ENV).each { |k| ENV.delete k }

  @environment = conf.environment

  # Load the systemd integration if we detect systemd's NOTIFY_SOCKET.
  # Skip this on JRuby though, because it is incompatible with the systemd
  # integration due to https://github.com/jruby/jruby/issues/6504
  if ENV["NOTIFY_SOCKET"] && !Puma.jruby? && !ENV["PUMA_SKIP_SYSTEMD"]
    @config.plugins.create('systemd')
  end

  if @config.options[:bind_to_activated_sockets]
    @config.options[:binds] = @binder.synthesize_binds_from_activated_fs(
      @config.options[:binds],
      @config.options[:bind_to_activated_sockets] == 'only'
    )
  end

  @options = @config.options
  @config.clamp

  @log_writer.formatter = LogWriter::PidFormatter.new if clustered?
  @log_writer.formatter = options[:log_formatter] if @options[:log_formatter]

  @log_writer.custom_logger = options[:custom_logger] if @options[:custom_logger]

  generate_restart_data

  if clustered? && !Puma.forkable?
    unsupported "worker mode not supported on #{RUBY_ENGINE} on this platform"
  end

  Dir.chdir(@restart_dir)

  prune_bundler!

  @environment = @options[:environment] if @options[:environment]
  set_rack_environment

  if clustered?
    @options[:logger] = @log_writer

    @runner = Cluster.new(self)
  else
    @runner = Single.new(self)
  end
  Puma.stats_object = @runner

  @status = :run

  log_config if env['PUMA_LOG_CONFIG']
end

Instance Attribute Details

#binderObject (readonly)

Returns the value of attribute binder.



113
114
115
# File 'lib/puma/launcher.rb', line 113

def binder
  @binder
end

#configObject (readonly)

Returns the value of attribute config.



113
114
115
# File 'lib/puma/launcher.rb', line 113

def config
  @config
end

#connected_portsObject (readonly)

Return all tcp ports the launcher may be using, TCP or SSL

Version:

  • 5.0.0



204
205
206
# File 'lib/puma/launcher.rb', line 204

def connected_ports
  @binder.connected_ports
end

#eventsObject (readonly)

Returns the value of attribute events.



113
114
115
# File 'lib/puma/launcher.rb', line 113

def events
  @events
end

#log_writerObject (readonly)

Returns the value of attribute log_writer.



113
114
115
# File 'lib/puma/launcher.rb', line 113

def log_writer
  @log_writer
end

#optionsObject (readonly)

Returns the value of attribute options.



113
114
115
# File 'lib/puma/launcher.rb', line 113

def options
  @options
end

#restart_argsObject (readonly)



209
210
211
212
213
214
215
216
# File 'lib/puma/launcher.rb', line 209

def restart_args
  cmd = @options[:restart_cmd]
  if cmd
    cmd.split(' ') + @original_argv
  else
    @restart_argv
  end
end

#restart_dirObject (readonly)

Returns the value of attribute restart_dir.



113
114
115
# File 'lib/puma/launcher.rb', line 113

def restart_dir
  @restart_dir
end

#thread_statusObject (readonly)

Version:

  • 5.0.0



229
230
231
232
233
234
235
236
237
238
# File 'lib/puma/launcher.rb', line 229

def thread_status
  Thread.list.each do |thread|
    name = "Thread: TID-#{thread.object_id.to_s(36)}"
    name += " #{thread['label']}" if thread['label']
    name += " #{thread.name}" if thread.respond_to?(:name) && thread.name
    backtrace = thread.backtrace || ["<no backtrace available>"]

    yield name, backtrace
  end
end

Instance Method Details

#close_binder_listenersObject



218
219
220
221
222
223
224
225
# File 'lib/puma/launcher.rb', line 218

def close_binder_listeners
  @runner.close_control_listeners
  @binder.close_listeners
  unless @status == :restart
    log "=== puma shutdown: #{Time.now} ==="
    log "- Goodbye!"
  end
end

#delete_pidfileObject

Delete the configured pidfile



141
142
143
144
# File 'lib/puma/launcher.rb', line 141

def delete_pidfile
  path = @options[:pidfile]
  File.unlink(path) if path && File.exist?(path)
end

#haltObject

Begin async shutdown of the server



147
148
149
150
# File 'lib/puma/launcher.rb', line 147

def halt
  @status = :halt
  @runner.halt
end

#phased_restartObject

Begin a phased restart if supported



165
166
167
168
169
170
171
# File 'lib/puma/launcher.rb', line 165

def phased_restart
  unless @runner.respond_to?(:phased_restart) and @runner.phased_restart
    log "* phased-restart called but not available, restarting normally."
    return restart
  end
  true
end

#reforkObject

Begin a refork if supported



174
175
176
177
178
179
180
181
182
# File 'lib/puma/launcher.rb', line 174

def refork
  if clustered? && @runner.respond_to?(:fork_worker!) && @options[:fork_worker]
    @runner.fork_worker!
    true
  else
    log "* refork called but not available."
    false
  end
end

#restartObject

Begin async restart of the server



159
160
161
162
# File 'lib/puma/launcher.rb', line 159

def restart
  @status = :restart
  @runner.restart
end

#runObject

Run the server. This blocks until the server is stopped



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/puma/launcher.rb', line 185

def run
  previous_env = get_env

  @config.clamp

  @config.plugins.fire_starts self

  setup_signals
  set_process_title

  # This blocks until the server is stopped
  @runner.run

  do_run_finished(previous_env)
end

#statsObject

Return stats about the server



116
117
118
# File 'lib/puma/launcher.rb', line 116

def stats
  @runner.stats
end

#stopObject

Begin async shutdown of the server gracefully



153
154
155
156
# File 'lib/puma/launcher.rb', line 153

def stop
  @status = :stop
  @runner.stop
end

#write_stateObject

Write a state file that can be used by pumactl to control the server



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/puma/launcher.rb', line 122

def write_state
  write_pid

  path = @options[:state]
  permission = @options[:state_permission]
  return unless path

  require_relative 'state_file'

  sf = StateFile.new
  sf.pid = Process.pid
  sf.control_url = @options[:control_url]
  sf.control_auth_token = @options[:control_auth_token]
  sf.running_from = File.expand_path('.')

  sf.save path, permission
end